@seamapi/types 1.931.0 → 1.933.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 +53 -39
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +470 -432
- package/dist/index.cjs +53 -39
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/devices/capability-properties/access-code.d.ts +38 -38
- package/lib/seam/connect/models/devices/capability-properties/access-code.js +11 -13
- package/lib/seam/connect/models/devices/capability-properties/access-code.js.map +1 -1
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +28 -28
- package/lib/seam/connect/models/devices/device-metadata.d.ts +16 -16
- package/lib/seam/connect/models/devices/device.d.ts +52 -52
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +40 -40
- package/lib/seam/connect/models/events/devices.d.ts +12 -0
- package/lib/seam/connect/models/events/devices.js +6 -0
- package/lib/seam/connect/models/events/devices.js.map +1 -1
- package/lib/seam/connect/models/events/seam-event.d.ts +6 -0
- package/lib/seam/connect/openapi.js +36 -28
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +372 -340
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/capability-properties/access-code.ts +11 -13
- package/src/lib/seam/connect/models/events/devices.ts +6 -0
- package/src/lib/seam/connect/openapi.ts +38 -28
- package/src/lib/seam/connect/route-types.ts +372 -340
|
@@ -46,16 +46,16 @@ export declare const time_frame_option: z.ZodObject<{
|
|
|
46
46
|
matching_start_end_time: z.ZodOptional<z.ZodLiteral<true>>;
|
|
47
47
|
time_pairs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
48
48
|
display_name: z.ZodString;
|
|
49
|
-
|
|
50
|
-
|
|
49
|
+
start_time: z.ZodString;
|
|
50
|
+
end_time: z.ZodString;
|
|
51
51
|
}, "strip", z.ZodTypeAny, {
|
|
52
52
|
display_name: string;
|
|
53
|
-
|
|
54
|
-
|
|
53
|
+
start_time: string;
|
|
54
|
+
end_time: string;
|
|
55
55
|
}, {
|
|
56
56
|
display_name: string;
|
|
57
|
-
|
|
58
|
-
|
|
57
|
+
start_time: string;
|
|
58
|
+
end_time: string;
|
|
59
59
|
}>, "many">>;
|
|
60
60
|
start_date_recurrence_rule: z.ZodOptional<z.ZodString>;
|
|
61
61
|
end_date_recurrence_rule: z.ZodOptional<z.ZodString>;
|
|
@@ -67,8 +67,8 @@ export declare const time_frame_option: z.ZodObject<{
|
|
|
67
67
|
matching_start_end_time?: true | undefined;
|
|
68
68
|
time_pairs?: {
|
|
69
69
|
display_name: string;
|
|
70
|
-
|
|
71
|
-
|
|
70
|
+
start_time: string;
|
|
71
|
+
end_time: string;
|
|
72
72
|
}[] | undefined;
|
|
73
73
|
start_date_recurrence_rule?: string | undefined;
|
|
74
74
|
end_date_recurrence_rule?: string | undefined;
|
|
@@ -80,8 +80,8 @@ export declare const time_frame_option: z.ZodObject<{
|
|
|
80
80
|
matching_start_end_time?: true | undefined;
|
|
81
81
|
time_pairs?: {
|
|
82
82
|
display_name: string;
|
|
83
|
-
|
|
84
|
-
|
|
83
|
+
start_time: string;
|
|
84
|
+
end_time: string;
|
|
85
85
|
}[] | undefined;
|
|
86
86
|
start_date_recurrence_rule?: string | undefined;
|
|
87
87
|
end_date_recurrence_rule?: string | undefined;
|
|
@@ -117,16 +117,16 @@ export declare const access_code_capability_properties: z.ZodObject<{
|
|
|
117
117
|
matching_start_end_time: z.ZodOptional<z.ZodLiteral<true>>;
|
|
118
118
|
time_pairs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
119
119
|
display_name: z.ZodString;
|
|
120
|
-
|
|
121
|
-
|
|
120
|
+
start_time: z.ZodString;
|
|
121
|
+
end_time: z.ZodString;
|
|
122
122
|
}, "strip", z.ZodTypeAny, {
|
|
123
123
|
display_name: string;
|
|
124
|
-
|
|
125
|
-
|
|
124
|
+
start_time: string;
|
|
125
|
+
end_time: string;
|
|
126
126
|
}, {
|
|
127
127
|
display_name: string;
|
|
128
|
-
|
|
129
|
-
|
|
128
|
+
start_time: string;
|
|
129
|
+
end_time: string;
|
|
130
130
|
}>, "many">>;
|
|
131
131
|
start_date_recurrence_rule: z.ZodOptional<z.ZodString>;
|
|
132
132
|
end_date_recurrence_rule: z.ZodOptional<z.ZodString>;
|
|
@@ -138,8 +138,8 @@ export declare const access_code_capability_properties: z.ZodObject<{
|
|
|
138
138
|
matching_start_end_time?: true | undefined;
|
|
139
139
|
time_pairs?: {
|
|
140
140
|
display_name: string;
|
|
141
|
-
|
|
142
|
-
|
|
141
|
+
start_time: string;
|
|
142
|
+
end_time: string;
|
|
143
143
|
}[] | undefined;
|
|
144
144
|
start_date_recurrence_rule?: string | undefined;
|
|
145
145
|
end_date_recurrence_rule?: string | undefined;
|
|
@@ -151,8 +151,8 @@ export declare const access_code_capability_properties: z.ZodObject<{
|
|
|
151
151
|
matching_start_end_time?: true | undefined;
|
|
152
152
|
time_pairs?: {
|
|
153
153
|
display_name: string;
|
|
154
|
-
|
|
155
|
-
|
|
154
|
+
start_time: string;
|
|
155
|
+
end_time: string;
|
|
156
156
|
}[] | undefined;
|
|
157
157
|
start_date_recurrence_rule?: string | undefined;
|
|
158
158
|
end_date_recurrence_rule?: string | undefined;
|
|
@@ -165,16 +165,16 @@ export declare const access_code_capability_properties: z.ZodObject<{
|
|
|
165
165
|
matching_start_end_time: z.ZodOptional<z.ZodLiteral<true>>;
|
|
166
166
|
time_pairs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
167
167
|
display_name: z.ZodString;
|
|
168
|
-
|
|
169
|
-
|
|
168
|
+
start_time: z.ZodString;
|
|
169
|
+
end_time: z.ZodString;
|
|
170
170
|
}, "strip", z.ZodTypeAny, {
|
|
171
171
|
display_name: string;
|
|
172
|
-
|
|
173
|
-
|
|
172
|
+
start_time: string;
|
|
173
|
+
end_time: string;
|
|
174
174
|
}, {
|
|
175
175
|
display_name: string;
|
|
176
|
-
|
|
177
|
-
|
|
176
|
+
start_time: string;
|
|
177
|
+
end_time: string;
|
|
178
178
|
}>, "many">>;
|
|
179
179
|
start_date_recurrence_rule: z.ZodOptional<z.ZodString>;
|
|
180
180
|
end_date_recurrence_rule: z.ZodOptional<z.ZodString>;
|
|
@@ -186,8 +186,8 @@ export declare const access_code_capability_properties: z.ZodObject<{
|
|
|
186
186
|
matching_start_end_time?: true | undefined;
|
|
187
187
|
time_pairs?: {
|
|
188
188
|
display_name: string;
|
|
189
|
-
|
|
190
|
-
|
|
189
|
+
start_time: string;
|
|
190
|
+
end_time: string;
|
|
191
191
|
}[] | undefined;
|
|
192
192
|
start_date_recurrence_rule?: string | undefined;
|
|
193
193
|
end_date_recurrence_rule?: string | undefined;
|
|
@@ -199,8 +199,8 @@ export declare const access_code_capability_properties: z.ZodObject<{
|
|
|
199
199
|
matching_start_end_time?: true | undefined;
|
|
200
200
|
time_pairs?: {
|
|
201
201
|
display_name: string;
|
|
202
|
-
|
|
203
|
-
|
|
202
|
+
start_time: string;
|
|
203
|
+
end_time: string;
|
|
204
204
|
}[] | undefined;
|
|
205
205
|
start_date_recurrence_rule?: string | undefined;
|
|
206
206
|
end_date_recurrence_rule?: string | undefined;
|
|
@@ -226,8 +226,8 @@ export declare const access_code_capability_properties: z.ZodObject<{
|
|
|
226
226
|
matching_start_end_time?: true | undefined;
|
|
227
227
|
time_pairs?: {
|
|
228
228
|
display_name: string;
|
|
229
|
-
|
|
230
|
-
|
|
229
|
+
start_time: string;
|
|
230
|
+
end_time: string;
|
|
231
231
|
}[] | undefined;
|
|
232
232
|
start_date_recurrence_rule?: string | undefined;
|
|
233
233
|
end_date_recurrence_rule?: string | undefined;
|
|
@@ -240,8 +240,8 @@ export declare const access_code_capability_properties: z.ZodObject<{
|
|
|
240
240
|
matching_start_end_time?: true | undefined;
|
|
241
241
|
time_pairs?: {
|
|
242
242
|
display_name: string;
|
|
243
|
-
|
|
244
|
-
|
|
243
|
+
start_time: string;
|
|
244
|
+
end_time: string;
|
|
245
245
|
}[] | undefined;
|
|
246
246
|
start_date_recurrence_rule?: string | undefined;
|
|
247
247
|
end_date_recurrence_rule?: string | undefined;
|
|
@@ -267,8 +267,8 @@ export declare const access_code_capability_properties: z.ZodObject<{
|
|
|
267
267
|
matching_start_end_time?: true | undefined;
|
|
268
268
|
time_pairs?: {
|
|
269
269
|
display_name: string;
|
|
270
|
-
|
|
271
|
-
|
|
270
|
+
start_time: string;
|
|
271
|
+
end_time: string;
|
|
272
272
|
}[] | undefined;
|
|
273
273
|
start_date_recurrence_rule?: string | undefined;
|
|
274
274
|
end_date_recurrence_rule?: string | undefined;
|
|
@@ -281,8 +281,8 @@ export declare const access_code_capability_properties: z.ZodObject<{
|
|
|
281
281
|
matching_start_end_time?: true | undefined;
|
|
282
282
|
time_pairs?: {
|
|
283
283
|
display_name: string;
|
|
284
|
-
|
|
285
|
-
|
|
284
|
+
start_time: string;
|
|
285
|
+
end_time: string;
|
|
286
286
|
}[] | undefined;
|
|
287
287
|
start_date_recurrence_rule?: string | undefined;
|
|
288
288
|
end_date_recurrence_rule?: string | undefined;
|
|
@@ -37,22 +37,20 @@ export const access_code_constraint = z
|
|
|
37
37
|
.describe(`Access code constraint.`);
|
|
38
38
|
const time_frame_option_time_pair = z
|
|
39
39
|
.object({
|
|
40
|
-
display_name: z
|
|
41
|
-
|
|
42
|
-
.describe('Label for the check-in/check-out time pairing.'),
|
|
43
|
-
check_in_time: z
|
|
40
|
+
display_name: z.string().describe('Label for the start/end time pairing.'),
|
|
41
|
+
start_time: z
|
|
44
42
|
.string()
|
|
45
|
-
.describe("
|
|
46
|
-
|
|
43
|
+
.describe("Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`."),
|
|
44
|
+
end_time: z
|
|
47
45
|
.string()
|
|
48
|
-
.describe("
|
|
46
|
+
.describe("End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date."),
|
|
49
47
|
})
|
|
50
|
-
.describe('Fixed
|
|
48
|
+
.describe('Fixed start/end time pairing. The caller picks one whole pairing; the two times cannot be mixed across pairs.');
|
|
51
49
|
export const time_frame_option = z
|
|
52
50
|
.object({
|
|
53
51
|
display_name: z
|
|
54
52
|
.string()
|
|
55
|
-
.describe('Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed
|
|
53
|
+
.describe('Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`).'),
|
|
56
54
|
min_duration: z
|
|
57
55
|
.string()
|
|
58
56
|
.optional()
|
|
@@ -64,19 +62,19 @@ export const time_frame_option = z
|
|
|
64
62
|
matching_start_end_time: z
|
|
65
63
|
.literal(true)
|
|
66
64
|
.optional()
|
|
67
|
-
.describe('When `true`, the
|
|
65
|
+
.describe('When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`.'),
|
|
68
66
|
time_pairs: z
|
|
69
67
|
.array(time_frame_option_time_pair)
|
|
70
68
|
.optional()
|
|
71
|
-
.describe('Fixed
|
|
69
|
+
.describe('Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`.'),
|
|
72
70
|
start_date_recurrence_rule: z
|
|
73
71
|
.string()
|
|
74
72
|
.optional()
|
|
75
|
-
.describe('iCalendar recurrence rule (RRULE) that the
|
|
73
|
+
.describe('iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules.'),
|
|
76
74
|
end_date_recurrence_rule: z
|
|
77
75
|
.string()
|
|
78
76
|
.optional()
|
|
79
|
-
.describe('iCalendar recurrence rule (RRULE) that the
|
|
77
|
+
.describe('iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules.'),
|
|
80
78
|
time_zone: z
|
|
81
79
|
.string()
|
|
82
80
|
.optional()
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"access-code.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/models/devices/capability-properties/access-code.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,2BAA2B,GAAG,CAAC;KACzC,MAAM,CAAC;IACN,eAAe,EAAE,CAAC;SACf,IAAI,CAAC;QACJ,UAAU,EAAE,OAAO;QACnB,sBAAsB,EAAE,OAAO;QAC/B,4BAA4B,EAAE,QAAQ;QACtC,yBAAyB,EAAE,aAAa;QACxC,+BAA+B,EAAE,QAAQ;QACzC,sBAAsB,EAAE,UAAU;QAClC,qCAAqC,EAAE,kBAAkB;QACzD,8BAA8B,EAAE,QAAQ;QACxC,oBAAoB,EAAE,SAAS;QAC/B,qBAAqB,EAAE,0CAA0C;QACjE,0BAA0B,EAAE,UAAU;QACtC,oBAAoB,EAAE,WAAW;KAClC,CAAC;SACD,QAAQ,CAAC,wCAAwC,CAAC;CACtD,CAAC;KACD,QAAQ,CAAC,mCAAmC,CAAC,CAAA;AAEhD,MAAM,CAAC,MAAM,2BAA2B,GAAG,CAAC;KACzC,MAAM,CAAC;IACN,eAAe,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,aAAa,EAAE,qBAAqB,CAAC,CAAC,EAAE,gBAAgB;IACjF,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,kDAAkD,CAAC;IAC/D,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,kDAAkD,CAAC;CAChE,CAAC;KACD,QAAQ,CAAC,mCAAmC,CAAC,CAAA;AAEhD,MAAM,CAAC,MAAM,sBAAsB,GAAG,CAAC;KACpC,KAAK,CAAC,CAAC,2BAA2B,EAAE,2BAA2B,CAAC,CAAC;KACjE,QAAQ,CAAC,yBAAyB,CAAC,CAAA;AAItC,MAAM,2BAA2B,GAAG,CAAC;KAClC,MAAM,CAAC;IACN,YAAY,EAAE,CAAC
|
|
1
|
+
{"version":3,"file":"access-code.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/models/devices/capability-properties/access-code.ts"],"names":[],"mappings":"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"}
|
|
@@ -32,16 +32,16 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
32
32
|
matching_start_end_time: z.ZodOptional<z.ZodLiteral<true>>;
|
|
33
33
|
time_pairs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
34
34
|
display_name: z.ZodString;
|
|
35
|
-
|
|
36
|
-
|
|
35
|
+
start_time: z.ZodString;
|
|
36
|
+
end_time: z.ZodString;
|
|
37
37
|
}, "strip", z.ZodTypeAny, {
|
|
38
38
|
display_name: string;
|
|
39
|
-
|
|
40
|
-
|
|
39
|
+
start_time: string;
|
|
40
|
+
end_time: string;
|
|
41
41
|
}, {
|
|
42
42
|
display_name: string;
|
|
43
|
-
|
|
44
|
-
|
|
43
|
+
start_time: string;
|
|
44
|
+
end_time: string;
|
|
45
45
|
}>, "many">>;
|
|
46
46
|
start_date_recurrence_rule: z.ZodOptional<z.ZodString>;
|
|
47
47
|
end_date_recurrence_rule: z.ZodOptional<z.ZodString>;
|
|
@@ -53,8 +53,8 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
53
53
|
matching_start_end_time?: true | undefined;
|
|
54
54
|
time_pairs?: {
|
|
55
55
|
display_name: string;
|
|
56
|
-
|
|
57
|
-
|
|
56
|
+
start_time: string;
|
|
57
|
+
end_time: string;
|
|
58
58
|
}[] | undefined;
|
|
59
59
|
start_date_recurrence_rule?: string | undefined;
|
|
60
60
|
end_date_recurrence_rule?: string | undefined;
|
|
@@ -66,8 +66,8 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
66
66
|
matching_start_end_time?: true | undefined;
|
|
67
67
|
time_pairs?: {
|
|
68
68
|
display_name: string;
|
|
69
|
-
|
|
70
|
-
|
|
69
|
+
start_time: string;
|
|
70
|
+
end_time: string;
|
|
71
71
|
}[] | undefined;
|
|
72
72
|
start_date_recurrence_rule?: string | undefined;
|
|
73
73
|
end_date_recurrence_rule?: string | undefined;
|
|
@@ -80,16 +80,16 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
80
80
|
matching_start_end_time: z.ZodOptional<z.ZodLiteral<true>>;
|
|
81
81
|
time_pairs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
82
82
|
display_name: z.ZodString;
|
|
83
|
-
|
|
84
|
-
|
|
83
|
+
start_time: z.ZodString;
|
|
84
|
+
end_time: z.ZodString;
|
|
85
85
|
}, "strip", z.ZodTypeAny, {
|
|
86
86
|
display_name: string;
|
|
87
|
-
|
|
88
|
-
|
|
87
|
+
start_time: string;
|
|
88
|
+
end_time: string;
|
|
89
89
|
}, {
|
|
90
90
|
display_name: string;
|
|
91
|
-
|
|
92
|
-
|
|
91
|
+
start_time: string;
|
|
92
|
+
end_time: string;
|
|
93
93
|
}>, "many">>;
|
|
94
94
|
start_date_recurrence_rule: z.ZodOptional<z.ZodString>;
|
|
95
95
|
end_date_recurrence_rule: z.ZodOptional<z.ZodString>;
|
|
@@ -101,8 +101,8 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
101
101
|
matching_start_end_time?: true | undefined;
|
|
102
102
|
time_pairs?: {
|
|
103
103
|
display_name: string;
|
|
104
|
-
|
|
105
|
-
|
|
104
|
+
start_time: string;
|
|
105
|
+
end_time: string;
|
|
106
106
|
}[] | undefined;
|
|
107
107
|
start_date_recurrence_rule?: string | undefined;
|
|
108
108
|
end_date_recurrence_rule?: string | undefined;
|
|
@@ -114,8 +114,8 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
114
114
|
matching_start_end_time?: true | undefined;
|
|
115
115
|
time_pairs?: {
|
|
116
116
|
display_name: string;
|
|
117
|
-
|
|
118
|
-
|
|
117
|
+
start_time: string;
|
|
118
|
+
end_time: string;
|
|
119
119
|
}[] | undefined;
|
|
120
120
|
start_date_recurrence_rule?: string | undefined;
|
|
121
121
|
end_date_recurrence_rule?: string | undefined;
|
|
@@ -153,8 +153,8 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
153
153
|
matching_start_end_time?: true | undefined;
|
|
154
154
|
time_pairs?: {
|
|
155
155
|
display_name: string;
|
|
156
|
-
|
|
157
|
-
|
|
156
|
+
start_time: string;
|
|
157
|
+
end_time: string;
|
|
158
158
|
}[] | undefined;
|
|
159
159
|
start_date_recurrence_rule?: string | undefined;
|
|
160
160
|
end_date_recurrence_rule?: string | undefined;
|
|
@@ -167,8 +167,8 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
167
167
|
matching_start_end_time?: true | undefined;
|
|
168
168
|
time_pairs?: {
|
|
169
169
|
display_name: string;
|
|
170
|
-
|
|
171
|
-
|
|
170
|
+
start_time: string;
|
|
171
|
+
end_time: string;
|
|
172
172
|
}[] | undefined;
|
|
173
173
|
start_date_recurrence_rule?: string | undefined;
|
|
174
174
|
end_date_recurrence_rule?: string | undefined;
|
|
@@ -201,8 +201,8 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
201
201
|
matching_start_end_time?: true | undefined;
|
|
202
202
|
time_pairs?: {
|
|
203
203
|
display_name: string;
|
|
204
|
-
|
|
205
|
-
|
|
204
|
+
start_time: string;
|
|
205
|
+
end_time: string;
|
|
206
206
|
}[] | undefined;
|
|
207
207
|
start_date_recurrence_rule?: string | undefined;
|
|
208
208
|
end_date_recurrence_rule?: string | undefined;
|
|
@@ -215,8 +215,8 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
215
215
|
matching_start_end_time?: true | undefined;
|
|
216
216
|
time_pairs?: {
|
|
217
217
|
display_name: string;
|
|
218
|
-
|
|
219
|
-
|
|
218
|
+
start_time: string;
|
|
219
|
+
end_time: string;
|
|
220
220
|
}[] | undefined;
|
|
221
221
|
start_date_recurrence_rule?: string | undefined;
|
|
222
222
|
end_date_recurrence_rule?: string | undefined;
|
|
@@ -11,10 +11,10 @@ export declare const dormakaba_oracode_time_slot: z.ZodObject<{
|
|
|
11
11
|
dormakaba_oracode_user_level_prefix: z.ZodNumber;
|
|
12
12
|
dormakaba_oracode_user_level_id: z.ZodString;
|
|
13
13
|
}, "strip", z.ZodTypeAny, {
|
|
14
|
-
check_in_time: string;
|
|
15
|
-
check_out_time: string;
|
|
16
14
|
name: string;
|
|
17
15
|
prefix: number;
|
|
16
|
+
check_in_time: string;
|
|
17
|
+
check_out_time: string;
|
|
18
18
|
is_24_hour: boolean;
|
|
19
19
|
is_biweekly_mode: boolean;
|
|
20
20
|
is_one_shot: boolean;
|
|
@@ -22,10 +22,10 @@ export declare const dormakaba_oracode_time_slot: z.ZodObject<{
|
|
|
22
22
|
dormakaba_oracode_user_level_prefix: number;
|
|
23
23
|
dormakaba_oracode_user_level_id: string;
|
|
24
24
|
}, {
|
|
25
|
-
check_in_time: string;
|
|
26
|
-
check_out_time: string;
|
|
27
25
|
name: string;
|
|
28
26
|
prefix: number;
|
|
27
|
+
check_in_time: string;
|
|
28
|
+
check_out_time: string;
|
|
29
29
|
is_24_hour: boolean;
|
|
30
30
|
is_biweekly_mode: boolean;
|
|
31
31
|
is_one_shot: boolean;
|
|
@@ -624,10 +624,10 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
624
624
|
dormakaba_oracode_user_level_prefix: z.ZodNumber;
|
|
625
625
|
dormakaba_oracode_user_level_id: z.ZodString;
|
|
626
626
|
}, "strip", z.ZodTypeAny, {
|
|
627
|
-
check_in_time: string;
|
|
628
|
-
check_out_time: string;
|
|
629
627
|
name: string;
|
|
630
628
|
prefix: number;
|
|
629
|
+
check_in_time: string;
|
|
630
|
+
check_out_time: string;
|
|
631
631
|
is_24_hour: boolean;
|
|
632
632
|
is_biweekly_mode: boolean;
|
|
633
633
|
is_one_shot: boolean;
|
|
@@ -635,10 +635,10 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
635
635
|
dormakaba_oracode_user_level_prefix: number;
|
|
636
636
|
dormakaba_oracode_user_level_id: string;
|
|
637
637
|
}, {
|
|
638
|
-
check_in_time: string;
|
|
639
|
-
check_out_time: string;
|
|
640
638
|
name: string;
|
|
641
639
|
prefix: number;
|
|
640
|
+
check_in_time: string;
|
|
641
|
+
check_out_time: string;
|
|
642
642
|
is_24_hour: boolean;
|
|
643
643
|
is_biweekly_mode: boolean;
|
|
644
644
|
is_one_shot: boolean;
|
|
@@ -655,10 +655,10 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
655
655
|
door_id?: number | undefined;
|
|
656
656
|
iana_timezone?: string | undefined;
|
|
657
657
|
predefined_time_slots?: {
|
|
658
|
-
check_in_time: string;
|
|
659
|
-
check_out_time: string;
|
|
660
658
|
name: string;
|
|
661
659
|
prefix: number;
|
|
660
|
+
check_in_time: string;
|
|
661
|
+
check_out_time: string;
|
|
662
662
|
is_24_hour: boolean;
|
|
663
663
|
is_biweekly_mode: boolean;
|
|
664
664
|
is_one_shot: boolean;
|
|
@@ -675,10 +675,10 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
675
675
|
door_id?: number | undefined;
|
|
676
676
|
iana_timezone?: string | undefined;
|
|
677
677
|
predefined_time_slots?: {
|
|
678
|
-
check_in_time: string;
|
|
679
|
-
check_out_time: string;
|
|
680
678
|
name: string;
|
|
681
679
|
prefix: number;
|
|
680
|
+
check_in_time: string;
|
|
681
|
+
check_out_time: string;
|
|
682
682
|
is_24_hour: boolean;
|
|
683
683
|
is_biweekly_mode: boolean;
|
|
684
684
|
is_one_shot: boolean;
|
|
@@ -1123,10 +1123,10 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
1123
1123
|
door_id?: number | undefined;
|
|
1124
1124
|
iana_timezone?: string | undefined;
|
|
1125
1125
|
predefined_time_slots?: {
|
|
1126
|
-
check_in_time: string;
|
|
1127
|
-
check_out_time: string;
|
|
1128
1126
|
name: string;
|
|
1129
1127
|
prefix: number;
|
|
1128
|
+
check_in_time: string;
|
|
1129
|
+
check_out_time: string;
|
|
1130
1130
|
is_24_hour: boolean;
|
|
1131
1131
|
is_biweekly_mode: boolean;
|
|
1132
1132
|
is_one_shot: boolean;
|
|
@@ -1410,10 +1410,10 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
1410
1410
|
door_id?: number | undefined;
|
|
1411
1411
|
iana_timezone?: string | undefined;
|
|
1412
1412
|
predefined_time_slots?: {
|
|
1413
|
-
check_in_time: string;
|
|
1414
|
-
check_out_time: string;
|
|
1415
1413
|
name: string;
|
|
1416
1414
|
prefix: number;
|
|
1415
|
+
check_in_time: string;
|
|
1416
|
+
check_out_time: string;
|
|
1417
1417
|
is_24_hour: boolean;
|
|
1418
1418
|
is_biweekly_mode: boolean;
|
|
1419
1419
|
is_one_shot: boolean;
|