@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
@@ -199,8 +199,8 @@ export declare const acs_entrance: z.ZodObject<{
199
199
  }[];
200
200
  connected_account_id: string;
201
201
  space_ids: string[];
202
- acs_system_id: string;
203
202
  acs_entrance_id: string;
203
+ acs_system_id: string;
204
204
  salto_ks_metadata?: {
205
205
  lock_type: string;
206
206
  battery_level: string;
@@ -269,8 +269,8 @@ export declare const acs_entrance: z.ZodObject<{
269
269
  }[];
270
270
  connected_account_id: string;
271
271
  space_ids: string[];
272
- acs_system_id: string;
273
272
  acs_entrance_id: string;
273
+ acs_system_id: string;
274
274
  salto_ks_metadata?: {
275
275
  lock_type: string;
276
276
  battery_level: string;
@@ -784,8 +784,8 @@ export declare const acs_user: z.ZodObject<{
784
784
  warning_code: "latch_resident_user";
785
785
  })[];
786
786
  is_managed: true;
787
- acs_system_id: string;
788
787
  acs_user_id: string;
788
+ acs_system_id: string;
789
789
  last_successful_sync_at: string | null;
790
790
  email?: string | undefined;
791
791
  user_identity_id?: string | undefined;
@@ -915,8 +915,8 @@ export declare const acs_user: z.ZodObject<{
915
915
  warning_code: "latch_resident_user";
916
916
  })[];
917
917
  is_managed: true;
918
- acs_system_id: string;
919
918
  acs_user_id: string;
919
+ acs_system_id: string;
920
920
  last_successful_sync_at: string | null;
921
921
  email?: string | undefined;
922
922
  user_identity_id?: string | undefined;
@@ -1451,8 +1451,8 @@ export declare const unmanaged_acs_user: z.ZodObject<{
1451
1451
  warning_code: "latch_resident_user";
1452
1452
  })[];
1453
1453
  is_managed: false;
1454
- acs_system_id: string;
1455
1454
  acs_user_id: string;
1455
+ acs_system_id: string;
1456
1456
  last_successful_sync_at: string | null;
1457
1457
  email?: string | undefined;
1458
1458
  user_identity_id?: string | undefined;
@@ -1582,8 +1582,8 @@ export declare const unmanaged_acs_user: z.ZodObject<{
1582
1582
  warning_code: "latch_resident_user";
1583
1583
  })[];
1584
1584
  is_managed: false;
1585
- acs_system_id: string;
1586
1585
  acs_user_id: string;
1586
+ acs_system_id: string;
1587
1587
  last_successful_sync_at: string | null;
1588
1588
  email?: string | undefined;
1589
1589
  user_identity_id?: string | undefined;
@@ -596,12 +596,6 @@ declare const _acs_user_pending_mutations_map: z.ZodObject<{
596
596
  created_at: string;
597
597
  mutation_code: "deleting";
598
598
  } | null | undefined;
599
- deferring_creation?: {
600
- message: string;
601
- created_at: string;
602
- mutation_code: "deferring_creation";
603
- scheduled_at?: string | null | undefined;
604
- } | null | undefined;
605
599
  updating_access_schedule?: {
606
600
  message: string;
607
601
  created_at: string;
@@ -615,6 +609,12 @@ declare const _acs_user_pending_mutations_map: z.ZodObject<{
615
609
  ends_at: string | null;
616
610
  };
617
611
  } | null | undefined;
612
+ deferring_creation?: {
613
+ message: string;
614
+ created_at: string;
615
+ mutation_code: "deferring_creation";
616
+ scheduled_at?: string | null | undefined;
617
+ } | null | undefined;
618
618
  updating_suspension_state?: {
619
619
  message: string;
620
620
  created_at: string;
@@ -681,12 +681,6 @@ declare const _acs_user_pending_mutations_map: z.ZodObject<{
681
681
  created_at: string;
682
682
  mutation_code: "deleting";
683
683
  } | null | undefined;
684
- deferring_creation?: {
685
- message: string;
686
- created_at: string;
687
- mutation_code: "deferring_creation";
688
- scheduled_at?: string | null | undefined;
689
- } | null | undefined;
690
684
  updating_access_schedule?: {
691
685
  message: string;
692
686
  created_at: string;
@@ -700,6 +694,12 @@ declare const _acs_user_pending_mutations_map: z.ZodObject<{
700
694
  ends_at: string | null;
701
695
  };
702
696
  } | null | undefined;
697
+ deferring_creation?: {
698
+ message: string;
699
+ created_at: string;
700
+ mutation_code: "deferring_creation";
701
+ scheduled_at?: string | null | undefined;
702
+ } | null | undefined;
703
703
  updating_suspension_state?: {
704
704
  message: string;
705
705
  created_at: string;
@@ -1,4 +1,5 @@
1
1
  export * from './acs-access-group.js';
2
+ export * from './acs-access-groups/index.js';
2
3
  export * from './acs-credential.js';
3
4
  export * from './acs-credential-pool.js';
4
5
  export * from './acs-credential-provisioning-automation.js';
@@ -1,4 +1,5 @@
1
1
  export * from './acs-access-group.js';
2
+ export * from './acs-access-groups/index.js';
2
3
  export * from './acs-credential.js';
3
4
  export * from './acs-credential-pool.js';
4
5
  export * from './acs-credential-provisioning-automation.js';
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/index.ts"],"names":[],"mappings":"AAAA,cAAc,uBAAuB,CAAA;AACrC,cAAc,qBAAqB,CAAA;AACnC,cAAc,0BAA0B,CAAA;AACxC,cAAc,6CAA6C,CAAA;AAC3D,cAAc,4BAA4B,CAAA;AAC1C,cAAc,kBAAkB,CAAA;AAChC,cAAc,mBAAmB,CAAA;AACjC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,sBAAsB,CAAA;AACpC,cAAc,qBAAqB,CAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/index.ts"],"names":[],"mappings":"AAAA,cAAc,uBAAuB,CAAA;AACrC,cAAc,8BAA8B,CAAA;AAC5C,cAAc,qBAAqB,CAAA;AACnC,cAAc,0BAA0B,CAAA;AACxC,cAAc,6CAA6C,CAAA;AAC3D,cAAc,4BAA4B,CAAA;AAC1C,cAAc,kBAAkB,CAAA;AAChC,cAAc,mBAAmB,CAAA;AACjC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,sBAAsB,CAAA;AACpC,cAAc,qBAAqB,CAAA"}
@@ -512,9 +512,9 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
512
512
  user_identity_id?: string | undefined;
513
513
  issued_at?: string | null | undefined;
514
514
  is_issued?: boolean | undefined;
515
+ acs_user_id?: string | undefined;
515
516
  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;
516
517
  external_type_display_name?: string | undefined;
517
- acs_user_id?: string | undefined;
518
518
  acs_credential_pool_id?: string | undefined;
519
519
  parent_acs_credential_id?: string | undefined;
520
520
  card_number?: string | null | undefined;
@@ -584,9 +584,9 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
584
584
  user_identity_id?: string | undefined;
585
585
  issued_at?: string | null | undefined;
586
586
  is_issued?: boolean | undefined;
587
+ acs_user_id?: string | undefined;
587
588
  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;
588
589
  external_type_display_name?: string | undefined;
589
- acs_user_id?: string | undefined;
590
590
  acs_credential_pool_id?: string | undefined;
591
591
  parent_acs_credential_id?: string | undefined;
592
592
  card_number?: string | null | undefined;
@@ -821,9 +821,9 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
821
821
  user_identity_id?: string | undefined;
822
822
  issued_at?: string | null | undefined;
823
823
  is_issued?: boolean | undefined;
824
+ acs_user_id?: string | undefined;
824
825
  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;
825
826
  external_type_display_name?: string | undefined;
826
- acs_user_id?: string | undefined;
827
827
  acs_credential_pool_id?: string | undefined;
828
828
  parent_acs_credential_id?: string | undefined;
829
829
  card_number?: string | null | undefined;
@@ -893,9 +893,9 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
893
893
  user_identity_id?: string | undefined;
894
894
  issued_at?: string | null | undefined;
895
895
  is_issued?: boolean | undefined;
896
+ acs_user_id?: string | undefined;
896
897
  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;
897
898
  external_type_display_name?: string | undefined;
898
- acs_user_id?: string | undefined;
899
899
  acs_credential_pool_id?: string | undefined;
900
900
  parent_acs_credential_id?: string | undefined;
901
901
  card_number?: string | null | undefined;
@@ -1002,9 +1002,9 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
1002
1002
  user_identity_id?: string | undefined;
1003
1003
  issued_at?: string | null | undefined;
1004
1004
  is_issued?: boolean | undefined;
1005
+ acs_user_id?: string | undefined;
1005
1006
  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;
1006
1007
  external_type_display_name?: string | undefined;
1007
- acs_user_id?: string | undefined;
1008
1008
  acs_credential_pool_id?: string | undefined;
1009
1009
  parent_acs_credential_id?: string | undefined;
1010
1010
  card_number?: string | null | undefined;
@@ -1074,9 +1074,9 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
1074
1074
  user_identity_id?: string | undefined;
1075
1075
  issued_at?: string | null | undefined;
1076
1076
  is_issued?: boolean | undefined;
1077
+ acs_user_id?: string | undefined;
1077
1078
  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;
1078
1079
  external_type_display_name?: string | undefined;
1079
- acs_user_id?: string | undefined;
1080
1080
  acs_credential_pool_id?: string | undefined;
1081
1081
  parent_acs_credential_id?: string | undefined;
1082
1082
  card_number?: string | null | undefined;
@@ -1173,9 +1173,9 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
1173
1173
  user_identity_id?: string | undefined;
1174
1174
  issued_at?: string | null | undefined;
1175
1175
  is_issued?: boolean | undefined;
1176
+ acs_user_id?: string | undefined;
1176
1177
  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;
1177
1178
  external_type_display_name?: string | undefined;
1178
- acs_user_id?: string | undefined;
1179
1179
  acs_credential_pool_id?: string | undefined;
1180
1180
  parent_acs_credential_id?: string | undefined;
1181
1181
  card_number?: string | null | undefined;
@@ -1245,9 +1245,9 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
1245
1245
  user_identity_id?: string | undefined;
1246
1246
  issued_at?: string | null | undefined;
1247
1247
  is_issued?: boolean | undefined;
1248
+ acs_user_id?: string | undefined;
1248
1249
  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;
1249
1250
  external_type_display_name?: string | undefined;
1250
- acs_user_id?: string | undefined;
1251
1251
  acs_credential_pool_id?: string | undefined;
1252
1252
  parent_acs_credential_id?: string | undefined;
1253
1253
  card_number?: string | null | undefined;
@@ -1349,9 +1349,9 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
1349
1349
  user_identity_id?: string | undefined;
1350
1350
  issued_at?: string | null | undefined;
1351
1351
  is_issued?: boolean | undefined;
1352
+ acs_user_id?: string | undefined;
1352
1353
  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;
1353
1354
  external_type_display_name?: string | undefined;
1354
- acs_user_id?: string | undefined;
1355
1355
  acs_credential_pool_id?: string | undefined;
1356
1356
  parent_acs_credential_id?: string | undefined;
1357
1357
  card_number?: string | null | undefined;
@@ -1421,9 +1421,9 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
1421
1421
  user_identity_id?: string | undefined;
1422
1422
  issued_at?: string | null | undefined;
1423
1423
  is_issued?: boolean | undefined;
1424
+ acs_user_id?: string | undefined;
1424
1425
  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;
1425
1426
  external_type_display_name?: string | undefined;
1426
- acs_user_id?: string | undefined;
1427
1427
  acs_credential_pool_id?: string | undefined;
1428
1428
  parent_acs_credential_id?: string | undefined;
1429
1429
  card_number?: string | null | undefined;
@@ -1526,9 +1526,9 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
1526
1526
  user_identity_id?: string | undefined;
1527
1527
  issued_at?: string | null | undefined;
1528
1528
  is_issued?: boolean | undefined;
1529
+ acs_user_id?: string | undefined;
1529
1530
  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;
1530
1531
  external_type_display_name?: string | undefined;
1531
- acs_user_id?: string | undefined;
1532
1532
  acs_credential_pool_id?: string | undefined;
1533
1533
  parent_acs_credential_id?: string | undefined;
1534
1534
  card_number?: string | null | undefined;
@@ -1598,9 +1598,9 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
1598
1598
  user_identity_id?: string | undefined;
1599
1599
  issued_at?: string | null | undefined;
1600
1600
  is_issued?: boolean | undefined;
1601
+ acs_user_id?: string | undefined;
1601
1602
  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;
1602
1603
  external_type_display_name?: string | undefined;
1603
- acs_user_id?: string | undefined;
1604
1604
  acs_credential_pool_id?: string | undefined;
1605
1605
  parent_acs_credential_id?: string | undefined;
1606
1606
  card_number?: string | null | undefined;
@@ -1945,9 +1945,9 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
1945
1945
  user_identity_id?: string | undefined;
1946
1946
  issued_at?: string | null | undefined;
1947
1947
  is_issued?: boolean | undefined;
1948
+ acs_user_id?: string | undefined;
1948
1949
  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;
1949
1950
  external_type_display_name?: string | undefined;
1950
- acs_user_id?: string | undefined;
1951
1951
  acs_credential_pool_id?: string | undefined;
1952
1952
  parent_acs_credential_id?: string | undefined;
1953
1953
  card_number?: string | null | undefined;
@@ -2017,9 +2017,9 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
2017
2017
  user_identity_id?: string | undefined;
2018
2018
  issued_at?: string | null | undefined;
2019
2019
  is_issued?: boolean | undefined;
2020
+ acs_user_id?: string | undefined;
2020
2021
  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;
2021
2022
  external_type_display_name?: string | undefined;
2022
- acs_user_id?: string | undefined;
2023
2023
  acs_credential_pool_id?: string | undefined;
2024
2024
  parent_acs_credential_id?: string | undefined;
2025
2025
  card_number?: string | null | undefined;
@@ -2254,9 +2254,9 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
2254
2254
  user_identity_id?: string | undefined;
2255
2255
  issued_at?: string | null | undefined;
2256
2256
  is_issued?: boolean | undefined;
2257
+ acs_user_id?: string | undefined;
2257
2258
  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;
2258
2259
  external_type_display_name?: string | undefined;
2259
- acs_user_id?: string | undefined;
2260
2260
  acs_credential_pool_id?: string | undefined;
2261
2261
  parent_acs_credential_id?: string | undefined;
2262
2262
  card_number?: string | null | undefined;
@@ -2326,9 +2326,9 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
2326
2326
  user_identity_id?: string | undefined;
2327
2327
  issued_at?: string | null | undefined;
2328
2328
  is_issued?: boolean | undefined;
2329
+ acs_user_id?: string | undefined;
2329
2330
  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;
2330
2331
  external_type_display_name?: string | undefined;
2331
- acs_user_id?: string | undefined;
2332
2332
  acs_credential_pool_id?: string | undefined;
2333
2333
  parent_acs_credential_id?: string | undefined;
2334
2334
  card_number?: string | null | undefined;
@@ -2403,9 +2403,9 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
2403
2403
  user_identity_id?: string | undefined;
2404
2404
  issued_at?: string | null | undefined;
2405
2405
  is_issued?: boolean | undefined;
2406
+ acs_user_id?: string | undefined;
2406
2407
  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;
2407
2408
  external_type_display_name?: string | undefined;
2408
- acs_user_id?: string | undefined;
2409
2409
  acs_credential_pool_id?: string | undefined;
2410
2410
  parent_acs_credential_id?: string | undefined;
2411
2411
  card_number?: string | null | undefined;
@@ -2475,9 +2475,9 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
2475
2475
  user_identity_id?: string | undefined;
2476
2476
  issued_at?: string | null | undefined;
2477
2477
  is_issued?: boolean | undefined;
2478
+ acs_user_id?: string | undefined;
2478
2479
  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;
2479
2480
  external_type_display_name?: string | undefined;
2480
- acs_user_id?: string | undefined;
2481
2481
  acs_credential_pool_id?: string | undefined;
2482
2482
  parent_acs_credential_id?: string | undefined;
2483
2483
  card_number?: string | null | undefined;
@@ -2553,9 +2553,9 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
2553
2553
  user_identity_id?: string | undefined;
2554
2554
  issued_at?: string | null | undefined;
2555
2555
  is_issued?: boolean | undefined;
2556
+ acs_user_id?: string | undefined;
2556
2557
  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;
2557
2558
  external_type_display_name?: string | undefined;
2558
- acs_user_id?: string | undefined;
2559
2559
  acs_credential_pool_id?: string | undefined;
2560
2560
  parent_acs_credential_id?: string | undefined;
2561
2561
  card_number?: string | null | undefined;
@@ -2625,9 +2625,9 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
2625
2625
  user_identity_id?: string | undefined;
2626
2626
  issued_at?: string | null | undefined;
2627
2627
  is_issued?: boolean | undefined;
2628
+ acs_user_id?: string | undefined;
2628
2629
  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;
2629
2630
  external_type_display_name?: string | undefined;
2630
- acs_user_id?: string | undefined;
2631
2631
  acs_credential_pool_id?: string | undefined;
2632
2632
  parent_acs_credential_id?: string | undefined;
2633
2633
  card_number?: string | null | undefined;
@@ -254,9 +254,9 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
254
254
  user_identity_id?: string | undefined;
255
255
  issued_at?: string | null | undefined;
256
256
  is_issued?: boolean | undefined;
257
+ acs_user_id?: string | undefined;
257
258
  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;
258
259
  external_type_display_name?: string | undefined;
259
- acs_user_id?: string | undefined;
260
260
  acs_credential_pool_id?: string | undefined;
261
261
  parent_acs_credential_id?: string | undefined;
262
262
  card_number?: string | null | undefined;
@@ -326,9 +326,9 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
326
326
  user_identity_id?: string | undefined;
327
327
  issued_at?: string | null | undefined;
328
328
  is_issued?: boolean | undefined;
329
+ acs_user_id?: string | undefined;
329
330
  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;
330
331
  external_type_display_name?: string | undefined;
331
- acs_user_id?: string | undefined;
332
332
  acs_credential_pool_id?: string | undefined;
333
333
  parent_acs_credential_id?: string | undefined;
334
334
  card_number?: string | null | undefined;
@@ -563,9 +563,9 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
563
563
  user_identity_id?: string | undefined;
564
564
  issued_at?: string | null | undefined;
565
565
  is_issued?: boolean | undefined;
566
+ acs_user_id?: string | undefined;
566
567
  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;
567
568
  external_type_display_name?: string | undefined;
568
- acs_user_id?: string | undefined;
569
569
  acs_credential_pool_id?: string | undefined;
570
570
  parent_acs_credential_id?: string | undefined;
571
571
  card_number?: string | null | undefined;
@@ -635,9 +635,9 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
635
635
  user_identity_id?: string | undefined;
636
636
  issued_at?: string | null | undefined;
637
637
  is_issued?: boolean | undefined;
638
+ acs_user_id?: string | undefined;
638
639
  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;
639
640
  external_type_display_name?: string | undefined;
640
- acs_user_id?: string | undefined;
641
641
  acs_credential_pool_id?: string | undefined;
642
642
  parent_acs_credential_id?: string | undefined;
643
643
  card_number?: string | null | undefined;
@@ -712,9 +712,9 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
712
712
  user_identity_id?: string | undefined;
713
713
  issued_at?: string | null | undefined;
714
714
  is_issued?: boolean | undefined;
715
+ acs_user_id?: string | undefined;
715
716
  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;
716
717
  external_type_display_name?: string | undefined;
717
- acs_user_id?: string | undefined;
718
718
  acs_credential_pool_id?: string | undefined;
719
719
  parent_acs_credential_id?: string | undefined;
720
720
  card_number?: string | null | undefined;
@@ -784,9 +784,9 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
784
784
  user_identity_id?: string | undefined;
785
785
  issued_at?: string | null | undefined;
786
786
  is_issued?: boolean | undefined;
787
+ acs_user_id?: string | undefined;
787
788
  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;
788
789
  external_type_display_name?: string | undefined;
789
- acs_user_id?: string | undefined;
790
790
  acs_credential_pool_id?: string | undefined;
791
791
  parent_acs_credential_id?: string | undefined;
792
792
  card_number?: string | null | undefined;
@@ -862,9 +862,9 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
862
862
  user_identity_id?: string | undefined;
863
863
  issued_at?: string | null | undefined;
864
864
  is_issued?: boolean | undefined;
865
+ acs_user_id?: string | undefined;
865
866
  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;
866
867
  external_type_display_name?: string | undefined;
867
- acs_user_id?: string | undefined;
868
868
  acs_credential_pool_id?: string | undefined;
869
869
  parent_acs_credential_id?: string | undefined;
870
870
  card_number?: string | null | undefined;
@@ -934,9 +934,9 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
934
934
  user_identity_id?: string | undefined;
935
935
  issued_at?: string | null | undefined;
936
936
  is_issued?: boolean | undefined;
937
+ acs_user_id?: string | undefined;
937
938
  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;
938
939
  external_type_display_name?: string | undefined;
939
- acs_user_id?: string | undefined;
940
940
  acs_credential_pool_id?: string | undefined;
941
941
  parent_acs_credential_id?: string | undefined;
942
942
  card_number?: string | null | undefined;
@@ -342,9 +342,9 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
342
342
  user_identity_id?: string | undefined;
343
343
  issued_at?: string | null | undefined;
344
344
  is_issued?: boolean | undefined;
345
+ acs_user_id?: string | undefined;
345
346
  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;
346
347
  external_type_display_name?: string | undefined;
347
- acs_user_id?: string | undefined;
348
348
  acs_credential_pool_id?: string | undefined;
349
349
  parent_acs_credential_id?: string | undefined;
350
350
  card_number?: string | null | undefined;
@@ -414,9 +414,9 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
414
414
  user_identity_id?: string | undefined;
415
415
  issued_at?: string | null | undefined;
416
416
  is_issued?: boolean | undefined;
417
+ acs_user_id?: string | undefined;
417
418
  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;
418
419
  external_type_display_name?: string | undefined;
419
- acs_user_id?: string | undefined;
420
420
  acs_credential_pool_id?: string | undefined;
421
421
  parent_acs_credential_id?: string | undefined;
422
422
  card_number?: string | null | undefined;
@@ -651,9 +651,9 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
651
651
  user_identity_id?: string | undefined;
652
652
  issued_at?: string | null | undefined;
653
653
  is_issued?: boolean | undefined;
654
+ acs_user_id?: string | undefined;
654
655
  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;
655
656
  external_type_display_name?: string | undefined;
656
- acs_user_id?: string | undefined;
657
657
  acs_credential_pool_id?: string | undefined;
658
658
  parent_acs_credential_id?: string | undefined;
659
659
  card_number?: string | null | undefined;
@@ -723,9 +723,9 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
723
723
  user_identity_id?: string | undefined;
724
724
  issued_at?: string | null | undefined;
725
725
  is_issued?: boolean | undefined;
726
+ acs_user_id?: string | undefined;
726
727
  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;
727
728
  external_type_display_name?: string | undefined;
728
- acs_user_id?: string | undefined;
729
729
  acs_credential_pool_id?: string | undefined;
730
730
  parent_acs_credential_id?: string | undefined;
731
731
  card_number?: string | null | undefined;
@@ -832,9 +832,9 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
832
832
  user_identity_id?: string | undefined;
833
833
  issued_at?: string | null | undefined;
834
834
  is_issued?: boolean | undefined;
835
+ acs_user_id?: string | undefined;
835
836
  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;
836
837
  external_type_display_name?: string | undefined;
837
- acs_user_id?: string | undefined;
838
838
  acs_credential_pool_id?: string | undefined;
839
839
  parent_acs_credential_id?: string | undefined;
840
840
  card_number?: string | null | undefined;
@@ -904,9 +904,9 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
904
904
  user_identity_id?: string | undefined;
905
905
  issued_at?: string | null | undefined;
906
906
  is_issued?: boolean | undefined;
907
+ acs_user_id?: string | undefined;
907
908
  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;
908
909
  external_type_display_name?: string | undefined;
909
- acs_user_id?: string | undefined;
910
910
  acs_credential_pool_id?: string | undefined;
911
911
  parent_acs_credential_id?: string | undefined;
912
912
  card_number?: string | null | undefined;
@@ -1003,9 +1003,9 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
1003
1003
  user_identity_id?: string | undefined;
1004
1004
  issued_at?: string | null | undefined;
1005
1005
  is_issued?: boolean | undefined;
1006
+ acs_user_id?: string | undefined;
1006
1007
  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;
1007
1008
  external_type_display_name?: string | undefined;
1008
- acs_user_id?: string | undefined;
1009
1009
  acs_credential_pool_id?: string | undefined;
1010
1010
  parent_acs_credential_id?: string | undefined;
1011
1011
  card_number?: string | null | undefined;
@@ -1075,9 +1075,9 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
1075
1075
  user_identity_id?: string | undefined;
1076
1076
  issued_at?: string | null | undefined;
1077
1077
  is_issued?: boolean | undefined;
1078
+ acs_user_id?: string | undefined;
1078
1079
  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;
1079
1080
  external_type_display_name?: string | undefined;
1080
- acs_user_id?: string | undefined;
1081
1081
  acs_credential_pool_id?: string | undefined;
1082
1082
  parent_acs_credential_id?: string | undefined;
1083
1083
  card_number?: string | null | undefined;
@@ -1179,9 +1179,9 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
1179
1179
  user_identity_id?: string | undefined;
1180
1180
  issued_at?: string | null | undefined;
1181
1181
  is_issued?: boolean | undefined;
1182
+ acs_user_id?: string | undefined;
1182
1183
  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;
1183
1184
  external_type_display_name?: string | undefined;
1184
- acs_user_id?: string | undefined;
1185
1185
  acs_credential_pool_id?: string | undefined;
1186
1186
  parent_acs_credential_id?: string | undefined;
1187
1187
  card_number?: string | null | undefined;
@@ -1251,9 +1251,9 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
1251
1251
  user_identity_id?: string | undefined;
1252
1252
  issued_at?: string | null | undefined;
1253
1253
  is_issued?: boolean | undefined;
1254
+ acs_user_id?: string | undefined;
1254
1255
  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;
1255
1256
  external_type_display_name?: string | undefined;
1256
- acs_user_id?: string | undefined;
1257
1257
  acs_credential_pool_id?: string | undefined;
1258
1258
  parent_acs_credential_id?: string | undefined;
1259
1259
  card_number?: string | null | undefined;
@@ -1356,9 +1356,9 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
1356
1356
  user_identity_id?: string | undefined;
1357
1357
  issued_at?: string | null | undefined;
1358
1358
  is_issued?: boolean | undefined;
1359
+ acs_user_id?: string | undefined;
1359
1360
  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;
1360
1361
  external_type_display_name?: string | undefined;
1361
- acs_user_id?: string | undefined;
1362
1362
  acs_credential_pool_id?: string | undefined;
1363
1363
  parent_acs_credential_id?: string | undefined;
1364
1364
  card_number?: string | null | undefined;
@@ -1428,9 +1428,9 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
1428
1428
  user_identity_id?: string | undefined;
1429
1429
  issued_at?: string | null | undefined;
1430
1430
  is_issued?: boolean | undefined;
1431
+ acs_user_id?: string | undefined;
1431
1432
  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;
1432
1433
  external_type_display_name?: string | undefined;
1433
- acs_user_id?: string | undefined;
1434
1434
  acs_credential_pool_id?: string | undefined;
1435
1435
  parent_acs_credential_id?: string | undefined;
1436
1436
  card_number?: string | null | undefined;