@seamapi/types 1.156.0 → 1.157.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 +9 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +9 -9
- package/lib/seam/connect/models/acs/entrance.d.ts +16 -16
- package/lib/seam/connect/models/acs/entrance.js +2 -2
- package/lib/seam/connect/models/acs/entrance.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +3 -3
- package/lib/seam/connect/openapi.js +8 -3
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +6 -6
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/entrance.ts +2 -2
- package/src/lib/seam/connect/openapi.ts +8 -3
- package/src/lib/seam/connect/route-types.ts +6 -6
package/dist/connect.d.cts
CHANGED
|
@@ -421,13 +421,13 @@ declare const _default: {
|
|
|
421
421
|
accessibility_type: {
|
|
422
422
|
type: string;
|
|
423
423
|
};
|
|
424
|
-
|
|
424
|
+
door_name: {
|
|
425
425
|
type: string;
|
|
426
426
|
};
|
|
427
|
-
|
|
427
|
+
door_type: {
|
|
428
428
|
type: string;
|
|
429
429
|
};
|
|
430
|
-
|
|
430
|
+
is_connected: {
|
|
431
431
|
type: string;
|
|
432
432
|
};
|
|
433
433
|
};
|
|
@@ -16843,8 +16843,8 @@ interface Routes {
|
|
|
16843
16843
|
created_at: string;
|
|
16844
16844
|
latch_metadata: {
|
|
16845
16845
|
accessibility_type: string;
|
|
16846
|
-
|
|
16847
|
-
|
|
16846
|
+
door_name: string;
|
|
16847
|
+
door_type: string;
|
|
16848
16848
|
is_connected: boolean;
|
|
16849
16849
|
} | null;
|
|
16850
16850
|
visionline_metadata: {
|
|
@@ -16888,8 +16888,8 @@ interface Routes {
|
|
|
16888
16888
|
created_at: string;
|
|
16889
16889
|
latch_metadata: {
|
|
16890
16890
|
accessibility_type: string;
|
|
16891
|
-
|
|
16892
|
-
|
|
16891
|
+
door_name: string;
|
|
16892
|
+
door_type: string;
|
|
16893
16893
|
is_connected: boolean;
|
|
16894
16894
|
} | null;
|
|
16895
16895
|
visionline_metadata: {
|
|
@@ -17196,8 +17196,8 @@ interface Routes {
|
|
|
17196
17196
|
created_at: string;
|
|
17197
17197
|
latch_metadata: {
|
|
17198
17198
|
accessibility_type: string;
|
|
17199
|
-
|
|
17200
|
-
|
|
17199
|
+
door_name: string;
|
|
17200
|
+
door_type: string;
|
|
17201
17201
|
is_connected: boolean;
|
|
17202
17202
|
} | null;
|
|
17203
17203
|
visionline_metadata: {
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export declare const acs_entrance_latch_metadata: z.ZodObject<{
|
|
3
3
|
accessibility_type: z.ZodString;
|
|
4
|
-
|
|
5
|
-
|
|
4
|
+
door_name: z.ZodString;
|
|
5
|
+
door_type: z.ZodString;
|
|
6
6
|
is_connected: z.ZodBoolean;
|
|
7
7
|
}, "strip", z.ZodTypeAny, {
|
|
8
|
-
type: string;
|
|
9
|
-
name: string;
|
|
10
8
|
accessibility_type: string;
|
|
9
|
+
door_name: string;
|
|
10
|
+
door_type: string;
|
|
11
11
|
is_connected: boolean;
|
|
12
12
|
}, {
|
|
13
|
-
type: string;
|
|
14
|
-
name: string;
|
|
15
13
|
accessibility_type: string;
|
|
14
|
+
door_name: string;
|
|
15
|
+
door_type: string;
|
|
16
16
|
is_connected: boolean;
|
|
17
17
|
}>;
|
|
18
18
|
export declare const acs_entrance: z.ZodObject<{
|
|
@@ -22,18 +22,18 @@ export declare const acs_entrance: z.ZodObject<{
|
|
|
22
22
|
created_at: z.ZodString;
|
|
23
23
|
latch_metadata: z.ZodNullable<z.ZodObject<{
|
|
24
24
|
accessibility_type: z.ZodString;
|
|
25
|
-
|
|
26
|
-
|
|
25
|
+
door_name: z.ZodString;
|
|
26
|
+
door_type: z.ZodString;
|
|
27
27
|
is_connected: z.ZodBoolean;
|
|
28
28
|
}, "strip", z.ZodTypeAny, {
|
|
29
|
-
type: string;
|
|
30
|
-
name: string;
|
|
31
29
|
accessibility_type: string;
|
|
30
|
+
door_name: string;
|
|
31
|
+
door_type: string;
|
|
32
32
|
is_connected: boolean;
|
|
33
33
|
}, {
|
|
34
|
-
type: string;
|
|
35
|
-
name: string;
|
|
36
34
|
accessibility_type: string;
|
|
35
|
+
door_name: string;
|
|
36
|
+
door_type: string;
|
|
37
37
|
is_connected: boolean;
|
|
38
38
|
}>>;
|
|
39
39
|
visionline_metadata: z.ZodNullable<z.ZodObject<{
|
|
@@ -78,9 +78,9 @@ export declare const acs_entrance: z.ZodObject<{
|
|
|
78
78
|
} | null;
|
|
79
79
|
acs_entrance_id: string;
|
|
80
80
|
latch_metadata: {
|
|
81
|
-
type: string;
|
|
82
|
-
name: string;
|
|
83
81
|
accessibility_type: string;
|
|
82
|
+
door_name: string;
|
|
83
|
+
door_type: string;
|
|
84
84
|
is_connected: boolean;
|
|
85
85
|
} | null;
|
|
86
86
|
}, {
|
|
@@ -97,9 +97,9 @@ export declare const acs_entrance: z.ZodObject<{
|
|
|
97
97
|
} | null;
|
|
98
98
|
acs_entrance_id: string;
|
|
99
99
|
latch_metadata: {
|
|
100
|
-
type: string;
|
|
101
|
-
name: string;
|
|
102
100
|
accessibility_type: string;
|
|
101
|
+
door_name: string;
|
|
102
|
+
door_type: string;
|
|
103
103
|
is_connected: boolean;
|
|
104
104
|
} | null;
|
|
105
105
|
}>;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export const acs_entrance_latch_metadata = z.object({
|
|
3
3
|
accessibility_type: z.string(),
|
|
4
|
-
|
|
5
|
-
|
|
4
|
+
door_name: z.string(),
|
|
5
|
+
door_type: z.string(),
|
|
6
6
|
is_connected: z.boolean(),
|
|
7
7
|
});
|
|
8
8
|
export const acs_entrance = z.object({
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"entrance.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/entrance.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,2BAA2B,GAAG,CAAC,CAAC,MAAM,CAAC;IAClD,kBAAkB,EAAE,CAAC,CAAC,MAAM,EAAE;IAC9B,
|
|
1
|
+
{"version":3,"file":"entrance.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/entrance.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,2BAA2B,GAAG,CAAC,CAAC,MAAM,CAAC;IAClD,kBAAkB,EAAE,CAAC,CAAC,MAAM,EAAE;IAC9B,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;IACrB,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;IACrB,YAAY,EAAE,CAAC,CAAC,OAAO,EAAE;CAC1B,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,YAAY,GAAG,CAAC,CAAC,MAAM,CAAC;IACnC,eAAe,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAClC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE;IACxB,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAChC,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,cAAc,EAAE,2BAA2B,CAAC,QAAQ,EAAE;IACtD,mBAAmB,EAAE,CAAC;SACnB,MAAM,CAAC;QACN,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;QACrB,aAAa,EAAE,CAAC,CAAC,IAAI,CAAC;YACpB,UAAU;YACV,OAAO;YACP,iBAAiB;YACjB,QAAQ;YACR,cAAc;SACf,CAAC;QACF,QAAQ,EAAE,CAAC;aACR,KAAK,CACJ,CAAC,CAAC,MAAM,CAAC;YACP,0BAA0B,EAAE,CAAC,CAAC,MAAM,EAAE;YACtC,4BAA4B,EAAE,CAAC,CAAC,IAAI,CAAC;gBACnC,KAAK;gBACL,YAAY;gBACZ,OAAO;aACR,CAAC;SACH,CAAC,CACH;aACA,QAAQ,EAAE;KACd,CAAC;SACD,QAAQ,EAAE;CACd,CAAC,CAAA"}
|
|
@@ -347,13 +347,13 @@ declare const _default: {
|
|
|
347
347
|
accessibility_type: {
|
|
348
348
|
type: string;
|
|
349
349
|
};
|
|
350
|
-
|
|
350
|
+
door_name: {
|
|
351
351
|
type: string;
|
|
352
352
|
};
|
|
353
|
-
|
|
353
|
+
door_type: {
|
|
354
354
|
type: string;
|
|
355
355
|
};
|
|
356
|
-
|
|
356
|
+
is_connected: {
|
|
357
357
|
type: string;
|
|
358
358
|
};
|
|
359
359
|
};
|
|
@@ -296,11 +296,16 @@ export default {
|
|
|
296
296
|
nullable: true,
|
|
297
297
|
properties: {
|
|
298
298
|
accessibility_type: { type: 'string' },
|
|
299
|
+
door_name: { type: 'string' },
|
|
300
|
+
door_type: { type: 'string' },
|
|
299
301
|
is_connected: { type: 'boolean' },
|
|
300
|
-
name: { type: 'string' },
|
|
301
|
-
type: { type: 'string' },
|
|
302
302
|
},
|
|
303
|
-
required: [
|
|
303
|
+
required: [
|
|
304
|
+
'accessibility_type',
|
|
305
|
+
'door_name',
|
|
306
|
+
'door_type',
|
|
307
|
+
'is_connected',
|
|
308
|
+
],
|
|
304
309
|
type: 'object',
|
|
305
310
|
},
|
|
306
311
|
visionline_metadata: {
|