@seamapi/types 1.135.0 → 1.137.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 +41 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +74 -0
- package/lib/seam/connect/openapi.d.ts +62 -0
- package/lib/seam/connect/openapi.js +41 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +12 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +41 -0
- package/src/lib/seam/connect/route-types.ts +12 -0
|
@@ -1659,6 +1659,7 @@ export interface Routes {
|
|
|
1659
1659
|
client_session_id: string;
|
|
1660
1660
|
user_identifier_key: string | null;
|
|
1661
1661
|
created_at: string;
|
|
1662
|
+
token: string;
|
|
1662
1663
|
device_count: number;
|
|
1663
1664
|
connected_account_ids: string[];
|
|
1664
1665
|
connect_webview_ids: string[];
|
|
@@ -2930,6 +2931,17 @@ export interface Routes {
|
|
|
2930
2931
|
}>;
|
|
2931
2932
|
};
|
|
2932
2933
|
};
|
|
2934
|
+
'/devices/simulate/remove': {
|
|
2935
|
+
route: '/devices/simulate/remove';
|
|
2936
|
+
method: 'DELETE' | 'POST';
|
|
2937
|
+
queryParams: {};
|
|
2938
|
+
jsonBody: {
|
|
2939
|
+
device_id: string;
|
|
2940
|
+
};
|
|
2941
|
+
commonParams: {};
|
|
2942
|
+
formData: {};
|
|
2943
|
+
jsonResponse: {};
|
|
2944
|
+
};
|
|
2933
2945
|
'/devices/unmanaged/get': {
|
|
2934
2946
|
route: '/devices/unmanaged/get';
|
|
2935
2947
|
method: 'GET' | 'POST';
|
package/package.json
CHANGED
|
@@ -7950,6 +7950,47 @@ export default {
|
|
|
7950
7950
|
'x-fern-sdk-return-value': 'device_providers',
|
|
7951
7951
|
},
|
|
7952
7952
|
},
|
|
7953
|
+
'/devices/simulate/remove': {
|
|
7954
|
+
post: {
|
|
7955
|
+
operationId: 'devicesSimulateRemovePost',
|
|
7956
|
+
requestBody: {
|
|
7957
|
+
content: {
|
|
7958
|
+
'application/json': {
|
|
7959
|
+
schema: {
|
|
7960
|
+
properties: { device_id: { format: 'uuid', type: 'string' } },
|
|
7961
|
+
required: ['device_id'],
|
|
7962
|
+
type: 'object',
|
|
7963
|
+
},
|
|
7964
|
+
},
|
|
7965
|
+
},
|
|
7966
|
+
},
|
|
7967
|
+
responses: {
|
|
7968
|
+
200: {
|
|
7969
|
+
content: {
|
|
7970
|
+
'application/json': {
|
|
7971
|
+
schema: {
|
|
7972
|
+
properties: { ok: { type: 'boolean' } },
|
|
7973
|
+
required: ['ok'],
|
|
7974
|
+
type: 'object',
|
|
7975
|
+
},
|
|
7976
|
+
},
|
|
7977
|
+
},
|
|
7978
|
+
description: 'OK',
|
|
7979
|
+
},
|
|
7980
|
+
400: { description: 'Bad Request' },
|
|
7981
|
+
401: { description: 'Unauthorized' },
|
|
7982
|
+
},
|
|
7983
|
+
security: [
|
|
7984
|
+
{ api_key: [] },
|
|
7985
|
+
{ pat_with_workspace: [] },
|
|
7986
|
+
{ console_session: [] },
|
|
7987
|
+
],
|
|
7988
|
+
summary: '/devices/simulate/remove',
|
|
7989
|
+
tags: ['/devices'],
|
|
7990
|
+
'x-fern-sdk-group-name': ['devices', 'simulate'],
|
|
7991
|
+
'x-fern-sdk-method-name': 'remove',
|
|
7992
|
+
},
|
|
7993
|
+
},
|
|
7953
7994
|
'/devices/unmanaged/get': {
|
|
7954
7995
|
post: {
|
|
7955
7996
|
operationId: 'devicesUnmanagedGetPost',
|
|
@@ -1855,6 +1855,7 @@ export interface Routes {
|
|
|
1855
1855
|
client_session_id: string
|
|
1856
1856
|
user_identifier_key: string | null
|
|
1857
1857
|
created_at: string
|
|
1858
|
+
token: string
|
|
1858
1859
|
device_count: number
|
|
1859
1860
|
connected_account_ids: string[]
|
|
1860
1861
|
connect_webview_ids: string[]
|
|
@@ -3778,6 +3779,17 @@ export interface Routes {
|
|
|
3778
3779
|
}>
|
|
3779
3780
|
}
|
|
3780
3781
|
}
|
|
3782
|
+
'/devices/simulate/remove': {
|
|
3783
|
+
route: '/devices/simulate/remove'
|
|
3784
|
+
method: 'DELETE' | 'POST'
|
|
3785
|
+
queryParams: {}
|
|
3786
|
+
jsonBody: {
|
|
3787
|
+
device_id: string
|
|
3788
|
+
}
|
|
3789
|
+
commonParams: {}
|
|
3790
|
+
formData: {}
|
|
3791
|
+
jsonResponse: {}
|
|
3792
|
+
}
|
|
3781
3793
|
'/devices/unmanaged/get': {
|
|
3782
3794
|
route: '/devices/unmanaged/get'
|
|
3783
3795
|
method: 'GET' | 'POST'
|