@seamapi/types 1.40.0 → 1.41.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 +55 -10
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +57 -4
- package/lib/seam/connect/openapi.d.ts +47 -0
- package/lib/seam/connect/openapi.js +49 -4
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +10 -4
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +49 -4
- package/src/lib/seam/connect/route-types.ts +10 -4
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
|
}
|
|
@@ -5120,7 +5149,11 @@ var openapi_default = {
|
|
|
5120
5149
|
items: { format: "uuid", type: "string" },
|
|
5121
5150
|
type: "array"
|
|
5122
5151
|
},
|
|
5123
|
-
created_before: {
|
|
5152
|
+
created_before: {
|
|
5153
|
+
format: "date-time",
|
|
5154
|
+
nullable: true,
|
|
5155
|
+
type: "string"
|
|
5156
|
+
},
|
|
5124
5157
|
device_ids: {
|
|
5125
5158
|
items: { format: "uuid", type: "string" },
|
|
5126
5159
|
type: "array"
|
|
@@ -5428,7 +5461,11 @@ var openapi_default = {
|
|
|
5428
5461
|
items: { format: "uuid", type: "string" },
|
|
5429
5462
|
type: "array"
|
|
5430
5463
|
},
|
|
5431
|
-
created_before: {
|
|
5464
|
+
created_before: {
|
|
5465
|
+
format: "date-time",
|
|
5466
|
+
nullable: true,
|
|
5467
|
+
type: "string"
|
|
5468
|
+
},
|
|
5432
5469
|
device_ids: {
|
|
5433
5470
|
items: { format: "uuid", type: "string" },
|
|
5434
5471
|
type: "array"
|
|
@@ -6228,7 +6265,11 @@ var openapi_default = {
|
|
|
6228
6265
|
items: { format: "uuid", type: "string" },
|
|
6229
6266
|
type: "array"
|
|
6230
6267
|
},
|
|
6231
|
-
created_before: {
|
|
6268
|
+
created_before: {
|
|
6269
|
+
format: "date-time",
|
|
6270
|
+
nullable: true,
|
|
6271
|
+
type: "string"
|
|
6272
|
+
},
|
|
6232
6273
|
device_ids: {
|
|
6233
6274
|
items: { format: "uuid", type: "string" },
|
|
6234
6275
|
type: "array"
|
|
@@ -7577,7 +7618,11 @@ var openapi_default = {
|
|
|
7577
7618
|
items: { format: "uuid", type: "string" },
|
|
7578
7619
|
type: "array"
|
|
7579
7620
|
},
|
|
7580
|
-
created_before: {
|
|
7621
|
+
created_before: {
|
|
7622
|
+
format: "date-time",
|
|
7623
|
+
nullable: true,
|
|
7624
|
+
type: "string"
|
|
7625
|
+
},
|
|
7581
7626
|
device_ids: {
|
|
7582
7627
|
items: { format: "uuid", type: "string" },
|
|
7583
7628
|
type: "array"
|