@seamapi/types 1.261.0 → 1.262.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.
@@ -395,8 +395,8 @@ declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
395
395
  display_name: z.ZodString;
396
396
  code: z.ZodNullable<z.ZodOptional<z.ZodString>>;
397
397
  card_number: z.ZodNullable<z.ZodOptional<z.ZodString>>;
398
- is_encoded: z.ZodOptional<z.ZodBoolean>;
399
- encoded_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
398
+ is_issued: z.ZodOptional<z.ZodBoolean>;
399
+ issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
400
400
  access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
401
401
  external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential"]>>;
402
402
  external_type_display_name: z.ZodOptional<z.ZodString>;
@@ -492,8 +492,8 @@ declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
492
492
  acs_credential_pool_id?: string | undefined;
493
493
  parent_acs_credential_id?: string | undefined;
494
494
  card_number?: string | null | undefined;
495
- is_encoded?: boolean | undefined;
496
- encoded_at?: string | null | undefined;
495
+ is_issued?: boolean | undefined;
496
+ issued_at?: string | null | undefined;
497
497
  is_multi_phone_sync_credential?: boolean | undefined;
498
498
  is_latest_desired_state_synced_with_provider?: boolean | undefined;
499
499
  latest_desired_state_synced_with_provider_at?: string | undefined;
@@ -532,8 +532,8 @@ declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
532
532
  acs_credential_pool_id?: string | undefined;
533
533
  parent_acs_credential_id?: string | undefined;
534
534
  card_number?: string | null | undefined;
535
- is_encoded?: boolean | undefined;
536
- encoded_at?: string | null | undefined;
535
+ is_issued?: boolean | undefined;
536
+ issued_at?: string | null | undefined;
537
537
  is_multi_phone_sync_credential?: boolean | undefined;
538
538
  is_latest_desired_state_synced_with_provider?: boolean | undefined;
539
539
  latest_desired_state_synced_with_provider_at?: string | undefined;
@@ -547,8 +547,8 @@ declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendShape<{
547
547
  display_name: z.ZodString;
548
548
  code: z.ZodNullable<z.ZodOptional<z.ZodString>>;
549
549
  card_number: z.ZodNullable<z.ZodOptional<z.ZodString>>;
550
- is_encoded: z.ZodOptional<z.ZodBoolean>;
551
- encoded_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
550
+ is_issued: z.ZodOptional<z.ZodBoolean>;
551
+ issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
552
552
  access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
553
553
  external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential"]>>;
554
554
  external_type_display_name: z.ZodOptional<z.ZodString>;
@@ -644,8 +644,8 @@ declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendShape<{
644
644
  acs_credential_pool_id?: string | undefined;
645
645
  parent_acs_credential_id?: string | undefined;
646
646
  card_number?: string | null | undefined;
647
- is_encoded?: boolean | undefined;
648
- encoded_at?: string | null | undefined;
647
+ is_issued?: boolean | undefined;
648
+ issued_at?: string | null | undefined;
649
649
  is_multi_phone_sync_credential?: boolean | undefined;
650
650
  is_latest_desired_state_synced_with_provider?: boolean | undefined;
651
651
  latest_desired_state_synced_with_provider_at?: string | undefined;
@@ -684,8 +684,8 @@ declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendShape<{
684
684
  acs_credential_pool_id?: string | undefined;
685
685
  parent_acs_credential_id?: string | undefined;
686
686
  card_number?: string | null | undefined;
687
- is_encoded?: boolean | undefined;
688
- encoded_at?: string | null | undefined;
687
+ is_issued?: boolean | undefined;
688
+ issued_at?: string | null | undefined;
689
689
  is_multi_phone_sync_credential?: boolean | undefined;
690
690
  is_latest_desired_state_synced_with_provider?: boolean | undefined;
691
691
  latest_desired_state_synced_with_provider_at?: string | undefined;
@@ -1748,21 +1748,21 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
1748
1748
  }>, {
1749
1749
  action_type: z.ZodLiteral<"READ_CARD">;
1750
1750
  error: z.ZodObject<{
1751
- type: z.ZodString;
1751
+ type: z.ZodLiteral<"no_card_on_encoder">;
1752
1752
  message: z.ZodString;
1753
1753
  }, "strip", z.ZodTypeAny, {
1754
1754
  message: string;
1755
- type: string;
1755
+ type: "no_card_on_encoder";
1756
1756
  }, {
1757
1757
  message: string;
1758
- type: string;
1758
+ type: "no_card_on_encoder";
1759
1759
  }>;
1760
1760
  }>, "strip", z.ZodTypeAny, {
1761
1761
  status: "error";
1762
1762
  action_attempt_id: string;
1763
1763
  error: {
1764
1764
  message: string;
1765
- type: string;
1765
+ type: "no_card_on_encoder";
1766
1766
  };
1767
1767
  result: null;
1768
1768
  action_type: "READ_CARD";
@@ -1771,7 +1771,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
1771
1771
  action_attempt_id: string;
1772
1772
  error: {
1773
1773
  message: string;
1774
- type: string;
1774
+ type: "no_card_on_encoder";
1775
1775
  };
1776
1776
  result: null;
1777
1777
  action_type: "READ_CARD";
@@ -10005,11 +10005,6 @@ declare const _default: {
10005
10005
  minLength: number;
10006
10006
  type: string;
10007
10007
  };
10008
- encoded_at: {
10009
- format: string;
10010
- nullable: boolean;
10011
- type: string;
10012
- };
10013
10008
  ends_at: {
10014
10009
  type: string;
10015
10010
  };
@@ -10035,7 +10030,7 @@ declare const _default: {
10035
10030
  external_type_display_name: {
10036
10031
  type: string;
10037
10032
  };
10038
- is_encoded: {
10033
+ is_issued: {
10039
10034
  type: string;
10040
10035
  };
10041
10036
  is_latest_desired_state_synced_with_provider: {
@@ -10048,6 +10043,11 @@ declare const _default: {
10048
10043
  is_multi_phone_sync_credential: {
10049
10044
  type: string;
10050
10045
  };
10046
+ issued_at: {
10047
+ format: string;
10048
+ nullable: boolean;
10049
+ type: string;
10050
+ };
10051
10051
  latest_desired_state_synced_with_provider_at: {
10052
10052
  format: string;
10053
10053
  type: string;
@@ -10723,6 +10723,7 @@ declare const _default: {
10723
10723
  };
10724
10724
  type: {
10725
10725
  type: string;
10726
+ enum?: never;
10726
10727
  };
10727
10728
  };
10728
10729
  required: string[];
@@ -10781,6 +10782,46 @@ declare const _default: {
10781
10782
  };
10782
10783
  required: string[];
10783
10784
  type: string;
10785
+ } | {
10786
+ description: string;
10787
+ properties: {
10788
+ action_attempt_id: {
10789
+ description: string;
10790
+ format: string;
10791
+ type: string;
10792
+ 'x-title': string;
10793
+ };
10794
+ action_type: {
10795
+ enum: string[];
10796
+ type: string;
10797
+ };
10798
+ error: {
10799
+ properties: {
10800
+ message: {
10801
+ type: string;
10802
+ };
10803
+ type: {
10804
+ enum: string[];
10805
+ type: string;
10806
+ };
10807
+ };
10808
+ required: string[];
10809
+ type: string;
10810
+ nullable?: never;
10811
+ };
10812
+ result: {
10813
+ nullable: boolean;
10814
+ properties?: never;
10815
+ type?: never;
10816
+ required?: never;
10817
+ };
10818
+ status: {
10819
+ enum: string[];
10820
+ type: string;
10821
+ };
10822
+ };
10823
+ required: string[];
10824
+ type: string;
10784
10825
  } | {
10785
10826
  description: string;
10786
10827
  properties: {
@@ -10908,6 +10949,7 @@ declare const _default: {
10908
10949
  };
10909
10950
  type: {
10910
10951
  type: string;
10952
+ enum?: never;
10911
10953
  };
10912
10954
  };
10913
10955
  required: string[];
@@ -17127,11 +17169,6 @@ declare const _default: {
17127
17169
  minLength: number;
17128
17170
  type: string;
17129
17171
  };
17130
- encoded_at: {
17131
- format: string;
17132
- nullable: boolean;
17133
- type: string;
17134
- };
17135
17172
  ends_at: {
17136
17173
  type: string;
17137
17174
  };
@@ -17157,7 +17194,7 @@ declare const _default: {
17157
17194
  external_type_display_name: {
17158
17195
  type: string;
17159
17196
  };
17160
- is_encoded: {
17197
+ is_issued: {
17161
17198
  type: string;
17162
17199
  };
17163
17200
  is_latest_desired_state_synced_with_provider: {
@@ -17170,6 +17207,11 @@ declare const _default: {
17170
17207
  is_multi_phone_sync_credential: {
17171
17208
  type: string;
17172
17209
  };
17210
+ issued_at: {
17211
+ format: string;
17212
+ nullable: boolean;
17213
+ type: string;
17214
+ };
17173
17215
  latest_desired_state_synced_with_provider_at: {
17174
17216
  format: string;
17175
17217
  type: string;
@@ -17389,11 +17431,6 @@ declare const _default: {
17389
17431
  minLength: number;
17390
17432
  type: string;
17391
17433
  };
17392
- encoded_at: {
17393
- format: string;
17394
- nullable: boolean;
17395
- type: string;
17396
- };
17397
17434
  ends_at: {
17398
17435
  type: string;
17399
17436
  };
@@ -17419,7 +17456,7 @@ declare const _default: {
17419
17456
  external_type_display_name: {
17420
17457
  type: string;
17421
17458
  };
17422
- is_encoded: {
17459
+ is_issued: {
17423
17460
  type: string;
17424
17461
  };
17425
17462
  is_latest_desired_state_synced_with_provider: {
@@ -17432,6 +17469,11 @@ declare const _default: {
17432
17469
  is_multi_phone_sync_credential: {
17433
17470
  type: string;
17434
17471
  };
17472
+ issued_at: {
17473
+ format: string;
17474
+ nullable: boolean;
17475
+ type: string;
17476
+ };
17435
17477
  latest_desired_state_synced_with_provider_at: {
17436
17478
  format: string;
17437
17479
  type: string;
@@ -28375,7 +28417,7 @@ interface Routes {
28375
28417
  result: null;
28376
28418
  action_type: 'READ_CARD';
28377
28419
  error: {
28378
- type: string;
28420
+ type: 'no_card_on_encoder';
28379
28421
  message: string;
28380
28422
  };
28381
28423
  } | {
@@ -28979,7 +29021,7 @@ interface Routes {
28979
29021
  result: null;
28980
29022
  action_type: 'READ_CARD';
28981
29023
  error: {
28982
- type: string;
29024
+ type: 'no_card_on_encoder';
28983
29025
  message: string;
28984
29026
  };
28985
29027
  } | {
@@ -29740,7 +29782,7 @@ interface Routes {
29740
29782
  result: null;
29741
29783
  action_type: 'READ_CARD';
29742
29784
  error: {
29743
- type: string;
29785
+ type: 'no_card_on_encoder';
29744
29786
  message: string;
29745
29787
  };
29746
29788
  } | {
@@ -30331,7 +30373,7 @@ interface Routes {
30331
30373
  result: null;
30332
30374
  action_type: 'READ_CARD';
30333
30375
  error: {
30334
- type: string;
30376
+ type: 'no_card_on_encoder';
30335
30377
  message: string;
30336
30378
  };
30337
30379
  } | {
@@ -31058,8 +31100,8 @@ interface Routes {
31058
31100
  display_name: string;
31059
31101
  code?: (string | undefined) | null;
31060
31102
  card_number?: (string | undefined) | null;
31061
- is_encoded?: boolean | undefined;
31062
- encoded_at?: (string | undefined) | null;
31103
+ is_issued?: boolean | undefined;
31104
+ issued_at?: (string | undefined) | null;
31063
31105
  access_method: 'code' | 'card' | 'mobile_key';
31064
31106
  external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
31065
31107
  external_type_display_name?: string | undefined;
@@ -31129,8 +31171,8 @@ interface Routes {
31129
31171
  display_name: string;
31130
31172
  code?: (string | undefined) | null;
31131
31173
  card_number?: (string | undefined) | null;
31132
- is_encoded?: boolean | undefined;
31133
- encoded_at?: (string | undefined) | null;
31174
+ is_issued?: boolean | undefined;
31175
+ issued_at?: (string | undefined) | null;
31134
31176
  access_method: 'code' | 'card' | 'mobile_key';
31135
31177
  external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
31136
31178
  external_type_display_name?: string | undefined;
@@ -31193,8 +31235,8 @@ interface Routes {
31193
31235
  display_name: string;
31194
31236
  code?: (string | undefined) | null;
31195
31237
  card_number?: (string | undefined) | null;
31196
- is_encoded?: boolean | undefined;
31197
- encoded_at?: (string | undefined) | null;
31238
+ is_issued?: boolean | undefined;
31239
+ issued_at?: (string | undefined) | null;
31198
31240
  access_method: 'code' | 'card' | 'mobile_key';
31199
31241
  external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
31200
31242
  external_type_display_name?: string | undefined;
@@ -31257,8 +31299,8 @@ interface Routes {
31257
31299
  display_name: string;
31258
31300
  code?: (string | undefined) | null;
31259
31301
  card_number?: (string | undefined) | null;
31260
- is_encoded?: boolean | undefined;
31261
- encoded_at?: (string | undefined) | null;
31302
+ is_issued?: boolean | undefined;
31303
+ issued_at?: (string | undefined) | null;
31262
31304
  access_method: 'code' | 'card' | 'mobile_key';
31263
31305
  external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
31264
31306
  external_type_display_name?: string | undefined;
@@ -31361,8 +31403,8 @@ interface Routes {
31361
31403
  display_name: string;
31362
31404
  code?: (string | undefined) | null;
31363
31405
  card_number?: (string | undefined) | null;
31364
- is_encoded?: boolean | undefined;
31365
- encoded_at?: (string | undefined) | null;
31406
+ is_issued?: boolean | undefined;
31407
+ issued_at?: (string | undefined) | null;
31366
31408
  access_method: 'code' | 'card' | 'mobile_key';
31367
31409
  external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
31368
31410
  external_type_display_name?: string | undefined;
@@ -31414,8 +31456,8 @@ interface Routes {
31414
31456
  display_name: string;
31415
31457
  code?: (string | undefined) | null;
31416
31458
  card_number?: (string | undefined) | null;
31417
- is_encoded?: boolean | undefined;
31418
- encoded_at?: (string | undefined) | null;
31459
+ is_issued?: boolean | undefined;
31460
+ issued_at?: (string | undefined) | null;
31419
31461
  access_method: 'code' | 'card' | 'mobile_key';
31420
31462
  external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
31421
31463
  external_type_display_name?: string | undefined;
@@ -31474,8 +31516,8 @@ interface Routes {
31474
31516
  display_name: string;
31475
31517
  code?: (string | undefined) | null;
31476
31518
  card_number?: (string | undefined) | null;
31477
- is_encoded?: boolean | undefined;
31478
- encoded_at?: (string | undefined) | null;
31519
+ is_issued?: boolean | undefined;
31520
+ issued_at?: (string | undefined) | null;
31479
31521
  access_method: 'code' | 'card' | 'mobile_key';
31480
31522
  external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
31481
31523
  external_type_display_name?: string | undefined;
@@ -31529,8 +31571,8 @@ interface Routes {
31529
31571
  display_name: string;
31530
31572
  code?: (string | undefined) | null;
31531
31573
  card_number?: (string | undefined) | null;
31532
- is_encoded?: boolean | undefined;
31533
- encoded_at?: (string | undefined) | null;
31574
+ is_issued?: boolean | undefined;
31575
+ issued_at?: (string | undefined) | null;
31534
31576
  access_method: 'code' | 'card' | 'mobile_key';
31535
31577
  external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
31536
31578
  external_type_display_name?: string | undefined;
@@ -31648,7 +31690,7 @@ interface Routes {
31648
31690
  result: null;
31649
31691
  action_type: 'READ_CARD';
31650
31692
  error: {
31651
- type: string;
31693
+ type: 'no_card_on_encoder';
31652
31694
  message: string;
31653
31695
  };
31654
31696
  } | {
@@ -32564,7 +32606,7 @@ interface Routes {
32564
32606
  result: null;
32565
32607
  action_type: 'READ_CARD';
32566
32608
  error: {
32567
- type: string;
32609
+ type: 'no_card_on_encoder';
32568
32610
  message: string;
32569
32611
  };
32570
32612
  } | {
@@ -33068,8 +33110,8 @@ interface Routes {
33068
33110
  display_name: string;
33069
33111
  code?: (string | undefined) | null;
33070
33112
  card_number?: (string | undefined) | null;
33071
- is_encoded?: boolean | undefined;
33072
- encoded_at?: (string | undefined) | null;
33113
+ is_issued?: boolean | undefined;
33114
+ issued_at?: (string | undefined) | null;
33073
33115
  access_method: 'code' | 'card' | 'mobile_key';
33074
33116
  external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
33075
33117
  external_type_display_name?: string | undefined;
@@ -34175,7 +34217,7 @@ interface Routes {
34175
34217
  result: null;
34176
34218
  action_type: 'READ_CARD';
34177
34219
  error: {
34178
- type: string;
34220
+ type: 'no_card_on_encoder';
34179
34221
  message: string;
34180
34222
  };
34181
34223
  } | {
@@ -34628,7 +34670,7 @@ interface Routes {
34628
34670
  result: null;
34629
34671
  action_type: 'READ_CARD';
34630
34672
  error: {
34631
- type: string;
34673
+ type: 'no_card_on_encoder';
34632
34674
  message: string;
34633
34675
  };
34634
34676
  } | {
@@ -38627,7 +38669,7 @@ interface Routes {
38627
38669
  result: null;
38628
38670
  action_type: 'READ_CARD';
38629
38671
  error: {
38630
- type: string;
38672
+ type: 'no_card_on_encoder';
38631
38673
  message: string;
38632
38674
  };
38633
38675
  } | {
@@ -39081,7 +39123,7 @@ interface Routes {
39081
39123
  result: null;
39082
39124
  action_type: 'READ_CARD';
39083
39125
  error: {
39084
- type: string;
39126
+ type: 'no_card_on_encoder';
39085
39127
  message: string;
39086
39128
  };
39087
39129
  } | {
@@ -40477,7 +40519,7 @@ interface Routes {
40477
40519
  result: null;
40478
40520
  action_type: 'READ_CARD';
40479
40521
  error: {
40480
- type: string;
40522
+ type: 'no_card_on_encoder';
40481
40523
  message: string;
40482
40524
  };
40483
40525
  } | {
@@ -40941,7 +40983,7 @@ interface Routes {
40941
40983
  result: null;
40942
40984
  action_type: 'READ_CARD';
40943
40985
  error: {
40944
- type: string;
40986
+ type: 'no_card_on_encoder';
40945
40987
  message: string;
40946
40988
  };
40947
40989
  } | {
@@ -41444,7 +41486,7 @@ interface Routes {
41444
41486
  result: null;
41445
41487
  action_type: 'READ_CARD';
41446
41488
  error: {
41447
- type: string;
41489
+ type: 'no_card_on_encoder';
41448
41490
  message: string;
41449
41491
  };
41450
41492
  } | {
@@ -42080,7 +42122,7 @@ interface Routes {
42080
42122
  result: null;
42081
42123
  action_type: 'READ_CARD';
42082
42124
  error: {
42083
- type: string;
42125
+ type: 'no_card_on_encoder';
42084
42126
  message: string;
42085
42127
  };
42086
42128
  } | {
@@ -42536,7 +42578,7 @@ interface Routes {
42536
42578
  result: null;
42537
42579
  action_type: 'READ_CARD';
42538
42580
  error: {
42539
- type: string;
42581
+ type: 'no_card_on_encoder';
42540
42582
  message: string;
42541
42583
  };
42542
42584
  } | {
@@ -43476,7 +43518,7 @@ interface Routes {
43476
43518
  result: null;
43477
43519
  action_type: 'READ_CARD';
43478
43520
  error: {
43479
- type: string;
43521
+ type: 'no_card_on_encoder';
43480
43522
  message: string;
43481
43523
  };
43482
43524
  } | {
@@ -43934,7 +43976,7 @@ interface Routes {
43934
43976
  result: null;
43935
43977
  action_type: 'READ_CARD';
43936
43978
  error: {
43937
- type: string;
43979
+ type: 'no_card_on_encoder';
43938
43980
  message: string;
43939
43981
  };
43940
43982
  } | {
@@ -44852,7 +44894,7 @@ interface Routes {
44852
44894
  result: null;
44853
44895
  action_type: 'READ_CARD';
44854
44896
  error: {
44855
- type: string;
44897
+ type: 'no_card_on_encoder';
44856
44898
  message: string;
44857
44899
  };
44858
44900
  } | {
@@ -45427,7 +45469,7 @@ interface Routes {
45427
45469
  result: null;
45428
45470
  action_type: 'READ_CARD';
45429
45471
  error: {
45430
- type: string;
45472
+ type: 'no_card_on_encoder';
45431
45473
  message: string;
45432
45474
  };
45433
45475
  } | {
@@ -47350,7 +47392,7 @@ interface Routes {
47350
47392
  result: null;
47351
47393
  action_type: 'READ_CARD';
47352
47394
  error: {
47353
- type: string;
47395
+ type: 'no_card_on_encoder';
47354
47396
  message: string;
47355
47397
  };
47356
47398
  } | {
@@ -11,8 +11,8 @@ export declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
11
11
  display_name: z.ZodString;
12
12
  code: z.ZodNullable<z.ZodOptional<z.ZodString>>;
13
13
  card_number: z.ZodNullable<z.ZodOptional<z.ZodString>>;
14
- is_encoded: z.ZodOptional<z.ZodBoolean>;
15
- encoded_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
14
+ is_issued: z.ZodOptional<z.ZodBoolean>;
15
+ issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
16
16
  access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
17
17
  external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential"]>>;
18
18
  external_type_display_name: z.ZodOptional<z.ZodString>;
@@ -108,8 +108,8 @@ export declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
108
108
  acs_credential_pool_id?: string | undefined;
109
109
  parent_acs_credential_id?: string | undefined;
110
110
  card_number?: string | null | undefined;
111
- is_encoded?: boolean | undefined;
112
- encoded_at?: string | null | undefined;
111
+ is_issued?: boolean | undefined;
112
+ issued_at?: string | null | undefined;
113
113
  is_multi_phone_sync_credential?: boolean | undefined;
114
114
  is_latest_desired_state_synced_with_provider?: boolean | undefined;
115
115
  latest_desired_state_synced_with_provider_at?: string | undefined;
@@ -148,8 +148,8 @@ export declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
148
148
  acs_credential_pool_id?: string | undefined;
149
149
  parent_acs_credential_id?: string | undefined;
150
150
  card_number?: string | null | undefined;
151
- is_encoded?: boolean | undefined;
152
- encoded_at?: string | null | undefined;
151
+ is_issued?: boolean | undefined;
152
+ issued_at?: string | null | undefined;
153
153
  is_multi_phone_sync_credential?: boolean | undefined;
154
154
  is_latest_desired_state_synced_with_provider?: boolean | undefined;
155
155
  latest_desired_state_synced_with_provider_at?: string | undefined;
@@ -163,8 +163,8 @@ export declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendSh
163
163
  display_name: z.ZodString;
164
164
  code: z.ZodNullable<z.ZodOptional<z.ZodString>>;
165
165
  card_number: z.ZodNullable<z.ZodOptional<z.ZodString>>;
166
- is_encoded: z.ZodOptional<z.ZodBoolean>;
167
- encoded_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
166
+ is_issued: z.ZodOptional<z.ZodBoolean>;
167
+ issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
168
168
  access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
169
169
  external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential"]>>;
170
170
  external_type_display_name: z.ZodOptional<z.ZodString>;
@@ -260,8 +260,8 @@ export declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendSh
260
260
  acs_credential_pool_id?: string | undefined;
261
261
  parent_acs_credential_id?: string | undefined;
262
262
  card_number?: string | null | undefined;
263
- is_encoded?: boolean | undefined;
264
- encoded_at?: string | null | undefined;
263
+ is_issued?: boolean | undefined;
264
+ issued_at?: string | null | undefined;
265
265
  is_multi_phone_sync_credential?: boolean | undefined;
266
266
  is_latest_desired_state_synced_with_provider?: boolean | undefined;
267
267
  latest_desired_state_synced_with_provider_at?: string | undefined;
@@ -300,8 +300,8 @@ export declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendSh
300
300
  acs_credential_pool_id?: string | undefined;
301
301
  parent_acs_credential_id?: string | undefined;
302
302
  card_number?: string | null | undefined;
303
- is_encoded?: boolean | undefined;
304
- encoded_at?: string | null | undefined;
303
+ is_issued?: boolean | undefined;
304
+ issued_at?: string | null | undefined;
305
305
  is_multi_phone_sync_credential?: boolean | undefined;
306
306
  is_latest_desired_state_synced_with_provider?: boolean | undefined;
307
307
  latest_desired_state_synced_with_provider_at?: string | undefined;
@@ -22,8 +22,8 @@ const common_acs_credential = z.object({
22
22
  display_name: z.string().min(1),
23
23
  code: z.string().optional().nullable(),
24
24
  card_number: z.string().optional().nullable(),
25
- is_encoded: z.boolean().optional(),
26
- encoded_at: z.string().datetime().optional().nullable(),
25
+ is_issued: z.boolean().optional(),
26
+ issued_at: z.string().datetime().optional().nullable(),
27
27
  access_method: acs_credential_access_method_type,
28
28
  external_type: acs_credential_external_type.optional(),
29
29
  external_type_display_name: z.string().optional(),
@@ -1 +1 @@
1
- {"version":3,"file":"acs-credential.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs-credential.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"acs-credential.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs-credential.ts"],"names":[],"mappings":"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"}
@@ -216,18 +216,18 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
216
216
  }>, {
217
217
  action_type: z.ZodLiteral<"READ_CARD">;
218
218
  error: z.ZodObject<{
219
- type: z.ZodString;
219
+ type: z.ZodLiteral<"no_card_on_encoder">;
220
220
  message: z.ZodString;
221
221
  }, "strip", z.ZodTypeAny, {
222
- type: string;
222
+ type: "no_card_on_encoder";
223
223
  message: string;
224
224
  }, {
225
- type: string;
225
+ type: "no_card_on_encoder";
226
226
  message: string;
227
227
  }>;
228
228
  }>, "strip", z.ZodTypeAny, {
229
229
  error: {
230
- type: string;
230
+ type: "no_card_on_encoder";
231
231
  message: string;
232
232
  };
233
233
  status: "error";
@@ -236,7 +236,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
236
236
  action_type: "READ_CARD";
237
237
  }, {
238
238
  error: {
239
- type: string;
239
+ type: "no_card_on_encoder";
240
240
  message: string;
241
241
  };
242
242
  status: "error";