@seamapi/types 1.184.0 → 1.186.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.
package/dist/connect.cjs CHANGED
@@ -1086,7 +1086,12 @@ var openapi_default = {
1086
1086
  type: "string"
1087
1087
  },
1088
1088
  external_type_display_name: { type: "string" },
1089
+ is_latest_desired_state_synced_with_provider: { type: "boolean" },
1089
1090
  is_multi_phone_sync_credential: { type: "boolean" },
1091
+ latest_desired_state_synced_with_provider_at: {
1092
+ format: "date-time",
1093
+ type: "string"
1094
+ },
1090
1095
  parent_acs_credential_id: { format: "uuid", type: "string" },
1091
1096
  starts_at: { type: "string" },
1092
1097
  visionline_metadata: {
@@ -1265,12 +1270,32 @@ var openapi_default = {
1265
1270
  created_at: { format: "date-time", type: "string" },
1266
1271
  errors: {
1267
1272
  items: {
1268
- properties: {
1269
- error_code: { type: "string" },
1270
- message: { type: "string" }
1271
- },
1272
- required: ["error_code", "message"],
1273
- type: "object"
1273
+ oneOf: [
1274
+ {
1275
+ properties: {
1276
+ created_at: { format: "date-time", type: "string" },
1277
+ error_code: {
1278
+ enum: ["seam_bridge_disconnected"],
1279
+ type: "string"
1280
+ },
1281
+ message: { type: "string" }
1282
+ },
1283
+ required: ["created_at", "message", "error_code"],
1284
+ type: "object"
1285
+ },
1286
+ {
1287
+ properties: {
1288
+ created_at: { format: "date-time", type: "string" },
1289
+ error_code: {
1290
+ enum: ["visionline_instance_unreachable"],
1291
+ type: "string"
1292
+ },
1293
+ message: { type: "string" }
1294
+ },
1295
+ required: ["created_at", "message", "error_code"],
1296
+ type: "object"
1297
+ }
1298
+ ]
1274
1299
  },
1275
1300
  type: "array"
1276
1301
  },
@@ -1310,14 +1335,7 @@ var openapi_default = {
1310
1335
  type: "string"
1311
1336
  },
1312
1337
  warnings: {
1313
- items: {
1314
- properties: {
1315
- message: { type: "string" },
1316
- warning_code: { type: "string" }
1317
- },
1318
- required: ["warning_code", "message"],
1319
- type: "object"
1320
- },
1338
+ items: { properties: {}, type: "object" },
1321
1339
  type: "array"
1322
1340
  },
1323
1341
  workspace_id: { format: "uuid", type: "string" }