Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -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.
* **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.
2 changes: 1 addition & 1 deletion strr-api/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "strr-api"
version = "0.0.67"
version = "0.0.68"
description = ""
authors = ["thorwolpert <thor@wolpert.ca>"]
license = "BSD 3-Clause"
Expand Down
8 changes: 4 additions & 4 deletions strr-api/src/strr_api/models/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"]}
Expand All @@ -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 = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions strr-base-web/app/locales/en-CA.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.'
}
}
},
Expand Down
2 changes: 1 addition & 1 deletion strr-base-web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion strr-examiner-web/app/stores/examiner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 })
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@shaangill025 this change did not show up in the sync hotfix branch

const url = URL.createObjectURL(blob)
window.open(url, '_blank')
URL.revokeObjectURL(url)
Expand Down
2 changes: 1 addition & 1 deletion strr-examiner-web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
2 changes: 1 addition & 1 deletion strr-host-pm-web/app/locales/en-CA.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down
2 changes: 1 addition & 1 deletion strr-host-pm-web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
4 changes: 2 additions & 2 deletions strr-strata-web/app/components/form/StrataDetails.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script setup lang="ts">
import type { Form } from '#ui/types'
import { z } from 'zod'
import type { Form } from '#ui/types'

const rtc = useRuntimeConfig().public
const strataModal = useStrataModals()
Expand Down Expand Up @@ -268,7 +268,7 @@ onMounted(async () => {
<DocumentUploadButton
id="supporting-documents"
:label="$t('label.chooseDocsOpt')"
accept="application/pdf"
accept="application/pdf,image/jpeg"
:is-required="false"
:is-invalid="isComplete && hasFormErrors(documentFormRef, ['documents'])"
help-id="supporting-documents-help"
Expand Down
2 changes: 1 addition & 1 deletion strr-strata-web/app/locales/en-CA.ts
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ export default {
STRATA_HOTEL_DOCUMENTATION: 'Supporting strata-titled hotel or motel documentation'
},
hint: {
docUpload: 'File must be a PDF. Maximum 10 MB.'
docUpload: 'File must be a PDF, jpeg, or jpg. Maximum 10 MB.'
},
ConnectFeeWidget: {
feeSummary: {
Expand Down
2 changes: 1 addition & 1 deletion strr-strata-web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "strr-strata-web",
"private": true,
"type": "module",
"version": "1.1.10",
"version": "1.1.12",
"scripts": {
"build-check": "nuxt build",
"build": "nuxt generate",
Expand Down