@seamapi/types 1.52.1 → 1.53.1
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 +115 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +207 -0
- package/dist/devicedb.cjs +5 -5
- package/dist/devicedb.cjs.map +1 -1
- package/dist/devicedb.d.cts +80 -80
- package/lib/seam/connect/openapi.d.ts +186 -0
- package/lib/seam/connect/openapi.js +114 -0
- 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/lib/seam/devicedb/public-models/device-model-v1.d.ts +30 -30
- package/lib/seam/devicedb/public-models/device-model-v1.js +5 -5
- package/lib/seam/devicedb/public-models/device-model-v1.js.map +1 -1
- package/lib/seam/devicedb/route-specs.d.ts +40 -40
- package/lib/seam/devicedb/route-types.d.ts +10 -10
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +114 -0
- package/src/lib/seam/connect/route-types.ts +21 -0
- package/src/lib/seam/connect/unstable/models/acs/system.ts +1 -0
- package/src/lib/seam/devicedb/public-models/device-model-v1.ts +5 -5
- package/src/lib/seam/devicedb/route-types.ts +10 -10
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"
|
|
@@ -9179,6 +9181,118 @@ var openapi_default = {
|
|
|
9179
9181
|
"x-fern-ignore": true
|
|
9180
9182
|
}
|
|
9181
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
|
+
},
|
|
9182
9296
|
"/user_identities/list_accessible_devices": {
|
|
9183
9297
|
post: {
|
|
9184
9298
|
operationId: "userIdentitiesListAccessibleDevicesPost",
|