@seamapi/types 1.601.0 → 1.603.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.
@@ -1624,6 +1624,15 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
1624
1624
  }, {
1625
1625
  message: string;
1626
1626
  type: "no_credential_on_encoder";
1627
+ }>, z.ZodObject<{
1628
+ type: z.ZodLiteral<"no_card_on_encoder">;
1629
+ message: z.ZodString;
1630
+ }, "strip", z.ZodTypeAny, {
1631
+ message: string;
1632
+ type: "no_card_on_encoder";
1633
+ }, {
1634
+ message: string;
1635
+ type: "no_card_on_encoder";
1627
1636
  }>]>;
1628
1637
  }, "strip", z.ZodTypeAny, {
1629
1638
  status: "error";
@@ -1637,6 +1646,9 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
1637
1646
  } | {
1638
1647
  message: string;
1639
1648
  type: "no_credential_on_encoder";
1649
+ } | {
1650
+ message: string;
1651
+ type: "no_card_on_encoder";
1640
1652
  };
1641
1653
  result: null;
1642
1654
  action_type: "SCAN_CREDENTIAL";
@@ -1652,6 +1664,9 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
1652
1664
  } | {
1653
1665
  message: string;
1654
1666
  type: "no_credential_on_encoder";
1667
+ } | {
1668
+ message: string;
1669
+ type: "no_card_on_encoder";
1655
1670
  };
1656
1671
  result: null;
1657
1672
  action_type: "SCAN_CREDENTIAL";
@@ -2653,6 +2668,15 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
2653
2668
  }, {
2654
2669
  message: string;
2655
2670
  type: "credential_cannot_be_reissued";
2671
+ }>, z.ZodObject<{
2672
+ type: z.ZodLiteral<"no_card_on_encoder">;
2673
+ message: z.ZodString;
2674
+ }, "strip", z.ZodTypeAny, {
2675
+ message: string;
2676
+ type: "no_card_on_encoder";
2677
+ }, {
2678
+ message: string;
2679
+ type: "no_card_on_encoder";
2656
2680
  }>]>;
2657
2681
  }, "strip", z.ZodTypeAny, {
2658
2682
  status: "error";
@@ -2672,6 +2696,9 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
2672
2696
  } | {
2673
2697
  message: string;
2674
2698
  type: "credential_cannot_be_reissued";
2699
+ } | {
2700
+ message: string;
2701
+ type: "no_card_on_encoder";
2675
2702
  };
2676
2703
  result: null;
2677
2704
  action_type: "ENCODE_CREDENTIAL";
@@ -2693,6 +2720,9 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
2693
2720
  } | {
2694
2721
  message: string;
2695
2722
  type: "credential_cannot_be_reissued";
2723
+ } | {
2724
+ message: string;
2725
+ type: "no_card_on_encoder";
2696
2726
  };
2697
2727
  result: null;
2698
2728
  action_type: "ENCODE_CREDENTIAL";
@@ -997,6 +997,15 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
997
997
  }, {
998
998
  message: string;
999
999
  type: "credential_cannot_be_reissued";
1000
+ }>, z.ZodObject<{
1001
+ type: z.ZodLiteral<"no_card_on_encoder">;
1002
+ message: z.ZodString;
1003
+ }, "strip", z.ZodTypeAny, {
1004
+ message: string;
1005
+ type: "no_card_on_encoder";
1006
+ }, {
1007
+ message: string;
1008
+ type: "no_card_on_encoder";
1000
1009
  }>]>;
1001
1010
  }, "strip", z.ZodTypeAny, {
1002
1011
  status: "error";
@@ -1016,6 +1025,9 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
1016
1025
  } | {
1017
1026
  message: string;
1018
1027
  type: "credential_cannot_be_reissued";
1028
+ } | {
1029
+ message: string;
1030
+ type: "no_card_on_encoder";
1019
1031
  };
1020
1032
  result: null;
1021
1033
  action_type: "ENCODE_CREDENTIAL";
@@ -1037,6 +1049,9 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
1037
1049
  } | {
1038
1050
  message: string;
1039
1051
  type: "credential_cannot_be_reissued";
1052
+ } | {
1053
+ message: string;
1054
+ type: "no_card_on_encoder";
1040
1055
  };
1041
1056
  result: null;
1042
1057
  action_type: "ENCODE_CREDENTIAL";
@@ -34,11 +34,22 @@ const credential_cannot_be_reissued = z
34
34
  .describe('Detailed description of the error. Provides insights into the issue and potentially how to rectify it.'),
35
35
  })
36
36
  .describe('Error to indicate that the affected credential cannot be reissued.');
37
+ const no_card_on_encoder_error = z
38
+ .object({
39
+ type: z
40
+ .literal('no_card_on_encoder')
41
+ .describe('Error type to indicate that there is no card on the encoder.'),
42
+ message: z
43
+ .string()
44
+ .describe('Detailed description of the error. Provides insights into the issue and potentially how to rectify it.'),
45
+ })
46
+ .describe('Error to indicate that there is no card on the encoder.');
37
47
  const error = z.union([
38
48
  ...common_action_attempt_errors,
39
49
  no_credential_on_encoder_error,
40
50
  incompatible_card_format_error,
41
51
  credential_cannot_be_reissued,
52
+ no_card_on_encoder_error,
42
53
  ]);
43
54
  const result = acs_credential
44
55
  .or(unmanaged_acs_credential)
@@ -1 +1 @@
1
- {"version":3,"file":"encode-credential.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/action-attempts/encode-credential.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EACL,cAAc,EACd,wBAAwB,GACzB,MAAM,0BAA0B,CAAA;AACjC,OAAO,EACL,4BAA4B,EAC5B,4BAA4B,EAC5B,6BAA6B,EAC7B,+BAA+B,GAChC,MAAM,aAAa,CAAA;AAEpB,MAAM,WAAW,GAAG,CAAC;KAClB,OAAO,CAAC,mBAAmB,CAAC;KAC5B,QAAQ,CACP,uGAAuG,CACxG,CAAA;AAEH,MAAM,8BAA8B,GAAG,CAAC;KACrC,MAAM,CAAC;IACN,IAAI,EAAE,CAAC;SACJ,OAAO,CAAC,0BAA0B,CAAC;SACnC,QAAQ,CACP,oEAAoE,CACrE;IACH,OAAO,EAAE,CAAC;SACP,MAAM,EAAE;SACR,QAAQ,CACP,wGAAwG,CACzG;CACJ,CAAC;KACD,QAAQ,CAAC,+DAA+D,CAAC,CAAA;AAE5E,MAAM,8BAA8B,GAAG,CAAC;KACrC,MAAM,CAAC;IACN,IAAI,EAAE,CAAC;SACJ,OAAO,CAAC,0BAA0B,CAAC;SACnC,QAAQ,CAAC,qDAAqD,CAAC;IAClE,OAAO,EAAE,CAAC;SACP,MAAM,EAAE;SACR,QAAQ,CACP,wGAAwG,CACzG;CACJ,CAAC;KACD,QAAQ,CAAC,gDAAgD,CAAC,CAAA;AAE7D,MAAM,6BAA6B,GAAG,CAAC;KACpC,MAAM,CAAC;IACN,IAAI,EAAE,CAAC;SACJ,OAAO,CAAC,+BAA+B,CAAC;SACxC,QAAQ,CACP,yEAAyE,CAC1E;IACH,OAAO,EAAE,CAAC;SACP,MAAM,EAAE;SACR,QAAQ,CACP,wGAAwG,CACzG;CACJ,CAAC;KACD,QAAQ,CACP,oEAAoE,CACrE,CAAA;AAEH,MAAM,KAAK,GAAG,CAAC,CAAC,KAAK,CAAC;IACpB,GAAG,4BAA4B;IAC/B,8BAA8B;IAC9B,8BAA8B;IAC9B,6BAA6B;CAC9B,CAAC,CAAA;AAEF,MAAM,MAAM,GAAG,cAAc;KAC1B,EAAE,CAAC,wBAAwB,CAAC;KAC5B,QAAQ,CACP,4HAA4H,CAC7H,CAAA;AACH,MAAM,CAAC,MAAM,gCAAgC,GAAG,CAAC,CAAC,kBAAkB,CAAC,QAAQ,EAAE;IAC7E,6BAA6B;SAC1B,MAAM,CAAC;QACN,WAAW;KACZ,CAAC;SACD,QAAQ,CACP,4EAA4E,CAC7E;IACH,+BAA+B;SAC5B,MAAM,CAAC;QACN,WAAW;QACX,MAAM;KACP,CAAC;SACD,QAAQ,CACP,2EAA2E,CAC5E;IACH,4BAA4B;SACzB,MAAM,CAAC,EAAE,WAAW,EAAE,KAAK,EAAE,CAAC;SAC9B,QAAQ,CACP,wEAAwE,CACzE;CACJ,CAAC,CAAA"}
1
+ {"version":3,"file":"encode-credential.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/action-attempts/encode-credential.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EACL,cAAc,EACd,wBAAwB,GACzB,MAAM,0BAA0B,CAAA;AACjC,OAAO,EACL,4BAA4B,EAC5B,4BAA4B,EAC5B,6BAA6B,EAC7B,+BAA+B,GAChC,MAAM,aAAa,CAAA;AAEpB,MAAM,WAAW,GAAG,CAAC;KAClB,OAAO,CAAC,mBAAmB,CAAC;KAC5B,QAAQ,CACP,uGAAuG,CACxG,CAAA;AAEH,MAAM,8BAA8B,GAAG,CAAC;KACrC,MAAM,CAAC;IACN,IAAI,EAAE,CAAC;SACJ,OAAO,CAAC,0BAA0B,CAAC;SACnC,QAAQ,CACP,oEAAoE,CACrE;IACH,OAAO,EAAE,CAAC;SACP,MAAM,EAAE;SACR,QAAQ,CACP,wGAAwG,CACzG;CACJ,CAAC;KACD,QAAQ,CAAC,+DAA+D,CAAC,CAAA;AAE5E,MAAM,8BAA8B,GAAG,CAAC;KACrC,MAAM,CAAC;IACN,IAAI,EAAE,CAAC;SACJ,OAAO,CAAC,0BAA0B,CAAC;SACnC,QAAQ,CAAC,qDAAqD,CAAC;IAClE,OAAO,EAAE,CAAC;SACP,MAAM,EAAE;SACR,QAAQ,CACP,wGAAwG,CACzG;CACJ,CAAC;KACD,QAAQ,CAAC,gDAAgD,CAAC,CAAA;AAE7D,MAAM,6BAA6B,GAAG,CAAC;KACpC,MAAM,CAAC;IACN,IAAI,EAAE,CAAC;SACJ,OAAO,CAAC,+BAA+B,CAAC;SACxC,QAAQ,CACP,yEAAyE,CAC1E;IACH,OAAO,EAAE,CAAC;SACP,MAAM,EAAE;SACR,QAAQ,CACP,wGAAwG,CACzG;CACJ,CAAC;KACD,QAAQ,CACP,oEAAoE,CACrE,CAAA;AAEH,MAAM,wBAAwB,GAAG,CAAC;KAC/B,MAAM,CAAC;IACN,IAAI,EAAE,CAAC;SACJ,OAAO,CAAC,oBAAoB,CAAC;SAC7B,QAAQ,CAAC,8DAA8D,CAAC;IAC3E,OAAO,EAAE,CAAC;SACP,MAAM,EAAE;SACR,QAAQ,CACP,wGAAwG,CACzG;CACJ,CAAC;KACD,QAAQ,CAAC,yDAAyD,CAAC,CAAA;AAEtE,MAAM,KAAK,GAAG,CAAC,CAAC,KAAK,CAAC;IACpB,GAAG,4BAA4B;IAC/B,8BAA8B;IAC9B,8BAA8B;IAC9B,6BAA6B;IAC7B,wBAAwB;CACzB,CAAC,CAAA;AAEF,MAAM,MAAM,GAAG,cAAc;KAC1B,EAAE,CAAC,wBAAwB,CAAC;KAC5B,QAAQ,CACP,4HAA4H,CAC7H,CAAA;AACH,MAAM,CAAC,MAAM,gCAAgC,GAAG,CAAC,CAAC,kBAAkB,CAAC,QAAQ,EAAE;IAC7E,6BAA6B;SAC1B,MAAM,CAAC;QACN,WAAW;KACZ,CAAC;SACD,QAAQ,CACP,4EAA4E,CAC7E;IACH,+BAA+B;SAC5B,MAAM,CAAC;QACN,WAAW;QACX,MAAM;KACP,CAAC;SACD,QAAQ,CACP,2EAA2E,CAC5E;IACH,4BAA4B;SACzB,MAAM,CAAC,EAAE,WAAW,EAAE,KAAK,EAAE,CAAC;SAC9B,QAAQ,CACP,wEAAwE,CACzE;CACJ,CAAC,CAAA"}
@@ -1474,6 +1474,15 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
1474
1474
  }, {
1475
1475
  message: string;
1476
1476
  type: "no_credential_on_encoder";
1477
+ }>, z.ZodObject<{
1478
+ type: z.ZodLiteral<"no_card_on_encoder">;
1479
+ message: z.ZodString;
1480
+ }, "strip", z.ZodTypeAny, {
1481
+ message: string;
1482
+ type: "no_card_on_encoder";
1483
+ }, {
1484
+ message: string;
1485
+ type: "no_card_on_encoder";
1477
1486
  }>]>;
1478
1487
  }, "strip", z.ZodTypeAny, {
1479
1488
  status: "error";
@@ -1487,6 +1496,9 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
1487
1496
  } | {
1488
1497
  message: string;
1489
1498
  type: "no_credential_on_encoder";
1499
+ } | {
1500
+ message: string;
1501
+ type: "no_card_on_encoder";
1490
1502
  };
1491
1503
  result: null;
1492
1504
  action_type: "SCAN_CREDENTIAL";
@@ -1502,6 +1514,9 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
1502
1514
  } | {
1503
1515
  message: string;
1504
1516
  type: "no_credential_on_encoder";
1517
+ } | {
1518
+ message: string;
1519
+ type: "no_card_on_encoder";
1505
1520
  };
1506
1521
  result: null;
1507
1522
  action_type: "SCAN_CREDENTIAL";
@@ -14,9 +14,20 @@ const no_credential_on_encoder_error = z
14
14
  .describe('Detailed description of the error. Provides insights into the issue and potentially how to rectify it.'),
15
15
  })
16
16
  .describe('Error to indicate that there is no credential on the encoder.');
17
+ const no_card_on_encoder_error = z
18
+ .object({
19
+ type: z
20
+ .literal('no_card_on_encoder')
21
+ .describe('Error type to indicate that there is no card on the encoder.'),
22
+ message: z
23
+ .string()
24
+ .describe('Detailed description of the error. Provides insights into the issue and potentially how to rectify it.'),
25
+ })
26
+ .describe('Error to indicate that there is no card on the encoder.');
17
27
  const error = z.union([
18
28
  ...common_action_attempt_errors,
19
29
  no_credential_on_encoder_error,
30
+ no_card_on_encoder_error,
20
31
  ]);
21
32
  const warning = z
22
33
  .object({
@@ -1 +1 @@
1
- {"version":3,"file":"scan-credential.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/action-attempts/scan-credential.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EACL,cAAc,EACd,yBAAyB,EACzB,wBAAwB,GACzB,MAAM,0BAA0B,CAAA;AACjC,OAAO,EACL,4BAA4B,EAC5B,4BAA4B,EAC5B,6BAA6B,EAC7B,+BAA+B,GAChC,MAAM,aAAa,CAAA;AAEpB,MAAM,WAAW,GAAG,CAAC;KAClB,OAAO,CAAC,iBAAiB,CAAC;KAC1B,QAAQ,CAAC,8DAA8D,CAAC,CAAA;AAE3E,MAAM,8BAA8B,GAAG,CAAC;KACrC,MAAM,CAAC;IACN,IAAI,EAAE,CAAC;SACJ,OAAO,CAAC,0BAA0B,CAAC;SACnC,QAAQ,CACP,oEAAoE,CACrE;IACH,OAAO,EAAE,CAAC;SACP,MAAM,EAAE;SACR,QAAQ,CACP,wGAAwG,CACzG;CACJ,CAAC;KACD,QAAQ,CAAC,+DAA+D,CAAC,CAAA;AAE5E,MAAM,KAAK,GAAG,CAAC,CAAC,KAAK,CAAC;IACpB,GAAG,4BAA4B;IAC/B,8BAA8B;CAC/B,CAAC,CAAA;AAEF,MAAM,OAAO,GAAG,CAAC;KACd,MAAM,CAAC;IACN,YAAY,EAAE,CAAC;SACZ,KAAK,CAAC;QACL,CAAC,CAAC,OAAO,CAAC,uCAAuC,CAAC;QAClD,CAAC,CAAC,OAAO,CAAC,kCAAkC,CAAC;KAC9C,CAAC;SACD,QAAQ,CAAC,uDAAuD,CAAC;IACpE,eAAe,EAAE,CAAC;SACf,MAAM,EAAE;SACR,QAAQ,CACP,0GAA0G,CAC3G;CACJ,CAAC;KACD,QAAQ,CAAC,2CAA2C,CAAC,CAAA;AAExD,MAAM,sBAAsB,GAAG,cAAc,CAAC,EAAE,CAAC,wBAAwB,CAAC,CAAA;AAE1E,MAAM,MAAM,GAAG,CAAC;KACb,MAAM,CAAC;IACN,yBAAyB,EAAE,yBAAyB;SACjD,QAAQ,EAAE;SACV,QAAQ,CAAC,6DAA6D,CAAC;IAC1E,sBAAsB,EAAE,sBAAsB;SAC3C,QAAQ,EAAE;SACV,QAAQ,CACP,wEAAwE,CACzE;IACH,QAAQ,EAAE,CAAC;SACR,KAAK,CAAC,OAAO,CAAC;SACd,QAAQ,CACP,4LAA4L,CAC7L;CACJ,CAAC;KACD,QAAQ,CACP,4NAA4N,CAC7N,CAAA;AAEH,MAAM,CAAC,MAAM,8BAA8B,GAAG,CAAC,CAAC,kBAAkB,CAAC,QAAQ,EAAE;IAC3E,6BAA6B;SAC1B,MAAM,CAAC;QACN,WAAW;KACZ,CAAC;SACD,QAAQ,CAAC,+DAA+D,CAAC;IAC5E,+BAA+B;SAC5B,MAAM,CAAC;QACN,WAAW;QACX,MAAM;KACP,CAAC;SACD,QAAQ,CAAC,0DAA0D,CAAC;IACvE,4BAA4B;SACzB,MAAM,CAAC,EAAE,WAAW,EAAE,KAAK,EAAE,CAAC;SAC9B,QAAQ,CAAC,uDAAuD,CAAC;CACrE,CAAC,CAAA"}
1
+ {"version":3,"file":"scan-credential.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/action-attempts/scan-credential.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EACL,cAAc,EACd,yBAAyB,EACzB,wBAAwB,GACzB,MAAM,0BAA0B,CAAA;AACjC,OAAO,EACL,4BAA4B,EAC5B,4BAA4B,EAC5B,6BAA6B,EAC7B,+BAA+B,GAChC,MAAM,aAAa,CAAA;AAEpB,MAAM,WAAW,GAAG,CAAC;KAClB,OAAO,CAAC,iBAAiB,CAAC;KAC1B,QAAQ,CAAC,8DAA8D,CAAC,CAAA;AAE3E,MAAM,8BAA8B,GAAG,CAAC;KACrC,MAAM,CAAC;IACN,IAAI,EAAE,CAAC;SACJ,OAAO,CAAC,0BAA0B,CAAC;SACnC,QAAQ,CACP,oEAAoE,CACrE;IACH,OAAO,EAAE,CAAC;SACP,MAAM,EAAE;SACR,QAAQ,CACP,wGAAwG,CACzG;CACJ,CAAC;KACD,QAAQ,CAAC,+DAA+D,CAAC,CAAA;AAE5E,MAAM,wBAAwB,GAAG,CAAC;KAC/B,MAAM,CAAC;IACN,IAAI,EAAE,CAAC;SACJ,OAAO,CAAC,oBAAoB,CAAC;SAC7B,QAAQ,CAAC,8DAA8D,CAAC;IAC3E,OAAO,EAAE,CAAC;SACP,MAAM,EAAE;SACR,QAAQ,CACP,wGAAwG,CACzG;CACJ,CAAC;KACD,QAAQ,CAAC,yDAAyD,CAAC,CAAA;AAEtE,MAAM,KAAK,GAAG,CAAC,CAAC,KAAK,CAAC;IACpB,GAAG,4BAA4B;IAC/B,8BAA8B;IAC9B,wBAAwB;CACzB,CAAC,CAAA;AAEF,MAAM,OAAO,GAAG,CAAC;KACd,MAAM,CAAC;IACN,YAAY,EAAE,CAAC;SACZ,KAAK,CAAC;QACL,CAAC,CAAC,OAAO,CAAC,uCAAuC,CAAC;QAClD,CAAC,CAAC,OAAO,CAAC,kCAAkC,CAAC;KAC9C,CAAC;SACD,QAAQ,CAAC,uDAAuD,CAAC;IACpE,eAAe,EAAE,CAAC;SACf,MAAM,EAAE;SACR,QAAQ,CACP,0GAA0G,CAC3G;CACJ,CAAC;KACD,QAAQ,CAAC,2CAA2C,CAAC,CAAA;AAExD,MAAM,sBAAsB,GAAG,cAAc,CAAC,EAAE,CAAC,wBAAwB,CAAC,CAAA;AAE1E,MAAM,MAAM,GAAG,CAAC;KACb,MAAM,CAAC;IACN,yBAAyB,EAAE,yBAAyB;SACjD,QAAQ,EAAE;SACV,QAAQ,CAAC,6DAA6D,CAAC;IAC1E,sBAAsB,EAAE,sBAAsB;SAC3C,QAAQ,EAAE;SACV,QAAQ,CACP,wEAAwE,CACzE;IACH,QAAQ,EAAE,CAAC;SACR,KAAK,CAAC,OAAO,CAAC;SACd,QAAQ,CACP,4LAA4L,CAC7L;CACJ,CAAC;KACD,QAAQ,CACP,4NAA4N,CAC7N,CAAA;AAEH,MAAM,CAAC,MAAM,8BAA8B,GAAG,CAAC,CAAC,kBAAkB,CAAC,QAAQ,EAAE;IAC3E,6BAA6B;SAC1B,MAAM,CAAC;QACN,WAAW;KACZ,CAAC;SACD,QAAQ,CAAC,+DAA+D,CAAC;IAC5E,+BAA+B;SAC5B,MAAM,CAAC;QACN,WAAW;QACX,MAAM;KACP,CAAC;SACD,QAAQ,CAAC,0DAA0D,CAAC;IACvE,4BAA4B;SACzB,MAAM,CAAC,EAAE,WAAW,EAAE,KAAK,EAAE,CAAC;SAC9B,QAAQ,CAAC,uDAAuD,CAAC;CACrE,CAAC,CAAA"}
@@ -28487,6 +28487,15 @@ export declare const workspaces_batch: z.ZodObject<{
28487
28487
  }, {
28488
28488
  message: string;
28489
28489
  type: "no_credential_on_encoder";
28490
+ }>, z.ZodObject<{
28491
+ type: z.ZodLiteral<"no_card_on_encoder">;
28492
+ message: z.ZodString;
28493
+ }, "strip", z.ZodTypeAny, {
28494
+ message: string;
28495
+ type: "no_card_on_encoder";
28496
+ }, {
28497
+ message: string;
28498
+ type: "no_card_on_encoder";
28490
28499
  }>]>;
28491
28500
  }, "strip", z.ZodTypeAny, {
28492
28501
  status: "error";
@@ -28500,6 +28509,9 @@ export declare const workspaces_batch: z.ZodObject<{
28500
28509
  } | {
28501
28510
  message: string;
28502
28511
  type: "no_credential_on_encoder";
28512
+ } | {
28513
+ message: string;
28514
+ type: "no_card_on_encoder";
28503
28515
  };
28504
28516
  result: null;
28505
28517
  action_type: "SCAN_CREDENTIAL";
@@ -28515,6 +28527,9 @@ export declare const workspaces_batch: z.ZodObject<{
28515
28527
  } | {
28516
28528
  message: string;
28517
28529
  type: "no_credential_on_encoder";
28530
+ } | {
28531
+ message: string;
28532
+ type: "no_card_on_encoder";
28518
28533
  };
28519
28534
  result: null;
28520
28535
  action_type: "SCAN_CREDENTIAL";
@@ -29516,6 +29531,15 @@ export declare const workspaces_batch: z.ZodObject<{
29516
29531
  }, {
29517
29532
  message: string;
29518
29533
  type: "credential_cannot_be_reissued";
29534
+ }>, z.ZodObject<{
29535
+ type: z.ZodLiteral<"no_card_on_encoder">;
29536
+ message: z.ZodString;
29537
+ }, "strip", z.ZodTypeAny, {
29538
+ message: string;
29539
+ type: "no_card_on_encoder";
29540
+ }, {
29541
+ message: string;
29542
+ type: "no_card_on_encoder";
29519
29543
  }>]>;
29520
29544
  }, "strip", z.ZodTypeAny, {
29521
29545
  status: "error";
@@ -29535,6 +29559,9 @@ export declare const workspaces_batch: z.ZodObject<{
29535
29559
  } | {
29536
29560
  message: string;
29537
29561
  type: "credential_cannot_be_reissued";
29562
+ } | {
29563
+ message: string;
29564
+ type: "no_card_on_encoder";
29538
29565
  };
29539
29566
  result: null;
29540
29567
  action_type: "ENCODE_CREDENTIAL";
@@ -29556,6 +29583,9 @@ export declare const workspaces_batch: z.ZodObject<{
29556
29583
  } | {
29557
29584
  message: string;
29558
29585
  type: "credential_cannot_be_reissued";
29586
+ } | {
29587
+ message: string;
29588
+ type: "no_card_on_encoder";
29559
29589
  };
29560
29590
  result: null;
29561
29591
  action_type: "ENCODE_CREDENTIAL";
@@ -43295,6 +43325,9 @@ export declare const workspaces_batch: z.ZodObject<{
43295
43325
  } | {
43296
43326
  message: string;
43297
43327
  type: "credential_cannot_be_reissued";
43328
+ } | {
43329
+ message: string;
43330
+ type: "no_card_on_encoder";
43298
43331
  };
43299
43332
  result: null;
43300
43333
  action_type: "ENCODE_CREDENTIAL";
@@ -43556,6 +43589,9 @@ export declare const workspaces_batch: z.ZodObject<{
43556
43589
  } | {
43557
43590
  message: string;
43558
43591
  type: "no_credential_on_encoder";
43592
+ } | {
43593
+ message: string;
43594
+ type: "no_card_on_encoder";
43559
43595
  };
43560
43596
  result: null;
43561
43597
  action_type: "SCAN_CREDENTIAL";
@@ -47267,6 +47303,9 @@ export declare const workspaces_batch: z.ZodObject<{
47267
47303
  } | {
47268
47304
  message: string;
47269
47305
  type: "credential_cannot_be_reissued";
47306
+ } | {
47307
+ message: string;
47308
+ type: "no_card_on_encoder";
47270
47309
  };
47271
47310
  result: null;
47272
47311
  action_type: "ENCODE_CREDENTIAL";
@@ -47528,6 +47567,9 @@ export declare const workspaces_batch: z.ZodObject<{
47528
47567
  } | {
47529
47568
  message: string;
47530
47569
  type: "no_credential_on_encoder";
47570
+ } | {
47571
+ message: string;
47572
+ type: "no_card_on_encoder";
47531
47573
  };
47532
47574
  result: null;
47533
47575
  action_type: "SCAN_CREDENTIAL";
@@ -57530,6 +57572,15 @@ export declare const batch: z.ZodObject<{
57530
57572
  }, {
57531
57573
  message: string;
57532
57574
  type: "no_credential_on_encoder";
57575
+ }>, z.ZodObject<{
57576
+ type: z.ZodLiteral<"no_card_on_encoder">;
57577
+ message: z.ZodString;
57578
+ }, "strip", z.ZodTypeAny, {
57579
+ message: string;
57580
+ type: "no_card_on_encoder";
57581
+ }, {
57582
+ message: string;
57583
+ type: "no_card_on_encoder";
57533
57584
  }>]>;
57534
57585
  }, "strip", z.ZodTypeAny, {
57535
57586
  status: "error";
@@ -57543,6 +57594,9 @@ export declare const batch: z.ZodObject<{
57543
57594
  } | {
57544
57595
  message: string;
57545
57596
  type: "no_credential_on_encoder";
57597
+ } | {
57598
+ message: string;
57599
+ type: "no_card_on_encoder";
57546
57600
  };
57547
57601
  result: null;
57548
57602
  action_type: "SCAN_CREDENTIAL";
@@ -57558,6 +57612,9 @@ export declare const batch: z.ZodObject<{
57558
57612
  } | {
57559
57613
  message: string;
57560
57614
  type: "no_credential_on_encoder";
57615
+ } | {
57616
+ message: string;
57617
+ type: "no_card_on_encoder";
57561
57618
  };
57562
57619
  result: null;
57563
57620
  action_type: "SCAN_CREDENTIAL";
@@ -58559,6 +58616,15 @@ export declare const batch: z.ZodObject<{
58559
58616
  }, {
58560
58617
  message: string;
58561
58618
  type: "credential_cannot_be_reissued";
58619
+ }>, z.ZodObject<{
58620
+ type: z.ZodLiteral<"no_card_on_encoder">;
58621
+ message: z.ZodString;
58622
+ }, "strip", z.ZodTypeAny, {
58623
+ message: string;
58624
+ type: "no_card_on_encoder";
58625
+ }, {
58626
+ message: string;
58627
+ type: "no_card_on_encoder";
58562
58628
  }>]>;
58563
58629
  }, "strip", z.ZodTypeAny, {
58564
58630
  status: "error";
@@ -58578,6 +58644,9 @@ export declare const batch: z.ZodObject<{
58578
58644
  } | {
58579
58645
  message: string;
58580
58646
  type: "credential_cannot_be_reissued";
58647
+ } | {
58648
+ message: string;
58649
+ type: "no_card_on_encoder";
58581
58650
  };
58582
58651
  result: null;
58583
58652
  action_type: "ENCODE_CREDENTIAL";
@@ -58599,6 +58668,9 @@ export declare const batch: z.ZodObject<{
58599
58668
  } | {
58600
58669
  message: string;
58601
58670
  type: "credential_cannot_be_reissued";
58671
+ } | {
58672
+ message: string;
58673
+ type: "no_card_on_encoder";
58602
58674
  };
58603
58675
  result: null;
58604
58676
  action_type: "ENCODE_CREDENTIAL";
@@ -71897,6 +71969,9 @@ export declare const batch: z.ZodObject<{
71897
71969
  } | {
71898
71970
  message: string;
71899
71971
  type: "credential_cannot_be_reissued";
71972
+ } | {
71973
+ message: string;
71974
+ type: "no_card_on_encoder";
71900
71975
  };
71901
71976
  result: null;
71902
71977
  action_type: "ENCODE_CREDENTIAL";
@@ -72158,6 +72233,9 @@ export declare const batch: z.ZodObject<{
72158
72233
  } | {
72159
72234
  message: string;
72160
72235
  type: "no_credential_on_encoder";
72236
+ } | {
72237
+ message: string;
72238
+ type: "no_card_on_encoder";
72161
72239
  };
72162
72240
  result: null;
72163
72241
  action_type: "SCAN_CREDENTIAL";
@@ -75800,6 +75878,9 @@ export declare const batch: z.ZodObject<{
75800
75878
  } | {
75801
75879
  message: string;
75802
75880
  type: "credential_cannot_be_reissued";
75881
+ } | {
75882
+ message: string;
75883
+ type: "no_card_on_encoder";
75803
75884
  };
75804
75885
  result: null;
75805
75886
  action_type: "ENCODE_CREDENTIAL";
@@ -76061,6 +76142,9 @@ export declare const batch: z.ZodObject<{
76061
76142
  } | {
76062
76143
  message: string;
76063
76144
  type: "no_credential_on_encoder";
76145
+ } | {
76146
+ message: string;
76147
+ type: "no_card_on_encoder";
76064
76148
  };
76065
76149
  result: null;
76066
76150
  action_type: "SCAN_CREDENTIAL";
@@ -52428,6 +52428,10 @@ declare const _default: {
52428
52428
  description: string;
52429
52429
  type: string;
52430
52430
  format?: never;
52431
+ default?: never;
52432
+ exclusiveMinimum?: never;
52433
+ minimum?: never;
52434
+ nullable?: never;
52431
52435
  };
52432
52436
  } | {
52433
52437
  in: string;
@@ -52436,6 +52440,34 @@ declare const _default: {
52436
52440
  description: string;
52437
52441
  format: string;
52438
52442
  type: string;
52443
+ default?: never;
52444
+ exclusiveMinimum?: never;
52445
+ minimum?: never;
52446
+ nullable?: never;
52447
+ };
52448
+ } | {
52449
+ in: string;
52450
+ name: string;
52451
+ schema: {
52452
+ default: number;
52453
+ description: string;
52454
+ exclusiveMinimum: boolean;
52455
+ minimum: number;
52456
+ type: string;
52457
+ format?: never;
52458
+ nullable?: never;
52459
+ };
52460
+ } | {
52461
+ in: string;
52462
+ name: string;
52463
+ schema: {
52464
+ description: string;
52465
+ nullable: boolean;
52466
+ type: string;
52467
+ format?: never;
52468
+ default?: never;
52469
+ exclusiveMinimum?: never;
52470
+ minimum?: never;
52439
52471
  };
52440
52472
  })[];
52441
52473
  responses: {
@@ -52447,6 +52479,9 @@ declare const _default: {
52447
52479
  ok: {
52448
52480
  type: string;
52449
52481
  };
52482
+ pagination: {
52483
+ $ref: string;
52484
+ };
52450
52485
  user_identities: {
52451
52486
  items: {
52452
52487
  $ref: string;
@@ -52505,11 +52540,28 @@ declare const _default: {
52505
52540
  'application/json': {
52506
52541
  schema: {
52507
52542
  properties: {
52543
+ created_before: {
52544
+ description: string;
52545
+ format: string;
52546
+ type: string;
52547
+ };
52508
52548
  credential_manager_acs_system_id: {
52509
52549
  description: string;
52510
52550
  format: string;
52511
52551
  type: string;
52512
52552
  };
52553
+ limit: {
52554
+ default: number;
52555
+ description: string;
52556
+ exclusiveMinimum: boolean;
52557
+ minimum: number;
52558
+ type: string;
52559
+ };
52560
+ page_cursor: {
52561
+ description: string;
52562
+ nullable: boolean;
52563
+ type: string;
52564
+ };
52513
52565
  search: {
52514
52566
  description: string;
52515
52567
  type: string;
@@ -52529,6 +52581,9 @@ declare const _default: {
52529
52581
  ok: {
52530
52582
  type: string;
52531
52583
  };
52584
+ pagination: {
52585
+ $ref: string;
52586
+ };
52532
52587
  user_identities: {
52533
52588
  items: {
52534
52589
  $ref: string;
@@ -53656,14 +53711,55 @@ declare const _default: {
53656
53711
  get: {
53657
53712
  description: string;
53658
53713
  operationId: string;
53659
- parameters: {
53714
+ parameters: ({
53660
53715
  in: string;
53661
53716
  name: string;
53662
53717
  schema: {
53663
53718
  description: string;
53664
53719
  type: string;
53720
+ default?: never;
53721
+ exclusiveMinimum?: never;
53722
+ minimum?: never;
53723
+ format?: never;
53724
+ nullable?: never;
53665
53725
  };
53666
- }[];
53726
+ } | {
53727
+ in: string;
53728
+ name: string;
53729
+ schema: {
53730
+ default: number;
53731
+ description: string;
53732
+ exclusiveMinimum: boolean;
53733
+ minimum: number;
53734
+ type: string;
53735
+ format?: never;
53736
+ nullable?: never;
53737
+ };
53738
+ } | {
53739
+ in: string;
53740
+ name: string;
53741
+ schema: {
53742
+ description: string;
53743
+ format: string;
53744
+ type: string;
53745
+ default?: never;
53746
+ exclusiveMinimum?: never;
53747
+ minimum?: never;
53748
+ nullable?: never;
53749
+ };
53750
+ } | {
53751
+ in: string;
53752
+ name: string;
53753
+ schema: {
53754
+ description: string;
53755
+ nullable: boolean;
53756
+ type: string;
53757
+ default?: never;
53758
+ exclusiveMinimum?: never;
53759
+ minimum?: never;
53760
+ format?: never;
53761
+ };
53762
+ })[];
53667
53763
  responses: {
53668
53764
  200: {
53669
53765
  content: {
@@ -53673,6 +53769,9 @@ declare const _default: {
53673
53769
  ok: {
53674
53770
  type: string;
53675
53771
  };
53772
+ pagination: {
53773
+ $ref: string;
53774
+ };
53676
53775
  user_identities: {
53677
53776
  items: {
53678
53777
  description: string;
@@ -53852,6 +53951,23 @@ declare const _default: {
53852
53951
  'application/json': {
53853
53952
  schema: {
53854
53953
  properties: {
53954
+ created_before: {
53955
+ description: string;
53956
+ format: string;
53957
+ type: string;
53958
+ };
53959
+ limit: {
53960
+ default: number;
53961
+ description: string;
53962
+ exclusiveMinimum: boolean;
53963
+ minimum: number;
53964
+ type: string;
53965
+ };
53966
+ page_cursor: {
53967
+ description: string;
53968
+ nullable: boolean;
53969
+ type: string;
53970
+ };
53855
53971
  search: {
53856
53972
  description: string;
53857
53973
  type: string;
@@ -53871,6 +53987,9 @@ declare const _default: {
53871
53987
  ok: {
53872
53988
  type: string;
53873
53989
  };
53990
+ pagination: {
53991
+ $ref: string;
53992
+ };
53874
53993
  user_identities: {
53875
53994
  items: {
53876
53995
  description: string;