system-initiative-api-client 1.4.0 → 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 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
@@ -924,6 +943,56 @@ export interface CreateVariantQualificationFuncV1Response {
924
943
  */
925
944
  'funcId': string;
926
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
+ }
927
996
  /**
928
997
  *
929
998
  * @export
@@ -963,6 +1032,19 @@ export interface DeleteSecretV1Response {
963
1032
  */
964
1033
  'success': boolean;
965
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
+ }
966
1048
  /**
967
1049
  *
968
1050
  * @export
@@ -1765,6 +1847,19 @@ export interface HashMapValue {
1765
1847
  */
1766
1848
  'secrets': Array<SecretV1>;
1767
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
+ }
1768
1863
  /**
1769
1864
  *
1770
1865
  * @export
@@ -1925,6 +2020,43 @@ export interface ManagingConnectionViewV1 {
1925
2020
  */
1926
2021
  'componentName': string;
1927
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
+ }
1928
2060
  /**
1929
2061
  * Response for merge status
1930
2062
  * @export
@@ -2130,6 +2262,19 @@ export interface PutOnHoldActionV1Response {
2130
2262
  */
2131
2263
  'success': boolean;
2132
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
+ }
2133
2278
  /**
2134
2279
  *
2135
2280
  * @export
@@ -2673,6 +2818,25 @@ export interface UpdateFuncV1Response {
2673
2818
  */
2674
2819
  'success': boolean;
2675
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
+ }
2676
2840
  /**
2677
2841
  *
2678
2842
  * @export
@@ -2762,6 +2926,31 @@ export interface UpdateSecretV1Response {
2762
2926
  */
2763
2927
  'secret': SecretV1;
2764
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
+ }
2765
2954
  /**
2766
2955
  *
2767
2956
  * @export
@@ -2831,6 +3020,92 @@ export interface WhoamiResponse {
2831
3020
  */
2832
3021
  'workspaceId': string;
2833
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
+ }
2834
3109
  /**
2835
3110
  * ActionsApi - axios parameter creator
2836
3111
  * @export
@@ -3677,6 +3952,16 @@ export declare const ComponentsApiAxiosParamCreator: (configuration?: Configurat
3677
3952
  * @throws {RequiredError}
3678
3953
  */
3679
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>;
3680
3965
  /**
3681
3966
  *
3682
3967
  * @summary Create a component
@@ -3840,6 +4125,16 @@ export declare const ComponentsApiFp: (configuration?: Configuration) => {
3840
4125
  * @throws {RequiredError}
3841
4126
  */
3842
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>>;
3843
4138
  /**
3844
4139
  *
3845
4140
  * @summary Create a component
@@ -4000,6 +4295,14 @@ export declare const ComponentsApiFactory: (configuration?: Configuration, baseP
4000
4295
  * @throws {RequiredError}
4001
4296
  */
4002
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>;
4003
4306
  /**
4004
4307
  *
4005
4308
  * @summary Create a component
@@ -4128,6 +4431,15 @@ export interface ComponentsApiInterface {
4128
4431
  * @memberof ComponentsApiInterface
4129
4432
  */
4130
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>;
4131
4443
  /**
4132
4444
  *
4133
4445
  * @summary Create a component
@@ -4286,6 +4598,31 @@ export interface ComponentsApiAddActionRequest {
4286
4598
  */
4287
4599
  readonly addActionV1Request: AddActionV1Request;
4288
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
+ }
4289
4626
  /**
4290
4627
  * Request parameters for createComponent operation in ComponentsApi.
4291
4628
  * @export
@@ -4688,6 +5025,15 @@ export declare class ComponentsApi extends BaseAPI implements ComponentsApiInter
4688
5025
  * @memberof ComponentsApi
4689
5026
  */
4690
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, {}>>;
4691
5037
  /**
4692
5038
  *
4693
5039
  * @summary Create a component
@@ -5394,38 +5740,98 @@ export declare const SchemasApiAxiosParamCreator: (configuration?: Configuration
5394
5740
  createVariantQualification: (workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, createVariantQualificationFuncV1Request: CreateVariantQualificationFuncV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5395
5741
  /**
5396
5742
  *
5397
- * @summary Find schema by name or schema id
5743
+ * @summary Delete the binding between an action func and the schema variant
5398
5744
  * @param {string} workspaceId Workspace identifier
5399
5745
  * @param {string} changeSetId Change Set identifier
5400
- * @param {string | null} [schema]
5401
- * @param {string | null} [schemaId]
5746
+ * @param {string} schemaId Schema identifier
5747
+ * @param {string} schemaVariantId Schema variant identifier
5748
+ * @param {string} funcId Func identifier
5402
5749
  * @param {*} [options] Override http request option.
5403
5750
  * @throws {RequiredError}
5404
5751
  */
5405
- findSchema: (workspaceId: string, changeSetId: string, schema?: string | null, schemaId?: string | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5752
+ detachActionFuncBinding: (workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, funcId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5406
5753
  /**
5407
5754
  *
5408
- * @summary Get the default variant for a schema id
5755
+ * @summary Delete the binding between an authentication func and the schema variant
5409
5756
  * @param {string} workspaceId Workspace identifier
5410
5757
  * @param {string} changeSetId Change Set identifier
5411
5758
  * @param {string} schemaId Schema identifier
5759
+ * @param {string} schemaVariantId Schema variant identifier
5760
+ * @param {string} funcId Func identifier
5412
5761
  * @param {*} [options] Override http request option.
5413
5762
  * @throws {RequiredError}
5414
5763
  */
5415
- getDefaultVariant: (workspaceId: string, changeSetId: string, schemaId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5764
+ detachAuthenticationFuncBinding: (workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, funcId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5416
5765
  /**
5417
5766
  *
5418
- * @summary Get a schema by schema id
5767
+ * @summary Delete the binding between a codegen func and the schema variant
5419
5768
  * @param {string} workspaceId Workspace identifier
5420
5769
  * @param {string} changeSetId Change Set identifier
5421
5770
  * @param {string} schemaId Schema identifier
5771
+ * @param {string} schemaVariantId Schema variant identifier
5772
+ * @param {string} funcId Func identifier
5422
5773
  * @param {*} [options] Override http request option.
5423
5774
  * @throws {RequiredError}
5424
5775
  */
5425
- getSchema: (workspaceId: string, changeSetId: string, schemaId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5776
+ detachCodegenFuncBinding: (workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, funcId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5426
5777
  /**
5427
5778
  *
5428
- * @summary Get a schema variant by schema id and schema variant id
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>;
5822
+ /**
5823
+ *
5824
+ * @summary Get a schema by schema id
5825
+ * @param {string} workspaceId Workspace identifier
5826
+ * @param {string} changeSetId Change Set identifier
5827
+ * @param {string} schemaId Schema identifier
5828
+ * @param {*} [options] Override http request option.
5829
+ * @throws {RequiredError}
5830
+ */
5831
+ getSchema: (workspaceId: string, changeSetId: string, schemaId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5832
+ /**
5833
+ *
5834
+ * @summary Get a schema variant by schema id and schema variant id
5429
5835
  * @param {string} workspaceId Workspace identifier
5430
5836
  * @param {string} changeSetId Change Set identifier
5431
5837
  * @param {string} schemaId Schema identifier
@@ -5553,6 +5959,66 @@ export declare const SchemasApiFp: (configuration?: Configuration) => {
5553
5959
  * @throws {RequiredError}
5554
5960
  */
5555
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>>;
5556
6022
  /**
5557
6023
  *
5558
6024
  * @summary Find schema by name or schema id
@@ -5692,6 +6158,46 @@ export declare const SchemasApiFactory: (configuration?: Configuration, basePath
5692
6158
  * @throws {RequiredError}
5693
6159
  */
5694
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>;
5695
6201
  /**
5696
6202
  *
5697
6203
  * @summary Find schema by name or schema id
@@ -5817,6 +6323,51 @@ export interface SchemasApiInterface {
5817
6323
  * @memberof SchemasApiInterface
5818
6324
  */
5819
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>;
5820
6371
  /**
5821
6372
  *
5822
6373
  * @summary Find schema by name or schema id
@@ -6101,172 +6652,357 @@ export interface SchemasApiCreateVariantQualificationRequest {
6101
6652
  readonly createVariantQualificationFuncV1Request: CreateVariantQualificationFuncV1Request;
6102
6653
  }
6103
6654
  /**
6104
- * Request parameters for findSchema operation in SchemasApi.
6655
+ * Request parameters for detachActionFuncBinding operation in SchemasApi.
6105
6656
  * @export
6106
- * @interface SchemasApiFindSchemaRequest
6657
+ * @interface SchemasApiDetachActionFuncBindingRequest
6107
6658
  */
6108
- export interface SchemasApiFindSchemaRequest {
6659
+ export interface SchemasApiDetachActionFuncBindingRequest {
6109
6660
  /**
6110
6661
  * Workspace identifier
6111
6662
  * @type {string}
6112
- * @memberof SchemasApiFindSchema
6663
+ * @memberof SchemasApiDetachActionFuncBinding
6113
6664
  */
6114
6665
  readonly workspaceId: string;
6115
6666
  /**
6116
6667
  * Change Set identifier
6117
6668
  * @type {string}
6118
- * @memberof SchemasApiFindSchema
6669
+ * @memberof SchemasApiDetachActionFuncBinding
6119
6670
  */
6120
6671
  readonly changeSetId: string;
6121
6672
  /**
6122
- *
6673
+ * Schema identifier
6123
6674
  * @type {string}
6124
- * @memberof SchemasApiFindSchema
6675
+ * @memberof SchemasApiDetachActionFuncBinding
6125
6676
  */
6126
- readonly schema?: string | null;
6677
+ readonly schemaId: string;
6127
6678
  /**
6128
- *
6679
+ * Schema variant identifier
6129
6680
  * @type {string}
6130
- * @memberof SchemasApiFindSchema
6681
+ * @memberof SchemasApiDetachActionFuncBinding
6131
6682
  */
6132
- readonly schemaId?: string | null;
6683
+ readonly schemaVariantId: string;
6684
+ /**
6685
+ * Func identifier
6686
+ * @type {string}
6687
+ * @memberof SchemasApiDetachActionFuncBinding
6688
+ */
6689
+ readonly funcId: string;
6133
6690
  }
6134
6691
  /**
6135
- * Request parameters for getDefaultVariant operation in SchemasApi.
6692
+ * Request parameters for detachAuthenticationFuncBinding operation in SchemasApi.
6136
6693
  * @export
6137
- * @interface SchemasApiGetDefaultVariantRequest
6694
+ * @interface SchemasApiDetachAuthenticationFuncBindingRequest
6138
6695
  */
6139
- export interface SchemasApiGetDefaultVariantRequest {
6696
+ export interface SchemasApiDetachAuthenticationFuncBindingRequest {
6140
6697
  /**
6141
6698
  * Workspace identifier
6142
6699
  * @type {string}
6143
- * @memberof SchemasApiGetDefaultVariant
6700
+ * @memberof SchemasApiDetachAuthenticationFuncBinding
6144
6701
  */
6145
6702
  readonly workspaceId: string;
6146
6703
  /**
6147
6704
  * Change Set identifier
6148
6705
  * @type {string}
6149
- * @memberof SchemasApiGetDefaultVariant
6706
+ * @memberof SchemasApiDetachAuthenticationFuncBinding
6150
6707
  */
6151
6708
  readonly changeSetId: string;
6152
6709
  /**
6153
6710
  * Schema identifier
6154
6711
  * @type {string}
6155
- * @memberof SchemasApiGetDefaultVariant
6712
+ * @memberof SchemasApiDetachAuthenticationFuncBinding
6156
6713
  */
6157
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;
6158
6727
  }
6159
6728
  /**
6160
- * Request parameters for getSchema operation in SchemasApi.
6729
+ * Request parameters for detachCodegenFuncBinding operation in SchemasApi.
6161
6730
  * @export
6162
- * @interface SchemasApiGetSchemaRequest
6731
+ * @interface SchemasApiDetachCodegenFuncBindingRequest
6163
6732
  */
6164
- export interface SchemasApiGetSchemaRequest {
6733
+ export interface SchemasApiDetachCodegenFuncBindingRequest {
6165
6734
  /**
6166
6735
  * Workspace identifier
6167
6736
  * @type {string}
6168
- * @memberof SchemasApiGetSchema
6737
+ * @memberof SchemasApiDetachCodegenFuncBinding
6169
6738
  */
6170
6739
  readonly workspaceId: string;
6171
6740
  /**
6172
6741
  * Change Set identifier
6173
6742
  * @type {string}
6174
- * @memberof SchemasApiGetSchema
6743
+ * @memberof SchemasApiDetachCodegenFuncBinding
6175
6744
  */
6176
6745
  readonly changeSetId: string;
6177
6746
  /**
6178
6747
  * Schema identifier
6179
6748
  * @type {string}
6180
- * @memberof SchemasApiGetSchema
6749
+ * @memberof SchemasApiDetachCodegenFuncBinding
6181
6750
  */
6182
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;
6183
6764
  }
6184
6765
  /**
6185
- * Request parameters for getVariant operation in SchemasApi.
6766
+ * Request parameters for detachManagementFuncBinding operation in SchemasApi.
6186
6767
  * @export
6187
- * @interface SchemasApiGetVariantRequest
6768
+ * @interface SchemasApiDetachManagementFuncBindingRequest
6188
6769
  */
6189
- export interface SchemasApiGetVariantRequest {
6770
+ export interface SchemasApiDetachManagementFuncBindingRequest {
6190
6771
  /**
6191
6772
  * Workspace identifier
6192
6773
  * @type {string}
6193
- * @memberof SchemasApiGetVariant
6774
+ * @memberof SchemasApiDetachManagementFuncBinding
6194
6775
  */
6195
6776
  readonly workspaceId: string;
6196
6777
  /**
6197
6778
  * Change Set identifier
6198
6779
  * @type {string}
6199
- * @memberof SchemasApiGetVariant
6780
+ * @memberof SchemasApiDetachManagementFuncBinding
6200
6781
  */
6201
6782
  readonly changeSetId: string;
6202
6783
  /**
6203
6784
  * Schema identifier
6204
6785
  * @type {string}
6205
- * @memberof SchemasApiGetVariant
6786
+ * @memberof SchemasApiDetachManagementFuncBinding
6206
6787
  */
6207
6788
  readonly schemaId: string;
6208
6789
  /**
6209
6790
  * Schema variant identifier
6210
6791
  * @type {string}
6211
- * @memberof SchemasApiGetVariant
6792
+ * @memberof SchemasApiDetachManagementFuncBinding
6212
6793
  */
6213
6794
  readonly schemaVariantId: string;
6795
+ /**
6796
+ * Func identifier
6797
+ * @type {string}
6798
+ * @memberof SchemasApiDetachManagementFuncBinding
6799
+ */
6800
+ readonly funcId: string;
6214
6801
  }
6215
6802
  /**
6216
- * Request parameters for listSchemas operation in SchemasApi.
6803
+ * Request parameters for detachQualificationFuncBinding operation in SchemasApi.
6217
6804
  * @export
6218
- * @interface SchemasApiListSchemasRequest
6805
+ * @interface SchemasApiDetachQualificationFuncBindingRequest
6219
6806
  */
6220
- export interface SchemasApiListSchemasRequest {
6807
+ export interface SchemasApiDetachQualificationFuncBindingRequest {
6221
6808
  /**
6222
6809
  * Workspace identifier
6223
6810
  * @type {string}
6224
- * @memberof SchemasApiListSchemas
6811
+ * @memberof SchemasApiDetachQualificationFuncBinding
6225
6812
  */
6226
6813
  readonly workspaceId: string;
6227
6814
  /**
6228
6815
  * Change Set identifier
6229
6816
  * @type {string}
6230
- * @memberof SchemasApiListSchemas
6817
+ * @memberof SchemasApiDetachQualificationFuncBinding
6231
6818
  */
6232
6819
  readonly changeSetId: string;
6233
6820
  /**
6234
- * Maximum number of results to return (default: 50, max: 300)
6821
+ * Schema identifier
6235
6822
  * @type {string}
6236
- * @memberof SchemasApiListSchemas
6823
+ * @memberof SchemasApiDetachQualificationFuncBinding
6237
6824
  */
6238
- readonly limit?: string;
6825
+ readonly schemaId: string;
6239
6826
  /**
6240
- * Cursor for pagination (SchemaId of the last item from previous page)
6827
+ * Schema variant identifier
6241
6828
  * @type {string}
6242
- * @memberof SchemasApiListSchemas
6829
+ * @memberof SchemasApiDetachQualificationFuncBinding
6243
6830
  */
6244
- readonly cursor?: string;
6831
+ readonly schemaVariantId: string;
6832
+ /**
6833
+ * Func identifier
6834
+ * @type {string}
6835
+ * @memberof SchemasApiDetachQualificationFuncBinding
6836
+ */
6837
+ readonly funcId: string;
6245
6838
  }
6246
6839
  /**
6247
- * Request parameters for searchSchemas operation in SchemasApi.
6840
+ * Request parameters for findSchema operation in SchemasApi.
6248
6841
  * @export
6249
- * @interface SchemasApiSearchSchemasRequest
6842
+ * @interface SchemasApiFindSchemaRequest
6250
6843
  */
6251
- export interface SchemasApiSearchSchemasRequest {
6844
+ export interface SchemasApiFindSchemaRequest {
6252
6845
  /**
6253
6846
  * Workspace identifier
6254
6847
  * @type {string}
6255
- * @memberof SchemasApiSearchSchemas
6848
+ * @memberof SchemasApiFindSchema
6256
6849
  */
6257
6850
  readonly workspaceId: string;
6258
6851
  /**
6259
6852
  * Change Set identifier
6260
6853
  * @type {string}
6261
- * @memberof SchemasApiSearchSchemas
6854
+ * @memberof SchemasApiFindSchema
6262
6855
  */
6263
6856
  readonly changeSetId: string;
6264
6857
  /**
6265
6858
  *
6266
- * @type {SearchSchemasV1Request}
6267
- * @memberof SchemasApiSearchSchemas
6859
+ * @type {string}
6860
+ * @memberof SchemasApiFindSchema
6268
6861
  */
6269
- readonly searchSchemasV1Request: SearchSchemasV1Request;
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;
6270
7006
  }
6271
7007
  /**
6272
7008
  * Request parameters for unlockSchema operation in SchemasApi.
@@ -6391,6 +7127,51 @@ export declare class SchemasApi extends BaseAPI implements SchemasApiInterface {
6391
7127
  * @memberof SchemasApi
6392
7128
  */
6393
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, {}>>;
6394
7175
  /**
6395
7176
  *
6396
7177
  * @summary Find schema by name or schema id
@@ -6958,3 +7739,545 @@ export declare class WhoamiApi extends BaseAPI implements WhoamiApiInterface {
6958
7739
  */
6959
7740
  whoami(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WhoamiResponse, any, {}>>;
6960
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
+ }