@seamapi/types 1.320.0 → 1.321.1

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 (26) hide show
  1. package/dist/connect.cjs +140 -33
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +315 -188
  4. package/lib/seam/connect/models/acs/acs-access-group.d.ts +105 -13
  5. package/lib/seam/connect/models/acs/acs-access-group.js +28 -0
  6. package/lib/seam/connect/models/acs/acs-access-group.js.map +1 -1
  7. package/lib/seam/connect/models/acs/acs-credential.d.ts +22 -22
  8. package/lib/seam/connect/models/acs/acs-credential.js +4 -4
  9. package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
  10. package/lib/seam/connect/models/acs/acs-entrance.d.ts +0 -10
  11. package/lib/seam/connect/models/acs/metadata/dormakaba-community.d.ts +0 -6
  12. package/lib/seam/connect/models/acs/metadata/dormakaba-community.js +0 -2
  13. package/lib/seam/connect/models/acs/metadata/dormakaba-community.js.map +1 -1
  14. package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +32 -32
  15. package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +14 -14
  16. package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +18 -18
  17. package/lib/seam/connect/openapi.d.ts +75 -12
  18. package/lib/seam/connect/openapi.js +101 -12
  19. package/lib/seam/connect/openapi.js.map +1 -1
  20. package/lib/seam/connect/route-types.d.ts +138 -112
  21. package/package.json +2 -2
  22. package/src/lib/seam/connect/models/acs/acs-access-group.ts +45 -0
  23. package/src/lib/seam/connect/models/acs/acs-credential.ts +4 -4
  24. package/src/lib/seam/connect/models/acs/metadata/dormakaba-community.ts +0 -2
  25. package/src/lib/seam/connect/openapi.ts +114 -12
  26. package/src/lib/seam/connect/route-types.ts +138 -104
@@ -357,14 +357,14 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
357
357
  created_at: z.ZodString;
358
358
  message: z.ZodString;
359
359
  }, {
360
- warning_code: z.ZodLiteral<"unknown_issue_with_credential">;
360
+ warning_code: z.ZodLiteral<"unknown_issue_with_acs_credential">;
361
361
  }>, "strip", z.ZodTypeAny, {
362
362
  message: string;
363
- warning_code: "unknown_issue_with_credential";
363
+ warning_code: "unknown_issue_with_acs_credential";
364
364
  created_at: string;
365
365
  }, {
366
366
  message: string;
367
- warning_code: "unknown_issue_with_credential";
367
+ warning_code: "unknown_issue_with_acs_credential";
368
368
  created_at: string;
369
369
  }>]>, "many">;
370
370
  is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
@@ -424,7 +424,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
424
424
  created_at: string;
425
425
  } | {
426
426
  message: string;
427
- warning_code: "unknown_issue_with_credential";
427
+ warning_code: "unknown_issue_with_acs_credential";
428
428
  created_at: string;
429
429
  })[];
430
430
  display_name: string;
@@ -482,7 +482,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
482
482
  created_at: string;
483
483
  } | {
484
484
  message: string;
485
- warning_code: "unknown_issue_with_credential";
485
+ warning_code: "unknown_issue_with_acs_credential";
486
486
  created_at: string;
487
487
  })[];
488
488
  display_name: string;
@@ -601,14 +601,14 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
601
601
  created_at: z.ZodString;
602
602
  message: z.ZodString;
603
603
  }, {
604
- warning_code: z.ZodLiteral<"unknown_issue_with_credential">;
604
+ warning_code: z.ZodLiteral<"unknown_issue_with_acs_credential">;
605
605
  }>, "strip", z.ZodTypeAny, {
606
606
  message: string;
607
- warning_code: "unknown_issue_with_credential";
607
+ warning_code: "unknown_issue_with_acs_credential";
608
608
  created_at: string;
609
609
  }, {
610
610
  message: string;
611
- warning_code: "unknown_issue_with_credential";
611
+ warning_code: "unknown_issue_with_acs_credential";
612
612
  created_at: string;
613
613
  }>]>, "many">;
614
614
  is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
@@ -668,7 +668,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
668
668
  created_at: string;
669
669
  } | {
670
670
  message: string;
671
- warning_code: "unknown_issue_with_credential";
671
+ warning_code: "unknown_issue_with_acs_credential";
672
672
  created_at: string;
673
673
  })[];
674
674
  display_name: string;
@@ -726,7 +726,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
726
726
  created_at: string;
727
727
  } | {
728
728
  message: string;
729
- warning_code: "unknown_issue_with_credential";
729
+ warning_code: "unknown_issue_with_acs_credential";
730
730
  created_at: string;
731
731
  })[];
732
732
  display_name: string;
@@ -821,7 +821,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
821
821
  created_at: string;
822
822
  } | {
823
823
  message: string;
824
- warning_code: "unknown_issue_with_credential";
824
+ warning_code: "unknown_issue_with_acs_credential";
825
825
  created_at: string;
826
826
  })[];
827
827
  display_name: string;
@@ -879,7 +879,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
879
879
  created_at: string;
880
880
  } | {
881
881
  message: string;
882
- warning_code: "unknown_issue_with_credential";
882
+ warning_code: "unknown_issue_with_acs_credential";
883
883
  created_at: string;
884
884
  })[];
885
885
  display_name: string;
@@ -964,7 +964,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
964
964
  created_at: string;
965
965
  } | {
966
966
  message: string;
967
- warning_code: "unknown_issue_with_credential";
967
+ warning_code: "unknown_issue_with_acs_credential";
968
968
  created_at: string;
969
969
  })[];
970
970
  display_name: string;
@@ -1022,7 +1022,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
1022
1022
  created_at: string;
1023
1023
  } | {
1024
1024
  message: string;
1025
- warning_code: "unknown_issue_with_credential";
1025
+ warning_code: "unknown_issue_with_acs_credential";
1026
1026
  created_at: string;
1027
1027
  })[];
1028
1028
  display_name: string;
@@ -1112,7 +1112,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
1112
1112
  created_at: string;
1113
1113
  } | {
1114
1114
  message: string;
1115
- warning_code: "unknown_issue_with_credential";
1115
+ warning_code: "unknown_issue_with_acs_credential";
1116
1116
  created_at: string;
1117
1117
  })[];
1118
1118
  display_name: string;
@@ -1170,7 +1170,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
1170
1170
  created_at: string;
1171
1171
  } | {
1172
1172
  message: string;
1173
- warning_code: "unknown_issue_with_credential";
1173
+ warning_code: "unknown_issue_with_acs_credential";
1174
1174
  created_at: string;
1175
1175
  })[];
1176
1176
  display_name: string;
@@ -1261,7 +1261,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
1261
1261
  created_at: string;
1262
1262
  } | {
1263
1263
  message: string;
1264
- warning_code: "unknown_issue_with_credential";
1264
+ warning_code: "unknown_issue_with_acs_credential";
1265
1265
  created_at: string;
1266
1266
  })[];
1267
1267
  display_name: string;
@@ -1319,7 +1319,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
1319
1319
  created_at: string;
1320
1320
  } | {
1321
1321
  message: string;
1322
- warning_code: "unknown_issue_with_credential";
1322
+ warning_code: "unknown_issue_with_acs_credential";
1323
1323
  created_at: string;
1324
1324
  })[];
1325
1325
  display_name: string;
@@ -1536,14 +1536,14 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
1536
1536
  created_at: z.ZodString;
1537
1537
  message: z.ZodString;
1538
1538
  }, {
1539
- warning_code: z.ZodLiteral<"unknown_issue_with_credential">;
1539
+ warning_code: z.ZodLiteral<"unknown_issue_with_acs_credential">;
1540
1540
  }>, "strip", z.ZodTypeAny, {
1541
1541
  message: string;
1542
- warning_code: "unknown_issue_with_credential";
1542
+ warning_code: "unknown_issue_with_acs_credential";
1543
1543
  created_at: string;
1544
1544
  }, {
1545
1545
  message: string;
1546
- warning_code: "unknown_issue_with_credential";
1546
+ warning_code: "unknown_issue_with_acs_credential";
1547
1547
  created_at: string;
1548
1548
  }>]>, "many">;
1549
1549
  is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
@@ -1603,7 +1603,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
1603
1603
  created_at: string;
1604
1604
  } | {
1605
1605
  message: string;
1606
- warning_code: "unknown_issue_with_credential";
1606
+ warning_code: "unknown_issue_with_acs_credential";
1607
1607
  created_at: string;
1608
1608
  })[];
1609
1609
  display_name: string;
@@ -1661,7 +1661,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
1661
1661
  created_at: string;
1662
1662
  } | {
1663
1663
  message: string;
1664
- warning_code: "unknown_issue_with_credential";
1664
+ warning_code: "unknown_issue_with_acs_credential";
1665
1665
  created_at: string;
1666
1666
  })[];
1667
1667
  display_name: string;
@@ -1780,14 +1780,14 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
1780
1780
  created_at: z.ZodString;
1781
1781
  message: z.ZodString;
1782
1782
  }, {
1783
- warning_code: z.ZodLiteral<"unknown_issue_with_credential">;
1783
+ warning_code: z.ZodLiteral<"unknown_issue_with_acs_credential">;
1784
1784
  }>, "strip", z.ZodTypeAny, {
1785
1785
  message: string;
1786
- warning_code: "unknown_issue_with_credential";
1786
+ warning_code: "unknown_issue_with_acs_credential";
1787
1787
  created_at: string;
1788
1788
  }, {
1789
1789
  message: string;
1790
- warning_code: "unknown_issue_with_credential";
1790
+ warning_code: "unknown_issue_with_acs_credential";
1791
1791
  created_at: string;
1792
1792
  }>]>, "many">;
1793
1793
  is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
@@ -1847,7 +1847,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
1847
1847
  created_at: string;
1848
1848
  } | {
1849
1849
  message: string;
1850
- warning_code: "unknown_issue_with_credential";
1850
+ warning_code: "unknown_issue_with_acs_credential";
1851
1851
  created_at: string;
1852
1852
  })[];
1853
1853
  display_name: string;
@@ -1905,7 +1905,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
1905
1905
  created_at: string;
1906
1906
  } | {
1907
1907
  message: string;
1908
- warning_code: "unknown_issue_with_credential";
1908
+ warning_code: "unknown_issue_with_acs_credential";
1909
1909
  created_at: string;
1910
1910
  })[];
1911
1911
  display_name: string;
@@ -1968,7 +1968,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
1968
1968
  created_at: string;
1969
1969
  } | {
1970
1970
  message: string;
1971
- warning_code: "unknown_issue_with_credential";
1971
+ warning_code: "unknown_issue_with_acs_credential";
1972
1972
  created_at: string;
1973
1973
  })[];
1974
1974
  display_name: string;
@@ -2026,7 +2026,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
2026
2026
  created_at: string;
2027
2027
  } | {
2028
2028
  message: string;
2029
- warning_code: "unknown_issue_with_credential";
2029
+ warning_code: "unknown_issue_with_acs_credential";
2030
2030
  created_at: string;
2031
2031
  })[];
2032
2032
  display_name: string;
@@ -2090,7 +2090,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
2090
2090
  created_at: string;
2091
2091
  } | {
2092
2092
  message: string;
2093
- warning_code: "unknown_issue_with_credential";
2093
+ warning_code: "unknown_issue_with_acs_credential";
2094
2094
  created_at: string;
2095
2095
  })[];
2096
2096
  display_name: string;
@@ -2148,7 +2148,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
2148
2148
  created_at: string;
2149
2149
  } | {
2150
2150
  message: string;
2151
- warning_code: "unknown_issue_with_credential";
2151
+ warning_code: "unknown_issue_with_acs_credential";
2152
2152
  created_at: string;
2153
2153
  })[];
2154
2154
  display_name: string;
@@ -113,14 +113,14 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
113
113
  created_at: z.ZodString;
114
114
  message: z.ZodString;
115
115
  }, {
116
- warning_code: z.ZodLiteral<"unknown_issue_with_credential">;
116
+ warning_code: z.ZodLiteral<"unknown_issue_with_acs_credential">;
117
117
  }>, "strip", z.ZodTypeAny, {
118
118
  message: string;
119
- warning_code: "unknown_issue_with_credential";
119
+ warning_code: "unknown_issue_with_acs_credential";
120
120
  created_at: string;
121
121
  }, {
122
122
  message: string;
123
- warning_code: "unknown_issue_with_credential";
123
+ warning_code: "unknown_issue_with_acs_credential";
124
124
  created_at: string;
125
125
  }>]>, "many">;
126
126
  is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
@@ -180,7 +180,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
180
180
  created_at: string;
181
181
  } | {
182
182
  message: string;
183
- warning_code: "unknown_issue_with_credential";
183
+ warning_code: "unknown_issue_with_acs_credential";
184
184
  created_at: string;
185
185
  })[];
186
186
  display_name: string;
@@ -238,7 +238,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
238
238
  created_at: string;
239
239
  } | {
240
240
  message: string;
241
- warning_code: "unknown_issue_with_credential";
241
+ warning_code: "unknown_issue_with_acs_credential";
242
242
  created_at: string;
243
243
  })[];
244
244
  display_name: string;
@@ -357,14 +357,14 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
357
357
  created_at: z.ZodString;
358
358
  message: z.ZodString;
359
359
  }, {
360
- warning_code: z.ZodLiteral<"unknown_issue_with_credential">;
360
+ warning_code: z.ZodLiteral<"unknown_issue_with_acs_credential">;
361
361
  }>, "strip", z.ZodTypeAny, {
362
362
  message: string;
363
- warning_code: "unknown_issue_with_credential";
363
+ warning_code: "unknown_issue_with_acs_credential";
364
364
  created_at: string;
365
365
  }, {
366
366
  message: string;
367
- warning_code: "unknown_issue_with_credential";
367
+ warning_code: "unknown_issue_with_acs_credential";
368
368
  created_at: string;
369
369
  }>]>, "many">;
370
370
  is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
@@ -424,7 +424,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
424
424
  created_at: string;
425
425
  } | {
426
426
  message: string;
427
- warning_code: "unknown_issue_with_credential";
427
+ warning_code: "unknown_issue_with_acs_credential";
428
428
  created_at: string;
429
429
  })[];
430
430
  display_name: string;
@@ -482,7 +482,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
482
482
  created_at: string;
483
483
  } | {
484
484
  message: string;
485
- warning_code: "unknown_issue_with_credential";
485
+ warning_code: "unknown_issue_with_acs_credential";
486
486
  created_at: string;
487
487
  })[];
488
488
  display_name: string;
@@ -545,7 +545,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
545
545
  created_at: string;
546
546
  } | {
547
547
  message: string;
548
- warning_code: "unknown_issue_with_credential";
548
+ warning_code: "unknown_issue_with_acs_credential";
549
549
  created_at: string;
550
550
  })[];
551
551
  display_name: string;
@@ -603,7 +603,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
603
603
  created_at: string;
604
604
  } | {
605
605
  message: string;
606
- warning_code: "unknown_issue_with_credential";
606
+ warning_code: "unknown_issue_with_acs_credential";
607
607
  created_at: string;
608
608
  })[];
609
609
  display_name: string;
@@ -667,7 +667,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
667
667
  created_at: string;
668
668
  } | {
669
669
  message: string;
670
- warning_code: "unknown_issue_with_credential";
670
+ warning_code: "unknown_issue_with_acs_credential";
671
671
  created_at: string;
672
672
  })[];
673
673
  display_name: string;
@@ -725,7 +725,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
725
725
  created_at: string;
726
726
  } | {
727
727
  message: string;
728
- warning_code: "unknown_issue_with_credential";
728
+ warning_code: "unknown_issue_with_acs_credential";
729
729
  created_at: string;
730
730
  })[];
731
731
  display_name: string;
@@ -201,14 +201,14 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
201
201
  created_at: z.ZodString;
202
202
  message: z.ZodString;
203
203
  }, {
204
- warning_code: z.ZodLiteral<"unknown_issue_with_credential">;
204
+ warning_code: z.ZodLiteral<"unknown_issue_with_acs_credential">;
205
205
  }>, "strip", z.ZodTypeAny, {
206
206
  message: string;
207
- warning_code: "unknown_issue_with_credential";
207
+ warning_code: "unknown_issue_with_acs_credential";
208
208
  created_at: string;
209
209
  }, {
210
210
  message: string;
211
- warning_code: "unknown_issue_with_credential";
211
+ warning_code: "unknown_issue_with_acs_credential";
212
212
  created_at: string;
213
213
  }>]>, "many">;
214
214
  is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
@@ -268,7 +268,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
268
268
  created_at: string;
269
269
  } | {
270
270
  message: string;
271
- warning_code: "unknown_issue_with_credential";
271
+ warning_code: "unknown_issue_with_acs_credential";
272
272
  created_at: string;
273
273
  })[];
274
274
  display_name: string;
@@ -326,7 +326,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
326
326
  created_at: string;
327
327
  } | {
328
328
  message: string;
329
- warning_code: "unknown_issue_with_credential";
329
+ warning_code: "unknown_issue_with_acs_credential";
330
330
  created_at: string;
331
331
  })[];
332
332
  display_name: string;
@@ -445,14 +445,14 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
445
445
  created_at: z.ZodString;
446
446
  message: z.ZodString;
447
447
  }, {
448
- warning_code: z.ZodLiteral<"unknown_issue_with_credential">;
448
+ warning_code: z.ZodLiteral<"unknown_issue_with_acs_credential">;
449
449
  }>, "strip", z.ZodTypeAny, {
450
450
  message: string;
451
- warning_code: "unknown_issue_with_credential";
451
+ warning_code: "unknown_issue_with_acs_credential";
452
452
  created_at: string;
453
453
  }, {
454
454
  message: string;
455
- warning_code: "unknown_issue_with_credential";
455
+ warning_code: "unknown_issue_with_acs_credential";
456
456
  created_at: string;
457
457
  }>]>, "many">;
458
458
  is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
@@ -512,7 +512,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
512
512
  created_at: string;
513
513
  } | {
514
514
  message: string;
515
- warning_code: "unknown_issue_with_credential";
515
+ warning_code: "unknown_issue_with_acs_credential";
516
516
  created_at: string;
517
517
  })[];
518
518
  display_name: string;
@@ -570,7 +570,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
570
570
  created_at: string;
571
571
  } | {
572
572
  message: string;
573
- warning_code: "unknown_issue_with_credential";
573
+ warning_code: "unknown_issue_with_acs_credential";
574
574
  created_at: string;
575
575
  })[];
576
576
  display_name: string;
@@ -665,7 +665,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
665
665
  created_at: string;
666
666
  } | {
667
667
  message: string;
668
- warning_code: "unknown_issue_with_credential";
668
+ warning_code: "unknown_issue_with_acs_credential";
669
669
  created_at: string;
670
670
  })[];
671
671
  display_name: string;
@@ -723,7 +723,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
723
723
  created_at: string;
724
724
  } | {
725
725
  message: string;
726
- warning_code: "unknown_issue_with_credential";
726
+ warning_code: "unknown_issue_with_acs_credential";
727
727
  created_at: string;
728
728
  })[];
729
729
  display_name: string;
@@ -808,7 +808,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
808
808
  created_at: string;
809
809
  } | {
810
810
  message: string;
811
- warning_code: "unknown_issue_with_credential";
811
+ warning_code: "unknown_issue_with_acs_credential";
812
812
  created_at: string;
813
813
  })[];
814
814
  display_name: string;
@@ -866,7 +866,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
866
866
  created_at: string;
867
867
  } | {
868
868
  message: string;
869
- warning_code: "unknown_issue_with_credential";
869
+ warning_code: "unknown_issue_with_acs_credential";
870
870
  created_at: string;
871
871
  })[];
872
872
  display_name: string;
@@ -956,7 +956,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
956
956
  created_at: string;
957
957
  } | {
958
958
  message: string;
959
- warning_code: "unknown_issue_with_credential";
959
+ warning_code: "unknown_issue_with_acs_credential";
960
960
  created_at: string;
961
961
  })[];
962
962
  display_name: string;
@@ -1014,7 +1014,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
1014
1014
  created_at: string;
1015
1015
  } | {
1016
1016
  message: string;
1017
- warning_code: "unknown_issue_with_credential";
1017
+ warning_code: "unknown_issue_with_acs_credential";
1018
1018
  created_at: string;
1019
1019
  })[];
1020
1020
  display_name: string;
@@ -1105,7 +1105,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
1105
1105
  created_at: string;
1106
1106
  } | {
1107
1107
  message: string;
1108
- warning_code: "unknown_issue_with_credential";
1108
+ warning_code: "unknown_issue_with_acs_credential";
1109
1109
  created_at: string;
1110
1110
  })[];
1111
1111
  display_name: string;
@@ -1163,7 +1163,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
1163
1163
  created_at: string;
1164
1164
  } | {
1165
1165
  message: string;
1166
- warning_code: "unknown_issue_with_credential";
1166
+ warning_code: "unknown_issue_with_acs_credential";
1167
1167
  created_at: string;
1168
1168
  })[];
1169
1169
  display_name: string;
@@ -221,6 +221,31 @@ declare const _default: {
221
221
  description: string;
222
222
  type: string;
223
223
  };
224
+ warnings: {
225
+ description: string;
226
+ items: {
227
+ description: string;
228
+ properties: {
229
+ created_at: {
230
+ description: string;
231
+ format: string;
232
+ type: string;
233
+ };
234
+ message: {
235
+ description: string;
236
+ type: string;
237
+ };
238
+ warning_code: {
239
+ description: string;
240
+ enum: string[];
241
+ type: string;
242
+ };
243
+ };
244
+ required: string[];
245
+ type: string;
246
+ };
247
+ type: string;
248
+ };
224
249
  workspace_id: {
225
250
  description: string;
226
251
  format: string;
@@ -537,18 +562,6 @@ declare const _default: {
537
562
  format: string;
538
563
  type: string;
539
564
  };
540
- inner_access_points_names: {
541
- items: {
542
- type: string;
543
- };
544
- type: string;
545
- };
546
- lease_ids: {
547
- items: {
548
- type: string;
549
- };
550
- type: string;
551
- };
552
565
  };
553
566
  required: string[];
554
567
  type: string;
@@ -9725,6 +9738,31 @@ declare const _default: {
9725
9738
  description: string;
9726
9739
  type: string;
9727
9740
  };
9741
+ warnings: {
9742
+ description: string;
9743
+ items: {
9744
+ description: string;
9745
+ properties: {
9746
+ created_at: {
9747
+ description: string;
9748
+ format: string;
9749
+ type: string;
9750
+ };
9751
+ message: {
9752
+ description: string;
9753
+ type: string;
9754
+ };
9755
+ warning_code: {
9756
+ description: string;
9757
+ enum: string[];
9758
+ type: string;
9759
+ };
9760
+ };
9761
+ required: string[];
9762
+ type: string;
9763
+ };
9764
+ type: string;
9765
+ };
9728
9766
  workspace_id: {
9729
9767
  description: string;
9730
9768
  format: string;
@@ -9854,6 +9892,31 @@ declare const _default: {
9854
9892
  description: string;
9855
9893
  type: string;
9856
9894
  };
9895
+ warnings: {
9896
+ description: string;
9897
+ items: {
9898
+ description: string;
9899
+ properties: {
9900
+ created_at: {
9901
+ description: string;
9902
+ format: string;
9903
+ type: string;
9904
+ };
9905
+ message: {
9906
+ description: string;
9907
+ type: string;
9908
+ };
9909
+ warning_code: {
9910
+ description: string;
9911
+ enum: string[];
9912
+ type: string;
9913
+ };
9914
+ };
9915
+ required: string[];
9916
+ type: string;
9917
+ };
9918
+ type: string;
9919
+ };
9857
9920
  workspace_id: {
9858
9921
  description: string;
9859
9922
  format: string;