@seamapi/types 1.157.0 → 1.157.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 +6 -6
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +17 -13
- package/lib/seam/connect/openapi.d.ts +17 -13
- package/lib/seam/connect/openapi.js +5 -5
- package/lib/seam/connect/openapi.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +5 -5
package/dist/connect.d.cts
CHANGED
|
@@ -9844,20 +9844,25 @@ declare const _default: {
|
|
|
9844
9844
|
};
|
|
9845
9845
|
};
|
|
9846
9846
|
security: ({
|
|
9847
|
-
|
|
9848
|
-
|
|
9849
|
-
|
|
9850
|
-
|
|
9847
|
+
client_session: never[];
|
|
9848
|
+
pat_with_workspace?: never;
|
|
9849
|
+
console_session?: never;
|
|
9850
|
+
api_key?: never;
|
|
9851
9851
|
} | {
|
|
9852
|
-
|
|
9853
|
-
|
|
9854
|
-
|
|
9855
|
-
|
|
9852
|
+
pat_with_workspace: never[];
|
|
9853
|
+
client_session?: never;
|
|
9854
|
+
console_session?: never;
|
|
9855
|
+
api_key?: never;
|
|
9856
9856
|
} | {
|
|
9857
|
-
|
|
9858
|
-
|
|
9859
|
-
|
|
9860
|
-
|
|
9857
|
+
console_session: never[];
|
|
9858
|
+
client_session?: never;
|
|
9859
|
+
pat_with_workspace?: never;
|
|
9860
|
+
api_key?: never;
|
|
9861
|
+
} | {
|
|
9862
|
+
api_key: never[];
|
|
9863
|
+
client_session?: never;
|
|
9864
|
+
pat_with_workspace?: never;
|
|
9865
|
+
console_session?: never;
|
|
9861
9866
|
})[];
|
|
9862
9867
|
summary: string;
|
|
9863
9868
|
tags: string[];
|
|
@@ -12555,7 +12560,6 @@ declare const _default: {
|
|
|
12555
12560
|
tags: string[];
|
|
12556
12561
|
'x-fern-sdk-group-name': string[];
|
|
12557
12562
|
'x-fern-sdk-method-name': string;
|
|
12558
|
-
'x-fern-sdk-return-value': string;
|
|
12559
12563
|
};
|
|
12560
12564
|
put: {
|
|
12561
12565
|
operationId: string;
|
|
@@ -9770,20 +9770,25 @@ declare const _default: {
|
|
|
9770
9770
|
};
|
|
9771
9771
|
};
|
|
9772
9772
|
security: ({
|
|
9773
|
-
|
|
9774
|
-
|
|
9775
|
-
|
|
9776
|
-
|
|
9773
|
+
client_session: never[];
|
|
9774
|
+
pat_with_workspace?: never;
|
|
9775
|
+
console_session?: never;
|
|
9776
|
+
api_key?: never;
|
|
9777
9777
|
} | {
|
|
9778
|
-
|
|
9779
|
-
|
|
9780
|
-
|
|
9781
|
-
|
|
9778
|
+
pat_with_workspace: never[];
|
|
9779
|
+
client_session?: never;
|
|
9780
|
+
console_session?: never;
|
|
9781
|
+
api_key?: never;
|
|
9782
9782
|
} | {
|
|
9783
|
-
|
|
9784
|
-
|
|
9785
|
-
|
|
9786
|
-
|
|
9783
|
+
console_session: never[];
|
|
9784
|
+
client_session?: never;
|
|
9785
|
+
pat_with_workspace?: never;
|
|
9786
|
+
api_key?: never;
|
|
9787
|
+
} | {
|
|
9788
|
+
api_key: never[];
|
|
9789
|
+
client_session?: never;
|
|
9790
|
+
pat_with_workspace?: never;
|
|
9791
|
+
console_session?: never;
|
|
9787
9792
|
})[];
|
|
9788
9793
|
summary: string;
|
|
9789
9794
|
tags: string[];
|
|
@@ -12481,7 +12486,6 @@ declare const _default: {
|
|
|
12481
12486
|
tags: string[];
|
|
12482
12487
|
'x-fern-sdk-group-name': string[];
|
|
12483
12488
|
'x-fern-sdk-method-name': string;
|
|
12484
|
-
'x-fern-sdk-return-value': string;
|
|
12485
12489
|
};
|
|
12486
12490
|
put: {
|
|
12487
12491
|
operationId: string;
|
|
@@ -7222,9 +7222,10 @@ export default {
|
|
|
7222
7222
|
401: { description: 'Unauthorized' },
|
|
7223
7223
|
},
|
|
7224
7224
|
security: [
|
|
7225
|
-
{
|
|
7226
|
-
{
|
|
7227
|
-
{
|
|
7225
|
+
{ client_session: [] },
|
|
7226
|
+
{ pat_with_workspace: [] },
|
|
7227
|
+
{ console_session: [] },
|
|
7228
|
+
{ api_key: [] },
|
|
7228
7229
|
],
|
|
7229
7230
|
summary: '/devices/unmanaged/get',
|
|
7230
7231
|
tags: ['/devices'],
|
|
@@ -9385,7 +9386,6 @@ export default {
|
|
|
9385
9386
|
tags: ['/thermostats'],
|
|
9386
9387
|
'x-fern-sdk-group-name': ['thermostats', 'climate_setting_schedules'],
|
|
9387
9388
|
'x-fern-sdk-method-name': 'update',
|
|
9388
|
-
'x-fern-sdk-return-value': 'climate_setting_schedule',
|
|
9389
9389
|
},
|
|
9390
9390
|
put: {
|
|
9391
9391
|
operationId: 'thermostatsClimateSettingSchedulesUpdatePut',
|
|
@@ -11617,7 +11617,7 @@ export default {
|
|
|
11617
11617
|
tags: ['/workspaces'],
|
|
11618
11618
|
'x-fern-sdk-group-name': ['workspaces'],
|
|
11619
11619
|
'x-fern-sdk-method-name': 'reset_sandbox',
|
|
11620
|
-
'x-fern-sdk-return-value': '
|
|
11620
|
+
'x-fern-sdk-return-value': 'action_attempt',
|
|
11621
11621
|
},
|
|
11622
11622
|
},
|
|
11623
11623
|
},
|