@seamapi/types 1.782.0 → 1.783.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 +7 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +33 -1
- package/dist/index.cjs +7 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +5 -0
- package/lib/seam/connect/models/spaces/space.d.ts +3 -0
- package/lib/seam/connect/models/spaces/space.js +4 -0
- package/lib/seam/connect/models/spaces/space.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +4 -0
- package/lib/seam/connect/openapi.js +6 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +21 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/models/spaces/space.ts +4 -0
- package/src/lib/seam/connect/openapi.ts +6 -2
- package/src/lib/seam/connect/route-types.ts +21 -1
|
@@ -180,6 +180,7 @@ export declare const batch: z.ZodObject<{
|
|
|
180
180
|
created_at: z.ZodString;
|
|
181
181
|
device_count: z.ZodNumber;
|
|
182
182
|
acs_entrance_count: z.ZodNumber;
|
|
183
|
+
customer_key: z.ZodOptional<z.ZodString>;
|
|
183
184
|
parent_space_id: z.ZodOptional<z.ZodString>;
|
|
184
185
|
parent_space_key: z.ZodOptional<z.ZodString>;
|
|
185
186
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -190,6 +191,7 @@ export declare const batch: z.ZodObject<{
|
|
|
190
191
|
device_count: number;
|
|
191
192
|
space_id: string;
|
|
192
193
|
acs_entrance_count: number;
|
|
194
|
+
customer_key?: string | undefined;
|
|
193
195
|
space_key?: string | undefined;
|
|
194
196
|
parent_space_id?: string | undefined;
|
|
195
197
|
parent_space_key?: string | undefined;
|
|
@@ -201,6 +203,7 @@ export declare const batch: z.ZodObject<{
|
|
|
201
203
|
device_count: number;
|
|
202
204
|
space_id: string;
|
|
203
205
|
acs_entrance_count: number;
|
|
206
|
+
customer_key?: string | undefined;
|
|
204
207
|
space_key?: string | undefined;
|
|
205
208
|
parent_space_id?: string | undefined;
|
|
206
209
|
parent_space_key?: string | undefined;
|
|
@@ -25506,6 +25509,7 @@ export declare const batch: z.ZodObject<{
|
|
|
25506
25509
|
device_count: number;
|
|
25507
25510
|
space_id: string;
|
|
25508
25511
|
acs_entrance_count: number;
|
|
25512
|
+
customer_key?: string | undefined;
|
|
25509
25513
|
space_key?: string | undefined;
|
|
25510
25514
|
parent_space_id?: string | undefined;
|
|
25511
25515
|
parent_space_key?: string | undefined;
|
|
@@ -30379,6 +30383,7 @@ export declare const batch: z.ZodObject<{
|
|
|
30379
30383
|
device_count: number;
|
|
30380
30384
|
space_id: string;
|
|
30381
30385
|
acs_entrance_count: number;
|
|
30386
|
+
customer_key?: string | undefined;
|
|
30382
30387
|
space_key?: string | undefined;
|
|
30383
30388
|
parent_space_id?: string | undefined;
|
|
30384
30389
|
parent_space_key?: string | undefined;
|
|
@@ -8,6 +8,7 @@ export declare const space: z.ZodObject<{
|
|
|
8
8
|
created_at: z.ZodString;
|
|
9
9
|
device_count: z.ZodNumber;
|
|
10
10
|
acs_entrance_count: z.ZodNumber;
|
|
11
|
+
customer_key: z.ZodOptional<z.ZodString>;
|
|
11
12
|
parent_space_id: z.ZodOptional<z.ZodString>;
|
|
12
13
|
parent_space_key: z.ZodOptional<z.ZodString>;
|
|
13
14
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -18,6 +19,7 @@ export declare const space: z.ZodObject<{
|
|
|
18
19
|
device_count: number;
|
|
19
20
|
space_id: string;
|
|
20
21
|
acs_entrance_count: number;
|
|
22
|
+
customer_key?: string | undefined;
|
|
21
23
|
space_key?: string | undefined;
|
|
22
24
|
parent_space_id?: string | undefined;
|
|
23
25
|
parent_space_key?: string | undefined;
|
|
@@ -29,6 +31,7 @@ export declare const space: z.ZodObject<{
|
|
|
29
31
|
device_count: number;
|
|
30
32
|
space_id: string;
|
|
31
33
|
acs_entrance_count: number;
|
|
34
|
+
customer_key?: string | undefined;
|
|
32
35
|
space_key?: string | undefined;
|
|
33
36
|
parent_space_id?: string | undefined;
|
|
34
37
|
parent_space_key?: string | undefined;
|
|
@@ -17,6 +17,10 @@ export const space = z.object({
|
|
|
17
17
|
.describe('Date and time at which the space was created.'),
|
|
18
18
|
device_count: z.number().describe('Number of devices in the space.'),
|
|
19
19
|
acs_entrance_count: z.number().describe('Number of entrances in the space.'),
|
|
20
|
+
customer_key: z
|
|
21
|
+
.string()
|
|
22
|
+
.optional()
|
|
23
|
+
.describe('Customer key associated with the space.'),
|
|
20
24
|
parent_space_id: z.string().uuid().optional().describe(`
|
|
21
25
|
---
|
|
22
26
|
undocumented: Only used internally.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"space.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/spaces/space.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,KAAK,GAAG,CAAC,CAAC,MAAM,CAAC;IAC5B,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,CAAC,kBAAkB,CAAC;IACxD,YAAY,EAAE,CAAC;SACZ,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CACP,wGAAwG,CACzG;IACH,SAAS,EAAE,CAAC;SACT,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,gDAAgD,CAAC;IAC7D,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,oBAAoB,CAAC;IAC/C,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,6BAA6B,CAAC;IAChE,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,+CAA+C,CAAC;IAC5D,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,iCAAiC,CAAC;IACpE,kBAAkB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,mCAAmC,CAAC;IAC5E,eAAe,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC;;;;KAIpD,CAAC;IACJ,gBAAgB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC;;;;KAI9C,CAAC;CACL,CAAC,CAAC,QAAQ,CAAC;;;;;;GAMT,CAAC,CAAA"}
|
|
1
|
+
{"version":3,"file":"space.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/spaces/space.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,KAAK,GAAG,CAAC,CAAC,MAAM,CAAC;IAC5B,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,CAAC,kBAAkB,CAAC;IACxD,YAAY,EAAE,CAAC;SACZ,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CACP,wGAAwG,CACzG;IACH,SAAS,EAAE,CAAC;SACT,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,gDAAgD,CAAC;IAC7D,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,oBAAoB,CAAC;IAC/C,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,6BAA6B,CAAC;IAChE,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,+CAA+C,CAAC;IAC5D,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,iCAAiC,CAAC;IACpE,kBAAkB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,mCAAmC,CAAC;IAC5E,YAAY,EAAE,CAAC;SACZ,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,yCAAyC,CAAC;IACtD,eAAe,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC;;;;KAIpD,CAAC;IACJ,gBAAgB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC;;;;KAI9C,CAAC;CACL,CAAC,CAAC,QAAQ,CAAC;;;;;;GAMT,CAAC,CAAA"}
|
|
@@ -16324,6 +16324,10 @@ declare const _default: {
|
|
|
16324
16324
|
format: string;
|
|
16325
16325
|
type: string;
|
|
16326
16326
|
};
|
|
16327
|
+
customer_key: {
|
|
16328
|
+
description: string;
|
|
16329
|
+
type: string;
|
|
16330
|
+
};
|
|
16327
16331
|
device_count: {
|
|
16328
16332
|
description: string;
|
|
16329
16333
|
format: string;
|
|
@@ -22819,6 +22819,10 @@ export default {
|
|
|
22819
22819
|
format: 'date-time',
|
|
22820
22820
|
type: 'string',
|
|
22821
22821
|
},
|
|
22822
|
+
customer_key: {
|
|
22823
|
+
description: 'Customer key associated with the space.',
|
|
22824
|
+
type: 'string',
|
|
22825
|
+
},
|
|
22822
22826
|
device_count: {
|
|
22823
22827
|
description: 'Number of devices in the space.',
|
|
22824
22828
|
format: 'float',
|
|
@@ -67348,7 +67352,7 @@ export default {
|
|
|
67348
67352
|
in: 'query',
|
|
67349
67353
|
name: 'search',
|
|
67350
67354
|
schema: {
|
|
67351
|
-
description: 'String for which to search. Filters returned spaces to include all records that satisfy a partial match using `name`.',
|
|
67355
|
+
description: 'String for which to search. Filters returned spaces to include all records that satisfy a partial match using `name`, `space_key`, or `customer_key`.',
|
|
67352
67356
|
minLength: 1,
|
|
67353
67357
|
type: 'string',
|
|
67354
67358
|
},
|
|
@@ -67461,7 +67465,7 @@ export default {
|
|
|
67461
67465
|
type: 'string',
|
|
67462
67466
|
},
|
|
67463
67467
|
search: {
|
|
67464
|
-
description: 'String for which to search. Filters returned spaces to include all records that satisfy a partial match using `name`.',
|
|
67468
|
+
description: 'String for which to search. Filters returned spaces to include all records that satisfy a partial match using `name`, `space_key`, or `customer_key`.',
|
|
67465
67469
|
minLength: 1,
|
|
67466
67470
|
type: 'string',
|
|
67467
67471
|
},
|