@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.d.cts
CHANGED
|
@@ -392,6 +392,13 @@ declare const _default: {
|
|
|
392
392
|
nullable: boolean;
|
|
393
393
|
type: string;
|
|
394
394
|
};
|
|
395
|
+
user_identity_ids: {
|
|
396
|
+
items: {
|
|
397
|
+
format: string;
|
|
398
|
+
type: string;
|
|
399
|
+
};
|
|
400
|
+
type: string;
|
|
401
|
+
};
|
|
395
402
|
workspace_id: {
|
|
396
403
|
format: string;
|
|
397
404
|
type: string;
|
|
@@ -6047,6 +6054,12 @@ declare const _default: {
|
|
|
6047
6054
|
minLength: number;
|
|
6048
6055
|
type: string;
|
|
6049
6056
|
};
|
|
6057
|
+
user_identity_ids: {
|
|
6058
|
+
items: {
|
|
6059
|
+
type: string;
|
|
6060
|
+
};
|
|
6061
|
+
type: string;
|
|
6062
|
+
};
|
|
6050
6063
|
};
|
|
6051
6064
|
type: string;
|
|
6052
6065
|
};
|
|
@@ -6114,6 +6127,12 @@ declare const _default: {
|
|
|
6114
6127
|
minLength: number;
|
|
6115
6128
|
type: string;
|
|
6116
6129
|
};
|
|
6130
|
+
user_identity_ids: {
|
|
6131
|
+
items: {
|
|
6132
|
+
type: string;
|
|
6133
|
+
};
|
|
6134
|
+
type: string;
|
|
6135
|
+
};
|
|
6117
6136
|
};
|
|
6118
6137
|
type: string;
|
|
6119
6138
|
};
|
|
@@ -6316,6 +6335,12 @@ declare const _default: {
|
|
|
6316
6335
|
minLength: number;
|
|
6317
6336
|
type: string;
|
|
6318
6337
|
};
|
|
6338
|
+
user_identity_ids: {
|
|
6339
|
+
items: {
|
|
6340
|
+
type: string;
|
|
6341
|
+
};
|
|
6342
|
+
type: string;
|
|
6343
|
+
};
|
|
6319
6344
|
};
|
|
6320
6345
|
type: string;
|
|
6321
6346
|
};
|
|
@@ -6383,6 +6408,12 @@ declare const _default: {
|
|
|
6383
6408
|
minLength: number;
|
|
6384
6409
|
type: string;
|
|
6385
6410
|
};
|
|
6411
|
+
user_identity_ids: {
|
|
6412
|
+
items: {
|
|
6413
|
+
type: string;
|
|
6414
|
+
};
|
|
6415
|
+
type: string;
|
|
6416
|
+
};
|
|
6386
6417
|
};
|
|
6387
6418
|
type: string;
|
|
6388
6419
|
};
|
|
@@ -6447,6 +6478,12 @@ declare const _default: {
|
|
|
6447
6478
|
user_identifier_key: {
|
|
6448
6479
|
type: string;
|
|
6449
6480
|
};
|
|
6481
|
+
user_identity_ids: {
|
|
6482
|
+
items: {
|
|
6483
|
+
type: string;
|
|
6484
|
+
};
|
|
6485
|
+
type: string;
|
|
6486
|
+
};
|
|
6450
6487
|
};
|
|
6451
6488
|
type: string;
|
|
6452
6489
|
};
|
|
@@ -6525,6 +6562,12 @@ declare const _default: {
|
|
|
6525
6562
|
user_identifier_key: {
|
|
6526
6563
|
type: string;
|
|
6527
6564
|
};
|
|
6565
|
+
user_identity_ids: {
|
|
6566
|
+
items: {
|
|
6567
|
+
type: string;
|
|
6568
|
+
};
|
|
6569
|
+
type: string;
|
|
6570
|
+
};
|
|
6528
6571
|
};
|
|
6529
6572
|
type: string;
|
|
6530
6573
|
};
|
|
@@ -13341,6 +13384,7 @@ interface Routes {
|
|
|
13341
13384
|
user_identifier_key?: string | undefined;
|
|
13342
13385
|
connect_webview_ids?: string[] | undefined;
|
|
13343
13386
|
connected_account_ids?: string[] | undefined;
|
|
13387
|
+
user_identity_ids?: string[] | undefined;
|
|
13344
13388
|
expires_at?: Date | undefined;
|
|
13345
13389
|
};
|
|
13346
13390
|
commonParams: {};
|
|
@@ -13385,6 +13429,7 @@ interface Routes {
|
|
|
13385
13429
|
device_count: number;
|
|
13386
13430
|
connected_account_ids: string[];
|
|
13387
13431
|
connect_webview_ids: string[];
|
|
13432
|
+
user_identity_ids: string[];
|
|
13388
13433
|
workspace_id: string;
|
|
13389
13434
|
};
|
|
13390
13435
|
};
|
|
@@ -13397,6 +13442,7 @@ interface Routes {
|
|
|
13397
13442
|
user_identifier_key?: string | undefined;
|
|
13398
13443
|
connect_webview_ids?: string[] | undefined;
|
|
13399
13444
|
connected_account_ids?: string[] | undefined;
|
|
13445
|
+
user_identity_ids?: string[] | undefined;
|
|
13400
13446
|
expires_at?: Date | undefined;
|
|
13401
13447
|
};
|
|
13402
13448
|
commonParams: {};
|
|
@@ -13421,6 +13467,7 @@ interface Routes {
|
|
|
13421
13467
|
user_identifier_key?: string | undefined;
|
|
13422
13468
|
connected_account_ids?: string[] | undefined;
|
|
13423
13469
|
connect_webview_ids?: string[] | undefined;
|
|
13470
|
+
user_identity_ids?: string[] | undefined;
|
|
13424
13471
|
};
|
|
13425
13472
|
formData: {};
|
|
13426
13473
|
jsonResponse: {
|
|
@@ -13432,6 +13479,7 @@ interface Routes {
|
|
|
13432
13479
|
device_count: number;
|
|
13433
13480
|
connected_account_ids: string[];
|
|
13434
13481
|
connect_webview_ids: string[];
|
|
13482
|
+
user_identity_ids: string[];
|
|
13435
13483
|
workspace_id: string;
|
|
13436
13484
|
};
|
|
13437
13485
|
};
|
|
@@ -13456,6 +13504,7 @@ interface Routes {
|
|
|
13456
13504
|
device_count: number;
|
|
13457
13505
|
connected_account_ids: string[];
|
|
13458
13506
|
connect_webview_ids: string[];
|
|
13507
|
+
user_identity_ids: string[];
|
|
13459
13508
|
workspace_id: string;
|
|
13460
13509
|
}>;
|
|
13461
13510
|
};
|
|
@@ -341,6 +341,13 @@ declare const _default: {
|
|
|
341
341
|
nullable: boolean;
|
|
342
342
|
type: string;
|
|
343
343
|
};
|
|
344
|
+
user_identity_ids: {
|
|
345
|
+
items: {
|
|
346
|
+
format: string;
|
|
347
|
+
type: string;
|
|
348
|
+
};
|
|
349
|
+
type: string;
|
|
350
|
+
};
|
|
344
351
|
workspace_id: {
|
|
345
352
|
format: string;
|
|
346
353
|
type: string;
|
|
@@ -5996,6 +6003,12 @@ declare const _default: {
|
|
|
5996
6003
|
minLength: number;
|
|
5997
6004
|
type: string;
|
|
5998
6005
|
};
|
|
6006
|
+
user_identity_ids: {
|
|
6007
|
+
items: {
|
|
6008
|
+
type: string;
|
|
6009
|
+
};
|
|
6010
|
+
type: string;
|
|
6011
|
+
};
|
|
5999
6012
|
};
|
|
6000
6013
|
type: string;
|
|
6001
6014
|
};
|
|
@@ -6063,6 +6076,12 @@ declare const _default: {
|
|
|
6063
6076
|
minLength: number;
|
|
6064
6077
|
type: string;
|
|
6065
6078
|
};
|
|
6079
|
+
user_identity_ids: {
|
|
6080
|
+
items: {
|
|
6081
|
+
type: string;
|
|
6082
|
+
};
|
|
6083
|
+
type: string;
|
|
6084
|
+
};
|
|
6066
6085
|
};
|
|
6067
6086
|
type: string;
|
|
6068
6087
|
};
|
|
@@ -6265,6 +6284,12 @@ declare const _default: {
|
|
|
6265
6284
|
minLength: number;
|
|
6266
6285
|
type: string;
|
|
6267
6286
|
};
|
|
6287
|
+
user_identity_ids: {
|
|
6288
|
+
items: {
|
|
6289
|
+
type: string;
|
|
6290
|
+
};
|
|
6291
|
+
type: string;
|
|
6292
|
+
};
|
|
6268
6293
|
};
|
|
6269
6294
|
type: string;
|
|
6270
6295
|
};
|
|
@@ -6332,6 +6357,12 @@ declare const _default: {
|
|
|
6332
6357
|
minLength: number;
|
|
6333
6358
|
type: string;
|
|
6334
6359
|
};
|
|
6360
|
+
user_identity_ids: {
|
|
6361
|
+
items: {
|
|
6362
|
+
type: string;
|
|
6363
|
+
};
|
|
6364
|
+
type: string;
|
|
6365
|
+
};
|
|
6335
6366
|
};
|
|
6336
6367
|
type: string;
|
|
6337
6368
|
};
|
|
@@ -6396,6 +6427,12 @@ declare const _default: {
|
|
|
6396
6427
|
user_identifier_key: {
|
|
6397
6428
|
type: string;
|
|
6398
6429
|
};
|
|
6430
|
+
user_identity_ids: {
|
|
6431
|
+
items: {
|
|
6432
|
+
type: string;
|
|
6433
|
+
};
|
|
6434
|
+
type: string;
|
|
6435
|
+
};
|
|
6399
6436
|
};
|
|
6400
6437
|
type: string;
|
|
6401
6438
|
};
|
|
@@ -6474,6 +6511,12 @@ declare const _default: {
|
|
|
6474
6511
|
user_identifier_key: {
|
|
6475
6512
|
type: string;
|
|
6476
6513
|
};
|
|
6514
|
+
user_identity_ids: {
|
|
6515
|
+
items: {
|
|
6516
|
+
type: string;
|
|
6517
|
+
};
|
|
6518
|
+
type: string;
|
|
6519
|
+
};
|
|
6477
6520
|
};
|
|
6478
6521
|
type: string;
|
|
6479
6522
|
};
|
|
@@ -226,6 +226,10 @@ export default {
|
|
|
226
226
|
device_count: { type: 'number' },
|
|
227
227
|
token: { type: 'string' },
|
|
228
228
|
user_identifier_key: { nullable: true, type: 'string' },
|
|
229
|
+
user_identity_ids: {
|
|
230
|
+
items: { format: 'uuid', type: 'string' },
|
|
231
|
+
type: 'array',
|
|
232
|
+
},
|
|
229
233
|
workspace_id: { format: 'uuid', type: 'string' },
|
|
230
234
|
},
|
|
231
235
|
required: [
|
|
@@ -236,6 +240,7 @@ export default {
|
|
|
236
240
|
'device_count',
|
|
237
241
|
'connected_account_ids',
|
|
238
242
|
'connect_webview_ids',
|
|
243
|
+
'user_identity_ids',
|
|
239
244
|
'workspace_id',
|
|
240
245
|
],
|
|
241
246
|
type: 'object',
|
|
@@ -4043,6 +4048,10 @@ export default {
|
|
|
4043
4048
|
type: 'string',
|
|
4044
4049
|
},
|
|
4045
4050
|
user_identifier_key: { minLength: 1, type: 'string' },
|
|
4051
|
+
user_identity_ids: {
|
|
4052
|
+
items: { type: 'string' },
|
|
4053
|
+
type: 'array',
|
|
4054
|
+
},
|
|
4046
4055
|
},
|
|
4047
4056
|
type: 'object',
|
|
4048
4057
|
},
|
|
@@ -4097,6 +4106,10 @@ export default {
|
|
|
4097
4106
|
type: 'string',
|
|
4098
4107
|
},
|
|
4099
4108
|
user_identifier_key: { minLength: 1, type: 'string' },
|
|
4109
|
+
user_identity_ids: {
|
|
4110
|
+
items: { type: 'string' },
|
|
4111
|
+
type: 'array',
|
|
4112
|
+
},
|
|
4100
4113
|
},
|
|
4101
4114
|
type: 'object',
|
|
4102
4115
|
},
|
|
@@ -4243,6 +4256,10 @@ export default {
|
|
|
4243
4256
|
type: 'string',
|
|
4244
4257
|
},
|
|
4245
4258
|
user_identifier_key: { minLength: 1, type: 'string' },
|
|
4259
|
+
user_identity_ids: {
|
|
4260
|
+
items: { type: 'string' },
|
|
4261
|
+
type: 'array',
|
|
4262
|
+
},
|
|
4246
4263
|
},
|
|
4247
4264
|
type: 'object',
|
|
4248
4265
|
},
|
|
@@ -4297,6 +4314,10 @@ export default {
|
|
|
4297
4314
|
type: 'string',
|
|
4298
4315
|
},
|
|
4299
4316
|
user_identifier_key: { minLength: 1, type: 'string' },
|
|
4317
|
+
user_identity_ids: {
|
|
4318
|
+
items: { type: 'string' },
|
|
4319
|
+
type: 'array',
|
|
4320
|
+
},
|
|
4300
4321
|
},
|
|
4301
4322
|
type: 'object',
|
|
4302
4323
|
},
|
|
@@ -4347,6 +4368,10 @@ export default {
|
|
|
4347
4368
|
type: 'array',
|
|
4348
4369
|
},
|
|
4349
4370
|
user_identifier_key: { type: 'string' },
|
|
4371
|
+
user_identity_ids: {
|
|
4372
|
+
items: { type: 'string' },
|
|
4373
|
+
type: 'array',
|
|
4374
|
+
},
|
|
4350
4375
|
},
|
|
4351
4376
|
type: 'object',
|
|
4352
4377
|
},
|
|
@@ -4400,6 +4425,10 @@ export default {
|
|
|
4400
4425
|
type: 'array',
|
|
4401
4426
|
},
|
|
4402
4427
|
user_identifier_key: { type: 'string' },
|
|
4428
|
+
user_identity_ids: {
|
|
4429
|
+
items: { type: 'string' },
|
|
4430
|
+
type: 'array',
|
|
4431
|
+
},
|
|
4403
4432
|
},
|
|
4404
4433
|
type: 'object',
|
|
4405
4434
|
},
|