@seamapi/types 1.52.0 → 1.53.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 +119 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +224 -12
- package/lib/seam/connect/openapi.d.ts +203 -12
- package/lib/seam/connect/openapi.js +118 -3
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +21 -0
- package/lib/seam/connect/unstable/models/acs/system.d.ts +3 -0
- package/lib/seam/connect/unstable/models/acs/system.js +1 -0
- package/lib/seam/connect/unstable/models/acs/system.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +118 -3
- package/src/lib/seam/connect/route-types.ts +21 -0
- package/src/lib/seam/connect/unstable/models/acs/system.ts +1 -0
package/dist/connect.cjs
CHANGED
|
@@ -243,7 +243,8 @@ var openapi_default = {
|
|
|
243
243
|
system_type_display_name: {
|
|
244
244
|
description: "deprecated: use external_type_display_name",
|
|
245
245
|
type: "string"
|
|
246
|
-
}
|
|
246
|
+
},
|
|
247
|
+
workspace_id: { format: "uuid", type: "string" }
|
|
247
248
|
},
|
|
248
249
|
required: [
|
|
249
250
|
"acs_system_id",
|
|
@@ -253,6 +254,7 @@ var openapi_default = {
|
|
|
253
254
|
"system_type_display_name",
|
|
254
255
|
"name",
|
|
255
256
|
"created_at",
|
|
257
|
+
"workspace_id",
|
|
256
258
|
"connected_account_ids"
|
|
257
259
|
],
|
|
258
260
|
type: "object"
|
|
@@ -3888,9 +3890,10 @@ var openapi_default = {
|
|
|
3888
3890
|
401: { description: "Unauthorized" }
|
|
3889
3891
|
},
|
|
3890
3892
|
security: [
|
|
3891
|
-
{
|
|
3892
|
-
{
|
|
3893
|
-
{
|
|
3893
|
+
{ api_key: [] },
|
|
3894
|
+
{ client_session: [] },
|
|
3895
|
+
{ pat_with_workspace: [] },
|
|
3896
|
+
{ console_session: [] }
|
|
3894
3897
|
],
|
|
3895
3898
|
summary: "/acs/credentials/list",
|
|
3896
3899
|
tags: [],
|
|
@@ -9178,6 +9181,118 @@ var openapi_default = {
|
|
|
9178
9181
|
"x-fern-ignore": true
|
|
9179
9182
|
}
|
|
9180
9183
|
},
|
|
9184
|
+
"/user_identities/list": {
|
|
9185
|
+
get: {
|
|
9186
|
+
operationId: "userIdentitiesListGet",
|
|
9187
|
+
responses: {
|
|
9188
|
+
200: {
|
|
9189
|
+
content: {
|
|
9190
|
+
"application/json": {
|
|
9191
|
+
schema: {
|
|
9192
|
+
properties: {
|
|
9193
|
+
ok: { type: "boolean" },
|
|
9194
|
+
user_identities: {
|
|
9195
|
+
items: {
|
|
9196
|
+
properties: {
|
|
9197
|
+
created_at: { format: "date-time", type: "string" },
|
|
9198
|
+
email_address: {
|
|
9199
|
+
format: "email",
|
|
9200
|
+
nullable: true,
|
|
9201
|
+
type: "string"
|
|
9202
|
+
},
|
|
9203
|
+
first_name: { nullable: true, type: "string" },
|
|
9204
|
+
last_name: { nullable: true, type: "string" },
|
|
9205
|
+
user_identity_id: { format: "uuid", type: "string" },
|
|
9206
|
+
user_identity_key: { nullable: true, type: "string" },
|
|
9207
|
+
workspace_id: { format: "uuid", type: "string" }
|
|
9208
|
+
},
|
|
9209
|
+
required: [
|
|
9210
|
+
"user_identity_id",
|
|
9211
|
+
"created_at",
|
|
9212
|
+
"workspace_id"
|
|
9213
|
+
],
|
|
9214
|
+
type: "object"
|
|
9215
|
+
},
|
|
9216
|
+
type: "array"
|
|
9217
|
+
}
|
|
9218
|
+
},
|
|
9219
|
+
required: ["user_identities", "ok"],
|
|
9220
|
+
type: "object"
|
|
9221
|
+
}
|
|
9222
|
+
}
|
|
9223
|
+
},
|
|
9224
|
+
description: "OK"
|
|
9225
|
+
},
|
|
9226
|
+
400: { description: "Bad Request" },
|
|
9227
|
+
401: { description: "Unauthorized" }
|
|
9228
|
+
},
|
|
9229
|
+
security: [
|
|
9230
|
+
{ api_key: [] },
|
|
9231
|
+
{ client_session: [] },
|
|
9232
|
+
{ pat_with_workspace: [] },
|
|
9233
|
+
{ console_session: [] }
|
|
9234
|
+
],
|
|
9235
|
+
summary: "/user_identities/list",
|
|
9236
|
+
tags: [],
|
|
9237
|
+
"x-fern-ignore": true
|
|
9238
|
+
},
|
|
9239
|
+
post: {
|
|
9240
|
+
operationId: "userIdentitiesListPost",
|
|
9241
|
+
responses: {
|
|
9242
|
+
200: {
|
|
9243
|
+
content: {
|
|
9244
|
+
"application/json": {
|
|
9245
|
+
schema: {
|
|
9246
|
+
properties: {
|
|
9247
|
+
ok: { type: "boolean" },
|
|
9248
|
+
user_identities: {
|
|
9249
|
+
items: {
|
|
9250
|
+
properties: {
|
|
9251
|
+
created_at: { format: "date-time", type: "string" },
|
|
9252
|
+
email_address: {
|
|
9253
|
+
format: "email",
|
|
9254
|
+
nullable: true,
|
|
9255
|
+
type: "string"
|
|
9256
|
+
},
|
|
9257
|
+
first_name: { nullable: true, type: "string" },
|
|
9258
|
+
last_name: { nullable: true, type: "string" },
|
|
9259
|
+
user_identity_id: { format: "uuid", type: "string" },
|
|
9260
|
+
user_identity_key: { nullable: true, type: "string" },
|
|
9261
|
+
workspace_id: { format: "uuid", type: "string" }
|
|
9262
|
+
},
|
|
9263
|
+
required: [
|
|
9264
|
+
"user_identity_id",
|
|
9265
|
+
"created_at",
|
|
9266
|
+
"workspace_id"
|
|
9267
|
+
],
|
|
9268
|
+
type: "object"
|
|
9269
|
+
},
|
|
9270
|
+
type: "array"
|
|
9271
|
+
}
|
|
9272
|
+
},
|
|
9273
|
+
required: ["user_identities", "ok"],
|
|
9274
|
+
type: "object"
|
|
9275
|
+
}
|
|
9276
|
+
}
|
|
9277
|
+
},
|
|
9278
|
+
description: "OK"
|
|
9279
|
+
},
|
|
9280
|
+
400: { description: "Bad Request" },
|
|
9281
|
+
401: { description: "Unauthorized" }
|
|
9282
|
+
},
|
|
9283
|
+
security: [
|
|
9284
|
+
{ api_key: [] },
|
|
9285
|
+
{ client_session: [] },
|
|
9286
|
+
{ pat_with_workspace: [] },
|
|
9287
|
+
{ console_session: [] }
|
|
9288
|
+
],
|
|
9289
|
+
summary: "/user_identities/list",
|
|
9290
|
+
tags: [],
|
|
9291
|
+
"x-fern-sdk-group-name": ["user_identities"],
|
|
9292
|
+
"x-fern-sdk-method-name": "list",
|
|
9293
|
+
"x-fern-sdk-return-value": "user_identities"
|
|
9294
|
+
}
|
|
9295
|
+
},
|
|
9181
9296
|
"/user_identities/list_accessible_devices": {
|
|
9182
9297
|
post: {
|
|
9183
9298
|
operationId: "userIdentitiesListAccessibleDevicesPost",
|