@seamapi/types 1.849.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 +46 -8
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +14 -5
- package/dist/index.cjs +46 -8
- 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/models/devices/device-provider.d.ts +2 -1
- package/lib/seam/connect/models/devices/device-provider.js +2 -1
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- package/lib/seam/connect/openapi.js +37 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +13 -5
- package/package.json +1 -1
- package/src/lib/seam/connect/models/customer/location-resources.ts +8 -0
- package/src/lib/seam/connect/models/devices/device-provider.ts +2 -1
- package/src/lib/seam/connect/openapi.ts +42 -0
- package/src/lib/seam/connect/route-types.ts +13 -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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"}
|
|
@@ -54,6 +54,7 @@ export declare const DEVICE_PROVIDERS: {
|
|
|
54
54
|
readonly ICAL: "ical";
|
|
55
55
|
readonly LODGIFY: "lodgify";
|
|
56
56
|
readonly HOSTAWAY: "hostaway";
|
|
57
|
+
readonly ACUITY_SCHEDULING: "acuity_scheduling";
|
|
57
58
|
};
|
|
58
59
|
export type DeviceProviderName = (typeof DEVICE_PROVIDERS)[keyof typeof DEVICE_PROVIDERS];
|
|
59
60
|
export declare const ALL_DEVICE_PROVIDERS: [
|
|
@@ -69,7 +70,7 @@ export declare const PROVIDER_CATEGORY_MAP: {
|
|
|
69
70
|
readonly noise_sensors: readonly ["minut", "noiseaware"];
|
|
70
71
|
readonly access_control_systems: readonly ["brivo", "visionline", "assa_abloy_credential_service", "latch", "salto_ks", "assa_abloy_vostio", "salto_space", "dormakaba_ambiance", "dormakaba_community", "legic_connect", "hotek"];
|
|
71
72
|
readonly cameras: readonly ["ring"];
|
|
72
|
-
readonly connectors: readonly ["ical", "lodgify", "hostaway"];
|
|
73
|
+
readonly connectors: readonly ["ical", "lodgify", "hostaway", "acuity_scheduling"];
|
|
73
74
|
readonly internal_beta: [DeviceProviderName, ...DeviceProviderName[]];
|
|
74
75
|
};
|
|
75
76
|
export declare const PROVIDER_CATEGORIES: [ProviderCategory, ...ProviderCategory[]];
|
|
@@ -54,6 +54,7 @@ export const DEVICE_PROVIDERS = {
|
|
|
54
54
|
ICAL: 'ical',
|
|
55
55
|
LODGIFY: 'lodgify',
|
|
56
56
|
HOSTAWAY: 'hostaway',
|
|
57
|
+
ACUITY_SCHEDULING: 'acuity_scheduling',
|
|
57
58
|
};
|
|
58
59
|
export const ALL_DEVICE_PROVIDERS = Object.values(DEVICE_PROVIDERS);
|
|
59
60
|
export const PROVIDER_CATEGORY_MAP = {
|
|
@@ -126,7 +127,7 @@ export const PROVIDER_CATEGORY_MAP = {
|
|
|
126
127
|
'hotek',
|
|
127
128
|
],
|
|
128
129
|
cameras: ['ring'],
|
|
129
|
-
connectors: ['ical', 'lodgify', 'hostaway'],
|
|
130
|
+
connectors: ['ical', 'lodgify', 'hostaway', 'acuity_scheduling'],
|
|
130
131
|
internal_beta: ALL_DEVICE_PROVIDERS,
|
|
131
132
|
};
|
|
132
133
|
export const PROVIDER_CATEGORIES = Object.keys(PROVIDER_CATEGORY_MAP);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"device-provider.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/devices/device-provider.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAGvB,OAAO,EAAE,uBAAuB,EAAE,MAAM,aAAa,CAAA;AAErD,MAAM,CAAC,MAAM,gBAAgB,GAAG;IAC9B,KAAK,EAAE,OAAO;IACd,mBAAmB,EAAE,qBAAqB;IAC1C,aAAa,EAAE,eAAe;IAC9B,MAAM,EAAE,QAAQ;IAChB,MAAM,EAAE,QAAQ;IAChB,aAAa,EAAE,eAAe;IAC9B,KAAK,EAAE,OAAO;IACd,WAAW,EAAE,aAAa;IAC1B,OAAO,EAAE,SAAS;IAClB,WAAW,EAAE,aAAa;IAC1B,IAAI,EAAE,MAAM;IACZ,KAAK,EAAE,OAAO;IACd,QAAQ,EAAE,UAAU;IACpB,KAAK,EAAE,OAAO;IACd,QAAQ,EAAE,UAAU;IACpB,MAAM,EAAE,QAAQ;IAChB,MAAM,EAAE,QAAQ;IAChB,MAAM,EAAE,QAAQ;IAChB,UAAU,EAAE,YAAY;IACxB,IAAI,EAAE,MAAM;IACZ,KAAK,EAAE,OAAO;IACd,OAAO,EAAE,SAAS;IAClB,KAAK,EAAE,OAAO;IACd,KAAK,EAAE,OAAO;IACd,YAAY,EAAE,cAAc;IAC5B,IAAI,EAAE,MAAM;IACZ,SAAS,EAAE,WAAW;IACtB,MAAM,EAAE,QAAQ;IAChB,WAAW,EAAE,aAAa;IAC1B,iBAAiB,EAAE,mBAAmB;IACtC,GAAG,EAAE,KAAK;IACV,IAAI,EAAE,MAAM;IACZ,aAAa,EAAE,eAAe;IAC9B,UAAU,EAAE,YAAY;IACxB,6BAA6B,EAAE,+BAA+B;IAC9D,KAAK,EAAE,OAAO;IACd,iBAAiB,EAAE,mBAAmB;IACtC,WAAW,EAAE,aAAa;IAC1B,KAAK,EAAE,OAAO;IACd,MAAM,EAAE,QAAQ;IAChB,MAAM,EAAE,mBAAmB;IAC3B,oCAAoC,EAAE,sCAAsC;IAC5E,IAAI,EAAE,MAAM;IACZ,WAAW,EAAE,aAAa;IAC1B,KAAK,EAAE,OAAO;IACd,OAAO,EAAE,SAAS;IAClB,QAAQ,EAAE,UAAU;IACpB,kBAAkB,EAAE,oBAAoB;IACxC,QAAQ,EAAE,UAAU;IACpB,IAAI,EAAE,MAAM;IACZ,IAAI,EAAE,MAAM;IACZ,OAAO,EAAE,SAAS;IAClB,QAAQ,EAAE,UAAU;
|
|
1
|
+
{"version":3,"file":"device-provider.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/devices/device-provider.ts"],"names":[],"mappings":"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"}
|
|
@@ -14127,6 +14127,7 @@ const openapi = {
|
|
|
14127
14127
|
'ical',
|
|
14128
14128
|
'lodgify',
|
|
14129
14129
|
'hostaway',
|
|
14130
|
+
'acuity_scheduling',
|
|
14130
14131
|
],
|
|
14131
14132
|
type: 'string',
|
|
14132
14133
|
},
|
|
@@ -45278,6 +45279,7 @@ const openapi = {
|
|
|
45278
45279
|
'ical',
|
|
45279
45280
|
'lodgify',
|
|
45280
45281
|
'hostaway',
|
|
45282
|
+
'acuity_scheduling',
|
|
45281
45283
|
'yale_access',
|
|
45282
45284
|
'hid_cm',
|
|
45283
45285
|
'google_nest',
|
|
@@ -47341,6 +47343,12 @@ const openapi = {
|
|
|
47341
47343
|
description: 'List of general spaces or areas.',
|
|
47342
47344
|
items: {
|
|
47343
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
|
+
},
|
|
47344
47352
|
name: {
|
|
47345
47353
|
description: 'Your display name for this location resource.',
|
|
47346
47354
|
type: 'string',
|
|
@@ -48471,6 +48479,12 @@ const openapi = {
|
|
|
48471
48479
|
description: 'List of general spaces or areas.',
|
|
48472
48480
|
items: {
|
|
48473
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
|
+
},
|
|
48474
48488
|
name: {
|
|
48475
48489
|
description: 'Your display name for this location resource.',
|
|
48476
48490
|
type: 'string',
|
|
@@ -49243,6 +49257,7 @@ const openapi = {
|
|
|
49243
49257
|
'ical',
|
|
49244
49258
|
'lodgify',
|
|
49245
49259
|
'hostaway',
|
|
49260
|
+
'acuity_scheduling',
|
|
49246
49261
|
],
|
|
49247
49262
|
type: 'string',
|
|
49248
49263
|
},
|
|
@@ -49736,6 +49751,7 @@ const openapi = {
|
|
|
49736
49751
|
'ical',
|
|
49737
49752
|
'lodgify',
|
|
49738
49753
|
'hostaway',
|
|
49754
|
+
'acuity_scheduling',
|
|
49739
49755
|
],
|
|
49740
49756
|
type: 'string',
|
|
49741
49757
|
},
|
|
@@ -51538,6 +51554,7 @@ const openapi = {
|
|
|
51538
51554
|
'ical',
|
|
51539
51555
|
'lodgify',
|
|
51540
51556
|
'hostaway',
|
|
51557
|
+
'acuity_scheduling',
|
|
51541
51558
|
],
|
|
51542
51559
|
type: 'string',
|
|
51543
51560
|
},
|
|
@@ -52030,6 +52047,7 @@ const openapi = {
|
|
|
52030
52047
|
'ical',
|
|
52031
52048
|
'lodgify',
|
|
52032
52049
|
'hostaway',
|
|
52050
|
+
'acuity_scheduling',
|
|
52033
52051
|
],
|
|
52034
52052
|
type: 'string',
|
|
52035
52053
|
},
|
|
@@ -60401,6 +60419,7 @@ const openapi = {
|
|
|
60401
60419
|
'ical',
|
|
60402
60420
|
'lodgify',
|
|
60403
60421
|
'hostaway',
|
|
60422
|
+
'acuity_scheduling',
|
|
60404
60423
|
],
|
|
60405
60424
|
type: 'string',
|
|
60406
60425
|
},
|
|
@@ -73316,6 +73335,12 @@ const openapi = {
|
|
|
73316
73335
|
description: 'Optional list of spaces that you want to include in the new building block magic link.',
|
|
73317
73336
|
items: {
|
|
73318
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
|
+
},
|
|
73319
73344
|
name: {
|
|
73320
73345
|
description: 'Your display name for this location resource.',
|
|
73321
73346
|
type: 'string',
|
|
@@ -73398,6 +73423,12 @@ const openapi = {
|
|
|
73398
73423
|
description: 'Optional list of spaces that you want to include in the new building block magic link.',
|
|
73399
73424
|
items: {
|
|
73400
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
|
+
},
|
|
73401
73432
|
name: {
|
|
73402
73433
|
description: 'Your display name for this location resource.',
|
|
73403
73434
|
type: 'string',
|
|
@@ -73532,6 +73563,12 @@ const openapi = {
|
|
|
73532
73563
|
description: 'Optional list of spaces that you want to include in the new building block magic link.',
|
|
73533
73564
|
items: {
|
|
73534
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
|
+
},
|
|
73535
73572
|
name: {
|
|
73536
73573
|
description: 'Your display name for this location resource.',
|
|
73537
73574
|
type: 'string',
|