@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 +32 -14
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +62 -34
- package/lib/seam/connect/models/acs/acs-credential.d.ts +6 -0
- package/lib/seam/connect/models/acs/acs-credential.js +5 -0
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-system.d.ts +86 -22
- package/lib/seam/connect/models/acs/acs-system.js +24 -8
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +24 -18
- package/lib/seam/connect/openapi.js +32 -14
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +38 -16
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +5 -0
- package/src/lib/seam/connect/models/acs/acs-system.ts +34 -12
- package/src/lib/seam/connect/openapi.ts +32 -14
- package/src/lib/seam/connect/route-types.ts +66 -32
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
|
-
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
|
|
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" }
|