@seamapi/types 1.328.0 → 1.329.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 +236 -3
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +981 -2
- package/lib/seam/connect/models/acs/acs-credential.d.ts +66 -0
- package/lib/seam/connect/models/acs/acs-credential.js +9 -0
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +132 -0
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +58 -0
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +74 -0
- package/lib/seam/connect/models/events/acs/credentials.d.ts +61 -0
- package/lib/seam/connect/models/events/acs/credentials.js +6 -0
- package/lib/seam/connect/models/events/acs/credentials.js.map +1 -1
- package/lib/seam/connect/models/events/acs/index.d.ts +30 -0
- package/lib/seam/connect/models/events/seam-event.d.ts +30 -0
- package/lib/seam/connect/openapi.d.ts +87 -0
- package/lib/seam/connect/openapi.js +220 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +690 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +12 -0
- package/src/lib/seam/connect/models/events/acs/credentials.ts +9 -0
- package/src/lib/seam/connect/openapi.ts +252 -0
- package/src/lib/seam/connect/route-types.ts +786 -0
|
@@ -210,6 +210,19 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
210
210
|
message: string;
|
|
211
211
|
warning_code: "unknown_issue_with_acs_credential";
|
|
212
212
|
created_at: string;
|
|
213
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
214
|
+
created_at: z.ZodString;
|
|
215
|
+
message: z.ZodString;
|
|
216
|
+
}, {
|
|
217
|
+
warning_code: z.ZodLiteral<"needs_to_be_reissued">;
|
|
218
|
+
}>, "strip", z.ZodTypeAny, {
|
|
219
|
+
message: string;
|
|
220
|
+
warning_code: "needs_to_be_reissued";
|
|
221
|
+
created_at: string;
|
|
222
|
+
}, {
|
|
223
|
+
message: string;
|
|
224
|
+
warning_code: "needs_to_be_reissued";
|
|
225
|
+
created_at: string;
|
|
213
226
|
}>]>, "many">;
|
|
214
227
|
is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
|
|
215
228
|
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
@@ -270,6 +283,10 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
270
283
|
message: string;
|
|
271
284
|
warning_code: "unknown_issue_with_acs_credential";
|
|
272
285
|
created_at: string;
|
|
286
|
+
} | {
|
|
287
|
+
message: string;
|
|
288
|
+
warning_code: "needs_to_be_reissued";
|
|
289
|
+
created_at: string;
|
|
273
290
|
})[];
|
|
274
291
|
display_name: string;
|
|
275
292
|
workspace_id: string;
|
|
@@ -328,6 +345,10 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
328
345
|
message: string;
|
|
329
346
|
warning_code: "unknown_issue_with_acs_credential";
|
|
330
347
|
created_at: string;
|
|
348
|
+
} | {
|
|
349
|
+
message: string;
|
|
350
|
+
warning_code: "needs_to_be_reissued";
|
|
351
|
+
created_at: string;
|
|
331
352
|
})[];
|
|
332
353
|
display_name: string;
|
|
333
354
|
workspace_id: string;
|
|
@@ -454,6 +475,19 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
454
475
|
message: string;
|
|
455
476
|
warning_code: "unknown_issue_with_acs_credential";
|
|
456
477
|
created_at: string;
|
|
478
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
479
|
+
created_at: z.ZodString;
|
|
480
|
+
message: z.ZodString;
|
|
481
|
+
}, {
|
|
482
|
+
warning_code: z.ZodLiteral<"needs_to_be_reissued">;
|
|
483
|
+
}>, "strip", z.ZodTypeAny, {
|
|
484
|
+
message: string;
|
|
485
|
+
warning_code: "needs_to_be_reissued";
|
|
486
|
+
created_at: string;
|
|
487
|
+
}, {
|
|
488
|
+
message: string;
|
|
489
|
+
warning_code: "needs_to_be_reissued";
|
|
490
|
+
created_at: string;
|
|
457
491
|
}>]>, "many">;
|
|
458
492
|
is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
|
|
459
493
|
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
@@ -514,6 +548,10 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
514
548
|
message: string;
|
|
515
549
|
warning_code: "unknown_issue_with_acs_credential";
|
|
516
550
|
created_at: string;
|
|
551
|
+
} | {
|
|
552
|
+
message: string;
|
|
553
|
+
warning_code: "needs_to_be_reissued";
|
|
554
|
+
created_at: string;
|
|
517
555
|
})[];
|
|
518
556
|
display_name: string;
|
|
519
557
|
workspace_id: string;
|
|
@@ -572,6 +610,10 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
572
610
|
message: string;
|
|
573
611
|
warning_code: "unknown_issue_with_acs_credential";
|
|
574
612
|
created_at: string;
|
|
613
|
+
} | {
|
|
614
|
+
message: string;
|
|
615
|
+
warning_code: "needs_to_be_reissued";
|
|
616
|
+
created_at: string;
|
|
575
617
|
})[];
|
|
576
618
|
display_name: string;
|
|
577
619
|
workspace_id: string;
|
|
@@ -667,6 +709,10 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
667
709
|
message: string;
|
|
668
710
|
warning_code: "unknown_issue_with_acs_credential";
|
|
669
711
|
created_at: string;
|
|
712
|
+
} | {
|
|
713
|
+
message: string;
|
|
714
|
+
warning_code: "needs_to_be_reissued";
|
|
715
|
+
created_at: string;
|
|
670
716
|
})[];
|
|
671
717
|
display_name: string;
|
|
672
718
|
workspace_id: string;
|
|
@@ -725,6 +771,10 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
725
771
|
message: string;
|
|
726
772
|
warning_code: "unknown_issue_with_acs_credential";
|
|
727
773
|
created_at: string;
|
|
774
|
+
} | {
|
|
775
|
+
message: string;
|
|
776
|
+
warning_code: "needs_to_be_reissued";
|
|
777
|
+
created_at: string;
|
|
728
778
|
})[];
|
|
729
779
|
display_name: string;
|
|
730
780
|
workspace_id: string;
|
|
@@ -810,6 +860,10 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
810
860
|
message: string;
|
|
811
861
|
warning_code: "unknown_issue_with_acs_credential";
|
|
812
862
|
created_at: string;
|
|
863
|
+
} | {
|
|
864
|
+
message: string;
|
|
865
|
+
warning_code: "needs_to_be_reissued";
|
|
866
|
+
created_at: string;
|
|
813
867
|
})[];
|
|
814
868
|
display_name: string;
|
|
815
869
|
workspace_id: string;
|
|
@@ -868,6 +922,10 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
868
922
|
message: string;
|
|
869
923
|
warning_code: "unknown_issue_with_acs_credential";
|
|
870
924
|
created_at: string;
|
|
925
|
+
} | {
|
|
926
|
+
message: string;
|
|
927
|
+
warning_code: "needs_to_be_reissued";
|
|
928
|
+
created_at: string;
|
|
871
929
|
})[];
|
|
872
930
|
display_name: string;
|
|
873
931
|
workspace_id: string;
|
|
@@ -958,6 +1016,10 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
958
1016
|
message: string;
|
|
959
1017
|
warning_code: "unknown_issue_with_acs_credential";
|
|
960
1018
|
created_at: string;
|
|
1019
|
+
} | {
|
|
1020
|
+
message: string;
|
|
1021
|
+
warning_code: "needs_to_be_reissued";
|
|
1022
|
+
created_at: string;
|
|
961
1023
|
})[];
|
|
962
1024
|
display_name: string;
|
|
963
1025
|
workspace_id: string;
|
|
@@ -1016,6 +1078,10 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1016
1078
|
message: string;
|
|
1017
1079
|
warning_code: "unknown_issue_with_acs_credential";
|
|
1018
1080
|
created_at: string;
|
|
1081
|
+
} | {
|
|
1082
|
+
message: string;
|
|
1083
|
+
warning_code: "needs_to_be_reissued";
|
|
1084
|
+
created_at: string;
|
|
1019
1085
|
})[];
|
|
1020
1086
|
display_name: string;
|
|
1021
1087
|
workspace_id: string;
|
|
@@ -1107,6 +1173,10 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1107
1173
|
message: string;
|
|
1108
1174
|
warning_code: "unknown_issue_with_acs_credential";
|
|
1109
1175
|
created_at: string;
|
|
1176
|
+
} | {
|
|
1177
|
+
message: string;
|
|
1178
|
+
warning_code: "needs_to_be_reissued";
|
|
1179
|
+
created_at: string;
|
|
1110
1180
|
})[];
|
|
1111
1181
|
display_name: string;
|
|
1112
1182
|
workspace_id: string;
|
|
@@ -1165,6 +1235,10 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1165
1235
|
message: string;
|
|
1166
1236
|
warning_code: "unknown_issue_with_acs_credential";
|
|
1167
1237
|
created_at: string;
|
|
1238
|
+
} | {
|
|
1239
|
+
message: string;
|
|
1240
|
+
warning_code: "needs_to_be_reissued";
|
|
1241
|
+
created_at: string;
|
|
1168
1242
|
})[];
|
|
1169
1243
|
display_name: string;
|
|
1170
1244
|
workspace_id: string;
|
|
@@ -62,6 +62,37 @@ export declare const acs_credential_issued: z.ZodObject<z.objectUtil.extendShape
|
|
|
62
62
|
event_type: "acs_credential.issued";
|
|
63
63
|
connected_account_id?: string | undefined;
|
|
64
64
|
}>;
|
|
65
|
+
export declare const acs_credential_reissued: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
66
|
+
event_id: z.ZodString;
|
|
67
|
+
workspace_id: z.ZodString;
|
|
68
|
+
created_at: z.ZodString;
|
|
69
|
+
occurred_at: z.ZodString;
|
|
70
|
+
}, {
|
|
71
|
+
connected_account_id: z.ZodOptional<z.ZodString>;
|
|
72
|
+
acs_system_id: z.ZodString;
|
|
73
|
+
}>, {
|
|
74
|
+
acs_credential_id: z.ZodString;
|
|
75
|
+
}>, {
|
|
76
|
+
event_type: z.ZodLiteral<"acs_credential.reissued">;
|
|
77
|
+
}>, "strip", z.ZodTypeAny, {
|
|
78
|
+
created_at: string;
|
|
79
|
+
workspace_id: string;
|
|
80
|
+
acs_system_id: string;
|
|
81
|
+
acs_credential_id: string;
|
|
82
|
+
event_id: string;
|
|
83
|
+
occurred_at: string;
|
|
84
|
+
event_type: "acs_credential.reissued";
|
|
85
|
+
connected_account_id?: string | undefined;
|
|
86
|
+
}, {
|
|
87
|
+
created_at: string;
|
|
88
|
+
workspace_id: string;
|
|
89
|
+
acs_system_id: string;
|
|
90
|
+
acs_credential_id: string;
|
|
91
|
+
event_id: string;
|
|
92
|
+
occurred_at: string;
|
|
93
|
+
event_type: "acs_credential.reissued";
|
|
94
|
+
connected_account_id?: string | undefined;
|
|
95
|
+
}>;
|
|
65
96
|
export declare const acs_credential_events: readonly [z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
66
97
|
event_id: z.ZodString;
|
|
67
98
|
workspace_id: z.ZodString;
|
|
@@ -122,4 +153,34 @@ export declare const acs_credential_events: readonly [z.ZodObject<z.objectUtil.e
|
|
|
122
153
|
occurred_at: string;
|
|
123
154
|
event_type: "acs_credential.issued";
|
|
124
155
|
connected_account_id?: string | undefined;
|
|
156
|
+
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
157
|
+
event_id: z.ZodString;
|
|
158
|
+
workspace_id: z.ZodString;
|
|
159
|
+
created_at: z.ZodString;
|
|
160
|
+
occurred_at: z.ZodString;
|
|
161
|
+
}, {
|
|
162
|
+
connected_account_id: z.ZodOptional<z.ZodString>;
|
|
163
|
+
acs_system_id: z.ZodString;
|
|
164
|
+
}>, {
|
|
165
|
+
acs_credential_id: z.ZodString;
|
|
166
|
+
}>, {
|
|
167
|
+
event_type: z.ZodLiteral<"acs_credential.reissued">;
|
|
168
|
+
}>, "strip", z.ZodTypeAny, {
|
|
169
|
+
created_at: string;
|
|
170
|
+
workspace_id: string;
|
|
171
|
+
acs_system_id: string;
|
|
172
|
+
acs_credential_id: string;
|
|
173
|
+
event_id: string;
|
|
174
|
+
occurred_at: string;
|
|
175
|
+
event_type: "acs_credential.reissued";
|
|
176
|
+
connected_account_id?: string | undefined;
|
|
177
|
+
}, {
|
|
178
|
+
created_at: string;
|
|
179
|
+
workspace_id: string;
|
|
180
|
+
acs_system_id: string;
|
|
181
|
+
acs_credential_id: string;
|
|
182
|
+
event_id: string;
|
|
183
|
+
occurred_at: string;
|
|
184
|
+
event_type: "acs_credential.reissued";
|
|
185
|
+
connected_account_id?: string | undefined;
|
|
125
186
|
}>];
|
|
@@ -19,8 +19,14 @@ export const acs_credential_issued = acs_credential_event.extend({
|
|
|
19
19
|
---
|
|
20
20
|
An [ACS credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was issued.
|
|
21
21
|
`);
|
|
22
|
+
export const acs_credential_reissued = acs_credential_event
|
|
23
|
+
.extend({
|
|
24
|
+
event_type: z.literal('acs_credential.reissued'),
|
|
25
|
+
})
|
|
26
|
+
.describe('An [ACS credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was reissued.');
|
|
22
27
|
export const acs_credential_events = [
|
|
23
28
|
acs_credential_deleted_event,
|
|
24
29
|
acs_credential_issued,
|
|
30
|
+
acs_credential_reissued,
|
|
25
31
|
];
|
|
26
32
|
//# sourceMappingURL=credentials.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"credentials.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/models/events/acs/credentials.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,gBAAgB,EAAE,MAAM,aAAa,CAAA;AAE9C,MAAM,oBAAoB,GAAG,gBAAgB,CAAC,MAAM,CAAC;IACnD,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;CACrC,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,4BAA4B,GAAG,oBAAoB,CAAC,MAAM,CAAC;IACtE,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,wBAAwB,CAAC;CAChD,CAAC,CAAC,QAAQ,CAAC;;;;;GAKT,CAAC,CAAA;AAMJ,MAAM,CAAC,MAAM,qBAAqB,GAAG,oBAAoB,CAAC,MAAM,CAAC;IAC/D,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,uBAAuB,CAAC;CAC/C,CAAC,CAAC,QAAQ,CAAC;;;;;GAKT,CAAC,CAAA;AAEJ,MAAM,CAAC,MAAM,qBAAqB,GAAG;IACnC,4BAA4B;IAC5B,qBAAqB;
|
|
1
|
+
{"version":3,"file":"credentials.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/models/events/acs/credentials.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,gBAAgB,EAAE,MAAM,aAAa,CAAA;AAE9C,MAAM,oBAAoB,GAAG,gBAAgB,CAAC,MAAM,CAAC;IACnD,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;CACrC,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,4BAA4B,GAAG,oBAAoB,CAAC,MAAM,CAAC;IACtE,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,wBAAwB,CAAC;CAChD,CAAC,CAAC,QAAQ,CAAC;;;;;GAKT,CAAC,CAAA;AAMJ,MAAM,CAAC,MAAM,qBAAqB,GAAG,oBAAoB,CAAC,MAAM,CAAC;IAC/D,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,uBAAuB,CAAC;CAC/C,CAAC,CAAC,QAAQ,CAAC;;;;;GAKT,CAAC,CAAA;AAEJ,MAAM,CAAC,MAAM,uBAAuB,GAAG,oBAAoB;KACxD,MAAM,CAAC;IACN,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,yBAAyB,CAAC;CACjD,CAAC;KACD,QAAQ,CACP,sHAAsH,CACvH,CAAA;AAEH,MAAM,CAAC,MAAM,qBAAqB,GAAG;IACnC,4BAA4B;IAC5B,qBAAqB;IACrB,uBAAuB;CACf,CAAA"}
|
|
@@ -144,6 +144,36 @@ export declare const acs_events: readonly [import("zod").ZodObject<import("zod")
|
|
|
144
144
|
}, {
|
|
145
145
|
connected_account_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
146
146
|
acs_system_id: import("zod").ZodString;
|
|
147
|
+
}>, {
|
|
148
|
+
acs_credential_id: import("zod").ZodString;
|
|
149
|
+
}>, {
|
|
150
|
+
event_type: import("zod").ZodLiteral<"acs_credential.reissued">;
|
|
151
|
+
}>, "strip", import("zod").ZodTypeAny, {
|
|
152
|
+
created_at: string;
|
|
153
|
+
workspace_id: string;
|
|
154
|
+
acs_system_id: string;
|
|
155
|
+
acs_credential_id: string;
|
|
156
|
+
event_id: string;
|
|
157
|
+
occurred_at: string;
|
|
158
|
+
event_type: "acs_credential.reissued";
|
|
159
|
+
connected_account_id?: string | undefined;
|
|
160
|
+
}, {
|
|
161
|
+
created_at: string;
|
|
162
|
+
workspace_id: string;
|
|
163
|
+
acs_system_id: string;
|
|
164
|
+
acs_credential_id: string;
|
|
165
|
+
event_id: string;
|
|
166
|
+
occurred_at: string;
|
|
167
|
+
event_type: "acs_credential.reissued";
|
|
168
|
+
connected_account_id?: string | undefined;
|
|
169
|
+
}>, import("zod").ZodObject<import("zod").objectUtil.extendShape<import("zod").objectUtil.extendShape<import("zod").objectUtil.extendShape<{
|
|
170
|
+
event_id: import("zod").ZodString;
|
|
171
|
+
workspace_id: import("zod").ZodString;
|
|
172
|
+
created_at: import("zod").ZodString;
|
|
173
|
+
occurred_at: import("zod").ZodString;
|
|
174
|
+
}, {
|
|
175
|
+
connected_account_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
176
|
+
acs_system_id: import("zod").ZodString;
|
|
147
177
|
}>, {
|
|
148
178
|
acs_user_id: import("zod").ZodString;
|
|
149
179
|
}>, {
|
|
@@ -650,6 +650,36 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
650
650
|
}, {
|
|
651
651
|
connected_account_id: z.ZodOptional<z.ZodString>;
|
|
652
652
|
acs_system_id: z.ZodString;
|
|
653
|
+
}>, {
|
|
654
|
+
acs_credential_id: z.ZodString;
|
|
655
|
+
}>, {
|
|
656
|
+
event_type: z.ZodLiteral<"acs_credential.reissued">;
|
|
657
|
+
}>, "strip", z.ZodTypeAny, {
|
|
658
|
+
created_at: string;
|
|
659
|
+
workspace_id: string;
|
|
660
|
+
acs_system_id: string;
|
|
661
|
+
acs_credential_id: string;
|
|
662
|
+
event_id: string;
|
|
663
|
+
occurred_at: string;
|
|
664
|
+
event_type: "acs_credential.reissued";
|
|
665
|
+
connected_account_id?: string | undefined;
|
|
666
|
+
}, {
|
|
667
|
+
created_at: string;
|
|
668
|
+
workspace_id: string;
|
|
669
|
+
acs_system_id: string;
|
|
670
|
+
acs_credential_id: string;
|
|
671
|
+
event_id: string;
|
|
672
|
+
occurred_at: string;
|
|
673
|
+
event_type: "acs_credential.reissued";
|
|
674
|
+
connected_account_id?: string | undefined;
|
|
675
|
+
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
676
|
+
event_id: z.ZodString;
|
|
677
|
+
workspace_id: z.ZodString;
|
|
678
|
+
created_at: z.ZodString;
|
|
679
|
+
occurred_at: z.ZodString;
|
|
680
|
+
}, {
|
|
681
|
+
connected_account_id: z.ZodOptional<z.ZodString>;
|
|
682
|
+
acs_system_id: z.ZodString;
|
|
653
683
|
}>, {
|
|
654
684
|
acs_user_id: z.ZodString;
|
|
655
685
|
}>, {
|
|
@@ -4533,6 +4533,93 @@ declare const _default: {
|
|
|
4533
4533
|
'x-route-path': string;
|
|
4534
4534
|
deprecated?: never;
|
|
4535
4535
|
'x-deprecated'?: never;
|
|
4536
|
+
} | {
|
|
4537
|
+
description: string;
|
|
4538
|
+
properties: {
|
|
4539
|
+
acs_credential_id: {
|
|
4540
|
+
format: string;
|
|
4541
|
+
type: string;
|
|
4542
|
+
};
|
|
4543
|
+
acs_system_id: {
|
|
4544
|
+
description: string;
|
|
4545
|
+
format: string;
|
|
4546
|
+
type: string;
|
|
4547
|
+
};
|
|
4548
|
+
connected_account_id: {
|
|
4549
|
+
description: string;
|
|
4550
|
+
format: string;
|
|
4551
|
+
type: string;
|
|
4552
|
+
};
|
|
4553
|
+
created_at: {
|
|
4554
|
+
description: string;
|
|
4555
|
+
format: string;
|
|
4556
|
+
type: string;
|
|
4557
|
+
};
|
|
4558
|
+
event_id: {
|
|
4559
|
+
description: string;
|
|
4560
|
+
format: string;
|
|
4561
|
+
type: string;
|
|
4562
|
+
};
|
|
4563
|
+
event_type: {
|
|
4564
|
+
enum: string[];
|
|
4565
|
+
type: string;
|
|
4566
|
+
};
|
|
4567
|
+
occurred_at: {
|
|
4568
|
+
description: string;
|
|
4569
|
+
format: string;
|
|
4570
|
+
type: string;
|
|
4571
|
+
};
|
|
4572
|
+
workspace_id: {
|
|
4573
|
+
description: string;
|
|
4574
|
+
format: string;
|
|
4575
|
+
type: string;
|
|
4576
|
+
};
|
|
4577
|
+
access_code_id?: never;
|
|
4578
|
+
device_id?: never;
|
|
4579
|
+
code?: never;
|
|
4580
|
+
backup_access_code_id?: never;
|
|
4581
|
+
acs_user_id?: never;
|
|
4582
|
+
acs_encoder_id?: never;
|
|
4583
|
+
acs_access_group_id?: never;
|
|
4584
|
+
client_session_id?: never;
|
|
4585
|
+
connect_webview_id?: never;
|
|
4586
|
+
action_attempt_id?: never;
|
|
4587
|
+
action_type?: never;
|
|
4588
|
+
status?: never;
|
|
4589
|
+
error_code?: never;
|
|
4590
|
+
battery_level?: never;
|
|
4591
|
+
battery_status?: never;
|
|
4592
|
+
minut_metadata?: never;
|
|
4593
|
+
noise_level_decibels?: never;
|
|
4594
|
+
noise_level_nrs?: never;
|
|
4595
|
+
noise_threshold_id?: never;
|
|
4596
|
+
noise_threshold_name?: never;
|
|
4597
|
+
noiseaware_metadata?: never;
|
|
4598
|
+
method?: never;
|
|
4599
|
+
climate_preset_key?: never;
|
|
4600
|
+
is_fallback_climate_preset?: never;
|
|
4601
|
+
thermostat_schedule_id?: never;
|
|
4602
|
+
cooling_set_point_celsius?: never;
|
|
4603
|
+
cooling_set_point_fahrenheit?: never;
|
|
4604
|
+
fan_mode_setting?: never;
|
|
4605
|
+
heating_set_point_celsius?: never;
|
|
4606
|
+
heating_set_point_fahrenheit?: never;
|
|
4607
|
+
hvac_mode_setting?: never;
|
|
4608
|
+
lower_limit_celsius?: never;
|
|
4609
|
+
lower_limit_fahrenheit?: never;
|
|
4610
|
+
temperature_celsius?: never;
|
|
4611
|
+
temperature_fahrenheit?: never;
|
|
4612
|
+
upper_limit_celsius?: never;
|
|
4613
|
+
upper_limit_fahrenheit?: never;
|
|
4614
|
+
desired_temperature_celsius?: never;
|
|
4615
|
+
desired_temperature_fahrenheit?: never;
|
|
4616
|
+
enrollment_automation_id?: never;
|
|
4617
|
+
};
|
|
4618
|
+
required: string[];
|
|
4619
|
+
type: string;
|
|
4620
|
+
'x-route-path'?: never;
|
|
4621
|
+
deprecated?: never;
|
|
4622
|
+
'x-deprecated'?: never;
|
|
4536
4623
|
} | {
|
|
4537
4624
|
description: string;
|
|
4538
4625
|
properties: {
|