diff --git a/queue_services/strr-email/email-templates/common/strr-important-deadlines.md b/queue_services/strr-email/email-templates/common/strr-important-deadlines.md index 9e5824998..0f38029f2 100644 --- a/queue_services/strr-email/email-templates/common/strr-important-deadlines.md +++ b/queue_services/strr-email/email-templates/common/strr-important-deadlines.md @@ -1,5 +1,5 @@ # Important Deadlines If you do not update your listings before the following dates, platforms will be required to take actions on your listings. - * **May 1, 2025**: Platforms will stop advertising your listing and prevent any new bookings. - * **June 1, 2025**: In addition to the above, platforms will also cancel any future bookings you may have. \ No newline at end of file + * **June 2, 2025**: Platforms will stop advertising your listing and prevent any new bookings. + * **June 23, 2025**: In addition to the above, platforms will also cancel any future bookings you may have. \ No newline at end of file diff --git a/strr-api/pyproject.toml b/strr-api/pyproject.toml index e13c3f8ff..496fccead 100644 --- a/strr-api/pyproject.toml +++ b/strr-api/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "strr-api" -version = "0.0.67" +version = "0.0.68" description = "" authors = ["thorwolpert "] license = "BSD 3-Clause" diff --git a/strr-api/src/strr_api/models/application.py b/strr-api/src/strr_api/models/application.py index b625ea33f..a11966c10 100644 --- a/strr-api/src/strr_api/models/application.py +++ b/strr-api/src/strr_api/models/application.py @@ -422,8 +422,8 @@ class ApplicationSerializer: Application.Status.PROVISIONAL_REVIEW: "Approved – Provisional", Application.Status.FULL_REVIEW: "Pending Approval", Application.Status.DECLINED: "Declined", - Application.Status.NOC_PENDING: "Notice of Consideration - Pending", - Application.Status.NOC_EXPIRED: "Notice of Consideration - Expired", + Application.Status.NOC_PENDING: "Notice of Consideration", + Application.Status.NOC_EXPIRED: "Pending Review", } HOST_ACTIONS = {Application.Status.PAYMENT_DUE: ["SUBMIT_PAYMENT"]} @@ -438,8 +438,8 @@ class ApplicationSerializer: Application.Status.PROVISIONAL_REVIEW: "Provisional Examination", Application.Status.FULL_REVIEW: "Full Examination", Application.Status.DECLINED: "Declined", - Application.Status.NOC_PENDING: "Notice of Consideration - Pending", - Application.Status.NOC_EXPIRED: "Notice of Consideration - Expired", + Application.Status.NOC_PENDING: "NOC - Pending", + Application.Status.NOC_EXPIRED: "NOC - Expired", } EXAMINER_ACTIONS = { diff --git a/strr-base-web/app/components/BaseUploadAdditionalDocuments.vue b/strr-base-web/app/components/BaseUploadAdditionalDocuments.vue index 12a48d7be..fd4116c02 100644 --- a/strr-base-web/app/components/BaseUploadAdditionalDocuments.vue +++ b/strr-base-web/app/components/BaseUploadAdditionalDocuments.vue @@ -100,7 +100,7 @@ const validateDocuments = () => { :is="component" id="upload-additional-documents" :label="t('label.chooseDocs')" - :accept="'application/pdf'" + accept="application/pdf,image/jpeg" :is-required="props.isStrata" :is-invalid="showError" :error="showError" diff --git a/strr-base-web/app/locales/en-CA.ts b/strr-base-web/app/locales/en-CA.ts index ab0027305..f92f67fe3 100644 --- a/strr-base-web/app/locales/en-CA.ts +++ b/strr-base-web/app/locales/en-CA.ts @@ -125,11 +125,11 @@ export default { }, fileType: { title: 'Invalid File Type', - description: 'Only PDF files are supported. Please upload a PDF document.' + description: 'Only PDF, jpeg, or jpg files are supported. Please upload a PDF, jpeg, or jpg.' }, generic: { title: 'Error Uploading Document', - description: 'Something went wrong when uploading the file, only pdfs and files less than 10mb are accepted.' + description: 'Something went wrong when uploading the file, only pdfs, jpeg, or jpg and files less than 10mb are accepted.' } } }, diff --git a/strr-base-web/package.json b/strr-base-web/package.json index 000c68bf6..76ed01bc9 100644 --- a/strr-base-web/package.json +++ b/strr-base-web/package.json @@ -2,7 +2,7 @@ "name": "strr-base-web", "private": true, "type": "module", - "version": "0.0.16", + "version": "0.0.18", "scripts": { "build-check": "nuxt build", "build": "nuxt generate", diff --git a/strr-examiner-web/app/stores/examiner.ts b/strr-examiner-web/app/stores/examiner.ts index 7d0f75381..0baa1fbd6 100644 --- a/strr-examiner-web/app/stores/examiner.ts +++ b/strr-examiner-web/app/stores/examiner.ts @@ -397,7 +397,7 @@ export const useExaminerStore = defineStore('strr/examiner-store', () => { const openDocInNewTab = async (applicationNumber: string, supportingDocument: ApiDocument) => { const file = await getDocument(applicationNumber, supportingDocument.fileKey) - const blob = new Blob([file], { type: 'application/pdf' }) + const blob = new Blob([file], { type: supportingDocument.fileType }) const url = URL.createObjectURL(blob) window.open(url, '_blank') URL.revokeObjectURL(url) diff --git a/strr-examiner-web/package.json b/strr-examiner-web/package.json index caef46a24..d246bf744 100644 --- a/strr-examiner-web/package.json +++ b/strr-examiner-web/package.json @@ -2,7 +2,7 @@ "name": "strr-examiner-web", "private": true, "type": "module", - "version": "0.0.49", + "version": "0.0.50", "scripts": { "build-check": "nuxt build", "build": "nuxt generate", diff --git a/strr-host-pm-web/app/components/form/AddDocuments/index.vue b/strr-host-pm-web/app/components/form/AddDocuments/index.vue index 37653a1cc..61825fa5c 100644 --- a/strr-host-pm-web/app/components/form/AddDocuments/index.vue +++ b/strr-host-pm-web/app/components/form/AddDocuments/index.vue @@ -117,7 +117,7 @@ onMounted(async () => { :error="isComplete && hasFormErrors(docFormRef, ['documentUpload'])" :is-required="docStore.requiredDocs.length > 0" :help-id="docUploadHelpId" - accept="application/pdf" + accept="application/pdf,image/jpeg" @change="docStore.addStoredDocument" @cancel="docStore.selectedDocType = undefined" @error="e => strrModal.openErrorModal( diff --git a/strr-host-pm-web/app/locales/en-CA.ts b/strr-host-pm-web/app/locales/en-CA.ts index 84097cda8..fdfe01c77 100644 --- a/strr-host-pm-web/app/locales/en-CA.ts +++ b/strr-host-pm-web/app/locales/en-CA.ts @@ -387,7 +387,7 @@ export default { }, hint: { strataRefCode: 'This is a unique code for each registered strata hotel. Ask the strata hotel management for this code.', - docUpload: 'File must be a PDF. Maximum 10 MB.', + docUpload: 'File must be a PDF, jpeg, or jpg. Maximum 10 MB.', autocomplete: 'For example: 123 - 456 Street Name Victoria BC V8V 2V2' }, page: { diff --git a/strr-host-pm-web/package.json b/strr-host-pm-web/package.json index fe6b82e7a..4365c3910 100644 --- a/strr-host-pm-web/package.json +++ b/strr-host-pm-web/package.json @@ -2,7 +2,7 @@ "name": "strr-host-pm-web", "private": true, "type": "module", - "version": "1.2.8", + "version": "1.2.10", "scripts": { "build-check": "nuxt build", "build": "nuxt generate", diff --git a/strr-strata-web/app/components/form/StrataDetails.vue b/strr-strata-web/app/components/form/StrataDetails.vue index 3828cc0dc..aadac769b 100644 --- a/strr-strata-web/app/components/form/StrataDetails.vue +++ b/strr-strata-web/app/components/form/StrataDetails.vue @@ -1,6 +1,6 @@