@seamapi/types 1.18.7 → 1.19.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 +82 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +152 -0
- package/dist/devicedb.d.cts +4 -1
- package/lib/seam/connect/openapi.d.ts +130 -0
- package/lib/seam/connect/openapi.js +82 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +22 -0
- package/lib/seam/devicedb/route-types.d.ts +4 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +82 -0
- package/src/lib/seam/connect/route-types.ts +22 -0
- package/src/lib/seam/devicedb/route-types.ts +6 -1
|
@@ -845,6 +845,28 @@ export interface Routes {
|
|
|
845
845
|
formData: {};
|
|
846
846
|
jsonResponse: {};
|
|
847
847
|
};
|
|
848
|
+
'/acs/users/suspend': {
|
|
849
|
+
route: '/acs/users/suspend';
|
|
850
|
+
method: 'POST';
|
|
851
|
+
queryParams: {};
|
|
852
|
+
jsonBody: {};
|
|
853
|
+
commonParams: {
|
|
854
|
+
acs_user_id: string;
|
|
855
|
+
};
|
|
856
|
+
formData: {};
|
|
857
|
+
jsonResponse: {};
|
|
858
|
+
};
|
|
859
|
+
'/acs/users/unsuspend': {
|
|
860
|
+
route: '/acs/users/unsuspend';
|
|
861
|
+
method: 'POST';
|
|
862
|
+
queryParams: {};
|
|
863
|
+
jsonBody: {};
|
|
864
|
+
commonParams: {
|
|
865
|
+
acs_user_id: string;
|
|
866
|
+
};
|
|
867
|
+
formData: {};
|
|
868
|
+
jsonResponse: {};
|
|
869
|
+
};
|
|
848
870
|
'/acs/users/update': {
|
|
849
871
|
route: '/acs/users/update';
|
|
850
872
|
method: 'POST' | 'PATCH';
|
|
@@ -91,6 +91,7 @@ export interface Routes {
|
|
|
91
91
|
queryParams: {
|
|
92
92
|
main_category?: string | undefined;
|
|
93
93
|
manufacturer_id?: string | undefined;
|
|
94
|
+
manufacturer_ids?: string[] | undefined;
|
|
94
95
|
integration_status?: ('stable' | 'beta' | 'planned' | 'unsupported' | 'inquire') | undefined;
|
|
95
96
|
text_search?: string | undefined;
|
|
96
97
|
};
|
|
@@ -201,7 +202,9 @@ export interface Routes {
|
|
|
201
202
|
'/v1/manufacturers/list': {
|
|
202
203
|
route: '/v1/manufacturers/list';
|
|
203
204
|
method: 'GET' | 'OPTIONS';
|
|
204
|
-
queryParams: {
|
|
205
|
+
queryParams: {
|
|
206
|
+
integration_status?: ('stable' | 'beta' | 'planned' | 'unsupported' | 'inquire') | undefined;
|
|
207
|
+
};
|
|
205
208
|
jsonBody: {};
|
|
206
209
|
commonParams: {};
|
|
207
210
|
formData: {};
|
package/package.json
CHANGED
|
@@ -3680,6 +3680,88 @@ export default {
|
|
|
3680
3680
|
'x-fern-sdk-method-name': 'remove_from_access_group',
|
|
3681
3681
|
},
|
|
3682
3682
|
},
|
|
3683
|
+
'/acs/users/suspend': {
|
|
3684
|
+
post: {
|
|
3685
|
+
operationId: 'acsUsersSuspendPost',
|
|
3686
|
+
requestBody: {
|
|
3687
|
+
content: {
|
|
3688
|
+
'application/json': {
|
|
3689
|
+
schema: {
|
|
3690
|
+
properties: { acs_user_id: { format: 'uuid', type: 'string' } },
|
|
3691
|
+
required: ['acs_user_id'],
|
|
3692
|
+
type: 'object',
|
|
3693
|
+
},
|
|
3694
|
+
},
|
|
3695
|
+
},
|
|
3696
|
+
},
|
|
3697
|
+
responses: {
|
|
3698
|
+
200: {
|
|
3699
|
+
content: {
|
|
3700
|
+
'application/json': {
|
|
3701
|
+
schema: {
|
|
3702
|
+
properties: { ok: { type: 'boolean' } },
|
|
3703
|
+
required: ['ok'],
|
|
3704
|
+
type: 'object',
|
|
3705
|
+
},
|
|
3706
|
+
},
|
|
3707
|
+
},
|
|
3708
|
+
description: 'OK',
|
|
3709
|
+
},
|
|
3710
|
+
400: { description: 'Bad Request' },
|
|
3711
|
+
401: { description: 'Unauthorized' },
|
|
3712
|
+
},
|
|
3713
|
+
security: [
|
|
3714
|
+
{ access_token: [], seam_workspace: [] },
|
|
3715
|
+
{ seam_client_session_token: [] },
|
|
3716
|
+
{ client_session_token: [] },
|
|
3717
|
+
],
|
|
3718
|
+
summary: '/acs/users/suspend',
|
|
3719
|
+
tags: [],
|
|
3720
|
+
'x-fern-sdk-group-name': ['acs', 'users'],
|
|
3721
|
+
'x-fern-sdk-method-name': 'suspend',
|
|
3722
|
+
},
|
|
3723
|
+
},
|
|
3724
|
+
'/acs/users/unsuspend': {
|
|
3725
|
+
post: {
|
|
3726
|
+
operationId: 'acsUsersUnsuspendPost',
|
|
3727
|
+
requestBody: {
|
|
3728
|
+
content: {
|
|
3729
|
+
'application/json': {
|
|
3730
|
+
schema: {
|
|
3731
|
+
properties: { acs_user_id: { format: 'uuid', type: 'string' } },
|
|
3732
|
+
required: ['acs_user_id'],
|
|
3733
|
+
type: 'object',
|
|
3734
|
+
},
|
|
3735
|
+
},
|
|
3736
|
+
},
|
|
3737
|
+
},
|
|
3738
|
+
responses: {
|
|
3739
|
+
200: {
|
|
3740
|
+
content: {
|
|
3741
|
+
'application/json': {
|
|
3742
|
+
schema: {
|
|
3743
|
+
properties: { ok: { type: 'boolean' } },
|
|
3744
|
+
required: ['ok'],
|
|
3745
|
+
type: 'object',
|
|
3746
|
+
},
|
|
3747
|
+
},
|
|
3748
|
+
},
|
|
3749
|
+
description: 'OK',
|
|
3750
|
+
},
|
|
3751
|
+
400: { description: 'Bad Request' },
|
|
3752
|
+
401: { description: 'Unauthorized' },
|
|
3753
|
+
},
|
|
3754
|
+
security: [
|
|
3755
|
+
{ access_token: [], seam_workspace: [] },
|
|
3756
|
+
{ seam_client_session_token: [] },
|
|
3757
|
+
{ client_session_token: [] },
|
|
3758
|
+
],
|
|
3759
|
+
summary: '/acs/users/unsuspend',
|
|
3760
|
+
tags: [],
|
|
3761
|
+
'x-fern-sdk-group-name': ['acs', 'users'],
|
|
3762
|
+
'x-fern-sdk-method-name': 'unsuspend',
|
|
3763
|
+
},
|
|
3764
|
+
},
|
|
3683
3765
|
'/acs/users/update': {
|
|
3684
3766
|
patch: {
|
|
3685
3767
|
operationId: 'acsUsersUpdatePatch',
|
|
@@ -859,6 +859,28 @@ export interface Routes {
|
|
|
859
859
|
formData: {}
|
|
860
860
|
jsonResponse: {}
|
|
861
861
|
}
|
|
862
|
+
'/acs/users/suspend': {
|
|
863
|
+
route: '/acs/users/suspend'
|
|
864
|
+
method: 'POST'
|
|
865
|
+
queryParams: {}
|
|
866
|
+
jsonBody: {}
|
|
867
|
+
commonParams: {
|
|
868
|
+
acs_user_id: string
|
|
869
|
+
}
|
|
870
|
+
formData: {}
|
|
871
|
+
jsonResponse: {}
|
|
872
|
+
}
|
|
873
|
+
'/acs/users/unsuspend': {
|
|
874
|
+
route: '/acs/users/unsuspend'
|
|
875
|
+
method: 'POST'
|
|
876
|
+
queryParams: {}
|
|
877
|
+
jsonBody: {}
|
|
878
|
+
commonParams: {
|
|
879
|
+
acs_user_id: string
|
|
880
|
+
}
|
|
881
|
+
formData: {}
|
|
882
|
+
jsonResponse: {}
|
|
883
|
+
}
|
|
862
884
|
'/acs/users/update': {
|
|
863
885
|
route: '/acs/users/update'
|
|
864
886
|
method: 'POST' | 'PATCH'
|
|
@@ -115,6 +115,7 @@ export interface Routes {
|
|
|
115
115
|
queryParams: {
|
|
116
116
|
main_category?: string | undefined
|
|
117
117
|
manufacturer_id?: string | undefined
|
|
118
|
+
manufacturer_ids?: string[] | undefined
|
|
118
119
|
integration_status?:
|
|
119
120
|
| ('stable' | 'beta' | 'planned' | 'unsupported' | 'inquire')
|
|
120
121
|
| undefined
|
|
@@ -260,7 +261,11 @@ export interface Routes {
|
|
|
260
261
|
'/v1/manufacturers/list': {
|
|
261
262
|
route: '/v1/manufacturers/list'
|
|
262
263
|
method: 'GET' | 'OPTIONS'
|
|
263
|
-
queryParams: {
|
|
264
|
+
queryParams: {
|
|
265
|
+
integration_status?:
|
|
266
|
+
| ('stable' | 'beta' | 'planned' | 'unsupported' | 'inquire')
|
|
267
|
+
| undefined
|
|
268
|
+
}
|
|
264
269
|
jsonBody: {}
|
|
265
270
|
commonParams: {}
|
|
266
271
|
formData: {}
|