@voyant-travel/inventory-react 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +201 -0
- package/dist/admin/index.d.ts +91 -0
- package/dist/admin/index.d.ts.map +1 -0
- package/dist/admin/index.js +132 -0
- package/dist/admin/pages/product-detail-page.d.ts +18 -0
- package/dist/admin/pages/product-detail-page.d.ts.map +1 -0
- package/dist/admin/pages/product-detail-page.js +63 -0
- package/dist/admin/product-categories-host.d.ts +7 -0
- package/dist/admin/product-categories-host.d.ts.map +1 -0
- package/dist/admin/product-categories-host.js +11 -0
- package/dist/admin/product-detail-api.d.ts +22 -0
- package/dist/admin/product-detail-api.d.ts.map +1 -0
- package/dist/admin/product-detail-api.js +58 -0
- package/dist/admin/products-host.d.ts +11 -0
- package/dist/admin/products-host.d.ts.map +1 -0
- package/dist/admin/products-host.js +17 -0
- package/dist/admin/products-list-skeleton.d.ts +10 -0
- package/dist/admin/products-list-skeleton.d.ts.map +1 -0
- package/dist/admin/products-list-skeleton.js +23 -0
- package/dist/client.d.ts +16 -0
- package/dist/client.d.ts.map +1 -0
- package/dist/client.js +79 -0
- package/dist/components/option-unit-dialog.d.ts +11 -0
- package/dist/components/option-unit-dialog.d.ts.map +1 -0
- package/dist/components/option-unit-dialog.js +17 -0
- package/dist/components/option-unit-form.d.ts +17 -0
- package/dist/components/option-unit-form.d.ts.map +1 -0
- package/dist/components/option-unit-form.js +123 -0
- package/dist/components/product-action-ledger-card.d.ts +17 -0
- package/dist/components/product-action-ledger-card.d.ts.map +1 -0
- package/dist/components/product-action-ledger-card.js +73 -0
- package/dist/components/product-catalog-card.d.ts +14 -0
- package/dist/components/product-catalog-card.d.ts.map +1 -0
- package/dist/components/product-catalog-card.js +44 -0
- package/dist/components/product-categories-page.d.ts +7 -0
- package/dist/components/product-categories-page.d.ts.map +1 -0
- package/dist/components/product-categories-page.js +9 -0
- package/dist/components/product-category-combobox.d.ts +10 -0
- package/dist/components/product-category-combobox.d.ts.map +1 -0
- package/dist/components/product-category-combobox.js +47 -0
- package/dist/components/product-category-dialog.d.ts +9 -0
- package/dist/components/product-category-dialog.d.ts.map +1 -0
- package/dist/components/product-category-dialog.js +17 -0
- package/dist/components/product-category-form.d.ts +15 -0
- package/dist/components/product-category-form.d.ts.map +1 -0
- package/dist/components/product-category-form.js +82 -0
- package/dist/components/product-category-list.d.ts +5 -0
- package/dist/components/product-category-list.d.ts.map +1 -0
- package/dist/components/product-category-list.js +48 -0
- package/dist/components/product-combobox.d.ts +13 -0
- package/dist/components/product-combobox.d.ts.map +1 -0
- package/dist/components/product-combobox.js +23 -0
- package/dist/components/product-contract-template-combobox.d.ts +9 -0
- package/dist/components/product-contract-template-combobox.d.ts.map +1 -0
- package/dist/components/product-contract-template-combobox.js +97 -0
- package/dist/components/product-day-dialog.d.ts +20 -0
- package/dist/components/product-day-dialog.d.ts.map +1 -0
- package/dist/components/product-day-dialog.js +20 -0
- package/dist/components/product-day-form.d.ts +19 -0
- package/dist/components/product-day-form.d.ts.map +1 -0
- package/dist/components/product-day-form.js +77 -0
- package/dist/components/product-day-media-tray.d.ts +11 -0
- package/dist/components/product-day-media-tray.d.ts.map +1 -0
- package/dist/components/product-day-media-tray.js +74 -0
- package/dist/components/product-day-service-dialog.d.ts +14 -0
- package/dist/components/product-day-service-dialog.d.ts.map +1 -0
- package/dist/components/product-day-service-dialog.js +19 -0
- package/dist/components/product-day-service-form.d.ts +44 -0
- package/dist/components/product-day-service-form.d.ts.map +1 -0
- package/dist/components/product-day-service-form.js +152 -0
- package/dist/components/product-detail/commerce-client.d.ts +314 -0
- package/dist/components/product-detail/commerce-client.d.ts.map +1 -0
- package/dist/components/product-detail/commerce-client.js +261 -0
- package/dist/components/product-detail/host.d.ts +54 -0
- package/dist/components/product-detail/host.d.ts.map +1 -0
- package/dist/components/product-detail/host.js +27 -0
- package/dist/components/product-detail/index.d.ts +6 -0
- package/dist/components/product-detail/index.d.ts.map +1 -0
- package/dist/components/product-detail/index.js +5 -0
- package/dist/components/product-detail/product-activity-section.d.ts +4 -0
- package/dist/components/product-detail/product-activity-section.d.ts.map +1 -0
- package/dist/components/product-detail/product-activity-section.js +37 -0
- package/dist/components/product-detail/product-day-sheet.d.ts +14 -0
- package/dist/components/product-detail/product-day-sheet.d.ts.map +1 -0
- package/dist/components/product-detail/product-day-sheet.js +75 -0
- package/dist/components/product-detail/product-day-translation.d.ts +41 -0
- package/dist/components/product-detail/product-day-translation.d.ts.map +1 -0
- package/dist/components/product-detail/product-day-translation.js +111 -0
- package/dist/components/product-detail/product-departure-dialog.d.ts +11 -0
- package/dist/components/product-detail/product-departure-dialog.d.ts.map +1 -0
- package/dist/components/product-detail/product-departure-dialog.js +10 -0
- package/dist/components/product-detail/product-departure-form.d.ts +25 -0
- package/dist/components/product-detail/product-departure-form.d.ts.map +1 -0
- package/dist/components/product-detail/product-departure-form.js +241 -0
- package/dist/components/product-detail/product-departure-pricing-override-dialog.d.ts +8 -0
- package/dist/components/product-detail/product-departure-pricing-override-dialog.d.ts.map +1 -0
- package/dist/components/product-detail/product-departure-pricing-override-dialog.js +126 -0
- package/dist/components/product-detail/product-detail-availability-sections.d.ts +19 -0
- package/dist/components/product-detail/product-detail-availability-sections.d.ts.map +1 -0
- package/dist/components/product-detail/product-detail-availability-sections.js +29 -0
- package/dist/components/product-detail/product-detail-channel-section.d.ts +8 -0
- package/dist/components/product-detail/product-detail-channel-section.d.ts.map +1 -0
- package/dist/components/product-detail/product-detail-channel-section.js +16 -0
- package/dist/components/product-detail/product-detail-day-row.d.ts +14 -0
- package/dist/components/product-detail/product-detail-day-row.d.ts.map +1 -0
- package/dist/components/product-detail/product-detail-day-row.js +43 -0
- package/dist/components/product-detail/product-detail-dialog.d.ts +10 -0
- package/dist/components/product-detail/product-detail-dialog.d.ts.map +1 -0
- package/dist/components/product-detail/product-detail-dialog.js +10 -0
- package/dist/components/product-detail/product-detail-form.d.ts +22 -0
- package/dist/components/product-detail/product-detail-form.d.ts.map +1 -0
- package/dist/components/product-detail/product-detail-form.js +205 -0
- package/dist/components/product-detail/product-detail-header.d.ts +12 -0
- package/dist/components/product-detail/product-detail-header.d.ts.map +1 -0
- package/dist/components/product-detail/product-detail-header.js +19 -0
- package/dist/components/product-detail/product-detail-itinerary-section.d.ts +4 -0
- package/dist/components/product-detail/product-detail-itinerary-section.d.ts.map +1 -0
- package/dist/components/product-detail/product-detail-itinerary-section.js +201 -0
- package/dist/components/product-detail/product-detail-media-sections.d.ts +15 -0
- package/dist/components/product-detail/product-detail-media-sections.d.ts.map +1 -0
- package/dist/components/product-detail/product-detail-media-sections.js +19 -0
- package/dist/components/product-detail/product-detail-organize-section.d.ts +6 -0
- package/dist/components/product-detail/product-detail-organize-section.d.ts.map +1 -0
- package/dist/components/product-detail/product-detail-organize-section.js +18 -0
- package/dist/components/product-detail/product-detail-page.d.ts +4 -0
- package/dist/components/product-detail/product-detail-page.d.ts.map +1 -0
- package/dist/components/product-detail/product-detail-page.js +95 -0
- package/dist/components/product-detail/product-detail-section-shell.d.ts +19 -0
- package/dist/components/product-detail/product-detail-section-shell.d.ts.map +1 -0
- package/dist/components/product-detail/product-detail-section-shell.js +23 -0
- package/dist/components/product-detail/product-detail-sections.d.ts +7 -0
- package/dist/components/product-detail/product-detail-sections.d.ts.map +1 -0
- package/dist/components/product-detail/product-detail-sections.js +6 -0
- package/dist/components/product-detail/product-detail-shared.d.ts +264 -0
- package/dist/components/product-detail/product-detail-shared.d.ts.map +1 -0
- package/dist/components/product-detail/product-detail-shared.js +157 -0
- package/dist/components/product-detail/product-detail-skeleton.d.ts +9 -0
- package/dist/components/product-detail/product-detail-skeleton.d.ts.map +1 -0
- package/dist/components/product-detail/product-detail-skeleton.js +53 -0
- package/dist/components/product-detail/product-detail-summary-section.d.ts +6 -0
- package/dist/components/product-detail/product-detail-summary-section.d.ts.map +1 -0
- package/dist/components/product-detail/product-detail-summary-section.js +66 -0
- package/dist/components/product-detail/product-extra-dialog.d.ts +21 -0
- package/dist/components/product-detail/product-extra-dialog.d.ts.map +1 -0
- package/dist/components/product-detail/product-extra-dialog.js +131 -0
- package/dist/components/product-detail/product-itinerary-form.d.ts +16 -0
- package/dist/components/product-detail/product-itinerary-form.d.ts.map +1 -0
- package/dist/components/product-detail/product-itinerary-form.js +38 -0
- package/dist/components/product-detail/product-market-rules-section.d.ts +6 -0
- package/dist/components/product-detail/product-market-rules-section.d.ts.map +1 -0
- package/dist/components/product-detail/product-market-rules-section.js +81 -0
- package/dist/components/product-detail/product-media-gallery.d.ts +19 -0
- package/dist/components/product-detail/product-media-gallery.d.ts.map +1 -0
- package/dist/components/product-detail/product-media-gallery.js +114 -0
- package/dist/components/product-detail/product-option-price-rule-dialog.d.ts +12 -0
- package/dist/components/product-detail/product-option-price-rule-dialog.d.ts.map +1 -0
- package/dist/components/product-detail/product-option-price-rule-dialog.js +10 -0
- package/dist/components/product-detail/product-option-price-rule-form.d.ts +29 -0
- package/dist/components/product-detail/product-option-price-rule-form.d.ts.map +1 -0
- package/dist/components/product-detail/product-option-price-rule-form.js +122 -0
- package/dist/components/product-detail/product-option-pricing-grid.d.ts +16 -0
- package/dist/components/product-detail/product-option-pricing-grid.d.ts.map +1 -0
- package/dist/components/product-detail/product-option-pricing-grid.js +236 -0
- package/dist/components/product-detail/product-options-extra-price-rules.d.ts +8 -0
- package/dist/components/product-detail/product-options-extra-price-rules.d.ts.map +1 -0
- package/dist/components/product-detail/product-options-extra-price-rules.js +123 -0
- package/dist/components/product-detail/product-options-pricing-helpers.d.ts +14 -0
- package/dist/components/product-detail/product-options-pricing-helpers.d.ts.map +1 -0
- package/dist/components/product-detail/product-options-pricing-helpers.js +49 -0
- package/dist/components/product-detail/product-options-pricing-panel.d.ts +17 -0
- package/dist/components/product-detail/product-options-pricing-panel.d.ts.map +1 -0
- package/dist/components/product-detail/product-options-pricing-panel.js +88 -0
- package/dist/components/product-detail/product-options-pricing.d.ts +5 -0
- package/dist/components/product-detail/product-options-pricing.d.ts.map +1 -0
- package/dist/components/product-detail/product-options-pricing.js +4 -0
- package/dist/components/product-detail/product-options-shared.d.ts +236 -0
- package/dist/components/product-detail/product-options-shared.d.ts.map +1 -0
- package/dist/components/product-detail/product-options-shared.js +57 -0
- package/dist/components/product-detail/product-options-traveler-category-dialog.d.ts +12 -0
- package/dist/components/product-detail/product-options-traveler-category-dialog.d.ts.map +1 -0
- package/dist/components/product-detail/product-options-traveler-category-dialog.js +132 -0
- package/dist/components/product-detail/product-options-unit-price-matrix.d.ts +10 -0
- package/dist/components/product-detail/product-options-unit-price-matrix.d.ts.map +1 -0
- package/dist/components/product-detail/product-options-unit-price-matrix.js +103 -0
- package/dist/components/product-detail/product-payment-policy-section.d.ts +17 -0
- package/dist/components/product-detail/product-payment-policy-section.d.ts.map +1 -0
- package/dist/components/product-detail/product-payment-policy-section.js +58 -0
- package/dist/components/product-detail/product-schedule-dialog.d.ts +11 -0
- package/dist/components/product-detail/product-schedule-dialog.d.ts.map +1 -0
- package/dist/components/product-detail/product-schedule-dialog.js +10 -0
- package/dist/components/product-detail/product-schedule-form.d.ts +17 -0
- package/dist/components/product-detail/product-schedule-form.d.ts.map +1 -0
- package/dist/components/product-detail/product-schedule-form.js +223 -0
- package/dist/components/product-detail/product-service-dialog.d.ts +12 -0
- package/dist/components/product-detail/product-service-dialog.d.ts.map +1 -0
- package/dist/components/product-detail/product-service-dialog.js +10 -0
- package/dist/components/product-detail/product-service-form.d.ts +22 -0
- package/dist/components/product-detail/product-service-form.d.ts.map +1 -0
- package/dist/components/product-detail/product-service-form.js +154 -0
- package/dist/components/product-detail/product-translation-popover.d.ts +94 -0
- package/dist/components/product-detail/product-translation-popover.d.ts.map +1 -0
- package/dist/components/product-detail/product-translation-popover.js +238 -0
- package/dist/components/product-detail/product-unit-dialog.d.ts +14 -0
- package/dist/components/product-detail/product-unit-dialog.d.ts.map +1 -0
- package/dist/components/product-detail/product-unit-dialog.js +10 -0
- package/dist/components/product-detail/product-unit-form.d.ts +34 -0
- package/dist/components/product-detail/product-unit-form.d.ts.map +1 -0
- package/dist/components/product-detail/product-unit-form.js +139 -0
- package/dist/components/product-detail/product-unit-price-rule-dialog.d.ts +17 -0
- package/dist/components/product-detail/product-unit-price-rule-dialog.d.ts.map +1 -0
- package/dist/components/product-detail/product-unit-price-rule-dialog.js +10 -0
- package/dist/components/product-detail/product-unit-price-rule-form.d.ts +29 -0
- package/dist/components/product-detail/product-unit-price-rule-form.d.ts.map +1 -0
- package/dist/components/product-detail/product-unit-price-rule-form.js +144 -0
- package/dist/components/product-detail/rrule-labels.d.ts +2 -0
- package/dist/components/product-detail/rrule-labels.d.ts.map +1 -0
- package/dist/components/product-detail/rrule-labels.js +65 -0
- package/dist/components/product-detail/timezone-options.d.ts +9 -0
- package/dist/components/product-detail/timezone-options.d.ts.map +1 -0
- package/dist/components/product-detail/timezone-options.js +28 -0
- package/dist/components/product-detail/use-product-detail-data.d.ts +41 -0
- package/dist/components/product-detail/use-product-detail-data.d.ts.map +1 -0
- package/dist/components/product-detail/use-product-detail-data.js +143 -0
- package/dist/components/product-detail/use-product-detail-dialogs.d.ts +24 -0
- package/dist/components/product-detail/use-product-detail-dialogs.d.ts.map +1 -0
- package/dist/components/product-detail/use-product-detail-dialogs.js +40 -0
- package/dist/components/product-detail/zod-resolver.d.ts +4 -0
- package/dist/components/product-detail/zod-resolver.d.ts.map +1 -0
- package/dist/components/product-detail/zod-resolver.js +39 -0
- package/dist/components/product-detail-page.d.ts +57 -0
- package/dist/components/product-detail-page.d.ts.map +1 -0
- package/dist/components/product-detail-page.js +118 -0
- package/dist/components/product-detail.d.ts +2 -0
- package/dist/components/product-detail.d.ts.map +1 -0
- package/dist/components/product-detail.js +1 -0
- package/dist/components/product-dialog.d.ts +9 -0
- package/dist/components/product-dialog.d.ts.map +1 -0
- package/dist/components/product-dialog.js +13 -0
- package/dist/components/product-facility-combobox.d.ts +9 -0
- package/dist/components/product-facility-combobox.d.ts.map +1 -0
- package/dist/components/product-facility-combobox.js +94 -0
- package/dist/components/product-form.d.ts +14 -0
- package/dist/components/product-form.d.ts.map +1 -0
- package/dist/components/product-form.js +191 -0
- package/dist/components/product-itinerary-day-row.d.ts +22 -0
- package/dist/components/product-itinerary-day-row.d.ts.map +1 -0
- package/dist/components/product-itinerary-day-row.js +17 -0
- package/dist/components/product-itinerary-dialog.d.ts +16 -0
- package/dist/components/product-itinerary-dialog.d.ts.map +1 -0
- package/dist/components/product-itinerary-dialog.js +85 -0
- package/dist/components/product-itinerary-section.d.ts +16 -0
- package/dist/components/product-itinerary-section.d.ts.map +1 -0
- package/dist/components/product-itinerary-section.js +105 -0
- package/dist/components/product-list.d.ts +7 -0
- package/dist/components/product-list.d.ts.map +1 -0
- package/dist/components/product-list.js +155 -0
- package/dist/components/product-media-dialog.d.ts +11 -0
- package/dist/components/product-media-dialog.d.ts.map +1 -0
- package/dist/components/product-media-dialog.js +17 -0
- package/dist/components/product-media-form.d.ts +17 -0
- package/dist/components/product-media-form.d.ts.map +1 -0
- package/dist/components/product-media-form.js +101 -0
- package/dist/components/product-media-lightbox.d.ts +7 -0
- package/dist/components/product-media-lightbox.d.ts.map +1 -0
- package/dist/components/product-media-lightbox.js +31 -0
- package/dist/components/product-media-section.d.ts +27 -0
- package/dist/components/product-media-section.d.ts.map +1 -0
- package/dist/components/product-media-section.js +130 -0
- package/dist/components/product-media-tile.d.ts +17 -0
- package/dist/components/product-media-tile.d.ts.map +1 -0
- package/dist/components/product-media-tile.js +16 -0
- package/dist/components/product-option-dialog.d.ts +11 -0
- package/dist/components/product-option-dialog.d.ts.map +1 -0
- package/dist/components/product-option-dialog.js +17 -0
- package/dist/components/product-option-form.d.ts +17 -0
- package/dist/components/product-option-form.d.ts.map +1 -0
- package/dist/components/product-option-form.js +91 -0
- package/dist/components/product-options-section.d.ts +13 -0
- package/dist/components/product-options-section.d.ts.map +1 -0
- package/dist/components/product-options-section.js +200 -0
- package/dist/components/product-quick-view-sheet.d.ts +23 -0
- package/dist/components/product-quick-view-sheet.d.ts.map +1 -0
- package/dist/components/product-quick-view-sheet.js +65 -0
- package/dist/components/product-tag-dialog.d.ts +9 -0
- package/dist/components/product-tag-dialog.d.ts.map +1 -0
- package/dist/components/product-tag-dialog.js +17 -0
- package/dist/components/product-tag-form.d.ts +15 -0
- package/dist/components/product-tag-form.d.ts.map +1 -0
- package/dist/components/product-tag-form.js +48 -0
- package/dist/components/product-tag-list.d.ts +5 -0
- package/dist/components/product-tag-list.d.ts.map +1 -0
- package/dist/components/product-tag-list.js +44 -0
- package/dist/components/product-tags-page.d.ts +7 -0
- package/dist/components/product-tags-page.d.ts.map +1 -0
- package/dist/components/product-tags-page.js +9 -0
- package/dist/components/product-tax-class-combobox.d.ts +9 -0
- package/dist/components/product-tax-class-combobox.d.ts.map +1 -0
- package/dist/components/product-tax-class-combobox.js +100 -0
- package/dist/components/product-translations-card.d.ts +7 -0
- package/dist/components/product-translations-card.d.ts.map +1 -0
- package/dist/components/product-translations-card.js +188 -0
- package/dist/components/product-type-combobox.d.ts +9 -0
- package/dist/components/product-type-combobox.d.ts.map +1 -0
- package/dist/components/product-type-combobox.js +48 -0
- package/dist/components/product-types-page.d.ts +6 -0
- package/dist/components/product-types-page.d.ts.map +1 -0
- package/dist/components/product-types-page.js +103 -0
- package/dist/components/product-version-dialog.d.ts +8 -0
- package/dist/components/product-version-dialog.d.ts.map +1 -0
- package/dist/components/product-version-dialog.js +39 -0
- package/dist/components/product-versions-section.d.ts +7 -0
- package/dist/components/product-versions-section.d.ts.map +1 -0
- package/dist/components/product-versions-section.js +19 -0
- package/dist/components/products-page.d.ts +8 -0
- package/dist/components/products-page.d.ts.map +1 -0
- package/dist/components/products-page.js +8 -0
- package/dist/extras/client.d.ts +14 -0
- package/dist/extras/client.d.ts.map +1 -0
- package/dist/extras/client.js +58 -0
- package/dist/extras/components/extra-catalog-card.d.ts +13 -0
- package/dist/extras/components/extra-catalog-card.d.ts.map +1 -0
- package/dist/extras/components/extra-catalog-card.js +52 -0
- package/dist/extras/components/product-combobox.d.ts +9 -0
- package/dist/extras/components/product-combobox.d.ts.map +1 -0
- package/dist/extras/components/product-combobox.js +46 -0
- package/dist/extras/hooks/index.d.ts +4 -0
- package/dist/extras/hooks/index.d.ts.map +1 -0
- package/dist/extras/hooks/index.js +3 -0
- package/dist/extras/hooks/use-product-extra-mutation.d.ts +70 -0
- package/dist/extras/hooks/use-product-extra-mutation.d.ts.map +1 -0
- package/dist/extras/hooks/use-product-extra-mutation.js +38 -0
- package/dist/extras/hooks/use-product-extra.d.ts +24 -0
- package/dist/extras/hooks/use-product-extra.d.ts.map +1 -0
- package/dist/extras/hooks/use-product-extra.js +12 -0
- package/dist/extras/hooks/use-product-extras.d.ts +30 -0
- package/dist/extras/hooks/use-product-extras.d.ts.map +1 -0
- package/dist/extras/hooks/use-product-extras.js +12 -0
- package/dist/extras/i18n/en.d.ts +52 -0
- package/dist/extras/i18n/en.d.ts.map +1 -0
- package/dist/extras/i18n/en.js +51 -0
- package/dist/extras/i18n/index.d.ts +5 -0
- package/dist/extras/i18n/index.d.ts.map +1 -0
- package/dist/extras/i18n/index.js +3 -0
- package/dist/extras/i18n/messages.d.ts +37 -0
- package/dist/extras/i18n/messages.d.ts.map +1 -0
- package/dist/extras/i18n/messages.js +1 -0
- package/dist/extras/i18n/provider.d.ts +126 -0
- package/dist/extras/i18n/provider.d.ts.map +1 -0
- package/dist/extras/i18n/provider.js +44 -0
- package/dist/extras/i18n/ro.d.ts +52 -0
- package/dist/extras/i18n/ro.d.ts.map +1 -0
- package/dist/extras/i18n/ro.js +51 -0
- package/dist/extras/index.d.ts +7 -0
- package/dist/extras/index.d.ts.map +1 -0
- package/dist/extras/index.js +6 -0
- package/dist/extras/provider.d.ts +2 -0
- package/dist/extras/provider.d.ts.map +1 -0
- package/dist/extras/provider.js +1 -0
- package/dist/extras/query-keys.d.ts +16 -0
- package/dist/extras/query-keys.d.ts.map +1 -0
- package/dist/extras/query-keys.js +8 -0
- package/dist/extras/query-options.d.ts +455 -0
- package/dist/extras/query-options.d.ts.map +1 -0
- package/dist/extras/query-options.js +44 -0
- package/dist/extras/schemas.d.ts +416 -0
- package/dist/extras/schemas.d.ts.map +1 -0
- package/dist/extras/schemas.js +89 -0
- package/dist/extras/ui.d.ts +3 -0
- package/dist/extras/ui.d.ts.map +1 -0
- package/dist/extras/ui.js +2 -0
- package/dist/extras-compat.d.ts +3 -0
- package/dist/extras-compat.d.ts.map +1 -0
- package/dist/extras-compat.js +1 -0
- package/dist/extras.d.ts +10 -0
- package/dist/extras.d.ts.map +1 -0
- package/dist/extras.js +9 -0
- package/dist/hooks/index.d.ts +36 -0
- package/dist/hooks/index.d.ts.map +1 -0
- package/dist/hooks/index.js +35 -0
- package/dist/hooks/use-duplicate-product-option-mutation.d.ts +19 -0
- package/dist/hooks/use-duplicate-product-option-mutation.d.ts.map +1 -0
- package/dist/hooks/use-duplicate-product-option-mutation.js +65 -0
- package/dist/hooks/use-option-unit-mutation.d.ts +60 -0
- package/dist/hooks/use-option-unit-mutation.d.ts.map +1 -0
- package/dist/hooks/use-option-unit-mutation.js +41 -0
- package/dist/hooks/use-option-unit.d.ts +21 -0
- package/dist/hooks/use-option-unit.d.ts.map +1 -0
- package/dist/hooks/use-option-unit.js +12 -0
- package/dist/hooks/use-option-units.d.ts +27 -0
- package/dist/hooks/use-option-units.d.ts.map +1 -0
- package/dist/hooks/use-option-units.js +12 -0
- package/dist/hooks/use-product-action-ledger.d.ts +48 -0
- package/dist/hooks/use-product-action-ledger.d.ts.map +1 -0
- package/dist/hooks/use-product-action-ledger.js +12 -0
- package/dist/hooks/use-product-categories.d.ts +32 -0
- package/dist/hooks/use-product-categories.d.ts.map +1 -0
- package/dist/hooks/use-product-categories.js +29 -0
- package/dist/hooks/use-product-category-mutation.d.ts +65 -0
- package/dist/hooks/use-product-category-mutation.d.ts.map +1 -0
- package/dist/hooks/use-product-category-mutation.js +39 -0
- package/dist/hooks/use-product-category.d.ts +26 -0
- package/dist/hooks/use-product-category.d.ts.map +1 -0
- package/dist/hooks/use-product-category.js +18 -0
- package/dist/hooks/use-product-day-mutation.d.ts +43 -0
- package/dist/hooks/use-product-day-mutation.d.ts.map +1 -0
- package/dist/hooks/use-product-day-mutation.js +54 -0
- package/dist/hooks/use-product-day-service-mutation.d.ts +66 -0
- package/dist/hooks/use-product-day-service-mutation.d.ts.map +1 -0
- package/dist/hooks/use-product-day-service-mutation.js +41 -0
- package/dist/hooks/use-product-day-services.d.ts +21 -0
- package/dist/hooks/use-product-day-services.d.ts.map +1 -0
- package/dist/hooks/use-product-day-services.js +12 -0
- package/dist/hooks/use-product-day-translation-mutation.d.ts +49 -0
- package/dist/hooks/use-product-day-translation-mutation.d.ts.map +1 -0
- package/dist/hooks/use-product-day-translation-mutation.js +38 -0
- package/dist/hooks/use-product-day-translations.d.ts +19 -0
- package/dist/hooks/use-product-day-translations.d.ts.map +1 -0
- package/dist/hooks/use-product-day-translations.js +20 -0
- package/dist/hooks/use-product-days.d.ts +16 -0
- package/dist/hooks/use-product-days.d.ts.map +1 -0
- package/dist/hooks/use-product-days.js +12 -0
- package/dist/hooks/use-product-itineraries.d.ts +15 -0
- package/dist/hooks/use-product-itineraries.d.ts.map +1 -0
- package/dist/hooks/use-product-itineraries.js +12 -0
- package/dist/hooks/use-product-itinerary-days.d.ts +16 -0
- package/dist/hooks/use-product-itinerary-days.d.ts.map +1 -0
- package/dist/hooks/use-product-itinerary-days.js +12 -0
- package/dist/hooks/use-product-itinerary-mutation.d.ts +54 -0
- package/dist/hooks/use-product-itinerary-mutation.d.ts.map +1 -0
- package/dist/hooks/use-product-itinerary-mutation.js +63 -0
- package/dist/hooks/use-product-media-mutation.d.ts +101 -0
- package/dist/hooks/use-product-media-mutation.d.ts.map +1 -0
- package/dist/hooks/use-product-media-mutation.js +69 -0
- package/dist/hooks/use-product-media.d.ts +26 -0
- package/dist/hooks/use-product-media.d.ts.map +1 -0
- package/dist/hooks/use-product-media.js +12 -0
- package/dist/hooks/use-product-mutation.d.ts +121 -0
- package/dist/hooks/use-product-mutation.d.ts.map +1 -0
- package/dist/hooks/use-product-mutation.js +44 -0
- package/dist/hooks/use-product-option-mutation.d.ts +49 -0
- package/dist/hooks/use-product-option-mutation.d.ts.map +1 -0
- package/dist/hooks/use-product-option-mutation.js +39 -0
- package/dist/hooks/use-product-option.d.ts +18 -0
- package/dist/hooks/use-product-option.d.ts.map +1 -0
- package/dist/hooks/use-product-option.js +12 -0
- package/dist/hooks/use-product-options.d.ts +24 -0
- package/dist/hooks/use-product-options.d.ts.map +1 -0
- package/dist/hooks/use-product-options.js +12 -0
- package/dist/hooks/use-product-tag-mutation.d.ts +25 -0
- package/dist/hooks/use-product-tag-mutation.d.ts.map +1 -0
- package/dist/hooks/use-product-tag-mutation.js +39 -0
- package/dist/hooks/use-product-tag.d.ts +10 -0
- package/dist/hooks/use-product-tag.d.ts.map +1 -0
- package/dist/hooks/use-product-tag.js +18 -0
- package/dist/hooks/use-product-tags.d.ts +16 -0
- package/dist/hooks/use-product-tags.d.ts.map +1 -0
- package/dist/hooks/use-product-tags.js +25 -0
- package/dist/hooks/use-product-translation-mutation.d.ts +52 -0
- package/dist/hooks/use-product-translation-mutation.d.ts.map +1 -0
- package/dist/hooks/use-product-translation-mutation.js +47 -0
- package/dist/hooks/use-product-translations.d.ts +28 -0
- package/dist/hooks/use-product-translations.d.ts.map +1 -0
- package/dist/hooks/use-product-translations.js +24 -0
- package/dist/hooks/use-product-type-mutation.d.ts +50 -0
- package/dist/hooks/use-product-type-mutation.d.ts.map +1 -0
- package/dist/hooks/use-product-type-mutation.js +47 -0
- package/dist/hooks/use-product-type.d.ts +15 -0
- package/dist/hooks/use-product-type.d.ts.map +1 -0
- package/dist/hooks/use-product-type.js +12 -0
- package/dist/hooks/use-product-types.d.ts +21 -0
- package/dist/hooks/use-product-types.d.ts.map +1 -0
- package/dist/hooks/use-product-types.js +9 -0
- package/dist/hooks/use-product-version-mutation.d.ts +16 -0
- package/dist/hooks/use-product-version-mutation.d.ts.map +1 -0
- package/dist/hooks/use-product-version-mutation.js +22 -0
- package/dist/hooks/use-product-versions.d.ts +15 -0
- package/dist/hooks/use-product-versions.d.ts.map +1 -0
- package/dist/hooks/use-product-versions.js +12 -0
- package/dist/hooks/use-product.d.ts +45 -0
- package/dist/hooks/use-product.d.ts.map +1 -0
- package/dist/hooks/use-product.js +23 -0
- package/dist/hooks/use-products.d.ts +51 -0
- package/dist/hooks/use-products.d.ts.map +1 -0
- package/dist/hooks/use-products.js +38 -0
- package/dist/i18n/en-catalog.d.ts +199 -0
- package/dist/i18n/en-catalog.d.ts.map +1 -0
- package/dist/i18n/en-catalog.js +198 -0
- package/dist/i18n/en-core.d.ts +323 -0
- package/dist/i18n/en-core.d.ts.map +1 -0
- package/dist/i18n/en-core.js +322 -0
- package/dist/i18n/en-operations.d.ts +287 -0
- package/dist/i18n/en-operations.d.ts.map +1 -0
- package/dist/i18n/en-operations.js +286 -0
- package/dist/i18n/en.d.ts +803 -0
- package/dist/i18n/en.d.ts.map +1 -0
- package/dist/i18n/en.js +8 -0
- package/dist/i18n/index.d.ts +5 -0
- package/dist/i18n/index.d.ts.map +1 -0
- package/dist/i18n/index.js +3 -0
- package/dist/i18n/message-shared.d.ts +6 -0
- package/dist/i18n/message-shared.d.ts.map +1 -0
- package/dist/i18n/message-shared.js +1 -0
- package/dist/i18n/messages-catalog.d.ts +199 -0
- package/dist/i18n/messages-catalog.d.ts.map +1 -0
- package/dist/i18n/messages-catalog.js +1 -0
- package/dist/i18n/messages-core.d.ts +304 -0
- package/dist/i18n/messages-core.d.ts.map +1 -0
- package/dist/i18n/messages-core.js +1 -0
- package/dist/i18n/messages-operations.d.ts +287 -0
- package/dist/i18n/messages-operations.d.ts.map +1 -0
- package/dist/i18n/messages-operations.js +1 -0
- package/dist/i18n/messages.d.ts +6 -0
- package/dist/i18n/messages.d.ts.map +1 -0
- package/dist/i18n/messages.js +1 -0
- package/dist/i18n/provider.d.ts +1628 -0
- package/dist/i18n/provider.d.ts.map +1 -0
- package/dist/i18n/provider.js +44 -0
- package/dist/i18n/ro-catalog.d.ts +199 -0
- package/dist/i18n/ro-catalog.d.ts.map +1 -0
- package/dist/i18n/ro-catalog.js +198 -0
- package/dist/i18n/ro-core.d.ts +323 -0
- package/dist/i18n/ro-core.d.ts.map +1 -0
- package/dist/i18n/ro-core.js +322 -0
- package/dist/i18n/ro-operations.d.ts +287 -0
- package/dist/i18n/ro-operations.d.ts.map +1 -0
- package/dist/i18n/ro-operations.js +286 -0
- package/dist/i18n/ro.d.ts +803 -0
- package/dist/i18n/ro.d.ts.map +1 -0
- package/dist/i18n/ro.js +8 -0
- package/dist/i18n-en.d.ts +2 -0
- package/dist/i18n-en.d.ts.map +1 -0
- package/dist/i18n-en.js +1 -0
- package/dist/i18n-ro.d.ts +2 -0
- package/dist/i18n-ro.d.ts.map +1 -0
- package/dist/i18n-ro.js +1 -0
- package/dist/i18n.d.ts +2 -0
- package/dist/i18n.d.ts.map +1 -0
- package/dist/i18n.js +1 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +8 -0
- package/dist/operations.d.ts +53 -0
- package/dist/operations.d.ts.map +1 -0
- package/dist/operations.js +13 -0
- package/dist/provider.d.ts +2 -0
- package/dist/provider.d.ts.map +1 -0
- package/dist/provider.js +1 -0
- package/dist/query-keys.d.ts +114 -0
- package/dist/query-keys.d.ts.map +1 -0
- package/dist/query-keys.js +34 -0
- package/dist/query-options-action-ledger.d.ts +194 -0
- package/dist/query-options-action-ledger.d.ts.map +1 -0
- package/dist/query-options-action-ledger.js +20 -0
- package/dist/query-options.d.ts +1313 -0
- package/dist/query-options.d.ts.map +1 -0
- package/dist/query-options.js +281 -0
- package/dist/schemas.d.ts +1098 -0
- package/dist/schemas.d.ts.map +1 -0
- package/dist/schemas.js +320 -0
- package/dist/ui.d.ts +44 -0
- package/dist/ui.d.ts.map +1 -0
- package/dist/ui.js +42 -0
- package/package.json +159 -0
- package/src/styles.css +12 -0
|
@@ -0,0 +1,1628 @@
|
|
|
1
|
+
import { type LocaleMessageOverrides, type PackageI18nValue } from "@voyant-travel/i18n";
|
|
2
|
+
import type { ReactNode } from "react";
|
|
3
|
+
import type { ProductsUiMessages } from "./messages.js";
|
|
4
|
+
export declare const productsUiMessageDefinitions: {
|
|
5
|
+
en: {
|
|
6
|
+
productDayDialog: {
|
|
7
|
+
titles: {
|
|
8
|
+
create: string;
|
|
9
|
+
edit: string;
|
|
10
|
+
};
|
|
11
|
+
descriptions: {
|
|
12
|
+
create: string;
|
|
13
|
+
edit: string;
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
productDayForm: {
|
|
17
|
+
fields: {
|
|
18
|
+
dayNumber: string;
|
|
19
|
+
location: string;
|
|
20
|
+
title: string;
|
|
21
|
+
description: string;
|
|
22
|
+
};
|
|
23
|
+
placeholders: {
|
|
24
|
+
location: string;
|
|
25
|
+
title: string;
|
|
26
|
+
description: string;
|
|
27
|
+
};
|
|
28
|
+
validation: {
|
|
29
|
+
dayNumberMin: string;
|
|
30
|
+
saveFailed: string;
|
|
31
|
+
};
|
|
32
|
+
actions: {
|
|
33
|
+
addDay: string;
|
|
34
|
+
saveDay: string;
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
productDayServiceForm: {
|
|
38
|
+
fields: {
|
|
39
|
+
supplierService: string;
|
|
40
|
+
serviceType: string;
|
|
41
|
+
countryCode: string;
|
|
42
|
+
name: string;
|
|
43
|
+
description: string;
|
|
44
|
+
costCurrency: string;
|
|
45
|
+
costAmount: string;
|
|
46
|
+
quantity: string;
|
|
47
|
+
sortOrder: string;
|
|
48
|
+
notes: string;
|
|
49
|
+
};
|
|
50
|
+
placeholders: {
|
|
51
|
+
supplierService: string;
|
|
52
|
+
countryCode: string;
|
|
53
|
+
name: string;
|
|
54
|
+
description: string;
|
|
55
|
+
notes: string;
|
|
56
|
+
};
|
|
57
|
+
serviceTypes: {
|
|
58
|
+
accommodation: string;
|
|
59
|
+
transfer: string;
|
|
60
|
+
experience: string;
|
|
61
|
+
guide: string;
|
|
62
|
+
meal: string;
|
|
63
|
+
other: string;
|
|
64
|
+
};
|
|
65
|
+
validation: {
|
|
66
|
+
nameRequired: string;
|
|
67
|
+
currencyRequired: string;
|
|
68
|
+
costNonNegative: string;
|
|
69
|
+
quantityMin: string;
|
|
70
|
+
saveFailed: string;
|
|
71
|
+
};
|
|
72
|
+
actions: {
|
|
73
|
+
addService: string;
|
|
74
|
+
saveService: string;
|
|
75
|
+
};
|
|
76
|
+
};
|
|
77
|
+
productDayServiceDialog: {
|
|
78
|
+
titles: {
|
|
79
|
+
create: string;
|
|
80
|
+
edit: string;
|
|
81
|
+
};
|
|
82
|
+
descriptions: {
|
|
83
|
+
create: string;
|
|
84
|
+
edit: string;
|
|
85
|
+
};
|
|
86
|
+
};
|
|
87
|
+
productItineraryDayRow: {
|
|
88
|
+
dayLabel: string;
|
|
89
|
+
emptyServices: string;
|
|
90
|
+
servicesLoadingError: string;
|
|
91
|
+
columns: {
|
|
92
|
+
name: string;
|
|
93
|
+
type: string;
|
|
94
|
+
cost: string;
|
|
95
|
+
quantity: string;
|
|
96
|
+
};
|
|
97
|
+
};
|
|
98
|
+
productItineraryDialog: {
|
|
99
|
+
titles: {
|
|
100
|
+
create: string;
|
|
101
|
+
edit: string;
|
|
102
|
+
};
|
|
103
|
+
descriptions: {
|
|
104
|
+
create: string;
|
|
105
|
+
edit: string;
|
|
106
|
+
};
|
|
107
|
+
fields: {
|
|
108
|
+
name: string;
|
|
109
|
+
defaultItinerary: string;
|
|
110
|
+
notesDefaultLocked: string;
|
|
111
|
+
notesFirstDefault: string;
|
|
112
|
+
};
|
|
113
|
+
placeholders: {
|
|
114
|
+
name: string;
|
|
115
|
+
};
|
|
116
|
+
validation: {
|
|
117
|
+
nameRequired: string;
|
|
118
|
+
saveFailed: string;
|
|
119
|
+
};
|
|
120
|
+
actions: {
|
|
121
|
+
createItinerary: string;
|
|
122
|
+
};
|
|
123
|
+
};
|
|
124
|
+
optionUnitDialog: {
|
|
125
|
+
titles: {
|
|
126
|
+
create: string;
|
|
127
|
+
edit: string;
|
|
128
|
+
};
|
|
129
|
+
descriptions: {
|
|
130
|
+
create: string;
|
|
131
|
+
edit: string;
|
|
132
|
+
};
|
|
133
|
+
};
|
|
134
|
+
optionUnitForm: {
|
|
135
|
+
fields: {
|
|
136
|
+
name: string;
|
|
137
|
+
code: string;
|
|
138
|
+
unitType: string;
|
|
139
|
+
sortOrder: string;
|
|
140
|
+
minQuantity: string;
|
|
141
|
+
maxQuantity: string;
|
|
142
|
+
minAge: string;
|
|
143
|
+
maxAge: string;
|
|
144
|
+
occupancyMin: string;
|
|
145
|
+
occupancyMax: string;
|
|
146
|
+
description: string;
|
|
147
|
+
required: string;
|
|
148
|
+
hidden: string;
|
|
149
|
+
};
|
|
150
|
+
placeholders: {
|
|
151
|
+
name: string;
|
|
152
|
+
code: string;
|
|
153
|
+
description: string;
|
|
154
|
+
};
|
|
155
|
+
validation: {
|
|
156
|
+
nameRequired: string;
|
|
157
|
+
saveFailed: string;
|
|
158
|
+
};
|
|
159
|
+
actions: {
|
|
160
|
+
createUnit: string;
|
|
161
|
+
};
|
|
162
|
+
};
|
|
163
|
+
productVersionDialog: {
|
|
164
|
+
title: string;
|
|
165
|
+
description: string;
|
|
166
|
+
fields: {
|
|
167
|
+
notes: string;
|
|
168
|
+
};
|
|
169
|
+
placeholders: {
|
|
170
|
+
notes: string;
|
|
171
|
+
};
|
|
172
|
+
validation: {
|
|
173
|
+
saveFailed: string;
|
|
174
|
+
};
|
|
175
|
+
actions: {
|
|
176
|
+
createVersion: string;
|
|
177
|
+
};
|
|
178
|
+
};
|
|
179
|
+
productVersionsSection: {
|
|
180
|
+
titles: {
|
|
181
|
+
default: string;
|
|
182
|
+
};
|
|
183
|
+
descriptions: {
|
|
184
|
+
default: string;
|
|
185
|
+
};
|
|
186
|
+
actions: {
|
|
187
|
+
createVersion: string;
|
|
188
|
+
};
|
|
189
|
+
loadingError: string;
|
|
190
|
+
empty: string;
|
|
191
|
+
versionLabel: string;
|
|
192
|
+
};
|
|
193
|
+
productOptionDialog: {
|
|
194
|
+
titles: {
|
|
195
|
+
create: string;
|
|
196
|
+
edit: string;
|
|
197
|
+
};
|
|
198
|
+
descriptions: {
|
|
199
|
+
create: string;
|
|
200
|
+
edit: string;
|
|
201
|
+
};
|
|
202
|
+
};
|
|
203
|
+
productOptionForm: {
|
|
204
|
+
fields: {
|
|
205
|
+
name: string;
|
|
206
|
+
code: string;
|
|
207
|
+
description: string;
|
|
208
|
+
status: string;
|
|
209
|
+
sortOrder: string;
|
|
210
|
+
availableFrom: string;
|
|
211
|
+
availableTo: string;
|
|
212
|
+
defaultOption: string;
|
|
213
|
+
};
|
|
214
|
+
placeholders: {
|
|
215
|
+
name: string;
|
|
216
|
+
code: string;
|
|
217
|
+
description: string;
|
|
218
|
+
availableFrom: string;
|
|
219
|
+
availableTo: string;
|
|
220
|
+
};
|
|
221
|
+
validation: {
|
|
222
|
+
nameRequired: string;
|
|
223
|
+
saveFailed: string;
|
|
224
|
+
};
|
|
225
|
+
actions: {
|
|
226
|
+
createOption: string;
|
|
227
|
+
};
|
|
228
|
+
};
|
|
229
|
+
productOptionsSection: {
|
|
230
|
+
titles: {
|
|
231
|
+
default: string;
|
|
232
|
+
units: string;
|
|
233
|
+
personUnits: string;
|
|
234
|
+
roomUnits: string;
|
|
235
|
+
};
|
|
236
|
+
descriptions: {
|
|
237
|
+
default: string;
|
|
238
|
+
units: string;
|
|
239
|
+
personUnits: string;
|
|
240
|
+
roomUnits: string;
|
|
241
|
+
};
|
|
242
|
+
actions: {
|
|
243
|
+
addOption: string;
|
|
244
|
+
addUnit: string;
|
|
245
|
+
addPersonUnit: string;
|
|
246
|
+
addRoomUnit: string;
|
|
247
|
+
duplicate: string;
|
|
248
|
+
edit: string;
|
|
249
|
+
delete: string;
|
|
250
|
+
};
|
|
251
|
+
loadingError: {
|
|
252
|
+
options: string;
|
|
253
|
+
units: string;
|
|
254
|
+
};
|
|
255
|
+
empty: {
|
|
256
|
+
options: string;
|
|
257
|
+
units: string;
|
|
258
|
+
};
|
|
259
|
+
configurationWarnings: {
|
|
260
|
+
roomOptionsTitle: string;
|
|
261
|
+
roomOptionsDescription: string;
|
|
262
|
+
};
|
|
263
|
+
deleteConfirm: {
|
|
264
|
+
option: string;
|
|
265
|
+
unit: string;
|
|
266
|
+
};
|
|
267
|
+
columns: {
|
|
268
|
+
unitType: string;
|
|
269
|
+
unitName: string;
|
|
270
|
+
quantity: string;
|
|
271
|
+
personQuantity: string;
|
|
272
|
+
roomQuantity: string;
|
|
273
|
+
age: string;
|
|
274
|
+
occupancy: string;
|
|
275
|
+
actions: string;
|
|
276
|
+
};
|
|
277
|
+
unitSummaries: {
|
|
278
|
+
range: string;
|
|
279
|
+
rooms: string;
|
|
280
|
+
roomsWithCount: string;
|
|
281
|
+
vehicles: string;
|
|
282
|
+
vehiclesWithCount: string;
|
|
283
|
+
sleeps: string;
|
|
284
|
+
sleepsRange: string;
|
|
285
|
+
};
|
|
286
|
+
badges: {
|
|
287
|
+
defaultOption: string;
|
|
288
|
+
};
|
|
289
|
+
};
|
|
290
|
+
productCategoryDialog: {
|
|
291
|
+
titles: {
|
|
292
|
+
create: string;
|
|
293
|
+
edit: string;
|
|
294
|
+
};
|
|
295
|
+
descriptions: {
|
|
296
|
+
create: string;
|
|
297
|
+
edit: string;
|
|
298
|
+
};
|
|
299
|
+
};
|
|
300
|
+
productCategoryForm: {
|
|
301
|
+
fields: {
|
|
302
|
+
name: string;
|
|
303
|
+
slug: string;
|
|
304
|
+
parentCategory: string;
|
|
305
|
+
description: string;
|
|
306
|
+
sortOrder: string;
|
|
307
|
+
active: string;
|
|
308
|
+
customerPaymentPolicy: string;
|
|
309
|
+
};
|
|
310
|
+
descriptions: {
|
|
311
|
+
customerPaymentPolicy: string;
|
|
312
|
+
};
|
|
313
|
+
placeholders: {
|
|
314
|
+
name: string;
|
|
315
|
+
slug: string;
|
|
316
|
+
parentCategory: string;
|
|
317
|
+
description: string;
|
|
318
|
+
};
|
|
319
|
+
validation: {
|
|
320
|
+
nameRequired: string;
|
|
321
|
+
slugRequired: string;
|
|
322
|
+
saveFailed: string;
|
|
323
|
+
};
|
|
324
|
+
actions: {
|
|
325
|
+
createCategory: string;
|
|
326
|
+
};
|
|
327
|
+
};
|
|
328
|
+
productCategoryList: {
|
|
329
|
+
searchPlaceholder: string;
|
|
330
|
+
addCategory: string;
|
|
331
|
+
columns: {
|
|
332
|
+
name: string;
|
|
333
|
+
slug: string;
|
|
334
|
+
parent: string;
|
|
335
|
+
status: string;
|
|
336
|
+
actions: string;
|
|
337
|
+
};
|
|
338
|
+
loadingError: string;
|
|
339
|
+
empty: string;
|
|
340
|
+
edit: string;
|
|
341
|
+
delete: string;
|
|
342
|
+
deleteConfirm: string;
|
|
343
|
+
showingSummary: string;
|
|
344
|
+
};
|
|
345
|
+
productTagDialog: {
|
|
346
|
+
titles: {
|
|
347
|
+
create: string;
|
|
348
|
+
edit: string;
|
|
349
|
+
};
|
|
350
|
+
descriptions: {
|
|
351
|
+
create: string;
|
|
352
|
+
edit: string;
|
|
353
|
+
};
|
|
354
|
+
};
|
|
355
|
+
productTagForm: {
|
|
356
|
+
fields: {
|
|
357
|
+
name: string;
|
|
358
|
+
};
|
|
359
|
+
placeholders: {
|
|
360
|
+
name: string;
|
|
361
|
+
};
|
|
362
|
+
validation: {
|
|
363
|
+
nameRequired: string;
|
|
364
|
+
saveFailed: string;
|
|
365
|
+
};
|
|
366
|
+
actions: {
|
|
367
|
+
createTag: string;
|
|
368
|
+
};
|
|
369
|
+
};
|
|
370
|
+
productTagList: {
|
|
371
|
+
searchPlaceholder: string;
|
|
372
|
+
addTag: string;
|
|
373
|
+
columns: {
|
|
374
|
+
name: string;
|
|
375
|
+
actions: string;
|
|
376
|
+
};
|
|
377
|
+
loadingError: string;
|
|
378
|
+
empty: string;
|
|
379
|
+
edit: string;
|
|
380
|
+
delete: string;
|
|
381
|
+
deleteConfirm: string;
|
|
382
|
+
showingSummary: string;
|
|
383
|
+
};
|
|
384
|
+
productTagsPage: {
|
|
385
|
+
title: string;
|
|
386
|
+
description: string;
|
|
387
|
+
};
|
|
388
|
+
productTypesPage: {
|
|
389
|
+
title: string;
|
|
390
|
+
description: string;
|
|
391
|
+
addType: string;
|
|
392
|
+
empty: string;
|
|
393
|
+
edit: string;
|
|
394
|
+
delete: string;
|
|
395
|
+
deleteConfirm: string;
|
|
396
|
+
showingSummary: string;
|
|
397
|
+
editSheetTitle: string;
|
|
398
|
+
newSheetTitle: string;
|
|
399
|
+
nameLabel: string;
|
|
400
|
+
namePlaceholder: string;
|
|
401
|
+
codeLabel: string;
|
|
402
|
+
codePlaceholder: string;
|
|
403
|
+
descriptionLabel: string;
|
|
404
|
+
descriptionPlaceholder: string;
|
|
405
|
+
sortOrderLabel: string;
|
|
406
|
+
activeLabel: string;
|
|
407
|
+
cancel: string;
|
|
408
|
+
saveChanges: string;
|
|
409
|
+
createType: string;
|
|
410
|
+
validation: {
|
|
411
|
+
nameRequired: string;
|
|
412
|
+
codeRequired: string;
|
|
413
|
+
};
|
|
414
|
+
};
|
|
415
|
+
productMediaDialog: {
|
|
416
|
+
titles: {
|
|
417
|
+
create: string;
|
|
418
|
+
edit: string;
|
|
419
|
+
};
|
|
420
|
+
descriptions: {
|
|
421
|
+
create: string;
|
|
422
|
+
edit: string;
|
|
423
|
+
};
|
|
424
|
+
};
|
|
425
|
+
productMediaForm: {
|
|
426
|
+
fields: {
|
|
427
|
+
mediaType: string;
|
|
428
|
+
name: string;
|
|
429
|
+
url: string;
|
|
430
|
+
storageKey: string;
|
|
431
|
+
mimeType: string;
|
|
432
|
+
fileSize: string;
|
|
433
|
+
sortOrder: string;
|
|
434
|
+
coverMedia: string;
|
|
435
|
+
altText: string;
|
|
436
|
+
};
|
|
437
|
+
placeholders: {
|
|
438
|
+
name: string;
|
|
439
|
+
url: string;
|
|
440
|
+
mimeType: string;
|
|
441
|
+
altText: string;
|
|
442
|
+
};
|
|
443
|
+
validation: {
|
|
444
|
+
nameRequired: string;
|
|
445
|
+
urlRequired: string;
|
|
446
|
+
saveFailed: string;
|
|
447
|
+
};
|
|
448
|
+
actions: {
|
|
449
|
+
addMedia: string;
|
|
450
|
+
saveMedia: string;
|
|
451
|
+
};
|
|
452
|
+
};
|
|
453
|
+
productMediaSection: {
|
|
454
|
+
titles: {
|
|
455
|
+
media: string;
|
|
456
|
+
dayMedia: string;
|
|
457
|
+
};
|
|
458
|
+
descriptions: {
|
|
459
|
+
media: string;
|
|
460
|
+
dayMedia: string;
|
|
461
|
+
};
|
|
462
|
+
actions: {
|
|
463
|
+
upload: string;
|
|
464
|
+
addMedia: string;
|
|
465
|
+
reorder: string;
|
|
466
|
+
saveOrder: string;
|
|
467
|
+
cancelReorder: string;
|
|
468
|
+
drag: string;
|
|
469
|
+
markCover: string;
|
|
470
|
+
openPreview: string;
|
|
471
|
+
closePreview: string;
|
|
472
|
+
previousMedia: string;
|
|
473
|
+
nextMedia: string;
|
|
474
|
+
openFile: string;
|
|
475
|
+
edit: string;
|
|
476
|
+
delete: string;
|
|
477
|
+
};
|
|
478
|
+
loadingError: string;
|
|
479
|
+
empty: string;
|
|
480
|
+
itemCount: string;
|
|
481
|
+
uploadFailed: string;
|
|
482
|
+
deleteConfirm: string;
|
|
483
|
+
viewerTitle: string;
|
|
484
|
+
coverBadge: string;
|
|
485
|
+
};
|
|
486
|
+
common: {
|
|
487
|
+
cancel: string;
|
|
488
|
+
saveChanges: string;
|
|
489
|
+
create: string;
|
|
490
|
+
add: string;
|
|
491
|
+
loading: string;
|
|
492
|
+
none: string;
|
|
493
|
+
previous: string;
|
|
494
|
+
next: string;
|
|
495
|
+
page: string;
|
|
496
|
+
active: string;
|
|
497
|
+
inactive: string;
|
|
498
|
+
mediaTypeLabels: {
|
|
499
|
+
image: string;
|
|
500
|
+
video: string;
|
|
501
|
+
document: string;
|
|
502
|
+
};
|
|
503
|
+
optionUnitTypeLabels: {
|
|
504
|
+
person: string;
|
|
505
|
+
group: string;
|
|
506
|
+
room: string;
|
|
507
|
+
vehicle: string;
|
|
508
|
+
service: string;
|
|
509
|
+
other: string;
|
|
510
|
+
};
|
|
511
|
+
optionStatusLabels: {
|
|
512
|
+
draft: string;
|
|
513
|
+
active: string;
|
|
514
|
+
archived: string;
|
|
515
|
+
};
|
|
516
|
+
productStatusLabels: {
|
|
517
|
+
draft: string;
|
|
518
|
+
active: string;
|
|
519
|
+
archived: string;
|
|
520
|
+
};
|
|
521
|
+
productBookingModeLabels: {
|
|
522
|
+
date: string;
|
|
523
|
+
date_time: string;
|
|
524
|
+
open: string;
|
|
525
|
+
stay: string;
|
|
526
|
+
transfer: string;
|
|
527
|
+
itinerary: string;
|
|
528
|
+
other: string;
|
|
529
|
+
};
|
|
530
|
+
productCapacityModeLabels: {
|
|
531
|
+
free_sale: string;
|
|
532
|
+
limited: string;
|
|
533
|
+
on_request: string;
|
|
534
|
+
};
|
|
535
|
+
productVisibilityLabels: {
|
|
536
|
+
public: string;
|
|
537
|
+
private: string;
|
|
538
|
+
hidden: string;
|
|
539
|
+
};
|
|
540
|
+
};
|
|
541
|
+
comboboxes: {
|
|
542
|
+
product: {
|
|
543
|
+
placeholder: string;
|
|
544
|
+
empty: string;
|
|
545
|
+
};
|
|
546
|
+
productCategory: {
|
|
547
|
+
placeholder: string;
|
|
548
|
+
empty: string;
|
|
549
|
+
};
|
|
550
|
+
productType: {
|
|
551
|
+
placeholder: string;
|
|
552
|
+
empty: string;
|
|
553
|
+
};
|
|
554
|
+
facility: {
|
|
555
|
+
placeholder: string;
|
|
556
|
+
empty: string;
|
|
557
|
+
};
|
|
558
|
+
taxClass: {
|
|
559
|
+
placeholder: string;
|
|
560
|
+
empty: string;
|
|
561
|
+
};
|
|
562
|
+
contractTemplate: {
|
|
563
|
+
placeholder: string;
|
|
564
|
+
empty: string;
|
|
565
|
+
};
|
|
566
|
+
};
|
|
567
|
+
catalogCard: {
|
|
568
|
+
untitled: string;
|
|
569
|
+
};
|
|
570
|
+
productCategoriesPage: {
|
|
571
|
+
title: string;
|
|
572
|
+
description: string;
|
|
573
|
+
};
|
|
574
|
+
productsPage: {
|
|
575
|
+
title: string;
|
|
576
|
+
description: string;
|
|
577
|
+
};
|
|
578
|
+
productDetailPage: {
|
|
579
|
+
actions: {
|
|
580
|
+
back: string;
|
|
581
|
+
edit: string;
|
|
582
|
+
delete: string;
|
|
583
|
+
createBooking: string;
|
|
584
|
+
addItinerary: string;
|
|
585
|
+
editItinerary: string;
|
|
586
|
+
deleteItinerary: string;
|
|
587
|
+
addDay: string;
|
|
588
|
+
};
|
|
589
|
+
sections: {
|
|
590
|
+
overview: {
|
|
591
|
+
title: string;
|
|
592
|
+
description: string;
|
|
593
|
+
};
|
|
594
|
+
inclusions: {
|
|
595
|
+
title: string;
|
|
596
|
+
description: string;
|
|
597
|
+
};
|
|
598
|
+
exclusions: {
|
|
599
|
+
title: string;
|
|
600
|
+
description: string;
|
|
601
|
+
};
|
|
602
|
+
terms: {
|
|
603
|
+
title: string;
|
|
604
|
+
description: string;
|
|
605
|
+
};
|
|
606
|
+
details: {
|
|
607
|
+
title: string;
|
|
608
|
+
description: string;
|
|
609
|
+
};
|
|
610
|
+
commercial: {
|
|
611
|
+
title: string;
|
|
612
|
+
description: string;
|
|
613
|
+
};
|
|
614
|
+
itinerary: {
|
|
615
|
+
title: string;
|
|
616
|
+
description: string;
|
|
617
|
+
};
|
|
618
|
+
sidebar: {
|
|
619
|
+
title: string;
|
|
620
|
+
description: string;
|
|
621
|
+
};
|
|
622
|
+
};
|
|
623
|
+
fields: {
|
|
624
|
+
status: string;
|
|
625
|
+
bookingMode: string;
|
|
626
|
+
visibility: string;
|
|
627
|
+
capacityMode: string;
|
|
628
|
+
timezone: string;
|
|
629
|
+
productType: string;
|
|
630
|
+
facility: string;
|
|
631
|
+
taxClass: string;
|
|
632
|
+
contractTemplate: string;
|
|
633
|
+
sellAmount: string;
|
|
634
|
+
costAmount: string;
|
|
635
|
+
margin: string;
|
|
636
|
+
pax: string;
|
|
637
|
+
startDate: string;
|
|
638
|
+
endDate: string;
|
|
639
|
+
reservationTimeout: string;
|
|
640
|
+
tags: string;
|
|
641
|
+
createdAt: string;
|
|
642
|
+
updatedAt: string;
|
|
643
|
+
};
|
|
644
|
+
states: {
|
|
645
|
+
loading: string;
|
|
646
|
+
loadFailed: string;
|
|
647
|
+
notFoundTitle: string;
|
|
648
|
+
notFoundDescription: string;
|
|
649
|
+
noDescription: string;
|
|
650
|
+
noInclusions: string;
|
|
651
|
+
noExclusions: string;
|
|
652
|
+
noTerms: string;
|
|
653
|
+
noItineraries: string;
|
|
654
|
+
noDays: string;
|
|
655
|
+
deleteConfirm: string;
|
|
656
|
+
deleteItineraryConfirm: string;
|
|
657
|
+
deleteDayConfirm: string;
|
|
658
|
+
deleteServiceConfirm: string;
|
|
659
|
+
deleteFailed: string;
|
|
660
|
+
minutes: string;
|
|
661
|
+
};
|
|
662
|
+
};
|
|
663
|
+
productDialog: {
|
|
664
|
+
titles: {
|
|
665
|
+
create: string;
|
|
666
|
+
edit: string;
|
|
667
|
+
};
|
|
668
|
+
descriptions: {
|
|
669
|
+
create: string;
|
|
670
|
+
edit: string;
|
|
671
|
+
};
|
|
672
|
+
};
|
|
673
|
+
productForm: {
|
|
674
|
+
fields: {
|
|
675
|
+
name: string;
|
|
676
|
+
description: string;
|
|
677
|
+
inclusions: string;
|
|
678
|
+
exclusions: string;
|
|
679
|
+
terms: string;
|
|
680
|
+
tags: string;
|
|
681
|
+
status: string;
|
|
682
|
+
bookingMode: string;
|
|
683
|
+
productType: string;
|
|
684
|
+
facility: string;
|
|
685
|
+
taxClass: string;
|
|
686
|
+
contractTemplate: string;
|
|
687
|
+
visibility: string;
|
|
688
|
+
capacityMode: string;
|
|
689
|
+
timezone: string;
|
|
690
|
+
pax: string;
|
|
691
|
+
reservationTimeout: string;
|
|
692
|
+
sellCurrency: string;
|
|
693
|
+
sellAmount: string;
|
|
694
|
+
costAmount: string;
|
|
695
|
+
};
|
|
696
|
+
placeholders: {
|
|
697
|
+
name: string;
|
|
698
|
+
description: string;
|
|
699
|
+
inclusions: string;
|
|
700
|
+
exclusions: string;
|
|
701
|
+
terms: string;
|
|
702
|
+
tagInput: string;
|
|
703
|
+
productTypeSearch: string;
|
|
704
|
+
facilitySearch: string;
|
|
705
|
+
taxClassSearch: string;
|
|
706
|
+
contractTemplateSearch: string;
|
|
707
|
+
timezone: string;
|
|
708
|
+
pax: string;
|
|
709
|
+
reservationTimeout: string;
|
|
710
|
+
currencySearch: string;
|
|
711
|
+
amount: string;
|
|
712
|
+
};
|
|
713
|
+
validation: {
|
|
714
|
+
nameRequired: string;
|
|
715
|
+
sellCurrencyInvalid: string;
|
|
716
|
+
paxInvalid: string;
|
|
717
|
+
reservationTimeoutInvalid: string;
|
|
718
|
+
saveFailed: string;
|
|
719
|
+
};
|
|
720
|
+
actions: {
|
|
721
|
+
cancel: string;
|
|
722
|
+
saving: string;
|
|
723
|
+
create: string;
|
|
724
|
+
saveChanges: string;
|
|
725
|
+
};
|
|
726
|
+
};
|
|
727
|
+
productTranslationsCard: {
|
|
728
|
+
title: string;
|
|
729
|
+
description: string;
|
|
730
|
+
languageSelectLabel: string;
|
|
731
|
+
newLanguageLabel: string;
|
|
732
|
+
fields: {
|
|
733
|
+
languageTag: string;
|
|
734
|
+
name: string;
|
|
735
|
+
slug: string;
|
|
736
|
+
shortDescription: string;
|
|
737
|
+
description: string;
|
|
738
|
+
inclusions: string;
|
|
739
|
+
exclusions: string;
|
|
740
|
+
terms: string;
|
|
741
|
+
seoTitle: string;
|
|
742
|
+
seoDescription: string;
|
|
743
|
+
};
|
|
744
|
+
placeholders: {
|
|
745
|
+
languageTag: string;
|
|
746
|
+
newLanguage: string;
|
|
747
|
+
name: string;
|
|
748
|
+
slug: string;
|
|
749
|
+
shortDescription: string;
|
|
750
|
+
description: string;
|
|
751
|
+
inclusions: string;
|
|
752
|
+
exclusions: string;
|
|
753
|
+
terms: string;
|
|
754
|
+
seoTitle: string;
|
|
755
|
+
seoDescription: string;
|
|
756
|
+
};
|
|
757
|
+
actions: {
|
|
758
|
+
addLanguage: string;
|
|
759
|
+
copyBase: string;
|
|
760
|
+
save: string;
|
|
761
|
+
saving: string;
|
|
762
|
+
delete: string;
|
|
763
|
+
deleting: string;
|
|
764
|
+
};
|
|
765
|
+
states: {
|
|
766
|
+
loading: string;
|
|
767
|
+
loadFailed: string;
|
|
768
|
+
noTranslations: string;
|
|
769
|
+
deleteConfirm: string;
|
|
770
|
+
deleteFailed: string;
|
|
771
|
+
saveFailed: string;
|
|
772
|
+
languageRequired: string;
|
|
773
|
+
nameRequired: string;
|
|
774
|
+
};
|
|
775
|
+
};
|
|
776
|
+
productList: {
|
|
777
|
+
searchPlaceholder: string;
|
|
778
|
+
newProduct: string;
|
|
779
|
+
filters: {
|
|
780
|
+
button: string;
|
|
781
|
+
statusLabel: string;
|
|
782
|
+
statusAll: string;
|
|
783
|
+
dateLabel: string;
|
|
784
|
+
datePlaceholder: string;
|
|
785
|
+
paxLabel: string;
|
|
786
|
+
sellAmountLabel: string;
|
|
787
|
+
min: string;
|
|
788
|
+
max: string;
|
|
789
|
+
clear: string;
|
|
790
|
+
};
|
|
791
|
+
columns: {
|
|
792
|
+
name: string;
|
|
793
|
+
status: string;
|
|
794
|
+
sellAmount: string;
|
|
795
|
+
pax: string;
|
|
796
|
+
startDate: string;
|
|
797
|
+
};
|
|
798
|
+
loadFailed: string;
|
|
799
|
+
empty: string;
|
|
800
|
+
noValue: string;
|
|
801
|
+
paginationShowing: string;
|
|
802
|
+
paginationPage: string;
|
|
803
|
+
paginationPrevious: string;
|
|
804
|
+
paginationNext: string;
|
|
805
|
+
};
|
|
806
|
+
};
|
|
807
|
+
ro: {
|
|
808
|
+
productDayDialog: {
|
|
809
|
+
titles: {
|
|
810
|
+
create: string;
|
|
811
|
+
edit: string;
|
|
812
|
+
};
|
|
813
|
+
descriptions: {
|
|
814
|
+
create: string;
|
|
815
|
+
edit: string;
|
|
816
|
+
};
|
|
817
|
+
};
|
|
818
|
+
productDayForm: {
|
|
819
|
+
fields: {
|
|
820
|
+
dayNumber: string;
|
|
821
|
+
location: string;
|
|
822
|
+
title: string;
|
|
823
|
+
description: string;
|
|
824
|
+
};
|
|
825
|
+
placeholders: {
|
|
826
|
+
location: string;
|
|
827
|
+
title: string;
|
|
828
|
+
description: string;
|
|
829
|
+
};
|
|
830
|
+
validation: {
|
|
831
|
+
dayNumberMin: string;
|
|
832
|
+
saveFailed: string;
|
|
833
|
+
};
|
|
834
|
+
actions: {
|
|
835
|
+
addDay: string;
|
|
836
|
+
saveDay: string;
|
|
837
|
+
};
|
|
838
|
+
};
|
|
839
|
+
productDayServiceForm: {
|
|
840
|
+
fields: {
|
|
841
|
+
supplierService: string;
|
|
842
|
+
serviceType: string;
|
|
843
|
+
countryCode: string;
|
|
844
|
+
name: string;
|
|
845
|
+
description: string;
|
|
846
|
+
costCurrency: string;
|
|
847
|
+
costAmount: string;
|
|
848
|
+
quantity: string;
|
|
849
|
+
sortOrder: string;
|
|
850
|
+
notes: string;
|
|
851
|
+
};
|
|
852
|
+
placeholders: {
|
|
853
|
+
supplierService: string;
|
|
854
|
+
countryCode: string;
|
|
855
|
+
name: string;
|
|
856
|
+
description: string;
|
|
857
|
+
notes: string;
|
|
858
|
+
};
|
|
859
|
+
serviceTypes: {
|
|
860
|
+
accommodation: string;
|
|
861
|
+
transfer: string;
|
|
862
|
+
experience: string;
|
|
863
|
+
guide: string;
|
|
864
|
+
meal: string;
|
|
865
|
+
other: string;
|
|
866
|
+
};
|
|
867
|
+
validation: {
|
|
868
|
+
nameRequired: string;
|
|
869
|
+
currencyRequired: string;
|
|
870
|
+
costNonNegative: string;
|
|
871
|
+
quantityMin: string;
|
|
872
|
+
saveFailed: string;
|
|
873
|
+
};
|
|
874
|
+
actions: {
|
|
875
|
+
addService: string;
|
|
876
|
+
saveService: string;
|
|
877
|
+
};
|
|
878
|
+
};
|
|
879
|
+
productDayServiceDialog: {
|
|
880
|
+
titles: {
|
|
881
|
+
create: string;
|
|
882
|
+
edit: string;
|
|
883
|
+
};
|
|
884
|
+
descriptions: {
|
|
885
|
+
create: string;
|
|
886
|
+
edit: string;
|
|
887
|
+
};
|
|
888
|
+
};
|
|
889
|
+
productItineraryDayRow: {
|
|
890
|
+
dayLabel: string;
|
|
891
|
+
emptyServices: string;
|
|
892
|
+
servicesLoadingError: string;
|
|
893
|
+
columns: {
|
|
894
|
+
name: string;
|
|
895
|
+
type: string;
|
|
896
|
+
cost: string;
|
|
897
|
+
quantity: string;
|
|
898
|
+
};
|
|
899
|
+
};
|
|
900
|
+
productItineraryDialog: {
|
|
901
|
+
titles: {
|
|
902
|
+
create: string;
|
|
903
|
+
edit: string;
|
|
904
|
+
};
|
|
905
|
+
descriptions: {
|
|
906
|
+
create: string;
|
|
907
|
+
edit: string;
|
|
908
|
+
};
|
|
909
|
+
fields: {
|
|
910
|
+
name: string;
|
|
911
|
+
defaultItinerary: string;
|
|
912
|
+
notesDefaultLocked: string;
|
|
913
|
+
notesFirstDefault: string;
|
|
914
|
+
};
|
|
915
|
+
placeholders: {
|
|
916
|
+
name: string;
|
|
917
|
+
};
|
|
918
|
+
validation: {
|
|
919
|
+
nameRequired: string;
|
|
920
|
+
saveFailed: string;
|
|
921
|
+
};
|
|
922
|
+
actions: {
|
|
923
|
+
createItinerary: string;
|
|
924
|
+
};
|
|
925
|
+
};
|
|
926
|
+
optionUnitDialog: {
|
|
927
|
+
titles: {
|
|
928
|
+
create: string;
|
|
929
|
+
edit: string;
|
|
930
|
+
};
|
|
931
|
+
descriptions: {
|
|
932
|
+
create: string;
|
|
933
|
+
edit: string;
|
|
934
|
+
};
|
|
935
|
+
};
|
|
936
|
+
optionUnitForm: {
|
|
937
|
+
fields: {
|
|
938
|
+
name: string;
|
|
939
|
+
code: string;
|
|
940
|
+
unitType: string;
|
|
941
|
+
sortOrder: string;
|
|
942
|
+
minQuantity: string;
|
|
943
|
+
maxQuantity: string;
|
|
944
|
+
minAge: string;
|
|
945
|
+
maxAge: string;
|
|
946
|
+
occupancyMin: string;
|
|
947
|
+
occupancyMax: string;
|
|
948
|
+
description: string;
|
|
949
|
+
required: string;
|
|
950
|
+
hidden: string;
|
|
951
|
+
};
|
|
952
|
+
placeholders: {
|
|
953
|
+
name: string;
|
|
954
|
+
code: string;
|
|
955
|
+
description: string;
|
|
956
|
+
};
|
|
957
|
+
validation: {
|
|
958
|
+
nameRequired: string;
|
|
959
|
+
saveFailed: string;
|
|
960
|
+
};
|
|
961
|
+
actions: {
|
|
962
|
+
createUnit: string;
|
|
963
|
+
};
|
|
964
|
+
};
|
|
965
|
+
productVersionDialog: {
|
|
966
|
+
title: string;
|
|
967
|
+
description: string;
|
|
968
|
+
fields: {
|
|
969
|
+
notes: string;
|
|
970
|
+
};
|
|
971
|
+
placeholders: {
|
|
972
|
+
notes: string;
|
|
973
|
+
};
|
|
974
|
+
validation: {
|
|
975
|
+
saveFailed: string;
|
|
976
|
+
};
|
|
977
|
+
actions: {
|
|
978
|
+
createVersion: string;
|
|
979
|
+
};
|
|
980
|
+
};
|
|
981
|
+
productVersionsSection: {
|
|
982
|
+
titles: {
|
|
983
|
+
default: string;
|
|
984
|
+
};
|
|
985
|
+
descriptions: {
|
|
986
|
+
default: string;
|
|
987
|
+
};
|
|
988
|
+
actions: {
|
|
989
|
+
createVersion: string;
|
|
990
|
+
};
|
|
991
|
+
loadingError: string;
|
|
992
|
+
empty: string;
|
|
993
|
+
versionLabel: string;
|
|
994
|
+
};
|
|
995
|
+
productOptionDialog: {
|
|
996
|
+
titles: {
|
|
997
|
+
create: string;
|
|
998
|
+
edit: string;
|
|
999
|
+
};
|
|
1000
|
+
descriptions: {
|
|
1001
|
+
create: string;
|
|
1002
|
+
edit: string;
|
|
1003
|
+
};
|
|
1004
|
+
};
|
|
1005
|
+
productOptionForm: {
|
|
1006
|
+
fields: {
|
|
1007
|
+
name: string;
|
|
1008
|
+
code: string;
|
|
1009
|
+
description: string;
|
|
1010
|
+
status: string;
|
|
1011
|
+
sortOrder: string;
|
|
1012
|
+
availableFrom: string;
|
|
1013
|
+
availableTo: string;
|
|
1014
|
+
defaultOption: string;
|
|
1015
|
+
};
|
|
1016
|
+
placeholders: {
|
|
1017
|
+
name: string;
|
|
1018
|
+
code: string;
|
|
1019
|
+
description: string;
|
|
1020
|
+
availableFrom: string;
|
|
1021
|
+
availableTo: string;
|
|
1022
|
+
};
|
|
1023
|
+
validation: {
|
|
1024
|
+
nameRequired: string;
|
|
1025
|
+
saveFailed: string;
|
|
1026
|
+
};
|
|
1027
|
+
actions: {
|
|
1028
|
+
createOption: string;
|
|
1029
|
+
};
|
|
1030
|
+
};
|
|
1031
|
+
productOptionsSection: {
|
|
1032
|
+
titles: {
|
|
1033
|
+
default: string;
|
|
1034
|
+
units: string;
|
|
1035
|
+
personUnits: string;
|
|
1036
|
+
roomUnits: string;
|
|
1037
|
+
};
|
|
1038
|
+
descriptions: {
|
|
1039
|
+
default: string;
|
|
1040
|
+
units: string;
|
|
1041
|
+
personUnits: string;
|
|
1042
|
+
roomUnits: string;
|
|
1043
|
+
};
|
|
1044
|
+
actions: {
|
|
1045
|
+
addOption: string;
|
|
1046
|
+
addUnit: string;
|
|
1047
|
+
addPersonUnit: string;
|
|
1048
|
+
addRoomUnit: string;
|
|
1049
|
+
duplicate: string;
|
|
1050
|
+
edit: string;
|
|
1051
|
+
delete: string;
|
|
1052
|
+
};
|
|
1053
|
+
loadingError: {
|
|
1054
|
+
options: string;
|
|
1055
|
+
units: string;
|
|
1056
|
+
};
|
|
1057
|
+
empty: {
|
|
1058
|
+
options: string;
|
|
1059
|
+
units: string;
|
|
1060
|
+
};
|
|
1061
|
+
configurationWarnings: {
|
|
1062
|
+
roomOptionsTitle: string;
|
|
1063
|
+
roomOptionsDescription: string;
|
|
1064
|
+
};
|
|
1065
|
+
deleteConfirm: {
|
|
1066
|
+
option: string;
|
|
1067
|
+
unit: string;
|
|
1068
|
+
};
|
|
1069
|
+
columns: {
|
|
1070
|
+
unitType: string;
|
|
1071
|
+
unitName: string;
|
|
1072
|
+
quantity: string;
|
|
1073
|
+
personQuantity: string;
|
|
1074
|
+
roomQuantity: string;
|
|
1075
|
+
age: string;
|
|
1076
|
+
occupancy: string;
|
|
1077
|
+
actions: string;
|
|
1078
|
+
};
|
|
1079
|
+
unitSummaries: {
|
|
1080
|
+
range: string;
|
|
1081
|
+
rooms: string;
|
|
1082
|
+
roomsWithCount: string;
|
|
1083
|
+
vehicles: string;
|
|
1084
|
+
vehiclesWithCount: string;
|
|
1085
|
+
sleeps: string;
|
|
1086
|
+
sleepsRange: string;
|
|
1087
|
+
};
|
|
1088
|
+
badges: {
|
|
1089
|
+
defaultOption: string;
|
|
1090
|
+
};
|
|
1091
|
+
};
|
|
1092
|
+
productCategoryDialog: {
|
|
1093
|
+
titles: {
|
|
1094
|
+
create: string;
|
|
1095
|
+
edit: string;
|
|
1096
|
+
};
|
|
1097
|
+
descriptions: {
|
|
1098
|
+
create: string;
|
|
1099
|
+
edit: string;
|
|
1100
|
+
};
|
|
1101
|
+
};
|
|
1102
|
+
productCategoryForm: {
|
|
1103
|
+
fields: {
|
|
1104
|
+
name: string;
|
|
1105
|
+
slug: string;
|
|
1106
|
+
parentCategory: string;
|
|
1107
|
+
description: string;
|
|
1108
|
+
sortOrder: string;
|
|
1109
|
+
active: string;
|
|
1110
|
+
customerPaymentPolicy: string;
|
|
1111
|
+
};
|
|
1112
|
+
descriptions: {
|
|
1113
|
+
customerPaymentPolicy: string;
|
|
1114
|
+
};
|
|
1115
|
+
placeholders: {
|
|
1116
|
+
name: string;
|
|
1117
|
+
slug: string;
|
|
1118
|
+
parentCategory: string;
|
|
1119
|
+
description: string;
|
|
1120
|
+
};
|
|
1121
|
+
validation: {
|
|
1122
|
+
nameRequired: string;
|
|
1123
|
+
slugRequired: string;
|
|
1124
|
+
saveFailed: string;
|
|
1125
|
+
};
|
|
1126
|
+
actions: {
|
|
1127
|
+
createCategory: string;
|
|
1128
|
+
};
|
|
1129
|
+
};
|
|
1130
|
+
productCategoryList: {
|
|
1131
|
+
searchPlaceholder: string;
|
|
1132
|
+
addCategory: string;
|
|
1133
|
+
columns: {
|
|
1134
|
+
name: string;
|
|
1135
|
+
slug: string;
|
|
1136
|
+
parent: string;
|
|
1137
|
+
status: string;
|
|
1138
|
+
actions: string;
|
|
1139
|
+
};
|
|
1140
|
+
loadingError: string;
|
|
1141
|
+
empty: string;
|
|
1142
|
+
edit: string;
|
|
1143
|
+
delete: string;
|
|
1144
|
+
deleteConfirm: string;
|
|
1145
|
+
showingSummary: string;
|
|
1146
|
+
};
|
|
1147
|
+
productTagDialog: {
|
|
1148
|
+
titles: {
|
|
1149
|
+
create: string;
|
|
1150
|
+
edit: string;
|
|
1151
|
+
};
|
|
1152
|
+
descriptions: {
|
|
1153
|
+
create: string;
|
|
1154
|
+
edit: string;
|
|
1155
|
+
};
|
|
1156
|
+
};
|
|
1157
|
+
productTagForm: {
|
|
1158
|
+
fields: {
|
|
1159
|
+
name: string;
|
|
1160
|
+
};
|
|
1161
|
+
placeholders: {
|
|
1162
|
+
name: string;
|
|
1163
|
+
};
|
|
1164
|
+
validation: {
|
|
1165
|
+
nameRequired: string;
|
|
1166
|
+
saveFailed: string;
|
|
1167
|
+
};
|
|
1168
|
+
actions: {
|
|
1169
|
+
createTag: string;
|
|
1170
|
+
};
|
|
1171
|
+
};
|
|
1172
|
+
productTagList: {
|
|
1173
|
+
searchPlaceholder: string;
|
|
1174
|
+
addTag: string;
|
|
1175
|
+
columns: {
|
|
1176
|
+
name: string;
|
|
1177
|
+
actions: string;
|
|
1178
|
+
};
|
|
1179
|
+
loadingError: string;
|
|
1180
|
+
empty: string;
|
|
1181
|
+
edit: string;
|
|
1182
|
+
delete: string;
|
|
1183
|
+
deleteConfirm: string;
|
|
1184
|
+
showingSummary: string;
|
|
1185
|
+
};
|
|
1186
|
+
productTagsPage: {
|
|
1187
|
+
title: string;
|
|
1188
|
+
description: string;
|
|
1189
|
+
};
|
|
1190
|
+
productTypesPage: {
|
|
1191
|
+
title: string;
|
|
1192
|
+
description: string;
|
|
1193
|
+
addType: string;
|
|
1194
|
+
empty: string;
|
|
1195
|
+
edit: string;
|
|
1196
|
+
delete: string;
|
|
1197
|
+
deleteConfirm: string;
|
|
1198
|
+
showingSummary: string;
|
|
1199
|
+
editSheetTitle: string;
|
|
1200
|
+
newSheetTitle: string;
|
|
1201
|
+
nameLabel: string;
|
|
1202
|
+
namePlaceholder: string;
|
|
1203
|
+
codeLabel: string;
|
|
1204
|
+
codePlaceholder: string;
|
|
1205
|
+
descriptionLabel: string;
|
|
1206
|
+
descriptionPlaceholder: string;
|
|
1207
|
+
sortOrderLabel: string;
|
|
1208
|
+
activeLabel: string;
|
|
1209
|
+
cancel: string;
|
|
1210
|
+
saveChanges: string;
|
|
1211
|
+
createType: string;
|
|
1212
|
+
validation: {
|
|
1213
|
+
nameRequired: string;
|
|
1214
|
+
codeRequired: string;
|
|
1215
|
+
};
|
|
1216
|
+
};
|
|
1217
|
+
productMediaDialog: {
|
|
1218
|
+
titles: {
|
|
1219
|
+
create: string;
|
|
1220
|
+
edit: string;
|
|
1221
|
+
};
|
|
1222
|
+
descriptions: {
|
|
1223
|
+
create: string;
|
|
1224
|
+
edit: string;
|
|
1225
|
+
};
|
|
1226
|
+
};
|
|
1227
|
+
productMediaForm: {
|
|
1228
|
+
fields: {
|
|
1229
|
+
mediaType: string;
|
|
1230
|
+
name: string;
|
|
1231
|
+
url: string;
|
|
1232
|
+
storageKey: string;
|
|
1233
|
+
mimeType: string;
|
|
1234
|
+
fileSize: string;
|
|
1235
|
+
sortOrder: string;
|
|
1236
|
+
coverMedia: string;
|
|
1237
|
+
altText: string;
|
|
1238
|
+
};
|
|
1239
|
+
placeholders: {
|
|
1240
|
+
name: string;
|
|
1241
|
+
url: string;
|
|
1242
|
+
mimeType: string;
|
|
1243
|
+
altText: string;
|
|
1244
|
+
};
|
|
1245
|
+
validation: {
|
|
1246
|
+
nameRequired: string;
|
|
1247
|
+
urlRequired: string;
|
|
1248
|
+
saveFailed: string;
|
|
1249
|
+
};
|
|
1250
|
+
actions: {
|
|
1251
|
+
addMedia: string;
|
|
1252
|
+
saveMedia: string;
|
|
1253
|
+
};
|
|
1254
|
+
};
|
|
1255
|
+
productMediaSection: {
|
|
1256
|
+
titles: {
|
|
1257
|
+
media: string;
|
|
1258
|
+
dayMedia: string;
|
|
1259
|
+
};
|
|
1260
|
+
descriptions: {
|
|
1261
|
+
media: string;
|
|
1262
|
+
dayMedia: string;
|
|
1263
|
+
};
|
|
1264
|
+
actions: {
|
|
1265
|
+
upload: string;
|
|
1266
|
+
addMedia: string;
|
|
1267
|
+
reorder: string;
|
|
1268
|
+
saveOrder: string;
|
|
1269
|
+
cancelReorder: string;
|
|
1270
|
+
drag: string;
|
|
1271
|
+
markCover: string;
|
|
1272
|
+
openPreview: string;
|
|
1273
|
+
closePreview: string;
|
|
1274
|
+
previousMedia: string;
|
|
1275
|
+
nextMedia: string;
|
|
1276
|
+
openFile: string;
|
|
1277
|
+
edit: string;
|
|
1278
|
+
delete: string;
|
|
1279
|
+
};
|
|
1280
|
+
loadingError: string;
|
|
1281
|
+
empty: string;
|
|
1282
|
+
itemCount: string;
|
|
1283
|
+
uploadFailed: string;
|
|
1284
|
+
deleteConfirm: string;
|
|
1285
|
+
viewerTitle: string;
|
|
1286
|
+
coverBadge: string;
|
|
1287
|
+
};
|
|
1288
|
+
common: {
|
|
1289
|
+
cancel: string;
|
|
1290
|
+
saveChanges: string;
|
|
1291
|
+
create: string;
|
|
1292
|
+
add: string;
|
|
1293
|
+
loading: string;
|
|
1294
|
+
none: string;
|
|
1295
|
+
previous: string;
|
|
1296
|
+
next: string;
|
|
1297
|
+
page: string;
|
|
1298
|
+
active: string;
|
|
1299
|
+
inactive: string;
|
|
1300
|
+
mediaTypeLabels: {
|
|
1301
|
+
image: string;
|
|
1302
|
+
video: string;
|
|
1303
|
+
document: string;
|
|
1304
|
+
};
|
|
1305
|
+
optionUnitTypeLabels: {
|
|
1306
|
+
person: string;
|
|
1307
|
+
group: string;
|
|
1308
|
+
room: string;
|
|
1309
|
+
vehicle: string;
|
|
1310
|
+
service: string;
|
|
1311
|
+
other: string;
|
|
1312
|
+
};
|
|
1313
|
+
optionStatusLabels: {
|
|
1314
|
+
draft: string;
|
|
1315
|
+
active: string;
|
|
1316
|
+
archived: string;
|
|
1317
|
+
};
|
|
1318
|
+
productStatusLabels: {
|
|
1319
|
+
draft: string;
|
|
1320
|
+
active: string;
|
|
1321
|
+
archived: string;
|
|
1322
|
+
};
|
|
1323
|
+
productBookingModeLabels: {
|
|
1324
|
+
date: string;
|
|
1325
|
+
date_time: string;
|
|
1326
|
+
open: string;
|
|
1327
|
+
stay: string;
|
|
1328
|
+
transfer: string;
|
|
1329
|
+
itinerary: string;
|
|
1330
|
+
other: string;
|
|
1331
|
+
};
|
|
1332
|
+
productCapacityModeLabels: {
|
|
1333
|
+
free_sale: string;
|
|
1334
|
+
limited: string;
|
|
1335
|
+
on_request: string;
|
|
1336
|
+
};
|
|
1337
|
+
productVisibilityLabels: {
|
|
1338
|
+
public: string;
|
|
1339
|
+
private: string;
|
|
1340
|
+
hidden: string;
|
|
1341
|
+
};
|
|
1342
|
+
};
|
|
1343
|
+
comboboxes: {
|
|
1344
|
+
product: {
|
|
1345
|
+
placeholder: string;
|
|
1346
|
+
empty: string;
|
|
1347
|
+
};
|
|
1348
|
+
productCategory: {
|
|
1349
|
+
placeholder: string;
|
|
1350
|
+
empty: string;
|
|
1351
|
+
};
|
|
1352
|
+
productType: {
|
|
1353
|
+
placeholder: string;
|
|
1354
|
+
empty: string;
|
|
1355
|
+
};
|
|
1356
|
+
facility: {
|
|
1357
|
+
placeholder: string;
|
|
1358
|
+
empty: string;
|
|
1359
|
+
};
|
|
1360
|
+
taxClass: {
|
|
1361
|
+
placeholder: string;
|
|
1362
|
+
empty: string;
|
|
1363
|
+
};
|
|
1364
|
+
contractTemplate: {
|
|
1365
|
+
placeholder: string;
|
|
1366
|
+
empty: string;
|
|
1367
|
+
};
|
|
1368
|
+
};
|
|
1369
|
+
catalogCard: {
|
|
1370
|
+
untitled: string;
|
|
1371
|
+
};
|
|
1372
|
+
productCategoriesPage: {
|
|
1373
|
+
title: string;
|
|
1374
|
+
description: string;
|
|
1375
|
+
};
|
|
1376
|
+
productsPage: {
|
|
1377
|
+
title: string;
|
|
1378
|
+
description: string;
|
|
1379
|
+
};
|
|
1380
|
+
productDetailPage: {
|
|
1381
|
+
actions: {
|
|
1382
|
+
back: string;
|
|
1383
|
+
edit: string;
|
|
1384
|
+
delete: string;
|
|
1385
|
+
createBooking: string;
|
|
1386
|
+
addItinerary: string;
|
|
1387
|
+
editItinerary: string;
|
|
1388
|
+
deleteItinerary: string;
|
|
1389
|
+
addDay: string;
|
|
1390
|
+
};
|
|
1391
|
+
sections: {
|
|
1392
|
+
overview: {
|
|
1393
|
+
title: string;
|
|
1394
|
+
description: string;
|
|
1395
|
+
};
|
|
1396
|
+
inclusions: {
|
|
1397
|
+
title: string;
|
|
1398
|
+
description: string;
|
|
1399
|
+
};
|
|
1400
|
+
exclusions: {
|
|
1401
|
+
title: string;
|
|
1402
|
+
description: string;
|
|
1403
|
+
};
|
|
1404
|
+
terms: {
|
|
1405
|
+
title: string;
|
|
1406
|
+
description: string;
|
|
1407
|
+
};
|
|
1408
|
+
details: {
|
|
1409
|
+
title: string;
|
|
1410
|
+
description: string;
|
|
1411
|
+
};
|
|
1412
|
+
commercial: {
|
|
1413
|
+
title: string;
|
|
1414
|
+
description: string;
|
|
1415
|
+
};
|
|
1416
|
+
itinerary: {
|
|
1417
|
+
title: string;
|
|
1418
|
+
description: string;
|
|
1419
|
+
};
|
|
1420
|
+
sidebar: {
|
|
1421
|
+
title: string;
|
|
1422
|
+
description: string;
|
|
1423
|
+
};
|
|
1424
|
+
};
|
|
1425
|
+
fields: {
|
|
1426
|
+
status: string;
|
|
1427
|
+
bookingMode: string;
|
|
1428
|
+
visibility: string;
|
|
1429
|
+
capacityMode: string;
|
|
1430
|
+
timezone: string;
|
|
1431
|
+
productType: string;
|
|
1432
|
+
facility: string;
|
|
1433
|
+
taxClass: string;
|
|
1434
|
+
contractTemplate: string;
|
|
1435
|
+
sellAmount: string;
|
|
1436
|
+
costAmount: string;
|
|
1437
|
+
margin: string;
|
|
1438
|
+
pax: string;
|
|
1439
|
+
startDate: string;
|
|
1440
|
+
endDate: string;
|
|
1441
|
+
reservationTimeout: string;
|
|
1442
|
+
tags: string;
|
|
1443
|
+
createdAt: string;
|
|
1444
|
+
updatedAt: string;
|
|
1445
|
+
};
|
|
1446
|
+
states: {
|
|
1447
|
+
loading: string;
|
|
1448
|
+
loadFailed: string;
|
|
1449
|
+
notFoundTitle: string;
|
|
1450
|
+
notFoundDescription: string;
|
|
1451
|
+
noDescription: string;
|
|
1452
|
+
noInclusions: string;
|
|
1453
|
+
noExclusions: string;
|
|
1454
|
+
noTerms: string;
|
|
1455
|
+
noItineraries: string;
|
|
1456
|
+
noDays: string;
|
|
1457
|
+
deleteConfirm: string;
|
|
1458
|
+
deleteItineraryConfirm: string;
|
|
1459
|
+
deleteDayConfirm: string;
|
|
1460
|
+
deleteServiceConfirm: string;
|
|
1461
|
+
deleteFailed: string;
|
|
1462
|
+
minutes: string;
|
|
1463
|
+
};
|
|
1464
|
+
};
|
|
1465
|
+
productDialog: {
|
|
1466
|
+
titles: {
|
|
1467
|
+
create: string;
|
|
1468
|
+
edit: string;
|
|
1469
|
+
};
|
|
1470
|
+
descriptions: {
|
|
1471
|
+
create: string;
|
|
1472
|
+
edit: string;
|
|
1473
|
+
};
|
|
1474
|
+
};
|
|
1475
|
+
productForm: {
|
|
1476
|
+
fields: {
|
|
1477
|
+
name: string;
|
|
1478
|
+
description: string;
|
|
1479
|
+
inclusions: string;
|
|
1480
|
+
exclusions: string;
|
|
1481
|
+
terms: string;
|
|
1482
|
+
tags: string;
|
|
1483
|
+
status: string;
|
|
1484
|
+
bookingMode: string;
|
|
1485
|
+
productType: string;
|
|
1486
|
+
facility: string;
|
|
1487
|
+
taxClass: string;
|
|
1488
|
+
contractTemplate: string;
|
|
1489
|
+
visibility: string;
|
|
1490
|
+
capacityMode: string;
|
|
1491
|
+
timezone: string;
|
|
1492
|
+
pax: string;
|
|
1493
|
+
reservationTimeout: string;
|
|
1494
|
+
sellCurrency: string;
|
|
1495
|
+
sellAmount: string;
|
|
1496
|
+
costAmount: string;
|
|
1497
|
+
};
|
|
1498
|
+
placeholders: {
|
|
1499
|
+
name: string;
|
|
1500
|
+
description: string;
|
|
1501
|
+
inclusions: string;
|
|
1502
|
+
exclusions: string;
|
|
1503
|
+
terms: string;
|
|
1504
|
+
tagInput: string;
|
|
1505
|
+
productTypeSearch: string;
|
|
1506
|
+
facilitySearch: string;
|
|
1507
|
+
taxClassSearch: string;
|
|
1508
|
+
contractTemplateSearch: string;
|
|
1509
|
+
timezone: string;
|
|
1510
|
+
pax: string;
|
|
1511
|
+
reservationTimeout: string;
|
|
1512
|
+
currencySearch: string;
|
|
1513
|
+
amount: string;
|
|
1514
|
+
};
|
|
1515
|
+
validation: {
|
|
1516
|
+
nameRequired: string;
|
|
1517
|
+
sellCurrencyInvalid: string;
|
|
1518
|
+
paxInvalid: string;
|
|
1519
|
+
reservationTimeoutInvalid: string;
|
|
1520
|
+
saveFailed: string;
|
|
1521
|
+
};
|
|
1522
|
+
actions: {
|
|
1523
|
+
cancel: string;
|
|
1524
|
+
saving: string;
|
|
1525
|
+
create: string;
|
|
1526
|
+
saveChanges: string;
|
|
1527
|
+
};
|
|
1528
|
+
};
|
|
1529
|
+
productTranslationsCard: {
|
|
1530
|
+
title: string;
|
|
1531
|
+
description: string;
|
|
1532
|
+
languageSelectLabel: string;
|
|
1533
|
+
newLanguageLabel: string;
|
|
1534
|
+
fields: {
|
|
1535
|
+
languageTag: string;
|
|
1536
|
+
name: string;
|
|
1537
|
+
slug: string;
|
|
1538
|
+
shortDescription: string;
|
|
1539
|
+
description: string;
|
|
1540
|
+
inclusions: string;
|
|
1541
|
+
exclusions: string;
|
|
1542
|
+
terms: string;
|
|
1543
|
+
seoTitle: string;
|
|
1544
|
+
seoDescription: string;
|
|
1545
|
+
};
|
|
1546
|
+
placeholders: {
|
|
1547
|
+
languageTag: string;
|
|
1548
|
+
newLanguage: string;
|
|
1549
|
+
name: string;
|
|
1550
|
+
slug: string;
|
|
1551
|
+
shortDescription: string;
|
|
1552
|
+
description: string;
|
|
1553
|
+
inclusions: string;
|
|
1554
|
+
exclusions: string;
|
|
1555
|
+
terms: string;
|
|
1556
|
+
seoTitle: string;
|
|
1557
|
+
seoDescription: string;
|
|
1558
|
+
};
|
|
1559
|
+
actions: {
|
|
1560
|
+
addLanguage: string;
|
|
1561
|
+
copyBase: string;
|
|
1562
|
+
save: string;
|
|
1563
|
+
saving: string;
|
|
1564
|
+
delete: string;
|
|
1565
|
+
deleting: string;
|
|
1566
|
+
};
|
|
1567
|
+
states: {
|
|
1568
|
+
loading: string;
|
|
1569
|
+
loadFailed: string;
|
|
1570
|
+
noTranslations: string;
|
|
1571
|
+
deleteConfirm: string;
|
|
1572
|
+
deleteFailed: string;
|
|
1573
|
+
saveFailed: string;
|
|
1574
|
+
languageRequired: string;
|
|
1575
|
+
nameRequired: string;
|
|
1576
|
+
};
|
|
1577
|
+
};
|
|
1578
|
+
productList: {
|
|
1579
|
+
searchPlaceholder: string;
|
|
1580
|
+
newProduct: string;
|
|
1581
|
+
filters: {
|
|
1582
|
+
button: string;
|
|
1583
|
+
statusLabel: string;
|
|
1584
|
+
statusAll: string;
|
|
1585
|
+
dateLabel: string;
|
|
1586
|
+
datePlaceholder: string;
|
|
1587
|
+
paxLabel: string;
|
|
1588
|
+
sellAmountLabel: string;
|
|
1589
|
+
min: string;
|
|
1590
|
+
max: string;
|
|
1591
|
+
clear: string;
|
|
1592
|
+
};
|
|
1593
|
+
columns: {
|
|
1594
|
+
name: string;
|
|
1595
|
+
status: string;
|
|
1596
|
+
sellAmount: string;
|
|
1597
|
+
pax: string;
|
|
1598
|
+
startDate: string;
|
|
1599
|
+
};
|
|
1600
|
+
loadFailed: string;
|
|
1601
|
+
empty: string;
|
|
1602
|
+
noValue: string;
|
|
1603
|
+
paginationShowing: string;
|
|
1604
|
+
paginationPage: string;
|
|
1605
|
+
paginationPrevious: string;
|
|
1606
|
+
paginationNext: string;
|
|
1607
|
+
};
|
|
1608
|
+
};
|
|
1609
|
+
};
|
|
1610
|
+
export type ProductsUiMessageOverrides = LocaleMessageOverrides<ProductsUiMessages>;
|
|
1611
|
+
export declare function resolveProductsUiMessages({ locale, overrides, }: {
|
|
1612
|
+
locale: string | null | undefined;
|
|
1613
|
+
overrides?: ProductsUiMessageOverrides | null;
|
|
1614
|
+
}): ProductsUiMessages;
|
|
1615
|
+
export declare function getProductsUiI18n({ locale, overrides, }: {
|
|
1616
|
+
locale?: string | null | undefined;
|
|
1617
|
+
overrides?: ProductsUiMessageOverrides | null;
|
|
1618
|
+
}): PackageI18nValue<ProductsUiMessages>;
|
|
1619
|
+
export declare function ProductsUiMessagesProvider({ children, locale, overrides, }: {
|
|
1620
|
+
children: ReactNode;
|
|
1621
|
+
locale: string | null | undefined;
|
|
1622
|
+
overrides?: ProductsUiMessageOverrides | null;
|
|
1623
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
1624
|
+
export declare const useProductsUiI18n: () => PackageI18nValue<ProductsUiMessages>;
|
|
1625
|
+
export declare const useProductsUiMessages: () => ProductsUiMessages;
|
|
1626
|
+
export declare function useProductsUiI18nOrDefault(): PackageI18nValue<ProductsUiMessages>;
|
|
1627
|
+
export declare function useProductsUiMessagesOrDefault(): ProductsUiMessages;
|
|
1628
|
+
//# sourceMappingURL=provider.d.ts.map
|