@voyant-travel/operations-react 0.19.1 → 0.19.2
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/dist/availability/components/availability-rule-detail-page.d.ts +5 -5
- package/dist/availability/components/availability-slot-detail-page.d.ts +5 -5
- package/dist/availability/components/availability-start-time-detail-page.d.ts +5 -5
- package/dist/availability/hooks/use-availability-batch-mutations.d.ts +2 -2
- package/dist/availability/hooks/use-availability-overview.d.ts +1 -1
- package/dist/availability/hooks/use-availability-slot-mutation.d.ts +3 -3
- package/dist/availability/hooks/use-slots.d.ts +1 -1
- package/dist/availability/query-options.d.ts +12 -12
- package/dist/availability/schemas.d.ts +6 -6
- package/dist/places/hooks/use-facilities.d.ts +1 -1
- package/dist/places/hooks/use-facility-feature-mutation.d.ts +2 -2
- package/dist/places/hooks/use-facility-features.d.ts +1 -1
- package/dist/places/hooks/use-facility-mutation.d.ts +4 -4
- package/dist/places/hooks/use-facility.d.ts +1 -1
- package/dist/places/hooks/use-property-group-mutation.d.ts +6 -6
- package/dist/places/hooks/use-property-group.d.ts +2 -2
- package/dist/places/hooks/use-property-groups.d.ts +2 -2
- package/dist/places/query-options.d.ts +32 -32
- package/dist/resources/admin/detail-hosts.d.ts.map +1 -1
- package/dist/resources/admin/detail-hosts.js +97 -22
- package/dist/resources/admin/resources-dialogs-ops.d.ts +3 -2
- package/dist/resources/admin/resources-dialogs-ops.d.ts.map +1 -1
- package/dist/resources/admin/resources-dialogs-ops.js +10 -2
- package/dist/resources/admin/resources-dialogs.d.ts.map +1 -1
- package/dist/resources/admin/resources-dialogs.js +1 -1
- package/dist/resources/components/resource-allocation-detail-page.d.ts +2 -1
- package/dist/resources/components/resource-allocation-detail-page.d.ts.map +1 -1
- package/dist/resources/components/resource-allocation-detail-page.js +2 -2
- package/dist/resources/components/resource-assignment-detail-page.d.ts +2 -1
- package/dist/resources/components/resource-assignment-detail-page.d.ts.map +1 -1
- package/dist/resources/components/resource-assignment-detail-page.js +3 -2
- package/dist/resources/components/resource-detail-page.d.ts +2 -1
- package/dist/resources/components/resource-detail-page.d.ts.map +1 -1
- package/dist/resources/components/resource-detail-page.js +6 -3
- package/dist/resources/components/resource-detail-shared.d.ts +2 -1
- package/dist/resources/components/resource-detail-shared.d.ts.map +1 -1
- package/dist/resources/components/resource-detail-shared.js +3 -3
- package/dist/resources/components/resource-pool-detail-page.d.ts +5 -1
- package/dist/resources/components/resource-pool-detail-page.d.ts.map +1 -1
- package/dist/resources/components/resource-pool-detail-page.js +38 -8
- package/dist/resources/components/resources-overview.d.ts +3 -2
- package/dist/resources/components/resources-overview.d.ts.map +1 -1
- package/dist/resources/components/resources-overview.js +2 -1
- package/dist/resources/components/resources-page.d.ts.map +1 -1
- package/dist/resources/components/resources-page.js +45 -9
- package/dist/resources/components/resources-tabs-primary.d.ts.map +1 -1
- package/dist/resources/components/resources-tabs-primary.js +28 -19
- package/dist/resources/components/resources-tabs-secondary.d.ts +2 -1
- package/dist/resources/components/resources-tabs-secondary.d.ts.map +1 -1
- package/dist/resources/components/resources-tabs-secondary.js +22 -9
- package/dist/resources/hooks/use-pool.d.ts +1 -1
- package/dist/resources/hooks/use-pools.d.ts +1 -1
- package/dist/resources/hooks/use-resource.d.ts +1 -1
- package/dist/resources/hooks/use-resources.d.ts +1 -1
- package/dist/resources/i18n/en.d.ts.map +1 -1
- package/dist/resources/i18n/en.js +7 -0
- package/dist/resources/i18n/messages.d.ts +7 -0
- package/dist/resources/i18n/messages.d.ts.map +1 -1
- package/dist/resources/i18n/ro.d.ts.map +1 -1
- package/dist/resources/i18n/ro.js +7 -0
- package/dist/resources/i18n/utils.d.ts +2 -1
- package/dist/resources/i18n/utils.d.ts.map +1 -1
- package/dist/resources/i18n/utils.js +3 -1
- package/dist/resources/query-options.d.ts +16 -16
- package/dist/resources/schemas.d.ts +9 -9
- package/package.json +7 -7
|
@@ -4,12 +4,12 @@ import { Badge, Button, ConfirmActionButton, SelectionActionBar, } from "@voyant
|
|
|
4
4
|
import { DataTable } from "@voyant-travel/ui/components/data-table";
|
|
5
5
|
import { DataTableColumnHeader } from "@voyant-travel/ui/components/data-table-column-header";
|
|
6
6
|
import { TabsContent } from "@voyant-travel/ui/components/tabs";
|
|
7
|
-
import { ExternalLink } from "lucide-react";
|
|
7
|
+
import { ExternalLink, Pencil } from "lucide-react";
|
|
8
8
|
import { useResourcesUiI18nOrDefault } from "../i18n/index.js";
|
|
9
9
|
import { formatDateTimeOrFallback, formatResourceSlotLabel, formatSelectionLabel, formatSelectionSummary, } from "../i18n/utils.js";
|
|
10
10
|
import { labelById, } from "../index.js";
|
|
11
11
|
import { ResourcesSectionHeader } from "./resources-section-header.js";
|
|
12
|
-
const assignmentColumns = (i18n, slots, resources, bookings, onView) => [
|
|
12
|
+
const assignmentColumns = (i18n, slots, products, resources, bookings, onView, onEdit) => [
|
|
13
13
|
{
|
|
14
14
|
accessorKey: "slotId",
|
|
15
15
|
header: ({ column }) => (_jsx(DataTableColumnHeader, { column: column, title: i18n.messages.tabsSecondary.columns.assignments.slot })),
|
|
@@ -21,6 +21,7 @@ const assignmentColumns = (i18n, slots, resources, bookings, onView) => [
|
|
|
21
21
|
}, {
|
|
22
22
|
template: i18n.messages.common.slotLabel,
|
|
23
23
|
formatDate: i18n.formatDate,
|
|
24
|
+
products,
|
|
24
25
|
}),
|
|
25
26
|
},
|
|
26
27
|
{
|
|
@@ -49,13 +50,16 @@ const assignmentColumns = (i18n, slots, resources, bookings, onView) => [
|
|
|
49
50
|
{
|
|
50
51
|
id: "view",
|
|
51
52
|
header: i18n.messages.tabsSecondary.columns.assignments.view,
|
|
52
|
-
cell: ({ row }) => (_jsxs(Button, { variant: "ghost", size: "sm", onClick: (event) => {
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
53
|
+
cell: ({ row }) => (_jsxs("div", { className: "flex flex-wrap items-center gap-1", children: [_jsxs(Button, { variant: "ghost", size: "sm", onClick: (event) => {
|
|
54
|
+
event.stopPropagation();
|
|
55
|
+
onView(row.original.id);
|
|
56
|
+
}, children: [_jsx(ExternalLink, { className: "mr-2 h-4 w-4" }), i18n.messages.common.open] }), _jsxs(Button, { variant: "ghost", size: "sm", onClick: (event) => {
|
|
57
|
+
event.stopPropagation();
|
|
58
|
+
onEdit(row.original);
|
|
59
|
+
}, children: [_jsx(Pencil, { className: "mr-2 h-4 w-4" }), i18n.messages.common.edit] })] })),
|
|
56
60
|
},
|
|
57
61
|
];
|
|
58
|
-
const closeoutColumns = (i18n, resources) => [
|
|
62
|
+
const closeoutColumns = (i18n, resources, onEdit) => [
|
|
59
63
|
{
|
|
60
64
|
accessorKey: "resourceId",
|
|
61
65
|
header: ({ column }) => (_jsx(DataTableColumnHeader, { column: column, title: i18n.messages.tabsSecondary.columns.closeouts.resource })),
|
|
@@ -86,13 +90,22 @@ const closeoutColumns = (i18n, resources) => [
|
|
|
86
90
|
header: ({ column }) => (_jsx(DataTableColumnHeader, { column: column, title: i18n.messages.tabsSecondary.columns.closeouts.reason })),
|
|
87
91
|
cell: ({ row }) => row.original.reason ?? "-",
|
|
88
92
|
},
|
|
93
|
+
{
|
|
94
|
+
id: "edit",
|
|
95
|
+
header: i18n.messages.common.edit,
|
|
96
|
+
cell: ({ row }) => (_jsxs(Button, { variant: "ghost", size: "sm", onClick: (event) => {
|
|
97
|
+
event.stopPropagation();
|
|
98
|
+
onEdit(row.original);
|
|
99
|
+
}, children: [_jsx(Pencil, { className: "mr-2 h-4 w-4" }), i18n.messages.common.edit] })),
|
|
100
|
+
},
|
|
89
101
|
];
|
|
90
102
|
export function AssignmentsTab(props) {
|
|
91
103
|
const i18n = useResourcesUiI18nOrDefault();
|
|
92
104
|
const m = i18n.messages;
|
|
93
105
|
const section = m.tabsSecondary.sections.assignments;
|
|
94
106
|
const selection = m.common.selectionNouns.assignment;
|
|
95
|
-
|
|
107
|
+
const products = props.products ?? [];
|
|
108
|
+
return (_jsxs(TabsContent, { value: "assignments", className: "space-y-4", children: [_jsx(ResourcesSectionHeader, { title: section.title, description: section.description, actionLabel: section.actionLabel, onAction: props.onCreate }), _jsx(DataTable, { columns: assignmentColumns(i18n, props.slots, products, props.resources, props.bookings, props.onOpenRoute, props.onEdit), data: props.filteredAssignments, emptyMessage: section.emptyMessage, enableRowSelection: true, getRowId: (row) => row.id, rowSelection: props.assignmentSelection, onRowSelectionChange: props.setAssignmentSelection, renderSelectionActions: ({ selectedRows, clearSelection }) => (_jsxs(SelectionActionBar, { selectedCount: selectedRows.length, onClear: clearSelection, clearLabel: m.common.clearSelection, selectionSummary: formatSelectionSummary(selectedRows.length, m.common.selectionSummary), children: [_jsx(ConfirmActionButton, { buttonLabel: section.actions.assign.buttonLabel, confirmLabel: section.actions.assign.confirmLabel, cancelLabel: m.common.cancel, title: formatMessage(section.actions.assign.title, {
|
|
96
109
|
selection: formatSelectionLabel(selectedRows.length, selection, m.common.selectionLabel),
|
|
97
110
|
}), description: section.actions.assign.description, disabled: props.bulkActionTarget === "assignments-assigned", onConfirm: () => props.handleBulkUpdate({
|
|
98
111
|
ids: selectedRows.map((row) => row.original.id),
|
|
@@ -130,7 +143,7 @@ export function CloseoutsTab(props) {
|
|
|
130
143
|
const m = i18n.messages;
|
|
131
144
|
const section = m.tabsSecondary.sections.closeouts;
|
|
132
145
|
const selection = m.common.selectionNouns.closeout;
|
|
133
|
-
return (_jsxs(TabsContent, { value: "closeouts", className: "space-y-4", children: [_jsx(ResourcesSectionHeader, { title: section.title, description: section.description, actionLabel: section.actionLabel, onAction: props.onCreate }), _jsx(DataTable, { columns: closeoutColumns(i18n, props.resources), data: props.filteredCloseouts, emptyMessage: section.emptyMessage, enableRowSelection: true, getRowId: (row) => row.id, rowSelection: props.closeoutSelection, onRowSelectionChange: props.setCloseoutSelection, renderSelectionActions: ({ selectedRows, clearSelection }) => (_jsx(SelectionActionBar, { selectedCount: selectedRows.length, onClear: clearSelection, clearLabel: m.common.clearSelection, selectionSummary: formatSelectionSummary(selectedRows.length, m.common.selectionSummary), children: _jsx(ConfirmActionButton, { buttonLabel: section.actions.delete.buttonLabel, confirmLabel: section.actions.delete.confirmLabel, cancelLabel: m.common.cancel, title: formatMessage(section.actions.delete.title, {
|
|
146
|
+
return (_jsxs(TabsContent, { value: "closeouts", className: "space-y-4", children: [_jsx(ResourcesSectionHeader, { title: section.title, description: section.description, actionLabel: section.actionLabel, onAction: props.onCreate }), _jsx(DataTable, { columns: closeoutColumns(i18n, props.resources, props.onEdit), data: props.filteredCloseouts, emptyMessage: section.emptyMessage, enableRowSelection: true, getRowId: (row) => row.id, rowSelection: props.closeoutSelection, onRowSelectionChange: props.setCloseoutSelection, renderSelectionActions: ({ selectedRows, clearSelection }) => (_jsx(SelectionActionBar, { selectedCount: selectedRows.length, onClear: clearSelection, clearLabel: m.common.clearSelection, selectionSummary: formatSelectionSummary(selectedRows.length, m.common.selectionSummary), children: _jsx(ConfirmActionButton, { buttonLabel: section.actions.delete.buttonLabel, confirmLabel: section.actions.delete.confirmLabel, cancelLabel: m.common.cancel, title: formatMessage(section.actions.delete.title, {
|
|
134
147
|
selection: formatSelectionLabel(selectedRows.length, selection, m.common.selectionLabel),
|
|
135
148
|
}), description: section.actions.delete.description, disabled: props.bulkActionTarget === "closeouts-delete", variant: "destructive", confirmVariant: "destructive", onConfirm: () => props.handleBulkDelete({
|
|
136
149
|
ids: selectedRows.map((row) => row.original.id),
|
|
@@ -4,7 +4,7 @@ export interface UsePoolOptions {
|
|
|
4
4
|
export declare function usePool(id: string | null | undefined, options?: UsePoolOptions): import("@tanstack/react-query").UseQueryResult<NoInfer<{
|
|
5
5
|
id: string;
|
|
6
6
|
productId: string | null;
|
|
7
|
-
kind: "
|
|
7
|
+
kind: "other" | "vehicle" | "room" | "guide" | "boat" | "equipment";
|
|
8
8
|
name: string;
|
|
9
9
|
sharedCapacity: number | null;
|
|
10
10
|
active: boolean;
|
|
@@ -6,7 +6,7 @@ export declare function usePools(options?: UsePoolsOptions): import("@tanstack/r
|
|
|
6
6
|
data: {
|
|
7
7
|
id: string;
|
|
8
8
|
productId: string | null;
|
|
9
|
-
kind: "
|
|
9
|
+
kind: "other" | "vehicle" | "room" | "guide" | "boat" | "equipment";
|
|
10
10
|
name: string;
|
|
11
11
|
sharedCapacity: number | null;
|
|
12
12
|
active: boolean;
|
|
@@ -4,7 +4,7 @@ export interface UseResourceOptions {
|
|
|
4
4
|
export declare function useResource(id: string | null | undefined, options?: UseResourceOptions): import("@tanstack/react-query").UseQueryResult<NoInfer<{
|
|
5
5
|
id: string;
|
|
6
6
|
supplierId: string | null;
|
|
7
|
-
kind: "
|
|
7
|
+
kind: "other" | "vehicle" | "room" | "guide" | "boat" | "equipment";
|
|
8
8
|
name: string;
|
|
9
9
|
code: string | null;
|
|
10
10
|
capacity: number | null;
|
|
@@ -6,7 +6,7 @@ export declare function useResources(options?: UseResourcesOptions): import("@ta
|
|
|
6
6
|
data: {
|
|
7
7
|
id: string;
|
|
8
8
|
supplierId: string | null;
|
|
9
|
-
kind: "
|
|
9
|
+
kind: "other" | "vehicle" | "room" | "guide" | "boat" | "equipment";
|
|
10
10
|
name: string;
|
|
11
11
|
code: string | null;
|
|
12
12
|
capacity: number | null;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"en.d.ts","sourceRoot":"","sources":["../../../src/resources/i18n/en.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,eAAe,CAAA;AAExD,eAAO,MAAM,aAAa,EAAE,
|
|
1
|
+
{"version":3,"file":"en.d.ts","sourceRoot":"","sources":["../../../src/resources/i18n/en.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,eAAe,CAAA;AAExD,eAAO,MAAM,aAAa,EAAE,mBA6X3B,CAAA"}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export const resourcesUiEn = {
|
|
2
2
|
common: {
|
|
3
|
+
edit: "Edit",
|
|
3
4
|
open: "Open",
|
|
4
5
|
view: "View",
|
|
5
6
|
cancel: "Cancel",
|
|
@@ -285,6 +286,7 @@ export const resourcesUiEn = {
|
|
|
285
286
|
code: "Code",
|
|
286
287
|
created: "Created",
|
|
287
288
|
delete: "Delete",
|
|
289
|
+
edit: "Edit",
|
|
288
290
|
noBooking: "No booking",
|
|
289
291
|
noPool: "No pool",
|
|
290
292
|
noResource: "No resource",
|
|
@@ -321,6 +323,7 @@ export const resourcesUiEn = {
|
|
|
321
323
|
notFound: "Resource not found.",
|
|
322
324
|
poolMembershipsEmpty: "This resource is not assigned to any pool.",
|
|
323
325
|
poolMembershipsTitle: "Pool Memberships",
|
|
326
|
+
removePoolMember: "Remove",
|
|
324
327
|
released: "Released",
|
|
325
328
|
},
|
|
326
329
|
pool: {
|
|
@@ -334,6 +337,10 @@ export const resourcesUiEn = {
|
|
|
334
337
|
loadFailed: "Pool could not be loaded.",
|
|
335
338
|
membersEmpty: "No resources are assigned to this pool.",
|
|
336
339
|
membersTitle: "Members",
|
|
340
|
+
addMember: "Add member",
|
|
341
|
+
addMemberPlaceholder: "Select a resource",
|
|
342
|
+
memberAlreadyAssigned: "All listed resources are already assigned.",
|
|
343
|
+
removeMember: "Remove",
|
|
337
344
|
noResource: "Resource unavailable",
|
|
338
345
|
notFound: "Resource pool not found.",
|
|
339
346
|
sharedCapacity: "Shared Capacity",
|
|
@@ -15,6 +15,7 @@ type BulkActionMessages = {
|
|
|
15
15
|
};
|
|
16
16
|
export type ResourcesUiMessages = {
|
|
17
17
|
common: {
|
|
18
|
+
edit: string;
|
|
18
19
|
open: string;
|
|
19
20
|
view: string;
|
|
20
21
|
cancel: string;
|
|
@@ -218,6 +219,7 @@ export type ResourcesUiMessages = {
|
|
|
218
219
|
code: string;
|
|
219
220
|
created: string;
|
|
220
221
|
delete: string;
|
|
222
|
+
edit: string;
|
|
221
223
|
noBooking: string;
|
|
222
224
|
noPool: string;
|
|
223
225
|
noResource: string;
|
|
@@ -254,6 +256,7 @@ export type ResourcesUiMessages = {
|
|
|
254
256
|
notFound: string;
|
|
255
257
|
poolMembershipsEmpty: string;
|
|
256
258
|
poolMembershipsTitle: string;
|
|
259
|
+
removePoolMember: string;
|
|
257
260
|
released: string;
|
|
258
261
|
};
|
|
259
262
|
pool: {
|
|
@@ -267,6 +270,10 @@ export type ResourcesUiMessages = {
|
|
|
267
270
|
loadFailed: string;
|
|
268
271
|
membersEmpty: string;
|
|
269
272
|
membersTitle: string;
|
|
273
|
+
addMember: string;
|
|
274
|
+
addMemberPlaceholder: string;
|
|
275
|
+
memberAlreadyAssigned: string;
|
|
276
|
+
removeMember: string;
|
|
270
277
|
noResource: string;
|
|
271
278
|
notFound: string;
|
|
272
279
|
sharedCapacity: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"messages.d.ts","sourceRoot":"","sources":["../../../src/resources/i18n/messages.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"messages.d.ts","sourceRoot":"","sources":["../../../src/resources/i18n/messages.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ro.d.ts","sourceRoot":"","sources":["../../../src/resources/i18n/ro.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,eAAe,CAAA;AAExD,eAAO,MAAM,aAAa,EAAE,
|
|
1
|
+
{"version":3,"file":"ro.d.ts","sourceRoot":"","sources":["../../../src/resources/i18n/ro.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,eAAe,CAAA;AAExD,eAAO,MAAM,aAAa,EAAE,mBA8X3B,CAAA"}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export const resourcesUiRo = {
|
|
2
2
|
common: {
|
|
3
|
+
edit: "Editeaza",
|
|
3
4
|
open: "Deschide",
|
|
4
5
|
view: "Vizualizare",
|
|
5
6
|
cancel: "Anuleaza",
|
|
@@ -285,6 +286,7 @@ export const resourcesUiRo = {
|
|
|
285
286
|
code: "Cod",
|
|
286
287
|
created: "Creat",
|
|
287
288
|
delete: "Sterge",
|
|
289
|
+
edit: "Editeaza",
|
|
288
290
|
noBooking: "Fara rezervare",
|
|
289
291
|
noPool: "Fara pool",
|
|
290
292
|
noResource: "Fara resursa",
|
|
@@ -321,6 +323,7 @@ export const resourcesUiRo = {
|
|
|
321
323
|
notFound: "Resursa nu a fost gasita.",
|
|
322
324
|
poolMembershipsEmpty: "Aceasta resursa nu este asignata niciunui pool.",
|
|
323
325
|
poolMembershipsTitle: "Apartenenta la Pool-uri",
|
|
326
|
+
removePoolMember: "Elimina",
|
|
324
327
|
released: "Eliberat",
|
|
325
328
|
},
|
|
326
329
|
pool: {
|
|
@@ -334,6 +337,10 @@ export const resourcesUiRo = {
|
|
|
334
337
|
loadFailed: "Pool-ul nu a putut fi incarcat.",
|
|
335
338
|
membersEmpty: "Nicio resursa nu este asignata acestui pool.",
|
|
336
339
|
membersTitle: "Membri",
|
|
340
|
+
addMember: "Adauga membru",
|
|
341
|
+
addMemberPlaceholder: "Selecteaza o resursa",
|
|
342
|
+
memberAlreadyAssigned: "Toate resursele listate sunt deja asignate.",
|
|
343
|
+
removeMember: "Elimina",
|
|
337
344
|
noResource: "Resursa indisponibila",
|
|
338
345
|
notFound: "Pool-ul de resurse nu a fost gasit.",
|
|
339
346
|
sharedCapacity: "Capacitate Partajata",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { PackageI18nValue } from "@voyant-travel/i18n";
|
|
2
|
-
import type { SlotOption } from "../index.js";
|
|
2
|
+
import type { ProductOption, SlotOption } from "../index.js";
|
|
3
3
|
import type { ResourcesUiMessages } from "./messages.js";
|
|
4
4
|
export declare const RESOURCE_KIND_VALUES: readonly ["guide", "vehicle", "room", "boat", "equipment", "other"];
|
|
5
5
|
export declare function formatSelectionLabel(count: number, noun: {
|
|
@@ -10,6 +10,7 @@ export declare function formatSelectionSummary(count: number, template: string):
|
|
|
10
10
|
export declare function formatResourceSlotLabel(slot: SlotOption, options: {
|
|
11
11
|
template: string;
|
|
12
12
|
formatDate: PackageI18nValue<ResourcesUiMessages>["formatDate"];
|
|
13
|
+
products?: ProductOption[];
|
|
13
14
|
}): string;
|
|
14
15
|
export declare function formatDateTimeOrFallback(value: string | null, options: {
|
|
15
16
|
fallback: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../src/resources/i18n/utils.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAA;AAE3D,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,aAAa,CAAA;
|
|
1
|
+
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../src/resources/i18n/utils.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAA;AAE3D,OAAO,KAAK,EAAE,aAAa,EAAE,UAAU,EAAE,MAAM,aAAa,CAAA;AAC5D,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,eAAe,CAAA;AAExD,eAAO,MAAM,oBAAoB,qEAOvB,CAAA;AAEV,wBAAgB,oBAAoB,CAClC,KAAK,EAAE,MAAM,EACb,IAAI,EAAE;IAAE,QAAQ,EAAE,MAAM,CAAC;IAAC,MAAM,EAAE,MAAM,CAAA;CAAE,EAC1C,QAAQ,EAAE,MAAM,UAMjB;AAED,wBAAgB,sBAAsB,CAAC,KAAK,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,UAErE;AAED,wBAAgB,uBAAuB,CACrC,IAAI,EAAE,UAAU,EAChB,OAAO,EAAE;IACP,QAAQ,EAAE,MAAM,CAAA;IAChB,UAAU,EAAE,gBAAgB,CAAC,mBAAmB,CAAC,CAAC,YAAY,CAAC,CAAA;IAC/D,QAAQ,CAAC,EAAE,aAAa,EAAE,CAAA;CAC3B,UAWF;AAED,wBAAgB,wBAAwB,CACtC,KAAK,EAAE,MAAM,GAAG,IAAI,EACpB,OAAO,EAAE;IACP,QAAQ,EAAE,MAAM,CAAA;IAChB,cAAc,EAAE,gBAAgB,CAAC,mBAAmB,CAAC,CAAC,gBAAgB,CAAC,CAAA;CACxE,UAGF"}
|
|
@@ -20,10 +20,12 @@ export function formatResourceSlotLabel(slot, options) {
|
|
|
20
20
|
const time = slot.startsAt
|
|
21
21
|
? options.formatDate(slot.startsAt, { timeStyle: "short" })
|
|
22
22
|
: slot.dateLocal;
|
|
23
|
-
|
|
23
|
+
const dateTime = formatMessage(options.template, {
|
|
24
24
|
date: slot.dateLocal,
|
|
25
25
|
time,
|
|
26
26
|
});
|
|
27
|
+
const product = options.products?.find((entry) => entry.id === slot.productId);
|
|
28
|
+
return product ? `${product.name} · ${dateTime}` : dateTime;
|
|
27
29
|
}
|
|
28
30
|
export function formatDateTimeOrFallback(value, options) {
|
|
29
31
|
return value ? options.formatDateTime(value) : options.fallback;
|
|
@@ -278,7 +278,7 @@ export declare function getResourcesQueryOptions(client: FetchWithValidationOpti
|
|
|
278
278
|
data: {
|
|
279
279
|
id: string;
|
|
280
280
|
supplierId: string | null;
|
|
281
|
-
kind: "
|
|
281
|
+
kind: "other" | "vehicle" | "room" | "guide" | "boat" | "equipment";
|
|
282
282
|
name: string;
|
|
283
283
|
code: string | null;
|
|
284
284
|
capacity: number | null;
|
|
@@ -292,7 +292,7 @@ export declare function getResourcesQueryOptions(client: FetchWithValidationOpti
|
|
|
292
292
|
data: {
|
|
293
293
|
id: string;
|
|
294
294
|
supplierId: string | null;
|
|
295
|
-
kind: "
|
|
295
|
+
kind: "other" | "vehicle" | "room" | "guide" | "boat" | "equipment";
|
|
296
296
|
name: string;
|
|
297
297
|
code: string | null;
|
|
298
298
|
capacity: number | null;
|
|
@@ -307,7 +307,7 @@ export declare function getResourcesQueryOptions(client: FetchWithValidationOpti
|
|
|
307
307
|
data: {
|
|
308
308
|
id: string;
|
|
309
309
|
supplierId: string | null;
|
|
310
|
-
kind: "
|
|
310
|
+
kind: "other" | "vehicle" | "room" | "guide" | "boat" | "equipment";
|
|
311
311
|
name: string;
|
|
312
312
|
code: string | null;
|
|
313
313
|
capacity: number | null;
|
|
@@ -324,7 +324,7 @@ export declare function getResourcesQueryOptions(client: FetchWithValidationOpti
|
|
|
324
324
|
data: {
|
|
325
325
|
id: string;
|
|
326
326
|
supplierId: string | null;
|
|
327
|
-
kind: "
|
|
327
|
+
kind: "other" | "vehicle" | "room" | "guide" | "boat" | "equipment";
|
|
328
328
|
name: string;
|
|
329
329
|
code: string | null;
|
|
330
330
|
capacity: number | null;
|
|
@@ -341,7 +341,7 @@ export declare function getResourcesQueryOptions(client: FetchWithValidationOpti
|
|
|
341
341
|
export declare function getResourceQueryOptions(client: FetchWithValidationOptions, id: string | null | undefined, options?: UseResourceOptions): import("@tanstack/react-query").OmitKeyof<import("@tanstack/react-query").UseQueryOptions<{
|
|
342
342
|
id: string;
|
|
343
343
|
supplierId: string | null;
|
|
344
|
-
kind: "
|
|
344
|
+
kind: "other" | "vehicle" | "room" | "guide" | "boat" | "equipment";
|
|
345
345
|
name: string;
|
|
346
346
|
code: string | null;
|
|
347
347
|
capacity: number | null;
|
|
@@ -352,7 +352,7 @@ export declare function getResourceQueryOptions(client: FetchWithValidationOptio
|
|
|
352
352
|
}, Error, {
|
|
353
353
|
id: string;
|
|
354
354
|
supplierId: string | null;
|
|
355
|
-
kind: "
|
|
355
|
+
kind: "other" | "vehicle" | "room" | "guide" | "boat" | "equipment";
|
|
356
356
|
name: string;
|
|
357
357
|
code: string | null;
|
|
358
358
|
capacity: number | null;
|
|
@@ -364,7 +364,7 @@ export declare function getResourceQueryOptions(client: FetchWithValidationOptio
|
|
|
364
364
|
queryFn?: import("@tanstack/react-query").QueryFunction<{
|
|
365
365
|
id: string;
|
|
366
366
|
supplierId: string | null;
|
|
367
|
-
kind: "
|
|
367
|
+
kind: "other" | "vehicle" | "room" | "guide" | "boat" | "equipment";
|
|
368
368
|
name: string;
|
|
369
369
|
code: string | null;
|
|
370
370
|
capacity: number | null;
|
|
@@ -378,7 +378,7 @@ export declare function getResourceQueryOptions(client: FetchWithValidationOptio
|
|
|
378
378
|
[dataTagSymbol]: {
|
|
379
379
|
id: string;
|
|
380
380
|
supplierId: string | null;
|
|
381
|
-
kind: "
|
|
381
|
+
kind: "other" | "vehicle" | "room" | "guide" | "boat" | "equipment";
|
|
382
382
|
name: string;
|
|
383
383
|
code: string | null;
|
|
384
384
|
capacity: number | null;
|
|
@@ -394,7 +394,7 @@ export declare function getPoolsQueryOptions(client: FetchWithValidationOptions,
|
|
|
394
394
|
data: {
|
|
395
395
|
id: string;
|
|
396
396
|
productId: string | null;
|
|
397
|
-
kind: "
|
|
397
|
+
kind: "other" | "vehicle" | "room" | "guide" | "boat" | "equipment";
|
|
398
398
|
name: string;
|
|
399
399
|
sharedCapacity: number | null;
|
|
400
400
|
active: boolean;
|
|
@@ -407,7 +407,7 @@ export declare function getPoolsQueryOptions(client: FetchWithValidationOptions,
|
|
|
407
407
|
data: {
|
|
408
408
|
id: string;
|
|
409
409
|
productId: string | null;
|
|
410
|
-
kind: "
|
|
410
|
+
kind: "other" | "vehicle" | "room" | "guide" | "boat" | "equipment";
|
|
411
411
|
name: string;
|
|
412
412
|
sharedCapacity: number | null;
|
|
413
413
|
active: boolean;
|
|
@@ -421,7 +421,7 @@ export declare function getPoolsQueryOptions(client: FetchWithValidationOptions,
|
|
|
421
421
|
data: {
|
|
422
422
|
id: string;
|
|
423
423
|
productId: string | null;
|
|
424
|
-
kind: "
|
|
424
|
+
kind: "other" | "vehicle" | "room" | "guide" | "boat" | "equipment";
|
|
425
425
|
name: string;
|
|
426
426
|
sharedCapacity: number | null;
|
|
427
427
|
active: boolean;
|
|
@@ -437,7 +437,7 @@ export declare function getPoolsQueryOptions(client: FetchWithValidationOptions,
|
|
|
437
437
|
data: {
|
|
438
438
|
id: string;
|
|
439
439
|
productId: string | null;
|
|
440
|
-
kind: "
|
|
440
|
+
kind: "other" | "vehicle" | "room" | "guide" | "boat" | "equipment";
|
|
441
441
|
name: string;
|
|
442
442
|
sharedCapacity: number | null;
|
|
443
443
|
active: boolean;
|
|
@@ -453,7 +453,7 @@ export declare function getPoolsQueryOptions(client: FetchWithValidationOptions,
|
|
|
453
453
|
export declare function getPoolQueryOptions(client: FetchWithValidationOptions, id: string | null | undefined, options?: UsePoolOptions): import("@tanstack/react-query").OmitKeyof<import("@tanstack/react-query").UseQueryOptions<{
|
|
454
454
|
id: string;
|
|
455
455
|
productId: string | null;
|
|
456
|
-
kind: "
|
|
456
|
+
kind: "other" | "vehicle" | "room" | "guide" | "boat" | "equipment";
|
|
457
457
|
name: string;
|
|
458
458
|
sharedCapacity: number | null;
|
|
459
459
|
active: boolean;
|
|
@@ -463,7 +463,7 @@ export declare function getPoolQueryOptions(client: FetchWithValidationOptions,
|
|
|
463
463
|
}, Error, {
|
|
464
464
|
id: string;
|
|
465
465
|
productId: string | null;
|
|
466
|
-
kind: "
|
|
466
|
+
kind: "other" | "vehicle" | "room" | "guide" | "boat" | "equipment";
|
|
467
467
|
name: string;
|
|
468
468
|
sharedCapacity: number | null;
|
|
469
469
|
active: boolean;
|
|
@@ -474,7 +474,7 @@ export declare function getPoolQueryOptions(client: FetchWithValidationOptions,
|
|
|
474
474
|
queryFn?: import("@tanstack/react-query").QueryFunction<{
|
|
475
475
|
id: string;
|
|
476
476
|
productId: string | null;
|
|
477
|
-
kind: "
|
|
477
|
+
kind: "other" | "vehicle" | "room" | "guide" | "boat" | "equipment";
|
|
478
478
|
name: string;
|
|
479
479
|
sharedCapacity: number | null;
|
|
480
480
|
active: boolean;
|
|
@@ -487,7 +487,7 @@ export declare function getPoolQueryOptions(client: FetchWithValidationOptions,
|
|
|
487
487
|
[dataTagSymbol]: {
|
|
488
488
|
id: string;
|
|
489
489
|
productId: string | null;
|
|
490
|
-
kind: "
|
|
490
|
+
kind: "other" | "vehicle" | "room" | "guide" | "boat" | "equipment";
|
|
491
491
|
name: string;
|
|
492
492
|
sharedCapacity: number | null;
|
|
493
493
|
active: boolean;
|
|
@@ -40,9 +40,9 @@ export declare const startTimeOptionSchema: z.ZodObject<{
|
|
|
40
40
|
}, z.core.$strip>;
|
|
41
41
|
export type StartTimeOption = z.infer<typeof startTimeOptionSchema>;
|
|
42
42
|
export declare const resourceKindSchema: z.ZodEnum<{
|
|
43
|
+
other: "other";
|
|
43
44
|
vehicle: "vehicle";
|
|
44
45
|
room: "room";
|
|
45
|
-
other: "other";
|
|
46
46
|
guide: "guide";
|
|
47
47
|
boat: "boat";
|
|
48
48
|
equipment: "equipment";
|
|
@@ -62,9 +62,9 @@ export declare const resourceRecordSchema: z.ZodObject<{
|
|
|
62
62
|
id: z.ZodString;
|
|
63
63
|
supplierId: z.ZodNullable<z.ZodString>;
|
|
64
64
|
kind: z.ZodEnum<{
|
|
65
|
+
other: "other";
|
|
65
66
|
vehicle: "vehicle";
|
|
66
67
|
room: "room";
|
|
67
|
-
other: "other";
|
|
68
68
|
guide: "guide";
|
|
69
69
|
boat: "boat";
|
|
70
70
|
equipment: "equipment";
|
|
@@ -80,9 +80,9 @@ export declare const resourceDetailSchema: z.ZodObject<{
|
|
|
80
80
|
id: z.ZodString;
|
|
81
81
|
supplierId: z.ZodNullable<z.ZodString>;
|
|
82
82
|
kind: z.ZodEnum<{
|
|
83
|
+
other: "other";
|
|
83
84
|
vehicle: "vehicle";
|
|
84
85
|
room: "room";
|
|
85
|
-
other: "other";
|
|
86
86
|
guide: "guide";
|
|
87
87
|
boat: "boat";
|
|
88
88
|
equipment: "equipment";
|
|
@@ -100,9 +100,9 @@ export declare const resourcePoolRecordSchema: z.ZodObject<{
|
|
|
100
100
|
id: z.ZodString;
|
|
101
101
|
productId: z.ZodNullable<z.ZodString>;
|
|
102
102
|
kind: z.ZodEnum<{
|
|
103
|
+
other: "other";
|
|
103
104
|
vehicle: "vehicle";
|
|
104
105
|
room: "room";
|
|
105
|
-
other: "other";
|
|
106
106
|
guide: "guide";
|
|
107
107
|
boat: "boat";
|
|
108
108
|
equipment: "equipment";
|
|
@@ -117,9 +117,9 @@ export declare const resourcePoolDetailSchema: z.ZodObject<{
|
|
|
117
117
|
id: z.ZodString;
|
|
118
118
|
productId: z.ZodNullable<z.ZodString>;
|
|
119
119
|
kind: z.ZodEnum<{
|
|
120
|
+
other: "other";
|
|
120
121
|
vehicle: "vehicle";
|
|
121
122
|
room: "room";
|
|
122
|
-
other: "other";
|
|
123
123
|
guide: "guide";
|
|
124
124
|
boat: "boat";
|
|
125
125
|
equipment: "equipment";
|
|
@@ -274,9 +274,9 @@ export declare const resourceListResponse: z.ZodObject<{
|
|
|
274
274
|
id: z.ZodString;
|
|
275
275
|
supplierId: z.ZodNullable<z.ZodString>;
|
|
276
276
|
kind: z.ZodEnum<{
|
|
277
|
+
other: "other";
|
|
277
278
|
vehicle: "vehicle";
|
|
278
279
|
room: "room";
|
|
279
|
-
other: "other";
|
|
280
280
|
guide: "guide";
|
|
281
281
|
boat: "boat";
|
|
282
282
|
equipment: "equipment";
|
|
@@ -296,9 +296,9 @@ export declare const resourcePoolListResponse: z.ZodObject<{
|
|
|
296
296
|
id: z.ZodString;
|
|
297
297
|
productId: z.ZodNullable<z.ZodString>;
|
|
298
298
|
kind: z.ZodEnum<{
|
|
299
|
+
other: "other";
|
|
299
300
|
vehicle: "vehicle";
|
|
300
301
|
room: "room";
|
|
301
|
-
other: "other";
|
|
302
302
|
guide: "guide";
|
|
303
303
|
boat: "boat";
|
|
304
304
|
equipment: "equipment";
|
|
@@ -372,9 +372,9 @@ export declare const resourceSingleResponse: z.ZodObject<{
|
|
|
372
372
|
id: z.ZodString;
|
|
373
373
|
supplierId: z.ZodNullable<z.ZodString>;
|
|
374
374
|
kind: z.ZodEnum<{
|
|
375
|
+
other: "other";
|
|
375
376
|
vehicle: "vehicle";
|
|
376
377
|
room: "room";
|
|
377
|
-
other: "other";
|
|
378
378
|
guide: "guide";
|
|
379
379
|
boat: "boat";
|
|
380
380
|
equipment: "equipment";
|
|
@@ -393,9 +393,9 @@ export declare const resourcePoolSingleResponse: z.ZodObject<{
|
|
|
393
393
|
id: z.ZodString;
|
|
394
394
|
productId: z.ZodNullable<z.ZodString>;
|
|
395
395
|
kind: z.ZodEnum<{
|
|
396
|
+
other: "other";
|
|
396
397
|
vehicle: "vehicle";
|
|
397
398
|
room: "room";
|
|
398
|
-
other: "other";
|
|
399
399
|
guide: "guide";
|
|
400
400
|
boat: "boat";
|
|
401
401
|
equipment: "equipment";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@voyant-travel/operations-react",
|
|
3
|
-
"version": "0.19.
|
|
3
|
+
"version": "0.19.2",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -247,10 +247,10 @@
|
|
|
247
247
|
"react-hook-form": "^7.80.0",
|
|
248
248
|
"sonner": "^2.0.7",
|
|
249
249
|
"zod": "^4.0.0",
|
|
250
|
-
"@voyant-travel/
|
|
251
|
-
"@voyant-travel/bookings-react": "^0.138.6",
|
|
250
|
+
"@voyant-travel/bookings-react": "^0.138.7",
|
|
252
251
|
"@voyant-travel/operations": "^0.5.9",
|
|
253
252
|
"@voyant-travel/inventory-react": "^0.20.0",
|
|
253
|
+
"@voyant-travel/admin": "^0.115.3",
|
|
254
254
|
"@voyant-travel/ui": "^0.108.10"
|
|
255
255
|
},
|
|
256
256
|
"peerDependenciesMeta": {
|
|
@@ -297,14 +297,14 @@
|
|
|
297
297
|
"vitest": "^4.1.9",
|
|
298
298
|
"zod": "^4.4.3",
|
|
299
299
|
"@voyant-travel/admin": "^0.115.3",
|
|
300
|
-
"@voyant-travel/bookings-react": "^0.138.6",
|
|
301
300
|
"@voyant-travel/i18n": "^0.109.8",
|
|
301
|
+
"@voyant-travel/bookings-react": "^0.138.7",
|
|
302
|
+
"@voyant-travel/inventory-react": "^0.20.0",
|
|
302
303
|
"@voyant-travel/react": "^0.104.1",
|
|
303
304
|
"@voyant-travel/types": "^0.106.1",
|
|
305
|
+
"@voyant-travel/operations": "^0.5.9",
|
|
304
306
|
"@voyant-travel/ui": "^0.108.10",
|
|
305
|
-
"@voyant-travel/voyant-typescript-config": "^0.1.0"
|
|
306
|
-
"@voyant-travel/inventory-react": "^0.20.0",
|
|
307
|
-
"@voyant-travel/operations": "^0.5.9"
|
|
307
|
+
"@voyant-travel/voyant-typescript-config": "^0.1.0"
|
|
308
308
|
},
|
|
309
309
|
"files": [
|
|
310
310
|
"dist",
|