@seamapi/types 1.360.0 → 1.361.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 (61) hide show
  1. package/dist/connect.cjs +1645 -1159
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +5946 -4573
  4. package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +192 -126
  5. package/lib/seam/connect/models/access-codes/managed-access-code.js +2 -4
  6. package/lib/seam/connect/models/access-codes/managed-access-code.js.map +1 -1
  7. package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +193 -127
  8. package/lib/seam/connect/models/acs/acs-access-group.d.ts +4 -4
  9. package/lib/seam/connect/models/acs/acs-credential-pool.d.ts +2 -2
  10. package/lib/seam/connect/models/acs/acs-credential.d.ts +6 -6
  11. package/lib/seam/connect/models/acs/acs-credential.js +94 -51
  12. package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
  13. package/lib/seam/connect/models/acs/acs-encoder.d.ts +2 -2
  14. package/lib/seam/connect/models/acs/acs-encoder.js +12 -7
  15. package/lib/seam/connect/models/acs/acs-encoder.js.map +1 -1
  16. package/lib/seam/connect/models/acs/acs-entrance.d.ts +2 -2
  17. package/lib/seam/connect/models/acs/acs-entrance.js +37 -14
  18. package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
  19. package/lib/seam/connect/models/acs/acs-system.d.ts +2 -2
  20. package/lib/seam/connect/models/acs/acs-system.js +48 -41
  21. package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
  22. package/lib/seam/connect/models/acs/acs-user.d.ts +4 -4
  23. package/lib/seam/connect/models/acs/acs-user.js +45 -32
  24. package/lib/seam/connect/models/acs/acs-user.js.map +1 -1
  25. package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +26 -26
  26. package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +8 -8
  27. package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +18 -18
  28. package/lib/seam/connect/models/connected-accounts/connected-account.d.ts +42 -42
  29. package/lib/seam/connect/models/devices/capability-properties/index.d.ts +18 -18
  30. package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +18 -18
  31. package/lib/seam/connect/models/devices/device.d.ts +1760 -389
  32. package/lib/seam/connect/models/devices/device.js +82 -4
  33. package/lib/seam/connect/models/devices/device.js.map +1 -1
  34. package/lib/seam/connect/models/devices/phone.d.ts +4 -4
  35. package/lib/seam/connect/models/devices/unmanaged-device.d.ts +236 -58
  36. package/lib/seam/connect/models/events/access-codes.d.ts +68 -68
  37. package/lib/seam/connect/models/events/devices.d.ts +152 -152
  38. package/lib/seam/connect/models/events/phones.d.ts +4 -4
  39. package/lib/seam/connect/models/events/seam-event.d.ts +112 -112
  40. package/lib/seam/connect/models/thermostats/climate-preset.js +12 -10
  41. package/lib/seam/connect/models/thermostats/climate-preset.js.map +1 -1
  42. package/lib/seam/connect/models/thermostats/thermostat-schedule.d.ts +8 -8
  43. package/lib/seam/connect/models/thermostats/thermostat-schedule.js +19 -12
  44. package/lib/seam/connect/models/thermostats/thermostat-schedule.js.map +1 -1
  45. package/lib/seam/connect/models/user-identities/user-identity.d.ts +2 -2
  46. package/lib/seam/connect/openapi.d.ts +103 -171
  47. package/lib/seam/connect/openapi.js +1120 -864
  48. package/lib/seam/connect/openapi.js.map +1 -1
  49. package/lib/seam/connect/route-types.d.ts +4421 -3576
  50. package/package.json +1 -1
  51. package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +2 -4
  52. package/src/lib/seam/connect/models/acs/acs-credential.ts +162 -51
  53. package/src/lib/seam/connect/models/acs/acs-encoder.ts +22 -7
  54. package/src/lib/seam/connect/models/acs/acs-entrance.ts +65 -18
  55. package/src/lib/seam/connect/models/acs/acs-system.ts +81 -52
  56. package/src/lib/seam/connect/models/acs/acs-user.ts +69 -32
  57. package/src/lib/seam/connect/models/devices/device.ts +103 -4
  58. package/src/lib/seam/connect/models/thermostats/climate-preset.ts +28 -10
  59. package/src/lib/seam/connect/models/thermostats/thermostat-schedule.ts +31 -12
  60. package/src/lib/seam/connect/openapi.ts +1259 -878
  61. package/src/lib/seam/connect/route-types.ts +4469 -3648
@@ -232,9 +232,9 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
232
232
  card_holder?: string | undefined;
233
233
  }>>;
234
234
  }, "strip", z.ZodTypeAny, {
235
- created_at: string | null;
236
235
  starts_at: string | null;
237
236
  ends_at: string | null;
237
+ created_at: string | null;
238
238
  card_number: string | null;
239
239
  is_issued: boolean | null;
240
240
  visionline_metadata?: {
@@ -252,9 +252,9 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
252
252
  card_holder?: string | undefined;
253
253
  } | undefined;
254
254
  }, {
255
- created_at: string | null;
256
255
  starts_at: string | null;
257
256
  ends_at: string | null;
257
+ created_at: string | null;
258
258
  card_number: string | null;
259
259
  is_issued: boolean | null;
260
260
  visionline_metadata?: {
@@ -433,6 +433,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
433
433
  }, {
434
434
  is_managed: z.ZodLiteral<true>;
435
435
  }>, "strip", z.ZodTypeAny, {
436
+ display_name: string;
436
437
  created_at: string;
437
438
  errors: {
438
439
  message: string;
@@ -463,7 +464,6 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
463
464
  created_at: string;
464
465
  warning_code: "needs_to_be_reissued";
465
466
  })[];
466
- display_name: string;
467
467
  workspace_id: string;
468
468
  is_managed: true;
469
469
  acs_system_id: string;
@@ -502,6 +502,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
502
502
  is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
503
503
  latest_desired_state_synced_with_provider_at?: string | null | undefined;
504
504
  }, {
505
+ display_name: string;
505
506
  created_at: string;
506
507
  errors: {
507
508
  message: string;
@@ -532,7 +533,6 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
532
533
  created_at: string;
533
534
  warning_code: "needs_to_be_reissued";
534
535
  })[];
535
- display_name: string;
536
536
  workspace_id: string;
537
537
  is_managed: true;
538
538
  acs_system_id: string;
@@ -731,6 +731,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
731
731
  }, {
732
732
  is_managed: z.ZodLiteral<false>;
733
733
  }>, "strip", z.ZodTypeAny, {
734
+ display_name: string;
734
735
  created_at: string;
735
736
  errors: {
736
737
  message: string;
@@ -761,7 +762,6 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
761
762
  created_at: string;
762
763
  warning_code: "needs_to_be_reissued";
763
764
  })[];
764
- display_name: string;
765
765
  workspace_id: string;
766
766
  is_managed: false;
767
767
  acs_system_id: string;
@@ -800,6 +800,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
800
800
  is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
801
801
  latest_desired_state_synced_with_provider_at?: string | null | undefined;
802
802
  }, {
803
+ display_name: string;
803
804
  created_at: string;
804
805
  errors: {
805
806
  message: string;
@@ -830,7 +831,6 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
830
831
  created_at: string;
831
832
  warning_code: "needs_to_be_reissued";
832
833
  })[];
833
- display_name: string;
834
834
  workspace_id: string;
835
835
  is_managed: false;
836
836
  acs_system_id: string;
@@ -885,9 +885,9 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
885
885
  warning_message: string;
886
886
  }[];
887
887
  acs_credential_on_encoder: {
888
- created_at: string | null;
889
888
  starts_at: string | null;
890
889
  ends_at: string | null;
890
+ created_at: string | null;
891
891
  card_number: string | null;
892
892
  is_issued: boolean | null;
893
893
  visionline_metadata?: {
@@ -906,6 +906,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
906
906
  } | undefined;
907
907
  } | null;
908
908
  acs_credential_on_seam: {
909
+ display_name: string;
909
910
  created_at: string;
910
911
  errors: {
911
912
  message: string;
@@ -936,7 +937,6 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
936
937
  created_at: string;
937
938
  warning_code: "needs_to_be_reissued";
938
939
  })[];
939
- display_name: string;
940
940
  workspace_id: string;
941
941
  is_managed: true;
942
942
  acs_system_id: string;
@@ -975,6 +975,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
975
975
  is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
976
976
  latest_desired_state_synced_with_provider_at?: string | null | undefined;
977
977
  } | {
978
+ display_name: string;
978
979
  created_at: string;
979
980
  errors: {
980
981
  message: string;
@@ -1005,7 +1006,6 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
1005
1006
  created_at: string;
1006
1007
  warning_code: "needs_to_be_reissued";
1007
1008
  })[];
1008
- display_name: string;
1009
1009
  workspace_id: string;
1010
1010
  is_managed: false;
1011
1011
  acs_system_id: string;
@@ -1050,9 +1050,9 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
1050
1050
  warning_message: string;
1051
1051
  }[];
1052
1052
  acs_credential_on_encoder: {
1053
- created_at: string | null;
1054
1053
  starts_at: string | null;
1055
1054
  ends_at: string | null;
1055
+ created_at: string | null;
1056
1056
  card_number: string | null;
1057
1057
  is_issued: boolean | null;
1058
1058
  visionline_metadata?: {
@@ -1071,6 +1071,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
1071
1071
  } | undefined;
1072
1072
  } | null;
1073
1073
  acs_credential_on_seam: {
1074
+ display_name: string;
1074
1075
  created_at: string;
1075
1076
  errors: {
1076
1077
  message: string;
@@ -1101,7 +1102,6 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
1101
1102
  created_at: string;
1102
1103
  warning_code: "needs_to_be_reissued";
1103
1104
  })[];
1104
- display_name: string;
1105
1105
  workspace_id: string;
1106
1106
  is_managed: true;
1107
1107
  acs_system_id: string;
@@ -1140,6 +1140,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
1140
1140
  is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
1141
1141
  latest_desired_state_synced_with_provider_at?: string | null | undefined;
1142
1142
  } | {
1143
+ display_name: string;
1143
1144
  created_at: string;
1144
1145
  errors: {
1145
1146
  message: string;
@@ -1170,7 +1171,6 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
1170
1171
  created_at: string;
1171
1172
  warning_code: "needs_to_be_reissued";
1172
1173
  })[];
1173
- display_name: string;
1174
1174
  workspace_id: string;
1175
1175
  is_managed: false;
1176
1176
  acs_system_id: string;
@@ -1220,9 +1220,9 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
1220
1220
  warning_message: string;
1221
1221
  }[];
1222
1222
  acs_credential_on_encoder: {
1223
- created_at: string | null;
1224
1223
  starts_at: string | null;
1225
1224
  ends_at: string | null;
1225
+ created_at: string | null;
1226
1226
  card_number: string | null;
1227
1227
  is_issued: boolean | null;
1228
1228
  visionline_metadata?: {
@@ -1241,6 +1241,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
1241
1241
  } | undefined;
1242
1242
  } | null;
1243
1243
  acs_credential_on_seam: {
1244
+ display_name: string;
1244
1245
  created_at: string;
1245
1246
  errors: {
1246
1247
  message: string;
@@ -1271,7 +1272,6 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
1271
1272
  created_at: string;
1272
1273
  warning_code: "needs_to_be_reissued";
1273
1274
  })[];
1274
- display_name: string;
1275
1275
  workspace_id: string;
1276
1276
  is_managed: true;
1277
1277
  acs_system_id: string;
@@ -1310,6 +1310,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
1310
1310
  is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
1311
1311
  latest_desired_state_synced_with_provider_at?: string | null | undefined;
1312
1312
  } | {
1313
+ display_name: string;
1313
1314
  created_at: string;
1314
1315
  errors: {
1315
1316
  message: string;
@@ -1340,7 +1341,6 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
1340
1341
  created_at: string;
1341
1342
  warning_code: "needs_to_be_reissued";
1342
1343
  })[];
1343
- display_name: string;
1344
1344
  workspace_id: string;
1345
1345
  is_managed: false;
1346
1346
  acs_system_id: string;
@@ -1391,9 +1391,9 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
1391
1391
  warning_message: string;
1392
1392
  }[];
1393
1393
  acs_credential_on_encoder: {
1394
- created_at: string | null;
1395
1394
  starts_at: string | null;
1396
1395
  ends_at: string | null;
1396
+ created_at: string | null;
1397
1397
  card_number: string | null;
1398
1398
  is_issued: boolean | null;
1399
1399
  visionline_metadata?: {
@@ -1412,6 +1412,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
1412
1412
  } | undefined;
1413
1413
  } | null;
1414
1414
  acs_credential_on_seam: {
1415
+ display_name: string;
1415
1416
  created_at: string;
1416
1417
  errors: {
1417
1418
  message: string;
@@ -1442,7 +1443,6 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
1442
1443
  created_at: string;
1443
1444
  warning_code: "needs_to_be_reissued";
1444
1445
  })[];
1445
- display_name: string;
1446
1446
  workspace_id: string;
1447
1447
  is_managed: true;
1448
1448
  acs_system_id: string;
@@ -1481,6 +1481,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
1481
1481
  is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
1482
1482
  latest_desired_state_synced_with_provider_at?: string | null | undefined;
1483
1483
  } | {
1484
+ display_name: string;
1484
1485
  created_at: string;
1485
1486
  errors: {
1486
1487
  message: string;
@@ -1511,7 +1512,6 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
1511
1512
  created_at: string;
1512
1513
  warning_code: "needs_to_be_reissued";
1513
1514
  })[];
1514
- display_name: string;
1515
1515
  workspace_id: string;
1516
1516
  is_managed: false;
1517
1517
  acs_system_id: string;
@@ -1808,6 +1808,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
1808
1808
  }, {
1809
1809
  is_managed: z.ZodLiteral<true>;
1810
1810
  }>, "strip", z.ZodTypeAny, {
1811
+ display_name: string;
1811
1812
  created_at: string;
1812
1813
  errors: {
1813
1814
  message: string;
@@ -1838,7 +1839,6 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
1838
1839
  created_at: string;
1839
1840
  warning_code: "needs_to_be_reissued";
1840
1841
  })[];
1841
- display_name: string;
1842
1842
  workspace_id: string;
1843
1843
  is_managed: true;
1844
1844
  acs_system_id: string;
@@ -1877,6 +1877,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
1877
1877
  is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
1878
1878
  latest_desired_state_synced_with_provider_at?: string | null | undefined;
1879
1879
  }, {
1880
+ display_name: string;
1880
1881
  created_at: string;
1881
1882
  errors: {
1882
1883
  message: string;
@@ -1907,7 +1908,6 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
1907
1908
  created_at: string;
1908
1909
  warning_code: "needs_to_be_reissued";
1909
1910
  })[];
1910
- display_name: string;
1911
1911
  workspace_id: string;
1912
1912
  is_managed: true;
1913
1913
  acs_system_id: string;
@@ -2106,6 +2106,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
2106
2106
  }, {
2107
2107
  is_managed: z.ZodLiteral<false>;
2108
2108
  }>, "strip", z.ZodTypeAny, {
2109
+ display_name: string;
2109
2110
  created_at: string;
2110
2111
  errors: {
2111
2112
  message: string;
@@ -2136,7 +2137,6 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
2136
2137
  created_at: string;
2137
2138
  warning_code: "needs_to_be_reissued";
2138
2139
  })[];
2139
- display_name: string;
2140
2140
  workspace_id: string;
2141
2141
  is_managed: false;
2142
2142
  acs_system_id: string;
@@ -2175,6 +2175,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
2175
2175
  is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
2176
2176
  latest_desired_state_synced_with_provider_at?: string | null | undefined;
2177
2177
  }, {
2178
+ display_name: string;
2178
2179
  created_at: string;
2179
2180
  errors: {
2180
2181
  message: string;
@@ -2205,7 +2206,6 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
2205
2206
  created_at: string;
2206
2207
  warning_code: "needs_to_be_reissued";
2207
2208
  })[];
2208
- display_name: string;
2209
2209
  workspace_id: string;
2210
2210
  is_managed: false;
2211
2211
  acs_system_id: string;
@@ -2249,6 +2249,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
2249
2249
  status: "success";
2250
2250
  action_attempt_id: string;
2251
2251
  result: {
2252
+ display_name: string;
2252
2253
  created_at: string;
2253
2254
  errors: {
2254
2255
  message: string;
@@ -2279,7 +2280,6 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
2279
2280
  created_at: string;
2280
2281
  warning_code: "needs_to_be_reissued";
2281
2282
  })[];
2282
- display_name: string;
2283
2283
  workspace_id: string;
2284
2284
  is_managed: true;
2285
2285
  acs_system_id: string;
@@ -2318,6 +2318,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
2318
2318
  is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
2319
2319
  latest_desired_state_synced_with_provider_at?: string | null | undefined;
2320
2320
  } | {
2321
+ display_name: string;
2321
2322
  created_at: string;
2322
2323
  errors: {
2323
2324
  message: string;
@@ -2348,7 +2349,6 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
2348
2349
  created_at: string;
2349
2350
  warning_code: "needs_to_be_reissued";
2350
2351
  })[];
2351
- display_name: string;
2352
2352
  workspace_id: string;
2353
2353
  is_managed: false;
2354
2354
  acs_system_id: string;
@@ -2393,6 +2393,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
2393
2393
  status: "success";
2394
2394
  action_attempt_id: string;
2395
2395
  result: {
2396
+ display_name: string;
2396
2397
  created_at: string;
2397
2398
  errors: {
2398
2399
  message: string;
@@ -2423,7 +2424,6 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
2423
2424
  created_at: string;
2424
2425
  warning_code: "needs_to_be_reissued";
2425
2426
  })[];
2426
- display_name: string;
2427
2427
  workspace_id: string;
2428
2428
  is_managed: true;
2429
2429
  acs_system_id: string;
@@ -2462,6 +2462,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
2462
2462
  is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
2463
2463
  latest_desired_state_synced_with_provider_at?: string | null | undefined;
2464
2464
  } | {
2465
+ display_name: string;
2465
2466
  created_at: string;
2466
2467
  errors: {
2467
2468
  message: string;
@@ -2492,7 +2493,6 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
2492
2493
  created_at: string;
2493
2494
  warning_code: "needs_to_be_reissued";
2494
2495
  })[];
2495
- display_name: string;
2496
2496
  workspace_id: string;
2497
2497
  is_managed: false;
2498
2498
  acs_system_id: string;
@@ -189,6 +189,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
189
189
  }, {
190
190
  is_managed: z.ZodLiteral<true>;
191
191
  }>, "strip", z.ZodTypeAny, {
192
+ display_name: string;
192
193
  created_at: string;
193
194
  errors: {
194
195
  message: string;
@@ -219,7 +220,6 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
219
220
  created_at: string;
220
221
  warning_code: "needs_to_be_reissued";
221
222
  })[];
222
- display_name: string;
223
223
  workspace_id: string;
224
224
  is_managed: true;
225
225
  acs_system_id: string;
@@ -258,6 +258,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
258
258
  is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
259
259
  latest_desired_state_synced_with_provider_at?: string | null | undefined;
260
260
  }, {
261
+ display_name: string;
261
262
  created_at: string;
262
263
  errors: {
263
264
  message: string;
@@ -288,7 +289,6 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
288
289
  created_at: string;
289
290
  warning_code: "needs_to_be_reissued";
290
291
  })[];
291
- display_name: string;
292
292
  workspace_id: string;
293
293
  is_managed: true;
294
294
  acs_system_id: string;
@@ -487,6 +487,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
487
487
  }, {
488
488
  is_managed: z.ZodLiteral<false>;
489
489
  }>, "strip", z.ZodTypeAny, {
490
+ display_name: string;
490
491
  created_at: string;
491
492
  errors: {
492
493
  message: string;
@@ -517,7 +518,6 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
517
518
  created_at: string;
518
519
  warning_code: "needs_to_be_reissued";
519
520
  })[];
520
- display_name: string;
521
521
  workspace_id: string;
522
522
  is_managed: false;
523
523
  acs_system_id: string;
@@ -556,6 +556,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
556
556
  is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
557
557
  latest_desired_state_synced_with_provider_at?: string | null | undefined;
558
558
  }, {
559
+ display_name: string;
559
560
  created_at: string;
560
561
  errors: {
561
562
  message: string;
@@ -586,7 +587,6 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
586
587
  created_at: string;
587
588
  warning_code: "needs_to_be_reissued";
588
589
  })[];
589
- display_name: string;
590
590
  workspace_id: string;
591
591
  is_managed: false;
592
592
  acs_system_id: string;
@@ -630,6 +630,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
630
630
  status: "success";
631
631
  action_attempt_id: string;
632
632
  result: {
633
+ display_name: string;
633
634
  created_at: string;
634
635
  errors: {
635
636
  message: string;
@@ -660,7 +661,6 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
660
661
  created_at: string;
661
662
  warning_code: "needs_to_be_reissued";
662
663
  })[];
663
- display_name: string;
664
664
  workspace_id: string;
665
665
  is_managed: true;
666
666
  acs_system_id: string;
@@ -699,6 +699,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
699
699
  is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
700
700
  latest_desired_state_synced_with_provider_at?: string | null | undefined;
701
701
  } | {
702
+ display_name: string;
702
703
  created_at: string;
703
704
  errors: {
704
705
  message: string;
@@ -729,7 +730,6 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
729
730
  created_at: string;
730
731
  warning_code: "needs_to_be_reissued";
731
732
  })[];
732
- display_name: string;
733
733
  workspace_id: string;
734
734
  is_managed: false;
735
735
  acs_system_id: string;
@@ -774,6 +774,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
774
774
  status: "success";
775
775
  action_attempt_id: string;
776
776
  result: {
777
+ display_name: string;
777
778
  created_at: string;
778
779
  errors: {
779
780
  message: string;
@@ -804,7 +805,6 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
804
805
  created_at: string;
805
806
  warning_code: "needs_to_be_reissued";
806
807
  })[];
807
- display_name: string;
808
808
  workspace_id: string;
809
809
  is_managed: true;
810
810
  acs_system_id: string;
@@ -843,6 +843,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
843
843
  is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
844
844
  latest_desired_state_synced_with_provider_at?: string | null | undefined;
845
845
  } | {
846
+ display_name: string;
846
847
  created_at: string;
847
848
  errors: {
848
849
  message: string;
@@ -873,7 +874,6 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
873
874
  created_at: string;
874
875
  warning_code: "needs_to_be_reissued";
875
876
  })[];
876
- display_name: string;
877
877
  workspace_id: string;
878
878
  is_managed: false;
879
879
  acs_system_id: string;