@seamapi/types 1.29.0 → 1.30.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 +20 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +8 -0
- package/lib/seam/connect/openapi.d.ts +4 -0
- package/lib/seam/connect/openapi.js +20 -4
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +4 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +24 -4
- package/src/lib/seam/connect/route-types.ts +4 -0
|
@@ -1674,6 +1674,7 @@ export interface Routes {
|
|
|
1674
1674
|
queryParams: {};
|
|
1675
1675
|
jsonBody: {};
|
|
1676
1676
|
commonParams: {
|
|
1677
|
+
/** List all devices owned by this connected account */
|
|
1677
1678
|
connected_account_id?: string | undefined;
|
|
1678
1679
|
connected_account_ids?: string[] | undefined;
|
|
1679
1680
|
connect_webview_id?: string | undefined;
|
|
@@ -2141,6 +2142,7 @@ export interface Routes {
|
|
|
2141
2142
|
queryParams: {};
|
|
2142
2143
|
jsonBody: {};
|
|
2143
2144
|
commonParams: {
|
|
2145
|
+
/** List all devices owned by this connected account */
|
|
2144
2146
|
connected_account_id?: string | undefined;
|
|
2145
2147
|
connected_account_ids?: string[] | undefined;
|
|
2146
2148
|
connect_webview_id?: string | undefined;
|
|
@@ -2360,6 +2362,7 @@ export interface Routes {
|
|
|
2360
2362
|
queryParams: {};
|
|
2361
2363
|
jsonBody: {};
|
|
2362
2364
|
commonParams: {
|
|
2365
|
+
/** List all devices owned by this connected account */
|
|
2363
2366
|
connected_account_id?: string | undefined;
|
|
2364
2367
|
connected_account_ids?: string[] | undefined;
|
|
2365
2368
|
connect_webview_id?: string | undefined;
|
|
@@ -3220,6 +3223,7 @@ export interface Routes {
|
|
|
3220
3223
|
queryParams: {};
|
|
3221
3224
|
jsonBody: {};
|
|
3222
3225
|
commonParams: {
|
|
3226
|
+
/** List all devices owned by this connected account */
|
|
3223
3227
|
connected_account_id?: string | undefined;
|
|
3224
3228
|
connected_account_ids?: string[] | undefined;
|
|
3225
3229
|
connect_webview_id?: string | undefined;
|
package/package.json
CHANGED
|
@@ -5044,7 +5044,12 @@ export default {
|
|
|
5044
5044
|
schema: {
|
|
5045
5045
|
properties: {
|
|
5046
5046
|
connect_webview_id: { format: 'uuid', type: 'string' },
|
|
5047
|
-
connected_account_id: {
|
|
5047
|
+
connected_account_id: {
|
|
5048
|
+
description:
|
|
5049
|
+
'List all devices owned by this connected account',
|
|
5050
|
+
format: 'uuid',
|
|
5051
|
+
type: 'string',
|
|
5052
|
+
},
|
|
5048
5053
|
connected_account_ids: {
|
|
5049
5054
|
items: { format: 'uuid', type: 'string' },
|
|
5050
5055
|
minItems: 1,
|
|
@@ -5349,7 +5354,12 @@ export default {
|
|
|
5349
5354
|
schema: {
|
|
5350
5355
|
properties: {
|
|
5351
5356
|
connect_webview_id: { format: 'uuid', type: 'string' },
|
|
5352
|
-
connected_account_id: {
|
|
5357
|
+
connected_account_id: {
|
|
5358
|
+
description:
|
|
5359
|
+
'List all devices owned by this connected account',
|
|
5360
|
+
format: 'uuid',
|
|
5361
|
+
type: 'string',
|
|
5362
|
+
},
|
|
5353
5363
|
connected_account_ids: {
|
|
5354
5364
|
items: { format: 'uuid', type: 'string' },
|
|
5355
5365
|
minItems: 1,
|
|
@@ -6146,7 +6156,12 @@ export default {
|
|
|
6146
6156
|
schema: {
|
|
6147
6157
|
properties: {
|
|
6148
6158
|
connect_webview_id: { format: 'uuid', type: 'string' },
|
|
6149
|
-
connected_account_id: {
|
|
6159
|
+
connected_account_id: {
|
|
6160
|
+
description:
|
|
6161
|
+
'List all devices owned by this connected account',
|
|
6162
|
+
format: 'uuid',
|
|
6163
|
+
type: 'string',
|
|
6164
|
+
},
|
|
6150
6165
|
connected_account_ids: {
|
|
6151
6166
|
items: { format: 'uuid', type: 'string' },
|
|
6152
6167
|
minItems: 1,
|
|
@@ -7492,7 +7507,12 @@ export default {
|
|
|
7492
7507
|
schema: {
|
|
7493
7508
|
properties: {
|
|
7494
7509
|
connect_webview_id: { format: 'uuid', type: 'string' },
|
|
7495
|
-
connected_account_id: {
|
|
7510
|
+
connected_account_id: {
|
|
7511
|
+
description:
|
|
7512
|
+
'List all devices owned by this connected account',
|
|
7513
|
+
format: 'uuid',
|
|
7514
|
+
type: 'string',
|
|
7515
|
+
},
|
|
7496
7516
|
connected_account_ids: {
|
|
7497
7517
|
items: { format: 'uuid', type: 'string' },
|
|
7498
7518
|
minItems: 1,
|
|
@@ -1956,6 +1956,7 @@ export interface Routes {
|
|
|
1956
1956
|
queryParams: {}
|
|
1957
1957
|
jsonBody: {}
|
|
1958
1958
|
commonParams: {
|
|
1959
|
+
/** List all devices owned by this connected account */
|
|
1959
1960
|
connected_account_id?: string | undefined
|
|
1960
1961
|
connected_account_ids?: string[] | undefined
|
|
1961
1962
|
connect_webview_id?: string | undefined
|
|
@@ -2742,6 +2743,7 @@ export interface Routes {
|
|
|
2742
2743
|
queryParams: {}
|
|
2743
2744
|
jsonBody: {}
|
|
2744
2745
|
commonParams: {
|
|
2746
|
+
/** List all devices owned by this connected account */
|
|
2745
2747
|
connected_account_id?: string | undefined
|
|
2746
2748
|
connected_account_ids?: string[] | undefined
|
|
2747
2749
|
connect_webview_id?: string | undefined
|
|
@@ -3187,6 +3189,7 @@ export interface Routes {
|
|
|
3187
3189
|
queryParams: {}
|
|
3188
3190
|
jsonBody: {}
|
|
3189
3191
|
commonParams: {
|
|
3192
|
+
/** List all devices owned by this connected account */
|
|
3190
3193
|
connected_account_id?: string | undefined
|
|
3191
3194
|
connected_account_ids?: string[] | undefined
|
|
3192
3195
|
connect_webview_id?: string | undefined
|
|
@@ -4350,6 +4353,7 @@ export interface Routes {
|
|
|
4350
4353
|
queryParams: {}
|
|
4351
4354
|
jsonBody: {}
|
|
4352
4355
|
commonParams: {
|
|
4356
|
+
/** List all devices owned by this connected account */
|
|
4353
4357
|
connected_account_id?: string | undefined
|
|
4354
4358
|
connected_account_ids?: string[] | undefined
|
|
4355
4359
|
connect_webview_id?: string | undefined
|