@voyant-travel/identity-react 0.119.1 → 0.120.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/dist/hooks/use-address-mutation.d.ts +3 -3
- package/dist/hooks/use-addresses.d.ts +1 -1
- package/dist/hooks/use-contact-point-mutation.d.ts +3 -3
- package/dist/hooks/use-contact-points.d.ts +1 -1
- package/dist/hooks/use-named-contact-mutation.d.ts +3 -3
- package/dist/hooks/use-named-contacts.d.ts +1 -1
- package/dist/query-options.d.ts +24 -24
- package/dist/schemas.d.ts +12 -12
- package/package.json +12 -12
|
@@ -6,7 +6,7 @@ export declare function useAddressMutation(): {
|
|
|
6
6
|
create: import("@tanstack/react-query").UseMutationResult<{
|
|
7
7
|
entityType: string;
|
|
8
8
|
entityId: string;
|
|
9
|
-
label: "service" | "
|
|
9
|
+
label: "service" | "primary" | "other" | "legal" | "billing" | "shipping" | "mailing" | "meeting";
|
|
10
10
|
isPrimary: boolean;
|
|
11
11
|
id: string;
|
|
12
12
|
fullText: string | null;
|
|
@@ -26,7 +26,7 @@ export declare function useAddressMutation(): {
|
|
|
26
26
|
}, Error, {
|
|
27
27
|
entityType: string;
|
|
28
28
|
entityId: string;
|
|
29
|
-
label?: "service" | "
|
|
29
|
+
label?: "service" | "primary" | "other" | "legal" | "billing" | "shipping" | "mailing" | "meeting" | undefined;
|
|
30
30
|
fullText?: string | null | undefined;
|
|
31
31
|
line1?: string | null | undefined;
|
|
32
32
|
line2?: string | null | undefined;
|
|
@@ -44,7 +44,7 @@ export declare function useAddressMutation(): {
|
|
|
44
44
|
update: import("@tanstack/react-query").UseMutationResult<{
|
|
45
45
|
entityType: string;
|
|
46
46
|
entityId: string;
|
|
47
|
-
label: "service" | "
|
|
47
|
+
label: "service" | "primary" | "other" | "legal" | "billing" | "shipping" | "mailing" | "meeting";
|
|
48
48
|
isPrimary: boolean;
|
|
49
49
|
id: string;
|
|
50
50
|
fullText: string | null;
|
|
@@ -6,7 +6,7 @@ export declare function useAddresses(options?: UseAddressesOptions): import("@ta
|
|
|
6
6
|
data: {
|
|
7
7
|
entityType: string;
|
|
8
8
|
entityId: string;
|
|
9
|
-
label: "service" | "
|
|
9
|
+
label: "service" | "primary" | "other" | "legal" | "billing" | "shipping" | "mailing" | "meeting";
|
|
10
10
|
isPrimary: boolean;
|
|
11
11
|
id: string;
|
|
12
12
|
fullText: string | null;
|
|
@@ -6,7 +6,7 @@ export declare function useContactPointMutation(): {
|
|
|
6
6
|
create: import("@tanstack/react-query").UseMutationResult<{
|
|
7
7
|
entityType: string;
|
|
8
8
|
entityId: string;
|
|
9
|
-
kind: "
|
|
9
|
+
kind: "email" | "other" | "phone" | "mobile" | "whatsapp" | "website" | "sms" | "fax" | "social";
|
|
10
10
|
value: string;
|
|
11
11
|
isPrimary: boolean;
|
|
12
12
|
id: string;
|
|
@@ -19,7 +19,7 @@ export declare function useContactPointMutation(): {
|
|
|
19
19
|
}, Error, {
|
|
20
20
|
entityType: string;
|
|
21
21
|
entityId: string;
|
|
22
|
-
kind: "
|
|
22
|
+
kind: "email" | "other" | "phone" | "mobile" | "whatsapp" | "website" | "sms" | "fax" | "social";
|
|
23
23
|
value: string;
|
|
24
24
|
label?: string | null | undefined;
|
|
25
25
|
normalizedValue?: string | null | undefined;
|
|
@@ -30,7 +30,7 @@ export declare function useContactPointMutation(): {
|
|
|
30
30
|
update: import("@tanstack/react-query").UseMutationResult<{
|
|
31
31
|
entityType: string;
|
|
32
32
|
entityId: string;
|
|
33
|
-
kind: "
|
|
33
|
+
kind: "email" | "other" | "phone" | "mobile" | "whatsapp" | "website" | "sms" | "fax" | "social";
|
|
34
34
|
value: string;
|
|
35
35
|
isPrimary: boolean;
|
|
36
36
|
id: string;
|
|
@@ -6,7 +6,7 @@ export declare function useContactPoints(options?: UseContactPointsOptions): imp
|
|
|
6
6
|
data: {
|
|
7
7
|
entityType: string;
|
|
8
8
|
entityId: string;
|
|
9
|
-
kind: "
|
|
9
|
+
kind: "email" | "other" | "phone" | "mobile" | "whatsapp" | "website" | "sms" | "fax" | "social";
|
|
10
10
|
value: string;
|
|
11
11
|
isPrimary: boolean;
|
|
12
12
|
id: string;
|
|
@@ -6,7 +6,7 @@ export declare function useNamedContactMutation(): {
|
|
|
6
6
|
create: import("@tanstack/react-query").UseMutationResult<{
|
|
7
7
|
entityType: string;
|
|
8
8
|
entityId: string;
|
|
9
|
-
role: "
|
|
9
|
+
role: "primary" | "other" | "legal" | "operations" | "general" | "reservations" | "front_desk" | "sales" | "emergency" | "accounting";
|
|
10
10
|
name: string;
|
|
11
11
|
isPrimary: boolean;
|
|
12
12
|
id: string;
|
|
@@ -21,7 +21,7 @@ export declare function useNamedContactMutation(): {
|
|
|
21
21
|
entityType: string;
|
|
22
22
|
entityId: string;
|
|
23
23
|
name: string;
|
|
24
|
-
role?: "
|
|
24
|
+
role?: "primary" | "other" | "legal" | "operations" | "general" | "reservations" | "front_desk" | "sales" | "emergency" | "accounting" | undefined;
|
|
25
25
|
title?: string | null | undefined;
|
|
26
26
|
email?: string | null | undefined;
|
|
27
27
|
phone?: string | null | undefined;
|
|
@@ -32,7 +32,7 @@ export declare function useNamedContactMutation(): {
|
|
|
32
32
|
update: import("@tanstack/react-query").UseMutationResult<{
|
|
33
33
|
entityType: string;
|
|
34
34
|
entityId: string;
|
|
35
|
-
role: "
|
|
35
|
+
role: "primary" | "other" | "legal" | "operations" | "general" | "reservations" | "front_desk" | "sales" | "emergency" | "accounting";
|
|
36
36
|
name: string;
|
|
37
37
|
isPrimary: boolean;
|
|
38
38
|
id: string;
|
|
@@ -6,7 +6,7 @@ export declare function useNamedContacts(options?: UseNamedContactsOptions): imp
|
|
|
6
6
|
data: {
|
|
7
7
|
entityType: string;
|
|
8
8
|
entityId: string;
|
|
9
|
-
role: "
|
|
9
|
+
role: "primary" | "other" | "legal" | "operations" | "general" | "reservations" | "front_desk" | "sales" | "emergency" | "accounting";
|
|
10
10
|
name: string;
|
|
11
11
|
isPrimary: boolean;
|
|
12
12
|
id: string;
|
package/dist/query-options.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ export declare function getContactPointsQueryOptions(client: FetchWithValidation
|
|
|
6
6
|
data: {
|
|
7
7
|
entityType: string;
|
|
8
8
|
entityId: string;
|
|
9
|
-
kind: "
|
|
9
|
+
kind: "email" | "other" | "phone" | "mobile" | "whatsapp" | "website" | "sms" | "fax" | "social";
|
|
10
10
|
value: string;
|
|
11
11
|
isPrimary: boolean;
|
|
12
12
|
id: string;
|
|
@@ -24,7 +24,7 @@ export declare function getContactPointsQueryOptions(client: FetchWithValidation
|
|
|
24
24
|
data: {
|
|
25
25
|
entityType: string;
|
|
26
26
|
entityId: string;
|
|
27
|
-
kind: "
|
|
27
|
+
kind: "email" | "other" | "phone" | "mobile" | "whatsapp" | "website" | "sms" | "fax" | "social";
|
|
28
28
|
value: string;
|
|
29
29
|
isPrimary: boolean;
|
|
30
30
|
id: string;
|
|
@@ -43,7 +43,7 @@ export declare function getContactPointsQueryOptions(client: FetchWithValidation
|
|
|
43
43
|
data: {
|
|
44
44
|
entityType: string;
|
|
45
45
|
entityId: string;
|
|
46
|
-
kind: "
|
|
46
|
+
kind: "email" | "other" | "phone" | "mobile" | "whatsapp" | "website" | "sms" | "fax" | "social";
|
|
47
47
|
value: string;
|
|
48
48
|
isPrimary: boolean;
|
|
49
49
|
id: string;
|
|
@@ -64,7 +64,7 @@ export declare function getContactPointsQueryOptions(client: FetchWithValidation
|
|
|
64
64
|
data: {
|
|
65
65
|
entityType: string;
|
|
66
66
|
entityId: string;
|
|
67
|
-
kind: "
|
|
67
|
+
kind: "email" | "other" | "phone" | "mobile" | "whatsapp" | "website" | "sms" | "fax" | "social";
|
|
68
68
|
value: string;
|
|
69
69
|
isPrimary: boolean;
|
|
70
70
|
id: string;
|
|
@@ -85,7 +85,7 @@ export declare function getContactPointsQueryOptions(client: FetchWithValidation
|
|
|
85
85
|
export declare function getContactPointQueryOptions(client: FetchWithValidationOptions, id: string): import("@tanstack/react-query").OmitKeyof<import("@tanstack/react-query").UseQueryOptions<{
|
|
86
86
|
entityType: string;
|
|
87
87
|
entityId: string;
|
|
88
|
-
kind: "
|
|
88
|
+
kind: "email" | "other" | "phone" | "mobile" | "whatsapp" | "website" | "sms" | "fax" | "social";
|
|
89
89
|
value: string;
|
|
90
90
|
isPrimary: boolean;
|
|
91
91
|
id: string;
|
|
@@ -98,7 +98,7 @@ export declare function getContactPointQueryOptions(client: FetchWithValidationO
|
|
|
98
98
|
}, Error, {
|
|
99
99
|
entityType: string;
|
|
100
100
|
entityId: string;
|
|
101
|
-
kind: "
|
|
101
|
+
kind: "email" | "other" | "phone" | "mobile" | "whatsapp" | "website" | "sms" | "fax" | "social";
|
|
102
102
|
value: string;
|
|
103
103
|
isPrimary: boolean;
|
|
104
104
|
id: string;
|
|
@@ -112,7 +112,7 @@ export declare function getContactPointQueryOptions(client: FetchWithValidationO
|
|
|
112
112
|
queryFn?: import("@tanstack/react-query").QueryFunction<{
|
|
113
113
|
entityType: string;
|
|
114
114
|
entityId: string;
|
|
115
|
-
kind: "
|
|
115
|
+
kind: "email" | "other" | "phone" | "mobile" | "whatsapp" | "website" | "sms" | "fax" | "social";
|
|
116
116
|
value: string;
|
|
117
117
|
isPrimary: boolean;
|
|
118
118
|
id: string;
|
|
@@ -128,7 +128,7 @@ export declare function getContactPointQueryOptions(client: FetchWithValidationO
|
|
|
128
128
|
[dataTagSymbol]: {
|
|
129
129
|
entityType: string;
|
|
130
130
|
entityId: string;
|
|
131
|
-
kind: "
|
|
131
|
+
kind: "email" | "other" | "phone" | "mobile" | "whatsapp" | "website" | "sms" | "fax" | "social";
|
|
132
132
|
value: string;
|
|
133
133
|
isPrimary: boolean;
|
|
134
134
|
id: string;
|
|
@@ -146,7 +146,7 @@ export declare function getAddressesQueryOptions(client: FetchWithValidationOpti
|
|
|
146
146
|
data: {
|
|
147
147
|
entityType: string;
|
|
148
148
|
entityId: string;
|
|
149
|
-
label: "service" | "
|
|
149
|
+
label: "service" | "primary" | "other" | "legal" | "billing" | "shipping" | "mailing" | "meeting";
|
|
150
150
|
isPrimary: boolean;
|
|
151
151
|
id: string;
|
|
152
152
|
fullText: string | null;
|
|
@@ -171,7 +171,7 @@ export declare function getAddressesQueryOptions(client: FetchWithValidationOpti
|
|
|
171
171
|
data: {
|
|
172
172
|
entityType: string;
|
|
173
173
|
entityId: string;
|
|
174
|
-
label: "service" | "
|
|
174
|
+
label: "service" | "primary" | "other" | "legal" | "billing" | "shipping" | "mailing" | "meeting";
|
|
175
175
|
isPrimary: boolean;
|
|
176
176
|
id: string;
|
|
177
177
|
fullText: string | null;
|
|
@@ -197,7 +197,7 @@ export declare function getAddressesQueryOptions(client: FetchWithValidationOpti
|
|
|
197
197
|
data: {
|
|
198
198
|
entityType: string;
|
|
199
199
|
entityId: string;
|
|
200
|
-
label: "service" | "
|
|
200
|
+
label: "service" | "primary" | "other" | "legal" | "billing" | "shipping" | "mailing" | "meeting";
|
|
201
201
|
isPrimary: boolean;
|
|
202
202
|
id: string;
|
|
203
203
|
fullText: string | null;
|
|
@@ -225,7 +225,7 @@ export declare function getAddressesQueryOptions(client: FetchWithValidationOpti
|
|
|
225
225
|
data: {
|
|
226
226
|
entityType: string;
|
|
227
227
|
entityId: string;
|
|
228
|
-
label: "service" | "
|
|
228
|
+
label: "service" | "primary" | "other" | "legal" | "billing" | "shipping" | "mailing" | "meeting";
|
|
229
229
|
isPrimary: boolean;
|
|
230
230
|
id: string;
|
|
231
231
|
fullText: string | null;
|
|
@@ -253,7 +253,7 @@ export declare function getAddressesQueryOptions(client: FetchWithValidationOpti
|
|
|
253
253
|
export declare function getAddressQueryOptions(client: FetchWithValidationOptions, id: string): import("@tanstack/react-query").OmitKeyof<import("@tanstack/react-query").UseQueryOptions<{
|
|
254
254
|
entityType: string;
|
|
255
255
|
entityId: string;
|
|
256
|
-
label: "service" | "
|
|
256
|
+
label: "service" | "primary" | "other" | "legal" | "billing" | "shipping" | "mailing" | "meeting";
|
|
257
257
|
isPrimary: boolean;
|
|
258
258
|
id: string;
|
|
259
259
|
fullText: string | null;
|
|
@@ -273,7 +273,7 @@ export declare function getAddressQueryOptions(client: FetchWithValidationOption
|
|
|
273
273
|
}, Error, {
|
|
274
274
|
entityType: string;
|
|
275
275
|
entityId: string;
|
|
276
|
-
label: "service" | "
|
|
276
|
+
label: "service" | "primary" | "other" | "legal" | "billing" | "shipping" | "mailing" | "meeting";
|
|
277
277
|
isPrimary: boolean;
|
|
278
278
|
id: string;
|
|
279
279
|
fullText: string | null;
|
|
@@ -294,7 +294,7 @@ export declare function getAddressQueryOptions(client: FetchWithValidationOption
|
|
|
294
294
|
queryFn?: import("@tanstack/react-query").QueryFunction<{
|
|
295
295
|
entityType: string;
|
|
296
296
|
entityId: string;
|
|
297
|
-
label: "service" | "
|
|
297
|
+
label: "service" | "primary" | "other" | "legal" | "billing" | "shipping" | "mailing" | "meeting";
|
|
298
298
|
isPrimary: boolean;
|
|
299
299
|
id: string;
|
|
300
300
|
fullText: string | null;
|
|
@@ -317,7 +317,7 @@ export declare function getAddressQueryOptions(client: FetchWithValidationOption
|
|
|
317
317
|
[dataTagSymbol]: {
|
|
318
318
|
entityType: string;
|
|
319
319
|
entityId: string;
|
|
320
|
-
label: "service" | "
|
|
320
|
+
label: "service" | "primary" | "other" | "legal" | "billing" | "shipping" | "mailing" | "meeting";
|
|
321
321
|
isPrimary: boolean;
|
|
322
322
|
id: string;
|
|
323
323
|
fullText: string | null;
|
|
@@ -342,7 +342,7 @@ export declare function getNamedContactsQueryOptions(client: FetchWithValidation
|
|
|
342
342
|
data: {
|
|
343
343
|
entityType: string;
|
|
344
344
|
entityId: string;
|
|
345
|
-
role: "
|
|
345
|
+
role: "primary" | "other" | "legal" | "operations" | "general" | "reservations" | "front_desk" | "sales" | "emergency" | "accounting";
|
|
346
346
|
name: string;
|
|
347
347
|
isPrimary: boolean;
|
|
348
348
|
id: string;
|
|
@@ -361,7 +361,7 @@ export declare function getNamedContactsQueryOptions(client: FetchWithValidation
|
|
|
361
361
|
data: {
|
|
362
362
|
entityType: string;
|
|
363
363
|
entityId: string;
|
|
364
|
-
role: "
|
|
364
|
+
role: "primary" | "other" | "legal" | "operations" | "general" | "reservations" | "front_desk" | "sales" | "emergency" | "accounting";
|
|
365
365
|
name: string;
|
|
366
366
|
isPrimary: boolean;
|
|
367
367
|
id: string;
|
|
@@ -381,7 +381,7 @@ export declare function getNamedContactsQueryOptions(client: FetchWithValidation
|
|
|
381
381
|
data: {
|
|
382
382
|
entityType: string;
|
|
383
383
|
entityId: string;
|
|
384
|
-
role: "
|
|
384
|
+
role: "primary" | "other" | "legal" | "operations" | "general" | "reservations" | "front_desk" | "sales" | "emergency" | "accounting";
|
|
385
385
|
name: string;
|
|
386
386
|
isPrimary: boolean;
|
|
387
387
|
id: string;
|
|
@@ -403,7 +403,7 @@ export declare function getNamedContactsQueryOptions(client: FetchWithValidation
|
|
|
403
403
|
data: {
|
|
404
404
|
entityType: string;
|
|
405
405
|
entityId: string;
|
|
406
|
-
role: "
|
|
406
|
+
role: "primary" | "other" | "legal" | "operations" | "general" | "reservations" | "front_desk" | "sales" | "emergency" | "accounting";
|
|
407
407
|
name: string;
|
|
408
408
|
isPrimary: boolean;
|
|
409
409
|
id: string;
|
|
@@ -425,7 +425,7 @@ export declare function getNamedContactsQueryOptions(client: FetchWithValidation
|
|
|
425
425
|
export declare function getNamedContactQueryOptions(client: FetchWithValidationOptions, id: string): import("@tanstack/react-query").OmitKeyof<import("@tanstack/react-query").UseQueryOptions<{
|
|
426
426
|
entityType: string;
|
|
427
427
|
entityId: string;
|
|
428
|
-
role: "
|
|
428
|
+
role: "primary" | "other" | "legal" | "operations" | "general" | "reservations" | "front_desk" | "sales" | "emergency" | "accounting";
|
|
429
429
|
name: string;
|
|
430
430
|
isPrimary: boolean;
|
|
431
431
|
id: string;
|
|
@@ -439,7 +439,7 @@ export declare function getNamedContactQueryOptions(client: FetchWithValidationO
|
|
|
439
439
|
}, Error, {
|
|
440
440
|
entityType: string;
|
|
441
441
|
entityId: string;
|
|
442
|
-
role: "
|
|
442
|
+
role: "primary" | "other" | "legal" | "operations" | "general" | "reservations" | "front_desk" | "sales" | "emergency" | "accounting";
|
|
443
443
|
name: string;
|
|
444
444
|
isPrimary: boolean;
|
|
445
445
|
id: string;
|
|
@@ -454,7 +454,7 @@ export declare function getNamedContactQueryOptions(client: FetchWithValidationO
|
|
|
454
454
|
queryFn?: import("@tanstack/react-query").QueryFunction<{
|
|
455
455
|
entityType: string;
|
|
456
456
|
entityId: string;
|
|
457
|
-
role: "
|
|
457
|
+
role: "primary" | "other" | "legal" | "operations" | "general" | "reservations" | "front_desk" | "sales" | "emergency" | "accounting";
|
|
458
458
|
name: string;
|
|
459
459
|
isPrimary: boolean;
|
|
460
460
|
id: string;
|
|
@@ -471,7 +471,7 @@ export declare function getNamedContactQueryOptions(client: FetchWithValidationO
|
|
|
471
471
|
[dataTagSymbol]: {
|
|
472
472
|
entityType: string;
|
|
473
473
|
entityId: string;
|
|
474
|
-
role: "
|
|
474
|
+
role: "primary" | "other" | "legal" | "operations" | "general" | "reservations" | "front_desk" | "sales" | "emergency" | "accounting";
|
|
475
475
|
name: string;
|
|
476
476
|
isPrimary: boolean;
|
|
477
477
|
id: string;
|
package/dist/schemas.d.ts
CHANGED
|
@@ -15,12 +15,12 @@ export declare const contactPointRecordSchema: z.ZodObject<{
|
|
|
15
15
|
entityType: z.ZodString;
|
|
16
16
|
entityId: z.ZodString;
|
|
17
17
|
kind: z.ZodEnum<{
|
|
18
|
-
other: "other";
|
|
19
18
|
email: "email";
|
|
19
|
+
other: "other";
|
|
20
20
|
phone: "phone";
|
|
21
21
|
mobile: "mobile";
|
|
22
|
-
website: "website";
|
|
23
22
|
whatsapp: "whatsapp";
|
|
23
|
+
website: "website";
|
|
24
24
|
sms: "sms";
|
|
25
25
|
fax: "fax";
|
|
26
26
|
social: "social";
|
|
@@ -41,8 +41,8 @@ export declare const addressRecordSchema: z.ZodObject<{
|
|
|
41
41
|
entityId: z.ZodString;
|
|
42
42
|
label: z.ZodDefault<z.ZodEnum<{
|
|
43
43
|
service: "service";
|
|
44
|
-
other: "other";
|
|
45
44
|
primary: "primary";
|
|
45
|
+
other: "other";
|
|
46
46
|
legal: "legal";
|
|
47
47
|
billing: "billing";
|
|
48
48
|
shipping: "shipping";
|
|
@@ -71,8 +71,8 @@ export declare const namedContactRecordSchema: z.ZodObject<{
|
|
|
71
71
|
entityType: z.ZodString;
|
|
72
72
|
entityId: z.ZodString;
|
|
73
73
|
role: z.ZodDefault<z.ZodEnum<{
|
|
74
|
-
other: "other";
|
|
75
74
|
primary: "primary";
|
|
75
|
+
other: "other";
|
|
76
76
|
legal: "legal";
|
|
77
77
|
operations: "operations";
|
|
78
78
|
general: "general";
|
|
@@ -99,12 +99,12 @@ export declare const contactPointListResponse: z.ZodObject<{
|
|
|
99
99
|
entityType: z.ZodString;
|
|
100
100
|
entityId: z.ZodString;
|
|
101
101
|
kind: z.ZodEnum<{
|
|
102
|
-
other: "other";
|
|
103
102
|
email: "email";
|
|
103
|
+
other: "other";
|
|
104
104
|
phone: "phone";
|
|
105
105
|
mobile: "mobile";
|
|
106
|
-
website: "website";
|
|
107
106
|
whatsapp: "whatsapp";
|
|
107
|
+
website: "website";
|
|
108
108
|
sms: "sms";
|
|
109
109
|
fax: "fax";
|
|
110
110
|
social: "social";
|
|
@@ -128,12 +128,12 @@ export declare const contactPointSingleResponse: z.ZodObject<{
|
|
|
128
128
|
entityType: z.ZodString;
|
|
129
129
|
entityId: z.ZodString;
|
|
130
130
|
kind: z.ZodEnum<{
|
|
131
|
-
other: "other";
|
|
132
131
|
email: "email";
|
|
132
|
+
other: "other";
|
|
133
133
|
phone: "phone";
|
|
134
134
|
mobile: "mobile";
|
|
135
|
-
website: "website";
|
|
136
135
|
whatsapp: "whatsapp";
|
|
136
|
+
website: "website";
|
|
137
137
|
sms: "sms";
|
|
138
138
|
fax: "fax";
|
|
139
139
|
social: "social";
|
|
@@ -155,8 +155,8 @@ export declare const addressListResponse: z.ZodObject<{
|
|
|
155
155
|
entityId: z.ZodString;
|
|
156
156
|
label: z.ZodDefault<z.ZodEnum<{
|
|
157
157
|
service: "service";
|
|
158
|
-
other: "other";
|
|
159
158
|
primary: "primary";
|
|
159
|
+
other: "other";
|
|
160
160
|
legal: "legal";
|
|
161
161
|
billing: "billing";
|
|
162
162
|
shipping: "shipping";
|
|
@@ -190,8 +190,8 @@ export declare const addressSingleResponse: z.ZodObject<{
|
|
|
190
190
|
entityId: z.ZodString;
|
|
191
191
|
label: z.ZodDefault<z.ZodEnum<{
|
|
192
192
|
service: "service";
|
|
193
|
-
other: "other";
|
|
194
193
|
primary: "primary";
|
|
194
|
+
other: "other";
|
|
195
195
|
legal: "legal";
|
|
196
196
|
billing: "billing";
|
|
197
197
|
shipping: "shipping";
|
|
@@ -221,8 +221,8 @@ export declare const namedContactListResponse: z.ZodObject<{
|
|
|
221
221
|
entityType: z.ZodString;
|
|
222
222
|
entityId: z.ZodString;
|
|
223
223
|
role: z.ZodDefault<z.ZodEnum<{
|
|
224
|
-
other: "other";
|
|
225
224
|
primary: "primary";
|
|
225
|
+
other: "other";
|
|
226
226
|
legal: "legal";
|
|
227
227
|
operations: "operations";
|
|
228
228
|
general: "general";
|
|
@@ -252,8 +252,8 @@ export declare const namedContactSingleResponse: z.ZodObject<{
|
|
|
252
252
|
entityType: z.ZodString;
|
|
253
253
|
entityId: z.ZodString;
|
|
254
254
|
role: z.ZodDefault<z.ZodEnum<{
|
|
255
|
-
other: "other";
|
|
256
255
|
primary: "primary";
|
|
256
|
+
other: "other";
|
|
257
257
|
legal: "legal";
|
|
258
258
|
operations: "operations";
|
|
259
259
|
general: "general";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@voyant-travel/identity-react",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.120.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -71,12 +71,12 @@
|
|
|
71
71
|
"react-dom": "^19.0.0",
|
|
72
72
|
"react-hook-form": "^7.60.0",
|
|
73
73
|
"zod": "^4.0.0",
|
|
74
|
-
"@voyant-travel/bookings-react": "^0.
|
|
75
|
-
"@voyant-travel/relationships-react": "^0.
|
|
76
|
-
"@voyant-travel/
|
|
77
|
-
"@voyant-travel/
|
|
78
|
-
"@voyant-travel/
|
|
79
|
-
"@voyant-travel/
|
|
74
|
+
"@voyant-travel/bookings-react": "^0.120.0",
|
|
75
|
+
"@voyant-travel/relationships-react": "^0.120.0",
|
|
76
|
+
"@voyant-travel/identity": "^0.120.0",
|
|
77
|
+
"@voyant-travel/inventory-react": "^0.2.0",
|
|
78
|
+
"@voyant-travel/distribution-react": "^0.110.0",
|
|
79
|
+
"@voyant-travel/ui": "^0.106.1"
|
|
80
80
|
},
|
|
81
81
|
"peerDependenciesMeta": {
|
|
82
82
|
"@tanstack/react-table": {
|
|
@@ -117,14 +117,14 @@
|
|
|
117
117
|
"typescript": "^6.0.2",
|
|
118
118
|
"vitest": "^4.1.2",
|
|
119
119
|
"zod": "^4.3.6",
|
|
120
|
+
"@voyant-travel/bookings-react": "^0.120.0",
|
|
121
|
+
"@voyant-travel/relationships-react": "^0.120.0",
|
|
120
122
|
"@voyant-travel/i18n": "^0.106.1",
|
|
121
|
-
"@voyant-travel/
|
|
123
|
+
"@voyant-travel/identity": "^0.120.0",
|
|
124
|
+
"@voyant-travel/inventory-react": "^0.2.0",
|
|
122
125
|
"@voyant-travel/react": "^0.104.1",
|
|
123
|
-
"@voyant-travel/
|
|
124
|
-
"@voyant-travel/identity": "^0.119.1",
|
|
125
|
-
"@voyant-travel/inventory-react": "^0.1.0",
|
|
126
|
+
"@voyant-travel/distribution-react": "^0.110.0",
|
|
126
127
|
"@voyant-travel/ui": "^0.106.1",
|
|
127
|
-
"@voyant-travel/distribution-react": "^0.109.8",
|
|
128
128
|
"@voyant-travel/voyant-typescript-config": "^0.1.0"
|
|
129
129
|
},
|
|
130
130
|
"files": [
|