@seamapi/types 1.850.0 → 1.851.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 +30 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +8 -0
- package/dist/index.cjs +30 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/customer/customer-data.d.ts +10 -0
- package/lib/seam/connect/models/customer/location-resources.d.ts +6 -0
- package/lib/seam/connect/models/customer/location-resources.js +6 -0
- package/lib/seam/connect/models/customer/location-resources.js.map +1 -1
- package/lib/seam/connect/openapi.js +30 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +8 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/customer/location-resources.ts +8 -0
- package/src/lib/seam/connect/openapi.ts +35 -0
- package/src/lib/seam/connect/route-types.ts +8 -0
|
@@ -5,14 +5,17 @@ export declare const external_resources: z.ZodObject<{
|
|
|
5
5
|
} & {
|
|
6
6
|
space_key: z.ZodEffects<z.ZodString, string, string>;
|
|
7
7
|
parent_site_key: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
8
|
+
duration_minutes: z.ZodOptional<z.ZodNumber>;
|
|
8
9
|
}, "strip", z.ZodTypeAny, {
|
|
9
10
|
name: string;
|
|
10
11
|
space_key: string;
|
|
11
12
|
parent_site_key?: string | undefined;
|
|
13
|
+
duration_minutes?: number | undefined;
|
|
12
14
|
}, {
|
|
13
15
|
name: string;
|
|
14
16
|
space_key: string;
|
|
15
17
|
parent_site_key?: string | undefined;
|
|
18
|
+
duration_minutes?: number | undefined;
|
|
16
19
|
}>, "many">>;
|
|
17
20
|
sites: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
18
21
|
name: z.ZodString;
|
|
@@ -462,6 +465,7 @@ export declare const external_resources: z.ZodObject<{
|
|
|
462
465
|
name: string;
|
|
463
466
|
space_key: string;
|
|
464
467
|
parent_site_key?: string | undefined;
|
|
468
|
+
duration_minutes?: number | undefined;
|
|
465
469
|
}[] | undefined;
|
|
466
470
|
access_grants?: {
|
|
467
471
|
access_grant_key: string;
|
|
@@ -615,6 +619,7 @@ export declare const external_resources: z.ZodObject<{
|
|
|
615
619
|
name: string;
|
|
616
620
|
space_key: string;
|
|
617
621
|
parent_site_key?: string | undefined;
|
|
622
|
+
duration_minutes?: number | undefined;
|
|
618
623
|
}[] | undefined;
|
|
619
624
|
access_grants?: {
|
|
620
625
|
access_grant_key: string;
|
|
@@ -759,14 +764,17 @@ export declare const customer_data: z.ZodObject<{
|
|
|
759
764
|
} & {
|
|
760
765
|
space_key: z.ZodEffects<z.ZodString, string, string>;
|
|
761
766
|
parent_site_key: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
767
|
+
duration_minutes: z.ZodOptional<z.ZodNumber>;
|
|
762
768
|
}, "strip", z.ZodTypeAny, {
|
|
763
769
|
name: string;
|
|
764
770
|
space_key: string;
|
|
765
771
|
parent_site_key?: string | undefined;
|
|
772
|
+
duration_minutes?: number | undefined;
|
|
766
773
|
}, {
|
|
767
774
|
name: string;
|
|
768
775
|
space_key: string;
|
|
769
776
|
parent_site_key?: string | undefined;
|
|
777
|
+
duration_minutes?: number | undefined;
|
|
770
778
|
}>, "many">>;
|
|
771
779
|
sites: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
772
780
|
name: z.ZodString;
|
|
@@ -1217,6 +1225,7 @@ export declare const customer_data: z.ZodObject<{
|
|
|
1217
1225
|
name: string;
|
|
1218
1226
|
space_key: string;
|
|
1219
1227
|
parent_site_key?: string | undefined;
|
|
1228
|
+
duration_minutes?: number | undefined;
|
|
1220
1229
|
}[] | undefined;
|
|
1221
1230
|
access_grants?: {
|
|
1222
1231
|
access_grant_key: string;
|
|
@@ -1371,6 +1380,7 @@ export declare const customer_data: z.ZodObject<{
|
|
|
1371
1380
|
name: string;
|
|
1372
1381
|
space_key: string;
|
|
1373
1382
|
parent_site_key?: string | undefined;
|
|
1383
|
+
duration_minutes?: number | undefined;
|
|
1374
1384
|
}[] | undefined;
|
|
1375
1385
|
access_grants?: {
|
|
1376
1386
|
access_grant_key: string;
|
|
@@ -4,14 +4,17 @@ export declare const neutral_resource: z.ZodObject<{
|
|
|
4
4
|
} & {
|
|
5
5
|
space_key: z.ZodEffects<z.ZodString, string, string>;
|
|
6
6
|
parent_site_key: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
7
|
+
duration_minutes: z.ZodOptional<z.ZodNumber>;
|
|
7
8
|
}, "strip", z.ZodTypeAny, {
|
|
8
9
|
name: string;
|
|
9
10
|
space_key: string;
|
|
10
11
|
parent_site_key?: string | undefined;
|
|
12
|
+
duration_minutes?: number | undefined;
|
|
11
13
|
}, {
|
|
12
14
|
name: string;
|
|
13
15
|
space_key: string;
|
|
14
16
|
parent_site_key?: string | undefined;
|
|
17
|
+
duration_minutes?: number | undefined;
|
|
15
18
|
}>;
|
|
16
19
|
export declare const property_resource: z.ZodObject<{
|
|
17
20
|
name: z.ZodString;
|
|
@@ -129,14 +132,17 @@ export declare const location_resource: z.ZodUnion<[z.ZodObject<{
|
|
|
129
132
|
} & {
|
|
130
133
|
space_key: z.ZodEffects<z.ZodString, string, string>;
|
|
131
134
|
parent_site_key: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
135
|
+
duration_minutes: z.ZodOptional<z.ZodNumber>;
|
|
132
136
|
}, "strip", z.ZodTypeAny, {
|
|
133
137
|
name: string;
|
|
134
138
|
space_key: string;
|
|
135
139
|
parent_site_key?: string | undefined;
|
|
140
|
+
duration_minutes?: number | undefined;
|
|
136
141
|
}, {
|
|
137
142
|
name: string;
|
|
138
143
|
space_key: string;
|
|
139
144
|
parent_site_key?: string | undefined;
|
|
145
|
+
duration_minutes?: number | undefined;
|
|
140
146
|
}>, z.ZodObject<{
|
|
141
147
|
name: z.ZodString;
|
|
142
148
|
} & {
|
|
@@ -21,6 +21,12 @@ export const neutral_resource = base_location_resource.extend({
|
|
|
21
21
|
})
|
|
22
22
|
.describe('Your unique identifier for the site.')
|
|
23
23
|
.optional(),
|
|
24
|
+
duration_minutes: z
|
|
25
|
+
.number()
|
|
26
|
+
.int()
|
|
27
|
+
.positive()
|
|
28
|
+
.optional()
|
|
29
|
+
.describe('Default duration of this space in minutes, when the space represents a fixed-length bookable slot (e.g. an appointment type). Used to interpret reservations booked against this space.'),
|
|
24
30
|
});
|
|
25
31
|
export const property_resource = base_location_resource.extend({
|
|
26
32
|
property_key: z
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"location-resources.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/customer/location-resources.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,qBAAqB,EAAE,MAAM,uBAAuB,CAAA;AAE7D,4CAA4C;AAC5C,MAAM,sBAAsB,GAAG,CAAC,CAAC,MAAM,CAAC;IACtC,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,+CAA+C,CAAC;CAC3E,CAAC,CAAA;AAEF,iDAAiD;AACjD,MAAM,CAAC,MAAM,gBAAgB,GAAG,sBAAsB,CAAC,MAAM,CAAC;IAC5D,SAAS,EAAE,CAAC;SACT,MAAM,EAAE;SACR,GAAG,CAAC,CAAC,CAAC;SACN,MAAM,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAG,KAAK,GAAG,CAAC,IAAI,EAAE,EAAE;QACnC,OAAO,EAAE,8CAA8C;KACxD,CAAC;SACD,QAAQ,CAAC,uCAAuC,CAAC;IACpD,eAAe,EAAE,CAAC;SACf,MAAM,EAAE;SACR,GAAG,CAAC,CAAC,CAAC;SACN,MAAM,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAG,KAAK,GAAG,CAAC,IAAI,EAAE,EAAE;QACnC,OAAO,EAAE,8CAA8C;KACxD,CAAC;SACD,QAAQ,CAAC,sCAAsC,CAAC;SAChD,QAAQ,EAAE;
|
|
1
|
+
{"version":3,"file":"location-resources.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/customer/location-resources.ts"],"names":[],"mappings":"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"}
|
|
@@ -47343,6 +47343,12 @@ const openapi = {
|
|
|
47343
47343
|
description: 'List of general spaces or areas.',
|
|
47344
47344
|
items: {
|
|
47345
47345
|
properties: {
|
|
47346
|
+
duration_minutes: {
|
|
47347
|
+
description: 'Default duration of this space in minutes, when the space represents a fixed-length bookable slot (e.g. an appointment type). Used to interpret reservations booked against this space.',
|
|
47348
|
+
exclusiveMinimum: true,
|
|
47349
|
+
minimum: 0,
|
|
47350
|
+
type: 'integer',
|
|
47351
|
+
},
|
|
47346
47352
|
name: {
|
|
47347
47353
|
description: 'Your display name for this location resource.',
|
|
47348
47354
|
type: 'string',
|
|
@@ -48473,6 +48479,12 @@ const openapi = {
|
|
|
48473
48479
|
description: 'List of general spaces or areas.',
|
|
48474
48480
|
items: {
|
|
48475
48481
|
properties: {
|
|
48482
|
+
duration_minutes: {
|
|
48483
|
+
description: 'Default duration of this space in minutes, when the space represents a fixed-length bookable slot (e.g. an appointment type). Used to interpret reservations booked against this space.',
|
|
48484
|
+
exclusiveMinimum: true,
|
|
48485
|
+
minimum: 0,
|
|
48486
|
+
type: 'integer',
|
|
48487
|
+
},
|
|
48476
48488
|
name: {
|
|
48477
48489
|
description: 'Your display name for this location resource.',
|
|
48478
48490
|
type: 'string',
|
|
@@ -73323,6 +73335,12 @@ const openapi = {
|
|
|
73323
73335
|
description: 'Optional list of spaces that you want to include in the new building block magic link.',
|
|
73324
73336
|
items: {
|
|
73325
73337
|
properties: {
|
|
73338
|
+
duration_minutes: {
|
|
73339
|
+
description: 'Default duration of this space in minutes, when the space represents a fixed-length bookable slot (e.g. an appointment type). Used to interpret reservations booked against this space.',
|
|
73340
|
+
exclusiveMinimum: true,
|
|
73341
|
+
minimum: 0,
|
|
73342
|
+
type: 'integer',
|
|
73343
|
+
},
|
|
73326
73344
|
name: {
|
|
73327
73345
|
description: 'Your display name for this location resource.',
|
|
73328
73346
|
type: 'string',
|
|
@@ -73405,6 +73423,12 @@ const openapi = {
|
|
|
73405
73423
|
description: 'Optional list of spaces that you want to include in the new building block magic link.',
|
|
73406
73424
|
items: {
|
|
73407
73425
|
properties: {
|
|
73426
|
+
duration_minutes: {
|
|
73427
|
+
description: 'Default duration of this space in minutes, when the space represents a fixed-length bookable slot (e.g. an appointment type). Used to interpret reservations booked against this space.',
|
|
73428
|
+
exclusiveMinimum: true,
|
|
73429
|
+
minimum: 0,
|
|
73430
|
+
type: 'integer',
|
|
73431
|
+
},
|
|
73408
73432
|
name: {
|
|
73409
73433
|
description: 'Your display name for this location resource.',
|
|
73410
73434
|
type: 'string',
|
|
@@ -73539,6 +73563,12 @@ const openapi = {
|
|
|
73539
73563
|
description: 'Optional list of spaces that you want to include in the new building block magic link.',
|
|
73540
73564
|
items: {
|
|
73541
73565
|
properties: {
|
|
73566
|
+
duration_minutes: {
|
|
73567
|
+
description: 'Default duration of this space in minutes, when the space represents a fixed-length bookable slot (e.g. an appointment type). Used to interpret reservations booked against this space.',
|
|
73568
|
+
exclusiveMinimum: true,
|
|
73569
|
+
minimum: 0,
|
|
73570
|
+
type: 'integer',
|
|
73571
|
+
},
|
|
73542
73572
|
name: {
|
|
73543
73573
|
description: 'Your display name for this location resource.',
|
|
73544
73574
|
type: 'string',
|