@seamapi/types 1.757.0 → 1.758.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/connect.cjs +8 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +28 -0
- package/dist/index.cjs +8 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +24 -0
- package/lib/seam/connect/openapi.js +8 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +4 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +16 -0
- package/src/lib/seam/connect/route-types.ts +12 -0
package/dist/connect.d.cts
CHANGED
|
@@ -112136,6 +112136,9 @@ declare const _default: {
|
|
|
112136
112136
|
minItems: number;
|
|
112137
112137
|
type: string;
|
|
112138
112138
|
};
|
|
112139
|
+
allow_shared_email_and_phone_across_user_identities: {
|
|
112140
|
+
type: string;
|
|
112141
|
+
};
|
|
112139
112142
|
card_count_on_reservation_create: {
|
|
112140
112143
|
minimum: number;
|
|
112141
112144
|
type: string;
|
|
@@ -112438,6 +112441,9 @@ declare const _default: {
|
|
|
112438
112441
|
minItems: number;
|
|
112439
112442
|
type: string;
|
|
112440
112443
|
};
|
|
112444
|
+
allow_shared_email_and_phone_across_user_identities: {
|
|
112445
|
+
type: string;
|
|
112446
|
+
};
|
|
112441
112447
|
card_count_on_reservation_create: {
|
|
112442
112448
|
minimum: number;
|
|
112443
112449
|
type: string;
|
|
@@ -112727,6 +112733,9 @@ declare const _default: {
|
|
|
112727
112733
|
minItems: number;
|
|
112728
112734
|
type: string;
|
|
112729
112735
|
};
|
|
112736
|
+
allow_shared_email_and_phone_across_user_identities: {
|
|
112737
|
+
type: string;
|
|
112738
|
+
};
|
|
112730
112739
|
card_count_on_reservation_create: {
|
|
112731
112740
|
minimum: number;
|
|
112732
112741
|
type: string;
|
|
@@ -113039,6 +113048,9 @@ declare const _default: {
|
|
|
113039
113048
|
minItems: number;
|
|
113040
113049
|
type: string;
|
|
113041
113050
|
};
|
|
113051
|
+
allow_shared_email_and_phone_across_user_identities: {
|
|
113052
|
+
type: string;
|
|
113053
|
+
};
|
|
113042
113054
|
card_count_on_reservation_create: {
|
|
113043
113055
|
minimum: number;
|
|
113044
113056
|
type: string;
|
|
@@ -114480,6 +114492,9 @@ declare const _default: {
|
|
|
114480
114492
|
minItems: number;
|
|
114481
114493
|
type: string;
|
|
114482
114494
|
};
|
|
114495
|
+
allow_shared_email_and_phone_across_user_identities: {
|
|
114496
|
+
type: string;
|
|
114497
|
+
};
|
|
114483
114498
|
card_count_on_reservation_create: {
|
|
114484
114499
|
minimum: number;
|
|
114485
114500
|
type: string;
|
|
@@ -114768,6 +114783,9 @@ declare const _default: {
|
|
|
114768
114783
|
minItems: number;
|
|
114769
114784
|
type: string;
|
|
114770
114785
|
};
|
|
114786
|
+
allow_shared_email_and_phone_across_user_identities: {
|
|
114787
|
+
type: string;
|
|
114788
|
+
};
|
|
114771
114789
|
card_count_on_reservation_create: {
|
|
114772
114790
|
minimum: number;
|
|
114773
114791
|
type: string;
|
|
@@ -115056,6 +115074,9 @@ declare const _default: {
|
|
|
115056
115074
|
minItems: number;
|
|
115057
115075
|
type: string;
|
|
115058
115076
|
};
|
|
115077
|
+
allow_shared_email_and_phone_across_user_identities: {
|
|
115078
|
+
type: string;
|
|
115079
|
+
};
|
|
115059
115080
|
card_count_on_reservation_create: {
|
|
115060
115081
|
minimum: number;
|
|
115061
115082
|
type: string;
|
|
@@ -115359,6 +115380,9 @@ declare const _default: {
|
|
|
115359
115380
|
minItems: number;
|
|
115360
115381
|
type: string;
|
|
115361
115382
|
};
|
|
115383
|
+
allow_shared_email_and_phone_across_user_identities: {
|
|
115384
|
+
type: string;
|
|
115385
|
+
};
|
|
115362
115386
|
card_count_on_reservation_create: {
|
|
115363
115387
|
minimum: number;
|
|
115364
115388
|
type: string;
|
|
@@ -192493,6 +192517,7 @@ type Routes = {
|
|
|
192493
192517
|
code_count_on_reservation_create?: number | undefined;
|
|
192494
192518
|
instant_key_max_use_count?: number | undefined;
|
|
192495
192519
|
prefer_guest_phone_last4_as_code?: boolean | undefined;
|
|
192520
|
+
allow_shared_email_and_phone_across_user_identities?: boolean | undefined;
|
|
192496
192521
|
};
|
|
192497
192522
|
} | undefined;
|
|
192498
192523
|
reservation_time_updated?: {
|
|
@@ -192576,6 +192601,7 @@ type Routes = {
|
|
|
192576
192601
|
code_count_on_reservation_create?: number | undefined;
|
|
192577
192602
|
instant_key_max_use_count?: number | undefined;
|
|
192578
192603
|
prefer_guest_phone_last4_as_code?: boolean | undefined;
|
|
192604
|
+
allow_shared_email_and_phone_across_user_identities?: boolean | undefined;
|
|
192579
192605
|
};
|
|
192580
192606
|
} | undefined;
|
|
192581
192607
|
reservation_time_updated?: {
|
|
@@ -192872,6 +192898,7 @@ type Routes = {
|
|
|
192872
192898
|
code_count_on_reservation_create?: number | undefined;
|
|
192873
192899
|
instant_key_max_use_count?: number | undefined;
|
|
192874
192900
|
prefer_guest_phone_last4_as_code?: boolean | undefined;
|
|
192901
|
+
allow_shared_email_and_phone_across_user_identities?: boolean | undefined;
|
|
192875
192902
|
};
|
|
192876
192903
|
} | undefined;
|
|
192877
192904
|
reservation_time_updated?: {
|
|
@@ -192954,6 +192981,7 @@ type Routes = {
|
|
|
192954
192981
|
code_count_on_reservation_create?: number | undefined;
|
|
192955
192982
|
instant_key_max_use_count?: number | undefined;
|
|
192956
192983
|
prefer_guest_phone_last4_as_code?: boolean | undefined;
|
|
192984
|
+
allow_shared_email_and_phone_across_user_identities?: boolean | undefined;
|
|
192957
192985
|
};
|
|
192958
192986
|
} | undefined;
|
|
192959
192987
|
reservation_time_updated?: {
|
package/dist/index.cjs
CHANGED
|
@@ -62822,6 +62822,7 @@ var openapi_default = {
|
|
|
62822
62822
|
minItems: 1,
|
|
62823
62823
|
type: "array"
|
|
62824
62824
|
},
|
|
62825
|
+
allow_shared_email_and_phone_across_user_identities: { type: "boolean" },
|
|
62825
62826
|
card_count_on_reservation_create: {
|
|
62826
62827
|
minimum: 0,
|
|
62827
62828
|
type: "integer"
|
|
@@ -63121,6 +63122,7 @@ var openapi_default = {
|
|
|
63121
63122
|
minItems: 1,
|
|
63122
63123
|
type: "array"
|
|
63123
63124
|
},
|
|
63125
|
+
allow_shared_email_and_phone_across_user_identities: { type: "boolean" },
|
|
63124
63126
|
card_count_on_reservation_create: {
|
|
63125
63127
|
minimum: 0,
|
|
63126
63128
|
type: "integer"
|
|
@@ -63407,6 +63409,7 @@ var openapi_default = {
|
|
|
63407
63409
|
minItems: 1,
|
|
63408
63410
|
type: "array"
|
|
63409
63411
|
},
|
|
63412
|
+
allow_shared_email_and_phone_across_user_identities: { type: "boolean" },
|
|
63410
63413
|
card_count_on_reservation_create: {
|
|
63411
63414
|
minimum: 0,
|
|
63412
63415
|
type: "integer"
|
|
@@ -63693,6 +63696,7 @@ var openapi_default = {
|
|
|
63693
63696
|
minItems: 1,
|
|
63694
63697
|
type: "array"
|
|
63695
63698
|
},
|
|
63699
|
+
allow_shared_email_and_phone_across_user_identities: { type: "boolean" },
|
|
63696
63700
|
card_count_on_reservation_create: {
|
|
63697
63701
|
minimum: 0,
|
|
63698
63702
|
type: "integer"
|
|
@@ -64938,6 +64942,7 @@ var openapi_default = {
|
|
|
64938
64942
|
minItems: 1,
|
|
64939
64943
|
type: "array"
|
|
64940
64944
|
},
|
|
64945
|
+
allow_shared_email_and_phone_across_user_identities: { type: "boolean" },
|
|
64941
64946
|
card_count_on_reservation_create: {
|
|
64942
64947
|
minimum: 0,
|
|
64943
64948
|
type: "integer"
|
|
@@ -65237,6 +65242,7 @@ var openapi_default = {
|
|
|
65237
65242
|
minItems: 1,
|
|
65238
65243
|
type: "array"
|
|
65239
65244
|
},
|
|
65245
|
+
allow_shared_email_and_phone_across_user_identities: { type: "boolean" },
|
|
65240
65246
|
card_count_on_reservation_create: {
|
|
65241
65247
|
minimum: 0,
|
|
65242
65248
|
type: "integer"
|
|
@@ -65536,6 +65542,7 @@ var openapi_default = {
|
|
|
65536
65542
|
minItems: 1,
|
|
65537
65543
|
type: "array"
|
|
65538
65544
|
},
|
|
65545
|
+
allow_shared_email_and_phone_across_user_identities: { type: "boolean" },
|
|
65539
65546
|
card_count_on_reservation_create: {
|
|
65540
65547
|
minimum: 0,
|
|
65541
65548
|
type: "integer"
|
|
@@ -65823,6 +65830,7 @@ var openapi_default = {
|
|
|
65823
65830
|
minItems: 1,
|
|
65824
65831
|
type: "array"
|
|
65825
65832
|
},
|
|
65833
|
+
allow_shared_email_and_phone_across_user_identities: { type: "boolean" },
|
|
65826
65834
|
card_count_on_reservation_create: {
|
|
65827
65835
|
minimum: 0,
|
|
65828
65836
|
type: "integer"
|