@seamapi/types 1.40.0 → 1.41.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 +35 -6
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +49 -0
- package/lib/seam/connect/openapi.d.ts +43 -0
- package/lib/seam/connect/openapi.js +29 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +6 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +29 -0
- package/src/lib/seam/connect/route-types.ts +6 -0
package/dist/connect.cjs
CHANGED
|
@@ -257,6 +257,10 @@ var openapi_default = {
|
|
|
257
257
|
device_count: { type: "number" },
|
|
258
258
|
token: { type: "string" },
|
|
259
259
|
user_identifier_key: { nullable: true, type: "string" },
|
|
260
|
+
user_identity_ids: {
|
|
261
|
+
items: { format: "uuid", type: "string" },
|
|
262
|
+
type: "array"
|
|
263
|
+
},
|
|
260
264
|
workspace_id: { format: "uuid", type: "string" }
|
|
261
265
|
},
|
|
262
266
|
required: [
|
|
@@ -267,6 +271,7 @@ var openapi_default = {
|
|
|
267
271
|
"device_count",
|
|
268
272
|
"connected_account_ids",
|
|
269
273
|
"connect_webview_ids",
|
|
274
|
+
"user_identity_ids",
|
|
270
275
|
"workspace_id"
|
|
271
276
|
],
|
|
272
277
|
type: "object"
|
|
@@ -4073,7 +4078,11 @@ var openapi_default = {
|
|
|
4073
4078
|
nullable: true,
|
|
4074
4079
|
type: "string"
|
|
4075
4080
|
},
|
|
4076
|
-
user_identifier_key: { minLength: 1, type: "string" }
|
|
4081
|
+
user_identifier_key: { minLength: 1, type: "string" },
|
|
4082
|
+
user_identity_ids: {
|
|
4083
|
+
items: { type: "string" },
|
|
4084
|
+
type: "array"
|
|
4085
|
+
}
|
|
4077
4086
|
},
|
|
4078
4087
|
type: "object"
|
|
4079
4088
|
}
|
|
@@ -4127,7 +4136,11 @@ var openapi_default = {
|
|
|
4127
4136
|
nullable: true,
|
|
4128
4137
|
type: "string"
|
|
4129
4138
|
},
|
|
4130
|
-
user_identifier_key: { minLength: 1, type: "string" }
|
|
4139
|
+
user_identifier_key: { minLength: 1, type: "string" },
|
|
4140
|
+
user_identity_ids: {
|
|
4141
|
+
items: { type: "string" },
|
|
4142
|
+
type: "array"
|
|
4143
|
+
}
|
|
4131
4144
|
},
|
|
4132
4145
|
type: "object"
|
|
4133
4146
|
}
|
|
@@ -4273,7 +4286,11 @@ var openapi_default = {
|
|
|
4273
4286
|
nullable: true,
|
|
4274
4287
|
type: "string"
|
|
4275
4288
|
},
|
|
4276
|
-
user_identifier_key: { minLength: 1, type: "string" }
|
|
4289
|
+
user_identifier_key: { minLength: 1, type: "string" },
|
|
4290
|
+
user_identity_ids: {
|
|
4291
|
+
items: { type: "string" },
|
|
4292
|
+
type: "array"
|
|
4293
|
+
}
|
|
4277
4294
|
},
|
|
4278
4295
|
type: "object"
|
|
4279
4296
|
}
|
|
@@ -4327,7 +4344,11 @@ var openapi_default = {
|
|
|
4327
4344
|
nullable: true,
|
|
4328
4345
|
type: "string"
|
|
4329
4346
|
},
|
|
4330
|
-
user_identifier_key: { minLength: 1, type: "string" }
|
|
4347
|
+
user_identifier_key: { minLength: 1, type: "string" },
|
|
4348
|
+
user_identity_ids: {
|
|
4349
|
+
items: { type: "string" },
|
|
4350
|
+
type: "array"
|
|
4351
|
+
}
|
|
4331
4352
|
},
|
|
4332
4353
|
type: "object"
|
|
4333
4354
|
}
|
|
@@ -4377,7 +4398,11 @@ var openapi_default = {
|
|
|
4377
4398
|
items: { type: "string" },
|
|
4378
4399
|
type: "array"
|
|
4379
4400
|
},
|
|
4380
|
-
user_identifier_key: { type: "string" }
|
|
4401
|
+
user_identifier_key: { type: "string" },
|
|
4402
|
+
user_identity_ids: {
|
|
4403
|
+
items: { type: "string" },
|
|
4404
|
+
type: "array"
|
|
4405
|
+
}
|
|
4381
4406
|
},
|
|
4382
4407
|
type: "object"
|
|
4383
4408
|
}
|
|
@@ -4430,7 +4455,11 @@ var openapi_default = {
|
|
|
4430
4455
|
items: { type: "string" },
|
|
4431
4456
|
type: "array"
|
|
4432
4457
|
},
|
|
4433
|
-
user_identifier_key: { type: "string" }
|
|
4458
|
+
user_identifier_key: { type: "string" },
|
|
4459
|
+
user_identity_ids: {
|
|
4460
|
+
items: { type: "string" },
|
|
4461
|
+
type: "array"
|
|
4462
|
+
}
|
|
4434
4463
|
},
|
|
4435
4464
|
type: "object"
|
|
4436
4465
|
}
|