@seamapi/types 1.17.1 → 1.18.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/devicedb.d.ts +1 -1
- package/devicedb.js +1 -1
- package/devicedb.js.map +1 -1
- package/dist/connect.cjs +10 -33
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +12 -48
- package/dist/devicedb.cjs +46 -7709
- package/dist/devicedb.cjs.map +1 -1
- package/dist/devicedb.d.cts +442 -2
- package/lib/seam/connect/openapi.d.ts +9 -47
- package/lib/seam/connect/openapi.js +8 -31
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +3 -1
- package/lib/seam/devicedb/public-models.d.ts +4 -4
- package/package.json +1 -1
- package/src/devicedb.ts +1 -1
- package/src/lib/seam/connect/openapi.ts +8 -31
- package/src/lib/seam/connect/route-types.ts +3 -1
package/dist/connect.d.cts
CHANGED
|
@@ -6446,60 +6446,22 @@ declare const _default: {
|
|
|
6446
6446
|
};
|
|
6447
6447
|
};
|
|
6448
6448
|
'/connect_webviews/list': {
|
|
6449
|
-
|
|
6449
|
+
post: {
|
|
6450
6450
|
operationId: string;
|
|
6451
|
-
|
|
6452
|
-
|
|
6453
|
-
|
|
6454
|
-
|
|
6455
|
-
|
|
6456
|
-
|
|
6457
|
-
|
|
6458
|
-
items: {
|
|
6459
|
-
$ref: string;
|
|
6460
|
-
};
|
|
6461
|
-
type: string;
|
|
6462
|
-
};
|
|
6463
|
-
ok: {
|
|
6464
|
-
type: string;
|
|
6465
|
-
};
|
|
6451
|
+
requestBody: {
|
|
6452
|
+
content: {
|
|
6453
|
+
'application/json': {
|
|
6454
|
+
schema: {
|
|
6455
|
+
properties: {
|
|
6456
|
+
user_identifier_key: {
|
|
6457
|
+
type: string;
|
|
6466
6458
|
};
|
|
6467
|
-
required: string[];
|
|
6468
|
-
type: string;
|
|
6469
6459
|
};
|
|
6460
|
+
type: string;
|
|
6470
6461
|
};
|
|
6471
6462
|
};
|
|
6472
|
-
description: string;
|
|
6473
|
-
};
|
|
6474
|
-
400: {
|
|
6475
|
-
description: string;
|
|
6476
|
-
};
|
|
6477
|
-
401: {
|
|
6478
|
-
description: string;
|
|
6479
6463
|
};
|
|
6480
6464
|
};
|
|
6481
|
-
security: ({
|
|
6482
|
-
access_token: never[];
|
|
6483
|
-
seam_workspace: never[];
|
|
6484
|
-
seam_client_session_token?: never;
|
|
6485
|
-
client_session_token?: never;
|
|
6486
|
-
} | {
|
|
6487
|
-
seam_client_session_token: never[];
|
|
6488
|
-
access_token?: never;
|
|
6489
|
-
seam_workspace?: never;
|
|
6490
|
-
client_session_token?: never;
|
|
6491
|
-
} | {
|
|
6492
|
-
client_session_token: never[];
|
|
6493
|
-
access_token?: never;
|
|
6494
|
-
seam_workspace?: never;
|
|
6495
|
-
seam_client_session_token?: never;
|
|
6496
|
-
})[];
|
|
6497
|
-
summary: string;
|
|
6498
|
-
tags: string[];
|
|
6499
|
-
'x-fern-ignore': boolean;
|
|
6500
|
-
};
|
|
6501
|
-
post: {
|
|
6502
|
-
operationId: string;
|
|
6503
6465
|
responses: {
|
|
6504
6466
|
200: {
|
|
6505
6467
|
content: {
|
|
@@ -11744,7 +11706,9 @@ interface Routes {
|
|
|
11744
11706
|
method: 'GET' | 'POST';
|
|
11745
11707
|
queryParams: {};
|
|
11746
11708
|
jsonBody: {};
|
|
11747
|
-
commonParams: {
|
|
11709
|
+
commonParams: {
|
|
11710
|
+
user_identifier_key?: string | undefined;
|
|
11711
|
+
};
|
|
11748
11712
|
formData: {};
|
|
11749
11713
|
jsonResponse: {
|
|
11750
11714
|
connect_webviews: Array<{
|