@seamapi/types 1.737.0 → 1.739.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.
Files changed (43) hide show
  1. package/dist/connect.cjs +1867 -18
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +4282 -348
  4. package/dist/index.cjs +1867 -18
  5. package/dist/index.cjs.map +1 -1
  6. package/lib/seam/connect/models/acs/acs-access-group.d.ts +590 -0
  7. package/lib/seam/connect/models/acs/acs-access-group.js +4 -0
  8. package/lib/seam/connect/models/acs/acs-access-group.js.map +1 -1
  9. package/lib/seam/connect/models/acs/acs-access-groups/index.d.ts +1 -0
  10. package/lib/seam/connect/models/acs/acs-access-groups/index.js +2 -0
  11. package/lib/seam/connect/models/acs/acs-access-groups/index.js.map +1 -0
  12. package/lib/seam/connect/models/acs/acs-access-groups/pending-mutations.d.ts +511 -0
  13. package/lib/seam/connect/models/acs/acs-access-groups/pending-mutations.js +126 -0
  14. package/lib/seam/connect/models/acs/acs-access-groups/pending-mutations.js.map +1 -0
  15. package/lib/seam/connect/models/acs/acs-credential.d.ts +4 -4
  16. package/lib/seam/connect/models/acs/acs-entrance.d.ts +2 -2
  17. package/lib/seam/connect/models/acs/acs-users/acs-user.d.ts +4 -4
  18. package/lib/seam/connect/models/acs/acs-users/pending-mutations.d.ts +12 -12
  19. package/lib/seam/connect/models/acs/index.d.ts +1 -0
  20. package/lib/seam/connect/models/acs/index.js +1 -0
  21. package/lib/seam/connect/models/acs/index.js.map +1 -1
  22. package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +20 -20
  23. package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +8 -8
  24. package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +12 -12
  25. package/lib/seam/connect/models/batch.d.ts +868 -74
  26. package/lib/seam/connect/models/events/acs/entrances.d.ts +8 -8
  27. package/lib/seam/connect/models/events/acs/index.d.ts +8 -8
  28. package/lib/seam/connect/models/events/acs/users.d.ts +8 -8
  29. package/lib/seam/connect/models/events/devices.d.ts +4 -4
  30. package/lib/seam/connect/models/events/seam-event.d.ts +10 -10
  31. package/lib/seam/connect/models/phones/phone-session.d.ts +30 -30
  32. package/lib/seam/connect/models/user-identities/user-identity.d.ts +12 -12
  33. package/lib/seam/connect/openapi.d.ts +1761 -0
  34. package/lib/seam/connect/openapi.js +1758 -0
  35. package/lib/seam/connect/openapi.js.map +1 -1
  36. package/lib/seam/connect/route-types.d.ts +789 -0
  37. package/package.json +1 -1
  38. package/src/lib/seam/connect/models/acs/acs-access-group.ts +6 -0
  39. package/src/lib/seam/connect/models/acs/acs-access-groups/index.ts +1 -0
  40. package/src/lib/seam/connect/models/acs/acs-access-groups/pending-mutations.ts +171 -0
  41. package/src/lib/seam/connect/models/acs/index.ts +1 -0
  42. package/src/lib/seam/connect/openapi.ts +1800 -0
  43. package/src/lib/seam/connect/route-types.ts +902 -0
@@ -14,8 +14,8 @@ export declare const acs_entrance_added_event: z.ZodObject<{
14
14
  }, "strip", z.ZodTypeAny, {
15
15
  workspace_id: string;
16
16
  created_at: string;
17
- acs_system_id: string;
18
17
  acs_entrance_id: string;
18
+ acs_system_id: string;
19
19
  event_id: string;
20
20
  occurred_at: string;
21
21
  event_type: "acs_entrance.added";
@@ -23,8 +23,8 @@ export declare const acs_entrance_added_event: z.ZodObject<{
23
23
  }, {
24
24
  workspace_id: string;
25
25
  created_at: string;
26
- acs_system_id: string;
27
26
  acs_entrance_id: string;
27
+ acs_system_id: string;
28
28
  event_id: string;
29
29
  occurred_at: string;
30
30
  event_type: "acs_entrance.added";
@@ -45,8 +45,8 @@ export declare const acs_entrance_removed_event: z.ZodObject<{
45
45
  }, "strip", z.ZodTypeAny, {
46
46
  workspace_id: string;
47
47
  created_at: string;
48
- acs_system_id: string;
49
48
  acs_entrance_id: string;
49
+ acs_system_id: string;
50
50
  event_id: string;
51
51
  occurred_at: string;
52
52
  event_type: "acs_entrance.removed";
@@ -54,8 +54,8 @@ export declare const acs_entrance_removed_event: z.ZodObject<{
54
54
  }, {
55
55
  workspace_id: string;
56
56
  created_at: string;
57
- acs_system_id: string;
58
57
  acs_entrance_id: string;
58
+ acs_system_id: string;
59
59
  event_id: string;
60
60
  occurred_at: string;
61
61
  event_type: "acs_entrance.removed";
@@ -77,8 +77,8 @@ export declare const acs_entrance_events: readonly [z.ZodObject<{
77
77
  }, "strip", z.ZodTypeAny, {
78
78
  workspace_id: string;
79
79
  created_at: string;
80
- acs_system_id: string;
81
80
  acs_entrance_id: string;
81
+ acs_system_id: string;
82
82
  event_id: string;
83
83
  occurred_at: string;
84
84
  event_type: "acs_entrance.added";
@@ -86,8 +86,8 @@ export declare const acs_entrance_events: readonly [z.ZodObject<{
86
86
  }, {
87
87
  workspace_id: string;
88
88
  created_at: string;
89
- acs_system_id: string;
90
89
  acs_entrance_id: string;
90
+ acs_system_id: string;
91
91
  event_id: string;
92
92
  occurred_at: string;
93
93
  event_type: "acs_entrance.added";
@@ -107,8 +107,8 @@ export declare const acs_entrance_events: readonly [z.ZodObject<{
107
107
  }, "strip", z.ZodTypeAny, {
108
108
  workspace_id: string;
109
109
  created_at: string;
110
- acs_system_id: string;
111
110
  acs_entrance_id: string;
111
+ acs_system_id: string;
112
112
  event_id: string;
113
113
  occurred_at: string;
114
114
  event_type: "acs_entrance.removed";
@@ -116,8 +116,8 @@ export declare const acs_entrance_events: readonly [z.ZodObject<{
116
116
  }, {
117
117
  workspace_id: string;
118
118
  created_at: string;
119
- acs_system_id: string;
120
119
  acs_entrance_id: string;
120
+ acs_system_id: string;
121
121
  event_id: string;
122
122
  occurred_at: string;
123
123
  event_type: "acs_entrance.removed";
@@ -304,8 +304,8 @@ export declare const acs_events: readonly [import("zod").ZodObject<{
304
304
  }, "strip", import("zod").ZodTypeAny, {
305
305
  workspace_id: string;
306
306
  created_at: string;
307
- acs_system_id: string;
308
307
  acs_user_id: string;
308
+ acs_system_id: string;
309
309
  event_id: string;
310
310
  occurred_at: string;
311
311
  event_type: "acs_user.created";
@@ -313,8 +313,8 @@ export declare const acs_events: readonly [import("zod").ZodObject<{
313
313
  }, {
314
314
  workspace_id: string;
315
315
  created_at: string;
316
- acs_system_id: string;
317
316
  acs_user_id: string;
317
+ acs_system_id: string;
318
318
  event_id: string;
319
319
  occurred_at: string;
320
320
  event_type: "acs_user.created";
@@ -334,8 +334,8 @@ export declare const acs_events: readonly [import("zod").ZodObject<{
334
334
  }, "strip", import("zod").ZodTypeAny, {
335
335
  workspace_id: string;
336
336
  created_at: string;
337
- acs_system_id: string;
338
337
  acs_user_id: string;
338
+ acs_system_id: string;
339
339
  event_id: string;
340
340
  occurred_at: string;
341
341
  event_type: "acs_user.deleted";
@@ -343,8 +343,8 @@ export declare const acs_events: readonly [import("zod").ZodObject<{
343
343
  }, {
344
344
  workspace_id: string;
345
345
  created_at: string;
346
- acs_system_id: string;
347
346
  acs_user_id: string;
347
+ acs_system_id: string;
348
348
  event_id: string;
349
349
  occurred_at: string;
350
350
  event_type: "acs_user.deleted";
@@ -454,8 +454,8 @@ export declare const acs_events: readonly [import("zod").ZodObject<{
454
454
  }, "strip", import("zod").ZodTypeAny, {
455
455
  workspace_id: string;
456
456
  created_at: string;
457
- acs_system_id: string;
458
457
  acs_entrance_id: string;
458
+ acs_system_id: string;
459
459
  event_id: string;
460
460
  occurred_at: string;
461
461
  event_type: "acs_entrance.added";
@@ -463,8 +463,8 @@ export declare const acs_events: readonly [import("zod").ZodObject<{
463
463
  }, {
464
464
  workspace_id: string;
465
465
  created_at: string;
466
- acs_system_id: string;
467
466
  acs_entrance_id: string;
467
+ acs_system_id: string;
468
468
  event_id: string;
469
469
  occurred_at: string;
470
470
  event_type: "acs_entrance.added";
@@ -484,8 +484,8 @@ export declare const acs_events: readonly [import("zod").ZodObject<{
484
484
  }, "strip", import("zod").ZodTypeAny, {
485
485
  workspace_id: string;
486
486
  created_at: string;
487
- acs_system_id: string;
488
487
  acs_entrance_id: string;
488
+ acs_system_id: string;
489
489
  event_id: string;
490
490
  occurred_at: string;
491
491
  event_type: "acs_entrance.removed";
@@ -493,8 +493,8 @@ export declare const acs_events: readonly [import("zod").ZodObject<{
493
493
  }, {
494
494
  workspace_id: string;
495
495
  created_at: string;
496
- acs_system_id: string;
497
496
  acs_entrance_id: string;
497
+ acs_system_id: string;
498
498
  event_id: string;
499
499
  occurred_at: string;
500
500
  event_type: "acs_entrance.removed";
@@ -14,8 +14,8 @@ export declare const acs_user_deleted_event: z.ZodObject<{
14
14
  }, "strip", z.ZodTypeAny, {
15
15
  workspace_id: string;
16
16
  created_at: string;
17
- acs_system_id: string;
18
17
  acs_user_id: string;
18
+ acs_system_id: string;
19
19
  event_id: string;
20
20
  occurred_at: string;
21
21
  event_type: "acs_user.deleted";
@@ -23,8 +23,8 @@ export declare const acs_user_deleted_event: z.ZodObject<{
23
23
  }, {
24
24
  workspace_id: string;
25
25
  created_at: string;
26
- acs_system_id: string;
27
26
  acs_user_id: string;
27
+ acs_system_id: string;
28
28
  event_id: string;
29
29
  occurred_at: string;
30
30
  event_type: "acs_user.deleted";
@@ -46,8 +46,8 @@ export declare const acs_user_created_event: z.ZodObject<{
46
46
  }, "strip", z.ZodTypeAny, {
47
47
  workspace_id: string;
48
48
  created_at: string;
49
- acs_system_id: string;
50
49
  acs_user_id: string;
50
+ acs_system_id: string;
51
51
  event_id: string;
52
52
  occurred_at: string;
53
53
  event_type: "acs_user.created";
@@ -55,8 +55,8 @@ export declare const acs_user_created_event: z.ZodObject<{
55
55
  }, {
56
56
  workspace_id: string;
57
57
  created_at: string;
58
- acs_system_id: string;
59
58
  acs_user_id: string;
59
+ acs_system_id: string;
60
60
  event_id: string;
61
61
  occurred_at: string;
62
62
  event_type: "acs_user.created";
@@ -78,8 +78,8 @@ export declare const acs_user_events: readonly [z.ZodObject<{
78
78
  }, "strip", z.ZodTypeAny, {
79
79
  workspace_id: string;
80
80
  created_at: string;
81
- acs_system_id: string;
82
81
  acs_user_id: string;
82
+ acs_system_id: string;
83
83
  event_id: string;
84
84
  occurred_at: string;
85
85
  event_type: "acs_user.created";
@@ -87,8 +87,8 @@ export declare const acs_user_events: readonly [z.ZodObject<{
87
87
  }, {
88
88
  workspace_id: string;
89
89
  created_at: string;
90
- acs_system_id: string;
91
90
  acs_user_id: string;
91
+ acs_system_id: string;
92
92
  event_id: string;
93
93
  occurred_at: string;
94
94
  event_type: "acs_user.created";
@@ -108,8 +108,8 @@ export declare const acs_user_events: readonly [z.ZodObject<{
108
108
  }, "strip", z.ZodTypeAny, {
109
109
  workspace_id: string;
110
110
  created_at: string;
111
- acs_system_id: string;
112
111
  acs_user_id: string;
112
+ acs_system_id: string;
113
113
  event_id: string;
114
114
  occurred_at: string;
115
115
  event_type: "acs_user.deleted";
@@ -117,8 +117,8 @@ export declare const acs_user_events: readonly [z.ZodObject<{
117
117
  }, {
118
118
  workspace_id: string;
119
119
  created_at: string;
120
- acs_system_id: string;
121
120
  acs_user_id: string;
121
+ acs_system_id: string;
122
122
  event_id: string;
123
123
  occurred_at: string;
124
124
  event_type: "acs_user.deleted";
@@ -1431,9 +1431,9 @@ export declare const lock_unlocked_event: z.ZodObject<{
1431
1431
  customer_key?: string | undefined;
1432
1432
  access_code_id?: string | undefined;
1433
1433
  user_identity_id?: string | undefined;
1434
- acs_system_id?: string | undefined;
1435
1434
  acs_user_id?: string | undefined;
1436
1435
  acs_entrance_id?: string | undefined;
1436
+ acs_system_id?: string | undefined;
1437
1437
  action_attempt_id?: string | undefined;
1438
1438
  device_custom_metadata?: Record<string, string | boolean> | undefined;
1439
1439
  connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
@@ -1450,9 +1450,9 @@ export declare const lock_unlocked_event: z.ZodObject<{
1450
1450
  customer_key?: string | undefined;
1451
1451
  access_code_id?: string | undefined;
1452
1452
  user_identity_id?: string | undefined;
1453
- acs_system_id?: string | undefined;
1454
1453
  acs_user_id?: string | undefined;
1455
1454
  acs_entrance_id?: string | undefined;
1455
+ acs_system_id?: string | undefined;
1456
1456
  action_attempt_id?: string | undefined;
1457
1457
  device_custom_metadata?: Record<string, string | boolean> | undefined;
1458
1458
  connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
@@ -3250,9 +3250,9 @@ export declare const device_events: readonly [z.ZodObject<{
3250
3250
  customer_key?: string | undefined;
3251
3251
  access_code_id?: string | undefined;
3252
3252
  user_identity_id?: string | undefined;
3253
- acs_system_id?: string | undefined;
3254
3253
  acs_user_id?: string | undefined;
3255
3254
  acs_entrance_id?: string | undefined;
3255
+ acs_system_id?: string | undefined;
3256
3256
  action_attempt_id?: string | undefined;
3257
3257
  device_custom_metadata?: Record<string, string | boolean> | undefined;
3258
3258
  connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
@@ -3269,9 +3269,9 @@ export declare const device_events: readonly [z.ZodObject<{
3269
3269
  customer_key?: string | undefined;
3270
3270
  access_code_id?: string | undefined;
3271
3271
  user_identity_id?: string | undefined;
3272
- acs_system_id?: string | undefined;
3273
3272
  acs_user_id?: string | undefined;
3274
3273
  acs_entrance_id?: string | undefined;
3274
+ acs_system_id?: string | undefined;
3275
3275
  action_attempt_id?: string | undefined;
3276
3276
  device_custom_metadata?: Record<string, string | boolean> | undefined;
3277
3277
  connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
@@ -1971,8 +1971,8 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
1971
1971
  }, "strip", z.ZodTypeAny, {
1972
1972
  workspace_id: string;
1973
1973
  created_at: string;
1974
- acs_system_id: string;
1975
1974
  acs_user_id: string;
1975
+ acs_system_id: string;
1976
1976
  event_id: string;
1977
1977
  occurred_at: string;
1978
1978
  event_type: "acs_user.created";
@@ -1980,8 +1980,8 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
1980
1980
  }, {
1981
1981
  workspace_id: string;
1982
1982
  created_at: string;
1983
- acs_system_id: string;
1984
1983
  acs_user_id: string;
1984
+ acs_system_id: string;
1985
1985
  event_id: string;
1986
1986
  occurred_at: string;
1987
1987
  event_type: "acs_user.created";
@@ -2001,8 +2001,8 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
2001
2001
  }, "strip", z.ZodTypeAny, {
2002
2002
  workspace_id: string;
2003
2003
  created_at: string;
2004
- acs_system_id: string;
2005
2004
  acs_user_id: string;
2005
+ acs_system_id: string;
2006
2006
  event_id: string;
2007
2007
  occurred_at: string;
2008
2008
  event_type: "acs_user.deleted";
@@ -2010,8 +2010,8 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
2010
2010
  }, {
2011
2011
  workspace_id: string;
2012
2012
  created_at: string;
2013
- acs_system_id: string;
2014
2013
  acs_user_id: string;
2014
+ acs_system_id: string;
2015
2015
  event_id: string;
2016
2016
  occurred_at: string;
2017
2017
  event_type: "acs_user.deleted";
@@ -2121,8 +2121,8 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
2121
2121
  }, "strip", z.ZodTypeAny, {
2122
2122
  workspace_id: string;
2123
2123
  created_at: string;
2124
- acs_system_id: string;
2125
2124
  acs_entrance_id: string;
2125
+ acs_system_id: string;
2126
2126
  event_id: string;
2127
2127
  occurred_at: string;
2128
2128
  event_type: "acs_entrance.added";
@@ -2130,8 +2130,8 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
2130
2130
  }, {
2131
2131
  workspace_id: string;
2132
2132
  created_at: string;
2133
- acs_system_id: string;
2134
2133
  acs_entrance_id: string;
2134
+ acs_system_id: string;
2135
2135
  event_id: string;
2136
2136
  occurred_at: string;
2137
2137
  event_type: "acs_entrance.added";
@@ -2151,8 +2151,8 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
2151
2151
  }, "strip", z.ZodTypeAny, {
2152
2152
  workspace_id: string;
2153
2153
  created_at: string;
2154
- acs_system_id: string;
2155
2154
  acs_entrance_id: string;
2155
+ acs_system_id: string;
2156
2156
  event_id: string;
2157
2157
  occurred_at: string;
2158
2158
  event_type: "acs_entrance.removed";
@@ -2160,8 +2160,8 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
2160
2160
  }, {
2161
2161
  workspace_id: string;
2162
2162
  created_at: string;
2163
- acs_system_id: string;
2164
2163
  acs_entrance_id: string;
2164
+ acs_system_id: string;
2165
2165
  event_id: string;
2166
2166
  occurred_at: string;
2167
2167
  event_type: "acs_entrance.removed";
@@ -4226,9 +4226,9 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
4226
4226
  customer_key?: string | undefined;
4227
4227
  access_code_id?: string | undefined;
4228
4228
  user_identity_id?: string | undefined;
4229
- acs_system_id?: string | undefined;
4230
4229
  acs_user_id?: string | undefined;
4231
4230
  acs_entrance_id?: string | undefined;
4231
+ acs_system_id?: string | undefined;
4232
4232
  action_attempt_id?: string | undefined;
4233
4233
  device_custom_metadata?: Record<string, string | boolean> | undefined;
4234
4234
  connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
@@ -4245,9 +4245,9 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
4245
4245
  customer_key?: string | undefined;
4246
4246
  access_code_id?: string | undefined;
4247
4247
  user_identity_id?: string | undefined;
4248
- acs_system_id?: string | undefined;
4249
4248
  acs_user_id?: string | undefined;
4250
4249
  acs_entrance_id?: string | undefined;
4250
+ acs_system_id?: string | undefined;
4251
4251
  action_attempt_id?: string | undefined;
4252
4252
  device_custom_metadata?: Record<string, string | boolean> | undefined;
4253
4253
  connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
@@ -367,8 +367,8 @@ declare const phone_provider_session: z.ZodObject<{
367
367
  }[];
368
368
  connected_account_id: string;
369
369
  space_ids: string[];
370
- acs_system_id: string;
371
370
  acs_entrance_id: string;
371
+ acs_system_id: string;
372
372
  salto_ks_metadata?: {
373
373
  lock_type: string;
374
374
  battery_level: string;
@@ -437,8 +437,8 @@ declare const phone_provider_session: z.ZodObject<{
437
437
  }[];
438
438
  connected_account_id: string;
439
439
  space_ids: string[];
440
- acs_system_id: string;
441
440
  acs_entrance_id: string;
441
+ acs_system_id: string;
442
442
  salto_ks_metadata?: {
443
443
  lock_type: string;
444
444
  battery_level: string;
@@ -546,8 +546,8 @@ declare const phone_provider_session: z.ZodObject<{
546
546
  }[];
547
547
  connected_account_id: string;
548
548
  space_ids: string[];
549
- acs_system_id: string;
550
549
  acs_entrance_id: string;
550
+ acs_system_id: string;
551
551
  salto_ks_metadata?: {
552
552
  lock_type: string;
553
553
  battery_level: string;
@@ -633,9 +633,9 @@ declare const phone_provider_session: z.ZodObject<{
633
633
  user_identity_id?: string | undefined;
634
634
  issued_at?: string | null | undefined;
635
635
  is_issued?: boolean | undefined;
636
+ acs_user_id?: string | undefined;
636
637
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
637
638
  external_type_display_name?: string | undefined;
638
- acs_user_id?: string | undefined;
639
639
  acs_credential_pool_id?: string | undefined;
640
640
  parent_acs_credential_id?: string | undefined;
641
641
  card_number?: string | null | undefined;
@@ -689,8 +689,8 @@ declare const phone_provider_session: z.ZodObject<{
689
689
  }[];
690
690
  connected_account_id: string;
691
691
  space_ids: string[];
692
- acs_system_id: string;
693
692
  acs_entrance_id: string;
693
+ acs_system_id: string;
694
694
  salto_ks_metadata?: {
695
695
  lock_type: string;
696
696
  battery_level: string;
@@ -776,9 +776,9 @@ declare const phone_provider_session: z.ZodObject<{
776
776
  user_identity_id?: string | undefined;
777
777
  issued_at?: string | null | undefined;
778
778
  is_issued?: boolean | undefined;
779
+ acs_user_id?: string | undefined;
779
780
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
780
781
  external_type_display_name?: string | undefined;
781
- acs_user_id?: string | undefined;
782
782
  acs_credential_pool_id?: string | undefined;
783
783
  parent_acs_credential_id?: string | undefined;
784
784
  card_number?: string | null | undefined;
@@ -834,8 +834,8 @@ declare const phone_provider_session: z.ZodObject<{
834
834
  }[];
835
835
  connected_account_id: string;
836
836
  space_ids: string[];
837
- acs_system_id: string;
838
837
  acs_entrance_id: string;
838
+ acs_system_id: string;
839
839
  salto_ks_metadata?: {
840
840
  lock_type: string;
841
841
  battery_level: string;
@@ -921,9 +921,9 @@ declare const phone_provider_session: z.ZodObject<{
921
921
  user_identity_id?: string | undefined;
922
922
  issued_at?: string | null | undefined;
923
923
  is_issued?: boolean | undefined;
924
+ acs_user_id?: string | undefined;
924
925
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
925
926
  external_type_display_name?: string | undefined;
926
- acs_user_id?: string | undefined;
927
927
  acs_credential_pool_id?: string | undefined;
928
928
  parent_acs_credential_id?: string | undefined;
929
929
  card_number?: string | null | undefined;
@@ -985,8 +985,8 @@ declare const phone_provider_session: z.ZodObject<{
985
985
  }[];
986
986
  connected_account_id: string;
987
987
  space_ids: string[];
988
- acs_system_id: string;
989
988
  acs_entrance_id: string;
989
+ acs_system_id: string;
990
990
  salto_ks_metadata?: {
991
991
  lock_type: string;
992
992
  battery_level: string;
@@ -1072,9 +1072,9 @@ declare const phone_provider_session: z.ZodObject<{
1072
1072
  user_identity_id?: string | undefined;
1073
1073
  issued_at?: string | null | undefined;
1074
1074
  is_issued?: boolean | undefined;
1075
+ acs_user_id?: string | undefined;
1075
1076
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
1076
1077
  external_type_display_name?: string | undefined;
1077
- acs_user_id?: string | undefined;
1078
1078
  acs_credential_pool_id?: string | undefined;
1079
1079
  parent_acs_credential_id?: string | undefined;
1080
1080
  card_number?: string | null | undefined;
@@ -1458,8 +1458,8 @@ export declare const phone_session: z.ZodObject<{
1458
1458
  }[];
1459
1459
  connected_account_id: string;
1460
1460
  space_ids: string[];
1461
- acs_system_id: string;
1462
1461
  acs_entrance_id: string;
1462
+ acs_system_id: string;
1463
1463
  salto_ks_metadata?: {
1464
1464
  lock_type: string;
1465
1465
  battery_level: string;
@@ -1528,8 +1528,8 @@ export declare const phone_session: z.ZodObject<{
1528
1528
  }[];
1529
1529
  connected_account_id: string;
1530
1530
  space_ids: string[];
1531
- acs_system_id: string;
1532
1531
  acs_entrance_id: string;
1532
+ acs_system_id: string;
1533
1533
  salto_ks_metadata?: {
1534
1534
  lock_type: string;
1535
1535
  battery_level: string;
@@ -1637,8 +1637,8 @@ export declare const phone_session: z.ZodObject<{
1637
1637
  }[];
1638
1638
  connected_account_id: string;
1639
1639
  space_ids: string[];
1640
- acs_system_id: string;
1641
1640
  acs_entrance_id: string;
1641
+ acs_system_id: string;
1642
1642
  salto_ks_metadata?: {
1643
1643
  lock_type: string;
1644
1644
  battery_level: string;
@@ -1724,9 +1724,9 @@ export declare const phone_session: z.ZodObject<{
1724
1724
  user_identity_id?: string | undefined;
1725
1725
  issued_at?: string | null | undefined;
1726
1726
  is_issued?: boolean | undefined;
1727
+ acs_user_id?: string | undefined;
1727
1728
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
1728
1729
  external_type_display_name?: string | undefined;
1729
- acs_user_id?: string | undefined;
1730
1730
  acs_credential_pool_id?: string | undefined;
1731
1731
  parent_acs_credential_id?: string | undefined;
1732
1732
  card_number?: string | null | undefined;
@@ -1780,8 +1780,8 @@ export declare const phone_session: z.ZodObject<{
1780
1780
  }[];
1781
1781
  connected_account_id: string;
1782
1782
  space_ids: string[];
1783
- acs_system_id: string;
1784
1783
  acs_entrance_id: string;
1784
+ acs_system_id: string;
1785
1785
  salto_ks_metadata?: {
1786
1786
  lock_type: string;
1787
1787
  battery_level: string;
@@ -1867,9 +1867,9 @@ export declare const phone_session: z.ZodObject<{
1867
1867
  user_identity_id?: string | undefined;
1868
1868
  issued_at?: string | null | undefined;
1869
1869
  is_issued?: boolean | undefined;
1870
+ acs_user_id?: string | undefined;
1870
1871
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
1871
1872
  external_type_display_name?: string | undefined;
1872
- acs_user_id?: string | undefined;
1873
1873
  acs_credential_pool_id?: string | undefined;
1874
1874
  parent_acs_credential_id?: string | undefined;
1875
1875
  card_number?: string | null | undefined;
@@ -1925,8 +1925,8 @@ export declare const phone_session: z.ZodObject<{
1925
1925
  }[];
1926
1926
  connected_account_id: string;
1927
1927
  space_ids: string[];
1928
- acs_system_id: string;
1929
1928
  acs_entrance_id: string;
1929
+ acs_system_id: string;
1930
1930
  salto_ks_metadata?: {
1931
1931
  lock_type: string;
1932
1932
  battery_level: string;
@@ -2012,9 +2012,9 @@ export declare const phone_session: z.ZodObject<{
2012
2012
  user_identity_id?: string | undefined;
2013
2013
  issued_at?: string | null | undefined;
2014
2014
  is_issued?: boolean | undefined;
2015
+ acs_user_id?: string | undefined;
2015
2016
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
2016
2017
  external_type_display_name?: string | undefined;
2017
- acs_user_id?: string | undefined;
2018
2018
  acs_credential_pool_id?: string | undefined;
2019
2019
  parent_acs_credential_id?: string | undefined;
2020
2020
  card_number?: string | null | undefined;
@@ -2076,8 +2076,8 @@ export declare const phone_session: z.ZodObject<{
2076
2076
  }[];
2077
2077
  connected_account_id: string;
2078
2078
  space_ids: string[];
2079
- acs_system_id: string;
2080
2079
  acs_entrance_id: string;
2080
+ acs_system_id: string;
2081
2081
  salto_ks_metadata?: {
2082
2082
  lock_type: string;
2083
2083
  battery_level: string;
@@ -2163,9 +2163,9 @@ export declare const phone_session: z.ZodObject<{
2163
2163
  user_identity_id?: string | undefined;
2164
2164
  issued_at?: string | null | undefined;
2165
2165
  is_issued?: boolean | undefined;
2166
+ acs_user_id?: string | undefined;
2166
2167
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
2167
2168
  external_type_display_name?: string | undefined;
2168
- acs_user_id?: string | undefined;
2169
2169
  acs_credential_pool_id?: string | undefined;
2170
2170
  parent_acs_credential_id?: string | undefined;
2171
2171
  card_number?: string | null | undefined;
@@ -2200,14 +2200,14 @@ export declare const phone_session: z.ZodObject<{
2200
2200
  message: string;
2201
2201
  created_at: string;
2202
2202
  error_code: "issue_with_acs_user";
2203
- acs_system_id: string;
2204
2203
  acs_user_id: string;
2204
+ acs_system_id: string;
2205
2205
  }, {
2206
2206
  message: string;
2207
2207
  created_at: string;
2208
2208
  error_code: "issue_with_acs_user";
2209
- acs_system_id: string;
2210
2209
  acs_user_id: string;
2210
+ acs_system_id: string;
2211
2211
  }>]>, "many">;
2212
2212
  warnings: z.ZodArray<z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<{
2213
2213
  created_at: z.ZodString;
@@ -2245,8 +2245,8 @@ export declare const phone_session: z.ZodObject<{
2245
2245
  message: string;
2246
2246
  created_at: string;
2247
2247
  error_code: "issue_with_acs_user";
2248
- acs_system_id: string;
2249
2248
  acs_user_id: string;
2249
+ acs_system_id: string;
2250
2250
  }[];
2251
2251
  warnings: ({
2252
2252
  message: string;
@@ -2271,8 +2271,8 @@ export declare const phone_session: z.ZodObject<{
2271
2271
  message: string;
2272
2272
  created_at: string;
2273
2273
  error_code: "issue_with_acs_user";
2274
- acs_system_id: string;
2275
2274
  acs_user_id: string;
2275
+ acs_system_id: string;
2276
2276
  }[];
2277
2277
  warnings: ({
2278
2278
  message: string;
@@ -2342,8 +2342,8 @@ export declare const phone_session: z.ZodObject<{
2342
2342
  }[];
2343
2343
  connected_account_id: string;
2344
2344
  space_ids: string[];
2345
- acs_system_id: string;
2346
2345
  acs_entrance_id: string;
2346
+ acs_system_id: string;
2347
2347
  salto_ks_metadata?: {
2348
2348
  lock_type: string;
2349
2349
  battery_level: string;
@@ -2429,9 +2429,9 @@ export declare const phone_session: z.ZodObject<{
2429
2429
  user_identity_id?: string | undefined;
2430
2430
  issued_at?: string | null | undefined;
2431
2431
  is_issued?: boolean | undefined;
2432
+ acs_user_id?: string | undefined;
2432
2433
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
2433
2434
  external_type_display_name?: string | undefined;
2434
- acs_user_id?: string | undefined;
2435
2435
  acs_credential_pool_id?: string | undefined;
2436
2436
  parent_acs_credential_id?: string | undefined;
2437
2437
  card_number?: string | null | undefined;
@@ -2454,8 +2454,8 @@ export declare const phone_session: z.ZodObject<{
2454
2454
  message: string;
2455
2455
  created_at: string;
2456
2456
  error_code: "issue_with_acs_user";
2457
- acs_system_id: string;
2458
2457
  acs_user_id: string;
2458
+ acs_system_id: string;
2459
2459
  }[];
2460
2460
  warnings: ({
2461
2461
  message: string;
@@ -2524,8 +2524,8 @@ export declare const phone_session: z.ZodObject<{
2524
2524
  }[];
2525
2525
  connected_account_id: string;
2526
2526
  space_ids: string[];
2527
- acs_system_id: string;
2528
2527
  acs_entrance_id: string;
2528
+ acs_system_id: string;
2529
2529
  salto_ks_metadata?: {
2530
2530
  lock_type: string;
2531
2531
  battery_level: string;
@@ -2611,9 +2611,9 @@ export declare const phone_session: z.ZodObject<{
2611
2611
  user_identity_id?: string | undefined;
2612
2612
  issued_at?: string | null | undefined;
2613
2613
  is_issued?: boolean | undefined;
2614
+ acs_user_id?: string | undefined;
2614
2615
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
2615
2616
  external_type_display_name?: string | undefined;
2616
- acs_user_id?: string | undefined;
2617
2617
  acs_credential_pool_id?: string | undefined;
2618
2618
  parent_acs_credential_id?: string | undefined;
2619
2619
  card_number?: string | null | undefined;
@@ -2636,8 +2636,8 @@ export declare const phone_session: z.ZodObject<{
2636
2636
  message: string;
2637
2637
  created_at: string;
2638
2638
  error_code: "issue_with_acs_user";
2639
- acs_system_id: string;
2640
2639
  acs_user_id: string;
2640
+ acs_system_id: string;
2641
2641
  }[];
2642
2642
  warnings: ({
2643
2643
  message: string;