system-initiative-api-client 1.3.3 → 1.5.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/cjs/api.d.ts +1385 -56
- package/dist/cjs/api.js +1133 -21
- package/dist/esm/api.d.ts +1385 -56
- package/dist/esm/api.js +1128 -20
- package/package.json +1 -1
package/dist/cjs/api.d.ts
CHANGED
|
@@ -145,6 +145,25 @@ export interface AddActionV1Response {
|
|
|
145
145
|
*/
|
|
146
146
|
'success': boolean;
|
|
147
147
|
}
|
|
148
|
+
/**
|
|
149
|
+
*
|
|
150
|
+
* @export
|
|
151
|
+
* @interface AddToViewV1Request
|
|
152
|
+
*/
|
|
153
|
+
export interface AddToViewV1Request {
|
|
154
|
+
/**
|
|
155
|
+
*
|
|
156
|
+
* @type {Array<string>}
|
|
157
|
+
* @memberof AddToViewV1Request
|
|
158
|
+
*/
|
|
159
|
+
'componentIds': Array<string>;
|
|
160
|
+
/**
|
|
161
|
+
*
|
|
162
|
+
* @type {string}
|
|
163
|
+
* @memberof AddToViewV1Request
|
|
164
|
+
*/
|
|
165
|
+
'viewName': string;
|
|
166
|
+
}
|
|
148
167
|
/**
|
|
149
168
|
* Standard error response format for v1 API
|
|
150
169
|
* @export
|
|
@@ -583,6 +602,12 @@ export interface CreateComponentV1Request {
|
|
|
583
602
|
* @memberof CreateComponentV1Request
|
|
584
603
|
*/
|
|
585
604
|
'schemaName': string;
|
|
605
|
+
/**
|
|
606
|
+
*
|
|
607
|
+
* @type {boolean}
|
|
608
|
+
* @memberof CreateComponentV1Request
|
|
609
|
+
*/
|
|
610
|
+
'useWorkingCopy'?: boolean | null;
|
|
586
611
|
/**
|
|
587
612
|
*
|
|
588
613
|
* @type {string}
|
|
@@ -918,6 +943,56 @@ export interface CreateVariantQualificationFuncV1Response {
|
|
|
918
943
|
*/
|
|
919
944
|
'funcId': string;
|
|
920
945
|
}
|
|
946
|
+
/**
|
|
947
|
+
*
|
|
948
|
+
* @export
|
|
949
|
+
* @interface CreateWorkspaceRequest
|
|
950
|
+
*/
|
|
951
|
+
export interface CreateWorkspaceRequest {
|
|
952
|
+
/**
|
|
953
|
+
*
|
|
954
|
+
* @type {string}
|
|
955
|
+
* @memberof CreateWorkspaceRequest
|
|
956
|
+
*/
|
|
957
|
+
'description': string;
|
|
958
|
+
/**
|
|
959
|
+
*
|
|
960
|
+
* @type {string}
|
|
961
|
+
* @memberof CreateWorkspaceRequest
|
|
962
|
+
*/
|
|
963
|
+
'displayName': string;
|
|
964
|
+
/**
|
|
965
|
+
*
|
|
966
|
+
* @type {string}
|
|
967
|
+
* @memberof CreateWorkspaceRequest
|
|
968
|
+
*/
|
|
969
|
+
'instanceUrl': string;
|
|
970
|
+
/**
|
|
971
|
+
*
|
|
972
|
+
* @type {boolean}
|
|
973
|
+
* @memberof CreateWorkspaceRequest
|
|
974
|
+
*/
|
|
975
|
+
'isDefault'?: boolean;
|
|
976
|
+
}
|
|
977
|
+
/**
|
|
978
|
+
*
|
|
979
|
+
* @export
|
|
980
|
+
* @interface CreatorUser
|
|
981
|
+
*/
|
|
982
|
+
export interface CreatorUser {
|
|
983
|
+
/**
|
|
984
|
+
*
|
|
985
|
+
* @type {string}
|
|
986
|
+
* @memberof CreatorUser
|
|
987
|
+
*/
|
|
988
|
+
'firstName'?: string | null;
|
|
989
|
+
/**
|
|
990
|
+
*
|
|
991
|
+
* @type {string}
|
|
992
|
+
* @memberof CreatorUser
|
|
993
|
+
*/
|
|
994
|
+
'lastName'?: string | null;
|
|
995
|
+
}
|
|
921
996
|
/**
|
|
922
997
|
*
|
|
923
998
|
* @export
|
|
@@ -957,6 +1032,19 @@ export interface DeleteSecretV1Response {
|
|
|
957
1032
|
*/
|
|
958
1033
|
'success': boolean;
|
|
959
1034
|
}
|
|
1035
|
+
/**
|
|
1036
|
+
*
|
|
1037
|
+
* @export
|
|
1038
|
+
* @interface DetachFuncBindingV1Response
|
|
1039
|
+
*/
|
|
1040
|
+
export interface DetachFuncBindingV1Response {
|
|
1041
|
+
/**
|
|
1042
|
+
*
|
|
1043
|
+
* @type {boolean}
|
|
1044
|
+
* @memberof DetachFuncBindingV1Response
|
|
1045
|
+
*/
|
|
1046
|
+
'success': boolean;
|
|
1047
|
+
}
|
|
960
1048
|
/**
|
|
961
1049
|
*
|
|
962
1050
|
* @export
|
|
@@ -1759,6 +1847,19 @@ export interface HashMapValue {
|
|
|
1759
1847
|
*/
|
|
1760
1848
|
'secrets': Array<SecretV1>;
|
|
1761
1849
|
}
|
|
1850
|
+
/**
|
|
1851
|
+
*
|
|
1852
|
+
* @export
|
|
1853
|
+
* @interface InviteMemberRequest
|
|
1854
|
+
*/
|
|
1855
|
+
export interface InviteMemberRequest {
|
|
1856
|
+
/**
|
|
1857
|
+
*
|
|
1858
|
+
* @type {string}
|
|
1859
|
+
* @memberof InviteMemberRequest
|
|
1860
|
+
*/
|
|
1861
|
+
'email': string;
|
|
1862
|
+
}
|
|
1762
1863
|
/**
|
|
1763
1864
|
*
|
|
1764
1865
|
* @export
|
|
@@ -1919,6 +2020,43 @@ export interface ManagingConnectionViewV1 {
|
|
|
1919
2020
|
*/
|
|
1920
2021
|
'componentName': string;
|
|
1921
2022
|
}
|
|
2023
|
+
/**
|
|
2024
|
+
*
|
|
2025
|
+
* @export
|
|
2026
|
+
* @interface Member
|
|
2027
|
+
*/
|
|
2028
|
+
export interface Member {
|
|
2029
|
+
/**
|
|
2030
|
+
*
|
|
2031
|
+
* @type {string}
|
|
2032
|
+
* @memberof Member
|
|
2033
|
+
*/
|
|
2034
|
+
'email': string;
|
|
2035
|
+
/**
|
|
2036
|
+
*
|
|
2037
|
+
* @type {string}
|
|
2038
|
+
* @memberof Member
|
|
2039
|
+
*/
|
|
2040
|
+
'nickname': string;
|
|
2041
|
+
/**
|
|
2042
|
+
*
|
|
2043
|
+
* @type {string}
|
|
2044
|
+
* @memberof Member
|
|
2045
|
+
*/
|
|
2046
|
+
'role': string;
|
|
2047
|
+
/**
|
|
2048
|
+
*
|
|
2049
|
+
* @type {string}
|
|
2050
|
+
* @memberof Member
|
|
2051
|
+
*/
|
|
2052
|
+
'signupAt'?: string | null;
|
|
2053
|
+
/**
|
|
2054
|
+
*
|
|
2055
|
+
* @type {string}
|
|
2056
|
+
* @memberof Member
|
|
2057
|
+
*/
|
|
2058
|
+
'userId': string;
|
|
2059
|
+
}
|
|
1922
2060
|
/**
|
|
1923
2061
|
* Response for merge status
|
|
1924
2062
|
* @export
|
|
@@ -2124,6 +2262,19 @@ export interface PutOnHoldActionV1Response {
|
|
|
2124
2262
|
*/
|
|
2125
2263
|
'success': boolean;
|
|
2126
2264
|
}
|
|
2265
|
+
/**
|
|
2266
|
+
*
|
|
2267
|
+
* @export
|
|
2268
|
+
* @interface RemoveMemberRequest
|
|
2269
|
+
*/
|
|
2270
|
+
export interface RemoveMemberRequest {
|
|
2271
|
+
/**
|
|
2272
|
+
*
|
|
2273
|
+
* @type {string}
|
|
2274
|
+
* @memberof RemoveMemberRequest
|
|
2275
|
+
*/
|
|
2276
|
+
'email': string;
|
|
2277
|
+
}
|
|
2127
2278
|
/**
|
|
2128
2279
|
*
|
|
2129
2280
|
* @export
|
|
@@ -2667,6 +2818,25 @@ export interface UpdateFuncV1Response {
|
|
|
2667
2818
|
*/
|
|
2668
2819
|
'success': boolean;
|
|
2669
2820
|
}
|
|
2821
|
+
/**
|
|
2822
|
+
*
|
|
2823
|
+
* @export
|
|
2824
|
+
* @interface UpdateMemberRoleRequest
|
|
2825
|
+
*/
|
|
2826
|
+
export interface UpdateMemberRoleRequest {
|
|
2827
|
+
/**
|
|
2828
|
+
*
|
|
2829
|
+
* @type {string}
|
|
2830
|
+
* @memberof UpdateMemberRoleRequest
|
|
2831
|
+
*/
|
|
2832
|
+
'role': string;
|
|
2833
|
+
/**
|
|
2834
|
+
*
|
|
2835
|
+
* @type {string}
|
|
2836
|
+
* @memberof UpdateMemberRoleRequest
|
|
2837
|
+
*/
|
|
2838
|
+
'userId': string;
|
|
2839
|
+
}
|
|
2670
2840
|
/**
|
|
2671
2841
|
*
|
|
2672
2842
|
* @export
|
|
@@ -2756,6 +2926,31 @@ export interface UpdateSecretV1Response {
|
|
|
2756
2926
|
*/
|
|
2757
2927
|
'secret': SecretV1;
|
|
2758
2928
|
}
|
|
2929
|
+
/**
|
|
2930
|
+
*
|
|
2931
|
+
* @export
|
|
2932
|
+
* @interface UpdateWorkspaceRequest
|
|
2933
|
+
*/
|
|
2934
|
+
export interface UpdateWorkspaceRequest {
|
|
2935
|
+
/**
|
|
2936
|
+
*
|
|
2937
|
+
* @type {string}
|
|
2938
|
+
* @memberof UpdateWorkspaceRequest
|
|
2939
|
+
*/
|
|
2940
|
+
'description'?: string | null;
|
|
2941
|
+
/**
|
|
2942
|
+
*
|
|
2943
|
+
* @type {string}
|
|
2944
|
+
* @memberof UpdateWorkspaceRequest
|
|
2945
|
+
*/
|
|
2946
|
+
'displayName'?: string | null;
|
|
2947
|
+
/**
|
|
2948
|
+
*
|
|
2949
|
+
* @type {string}
|
|
2950
|
+
* @memberof UpdateWorkspaceRequest
|
|
2951
|
+
*/
|
|
2952
|
+
'instanceUrl'?: string | null;
|
|
2953
|
+
}
|
|
2759
2954
|
/**
|
|
2760
2955
|
*
|
|
2761
2956
|
* @export
|
|
@@ -2825,6 +3020,92 @@ export interface WhoamiResponse {
|
|
|
2825
3020
|
*/
|
|
2826
3021
|
'workspaceId': string;
|
|
2827
3022
|
}
|
|
3023
|
+
/**
|
|
3024
|
+
*
|
|
3025
|
+
* @export
|
|
3026
|
+
* @interface Workspace
|
|
3027
|
+
*/
|
|
3028
|
+
export interface Workspace {
|
|
3029
|
+
/**
|
|
3030
|
+
*
|
|
3031
|
+
* @type {boolean}
|
|
3032
|
+
* @memberof Workspace
|
|
3033
|
+
*/
|
|
3034
|
+
'approvalsEnabled': boolean;
|
|
3035
|
+
/**
|
|
3036
|
+
*
|
|
3037
|
+
* @type {CreatorUser}
|
|
3038
|
+
* @memberof Workspace
|
|
3039
|
+
*/
|
|
3040
|
+
'creatorUser'?: CreatorUser | null;
|
|
3041
|
+
/**
|
|
3042
|
+
*
|
|
3043
|
+
* @type {string}
|
|
3044
|
+
* @memberof Workspace
|
|
3045
|
+
*/
|
|
3046
|
+
'creatorUserId': string;
|
|
3047
|
+
/**
|
|
3048
|
+
*
|
|
3049
|
+
* @type {string}
|
|
3050
|
+
* @memberof Workspace
|
|
3051
|
+
*/
|
|
3052
|
+
'description'?: string | null;
|
|
3053
|
+
/**
|
|
3054
|
+
*
|
|
3055
|
+
* @type {string}
|
|
3056
|
+
* @memberof Workspace
|
|
3057
|
+
*/
|
|
3058
|
+
'displayName': string;
|
|
3059
|
+
/**
|
|
3060
|
+
*
|
|
3061
|
+
* @type {string}
|
|
3062
|
+
* @memberof Workspace
|
|
3063
|
+
*/
|
|
3064
|
+
'id': string;
|
|
3065
|
+
/**
|
|
3066
|
+
*
|
|
3067
|
+
* @type {string}
|
|
3068
|
+
* @memberof Workspace
|
|
3069
|
+
*/
|
|
3070
|
+
'instanceEnvType': string;
|
|
3071
|
+
/**
|
|
3072
|
+
*
|
|
3073
|
+
* @type {string}
|
|
3074
|
+
* @memberof Workspace
|
|
3075
|
+
*/
|
|
3076
|
+
'instanceUrl'?: string | null;
|
|
3077
|
+
/**
|
|
3078
|
+
*
|
|
3079
|
+
* @type {boolean}
|
|
3080
|
+
* @memberof Workspace
|
|
3081
|
+
*/
|
|
3082
|
+
'isDefault': boolean;
|
|
3083
|
+
/**
|
|
3084
|
+
*
|
|
3085
|
+
* @type {string}
|
|
3086
|
+
* @memberof Workspace
|
|
3087
|
+
*/
|
|
3088
|
+
'quarantinedAt'?: string | null;
|
|
3089
|
+
/**
|
|
3090
|
+
*
|
|
3091
|
+
* @type {string}
|
|
3092
|
+
* @memberof Workspace
|
|
3093
|
+
*/
|
|
3094
|
+
'role'?: string | null;
|
|
3095
|
+
}
|
|
3096
|
+
/**
|
|
3097
|
+
*
|
|
3098
|
+
* @export
|
|
3099
|
+
* @interface WorkspaceManagementRequestPath
|
|
3100
|
+
*/
|
|
3101
|
+
export interface WorkspaceManagementRequestPath {
|
|
3102
|
+
/**
|
|
3103
|
+
*
|
|
3104
|
+
* @type {string}
|
|
3105
|
+
* @memberof WorkspaceManagementRequestPath
|
|
3106
|
+
*/
|
|
3107
|
+
'workspace_id': string;
|
|
3108
|
+
}
|
|
2828
3109
|
/**
|
|
2829
3110
|
* ActionsApi - axios parameter creator
|
|
2830
3111
|
* @export
|
|
@@ -3671,6 +3952,16 @@ export declare const ComponentsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
3671
3952
|
* @throws {RequiredError}
|
|
3672
3953
|
*/
|
|
3673
3954
|
addAction: (workspaceId: string, changeSetId: string, componentId: string, addActionV1Request: AddActionV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3955
|
+
/**
|
|
3956
|
+
* Adds multiple components to a view by name. If the view doesn\'t exist, it will be created automatically.
|
|
3957
|
+
* @summary Add components to a view
|
|
3958
|
+
* @param {string} workspaceId Workspace identifier
|
|
3959
|
+
* @param {string} changeSetId Change Set identifier
|
|
3960
|
+
* @param {AddToViewV1Request} addToViewV1Request
|
|
3961
|
+
* @param {*} [options] Override http request option.
|
|
3962
|
+
* @throws {RequiredError}
|
|
3963
|
+
*/
|
|
3964
|
+
addToView: (workspaceId: string, changeSetId: string, addToViewV1Request: AddToViewV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3674
3965
|
/**
|
|
3675
3966
|
*
|
|
3676
3967
|
* @summary Create a component
|
|
@@ -3834,6 +4125,16 @@ export declare const ComponentsApiFp: (configuration?: Configuration) => {
|
|
|
3834
4125
|
* @throws {RequiredError}
|
|
3835
4126
|
*/
|
|
3836
4127
|
addAction(workspaceId: string, changeSetId: string, componentId: string, addActionV1Request: AddActionV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AddActionV1Response>>;
|
|
4128
|
+
/**
|
|
4129
|
+
* Adds multiple components to a view by name. If the view doesn\'t exist, it will be created automatically.
|
|
4130
|
+
* @summary Add components to a view
|
|
4131
|
+
* @param {string} workspaceId Workspace identifier
|
|
4132
|
+
* @param {string} changeSetId Change Set identifier
|
|
4133
|
+
* @param {AddToViewV1Request} addToViewV1Request
|
|
4134
|
+
* @param {*} [options] Override http request option.
|
|
4135
|
+
* @throws {RequiredError}
|
|
4136
|
+
*/
|
|
4137
|
+
addToView(workspaceId: string, changeSetId: string, addToViewV1Request: AddToViewV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
3837
4138
|
/**
|
|
3838
4139
|
*
|
|
3839
4140
|
* @summary Create a component
|
|
@@ -3994,6 +4295,14 @@ export declare const ComponentsApiFactory: (configuration?: Configuration, baseP
|
|
|
3994
4295
|
* @throws {RequiredError}
|
|
3995
4296
|
*/
|
|
3996
4297
|
addAction(requestParameters: ComponentsApiAddActionRequest, options?: RawAxiosRequestConfig): AxiosPromise<AddActionV1Response>;
|
|
4298
|
+
/**
|
|
4299
|
+
* Adds multiple components to a view by name. If the view doesn\'t exist, it will be created automatically.
|
|
4300
|
+
* @summary Add components to a view
|
|
4301
|
+
* @param {ComponentsApiAddToViewRequest} requestParameters Request parameters.
|
|
4302
|
+
* @param {*} [options] Override http request option.
|
|
4303
|
+
* @throws {RequiredError}
|
|
4304
|
+
*/
|
|
4305
|
+
addToView(requestParameters: ComponentsApiAddToViewRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
3997
4306
|
/**
|
|
3998
4307
|
*
|
|
3999
4308
|
* @summary Create a component
|
|
@@ -4122,6 +4431,15 @@ export interface ComponentsApiInterface {
|
|
|
4122
4431
|
* @memberof ComponentsApiInterface
|
|
4123
4432
|
*/
|
|
4124
4433
|
addAction(requestParameters: ComponentsApiAddActionRequest, options?: RawAxiosRequestConfig): AxiosPromise<AddActionV1Response>;
|
|
4434
|
+
/**
|
|
4435
|
+
* Adds multiple components to a view by name. If the view doesn\'t exist, it will be created automatically.
|
|
4436
|
+
* @summary Add components to a view
|
|
4437
|
+
* @param {ComponentsApiAddToViewRequest} requestParameters Request parameters.
|
|
4438
|
+
* @param {*} [options] Override http request option.
|
|
4439
|
+
* @throws {RequiredError}
|
|
4440
|
+
* @memberof ComponentsApiInterface
|
|
4441
|
+
*/
|
|
4442
|
+
addToView(requestParameters: ComponentsApiAddToViewRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
4125
4443
|
/**
|
|
4126
4444
|
*
|
|
4127
4445
|
* @summary Create a component
|
|
@@ -4280,6 +4598,31 @@ export interface ComponentsApiAddActionRequest {
|
|
|
4280
4598
|
*/
|
|
4281
4599
|
readonly addActionV1Request: AddActionV1Request;
|
|
4282
4600
|
}
|
|
4601
|
+
/**
|
|
4602
|
+
* Request parameters for addToView operation in ComponentsApi.
|
|
4603
|
+
* @export
|
|
4604
|
+
* @interface ComponentsApiAddToViewRequest
|
|
4605
|
+
*/
|
|
4606
|
+
export interface ComponentsApiAddToViewRequest {
|
|
4607
|
+
/**
|
|
4608
|
+
* Workspace identifier
|
|
4609
|
+
* @type {string}
|
|
4610
|
+
* @memberof ComponentsApiAddToView
|
|
4611
|
+
*/
|
|
4612
|
+
readonly workspaceId: string;
|
|
4613
|
+
/**
|
|
4614
|
+
* Change Set identifier
|
|
4615
|
+
* @type {string}
|
|
4616
|
+
* @memberof ComponentsApiAddToView
|
|
4617
|
+
*/
|
|
4618
|
+
readonly changeSetId: string;
|
|
4619
|
+
/**
|
|
4620
|
+
*
|
|
4621
|
+
* @type {AddToViewV1Request}
|
|
4622
|
+
* @memberof ComponentsApiAddToView
|
|
4623
|
+
*/
|
|
4624
|
+
readonly addToViewV1Request: AddToViewV1Request;
|
|
4625
|
+
}
|
|
4283
4626
|
/**
|
|
4284
4627
|
* Request parameters for createComponent operation in ComponentsApi.
|
|
4285
4628
|
* @export
|
|
@@ -4682,6 +5025,15 @@ export declare class ComponentsApi extends BaseAPI implements ComponentsApiInter
|
|
|
4682
5025
|
* @memberof ComponentsApi
|
|
4683
5026
|
*/
|
|
4684
5027
|
addAction(requestParameters: ComponentsApiAddActionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AddActionV1Response, any, {}>>;
|
|
5028
|
+
/**
|
|
5029
|
+
* Adds multiple components to a view by name. If the view doesn\'t exist, it will be created automatically.
|
|
5030
|
+
* @summary Add components to a view
|
|
5031
|
+
* @param {ComponentsApiAddToViewRequest} requestParameters Request parameters.
|
|
5032
|
+
* @param {*} [options] Override http request option.
|
|
5033
|
+
* @throws {RequiredError}
|
|
5034
|
+
* @memberof ComponentsApi
|
|
5035
|
+
*/
|
|
5036
|
+
addToView(requestParameters: ComponentsApiAddToViewRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
4685
5037
|
/**
|
|
4686
5038
|
*
|
|
4687
5039
|
* @summary Create a component
|
|
@@ -5388,25 +5740,85 @@ export declare const SchemasApiAxiosParamCreator: (configuration?: Configuration
|
|
|
5388
5740
|
createVariantQualification: (workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, createVariantQualificationFuncV1Request: CreateVariantQualificationFuncV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5389
5741
|
/**
|
|
5390
5742
|
*
|
|
5391
|
-
* @summary
|
|
5743
|
+
* @summary Delete the binding between an action func and the schema variant
|
|
5392
5744
|
* @param {string} workspaceId Workspace identifier
|
|
5393
5745
|
* @param {string} changeSetId Change Set identifier
|
|
5394
|
-
* @param {string
|
|
5395
|
-
* @param {string
|
|
5746
|
+
* @param {string} schemaId Schema identifier
|
|
5747
|
+
* @param {string} schemaVariantId Schema variant identifier
|
|
5748
|
+
* @param {string} funcId Func identifier
|
|
5396
5749
|
* @param {*} [options] Override http request option.
|
|
5397
5750
|
* @throws {RequiredError}
|
|
5398
5751
|
*/
|
|
5399
|
-
|
|
5752
|
+
detachActionFuncBinding: (workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, funcId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5400
5753
|
/**
|
|
5401
5754
|
*
|
|
5402
|
-
* @summary
|
|
5755
|
+
* @summary Delete the binding between an authentication func and the schema variant
|
|
5403
5756
|
* @param {string} workspaceId Workspace identifier
|
|
5404
5757
|
* @param {string} changeSetId Change Set identifier
|
|
5405
5758
|
* @param {string} schemaId Schema identifier
|
|
5759
|
+
* @param {string} schemaVariantId Schema variant identifier
|
|
5760
|
+
* @param {string} funcId Func identifier
|
|
5406
5761
|
* @param {*} [options] Override http request option.
|
|
5407
5762
|
* @throws {RequiredError}
|
|
5408
5763
|
*/
|
|
5409
|
-
|
|
5764
|
+
detachAuthenticationFuncBinding: (workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, funcId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5765
|
+
/**
|
|
5766
|
+
*
|
|
5767
|
+
* @summary Delete the binding between a codegen func and the schema variant
|
|
5768
|
+
* @param {string} workspaceId Workspace identifier
|
|
5769
|
+
* @param {string} changeSetId Change Set identifier
|
|
5770
|
+
* @param {string} schemaId Schema identifier
|
|
5771
|
+
* @param {string} schemaVariantId Schema variant identifier
|
|
5772
|
+
* @param {string} funcId Func identifier
|
|
5773
|
+
* @param {*} [options] Override http request option.
|
|
5774
|
+
* @throws {RequiredError}
|
|
5775
|
+
*/
|
|
5776
|
+
detachCodegenFuncBinding: (workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, funcId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5777
|
+
/**
|
|
5778
|
+
*
|
|
5779
|
+
* @summary Delete the binding between a management func and the schema variant
|
|
5780
|
+
* @param {string} workspaceId Workspace identifier
|
|
5781
|
+
* @param {string} changeSetId Change Set identifier
|
|
5782
|
+
* @param {string} schemaId Schema identifier
|
|
5783
|
+
* @param {string} schemaVariantId Schema variant identifier
|
|
5784
|
+
* @param {string} funcId Func identifier
|
|
5785
|
+
* @param {*} [options] Override http request option.
|
|
5786
|
+
* @throws {RequiredError}
|
|
5787
|
+
*/
|
|
5788
|
+
detachManagementFuncBinding: (workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, funcId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5789
|
+
/**
|
|
5790
|
+
*
|
|
5791
|
+
* @summary Delete the binding between a qualification func and the schema variant
|
|
5792
|
+
* @param {string} workspaceId Workspace identifier
|
|
5793
|
+
* @param {string} changeSetId Change Set identifier
|
|
5794
|
+
* @param {string} schemaId Schema identifier
|
|
5795
|
+
* @param {string} schemaVariantId Schema variant identifier
|
|
5796
|
+
* @param {string} funcId Func identifier
|
|
5797
|
+
* @param {*} [options] Override http request option.
|
|
5798
|
+
* @throws {RequiredError}
|
|
5799
|
+
*/
|
|
5800
|
+
detachQualificationFuncBinding: (workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, funcId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5801
|
+
/**
|
|
5802
|
+
*
|
|
5803
|
+
* @summary Find schema by name or schema id
|
|
5804
|
+
* @param {string} workspaceId Workspace identifier
|
|
5805
|
+
* @param {string} changeSetId Change Set identifier
|
|
5806
|
+
* @param {string | null} [schema]
|
|
5807
|
+
* @param {string | null} [schemaId]
|
|
5808
|
+
* @param {*} [options] Override http request option.
|
|
5809
|
+
* @throws {RequiredError}
|
|
5810
|
+
*/
|
|
5811
|
+
findSchema: (workspaceId: string, changeSetId: string, schema?: string | null, schemaId?: string | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5812
|
+
/**
|
|
5813
|
+
*
|
|
5814
|
+
* @summary Get the default variant for a schema id
|
|
5815
|
+
* @param {string} workspaceId Workspace identifier
|
|
5816
|
+
* @param {string} changeSetId Change Set identifier
|
|
5817
|
+
* @param {string} schemaId Schema identifier
|
|
5818
|
+
* @param {*} [options] Override http request option.
|
|
5819
|
+
* @throws {RequiredError}
|
|
5820
|
+
*/
|
|
5821
|
+
getDefaultVariant: (workspaceId: string, changeSetId: string, schemaId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5410
5822
|
/**
|
|
5411
5823
|
*
|
|
5412
5824
|
* @summary Get a schema by schema id
|
|
@@ -5547,6 +5959,66 @@ export declare const SchemasApiFp: (configuration?: Configuration) => {
|
|
|
5547
5959
|
* @throws {RequiredError}
|
|
5548
5960
|
*/
|
|
5549
5961
|
createVariantQualification(workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, createVariantQualificationFuncV1Request: CreateVariantQualificationFuncV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateVariantQualificationFuncV1Response>>;
|
|
5962
|
+
/**
|
|
5963
|
+
*
|
|
5964
|
+
* @summary Delete the binding between an action func and the schema variant
|
|
5965
|
+
* @param {string} workspaceId Workspace identifier
|
|
5966
|
+
* @param {string} changeSetId Change Set identifier
|
|
5967
|
+
* @param {string} schemaId Schema identifier
|
|
5968
|
+
* @param {string} schemaVariantId Schema variant identifier
|
|
5969
|
+
* @param {string} funcId Func identifier
|
|
5970
|
+
* @param {*} [options] Override http request option.
|
|
5971
|
+
* @throws {RequiredError}
|
|
5972
|
+
*/
|
|
5973
|
+
detachActionFuncBinding(workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, funcId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DetachFuncBindingV1Response>>;
|
|
5974
|
+
/**
|
|
5975
|
+
*
|
|
5976
|
+
* @summary Delete the binding between an authentication func and the schema variant
|
|
5977
|
+
* @param {string} workspaceId Workspace identifier
|
|
5978
|
+
* @param {string} changeSetId Change Set identifier
|
|
5979
|
+
* @param {string} schemaId Schema identifier
|
|
5980
|
+
* @param {string} schemaVariantId Schema variant identifier
|
|
5981
|
+
* @param {string} funcId Func identifier
|
|
5982
|
+
* @param {*} [options] Override http request option.
|
|
5983
|
+
* @throws {RequiredError}
|
|
5984
|
+
*/
|
|
5985
|
+
detachAuthenticationFuncBinding(workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, funcId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DetachFuncBindingV1Response>>;
|
|
5986
|
+
/**
|
|
5987
|
+
*
|
|
5988
|
+
* @summary Delete the binding between a codegen func and the schema variant
|
|
5989
|
+
* @param {string} workspaceId Workspace identifier
|
|
5990
|
+
* @param {string} changeSetId Change Set identifier
|
|
5991
|
+
* @param {string} schemaId Schema identifier
|
|
5992
|
+
* @param {string} schemaVariantId Schema variant identifier
|
|
5993
|
+
* @param {string} funcId Func identifier
|
|
5994
|
+
* @param {*} [options] Override http request option.
|
|
5995
|
+
* @throws {RequiredError}
|
|
5996
|
+
*/
|
|
5997
|
+
detachCodegenFuncBinding(workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, funcId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DetachFuncBindingV1Response>>;
|
|
5998
|
+
/**
|
|
5999
|
+
*
|
|
6000
|
+
* @summary Delete the binding between a management func and the schema variant
|
|
6001
|
+
* @param {string} workspaceId Workspace identifier
|
|
6002
|
+
* @param {string} changeSetId Change Set identifier
|
|
6003
|
+
* @param {string} schemaId Schema identifier
|
|
6004
|
+
* @param {string} schemaVariantId Schema variant identifier
|
|
6005
|
+
* @param {string} funcId Func identifier
|
|
6006
|
+
* @param {*} [options] Override http request option.
|
|
6007
|
+
* @throws {RequiredError}
|
|
6008
|
+
*/
|
|
6009
|
+
detachManagementFuncBinding(workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, funcId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DetachFuncBindingV1Response>>;
|
|
6010
|
+
/**
|
|
6011
|
+
*
|
|
6012
|
+
* @summary Delete the binding between a qualification func and the schema variant
|
|
6013
|
+
* @param {string} workspaceId Workspace identifier
|
|
6014
|
+
* @param {string} changeSetId Change Set identifier
|
|
6015
|
+
* @param {string} schemaId Schema identifier
|
|
6016
|
+
* @param {string} schemaVariantId Schema variant identifier
|
|
6017
|
+
* @param {string} funcId Func identifier
|
|
6018
|
+
* @param {*} [options] Override http request option.
|
|
6019
|
+
* @throws {RequiredError}
|
|
6020
|
+
*/
|
|
6021
|
+
detachQualificationFuncBinding(workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, funcId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DetachFuncBindingV1Response>>;
|
|
5550
6022
|
/**
|
|
5551
6023
|
*
|
|
5552
6024
|
* @summary Find schema by name or schema id
|
|
@@ -5686,6 +6158,46 @@ export declare const SchemasApiFactory: (configuration?: Configuration, basePath
|
|
|
5686
6158
|
* @throws {RequiredError}
|
|
5687
6159
|
*/
|
|
5688
6160
|
createVariantQualification(requestParameters: SchemasApiCreateVariantQualificationRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateVariantQualificationFuncV1Response>;
|
|
6161
|
+
/**
|
|
6162
|
+
*
|
|
6163
|
+
* @summary Delete the binding between an action func and the schema variant
|
|
6164
|
+
* @param {SchemasApiDetachActionFuncBindingRequest} requestParameters Request parameters.
|
|
6165
|
+
* @param {*} [options] Override http request option.
|
|
6166
|
+
* @throws {RequiredError}
|
|
6167
|
+
*/
|
|
6168
|
+
detachActionFuncBinding(requestParameters: SchemasApiDetachActionFuncBindingRequest, options?: RawAxiosRequestConfig): AxiosPromise<DetachFuncBindingV1Response>;
|
|
6169
|
+
/**
|
|
6170
|
+
*
|
|
6171
|
+
* @summary Delete the binding between an authentication func and the schema variant
|
|
6172
|
+
* @param {SchemasApiDetachAuthenticationFuncBindingRequest} requestParameters Request parameters.
|
|
6173
|
+
* @param {*} [options] Override http request option.
|
|
6174
|
+
* @throws {RequiredError}
|
|
6175
|
+
*/
|
|
6176
|
+
detachAuthenticationFuncBinding(requestParameters: SchemasApiDetachAuthenticationFuncBindingRequest, options?: RawAxiosRequestConfig): AxiosPromise<DetachFuncBindingV1Response>;
|
|
6177
|
+
/**
|
|
6178
|
+
*
|
|
6179
|
+
* @summary Delete the binding between a codegen func and the schema variant
|
|
6180
|
+
* @param {SchemasApiDetachCodegenFuncBindingRequest} requestParameters Request parameters.
|
|
6181
|
+
* @param {*} [options] Override http request option.
|
|
6182
|
+
* @throws {RequiredError}
|
|
6183
|
+
*/
|
|
6184
|
+
detachCodegenFuncBinding(requestParameters: SchemasApiDetachCodegenFuncBindingRequest, options?: RawAxiosRequestConfig): AxiosPromise<DetachFuncBindingV1Response>;
|
|
6185
|
+
/**
|
|
6186
|
+
*
|
|
6187
|
+
* @summary Delete the binding between a management func and the schema variant
|
|
6188
|
+
* @param {SchemasApiDetachManagementFuncBindingRequest} requestParameters Request parameters.
|
|
6189
|
+
* @param {*} [options] Override http request option.
|
|
6190
|
+
* @throws {RequiredError}
|
|
6191
|
+
*/
|
|
6192
|
+
detachManagementFuncBinding(requestParameters: SchemasApiDetachManagementFuncBindingRequest, options?: RawAxiosRequestConfig): AxiosPromise<DetachFuncBindingV1Response>;
|
|
6193
|
+
/**
|
|
6194
|
+
*
|
|
6195
|
+
* @summary Delete the binding between a qualification func and the schema variant
|
|
6196
|
+
* @param {SchemasApiDetachQualificationFuncBindingRequest} requestParameters Request parameters.
|
|
6197
|
+
* @param {*} [options] Override http request option.
|
|
6198
|
+
* @throws {RequiredError}
|
|
6199
|
+
*/
|
|
6200
|
+
detachQualificationFuncBinding(requestParameters: SchemasApiDetachQualificationFuncBindingRequest, options?: RawAxiosRequestConfig): AxiosPromise<DetachFuncBindingV1Response>;
|
|
5689
6201
|
/**
|
|
5690
6202
|
*
|
|
5691
6203
|
* @summary Find schema by name or schema id
|
|
@@ -5811,6 +6323,51 @@ export interface SchemasApiInterface {
|
|
|
5811
6323
|
* @memberof SchemasApiInterface
|
|
5812
6324
|
*/
|
|
5813
6325
|
createVariantQualification(requestParameters: SchemasApiCreateVariantQualificationRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateVariantQualificationFuncV1Response>;
|
|
6326
|
+
/**
|
|
6327
|
+
*
|
|
6328
|
+
* @summary Delete the binding between an action func and the schema variant
|
|
6329
|
+
* @param {SchemasApiDetachActionFuncBindingRequest} requestParameters Request parameters.
|
|
6330
|
+
* @param {*} [options] Override http request option.
|
|
6331
|
+
* @throws {RequiredError}
|
|
6332
|
+
* @memberof SchemasApiInterface
|
|
6333
|
+
*/
|
|
6334
|
+
detachActionFuncBinding(requestParameters: SchemasApiDetachActionFuncBindingRequest, options?: RawAxiosRequestConfig): AxiosPromise<DetachFuncBindingV1Response>;
|
|
6335
|
+
/**
|
|
6336
|
+
*
|
|
6337
|
+
* @summary Delete the binding between an authentication func and the schema variant
|
|
6338
|
+
* @param {SchemasApiDetachAuthenticationFuncBindingRequest} requestParameters Request parameters.
|
|
6339
|
+
* @param {*} [options] Override http request option.
|
|
6340
|
+
* @throws {RequiredError}
|
|
6341
|
+
* @memberof SchemasApiInterface
|
|
6342
|
+
*/
|
|
6343
|
+
detachAuthenticationFuncBinding(requestParameters: SchemasApiDetachAuthenticationFuncBindingRequest, options?: RawAxiosRequestConfig): AxiosPromise<DetachFuncBindingV1Response>;
|
|
6344
|
+
/**
|
|
6345
|
+
*
|
|
6346
|
+
* @summary Delete the binding between a codegen func and the schema variant
|
|
6347
|
+
* @param {SchemasApiDetachCodegenFuncBindingRequest} requestParameters Request parameters.
|
|
6348
|
+
* @param {*} [options] Override http request option.
|
|
6349
|
+
* @throws {RequiredError}
|
|
6350
|
+
* @memberof SchemasApiInterface
|
|
6351
|
+
*/
|
|
6352
|
+
detachCodegenFuncBinding(requestParameters: SchemasApiDetachCodegenFuncBindingRequest, options?: RawAxiosRequestConfig): AxiosPromise<DetachFuncBindingV1Response>;
|
|
6353
|
+
/**
|
|
6354
|
+
*
|
|
6355
|
+
* @summary Delete the binding between a management func and the schema variant
|
|
6356
|
+
* @param {SchemasApiDetachManagementFuncBindingRequest} requestParameters Request parameters.
|
|
6357
|
+
* @param {*} [options] Override http request option.
|
|
6358
|
+
* @throws {RequiredError}
|
|
6359
|
+
* @memberof SchemasApiInterface
|
|
6360
|
+
*/
|
|
6361
|
+
detachManagementFuncBinding(requestParameters: SchemasApiDetachManagementFuncBindingRequest, options?: RawAxiosRequestConfig): AxiosPromise<DetachFuncBindingV1Response>;
|
|
6362
|
+
/**
|
|
6363
|
+
*
|
|
6364
|
+
* @summary Delete the binding between a qualification func and the schema variant
|
|
6365
|
+
* @param {SchemasApiDetachQualificationFuncBindingRequest} requestParameters Request parameters.
|
|
6366
|
+
* @param {*} [options] Override http request option.
|
|
6367
|
+
* @throws {RequiredError}
|
|
6368
|
+
* @memberof SchemasApiInterface
|
|
6369
|
+
*/
|
|
6370
|
+
detachQualificationFuncBinding(requestParameters: SchemasApiDetachQualificationFuncBindingRequest, options?: RawAxiosRequestConfig): AxiosPromise<DetachFuncBindingV1Response>;
|
|
5814
6371
|
/**
|
|
5815
6372
|
*
|
|
5816
6373
|
* @summary Find schema by name or schema id
|
|
@@ -6095,173 +6652,358 @@ export interface SchemasApiCreateVariantQualificationRequest {
|
|
|
6095
6652
|
readonly createVariantQualificationFuncV1Request: CreateVariantQualificationFuncV1Request;
|
|
6096
6653
|
}
|
|
6097
6654
|
/**
|
|
6098
|
-
* Request parameters for
|
|
6655
|
+
* Request parameters for detachActionFuncBinding operation in SchemasApi.
|
|
6099
6656
|
* @export
|
|
6100
|
-
* @interface
|
|
6657
|
+
* @interface SchemasApiDetachActionFuncBindingRequest
|
|
6101
6658
|
*/
|
|
6102
|
-
export interface
|
|
6659
|
+
export interface SchemasApiDetachActionFuncBindingRequest {
|
|
6103
6660
|
/**
|
|
6104
6661
|
* Workspace identifier
|
|
6105
6662
|
* @type {string}
|
|
6106
|
-
* @memberof
|
|
6663
|
+
* @memberof SchemasApiDetachActionFuncBinding
|
|
6107
6664
|
*/
|
|
6108
6665
|
readonly workspaceId: string;
|
|
6109
6666
|
/**
|
|
6110
6667
|
* Change Set identifier
|
|
6111
6668
|
* @type {string}
|
|
6112
|
-
* @memberof
|
|
6669
|
+
* @memberof SchemasApiDetachActionFuncBinding
|
|
6113
6670
|
*/
|
|
6114
6671
|
readonly changeSetId: string;
|
|
6115
6672
|
/**
|
|
6116
|
-
*
|
|
6673
|
+
* Schema identifier
|
|
6117
6674
|
* @type {string}
|
|
6118
|
-
* @memberof
|
|
6675
|
+
* @memberof SchemasApiDetachActionFuncBinding
|
|
6119
6676
|
*/
|
|
6120
|
-
readonly
|
|
6677
|
+
readonly schemaId: string;
|
|
6121
6678
|
/**
|
|
6122
|
-
*
|
|
6679
|
+
* Schema variant identifier
|
|
6123
6680
|
* @type {string}
|
|
6124
|
-
* @memberof
|
|
6681
|
+
* @memberof SchemasApiDetachActionFuncBinding
|
|
6125
6682
|
*/
|
|
6126
|
-
readonly
|
|
6683
|
+
readonly schemaVariantId: string;
|
|
6684
|
+
/**
|
|
6685
|
+
* Func identifier
|
|
6686
|
+
* @type {string}
|
|
6687
|
+
* @memberof SchemasApiDetachActionFuncBinding
|
|
6688
|
+
*/
|
|
6689
|
+
readonly funcId: string;
|
|
6127
6690
|
}
|
|
6128
6691
|
/**
|
|
6129
|
-
* Request parameters for
|
|
6692
|
+
* Request parameters for detachAuthenticationFuncBinding operation in SchemasApi.
|
|
6130
6693
|
* @export
|
|
6131
|
-
* @interface
|
|
6694
|
+
* @interface SchemasApiDetachAuthenticationFuncBindingRequest
|
|
6132
6695
|
*/
|
|
6133
|
-
export interface
|
|
6696
|
+
export interface SchemasApiDetachAuthenticationFuncBindingRequest {
|
|
6134
6697
|
/**
|
|
6135
6698
|
* Workspace identifier
|
|
6136
6699
|
* @type {string}
|
|
6137
|
-
* @memberof
|
|
6700
|
+
* @memberof SchemasApiDetachAuthenticationFuncBinding
|
|
6138
6701
|
*/
|
|
6139
6702
|
readonly workspaceId: string;
|
|
6140
6703
|
/**
|
|
6141
6704
|
* Change Set identifier
|
|
6142
6705
|
* @type {string}
|
|
6143
|
-
* @memberof
|
|
6706
|
+
* @memberof SchemasApiDetachAuthenticationFuncBinding
|
|
6144
6707
|
*/
|
|
6145
6708
|
readonly changeSetId: string;
|
|
6146
6709
|
/**
|
|
6147
6710
|
* Schema identifier
|
|
6148
6711
|
* @type {string}
|
|
6149
|
-
* @memberof
|
|
6712
|
+
* @memberof SchemasApiDetachAuthenticationFuncBinding
|
|
6150
6713
|
*/
|
|
6151
6714
|
readonly schemaId: string;
|
|
6715
|
+
/**
|
|
6716
|
+
* Schema variant identifier
|
|
6717
|
+
* @type {string}
|
|
6718
|
+
* @memberof SchemasApiDetachAuthenticationFuncBinding
|
|
6719
|
+
*/
|
|
6720
|
+
readonly schemaVariantId: string;
|
|
6721
|
+
/**
|
|
6722
|
+
* Func identifier
|
|
6723
|
+
* @type {string}
|
|
6724
|
+
* @memberof SchemasApiDetachAuthenticationFuncBinding
|
|
6725
|
+
*/
|
|
6726
|
+
readonly funcId: string;
|
|
6152
6727
|
}
|
|
6153
6728
|
/**
|
|
6154
|
-
* Request parameters for
|
|
6729
|
+
* Request parameters for detachCodegenFuncBinding operation in SchemasApi.
|
|
6155
6730
|
* @export
|
|
6156
|
-
* @interface
|
|
6731
|
+
* @interface SchemasApiDetachCodegenFuncBindingRequest
|
|
6157
6732
|
*/
|
|
6158
|
-
export interface
|
|
6733
|
+
export interface SchemasApiDetachCodegenFuncBindingRequest {
|
|
6159
6734
|
/**
|
|
6160
6735
|
* Workspace identifier
|
|
6161
6736
|
* @type {string}
|
|
6162
|
-
* @memberof
|
|
6737
|
+
* @memberof SchemasApiDetachCodegenFuncBinding
|
|
6163
6738
|
*/
|
|
6164
6739
|
readonly workspaceId: string;
|
|
6165
6740
|
/**
|
|
6166
6741
|
* Change Set identifier
|
|
6167
6742
|
* @type {string}
|
|
6168
|
-
* @memberof
|
|
6743
|
+
* @memberof SchemasApiDetachCodegenFuncBinding
|
|
6169
6744
|
*/
|
|
6170
6745
|
readonly changeSetId: string;
|
|
6171
6746
|
/**
|
|
6172
6747
|
* Schema identifier
|
|
6173
6748
|
* @type {string}
|
|
6174
|
-
* @memberof
|
|
6749
|
+
* @memberof SchemasApiDetachCodegenFuncBinding
|
|
6175
6750
|
*/
|
|
6176
6751
|
readonly schemaId: string;
|
|
6752
|
+
/**
|
|
6753
|
+
* Schema variant identifier
|
|
6754
|
+
* @type {string}
|
|
6755
|
+
* @memberof SchemasApiDetachCodegenFuncBinding
|
|
6756
|
+
*/
|
|
6757
|
+
readonly schemaVariantId: string;
|
|
6758
|
+
/**
|
|
6759
|
+
* Func identifier
|
|
6760
|
+
* @type {string}
|
|
6761
|
+
* @memberof SchemasApiDetachCodegenFuncBinding
|
|
6762
|
+
*/
|
|
6763
|
+
readonly funcId: string;
|
|
6177
6764
|
}
|
|
6178
6765
|
/**
|
|
6179
|
-
* Request parameters for
|
|
6766
|
+
* Request parameters for detachManagementFuncBinding operation in SchemasApi.
|
|
6180
6767
|
* @export
|
|
6181
|
-
* @interface
|
|
6768
|
+
* @interface SchemasApiDetachManagementFuncBindingRequest
|
|
6182
6769
|
*/
|
|
6183
|
-
export interface
|
|
6770
|
+
export interface SchemasApiDetachManagementFuncBindingRequest {
|
|
6184
6771
|
/**
|
|
6185
6772
|
* Workspace identifier
|
|
6186
6773
|
* @type {string}
|
|
6187
|
-
* @memberof
|
|
6774
|
+
* @memberof SchemasApiDetachManagementFuncBinding
|
|
6188
6775
|
*/
|
|
6189
6776
|
readonly workspaceId: string;
|
|
6190
6777
|
/**
|
|
6191
6778
|
* Change Set identifier
|
|
6192
6779
|
* @type {string}
|
|
6193
|
-
* @memberof
|
|
6780
|
+
* @memberof SchemasApiDetachManagementFuncBinding
|
|
6194
6781
|
*/
|
|
6195
6782
|
readonly changeSetId: string;
|
|
6196
6783
|
/**
|
|
6197
6784
|
* Schema identifier
|
|
6198
6785
|
* @type {string}
|
|
6199
|
-
* @memberof
|
|
6786
|
+
* @memberof SchemasApiDetachManagementFuncBinding
|
|
6200
6787
|
*/
|
|
6201
6788
|
readonly schemaId: string;
|
|
6202
6789
|
/**
|
|
6203
6790
|
* Schema variant identifier
|
|
6204
6791
|
* @type {string}
|
|
6205
|
-
* @memberof
|
|
6792
|
+
* @memberof SchemasApiDetachManagementFuncBinding
|
|
6206
6793
|
*/
|
|
6207
6794
|
readonly schemaVariantId: string;
|
|
6795
|
+
/**
|
|
6796
|
+
* Func identifier
|
|
6797
|
+
* @type {string}
|
|
6798
|
+
* @memberof SchemasApiDetachManagementFuncBinding
|
|
6799
|
+
*/
|
|
6800
|
+
readonly funcId: string;
|
|
6208
6801
|
}
|
|
6209
6802
|
/**
|
|
6210
|
-
* Request parameters for
|
|
6803
|
+
* Request parameters for detachQualificationFuncBinding operation in SchemasApi.
|
|
6211
6804
|
* @export
|
|
6212
|
-
* @interface
|
|
6805
|
+
* @interface SchemasApiDetachQualificationFuncBindingRequest
|
|
6213
6806
|
*/
|
|
6214
|
-
export interface
|
|
6807
|
+
export interface SchemasApiDetachQualificationFuncBindingRequest {
|
|
6215
6808
|
/**
|
|
6216
6809
|
* Workspace identifier
|
|
6217
6810
|
* @type {string}
|
|
6218
|
-
* @memberof
|
|
6811
|
+
* @memberof SchemasApiDetachQualificationFuncBinding
|
|
6219
6812
|
*/
|
|
6220
6813
|
readonly workspaceId: string;
|
|
6221
6814
|
/**
|
|
6222
6815
|
* Change Set identifier
|
|
6223
6816
|
* @type {string}
|
|
6224
|
-
* @memberof
|
|
6817
|
+
* @memberof SchemasApiDetachQualificationFuncBinding
|
|
6225
6818
|
*/
|
|
6226
6819
|
readonly changeSetId: string;
|
|
6227
6820
|
/**
|
|
6228
|
-
*
|
|
6821
|
+
* Schema identifier
|
|
6229
6822
|
* @type {string}
|
|
6230
|
-
* @memberof
|
|
6823
|
+
* @memberof SchemasApiDetachQualificationFuncBinding
|
|
6231
6824
|
*/
|
|
6232
|
-
readonly
|
|
6825
|
+
readonly schemaId: string;
|
|
6233
6826
|
/**
|
|
6234
|
-
*
|
|
6827
|
+
* Schema variant identifier
|
|
6235
6828
|
* @type {string}
|
|
6236
|
-
* @memberof
|
|
6829
|
+
* @memberof SchemasApiDetachQualificationFuncBinding
|
|
6237
6830
|
*/
|
|
6238
|
-
readonly
|
|
6831
|
+
readonly schemaVariantId: string;
|
|
6832
|
+
/**
|
|
6833
|
+
* Func identifier
|
|
6834
|
+
* @type {string}
|
|
6835
|
+
* @memberof SchemasApiDetachQualificationFuncBinding
|
|
6836
|
+
*/
|
|
6837
|
+
readonly funcId: string;
|
|
6239
6838
|
}
|
|
6240
6839
|
/**
|
|
6241
|
-
* Request parameters for
|
|
6840
|
+
* Request parameters for findSchema operation in SchemasApi.
|
|
6242
6841
|
* @export
|
|
6243
|
-
* @interface
|
|
6842
|
+
* @interface SchemasApiFindSchemaRequest
|
|
6244
6843
|
*/
|
|
6245
|
-
export interface
|
|
6844
|
+
export interface SchemasApiFindSchemaRequest {
|
|
6246
6845
|
/**
|
|
6247
6846
|
* Workspace identifier
|
|
6248
6847
|
* @type {string}
|
|
6249
|
-
* @memberof
|
|
6848
|
+
* @memberof SchemasApiFindSchema
|
|
6250
6849
|
*/
|
|
6251
6850
|
readonly workspaceId: string;
|
|
6252
6851
|
/**
|
|
6253
6852
|
* Change Set identifier
|
|
6254
6853
|
* @type {string}
|
|
6255
|
-
* @memberof
|
|
6854
|
+
* @memberof SchemasApiFindSchema
|
|
6256
6855
|
*/
|
|
6257
6856
|
readonly changeSetId: string;
|
|
6258
6857
|
/**
|
|
6259
6858
|
*
|
|
6260
|
-
* @type {
|
|
6261
|
-
* @memberof
|
|
6859
|
+
* @type {string}
|
|
6860
|
+
* @memberof SchemasApiFindSchema
|
|
6262
6861
|
*/
|
|
6263
|
-
readonly
|
|
6264
|
-
|
|
6862
|
+
readonly schema?: string | null;
|
|
6863
|
+
/**
|
|
6864
|
+
*
|
|
6865
|
+
* @type {string}
|
|
6866
|
+
* @memberof SchemasApiFindSchema
|
|
6867
|
+
*/
|
|
6868
|
+
readonly schemaId?: string | null;
|
|
6869
|
+
}
|
|
6870
|
+
/**
|
|
6871
|
+
* Request parameters for getDefaultVariant operation in SchemasApi.
|
|
6872
|
+
* @export
|
|
6873
|
+
* @interface SchemasApiGetDefaultVariantRequest
|
|
6874
|
+
*/
|
|
6875
|
+
export interface SchemasApiGetDefaultVariantRequest {
|
|
6876
|
+
/**
|
|
6877
|
+
* Workspace identifier
|
|
6878
|
+
* @type {string}
|
|
6879
|
+
* @memberof SchemasApiGetDefaultVariant
|
|
6880
|
+
*/
|
|
6881
|
+
readonly workspaceId: string;
|
|
6882
|
+
/**
|
|
6883
|
+
* Change Set identifier
|
|
6884
|
+
* @type {string}
|
|
6885
|
+
* @memberof SchemasApiGetDefaultVariant
|
|
6886
|
+
*/
|
|
6887
|
+
readonly changeSetId: string;
|
|
6888
|
+
/**
|
|
6889
|
+
* Schema identifier
|
|
6890
|
+
* @type {string}
|
|
6891
|
+
* @memberof SchemasApiGetDefaultVariant
|
|
6892
|
+
*/
|
|
6893
|
+
readonly schemaId: string;
|
|
6894
|
+
}
|
|
6895
|
+
/**
|
|
6896
|
+
* Request parameters for getSchema operation in SchemasApi.
|
|
6897
|
+
* @export
|
|
6898
|
+
* @interface SchemasApiGetSchemaRequest
|
|
6899
|
+
*/
|
|
6900
|
+
export interface SchemasApiGetSchemaRequest {
|
|
6901
|
+
/**
|
|
6902
|
+
* Workspace identifier
|
|
6903
|
+
* @type {string}
|
|
6904
|
+
* @memberof SchemasApiGetSchema
|
|
6905
|
+
*/
|
|
6906
|
+
readonly workspaceId: string;
|
|
6907
|
+
/**
|
|
6908
|
+
* Change Set identifier
|
|
6909
|
+
* @type {string}
|
|
6910
|
+
* @memberof SchemasApiGetSchema
|
|
6911
|
+
*/
|
|
6912
|
+
readonly changeSetId: string;
|
|
6913
|
+
/**
|
|
6914
|
+
* Schema identifier
|
|
6915
|
+
* @type {string}
|
|
6916
|
+
* @memberof SchemasApiGetSchema
|
|
6917
|
+
*/
|
|
6918
|
+
readonly schemaId: string;
|
|
6919
|
+
}
|
|
6920
|
+
/**
|
|
6921
|
+
* Request parameters for getVariant operation in SchemasApi.
|
|
6922
|
+
* @export
|
|
6923
|
+
* @interface SchemasApiGetVariantRequest
|
|
6924
|
+
*/
|
|
6925
|
+
export interface SchemasApiGetVariantRequest {
|
|
6926
|
+
/**
|
|
6927
|
+
* Workspace identifier
|
|
6928
|
+
* @type {string}
|
|
6929
|
+
* @memberof SchemasApiGetVariant
|
|
6930
|
+
*/
|
|
6931
|
+
readonly workspaceId: string;
|
|
6932
|
+
/**
|
|
6933
|
+
* Change Set identifier
|
|
6934
|
+
* @type {string}
|
|
6935
|
+
* @memberof SchemasApiGetVariant
|
|
6936
|
+
*/
|
|
6937
|
+
readonly changeSetId: string;
|
|
6938
|
+
/**
|
|
6939
|
+
* Schema identifier
|
|
6940
|
+
* @type {string}
|
|
6941
|
+
* @memberof SchemasApiGetVariant
|
|
6942
|
+
*/
|
|
6943
|
+
readonly schemaId: string;
|
|
6944
|
+
/**
|
|
6945
|
+
* Schema variant identifier
|
|
6946
|
+
* @type {string}
|
|
6947
|
+
* @memberof SchemasApiGetVariant
|
|
6948
|
+
*/
|
|
6949
|
+
readonly schemaVariantId: string;
|
|
6950
|
+
}
|
|
6951
|
+
/**
|
|
6952
|
+
* Request parameters for listSchemas operation in SchemasApi.
|
|
6953
|
+
* @export
|
|
6954
|
+
* @interface SchemasApiListSchemasRequest
|
|
6955
|
+
*/
|
|
6956
|
+
export interface SchemasApiListSchemasRequest {
|
|
6957
|
+
/**
|
|
6958
|
+
* Workspace identifier
|
|
6959
|
+
* @type {string}
|
|
6960
|
+
* @memberof SchemasApiListSchemas
|
|
6961
|
+
*/
|
|
6962
|
+
readonly workspaceId: string;
|
|
6963
|
+
/**
|
|
6964
|
+
* Change Set identifier
|
|
6965
|
+
* @type {string}
|
|
6966
|
+
* @memberof SchemasApiListSchemas
|
|
6967
|
+
*/
|
|
6968
|
+
readonly changeSetId: string;
|
|
6969
|
+
/**
|
|
6970
|
+
* Maximum number of results to return (default: 50, max: 300)
|
|
6971
|
+
* @type {string}
|
|
6972
|
+
* @memberof SchemasApiListSchemas
|
|
6973
|
+
*/
|
|
6974
|
+
readonly limit?: string;
|
|
6975
|
+
/**
|
|
6976
|
+
* Cursor for pagination (SchemaId of the last item from previous page)
|
|
6977
|
+
* @type {string}
|
|
6978
|
+
* @memberof SchemasApiListSchemas
|
|
6979
|
+
*/
|
|
6980
|
+
readonly cursor?: string;
|
|
6981
|
+
}
|
|
6982
|
+
/**
|
|
6983
|
+
* Request parameters for searchSchemas operation in SchemasApi.
|
|
6984
|
+
* @export
|
|
6985
|
+
* @interface SchemasApiSearchSchemasRequest
|
|
6986
|
+
*/
|
|
6987
|
+
export interface SchemasApiSearchSchemasRequest {
|
|
6988
|
+
/**
|
|
6989
|
+
* Workspace identifier
|
|
6990
|
+
* @type {string}
|
|
6991
|
+
* @memberof SchemasApiSearchSchemas
|
|
6992
|
+
*/
|
|
6993
|
+
readonly workspaceId: string;
|
|
6994
|
+
/**
|
|
6995
|
+
* Change Set identifier
|
|
6996
|
+
* @type {string}
|
|
6997
|
+
* @memberof SchemasApiSearchSchemas
|
|
6998
|
+
*/
|
|
6999
|
+
readonly changeSetId: string;
|
|
7000
|
+
/**
|
|
7001
|
+
*
|
|
7002
|
+
* @type {SearchSchemasV1Request}
|
|
7003
|
+
* @memberof SchemasApiSearchSchemas
|
|
7004
|
+
*/
|
|
7005
|
+
readonly searchSchemasV1Request: SearchSchemasV1Request;
|
|
7006
|
+
}
|
|
6265
7007
|
/**
|
|
6266
7008
|
* Request parameters for unlockSchema operation in SchemasApi.
|
|
6267
7009
|
* @export
|
|
@@ -6385,6 +7127,51 @@ export declare class SchemasApi extends BaseAPI implements SchemasApiInterface {
|
|
|
6385
7127
|
* @memberof SchemasApi
|
|
6386
7128
|
*/
|
|
6387
7129
|
createVariantQualification(requestParameters: SchemasApiCreateVariantQualificationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateVariantQualificationFuncV1Response, any, {}>>;
|
|
7130
|
+
/**
|
|
7131
|
+
*
|
|
7132
|
+
* @summary Delete the binding between an action func and the schema variant
|
|
7133
|
+
* @param {SchemasApiDetachActionFuncBindingRequest} requestParameters Request parameters.
|
|
7134
|
+
* @param {*} [options] Override http request option.
|
|
7135
|
+
* @throws {RequiredError}
|
|
7136
|
+
* @memberof SchemasApi
|
|
7137
|
+
*/
|
|
7138
|
+
detachActionFuncBinding(requestParameters: SchemasApiDetachActionFuncBindingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DetachFuncBindingV1Response, any, {}>>;
|
|
7139
|
+
/**
|
|
7140
|
+
*
|
|
7141
|
+
* @summary Delete the binding between an authentication func and the schema variant
|
|
7142
|
+
* @param {SchemasApiDetachAuthenticationFuncBindingRequest} requestParameters Request parameters.
|
|
7143
|
+
* @param {*} [options] Override http request option.
|
|
7144
|
+
* @throws {RequiredError}
|
|
7145
|
+
* @memberof SchemasApi
|
|
7146
|
+
*/
|
|
7147
|
+
detachAuthenticationFuncBinding(requestParameters: SchemasApiDetachAuthenticationFuncBindingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DetachFuncBindingV1Response, any, {}>>;
|
|
7148
|
+
/**
|
|
7149
|
+
*
|
|
7150
|
+
* @summary Delete the binding between a codegen func and the schema variant
|
|
7151
|
+
* @param {SchemasApiDetachCodegenFuncBindingRequest} requestParameters Request parameters.
|
|
7152
|
+
* @param {*} [options] Override http request option.
|
|
7153
|
+
* @throws {RequiredError}
|
|
7154
|
+
* @memberof SchemasApi
|
|
7155
|
+
*/
|
|
7156
|
+
detachCodegenFuncBinding(requestParameters: SchemasApiDetachCodegenFuncBindingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DetachFuncBindingV1Response, any, {}>>;
|
|
7157
|
+
/**
|
|
7158
|
+
*
|
|
7159
|
+
* @summary Delete the binding between a management func and the schema variant
|
|
7160
|
+
* @param {SchemasApiDetachManagementFuncBindingRequest} requestParameters Request parameters.
|
|
7161
|
+
* @param {*} [options] Override http request option.
|
|
7162
|
+
* @throws {RequiredError}
|
|
7163
|
+
* @memberof SchemasApi
|
|
7164
|
+
*/
|
|
7165
|
+
detachManagementFuncBinding(requestParameters: SchemasApiDetachManagementFuncBindingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DetachFuncBindingV1Response, any, {}>>;
|
|
7166
|
+
/**
|
|
7167
|
+
*
|
|
7168
|
+
* @summary Delete the binding between a qualification func and the schema variant
|
|
7169
|
+
* @param {SchemasApiDetachQualificationFuncBindingRequest} requestParameters Request parameters.
|
|
7170
|
+
* @param {*} [options] Override http request option.
|
|
7171
|
+
* @throws {RequiredError}
|
|
7172
|
+
* @memberof SchemasApi
|
|
7173
|
+
*/
|
|
7174
|
+
detachQualificationFuncBinding(requestParameters: SchemasApiDetachQualificationFuncBindingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DetachFuncBindingV1Response, any, {}>>;
|
|
6388
7175
|
/**
|
|
6389
7176
|
*
|
|
6390
7177
|
* @summary Find schema by name or schema id
|
|
@@ -6952,3 +7739,545 @@ export declare class WhoamiApi extends BaseAPI implements WhoamiApiInterface {
|
|
|
6952
7739
|
*/
|
|
6953
7740
|
whoami(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WhoamiResponse, any, {}>>;
|
|
6954
7741
|
}
|
|
7742
|
+
/**
|
|
7743
|
+
* WorkspaceManagementApi - axios parameter creator
|
|
7744
|
+
* @export
|
|
7745
|
+
*/
|
|
7746
|
+
export declare const WorkspaceManagementApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
7747
|
+
/**
|
|
7748
|
+
*
|
|
7749
|
+
* @summary Create a new workspace
|
|
7750
|
+
* @param {CreateWorkspaceRequest} createWorkspaceRequest
|
|
7751
|
+
* @param {*} [options] Override http request option.
|
|
7752
|
+
* @throws {RequiredError}
|
|
7753
|
+
*/
|
|
7754
|
+
createWorkspace: (createWorkspaceRequest: CreateWorkspaceRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7755
|
+
/**
|
|
7756
|
+
*
|
|
7757
|
+
* @summary Delete a workspace - please note, this is a soft delete and workspaces can be recovered
|
|
7758
|
+
* @param {string} workspaceId Workspace identifier
|
|
7759
|
+
* @param {*} [options] Override http request option.
|
|
7760
|
+
* @throws {RequiredError}
|
|
7761
|
+
*/
|
|
7762
|
+
deleteWorkspace: (workspaceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7763
|
+
/**
|
|
7764
|
+
*
|
|
7765
|
+
* @summary Get the details of a workspace
|
|
7766
|
+
* @param {string} workspaceId Workspace identifier
|
|
7767
|
+
* @param {*} [options] Override http request option.
|
|
7768
|
+
* @throws {RequiredError}
|
|
7769
|
+
*/
|
|
7770
|
+
getWorkspace: (workspaceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7771
|
+
/**
|
|
7772
|
+
*
|
|
7773
|
+
* @summary Invite a new member to the workspace
|
|
7774
|
+
* @param {string} workspaceId Workspace identifier
|
|
7775
|
+
* @param {InviteMemberRequest} inviteMemberRequest
|
|
7776
|
+
* @param {*} [options] Override http request option.
|
|
7777
|
+
* @throws {RequiredError}
|
|
7778
|
+
*/
|
|
7779
|
+
inviteMember: (workspaceId: string, inviteMemberRequest: InviteMemberRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7780
|
+
/**
|
|
7781
|
+
*
|
|
7782
|
+
* @summary List all members of a workspace
|
|
7783
|
+
* @param {string} workspaceId Workspace identifier
|
|
7784
|
+
* @param {*} [options] Override http request option.
|
|
7785
|
+
* @throws {RequiredError}
|
|
7786
|
+
*/
|
|
7787
|
+
listMembers: (workspaceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7788
|
+
/**
|
|
7789
|
+
*
|
|
7790
|
+
* @summary List workspaces
|
|
7791
|
+
* @param {*} [options] Override http request option.
|
|
7792
|
+
* @throws {RequiredError}
|
|
7793
|
+
*/
|
|
7794
|
+
listWorkspaces: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7795
|
+
/**
|
|
7796
|
+
*
|
|
7797
|
+
* @summary Remove a member from the workspace
|
|
7798
|
+
* @param {string} workspaceId Workspace identifier
|
|
7799
|
+
* @param {RemoveMemberRequest} removeMemberRequest
|
|
7800
|
+
* @param {*} [options] Override http request option.
|
|
7801
|
+
* @throws {RequiredError}
|
|
7802
|
+
*/
|
|
7803
|
+
removeMember: (workspaceId: string, removeMemberRequest: RemoveMemberRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7804
|
+
/**
|
|
7805
|
+
*
|
|
7806
|
+
* @summary Update a member\'s role in the workspace
|
|
7807
|
+
* @param {string} workspaceId Workspace identifier
|
|
7808
|
+
* @param {UpdateMemberRoleRequest} updateMemberRoleRequest
|
|
7809
|
+
* @param {*} [options] Override http request option.
|
|
7810
|
+
* @throws {RequiredError}
|
|
7811
|
+
*/
|
|
7812
|
+
updateMemberRole: (workspaceId: string, updateMemberRoleRequest: UpdateMemberRoleRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7813
|
+
/**
|
|
7814
|
+
*
|
|
7815
|
+
* @summary Update the details of a workspace
|
|
7816
|
+
* @param {string} workspaceId Workspace identifier
|
|
7817
|
+
* @param {UpdateWorkspaceRequest} updateWorkspaceRequest
|
|
7818
|
+
* @param {*} [options] Override http request option.
|
|
7819
|
+
* @throws {RequiredError}
|
|
7820
|
+
*/
|
|
7821
|
+
updateWorkspace: (workspaceId: string, updateWorkspaceRequest: UpdateWorkspaceRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7822
|
+
};
|
|
7823
|
+
/**
|
|
7824
|
+
* WorkspaceManagementApi - functional programming interface
|
|
7825
|
+
* @export
|
|
7826
|
+
*/
|
|
7827
|
+
export declare const WorkspaceManagementApiFp: (configuration?: Configuration) => {
|
|
7828
|
+
/**
|
|
7829
|
+
*
|
|
7830
|
+
* @summary Create a new workspace
|
|
7831
|
+
* @param {CreateWorkspaceRequest} createWorkspaceRequest
|
|
7832
|
+
* @param {*} [options] Override http request option.
|
|
7833
|
+
* @throws {RequiredError}
|
|
7834
|
+
*/
|
|
7835
|
+
createWorkspace(createWorkspaceRequest: CreateWorkspaceRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Workspace>>;
|
|
7836
|
+
/**
|
|
7837
|
+
*
|
|
7838
|
+
* @summary Delete a workspace - please note, this is a soft delete and workspaces can be recovered
|
|
7839
|
+
* @param {string} workspaceId Workspace identifier
|
|
7840
|
+
* @param {*} [options] Override http request option.
|
|
7841
|
+
* @throws {RequiredError}
|
|
7842
|
+
*/
|
|
7843
|
+
deleteWorkspace(workspaceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
7844
|
+
/**
|
|
7845
|
+
*
|
|
7846
|
+
* @summary Get the details of a workspace
|
|
7847
|
+
* @param {string} workspaceId Workspace identifier
|
|
7848
|
+
* @param {*} [options] Override http request option.
|
|
7849
|
+
* @throws {RequiredError}
|
|
7850
|
+
*/
|
|
7851
|
+
getWorkspace(workspaceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Workspace>>;
|
|
7852
|
+
/**
|
|
7853
|
+
*
|
|
7854
|
+
* @summary Invite a new member to the workspace
|
|
7855
|
+
* @param {string} workspaceId Workspace identifier
|
|
7856
|
+
* @param {InviteMemberRequest} inviteMemberRequest
|
|
7857
|
+
* @param {*} [options] Override http request option.
|
|
7858
|
+
* @throws {RequiredError}
|
|
7859
|
+
*/
|
|
7860
|
+
inviteMember(workspaceId: string, inviteMemberRequest: InviteMemberRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Member>>>;
|
|
7861
|
+
/**
|
|
7862
|
+
*
|
|
7863
|
+
* @summary List all members of a workspace
|
|
7864
|
+
* @param {string} workspaceId Workspace identifier
|
|
7865
|
+
* @param {*} [options] Override http request option.
|
|
7866
|
+
* @throws {RequiredError}
|
|
7867
|
+
*/
|
|
7868
|
+
listMembers(workspaceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Member>>>;
|
|
7869
|
+
/**
|
|
7870
|
+
*
|
|
7871
|
+
* @summary List workspaces
|
|
7872
|
+
* @param {*} [options] Override http request option.
|
|
7873
|
+
* @throws {RequiredError}
|
|
7874
|
+
*/
|
|
7875
|
+
listWorkspaces(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Workspace>>>;
|
|
7876
|
+
/**
|
|
7877
|
+
*
|
|
7878
|
+
* @summary Remove a member from the workspace
|
|
7879
|
+
* @param {string} workspaceId Workspace identifier
|
|
7880
|
+
* @param {RemoveMemberRequest} removeMemberRequest
|
|
7881
|
+
* @param {*} [options] Override http request option.
|
|
7882
|
+
* @throws {RequiredError}
|
|
7883
|
+
*/
|
|
7884
|
+
removeMember(workspaceId: string, removeMemberRequest: RemoveMemberRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Member>>>;
|
|
7885
|
+
/**
|
|
7886
|
+
*
|
|
7887
|
+
* @summary Update a member\'s role in the workspace
|
|
7888
|
+
* @param {string} workspaceId Workspace identifier
|
|
7889
|
+
* @param {UpdateMemberRoleRequest} updateMemberRoleRequest
|
|
7890
|
+
* @param {*} [options] Override http request option.
|
|
7891
|
+
* @throws {RequiredError}
|
|
7892
|
+
*/
|
|
7893
|
+
updateMemberRole(workspaceId: string, updateMemberRoleRequest: UpdateMemberRoleRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Member>>>;
|
|
7894
|
+
/**
|
|
7895
|
+
*
|
|
7896
|
+
* @summary Update the details of a workspace
|
|
7897
|
+
* @param {string} workspaceId Workspace identifier
|
|
7898
|
+
* @param {UpdateWorkspaceRequest} updateWorkspaceRequest
|
|
7899
|
+
* @param {*} [options] Override http request option.
|
|
7900
|
+
* @throws {RequiredError}
|
|
7901
|
+
*/
|
|
7902
|
+
updateWorkspace(workspaceId: string, updateWorkspaceRequest: UpdateWorkspaceRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Workspace>>;
|
|
7903
|
+
};
|
|
7904
|
+
/**
|
|
7905
|
+
* WorkspaceManagementApi - factory interface
|
|
7906
|
+
* @export
|
|
7907
|
+
*/
|
|
7908
|
+
export declare const WorkspaceManagementApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
7909
|
+
/**
|
|
7910
|
+
*
|
|
7911
|
+
* @summary Create a new workspace
|
|
7912
|
+
* @param {WorkspaceManagementApiCreateWorkspaceRequest} requestParameters Request parameters.
|
|
7913
|
+
* @param {*} [options] Override http request option.
|
|
7914
|
+
* @throws {RequiredError}
|
|
7915
|
+
*/
|
|
7916
|
+
createWorkspace(requestParameters: WorkspaceManagementApiCreateWorkspaceRequest, options?: RawAxiosRequestConfig): AxiosPromise<Workspace>;
|
|
7917
|
+
/**
|
|
7918
|
+
*
|
|
7919
|
+
* @summary Delete a workspace - please note, this is a soft delete and workspaces can be recovered
|
|
7920
|
+
* @param {WorkspaceManagementApiDeleteWorkspaceRequest} requestParameters Request parameters.
|
|
7921
|
+
* @param {*} [options] Override http request option.
|
|
7922
|
+
* @throws {RequiredError}
|
|
7923
|
+
*/
|
|
7924
|
+
deleteWorkspace(requestParameters: WorkspaceManagementApiDeleteWorkspaceRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
7925
|
+
/**
|
|
7926
|
+
*
|
|
7927
|
+
* @summary Get the details of a workspace
|
|
7928
|
+
* @param {WorkspaceManagementApiGetWorkspaceRequest} requestParameters Request parameters.
|
|
7929
|
+
* @param {*} [options] Override http request option.
|
|
7930
|
+
* @throws {RequiredError}
|
|
7931
|
+
*/
|
|
7932
|
+
getWorkspace(requestParameters: WorkspaceManagementApiGetWorkspaceRequest, options?: RawAxiosRequestConfig): AxiosPromise<Workspace>;
|
|
7933
|
+
/**
|
|
7934
|
+
*
|
|
7935
|
+
* @summary Invite a new member to the workspace
|
|
7936
|
+
* @param {WorkspaceManagementApiInviteMemberRequest} requestParameters Request parameters.
|
|
7937
|
+
* @param {*} [options] Override http request option.
|
|
7938
|
+
* @throws {RequiredError}
|
|
7939
|
+
*/
|
|
7940
|
+
inviteMember(requestParameters: WorkspaceManagementApiInviteMemberRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<Member>>;
|
|
7941
|
+
/**
|
|
7942
|
+
*
|
|
7943
|
+
* @summary List all members of a workspace
|
|
7944
|
+
* @param {WorkspaceManagementApiListMembersRequest} requestParameters Request parameters.
|
|
7945
|
+
* @param {*} [options] Override http request option.
|
|
7946
|
+
* @throws {RequiredError}
|
|
7947
|
+
*/
|
|
7948
|
+
listMembers(requestParameters: WorkspaceManagementApiListMembersRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<Member>>;
|
|
7949
|
+
/**
|
|
7950
|
+
*
|
|
7951
|
+
* @summary List workspaces
|
|
7952
|
+
* @param {*} [options] Override http request option.
|
|
7953
|
+
* @throws {RequiredError}
|
|
7954
|
+
*/
|
|
7955
|
+
listWorkspaces(options?: RawAxiosRequestConfig): AxiosPromise<Array<Workspace>>;
|
|
7956
|
+
/**
|
|
7957
|
+
*
|
|
7958
|
+
* @summary Remove a member from the workspace
|
|
7959
|
+
* @param {WorkspaceManagementApiRemoveMemberRequest} requestParameters Request parameters.
|
|
7960
|
+
* @param {*} [options] Override http request option.
|
|
7961
|
+
* @throws {RequiredError}
|
|
7962
|
+
*/
|
|
7963
|
+
removeMember(requestParameters: WorkspaceManagementApiRemoveMemberRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<Member>>;
|
|
7964
|
+
/**
|
|
7965
|
+
*
|
|
7966
|
+
* @summary Update a member\'s role in the workspace
|
|
7967
|
+
* @param {WorkspaceManagementApiUpdateMemberRoleRequest} requestParameters Request parameters.
|
|
7968
|
+
* @param {*} [options] Override http request option.
|
|
7969
|
+
* @throws {RequiredError}
|
|
7970
|
+
*/
|
|
7971
|
+
updateMemberRole(requestParameters: WorkspaceManagementApiUpdateMemberRoleRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<Member>>;
|
|
7972
|
+
/**
|
|
7973
|
+
*
|
|
7974
|
+
* @summary Update the details of a workspace
|
|
7975
|
+
* @param {WorkspaceManagementApiUpdateWorkspaceRequest} requestParameters Request parameters.
|
|
7976
|
+
* @param {*} [options] Override http request option.
|
|
7977
|
+
* @throws {RequiredError}
|
|
7978
|
+
*/
|
|
7979
|
+
updateWorkspace(requestParameters: WorkspaceManagementApiUpdateWorkspaceRequest, options?: RawAxiosRequestConfig): AxiosPromise<Workspace>;
|
|
7980
|
+
};
|
|
7981
|
+
/**
|
|
7982
|
+
* WorkspaceManagementApi - interface
|
|
7983
|
+
* @export
|
|
7984
|
+
* @interface WorkspaceManagementApi
|
|
7985
|
+
*/
|
|
7986
|
+
export interface WorkspaceManagementApiInterface {
|
|
7987
|
+
/**
|
|
7988
|
+
*
|
|
7989
|
+
* @summary Create a new workspace
|
|
7990
|
+
* @param {WorkspaceManagementApiCreateWorkspaceRequest} requestParameters Request parameters.
|
|
7991
|
+
* @param {*} [options] Override http request option.
|
|
7992
|
+
* @throws {RequiredError}
|
|
7993
|
+
* @memberof WorkspaceManagementApiInterface
|
|
7994
|
+
*/
|
|
7995
|
+
createWorkspace(requestParameters: WorkspaceManagementApiCreateWorkspaceRequest, options?: RawAxiosRequestConfig): AxiosPromise<Workspace>;
|
|
7996
|
+
/**
|
|
7997
|
+
*
|
|
7998
|
+
* @summary Delete a workspace - please note, this is a soft delete and workspaces can be recovered
|
|
7999
|
+
* @param {WorkspaceManagementApiDeleteWorkspaceRequest} requestParameters Request parameters.
|
|
8000
|
+
* @param {*} [options] Override http request option.
|
|
8001
|
+
* @throws {RequiredError}
|
|
8002
|
+
* @memberof WorkspaceManagementApiInterface
|
|
8003
|
+
*/
|
|
8004
|
+
deleteWorkspace(requestParameters: WorkspaceManagementApiDeleteWorkspaceRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
8005
|
+
/**
|
|
8006
|
+
*
|
|
8007
|
+
* @summary Get the details of a workspace
|
|
8008
|
+
* @param {WorkspaceManagementApiGetWorkspaceRequest} requestParameters Request parameters.
|
|
8009
|
+
* @param {*} [options] Override http request option.
|
|
8010
|
+
* @throws {RequiredError}
|
|
8011
|
+
* @memberof WorkspaceManagementApiInterface
|
|
8012
|
+
*/
|
|
8013
|
+
getWorkspace(requestParameters: WorkspaceManagementApiGetWorkspaceRequest, options?: RawAxiosRequestConfig): AxiosPromise<Workspace>;
|
|
8014
|
+
/**
|
|
8015
|
+
*
|
|
8016
|
+
* @summary Invite a new member to the workspace
|
|
8017
|
+
* @param {WorkspaceManagementApiInviteMemberRequest} requestParameters Request parameters.
|
|
8018
|
+
* @param {*} [options] Override http request option.
|
|
8019
|
+
* @throws {RequiredError}
|
|
8020
|
+
* @memberof WorkspaceManagementApiInterface
|
|
8021
|
+
*/
|
|
8022
|
+
inviteMember(requestParameters: WorkspaceManagementApiInviteMemberRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<Member>>;
|
|
8023
|
+
/**
|
|
8024
|
+
*
|
|
8025
|
+
* @summary List all members of a workspace
|
|
8026
|
+
* @param {WorkspaceManagementApiListMembersRequest} requestParameters Request parameters.
|
|
8027
|
+
* @param {*} [options] Override http request option.
|
|
8028
|
+
* @throws {RequiredError}
|
|
8029
|
+
* @memberof WorkspaceManagementApiInterface
|
|
8030
|
+
*/
|
|
8031
|
+
listMembers(requestParameters: WorkspaceManagementApiListMembersRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<Member>>;
|
|
8032
|
+
/**
|
|
8033
|
+
*
|
|
8034
|
+
* @summary List workspaces
|
|
8035
|
+
* @param {*} [options] Override http request option.
|
|
8036
|
+
* @throws {RequiredError}
|
|
8037
|
+
* @memberof WorkspaceManagementApiInterface
|
|
8038
|
+
*/
|
|
8039
|
+
listWorkspaces(options?: RawAxiosRequestConfig): AxiosPromise<Array<Workspace>>;
|
|
8040
|
+
/**
|
|
8041
|
+
*
|
|
8042
|
+
* @summary Remove a member from the workspace
|
|
8043
|
+
* @param {WorkspaceManagementApiRemoveMemberRequest} requestParameters Request parameters.
|
|
8044
|
+
* @param {*} [options] Override http request option.
|
|
8045
|
+
* @throws {RequiredError}
|
|
8046
|
+
* @memberof WorkspaceManagementApiInterface
|
|
8047
|
+
*/
|
|
8048
|
+
removeMember(requestParameters: WorkspaceManagementApiRemoveMemberRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<Member>>;
|
|
8049
|
+
/**
|
|
8050
|
+
*
|
|
8051
|
+
* @summary Update a member\'s role in the workspace
|
|
8052
|
+
* @param {WorkspaceManagementApiUpdateMemberRoleRequest} requestParameters Request parameters.
|
|
8053
|
+
* @param {*} [options] Override http request option.
|
|
8054
|
+
* @throws {RequiredError}
|
|
8055
|
+
* @memberof WorkspaceManagementApiInterface
|
|
8056
|
+
*/
|
|
8057
|
+
updateMemberRole(requestParameters: WorkspaceManagementApiUpdateMemberRoleRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<Member>>;
|
|
8058
|
+
/**
|
|
8059
|
+
*
|
|
8060
|
+
* @summary Update the details of a workspace
|
|
8061
|
+
* @param {WorkspaceManagementApiUpdateWorkspaceRequest} requestParameters Request parameters.
|
|
8062
|
+
* @param {*} [options] Override http request option.
|
|
8063
|
+
* @throws {RequiredError}
|
|
8064
|
+
* @memberof WorkspaceManagementApiInterface
|
|
8065
|
+
*/
|
|
8066
|
+
updateWorkspace(requestParameters: WorkspaceManagementApiUpdateWorkspaceRequest, options?: RawAxiosRequestConfig): AxiosPromise<Workspace>;
|
|
8067
|
+
}
|
|
8068
|
+
/**
|
|
8069
|
+
* Request parameters for createWorkspace operation in WorkspaceManagementApi.
|
|
8070
|
+
* @export
|
|
8071
|
+
* @interface WorkspaceManagementApiCreateWorkspaceRequest
|
|
8072
|
+
*/
|
|
8073
|
+
export interface WorkspaceManagementApiCreateWorkspaceRequest {
|
|
8074
|
+
/**
|
|
8075
|
+
*
|
|
8076
|
+
* @type {CreateWorkspaceRequest}
|
|
8077
|
+
* @memberof WorkspaceManagementApiCreateWorkspace
|
|
8078
|
+
*/
|
|
8079
|
+
readonly createWorkspaceRequest: CreateWorkspaceRequest;
|
|
8080
|
+
}
|
|
8081
|
+
/**
|
|
8082
|
+
* Request parameters for deleteWorkspace operation in WorkspaceManagementApi.
|
|
8083
|
+
* @export
|
|
8084
|
+
* @interface WorkspaceManagementApiDeleteWorkspaceRequest
|
|
8085
|
+
*/
|
|
8086
|
+
export interface WorkspaceManagementApiDeleteWorkspaceRequest {
|
|
8087
|
+
/**
|
|
8088
|
+
* Workspace identifier
|
|
8089
|
+
* @type {string}
|
|
8090
|
+
* @memberof WorkspaceManagementApiDeleteWorkspace
|
|
8091
|
+
*/
|
|
8092
|
+
readonly workspaceId: string;
|
|
8093
|
+
}
|
|
8094
|
+
/**
|
|
8095
|
+
* Request parameters for getWorkspace operation in WorkspaceManagementApi.
|
|
8096
|
+
* @export
|
|
8097
|
+
* @interface WorkspaceManagementApiGetWorkspaceRequest
|
|
8098
|
+
*/
|
|
8099
|
+
export interface WorkspaceManagementApiGetWorkspaceRequest {
|
|
8100
|
+
/**
|
|
8101
|
+
* Workspace identifier
|
|
8102
|
+
* @type {string}
|
|
8103
|
+
* @memberof WorkspaceManagementApiGetWorkspace
|
|
8104
|
+
*/
|
|
8105
|
+
readonly workspaceId: string;
|
|
8106
|
+
}
|
|
8107
|
+
/**
|
|
8108
|
+
* Request parameters for inviteMember operation in WorkspaceManagementApi.
|
|
8109
|
+
* @export
|
|
8110
|
+
* @interface WorkspaceManagementApiInviteMemberRequest
|
|
8111
|
+
*/
|
|
8112
|
+
export interface WorkspaceManagementApiInviteMemberRequest {
|
|
8113
|
+
/**
|
|
8114
|
+
* Workspace identifier
|
|
8115
|
+
* @type {string}
|
|
8116
|
+
* @memberof WorkspaceManagementApiInviteMember
|
|
8117
|
+
*/
|
|
8118
|
+
readonly workspaceId: string;
|
|
8119
|
+
/**
|
|
8120
|
+
*
|
|
8121
|
+
* @type {InviteMemberRequest}
|
|
8122
|
+
* @memberof WorkspaceManagementApiInviteMember
|
|
8123
|
+
*/
|
|
8124
|
+
readonly inviteMemberRequest: InviteMemberRequest;
|
|
8125
|
+
}
|
|
8126
|
+
/**
|
|
8127
|
+
* Request parameters for listMembers operation in WorkspaceManagementApi.
|
|
8128
|
+
* @export
|
|
8129
|
+
* @interface WorkspaceManagementApiListMembersRequest
|
|
8130
|
+
*/
|
|
8131
|
+
export interface WorkspaceManagementApiListMembersRequest {
|
|
8132
|
+
/**
|
|
8133
|
+
* Workspace identifier
|
|
8134
|
+
* @type {string}
|
|
8135
|
+
* @memberof WorkspaceManagementApiListMembers
|
|
8136
|
+
*/
|
|
8137
|
+
readonly workspaceId: string;
|
|
8138
|
+
}
|
|
8139
|
+
/**
|
|
8140
|
+
* Request parameters for removeMember operation in WorkspaceManagementApi.
|
|
8141
|
+
* @export
|
|
8142
|
+
* @interface WorkspaceManagementApiRemoveMemberRequest
|
|
8143
|
+
*/
|
|
8144
|
+
export interface WorkspaceManagementApiRemoveMemberRequest {
|
|
8145
|
+
/**
|
|
8146
|
+
* Workspace identifier
|
|
8147
|
+
* @type {string}
|
|
8148
|
+
* @memberof WorkspaceManagementApiRemoveMember
|
|
8149
|
+
*/
|
|
8150
|
+
readonly workspaceId: string;
|
|
8151
|
+
/**
|
|
8152
|
+
*
|
|
8153
|
+
* @type {RemoveMemberRequest}
|
|
8154
|
+
* @memberof WorkspaceManagementApiRemoveMember
|
|
8155
|
+
*/
|
|
8156
|
+
readonly removeMemberRequest: RemoveMemberRequest;
|
|
8157
|
+
}
|
|
8158
|
+
/**
|
|
8159
|
+
* Request parameters for updateMemberRole operation in WorkspaceManagementApi.
|
|
8160
|
+
* @export
|
|
8161
|
+
* @interface WorkspaceManagementApiUpdateMemberRoleRequest
|
|
8162
|
+
*/
|
|
8163
|
+
export interface WorkspaceManagementApiUpdateMemberRoleRequest {
|
|
8164
|
+
/**
|
|
8165
|
+
* Workspace identifier
|
|
8166
|
+
* @type {string}
|
|
8167
|
+
* @memberof WorkspaceManagementApiUpdateMemberRole
|
|
8168
|
+
*/
|
|
8169
|
+
readonly workspaceId: string;
|
|
8170
|
+
/**
|
|
8171
|
+
*
|
|
8172
|
+
* @type {UpdateMemberRoleRequest}
|
|
8173
|
+
* @memberof WorkspaceManagementApiUpdateMemberRole
|
|
8174
|
+
*/
|
|
8175
|
+
readonly updateMemberRoleRequest: UpdateMemberRoleRequest;
|
|
8176
|
+
}
|
|
8177
|
+
/**
|
|
8178
|
+
* Request parameters for updateWorkspace operation in WorkspaceManagementApi.
|
|
8179
|
+
* @export
|
|
8180
|
+
* @interface WorkspaceManagementApiUpdateWorkspaceRequest
|
|
8181
|
+
*/
|
|
8182
|
+
export interface WorkspaceManagementApiUpdateWorkspaceRequest {
|
|
8183
|
+
/**
|
|
8184
|
+
* Workspace identifier
|
|
8185
|
+
* @type {string}
|
|
8186
|
+
* @memberof WorkspaceManagementApiUpdateWorkspace
|
|
8187
|
+
*/
|
|
8188
|
+
readonly workspaceId: string;
|
|
8189
|
+
/**
|
|
8190
|
+
*
|
|
8191
|
+
* @type {UpdateWorkspaceRequest}
|
|
8192
|
+
* @memberof WorkspaceManagementApiUpdateWorkspace
|
|
8193
|
+
*/
|
|
8194
|
+
readonly updateWorkspaceRequest: UpdateWorkspaceRequest;
|
|
8195
|
+
}
|
|
8196
|
+
/**
|
|
8197
|
+
* WorkspaceManagementApi - object-oriented interface
|
|
8198
|
+
* @export
|
|
8199
|
+
* @class WorkspaceManagementApi
|
|
8200
|
+
* @extends {BaseAPI}
|
|
8201
|
+
*/
|
|
8202
|
+
export declare class WorkspaceManagementApi extends BaseAPI implements WorkspaceManagementApiInterface {
|
|
8203
|
+
/**
|
|
8204
|
+
*
|
|
8205
|
+
* @summary Create a new workspace
|
|
8206
|
+
* @param {WorkspaceManagementApiCreateWorkspaceRequest} requestParameters Request parameters.
|
|
8207
|
+
* @param {*} [options] Override http request option.
|
|
8208
|
+
* @throws {RequiredError}
|
|
8209
|
+
* @memberof WorkspaceManagementApi
|
|
8210
|
+
*/
|
|
8211
|
+
createWorkspace(requestParameters: WorkspaceManagementApiCreateWorkspaceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Workspace, any, {}>>;
|
|
8212
|
+
/**
|
|
8213
|
+
*
|
|
8214
|
+
* @summary Delete a workspace - please note, this is a soft delete and workspaces can be recovered
|
|
8215
|
+
* @param {WorkspaceManagementApiDeleteWorkspaceRequest} requestParameters Request parameters.
|
|
8216
|
+
* @param {*} [options] Override http request option.
|
|
8217
|
+
* @throws {RequiredError}
|
|
8218
|
+
* @memberof WorkspaceManagementApi
|
|
8219
|
+
*/
|
|
8220
|
+
deleteWorkspace(requestParameters: WorkspaceManagementApiDeleteWorkspaceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
8221
|
+
/**
|
|
8222
|
+
*
|
|
8223
|
+
* @summary Get the details of a workspace
|
|
8224
|
+
* @param {WorkspaceManagementApiGetWorkspaceRequest} requestParameters Request parameters.
|
|
8225
|
+
* @param {*} [options] Override http request option.
|
|
8226
|
+
* @throws {RequiredError}
|
|
8227
|
+
* @memberof WorkspaceManagementApi
|
|
8228
|
+
*/
|
|
8229
|
+
getWorkspace(requestParameters: WorkspaceManagementApiGetWorkspaceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Workspace, any, {}>>;
|
|
8230
|
+
/**
|
|
8231
|
+
*
|
|
8232
|
+
* @summary Invite a new member to the workspace
|
|
8233
|
+
* @param {WorkspaceManagementApiInviteMemberRequest} requestParameters Request parameters.
|
|
8234
|
+
* @param {*} [options] Override http request option.
|
|
8235
|
+
* @throws {RequiredError}
|
|
8236
|
+
* @memberof WorkspaceManagementApi
|
|
8237
|
+
*/
|
|
8238
|
+
inviteMember(requestParameters: WorkspaceManagementApiInviteMemberRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Member[], any, {}>>;
|
|
8239
|
+
/**
|
|
8240
|
+
*
|
|
8241
|
+
* @summary List all members of a workspace
|
|
8242
|
+
* @param {WorkspaceManagementApiListMembersRequest} requestParameters Request parameters.
|
|
8243
|
+
* @param {*} [options] Override http request option.
|
|
8244
|
+
* @throws {RequiredError}
|
|
8245
|
+
* @memberof WorkspaceManagementApi
|
|
8246
|
+
*/
|
|
8247
|
+
listMembers(requestParameters: WorkspaceManagementApiListMembersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Member[], any, {}>>;
|
|
8248
|
+
/**
|
|
8249
|
+
*
|
|
8250
|
+
* @summary List workspaces
|
|
8251
|
+
* @param {*} [options] Override http request option.
|
|
8252
|
+
* @throws {RequiredError}
|
|
8253
|
+
* @memberof WorkspaceManagementApi
|
|
8254
|
+
*/
|
|
8255
|
+
listWorkspaces(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Workspace[], any, {}>>;
|
|
8256
|
+
/**
|
|
8257
|
+
*
|
|
8258
|
+
* @summary Remove a member from the workspace
|
|
8259
|
+
* @param {WorkspaceManagementApiRemoveMemberRequest} requestParameters Request parameters.
|
|
8260
|
+
* @param {*} [options] Override http request option.
|
|
8261
|
+
* @throws {RequiredError}
|
|
8262
|
+
* @memberof WorkspaceManagementApi
|
|
8263
|
+
*/
|
|
8264
|
+
removeMember(requestParameters: WorkspaceManagementApiRemoveMemberRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Member[], any, {}>>;
|
|
8265
|
+
/**
|
|
8266
|
+
*
|
|
8267
|
+
* @summary Update a member\'s role in the workspace
|
|
8268
|
+
* @param {WorkspaceManagementApiUpdateMemberRoleRequest} requestParameters Request parameters.
|
|
8269
|
+
* @param {*} [options] Override http request option.
|
|
8270
|
+
* @throws {RequiredError}
|
|
8271
|
+
* @memberof WorkspaceManagementApi
|
|
8272
|
+
*/
|
|
8273
|
+
updateMemberRole(requestParameters: WorkspaceManagementApiUpdateMemberRoleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Member[], any, {}>>;
|
|
8274
|
+
/**
|
|
8275
|
+
*
|
|
8276
|
+
* @summary Update the details of a workspace
|
|
8277
|
+
* @param {WorkspaceManagementApiUpdateWorkspaceRequest} requestParameters Request parameters.
|
|
8278
|
+
* @param {*} [options] Override http request option.
|
|
8279
|
+
* @throws {RequiredError}
|
|
8280
|
+
* @memberof WorkspaceManagementApi
|
|
8281
|
+
*/
|
|
8282
|
+
updateWorkspace(requestParameters: WorkspaceManagementApiUpdateWorkspaceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Workspace, any, {}>>;
|
|
8283
|
+
}
|