@seamapi/types 1.14.0 → 1.15.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 +27 -43
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +47 -54
- package/lib/seam/connect/openapi.d.ts +35 -49
- package/lib/seam/connect/openapi.js +19 -35
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +12 -5
- package/lib/seam/connect/unstable/models/acs/credential.d.ts +3 -3
- package/lib/seam/connect/unstable/models/acs/credential.js +1 -1
- package/lib/seam/connect/unstable/models/acs/credential.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +19 -35
- package/src/lib/seam/connect/route-types.ts +12 -5
- package/src/lib/seam/connect/unstable/models/acs/credential.ts +1 -1
package/dist/connect.cjs
CHANGED
|
@@ -1853,7 +1853,8 @@ var openapi_default = {
|
|
|
1853
1853
|
items: { format: "uuid", type: "string" },
|
|
1854
1854
|
type: "array"
|
|
1855
1855
|
},
|
|
1856
|
-
device_id: { format: "uuid", type: "string" }
|
|
1856
|
+
device_id: { format: "uuid", type: "string" },
|
|
1857
|
+
user_identifier_key: { type: "string" }
|
|
1857
1858
|
},
|
|
1858
1859
|
type: "object"
|
|
1859
1860
|
}
|
|
@@ -3061,9 +3062,9 @@ var openapi_default = {
|
|
|
3061
3062
|
schema: {
|
|
3062
3063
|
properties: {
|
|
3063
3064
|
acs_user_id: { format: "uuid", type: "string" },
|
|
3064
|
-
code: { pattern: "^\\d+$", type: "string" }
|
|
3065
|
+
code: { oneOf: [{ pattern: "^\\d+$", type: "string" }, {}] }
|
|
3065
3066
|
},
|
|
3066
|
-
required: ["acs_user_id"
|
|
3067
|
+
required: ["acs_user_id"],
|
|
3067
3068
|
type: "object"
|
|
3068
3069
|
}
|
|
3069
3070
|
}
|
|
@@ -3080,7 +3081,7 @@ var openapi_default = {
|
|
|
3080
3081
|
acs_credential_id: { format: "uuid", type: "string" },
|
|
3081
3082
|
acs_system_id: { format: "uuid", type: "string" },
|
|
3082
3083
|
acs_user_id: { format: "uuid", type: "string" },
|
|
3083
|
-
code: { type: "string" },
|
|
3084
|
+
code: { nullable: true, type: "string" },
|
|
3084
3085
|
created_at: { format: "date-time", type: "string" },
|
|
3085
3086
|
workspace_id: { format: "uuid", type: "string" }
|
|
3086
3087
|
},
|
|
@@ -3187,7 +3188,7 @@ var openapi_default = {
|
|
|
3187
3188
|
acs_credential_id: { format: "uuid", type: "string" },
|
|
3188
3189
|
acs_system_id: { format: "uuid", type: "string" },
|
|
3189
3190
|
acs_user_id: { format: "uuid", type: "string" },
|
|
3190
|
-
code: { type: "string" },
|
|
3191
|
+
code: { nullable: true, type: "string" },
|
|
3191
3192
|
created_at: { format: "date-time", type: "string" },
|
|
3192
3193
|
workspace_id: { format: "uuid", type: "string" }
|
|
3193
3194
|
},
|
|
@@ -3250,7 +3251,7 @@ var openapi_default = {
|
|
|
3250
3251
|
acs_credential_id: { format: "uuid", type: "string" },
|
|
3251
3252
|
acs_system_id: { format: "uuid", type: "string" },
|
|
3252
3253
|
acs_user_id: { format: "uuid", type: "string" },
|
|
3253
|
-
code: { type: "string" },
|
|
3254
|
+
code: { nullable: true, type: "string" },
|
|
3254
3255
|
created_at: { format: "date-time", type: "string" },
|
|
3255
3256
|
workspace_id: { format: "uuid", type: "string" }
|
|
3256
3257
|
},
|
|
@@ -3336,41 +3337,20 @@ var openapi_default = {
|
|
|
3336
3337
|
}
|
|
3337
3338
|
},
|
|
3338
3339
|
"/acs/systems/list": {
|
|
3339
|
-
get: {
|
|
3340
|
-
operationId: "acsSystemsListGet",
|
|
3341
|
-
responses: {
|
|
3342
|
-
200: {
|
|
3343
|
-
content: {
|
|
3344
|
-
"application/json": {
|
|
3345
|
-
schema: {
|
|
3346
|
-
properties: {
|
|
3347
|
-
acs_systems: {
|
|
3348
|
-
items: { $ref: "#/components/schemas/acs_system" },
|
|
3349
|
-
type: "array"
|
|
3350
|
-
},
|
|
3351
|
-
ok: { type: "boolean" }
|
|
3352
|
-
},
|
|
3353
|
-
required: ["acs_systems", "ok"],
|
|
3354
|
-
type: "object"
|
|
3355
|
-
}
|
|
3356
|
-
}
|
|
3357
|
-
},
|
|
3358
|
-
description: "OK"
|
|
3359
|
-
},
|
|
3360
|
-
400: { description: "Bad Request" },
|
|
3361
|
-
401: { description: "Unauthorized" }
|
|
3362
|
-
},
|
|
3363
|
-
security: [
|
|
3364
|
-
{ access_token: [], seam_workspace: [] },
|
|
3365
|
-
{ seam_client_session_token: [] },
|
|
3366
|
-
{ client_session_token: [] }
|
|
3367
|
-
],
|
|
3368
|
-
summary: "/acs/systems/list",
|
|
3369
|
-
tags: [],
|
|
3370
|
-
"x-fern-ignore": true
|
|
3371
|
-
},
|
|
3372
3340
|
post: {
|
|
3373
3341
|
operationId: "acsSystemsListPost",
|
|
3342
|
+
requestBody: {
|
|
3343
|
+
content: {
|
|
3344
|
+
"application/json": {
|
|
3345
|
+
schema: {
|
|
3346
|
+
properties: {
|
|
3347
|
+
connected_account_id: { format: "uuid", type: "string" }
|
|
3348
|
+
},
|
|
3349
|
+
type: "object"
|
|
3350
|
+
}
|
|
3351
|
+
}
|
|
3352
|
+
}
|
|
3353
|
+
},
|
|
3374
3354
|
responses: {
|
|
3375
3355
|
200: {
|
|
3376
3356
|
content: {
|
|
@@ -4934,7 +4914,8 @@ var openapi_default = {
|
|
|
4934
4914
|
"dormakaba_oracode"
|
|
4935
4915
|
],
|
|
4936
4916
|
type: "string"
|
|
4937
|
-
}
|
|
4917
|
+
},
|
|
4918
|
+
user_identifier_key: { type: "string" }
|
|
4938
4919
|
},
|
|
4939
4920
|
type: "object"
|
|
4940
4921
|
}
|
|
@@ -5238,7 +5219,8 @@ var openapi_default = {
|
|
|
5238
5219
|
"dormakaba_oracode"
|
|
5239
5220
|
],
|
|
5240
5221
|
type: "string"
|
|
5241
|
-
}
|
|
5222
|
+
},
|
|
5223
|
+
user_identifier_key: { type: "string" }
|
|
5242
5224
|
},
|
|
5243
5225
|
type: "object"
|
|
5244
5226
|
}
|
|
@@ -6020,7 +6002,8 @@ var openapi_default = {
|
|
|
6020
6002
|
"dormakaba_oracode"
|
|
6021
6003
|
],
|
|
6022
6004
|
type: "string"
|
|
6023
|
-
}
|
|
6005
|
+
},
|
|
6006
|
+
user_identifier_key: { type: "string" }
|
|
6024
6007
|
},
|
|
6025
6008
|
type: "object"
|
|
6026
6009
|
}
|
|
@@ -7243,7 +7226,8 @@ var openapi_default = {
|
|
|
7243
7226
|
"dormakaba_oracode"
|
|
7244
7227
|
],
|
|
7245
7228
|
type: "string"
|
|
7246
|
-
}
|
|
7229
|
+
},
|
|
7230
|
+
user_identifier_key: { type: "string" }
|
|
7247
7231
|
},
|
|
7248
7232
|
type: "object"
|
|
7249
7233
|
}
|