@seamapi/types 1.395.1 → 1.395.2
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 +57 -18
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +578 -502
- package/lib/seam/connect/models/access-grants/access-grant.d.ts +2 -2
- package/lib/seam/connect/models/access-grants/access-method.d.ts +2 -2
- package/lib/seam/connect/models/acs/acs-access-group.d.ts +4 -4
- package/lib/seam/connect/models/acs/acs-credential-pool.d.ts +2 -2
- package/lib/seam/connect/models/acs/acs-credential-provisioning-automation.d.ts +4 -4
- package/lib/seam/connect/models/acs/acs-credential.d.ts +4 -4
- package/lib/seam/connect/models/acs/acs-encoder.d.ts +2 -2
- package/lib/seam/connect/models/acs/acs-system.d.ts +2 -2
- package/lib/seam/connect/models/acs/acs-users/acs-user.d.ts +4 -4
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +24 -24
- package/lib/seam/connect/models/action-attempts/encode-access-method.d.ts +4 -4
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +8 -8
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +12 -12
- package/lib/seam/connect/models/bridges/bridge-connected-system.d.ts +2 -2
- package/lib/seam/connect/models/bridges/bridge.d.ts +2 -2
- package/lib/seam/connect/models/client-sessions/client-session.d.ts +2 -2
- package/lib/seam/connect/models/connect-webviews/connect-webview.d.ts +2 -2
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +25 -20
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +25 -20
- package/lib/seam/connect/models/devices/capability-properties/thermostat.js +2 -7
- package/lib/seam/connect/models/devices/capability-properties/thermostat.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +37 -30
- package/lib/seam/connect/models/devices/phone.d.ts +2 -2
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +28 -23
- package/lib/seam/connect/models/events/access-codes.d.ts +68 -68
- package/lib/seam/connect/models/events/access-grants.d.ts +20 -20
- package/lib/seam/connect/models/events/access-methods.d.ts +12 -12
- package/lib/seam/connect/models/events/acs/access-groups.d.ts +4 -4
- package/lib/seam/connect/models/events/acs/common.d.ts +2 -2
- package/lib/seam/connect/models/events/acs/credentials.d.ts +16 -16
- package/lib/seam/connect/models/events/acs/encoders.d.ts +8 -8
- package/lib/seam/connect/models/events/acs/entrances.d.ts +8 -8
- package/lib/seam/connect/models/events/acs/index.d.ts +28 -28
- package/lib/seam/connect/models/events/acs/systems.d.ts +12 -12
- package/lib/seam/connect/models/events/acs/users.d.ts +8 -8
- package/lib/seam/connect/models/events/action-attempts.d.ts +16 -16
- package/lib/seam/connect/models/events/client-sessions.d.ts +4 -4
- package/lib/seam/connect/models/events/common.d.ts +2 -2
- package/lib/seam/connect/models/events/connect-webviews.d.ts +8 -8
- package/lib/seam/connect/models/events/connected-accounts.d.ts +28 -28
- package/lib/seam/connect/models/events/devices.d.ts +132 -132
- package/lib/seam/connect/models/events/enrollment-automations.d.ts +4 -4
- package/lib/seam/connect/models/events/phones.d.ts +4 -4
- package/lib/seam/connect/models/events/seam-event.d.ts +176 -176
- package/lib/seam/connect/models/instant-keys/instant-key.d.ts +2 -2
- package/lib/seam/connect/models/locations/location.d.ts +2 -2
- package/lib/seam/connect/models/thermostats/thermostat-program.d.ts +6 -6
- package/lib/seam/connect/models/thermostats/thermostat-program.js +5 -5
- package/lib/seam/connect/models/thermostats/thermostat-program.js.map +1 -1
- package/lib/seam/connect/models/thermostats/thermostat-schedule.d.ts +6 -3
- package/lib/seam/connect/models/thermostats/thermostat-schedule.js +5 -1
- package/lib/seam/connect/models/thermostats/thermostat-schedule.js.map +1 -1
- package/lib/seam/connect/models/user-identities/user-identity.d.ts +2 -2
- package/lib/seam/connect/openapi.d.ts +35 -8
- package/lib/seam/connect/openapi.js +43 -9
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +136 -102
- package/package.json +2 -2
- package/src/lib/seam/connect/models/devices/capability-properties/thermostat.ts +2 -7
- package/src/lib/seam/connect/models/thermostats/thermostat-program.ts +7 -5
- package/src/lib/seam/connect/models/thermostats/thermostat-schedule.ts +7 -1
- package/src/lib/seam/connect/openapi.ts +47 -10
- package/src/lib/seam/connect/route-types.ts +617 -505
|
@@ -25,8 +25,8 @@ export declare const access_grant: z.ZodObject<{
|
|
|
25
25
|
created_at: z.ZodString;
|
|
26
26
|
}, "strip", z.ZodTypeAny, {
|
|
27
27
|
display_name: string;
|
|
28
|
-
created_at: string;
|
|
29
28
|
workspace_id: string;
|
|
29
|
+
created_at: string;
|
|
30
30
|
access_grant_id: string;
|
|
31
31
|
user_identity_id: string;
|
|
32
32
|
location_ids: string[];
|
|
@@ -39,8 +39,8 @@ export declare const access_grant: z.ZodObject<{
|
|
|
39
39
|
access_method_ids: string[];
|
|
40
40
|
}, {
|
|
41
41
|
display_name: string;
|
|
42
|
-
created_at: string;
|
|
43
42
|
workspace_id: string;
|
|
43
|
+
created_at: string;
|
|
44
44
|
access_grant_id: string;
|
|
45
45
|
user_identity_id: string;
|
|
46
46
|
location_ids: string[];
|
|
@@ -10,8 +10,8 @@ export declare const access_method: z.ZodObject<{
|
|
|
10
10
|
is_card_encoding_required: z.ZodOptional<z.ZodBoolean>;
|
|
11
11
|
}, "strip", z.ZodTypeAny, {
|
|
12
12
|
display_name: string;
|
|
13
|
-
created_at: string;
|
|
14
13
|
workspace_id: string;
|
|
14
|
+
created_at: string;
|
|
15
15
|
mode: "code" | "card" | "mobile_key";
|
|
16
16
|
access_method_id: string;
|
|
17
17
|
issued_at?: string | undefined;
|
|
@@ -19,8 +19,8 @@ export declare const access_method: z.ZodObject<{
|
|
|
19
19
|
is_card_encoding_required?: boolean | undefined;
|
|
20
20
|
}, {
|
|
21
21
|
display_name: string;
|
|
22
|
-
created_at: string;
|
|
23
22
|
workspace_id: string;
|
|
23
|
+
created_at: string;
|
|
24
24
|
mode: "code" | "card" | "mobile_key";
|
|
25
25
|
access_method_id: string;
|
|
26
26
|
issued_at?: string | undefined;
|
|
@@ -74,13 +74,13 @@ export declare const acs_access_group: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
74
74
|
}>, "strip", z.ZodTypeAny, {
|
|
75
75
|
name: string;
|
|
76
76
|
display_name: string;
|
|
77
|
+
workspace_id: string;
|
|
77
78
|
created_at: string;
|
|
78
79
|
warnings: {
|
|
79
80
|
message: string;
|
|
80
81
|
created_at: string;
|
|
81
82
|
warning_code: "unknown_issue_with_acs_access_group";
|
|
82
83
|
}[];
|
|
83
|
-
workspace_id: string;
|
|
84
84
|
is_managed: true;
|
|
85
85
|
acs_access_group_id: string;
|
|
86
86
|
acs_system_id: string;
|
|
@@ -91,13 +91,13 @@ export declare const acs_access_group: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
91
91
|
}, {
|
|
92
92
|
name: string;
|
|
93
93
|
display_name: string;
|
|
94
|
+
workspace_id: string;
|
|
94
95
|
created_at: string;
|
|
95
96
|
warnings: {
|
|
96
97
|
message: string;
|
|
97
98
|
created_at: string;
|
|
98
99
|
warning_code: "unknown_issue_with_acs_access_group";
|
|
99
100
|
}[];
|
|
100
|
-
workspace_id: string;
|
|
101
101
|
is_managed: true;
|
|
102
102
|
acs_access_group_id: string;
|
|
103
103
|
acs_system_id: string;
|
|
@@ -136,13 +136,13 @@ export declare const unmanaged_acs_access_group: z.ZodObject<z.objectUtil.extend
|
|
|
136
136
|
}>, "strip", z.ZodTypeAny, {
|
|
137
137
|
name: string;
|
|
138
138
|
display_name: string;
|
|
139
|
+
workspace_id: string;
|
|
139
140
|
created_at: string;
|
|
140
141
|
warnings: {
|
|
141
142
|
message: string;
|
|
142
143
|
created_at: string;
|
|
143
144
|
warning_code: "unknown_issue_with_acs_access_group";
|
|
144
145
|
}[];
|
|
145
|
-
workspace_id: string;
|
|
146
146
|
is_managed: false;
|
|
147
147
|
acs_access_group_id: string;
|
|
148
148
|
acs_system_id: string;
|
|
@@ -153,13 +153,13 @@ export declare const unmanaged_acs_access_group: z.ZodObject<z.objectUtil.extend
|
|
|
153
153
|
}, {
|
|
154
154
|
name: string;
|
|
155
155
|
display_name: string;
|
|
156
|
+
workspace_id: string;
|
|
156
157
|
created_at: string;
|
|
157
158
|
warnings: {
|
|
158
159
|
message: string;
|
|
159
160
|
created_at: string;
|
|
160
161
|
warning_code: "unknown_issue_with_acs_access_group";
|
|
161
162
|
}[];
|
|
162
|
-
workspace_id: string;
|
|
163
163
|
is_managed: false;
|
|
164
164
|
acs_access_group_id: string;
|
|
165
165
|
acs_system_id: string;
|
|
@@ -11,16 +11,16 @@ export declare const acs_credential_pool: z.ZodObject<{
|
|
|
11
11
|
workspace_id: z.ZodString;
|
|
12
12
|
}, "strip", z.ZodTypeAny, {
|
|
13
13
|
display_name: string;
|
|
14
|
-
created_at: string;
|
|
15
14
|
workspace_id: string;
|
|
15
|
+
created_at: string;
|
|
16
16
|
acs_system_id: string;
|
|
17
17
|
external_type: "hid_part_number";
|
|
18
18
|
external_type_display_name: string;
|
|
19
19
|
acs_credential_pool_id: string;
|
|
20
20
|
}, {
|
|
21
21
|
display_name: string;
|
|
22
|
-
created_at: string;
|
|
23
22
|
workspace_id: string;
|
|
23
|
+
created_at: string;
|
|
24
24
|
acs_system_id: string;
|
|
25
25
|
external_type: "hid_part_number";
|
|
26
26
|
external_type_display_name: string;
|
|
@@ -6,14 +6,14 @@ export declare const acs_credential_provisioning_automation: z.ZodObject<{
|
|
|
6
6
|
created_at: z.ZodString;
|
|
7
7
|
workspace_id: z.ZodString;
|
|
8
8
|
}, "strip", z.ZodTypeAny, {
|
|
9
|
-
created_at: string;
|
|
10
9
|
workspace_id: string;
|
|
10
|
+
created_at: string;
|
|
11
11
|
user_identity_id: string;
|
|
12
12
|
acs_credential_provisioning_automation_id: string;
|
|
13
13
|
credential_manager_acs_system_id: string;
|
|
14
14
|
}, {
|
|
15
|
-
created_at: string;
|
|
16
15
|
workspace_id: string;
|
|
16
|
+
created_at: string;
|
|
17
17
|
user_identity_id: string;
|
|
18
18
|
acs_credential_provisioning_automation_id: string;
|
|
19
19
|
credential_manager_acs_system_id: string;
|
|
@@ -25,14 +25,14 @@ export declare const enrollment_automation: z.ZodObject<{
|
|
|
25
25
|
created_at: z.ZodString;
|
|
26
26
|
workspace_id: z.ZodString;
|
|
27
27
|
}, "strip", z.ZodTypeAny, {
|
|
28
|
-
created_at: string;
|
|
29
28
|
workspace_id: string;
|
|
29
|
+
created_at: string;
|
|
30
30
|
user_identity_id: string;
|
|
31
31
|
credential_manager_acs_system_id: string;
|
|
32
32
|
enrollment_automation_id: string;
|
|
33
33
|
}, {
|
|
34
|
-
created_at: string;
|
|
35
34
|
workspace_id: string;
|
|
35
|
+
created_at: string;
|
|
36
36
|
user_identity_id: string;
|
|
37
37
|
credential_manager_acs_system_id: string;
|
|
38
38
|
enrollment_automation_id: string;
|
|
@@ -330,6 +330,7 @@ export declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
330
330
|
is_managed: z.ZodLiteral<true>;
|
|
331
331
|
}>, "strip", z.ZodTypeAny, {
|
|
332
332
|
display_name: string;
|
|
333
|
+
workspace_id: string;
|
|
333
334
|
created_at: string;
|
|
334
335
|
errors: {
|
|
335
336
|
message: string;
|
|
@@ -360,7 +361,6 @@ export declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
360
361
|
created_at: string;
|
|
361
362
|
warning_code: "needs_to_be_reissued";
|
|
362
363
|
})[];
|
|
363
|
-
workspace_id: string;
|
|
364
364
|
is_managed: true;
|
|
365
365
|
acs_system_id: string;
|
|
366
366
|
acs_credential_id: string;
|
|
@@ -400,6 +400,7 @@ export declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
400
400
|
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
401
401
|
}, {
|
|
402
402
|
display_name: string;
|
|
403
|
+
workspace_id: string;
|
|
403
404
|
created_at: string;
|
|
404
405
|
errors: {
|
|
405
406
|
message: string;
|
|
@@ -430,7 +431,6 @@ export declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
430
431
|
created_at: string;
|
|
431
432
|
warning_code: "needs_to_be_reissued";
|
|
432
433
|
})[];
|
|
433
|
-
workspace_id: string;
|
|
434
434
|
is_managed: true;
|
|
435
435
|
acs_system_id: string;
|
|
436
436
|
acs_credential_id: string;
|
|
@@ -634,6 +634,7 @@ export declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendSh
|
|
|
634
634
|
is_managed: z.ZodLiteral<false>;
|
|
635
635
|
}>, "strip", z.ZodTypeAny, {
|
|
636
636
|
display_name: string;
|
|
637
|
+
workspace_id: string;
|
|
637
638
|
created_at: string;
|
|
638
639
|
errors: {
|
|
639
640
|
message: string;
|
|
@@ -664,7 +665,6 @@ export declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendSh
|
|
|
664
665
|
created_at: string;
|
|
665
666
|
warning_code: "needs_to_be_reissued";
|
|
666
667
|
})[];
|
|
667
|
-
workspace_id: string;
|
|
668
668
|
is_managed: false;
|
|
669
669
|
acs_system_id: string;
|
|
670
670
|
acs_credential_id: string;
|
|
@@ -704,6 +704,7 @@ export declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendSh
|
|
|
704
704
|
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
705
705
|
}, {
|
|
706
706
|
display_name: string;
|
|
707
|
+
workspace_id: string;
|
|
707
708
|
created_at: string;
|
|
708
709
|
errors: {
|
|
709
710
|
message: string;
|
|
@@ -734,7 +735,6 @@ export declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendSh
|
|
|
734
735
|
created_at: string;
|
|
735
736
|
warning_code: "needs_to_be_reissued";
|
|
736
737
|
})[];
|
|
737
|
-
workspace_id: string;
|
|
738
738
|
is_managed: false;
|
|
739
739
|
acs_system_id: string;
|
|
740
740
|
acs_credential_id: string;
|
|
@@ -50,24 +50,24 @@ export declare const acs_encoder: z.ZodObject<{
|
|
|
50
50
|
display_name: z.ZodString;
|
|
51
51
|
}, "strip", z.ZodTypeAny, {
|
|
52
52
|
display_name: string;
|
|
53
|
+
workspace_id: string;
|
|
53
54
|
created_at: string;
|
|
54
55
|
errors: {
|
|
55
56
|
message: string;
|
|
56
57
|
created_at: string;
|
|
57
58
|
error_code: "acs_encoder_removed";
|
|
58
59
|
}[];
|
|
59
|
-
workspace_id: string;
|
|
60
60
|
acs_system_id: string;
|
|
61
61
|
acs_encoder_id: string;
|
|
62
62
|
}, {
|
|
63
63
|
display_name: string;
|
|
64
|
+
workspace_id: string;
|
|
64
65
|
created_at: string;
|
|
65
66
|
errors: {
|
|
66
67
|
message: string;
|
|
67
68
|
created_at: string;
|
|
68
69
|
error_code: "acs_encoder_removed";
|
|
69
70
|
}[];
|
|
70
|
-
workspace_id: string;
|
|
71
71
|
acs_system_id: string;
|
|
72
72
|
acs_encoder_id: string;
|
|
73
73
|
}>;
|
|
@@ -456,6 +456,7 @@ export declare const acs_system: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
456
456
|
time_zone: string | null;
|
|
457
457
|
};
|
|
458
458
|
name: string;
|
|
459
|
+
workspace_id: string;
|
|
459
460
|
created_at: string;
|
|
460
461
|
errors: ({
|
|
461
462
|
message: string;
|
|
@@ -500,7 +501,6 @@ export declare const acs_system: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
500
501
|
})[];
|
|
501
502
|
image_url: string;
|
|
502
503
|
image_alt_text: string;
|
|
503
|
-
workspace_id: string;
|
|
504
504
|
acs_system_id: string;
|
|
505
505
|
is_credential_manager: boolean;
|
|
506
506
|
connected_account_ids: string[];
|
|
@@ -531,6 +531,7 @@ export declare const acs_system: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
531
531
|
time_zone: string | null;
|
|
532
532
|
};
|
|
533
533
|
name: string;
|
|
534
|
+
workspace_id: string;
|
|
534
535
|
created_at: string;
|
|
535
536
|
errors: ({
|
|
536
537
|
message: string;
|
|
@@ -575,7 +576,6 @@ export declare const acs_system: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
575
576
|
})[];
|
|
576
577
|
image_url: string;
|
|
577
578
|
image_alt_text: string;
|
|
578
|
-
workspace_id: string;
|
|
579
579
|
acs_system_id: string;
|
|
580
580
|
is_credential_manager: boolean;
|
|
581
581
|
connected_account_ids: string[];
|
|
@@ -764,6 +764,7 @@ export declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
764
764
|
is_managed: z.ZodLiteral<true>;
|
|
765
765
|
}>, "strip", z.ZodTypeAny, {
|
|
766
766
|
display_name: string;
|
|
767
|
+
workspace_id: string;
|
|
767
768
|
created_at: string;
|
|
768
769
|
errors: ({
|
|
769
770
|
message: string;
|
|
@@ -807,7 +808,6 @@ export declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
807
808
|
created_at: string;
|
|
808
809
|
warning_code: "latch_resident_user";
|
|
809
810
|
})[];
|
|
810
|
-
workspace_id: string;
|
|
811
811
|
is_managed: true;
|
|
812
812
|
acs_system_id: string;
|
|
813
813
|
acs_user_id: string;
|
|
@@ -885,6 +885,7 @@ export declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
885
885
|
})[] | undefined;
|
|
886
886
|
}, {
|
|
887
887
|
display_name: string;
|
|
888
|
+
workspace_id: string;
|
|
888
889
|
created_at: string;
|
|
889
890
|
errors: ({
|
|
890
891
|
message: string;
|
|
@@ -928,7 +929,6 @@ export declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
928
929
|
created_at: string;
|
|
929
930
|
warning_code: "latch_resident_user";
|
|
930
931
|
})[];
|
|
931
|
-
workspace_id: string;
|
|
932
932
|
is_managed: true;
|
|
933
933
|
acs_system_id: string;
|
|
934
934
|
acs_user_id: string;
|
|
@@ -1384,6 +1384,7 @@ export declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
1384
1384
|
is_managed: z.ZodLiteral<false>;
|
|
1385
1385
|
}>, "strip", z.ZodTypeAny, {
|
|
1386
1386
|
display_name: string;
|
|
1387
|
+
workspace_id: string;
|
|
1387
1388
|
created_at: string;
|
|
1388
1389
|
errors: ({
|
|
1389
1390
|
message: string;
|
|
@@ -1427,7 +1428,6 @@ export declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
1427
1428
|
created_at: string;
|
|
1428
1429
|
warning_code: "latch_resident_user";
|
|
1429
1430
|
})[];
|
|
1430
|
-
workspace_id: string;
|
|
1431
1431
|
is_managed: false;
|
|
1432
1432
|
acs_system_id: string;
|
|
1433
1433
|
acs_user_id: string;
|
|
@@ -1505,6 +1505,7 @@ export declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
1505
1505
|
})[] | undefined;
|
|
1506
1506
|
}, {
|
|
1507
1507
|
display_name: string;
|
|
1508
|
+
workspace_id: string;
|
|
1508
1509
|
created_at: string;
|
|
1509
1510
|
errors: ({
|
|
1510
1511
|
message: string;
|
|
@@ -1548,7 +1549,6 @@ export declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
1548
1549
|
created_at: string;
|
|
1549
1550
|
warning_code: "latch_resident_user";
|
|
1550
1551
|
})[];
|
|
1551
|
-
workspace_id: string;
|
|
1552
1552
|
is_managed: false;
|
|
1553
1553
|
acs_system_id: string;
|
|
1554
1554
|
acs_user_id: string;
|
|
@@ -437,6 +437,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
437
437
|
is_managed: z.ZodLiteral<true>;
|
|
438
438
|
}>, "strip", z.ZodTypeAny, {
|
|
439
439
|
display_name: string;
|
|
440
|
+
workspace_id: string;
|
|
440
441
|
created_at: string;
|
|
441
442
|
errors: {
|
|
442
443
|
message: string;
|
|
@@ -467,7 +468,6 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
467
468
|
created_at: string;
|
|
468
469
|
warning_code: "needs_to_be_reissued";
|
|
469
470
|
})[];
|
|
470
|
-
workspace_id: string;
|
|
471
471
|
is_managed: true;
|
|
472
472
|
acs_system_id: string;
|
|
473
473
|
acs_credential_id: string;
|
|
@@ -507,6 +507,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
507
507
|
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
508
508
|
}, {
|
|
509
509
|
display_name: string;
|
|
510
|
+
workspace_id: string;
|
|
510
511
|
created_at: string;
|
|
511
512
|
errors: {
|
|
512
513
|
message: string;
|
|
@@ -537,7 +538,6 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
537
538
|
created_at: string;
|
|
538
539
|
warning_code: "needs_to_be_reissued";
|
|
539
540
|
})[];
|
|
540
|
-
workspace_id: string;
|
|
541
541
|
is_managed: true;
|
|
542
542
|
acs_system_id: string;
|
|
543
543
|
acs_credential_id: string;
|
|
@@ -740,6 +740,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
740
740
|
is_managed: z.ZodLiteral<false>;
|
|
741
741
|
}>, "strip", z.ZodTypeAny, {
|
|
742
742
|
display_name: string;
|
|
743
|
+
workspace_id: string;
|
|
743
744
|
created_at: string;
|
|
744
745
|
errors: {
|
|
745
746
|
message: string;
|
|
@@ -770,7 +771,6 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
770
771
|
created_at: string;
|
|
771
772
|
warning_code: "needs_to_be_reissued";
|
|
772
773
|
})[];
|
|
773
|
-
workspace_id: string;
|
|
774
774
|
is_managed: false;
|
|
775
775
|
acs_system_id: string;
|
|
776
776
|
acs_credential_id: string;
|
|
@@ -810,6 +810,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
810
810
|
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
811
811
|
}, {
|
|
812
812
|
display_name: string;
|
|
813
|
+
workspace_id: string;
|
|
813
814
|
created_at: string;
|
|
814
815
|
errors: {
|
|
815
816
|
message: string;
|
|
@@ -840,7 +841,6 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
840
841
|
created_at: string;
|
|
841
842
|
warning_code: "needs_to_be_reissued";
|
|
842
843
|
})[];
|
|
843
|
-
workspace_id: string;
|
|
844
844
|
is_managed: false;
|
|
845
845
|
acs_system_id: string;
|
|
846
846
|
acs_credential_id: string;
|
|
@@ -917,6 +917,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
917
917
|
} | null;
|
|
918
918
|
acs_credential_on_seam: {
|
|
919
919
|
display_name: string;
|
|
920
|
+
workspace_id: string;
|
|
920
921
|
created_at: string;
|
|
921
922
|
errors: {
|
|
922
923
|
message: string;
|
|
@@ -947,7 +948,6 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
947
948
|
created_at: string;
|
|
948
949
|
warning_code: "needs_to_be_reissued";
|
|
949
950
|
})[];
|
|
950
|
-
workspace_id: string;
|
|
951
951
|
is_managed: true;
|
|
952
952
|
acs_system_id: string;
|
|
953
953
|
acs_credential_id: string;
|
|
@@ -987,6 +987,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
987
987
|
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
988
988
|
} | {
|
|
989
989
|
display_name: string;
|
|
990
|
+
workspace_id: string;
|
|
990
991
|
created_at: string;
|
|
991
992
|
errors: {
|
|
992
993
|
message: string;
|
|
@@ -1017,7 +1018,6 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1017
1018
|
created_at: string;
|
|
1018
1019
|
warning_code: "needs_to_be_reissued";
|
|
1019
1020
|
})[];
|
|
1020
|
-
workspace_id: string;
|
|
1021
1021
|
is_managed: false;
|
|
1022
1022
|
acs_system_id: string;
|
|
1023
1023
|
acs_credential_id: string;
|
|
@@ -1084,6 +1084,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1084
1084
|
} | null;
|
|
1085
1085
|
acs_credential_on_seam: {
|
|
1086
1086
|
display_name: string;
|
|
1087
|
+
workspace_id: string;
|
|
1087
1088
|
created_at: string;
|
|
1088
1089
|
errors: {
|
|
1089
1090
|
message: string;
|
|
@@ -1114,7 +1115,6 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1114
1115
|
created_at: string;
|
|
1115
1116
|
warning_code: "needs_to_be_reissued";
|
|
1116
1117
|
})[];
|
|
1117
|
-
workspace_id: string;
|
|
1118
1118
|
is_managed: true;
|
|
1119
1119
|
acs_system_id: string;
|
|
1120
1120
|
acs_credential_id: string;
|
|
@@ -1154,6 +1154,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1154
1154
|
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
1155
1155
|
} | {
|
|
1156
1156
|
display_name: string;
|
|
1157
|
+
workspace_id: string;
|
|
1157
1158
|
created_at: string;
|
|
1158
1159
|
errors: {
|
|
1159
1160
|
message: string;
|
|
@@ -1184,7 +1185,6 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1184
1185
|
created_at: string;
|
|
1185
1186
|
warning_code: "needs_to_be_reissued";
|
|
1186
1187
|
})[];
|
|
1187
|
-
workspace_id: string;
|
|
1188
1188
|
is_managed: false;
|
|
1189
1189
|
acs_system_id: string;
|
|
1190
1190
|
acs_credential_id: string;
|
|
@@ -1256,6 +1256,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1256
1256
|
} | null;
|
|
1257
1257
|
acs_credential_on_seam: {
|
|
1258
1258
|
display_name: string;
|
|
1259
|
+
workspace_id: string;
|
|
1259
1260
|
created_at: string;
|
|
1260
1261
|
errors: {
|
|
1261
1262
|
message: string;
|
|
@@ -1286,7 +1287,6 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1286
1287
|
created_at: string;
|
|
1287
1288
|
warning_code: "needs_to_be_reissued";
|
|
1288
1289
|
})[];
|
|
1289
|
-
workspace_id: string;
|
|
1290
1290
|
is_managed: true;
|
|
1291
1291
|
acs_system_id: string;
|
|
1292
1292
|
acs_credential_id: string;
|
|
@@ -1326,6 +1326,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1326
1326
|
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
1327
1327
|
} | {
|
|
1328
1328
|
display_name: string;
|
|
1329
|
+
workspace_id: string;
|
|
1329
1330
|
created_at: string;
|
|
1330
1331
|
errors: {
|
|
1331
1332
|
message: string;
|
|
@@ -1356,7 +1357,6 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1356
1357
|
created_at: string;
|
|
1357
1358
|
warning_code: "needs_to_be_reissued";
|
|
1358
1359
|
})[];
|
|
1359
|
-
workspace_id: string;
|
|
1360
1360
|
is_managed: false;
|
|
1361
1361
|
acs_system_id: string;
|
|
1362
1362
|
acs_credential_id: string;
|
|
@@ -1429,6 +1429,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1429
1429
|
} | null;
|
|
1430
1430
|
acs_credential_on_seam: {
|
|
1431
1431
|
display_name: string;
|
|
1432
|
+
workspace_id: string;
|
|
1432
1433
|
created_at: string;
|
|
1433
1434
|
errors: {
|
|
1434
1435
|
message: string;
|
|
@@ -1459,7 +1460,6 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1459
1460
|
created_at: string;
|
|
1460
1461
|
warning_code: "needs_to_be_reissued";
|
|
1461
1462
|
})[];
|
|
1462
|
-
workspace_id: string;
|
|
1463
1463
|
is_managed: true;
|
|
1464
1464
|
acs_system_id: string;
|
|
1465
1465
|
acs_credential_id: string;
|
|
@@ -1499,6 +1499,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1499
1499
|
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
1500
1500
|
} | {
|
|
1501
1501
|
display_name: string;
|
|
1502
|
+
workspace_id: string;
|
|
1502
1503
|
created_at: string;
|
|
1503
1504
|
errors: {
|
|
1504
1505
|
message: string;
|
|
@@ -1529,7 +1530,6 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1529
1530
|
created_at: string;
|
|
1530
1531
|
warning_code: "needs_to_be_reissued";
|
|
1531
1532
|
})[];
|
|
1532
|
-
workspace_id: string;
|
|
1533
1533
|
is_managed: false;
|
|
1534
1534
|
acs_system_id: string;
|
|
1535
1535
|
acs_credential_id: string;
|
|
@@ -1676,8 +1676,8 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1676
1676
|
is_card_encoding_required: z.ZodOptional<z.ZodBoolean>;
|
|
1677
1677
|
}, "strip", z.ZodTypeAny, {
|
|
1678
1678
|
display_name: string;
|
|
1679
|
-
created_at: string;
|
|
1680
1679
|
workspace_id: string;
|
|
1680
|
+
created_at: string;
|
|
1681
1681
|
mode: "code" | "card" | "mobile_key";
|
|
1682
1682
|
access_method_id: string;
|
|
1683
1683
|
issued_at?: string | undefined;
|
|
@@ -1685,8 +1685,8 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1685
1685
|
is_card_encoding_required?: boolean | undefined;
|
|
1686
1686
|
}, {
|
|
1687
1687
|
display_name: string;
|
|
1688
|
-
created_at: string;
|
|
1689
1688
|
workspace_id: string;
|
|
1689
|
+
created_at: string;
|
|
1690
1690
|
mode: "code" | "card" | "mobile_key";
|
|
1691
1691
|
access_method_id: string;
|
|
1692
1692
|
issued_at?: string | undefined;
|
|
@@ -1699,8 +1699,8 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1699
1699
|
action_attempt_id: string;
|
|
1700
1700
|
result: {
|
|
1701
1701
|
display_name: string;
|
|
1702
|
-
created_at: string;
|
|
1703
1702
|
workspace_id: string;
|
|
1703
|
+
created_at: string;
|
|
1704
1704
|
mode: "code" | "card" | "mobile_key";
|
|
1705
1705
|
access_method_id: string;
|
|
1706
1706
|
issued_at?: string | undefined;
|
|
@@ -1714,8 +1714,8 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1714
1714
|
action_attempt_id: string;
|
|
1715
1715
|
result: {
|
|
1716
1716
|
display_name: string;
|
|
1717
|
-
created_at: string;
|
|
1718
1717
|
workspace_id: string;
|
|
1718
|
+
created_at: string;
|
|
1719
1719
|
mode: "code" | "card" | "mobile_key";
|
|
1720
1720
|
access_method_id: string;
|
|
1721
1721
|
issued_at?: string | undefined;
|
|
@@ -2013,6 +2013,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2013
2013
|
is_managed: z.ZodLiteral<true>;
|
|
2014
2014
|
}>, "strip", z.ZodTypeAny, {
|
|
2015
2015
|
display_name: string;
|
|
2016
|
+
workspace_id: string;
|
|
2016
2017
|
created_at: string;
|
|
2017
2018
|
errors: {
|
|
2018
2019
|
message: string;
|
|
@@ -2043,7 +2044,6 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2043
2044
|
created_at: string;
|
|
2044
2045
|
warning_code: "needs_to_be_reissued";
|
|
2045
2046
|
})[];
|
|
2046
|
-
workspace_id: string;
|
|
2047
2047
|
is_managed: true;
|
|
2048
2048
|
acs_system_id: string;
|
|
2049
2049
|
acs_credential_id: string;
|
|
@@ -2083,6 +2083,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2083
2083
|
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
2084
2084
|
}, {
|
|
2085
2085
|
display_name: string;
|
|
2086
|
+
workspace_id: string;
|
|
2086
2087
|
created_at: string;
|
|
2087
2088
|
errors: {
|
|
2088
2089
|
message: string;
|
|
@@ -2113,7 +2114,6 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2113
2114
|
created_at: string;
|
|
2114
2115
|
warning_code: "needs_to_be_reissued";
|
|
2115
2116
|
})[];
|
|
2116
|
-
workspace_id: string;
|
|
2117
2117
|
is_managed: true;
|
|
2118
2118
|
acs_system_id: string;
|
|
2119
2119
|
acs_credential_id: string;
|
|
@@ -2316,6 +2316,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2316
2316
|
is_managed: z.ZodLiteral<false>;
|
|
2317
2317
|
}>, "strip", z.ZodTypeAny, {
|
|
2318
2318
|
display_name: string;
|
|
2319
|
+
workspace_id: string;
|
|
2319
2320
|
created_at: string;
|
|
2320
2321
|
errors: {
|
|
2321
2322
|
message: string;
|
|
@@ -2346,7 +2347,6 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2346
2347
|
created_at: string;
|
|
2347
2348
|
warning_code: "needs_to_be_reissued";
|
|
2348
2349
|
})[];
|
|
2349
|
-
workspace_id: string;
|
|
2350
2350
|
is_managed: false;
|
|
2351
2351
|
acs_system_id: string;
|
|
2352
2352
|
acs_credential_id: string;
|
|
@@ -2386,6 +2386,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2386
2386
|
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
2387
2387
|
}, {
|
|
2388
2388
|
display_name: string;
|
|
2389
|
+
workspace_id: string;
|
|
2389
2390
|
created_at: string;
|
|
2390
2391
|
errors: {
|
|
2391
2392
|
message: string;
|
|
@@ -2416,7 +2417,6 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2416
2417
|
created_at: string;
|
|
2417
2418
|
warning_code: "needs_to_be_reissued";
|
|
2418
2419
|
})[];
|
|
2419
|
-
workspace_id: string;
|
|
2420
2420
|
is_managed: false;
|
|
2421
2421
|
acs_system_id: string;
|
|
2422
2422
|
acs_credential_id: string;
|
|
@@ -2461,6 +2461,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2461
2461
|
action_attempt_id: string;
|
|
2462
2462
|
result: {
|
|
2463
2463
|
display_name: string;
|
|
2464
|
+
workspace_id: string;
|
|
2464
2465
|
created_at: string;
|
|
2465
2466
|
errors: {
|
|
2466
2467
|
message: string;
|
|
@@ -2491,7 +2492,6 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2491
2492
|
created_at: string;
|
|
2492
2493
|
warning_code: "needs_to_be_reissued";
|
|
2493
2494
|
})[];
|
|
2494
|
-
workspace_id: string;
|
|
2495
2495
|
is_managed: true;
|
|
2496
2496
|
acs_system_id: string;
|
|
2497
2497
|
acs_credential_id: string;
|
|
@@ -2531,6 +2531,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2531
2531
|
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
2532
2532
|
} | {
|
|
2533
2533
|
display_name: string;
|
|
2534
|
+
workspace_id: string;
|
|
2534
2535
|
created_at: string;
|
|
2535
2536
|
errors: {
|
|
2536
2537
|
message: string;
|
|
@@ -2561,7 +2562,6 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2561
2562
|
created_at: string;
|
|
2562
2563
|
warning_code: "needs_to_be_reissued";
|
|
2563
2564
|
})[];
|
|
2564
|
-
workspace_id: string;
|
|
2565
2565
|
is_managed: false;
|
|
2566
2566
|
acs_system_id: string;
|
|
2567
2567
|
acs_credential_id: string;
|
|
@@ -2607,6 +2607,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2607
2607
|
action_attempt_id: string;
|
|
2608
2608
|
result: {
|
|
2609
2609
|
display_name: string;
|
|
2610
|
+
workspace_id: string;
|
|
2610
2611
|
created_at: string;
|
|
2611
2612
|
errors: {
|
|
2612
2613
|
message: string;
|
|
@@ -2637,7 +2638,6 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2637
2638
|
created_at: string;
|
|
2638
2639
|
warning_code: "needs_to_be_reissued";
|
|
2639
2640
|
})[];
|
|
2640
|
-
workspace_id: string;
|
|
2641
2641
|
is_managed: true;
|
|
2642
2642
|
acs_system_id: string;
|
|
2643
2643
|
acs_credential_id: string;
|
|
@@ -2677,6 +2677,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2677
2677
|
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
2678
2678
|
} | {
|
|
2679
2679
|
display_name: string;
|
|
2680
|
+
workspace_id: string;
|
|
2680
2681
|
created_at: string;
|
|
2681
2682
|
errors: {
|
|
2682
2683
|
message: string;
|
|
@@ -2707,7 +2708,6 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2707
2708
|
created_at: string;
|
|
2708
2709
|
warning_code: "needs_to_be_reissued";
|
|
2709
2710
|
})[];
|
|
2710
|
-
workspace_id: string;
|
|
2711
2711
|
is_managed: false;
|
|
2712
2712
|
acs_system_id: string;
|
|
2713
2713
|
acs_credential_id: string;
|