system-initiative-api-client 1.9.0 → 1.11.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
@@ -205,29 +205,66 @@ export interface ApiSuccessString {
205
205
  /**
206
206
  *
207
207
  * @export
208
+ * @interface AttributeArgumentBindingRequest
209
+ */
210
+ export interface AttributeArgumentBindingRequest {
211
+ /**
212
+ * Element type for Array arguments. Required when kind is \'Array\'. Specifies the type of array elements.
213
+ * @type {string}
214
+ * @memberof AttributeArgumentBindingRequest
215
+ */
216
+ 'elementKind'?: string | null;
217
+ /**
218
+ * Type of the argument. Valid values: \"Any\", \"Array\", \"Boolean\", \"Float\", \"Integer\", \"Json\", \"Map\", \"Object\", \"String\". Use \'Array\' with element_kind for typed arrays.
219
+ * @type {string}
220
+ * @memberof AttributeArgumentBindingRequest
221
+ */
222
+ 'kind': string;
223
+ /**
224
+ * Name of the function argument (e.g., \"instanceType\", \"region\", \"tags\")
225
+ * @type {string}
226
+ * @memberof AttributeArgumentBindingRequest
227
+ */
228
+ 'name': string;
229
+ /**
230
+ * Prop ID to bind this argument to. Either prop_id or static_value must be provided.
231
+ * @type {string}
232
+ * @memberof AttributeArgumentBindingRequest
233
+ */
234
+ 'propId'?: string | null;
235
+ /**
236
+ *
237
+ * @type {any}
238
+ * @memberof AttributeArgumentBindingRequest
239
+ */
240
+ 'staticValue'?: any;
241
+ }
242
+ /**
243
+ * The response payload when materialized views or data is being built referenced by present or expected data.
244
+ * @export
208
245
  * @interface BuildingResponseV1
209
246
  */
210
247
  export interface BuildingResponseV1 {
211
248
  /**
212
- *
249
+ * The estimated time for the data being built to be completed.
213
250
  * @type {number}
214
251
  * @memberof BuildingResponseV1
215
252
  */
216
253
  'estimatedCompletionSeconds': number;
217
254
  /**
218
- *
255
+ * The message reflecting the reason or state of the data being built.
219
256
  * @type {string}
220
257
  * @memberof BuildingResponseV1
221
258
  */
222
259
  'message': string;
223
260
  /**
224
- *
261
+ * The number of seconds recommended between retries for the desired data.
225
262
  * @type {number}
226
263
  * @memberof BuildingResponseV1
227
264
  */
228
265
  'retryAfterSeconds': number;
229
266
  /**
230
- *
267
+ * The status of the data being built.
231
268
  * @type {string}
232
269
  * @memberof BuildingResponseV1
233
270
  */
@@ -717,6 +754,50 @@ export interface CreateSecretV1Response {
717
754
  */
718
755
  'secret': SecretV1;
719
756
  }
757
+ /**
758
+ *
759
+ * @export
760
+ * @interface CreateTransformationFuncV1Request
761
+ */
762
+ export interface CreateTransformationFuncV1Request {
763
+ /**
764
+ *
765
+ * @type {string}
766
+ * @memberof CreateTransformationFuncV1Request
767
+ */
768
+ 'code': string;
769
+ /**
770
+ *
771
+ * @type {string}
772
+ * @memberof CreateTransformationFuncV1Request
773
+ */
774
+ 'description'?: string | null;
775
+ /**
776
+ *
777
+ * @type {string}
778
+ * @memberof CreateTransformationFuncV1Request
779
+ */
780
+ 'displayName'?: string | null;
781
+ /**
782
+ *
783
+ * @type {string}
784
+ * @memberof CreateTransformationFuncV1Request
785
+ */
786
+ 'name': string;
787
+ }
788
+ /**
789
+ *
790
+ * @export
791
+ * @interface CreateTransformationFuncV1Response
792
+ */
793
+ export interface CreateTransformationFuncV1Response {
794
+ /**
795
+ *
796
+ * @type {string}
797
+ * @memberof CreateTransformationFuncV1Response
798
+ */
799
+ 'funcId': string;
800
+ }
720
801
  /**
721
802
  *
722
803
  * @export
@@ -753,6 +834,12 @@ export interface CreateVariantActionFuncV1Request {
753
834
  * @memberof CreateVariantActionFuncV1Request
754
835
  */
755
836
  'name': string;
837
+ /**
838
+ *
839
+ * @type {boolean}
840
+ * @memberof CreateVariantActionFuncV1Request
841
+ */
842
+ 'skipOverlay'?: boolean | null;
756
843
  }
757
844
  /**
758
845
  *
@@ -767,6 +854,80 @@ export interface CreateVariantActionFuncV1Response {
767
854
  */
768
855
  'funcId': string;
769
856
  }
857
+ /**
858
+ *
859
+ * @export
860
+ * @interface CreateVariantAttributeFuncV1Request
861
+ */
862
+ export interface CreateVariantAttributeFuncV1Request {
863
+ /**
864
+ * Function arguments with their bindings (input sources). Each argument defines its type and where its value comes from.
865
+ * @type {Array<AttributeArgumentBindingRequest>}
866
+ * @memberof CreateVariantAttributeFuncV1Request
867
+ */
868
+ 'argumentBindings': Array<AttributeArgumentBindingRequest>;
869
+ /**
870
+ * TypeScript code for the function. Should export a main function that takes arguments and returns a value.
871
+ * @type {string}
872
+ * @memberof CreateVariantAttributeFuncV1Request
873
+ */
874
+ 'code': string;
875
+ /**
876
+ * Optional component ID for component-level bindings. If not provided, creates a schema variant-level binding.
877
+ * @type {string}
878
+ * @memberof CreateVariantAttributeFuncV1Request
879
+ */
880
+ 'componentId'?: string | null;
881
+ /**
882
+ * Description of what the function does
883
+ * @type {string}
884
+ * @memberof CreateVariantAttributeFuncV1Request
885
+ */
886
+ 'description'?: string | null;
887
+ /**
888
+ * Human-readable display name
889
+ * @type {string}
890
+ * @memberof CreateVariantAttributeFuncV1Request
891
+ */
892
+ 'displayName'?: string | null;
893
+ /**
894
+ * Unique name for the function (e.g., \"awsEC2SetInstanceType\")
895
+ * @type {string}
896
+ * @memberof CreateVariantAttributeFuncV1Request
897
+ */
898
+ 'name': string;
899
+ /**
900
+ * Prop ID where the function output will be written (required)
901
+ * @type {string}
902
+ * @memberof CreateVariantAttributeFuncV1Request
903
+ */
904
+ 'propId': string;
905
+ /**
906
+ *
907
+ * @type {boolean}
908
+ * @memberof CreateVariantAttributeFuncV1Request
909
+ */
910
+ 'skipOverlay'?: boolean | null;
911
+ }
912
+ /**
913
+ *
914
+ * @export
915
+ * @interface CreateVariantAttributeFuncV1Response
916
+ */
917
+ export interface CreateVariantAttributeFuncV1Response {
918
+ /**
919
+ *
920
+ * @type {string}
921
+ * @memberof CreateVariantAttributeFuncV1Response
922
+ */
923
+ 'attributePrototypeId': string;
924
+ /**
925
+ *
926
+ * @type {string}
927
+ * @memberof CreateVariantAttributeFuncV1Response
928
+ */
929
+ 'funcId': string;
930
+ }
770
931
  /**
771
932
  *
772
933
  * @export
@@ -841,6 +1002,12 @@ export interface CreateVariantCodegenFuncV1Request {
841
1002
  * @memberof CreateVariantCodegenFuncV1Request
842
1003
  */
843
1004
  'name': string;
1005
+ /**
1006
+ *
1007
+ * @type {boolean}
1008
+ * @memberof CreateVariantCodegenFuncV1Request
1009
+ */
1010
+ 'skipOverlay'?: boolean | null;
844
1011
  }
845
1012
  /**
846
1013
  *
@@ -885,6 +1052,12 @@ export interface CreateVariantManagementFuncV1Request {
885
1052
  * @memberof CreateVariantManagementFuncV1Request
886
1053
  */
887
1054
  'name': string;
1055
+ /**
1056
+ *
1057
+ * @type {boolean}
1058
+ * @memberof CreateVariantManagementFuncV1Request
1059
+ */
1060
+ 'skipOverlay'?: boolean | null;
888
1061
  }
889
1062
  /**
890
1063
  *
@@ -929,6 +1102,12 @@ export interface CreateVariantQualificationFuncV1Request {
929
1102
  * @memberof CreateVariantQualificationFuncV1Request
930
1103
  */
931
1104
  'name': string;
1105
+ /**
1106
+ *
1107
+ * @type {boolean}
1108
+ * @memberof CreateVariantQualificationFuncV1Request
1109
+ */
1110
+ 'skipOverlay'?: boolean | null;
932
1111
  }
933
1112
  /**
934
1113
  *
@@ -1536,62 +1715,6 @@ export interface FuncRunViewV1 {
1536
1715
  */
1537
1716
  'updatedAt': string;
1538
1717
  }
1539
- /**
1540
- *
1541
- * @export
1542
- * @interface GenerateTemplateV1Request
1543
- */
1544
- export interface GenerateTemplateV1Request {
1545
- /**
1546
- *
1547
- * @type {string}
1548
- * @memberof GenerateTemplateV1Request
1549
- */
1550
- 'assetName': string;
1551
- /**
1552
- *
1553
- * @type {string}
1554
- * @memberof GenerateTemplateV1Request
1555
- */
1556
- 'category'?: string | null;
1557
- /**
1558
- *
1559
- * @type {Array<string>}
1560
- * @memberof GenerateTemplateV1Request
1561
- */
1562
- 'componentIds': Array<string>;
1563
- /**
1564
- *
1565
- * @type {string}
1566
- * @memberof GenerateTemplateV1Request
1567
- */
1568
- 'funcName': string;
1569
- }
1570
- /**
1571
- *
1572
- * @export
1573
- * @interface GenerateTemplateV1Response
1574
- */
1575
- export interface GenerateTemplateV1Response {
1576
- /**
1577
- *
1578
- * @type {string}
1579
- * @memberof GenerateTemplateV1Response
1580
- */
1581
- 'funcId': string;
1582
- /**
1583
- *
1584
- * @type {string}
1585
- * @memberof GenerateTemplateV1Response
1586
- */
1587
- 'schemaId': string;
1588
- /**
1589
- *
1590
- * @type {string}
1591
- * @memberof GenerateTemplateV1Response
1592
- */
1593
- 'schemaVariantId': string;
1594
- }
1595
1718
  /**
1596
1719
  *
1597
1720
  * @export
@@ -4173,16 +4296,6 @@ export declare const ComponentsApiAxiosParamCreator: (configuration?: Configurat
4173
4296
  * @throws {RequiredError}
4174
4297
  */
4175
4298
  findComponent: (workspaceId: string, changeSetId: string, component?: string | null, componentId?: string | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4176
- /**
4177
- *
4178
- * @summary Generate a template
4179
- * @param {string} workspaceId Workspace identifier
4180
- * @param {string} changeSetId Change Set identifier
4181
- * @param {GenerateTemplateV1Request} generateTemplateV1Request
4182
- * @param {*} [options] Override http request option.
4183
- * @throws {RequiredError}
4184
- */
4185
- generateTemplate: (workspaceId: string, changeSetId: string, generateTemplateV1Request: GenerateTemplateV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4186
4299
  /**
4187
4300
  *
4188
4301
  * @summary Get a component by component Id
@@ -4356,16 +4469,6 @@ export declare const ComponentsApiFp: (configuration?: Configuration) => {
4356
4469
  * @throws {RequiredError}
4357
4470
  */
4358
4471
  findComponent(workspaceId: string, changeSetId: string, component?: string | null, componentId?: string | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetComponentV1Response>>;
4359
- /**
4360
- *
4361
- * @summary Generate a template
4362
- * @param {string} workspaceId Workspace identifier
4363
- * @param {string} changeSetId Change Set identifier
4364
- * @param {GenerateTemplateV1Request} generateTemplateV1Request
4365
- * @param {*} [options] Override http request option.
4366
- * @throws {RequiredError}
4367
- */
4368
- generateTemplate(workspaceId: string, changeSetId: string, generateTemplateV1Request: GenerateTemplateV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GenerateTemplateV1Response>>;
4369
4472
  /**
4370
4473
  *
4371
4474
  * @summary Get a component by component Id
@@ -4520,14 +4623,6 @@ export declare const ComponentsApiFactory: (configuration?: Configuration, baseP
4520
4623
  * @throws {RequiredError}
4521
4624
  */
4522
4625
  findComponent(requestParameters: ComponentsApiFindComponentRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetComponentV1Response>;
4523
- /**
4524
- *
4525
- * @summary Generate a template
4526
- * @param {ComponentsApiGenerateTemplateRequest} requestParameters Request parameters.
4527
- * @param {*} [options] Override http request option.
4528
- * @throws {RequiredError}
4529
- */
4530
- generateTemplate(requestParameters: ComponentsApiGenerateTemplateRequest, options?: RawAxiosRequestConfig): AxiosPromise<GenerateTemplateV1Response>;
4531
4626
  /**
4532
4627
  *
4533
4628
  * @summary Get a component by component Id
@@ -4671,15 +4766,6 @@ export interface ComponentsApiInterface {
4671
4766
  * @memberof ComponentsApiInterface
4672
4767
  */
4673
4768
  findComponent(requestParameters: ComponentsApiFindComponentRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetComponentV1Response>;
4674
- /**
4675
- *
4676
- * @summary Generate a template
4677
- * @param {ComponentsApiGenerateTemplateRequest} requestParameters Request parameters.
4678
- * @param {*} [options] Override http request option.
4679
- * @throws {RequiredError}
4680
- * @memberof ComponentsApiInterface
4681
- */
4682
- generateTemplate(requestParameters: ComponentsApiGenerateTemplateRequest, options?: RawAxiosRequestConfig): AxiosPromise<GenerateTemplateV1Response>;
4683
4769
  /**
4684
4770
  *
4685
4771
  * @summary Get a component by component Id
@@ -4971,31 +5057,6 @@ export interface ComponentsApiFindComponentRequest {
4971
5057
  */
4972
5058
  readonly componentId?: string | null;
4973
5059
  }
4974
- /**
4975
- * Request parameters for generateTemplate operation in ComponentsApi.
4976
- * @export
4977
- * @interface ComponentsApiGenerateTemplateRequest
4978
- */
4979
- export interface ComponentsApiGenerateTemplateRequest {
4980
- /**
4981
- * Workspace identifier
4982
- * @type {string}
4983
- * @memberof ComponentsApiGenerateTemplate
4984
- */
4985
- readonly workspaceId: string;
4986
- /**
4987
- * Change Set identifier
4988
- * @type {string}
4989
- * @memberof ComponentsApiGenerateTemplate
4990
- */
4991
- readonly changeSetId: string;
4992
- /**
4993
- *
4994
- * @type {GenerateTemplateV1Request}
4995
- * @memberof ComponentsApiGenerateTemplate
4996
- */
4997
- readonly generateTemplateV1Request: GenerateTemplateV1Request;
4998
- }
4999
5060
  /**
5000
5061
  * Request parameters for getComponent operation in ComponentsApi.
5001
5062
  * @export
@@ -5299,15 +5360,6 @@ export declare class ComponentsApi extends BaseAPI implements ComponentsApiInter
5299
5360
  * @memberof ComponentsApi
5300
5361
  */
5301
5362
  findComponent(requestParameters: ComponentsApiFindComponentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetComponentV1Response, any, {}>>;
5302
- /**
5303
- *
5304
- * @summary Generate a template
5305
- * @param {ComponentsApiGenerateTemplateRequest} requestParameters Request parameters.
5306
- * @param {*} [options] Override http request option.
5307
- * @throws {RequiredError}
5308
- * @memberof ComponentsApi
5309
- */
5310
- generateTemplate(requestParameters: ComponentsApiGenerateTemplateRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GenerateTemplateV1Response, any, {}>>;
5311
5363
  /**
5312
5364
  *
5313
5365
  * @summary Get a component by component Id
@@ -5561,6 +5613,16 @@ export declare class DebugFuncsApi extends BaseAPI implements DebugFuncsApiInter
5561
5613
  * @export
5562
5614
  */
5563
5615
  export declare const FuncsApiAxiosParamCreator: (configuration?: Configuration) => {
5616
+ /**
5617
+ *
5618
+ * @summary Create a transformation function
5619
+ * @param {string} workspaceId Workspace identifier
5620
+ * @param {string} changeSetId Change Set identifier
5621
+ * @param {CreateTransformationFuncV1Request} createTransformationFuncV1Request
5622
+ * @param {*} [options] Override http request option.
5623
+ * @throws {RequiredError}
5624
+ */
5625
+ createTransformation: (workspaceId: string, changeSetId: string, createTransformationFuncV1Request: CreateTransformationFuncV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5564
5626
  /**
5565
5627
  *
5566
5628
  * @summary Get function details
@@ -5609,6 +5671,16 @@ export declare const FuncsApiAxiosParamCreator: (configuration?: Configuration)
5609
5671
  * @export
5610
5672
  */
5611
5673
  export declare const FuncsApiFp: (configuration?: Configuration) => {
5674
+ /**
5675
+ *
5676
+ * @summary Create a transformation function
5677
+ * @param {string} workspaceId Workspace identifier
5678
+ * @param {string} changeSetId Change Set identifier
5679
+ * @param {CreateTransformationFuncV1Request} createTransformationFuncV1Request
5680
+ * @param {*} [options] Override http request option.
5681
+ * @throws {RequiredError}
5682
+ */
5683
+ createTransformation(workspaceId: string, changeSetId: string, createTransformationFuncV1Request: CreateTransformationFuncV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateTransformationFuncV1Response>>;
5612
5684
  /**
5613
5685
  *
5614
5686
  * @summary Get function details
@@ -5657,6 +5729,14 @@ export declare const FuncsApiFp: (configuration?: Configuration) => {
5657
5729
  * @export
5658
5730
  */
5659
5731
  export declare const FuncsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
5732
+ /**
5733
+ *
5734
+ * @summary Create a transformation function
5735
+ * @param {FuncsApiCreateTransformationRequest} requestParameters Request parameters.
5736
+ * @param {*} [options] Override http request option.
5737
+ * @throws {RequiredError}
5738
+ */
5739
+ createTransformation(requestParameters: FuncsApiCreateTransformationRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateTransformationFuncV1Response>;
5660
5740
  /**
5661
5741
  *
5662
5742
  * @summary Get function details
@@ -5696,6 +5776,15 @@ export declare const FuncsApiFactory: (configuration?: Configuration, basePath?:
5696
5776
  * @interface FuncsApi
5697
5777
  */
5698
5778
  export interface FuncsApiInterface {
5779
+ /**
5780
+ *
5781
+ * @summary Create a transformation function
5782
+ * @param {FuncsApiCreateTransformationRequest} requestParameters Request parameters.
5783
+ * @param {*} [options] Override http request option.
5784
+ * @throws {RequiredError}
5785
+ * @memberof FuncsApiInterface
5786
+ */
5787
+ createTransformation(requestParameters: FuncsApiCreateTransformationRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateTransformationFuncV1Response>;
5699
5788
  /**
5700
5789
  *
5701
5790
  * @summary Get function details
@@ -5733,6 +5822,31 @@ export interface FuncsApiInterface {
5733
5822
  */
5734
5823
  updateFunc(requestParameters: FuncsApiUpdateFuncRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateFuncV1Response>;
5735
5824
  }
5825
+ /**
5826
+ * Request parameters for createTransformation operation in FuncsApi.
5827
+ * @export
5828
+ * @interface FuncsApiCreateTransformationRequest
5829
+ */
5830
+ export interface FuncsApiCreateTransformationRequest {
5831
+ /**
5832
+ * Workspace identifier
5833
+ * @type {string}
5834
+ * @memberof FuncsApiCreateTransformation
5835
+ */
5836
+ readonly workspaceId: string;
5837
+ /**
5838
+ * Change Set identifier
5839
+ * @type {string}
5840
+ * @memberof FuncsApiCreateTransformation
5841
+ */
5842
+ readonly changeSetId: string;
5843
+ /**
5844
+ *
5845
+ * @type {CreateTransformationFuncV1Request}
5846
+ * @memberof FuncsApiCreateTransformation
5847
+ */
5848
+ readonly createTransformationFuncV1Request: CreateTransformationFuncV1Request;
5849
+ }
5736
5850
  /**
5737
5851
  * Request parameters for getFunc operation in FuncsApi.
5738
5852
  * @export
@@ -5852,6 +5966,15 @@ export interface FuncsApiUpdateFuncRequest {
5852
5966
  * @extends {BaseAPI}
5853
5967
  */
5854
5968
  export declare class FuncsApi extends BaseAPI implements FuncsApiInterface {
5969
+ /**
5970
+ *
5971
+ * @summary Create a transformation function
5972
+ * @param {FuncsApiCreateTransformationRequest} requestParameters Request parameters.
5973
+ * @param {*} [options] Override http request option.
5974
+ * @throws {RequiredError}
5975
+ * @memberof FuncsApi
5976
+ */
5977
+ createTransformation(requestParameters: FuncsApiCreateTransformationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateTransformationFuncV1Response, any, {}>>;
5855
5978
  /**
5856
5979
  *
5857
5980
  * @summary Get function details
@@ -6063,6 +6186,16 @@ export declare class RootApi extends BaseAPI implements RootApiInterface {
6063
6186
  * @export
6064
6187
  */
6065
6188
  export declare const SchemasApiAxiosParamCreator: (configuration?: Configuration) => {
6189
+ /**
6190
+ *
6191
+ * @summary Contribute the default variant of a schema to the module index
6192
+ * @param {string} workspaceId Workspace identifier
6193
+ * @param {string} changeSetId Change Set identifier
6194
+ * @param {string} schemaId Schema identifier
6195
+ * @param {*} [options] Override http request option.
6196
+ * @throws {RequiredError}
6197
+ */
6198
+ contribute: (workspaceId: string, changeSetId: string, schemaId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6066
6199
  /**
6067
6200
  *
6068
6201
  * @summary Create a schema and it\'s default variant
@@ -6085,6 +6218,18 @@ export declare const SchemasApiAxiosParamCreator: (configuration?: Configuration
6085
6218
  * @throws {RequiredError}
6086
6219
  */
6087
6220
  createVariantAction: (workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, createVariantActionFuncV1Request: CreateVariantActionFuncV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6221
+ /**
6222
+ *
6223
+ * @summary Create an attribute function and attach to a schema variant
6224
+ * @param {string} workspaceId Workspace identifier
6225
+ * @param {string} changeSetId Change Set identifier
6226
+ * @param {string} schemaId Schema identifier
6227
+ * @param {string} schemaVariantId Schema variant identifier
6228
+ * @param {CreateVariantAttributeFuncV1Request} createVariantAttributeFuncV1Request
6229
+ * @param {*} [options] Override http request option.
6230
+ * @throws {RequiredError}
6231
+ */
6232
+ createVariantAttribute: (workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, createVariantAttributeFuncV1Request: CreateVariantAttributeFuncV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6088
6233
  /**
6089
6234
  *
6090
6235
  * @summary Create an authentication function and attach to a schema variant
@@ -6145,6 +6290,18 @@ export declare const SchemasApiAxiosParamCreator: (configuration?: Configuration
6145
6290
  * @throws {RequiredError}
6146
6291
  */
6147
6292
  detachActionFuncBinding: (workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, funcId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6293
+ /**
6294
+ *
6295
+ * @summary Delete the binding between an attribute func and the schema variant
6296
+ * @param {string} workspaceId Workspace identifier
6297
+ * @param {string} changeSetId Change Set identifier
6298
+ * @param {string} schemaId Schema identifier
6299
+ * @param {string} schemaVariantId Schema variant identifier
6300
+ * @param {string} funcId Func identifier
6301
+ * @param {*} [options] Override http request option.
6302
+ * @throws {RequiredError}
6303
+ */
6304
+ detachAttributeFuncBinding: (workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, funcId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6148
6305
  /**
6149
6306
  *
6150
6307
  * @summary Delete the binding between an authentication func and the schema variant
@@ -6294,6 +6451,16 @@ export declare const SchemasApiAxiosParamCreator: (configuration?: Configuration
6294
6451
  * @export
6295
6452
  */
6296
6453
  export declare const SchemasApiFp: (configuration?: Configuration) => {
6454
+ /**
6455
+ *
6456
+ * @summary Contribute the default variant of a schema to the module index
6457
+ * @param {string} workspaceId Workspace identifier
6458
+ * @param {string} changeSetId Change Set identifier
6459
+ * @param {string} schemaId Schema identifier
6460
+ * @param {*} [options] Override http request option.
6461
+ * @throws {RequiredError}
6462
+ */
6463
+ contribute(workspaceId: string, changeSetId: string, schemaId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
6297
6464
  /**
6298
6465
  *
6299
6466
  * @summary Create a schema and it\'s default variant
@@ -6316,6 +6483,18 @@ export declare const SchemasApiFp: (configuration?: Configuration) => {
6316
6483
  * @throws {RequiredError}
6317
6484
  */
6318
6485
  createVariantAction(workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, createVariantActionFuncV1Request: CreateVariantActionFuncV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateVariantActionFuncV1Response>>;
6486
+ /**
6487
+ *
6488
+ * @summary Create an attribute function and attach to a schema variant
6489
+ * @param {string} workspaceId Workspace identifier
6490
+ * @param {string} changeSetId Change Set identifier
6491
+ * @param {string} schemaId Schema identifier
6492
+ * @param {string} schemaVariantId Schema variant identifier
6493
+ * @param {CreateVariantAttributeFuncV1Request} createVariantAttributeFuncV1Request
6494
+ * @param {*} [options] Override http request option.
6495
+ * @throws {RequiredError}
6496
+ */
6497
+ createVariantAttribute(workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, createVariantAttributeFuncV1Request: CreateVariantAttributeFuncV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateVariantAttributeFuncV1Response>>;
6319
6498
  /**
6320
6499
  *
6321
6500
  * @summary Create an authentication function and attach to a schema variant
@@ -6376,6 +6555,18 @@ export declare const SchemasApiFp: (configuration?: Configuration) => {
6376
6555
  * @throws {RequiredError}
6377
6556
  */
6378
6557
  detachActionFuncBinding(workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, funcId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DetachFuncBindingV1Response>>;
6558
+ /**
6559
+ *
6560
+ * @summary Delete the binding between an attribute func and the schema variant
6561
+ * @param {string} workspaceId Workspace identifier
6562
+ * @param {string} changeSetId Change Set identifier
6563
+ * @param {string} schemaId Schema identifier
6564
+ * @param {string} schemaVariantId Schema variant identifier
6565
+ * @param {string} funcId Func identifier
6566
+ * @param {*} [options] Override http request option.
6567
+ * @throws {RequiredError}
6568
+ */
6569
+ detachAttributeFuncBinding(workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, funcId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DetachFuncBindingV1Response>>;
6379
6570
  /**
6380
6571
  *
6381
6572
  * @summary Delete the binding between an authentication func and the schema variant
@@ -6525,6 +6716,14 @@ export declare const SchemasApiFp: (configuration?: Configuration) => {
6525
6716
  * @export
6526
6717
  */
6527
6718
  export declare const SchemasApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
6719
+ /**
6720
+ *
6721
+ * @summary Contribute the default variant of a schema to the module index
6722
+ * @param {SchemasApiContributeRequest} requestParameters Request parameters.
6723
+ * @param {*} [options] Override http request option.
6724
+ * @throws {RequiredError}
6725
+ */
6726
+ contribute(requestParameters: SchemasApiContributeRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
6528
6727
  /**
6529
6728
  *
6530
6729
  * @summary Create a schema and it\'s default variant
@@ -6541,6 +6740,14 @@ export declare const SchemasApiFactory: (configuration?: Configuration, basePath
6541
6740
  * @throws {RequiredError}
6542
6741
  */
6543
6742
  createVariantAction(requestParameters: SchemasApiCreateVariantActionRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateVariantActionFuncV1Response>;
6743
+ /**
6744
+ *
6745
+ * @summary Create an attribute function and attach to a schema variant
6746
+ * @param {SchemasApiCreateVariantAttributeRequest} requestParameters Request parameters.
6747
+ * @param {*} [options] Override http request option.
6748
+ * @throws {RequiredError}
6749
+ */
6750
+ createVariantAttribute(requestParameters: SchemasApiCreateVariantAttributeRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateVariantAttributeFuncV1Response>;
6544
6751
  /**
6545
6752
  *
6546
6753
  * @summary Create an authentication function and attach to a schema variant
@@ -6581,6 +6788,14 @@ export declare const SchemasApiFactory: (configuration?: Configuration, basePath
6581
6788
  * @throws {RequiredError}
6582
6789
  */
6583
6790
  detachActionFuncBinding(requestParameters: SchemasApiDetachActionFuncBindingRequest, options?: RawAxiosRequestConfig): AxiosPromise<DetachFuncBindingV1Response>;
6791
+ /**
6792
+ *
6793
+ * @summary Delete the binding between an attribute func and the schema variant
6794
+ * @param {SchemasApiDetachAttributeFuncBindingRequest} requestParameters Request parameters.
6795
+ * @param {*} [options] Override http request option.
6796
+ * @throws {RequiredError}
6797
+ */
6798
+ detachAttributeFuncBinding(requestParameters: SchemasApiDetachAttributeFuncBindingRequest, options?: RawAxiosRequestConfig): AxiosPromise<DetachFuncBindingV1Response>;
6584
6799
  /**
6585
6800
  *
6586
6801
  * @summary Delete the binding between an authentication func and the schema variant
@@ -6692,6 +6907,15 @@ export declare const SchemasApiFactory: (configuration?: Configuration, basePath
6692
6907
  * @interface SchemasApi
6693
6908
  */
6694
6909
  export interface SchemasApiInterface {
6910
+ /**
6911
+ *
6912
+ * @summary Contribute the default variant of a schema to the module index
6913
+ * @param {SchemasApiContributeRequest} requestParameters Request parameters.
6914
+ * @param {*} [options] Override http request option.
6915
+ * @throws {RequiredError}
6916
+ * @memberof SchemasApiInterface
6917
+ */
6918
+ contribute(requestParameters: SchemasApiContributeRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
6695
6919
  /**
6696
6920
  *
6697
6921
  * @summary Create a schema and it\'s default variant
@@ -6710,6 +6934,15 @@ export interface SchemasApiInterface {
6710
6934
  * @memberof SchemasApiInterface
6711
6935
  */
6712
6936
  createVariantAction(requestParameters: SchemasApiCreateVariantActionRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateVariantActionFuncV1Response>;
6937
+ /**
6938
+ *
6939
+ * @summary Create an attribute function and attach to a schema variant
6940
+ * @param {SchemasApiCreateVariantAttributeRequest} requestParameters Request parameters.
6941
+ * @param {*} [options] Override http request option.
6942
+ * @throws {RequiredError}
6943
+ * @memberof SchemasApiInterface
6944
+ */
6945
+ createVariantAttribute(requestParameters: SchemasApiCreateVariantAttributeRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateVariantAttributeFuncV1Response>;
6713
6946
  /**
6714
6947
  *
6715
6948
  * @summary Create an authentication function and attach to a schema variant
@@ -6755,6 +6988,15 @@ export interface SchemasApiInterface {
6755
6988
  * @memberof SchemasApiInterface
6756
6989
  */
6757
6990
  detachActionFuncBinding(requestParameters: SchemasApiDetachActionFuncBindingRequest, options?: RawAxiosRequestConfig): AxiosPromise<DetachFuncBindingV1Response>;
6991
+ /**
6992
+ *
6993
+ * @summary Delete the binding between an attribute func and the schema variant
6994
+ * @param {SchemasApiDetachAttributeFuncBindingRequest} requestParameters Request parameters.
6995
+ * @param {*} [options] Override http request option.
6996
+ * @throws {RequiredError}
6997
+ * @memberof SchemasApiInterface
6998
+ */
6999
+ detachAttributeFuncBinding(requestParameters: SchemasApiDetachAttributeFuncBindingRequest, options?: RawAxiosRequestConfig): AxiosPromise<DetachFuncBindingV1Response>;
6758
7000
  /**
6759
7001
  *
6760
7002
  * @summary Delete the binding between an authentication func and the schema variant
@@ -6873,6 +7115,31 @@ export interface SchemasApiInterface {
6873
7115
  */
6874
7116
  updateSchemaVariant(requestParameters: SchemasApiUpdateSchemaVariantRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetSchemaVariantV1Response>;
6875
7117
  }
7118
+ /**
7119
+ * Request parameters for contribute operation in SchemasApi.
7120
+ * @export
7121
+ * @interface SchemasApiContributeRequest
7122
+ */
7123
+ export interface SchemasApiContributeRequest {
7124
+ /**
7125
+ * Workspace identifier
7126
+ * @type {string}
7127
+ * @memberof SchemasApiContribute
7128
+ */
7129
+ readonly workspaceId: string;
7130
+ /**
7131
+ * Change Set identifier
7132
+ * @type {string}
7133
+ * @memberof SchemasApiContribute
7134
+ */
7135
+ readonly changeSetId: string;
7136
+ /**
7137
+ * Schema identifier
7138
+ * @type {string}
7139
+ * @memberof SchemasApiContribute
7140
+ */
7141
+ readonly schemaId: string;
7142
+ }
6876
7143
  /**
6877
7144
  * Request parameters for createSchema operation in SchemasApi.
6878
7145
  * @export
@@ -6935,6 +7202,43 @@ export interface SchemasApiCreateVariantActionRequest {
6935
7202
  */
6936
7203
  readonly createVariantActionFuncV1Request: CreateVariantActionFuncV1Request;
6937
7204
  }
7205
+ /**
7206
+ * Request parameters for createVariantAttribute operation in SchemasApi.
7207
+ * @export
7208
+ * @interface SchemasApiCreateVariantAttributeRequest
7209
+ */
7210
+ export interface SchemasApiCreateVariantAttributeRequest {
7211
+ /**
7212
+ * Workspace identifier
7213
+ * @type {string}
7214
+ * @memberof SchemasApiCreateVariantAttribute
7215
+ */
7216
+ readonly workspaceId: string;
7217
+ /**
7218
+ * Change Set identifier
7219
+ * @type {string}
7220
+ * @memberof SchemasApiCreateVariantAttribute
7221
+ */
7222
+ readonly changeSetId: string;
7223
+ /**
7224
+ * Schema identifier
7225
+ * @type {string}
7226
+ * @memberof SchemasApiCreateVariantAttribute
7227
+ */
7228
+ readonly schemaId: string;
7229
+ /**
7230
+ * Schema variant identifier
7231
+ * @type {string}
7232
+ * @memberof SchemasApiCreateVariantAttribute
7233
+ */
7234
+ readonly schemaVariantId: string;
7235
+ /**
7236
+ *
7237
+ * @type {CreateVariantAttributeFuncV1Request}
7238
+ * @memberof SchemasApiCreateVariantAttribute
7239
+ */
7240
+ readonly createVariantAttributeFuncV1Request: CreateVariantAttributeFuncV1Request;
7241
+ }
6938
7242
  /**
6939
7243
  * Request parameters for createVariantAuthentication operation in SchemasApi.
6940
7244
  * @export
@@ -7120,6 +7424,43 @@ export interface SchemasApiDetachActionFuncBindingRequest {
7120
7424
  */
7121
7425
  readonly funcId: string;
7122
7426
  }
7427
+ /**
7428
+ * Request parameters for detachAttributeFuncBinding operation in SchemasApi.
7429
+ * @export
7430
+ * @interface SchemasApiDetachAttributeFuncBindingRequest
7431
+ */
7432
+ export interface SchemasApiDetachAttributeFuncBindingRequest {
7433
+ /**
7434
+ * Workspace identifier
7435
+ * @type {string}
7436
+ * @memberof SchemasApiDetachAttributeFuncBinding
7437
+ */
7438
+ readonly workspaceId: string;
7439
+ /**
7440
+ * Change Set identifier
7441
+ * @type {string}
7442
+ * @memberof SchemasApiDetachAttributeFuncBinding
7443
+ */
7444
+ readonly changeSetId: string;
7445
+ /**
7446
+ * Schema identifier
7447
+ * @type {string}
7448
+ * @memberof SchemasApiDetachAttributeFuncBinding
7449
+ */
7450
+ readonly schemaId: string;
7451
+ /**
7452
+ * Schema variant identifier
7453
+ * @type {string}
7454
+ * @memberof SchemasApiDetachAttributeFuncBinding
7455
+ */
7456
+ readonly schemaVariantId: string;
7457
+ /**
7458
+ * Func identifier
7459
+ * @type {string}
7460
+ * @memberof SchemasApiDetachAttributeFuncBinding
7461
+ */
7462
+ readonly funcId: string;
7463
+ }
7123
7464
  /**
7124
7465
  * Request parameters for detachAuthenticationFuncBinding operation in SchemasApi.
7125
7466
  * @export
@@ -7530,6 +7871,15 @@ export interface SchemasApiUpdateSchemaVariantRequest {
7530
7871
  * @extends {BaseAPI}
7531
7872
  */
7532
7873
  export declare class SchemasApi extends BaseAPI implements SchemasApiInterface {
7874
+ /**
7875
+ *
7876
+ * @summary Contribute the default variant of a schema to the module index
7877
+ * @param {SchemasApiContributeRequest} requestParameters Request parameters.
7878
+ * @param {*} [options] Override http request option.
7879
+ * @throws {RequiredError}
7880
+ * @memberof SchemasApi
7881
+ */
7882
+ contribute(requestParameters: SchemasApiContributeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
7533
7883
  /**
7534
7884
  *
7535
7885
  * @summary Create a schema and it\'s default variant
@@ -7548,6 +7898,15 @@ export declare class SchemasApi extends BaseAPI implements SchemasApiInterface {
7548
7898
  * @memberof SchemasApi
7549
7899
  */
7550
7900
  createVariantAction(requestParameters: SchemasApiCreateVariantActionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateVariantActionFuncV1Response, any, {}>>;
7901
+ /**
7902
+ *
7903
+ * @summary Create an attribute function and attach to a schema variant
7904
+ * @param {SchemasApiCreateVariantAttributeRequest} requestParameters Request parameters.
7905
+ * @param {*} [options] Override http request option.
7906
+ * @throws {RequiredError}
7907
+ * @memberof SchemasApi
7908
+ */
7909
+ createVariantAttribute(requestParameters: SchemasApiCreateVariantAttributeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateVariantAttributeFuncV1Response, any, {}>>;
7551
7910
  /**
7552
7911
  *
7553
7912
  * @summary Create an authentication function and attach to a schema variant
@@ -7593,6 +7952,15 @@ export declare class SchemasApi extends BaseAPI implements SchemasApiInterface {
7593
7952
  * @memberof SchemasApi
7594
7953
  */
7595
7954
  detachActionFuncBinding(requestParameters: SchemasApiDetachActionFuncBindingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DetachFuncBindingV1Response, any, {}>>;
7955
+ /**
7956
+ *
7957
+ * @summary Delete the binding between an attribute func and the schema variant
7958
+ * @param {SchemasApiDetachAttributeFuncBindingRequest} requestParameters Request parameters.
7959
+ * @param {*} [options] Override http request option.
7960
+ * @throws {RequiredError}
7961
+ * @memberof SchemasApi
7962
+ */
7963
+ detachAttributeFuncBinding(requestParameters: SchemasApiDetachAttributeFuncBindingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DetachFuncBindingV1Response, any, {}>>;
7596
7964
  /**
7597
7965
  *
7598
7966
  * @summary Delete the binding between an authentication func and the schema variant
@@ -8243,6 +8611,14 @@ export declare const WorkspaceManagementApiAxiosParamCreator: (configuration?: C
8243
8611
  * @throws {RequiredError}
8244
8612
  */
8245
8613
  inviteMember: (workspaceId: string, inviteMemberRequest: InviteMemberRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8614
+ /**
8615
+ *
8616
+ * @summary Leave a workspace (remove yourself)
8617
+ * @param {string} workspaceId Workspace identifier
8618
+ * @param {*} [options] Override http request option.
8619
+ * @throws {RequiredError}
8620
+ */
8621
+ leaveWorkspace: (workspaceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8246
8622
  /**
8247
8623
  *
8248
8624
  * @summary List all members of a workspace
@@ -8324,6 +8700,14 @@ export declare const WorkspaceManagementApiFp: (configuration?: Configuration) =
8324
8700
  * @throws {RequiredError}
8325
8701
  */
8326
8702
  inviteMember(workspaceId: string, inviteMemberRequest: InviteMemberRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Member>>>;
8703
+ /**
8704
+ *
8705
+ * @summary Leave a workspace (remove yourself)
8706
+ * @param {string} workspaceId Workspace identifier
8707
+ * @param {*} [options] Override http request option.
8708
+ * @throws {RequiredError}
8709
+ */
8710
+ leaveWorkspace(workspaceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Member>>>;
8327
8711
  /**
8328
8712
  *
8329
8713
  * @summary List all members of a workspace
@@ -8404,6 +8788,14 @@ export declare const WorkspaceManagementApiFactory: (configuration?: Configurati
8404
8788
  * @throws {RequiredError}
8405
8789
  */
8406
8790
  inviteMember(requestParameters: WorkspaceManagementApiInviteMemberRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<Member>>;
8791
+ /**
8792
+ *
8793
+ * @summary Leave a workspace (remove yourself)
8794
+ * @param {WorkspaceManagementApiLeaveWorkspaceRequest} requestParameters Request parameters.
8795
+ * @param {*} [options] Override http request option.
8796
+ * @throws {RequiredError}
8797
+ */
8798
+ leaveWorkspace(requestParameters: WorkspaceManagementApiLeaveWorkspaceRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<Member>>;
8407
8799
  /**
8408
8800
  *
8409
8801
  * @summary List all members of a workspace
@@ -8486,6 +8878,15 @@ export interface WorkspaceManagementApiInterface {
8486
8878
  * @memberof WorkspaceManagementApiInterface
8487
8879
  */
8488
8880
  inviteMember(requestParameters: WorkspaceManagementApiInviteMemberRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<Member>>;
8881
+ /**
8882
+ *
8883
+ * @summary Leave a workspace (remove yourself)
8884
+ * @param {WorkspaceManagementApiLeaveWorkspaceRequest} requestParameters Request parameters.
8885
+ * @param {*} [options] Override http request option.
8886
+ * @throws {RequiredError}
8887
+ * @memberof WorkspaceManagementApiInterface
8888
+ */
8889
+ leaveWorkspace(requestParameters: WorkspaceManagementApiLeaveWorkspaceRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<Member>>;
8489
8890
  /**
8490
8891
  *
8491
8892
  * @summary List all members of a workspace
@@ -8589,6 +8990,19 @@ export interface WorkspaceManagementApiInviteMemberRequest {
8589
8990
  */
8590
8991
  readonly inviteMemberRequest: InviteMemberRequest;
8591
8992
  }
8993
+ /**
8994
+ * Request parameters for leaveWorkspace operation in WorkspaceManagementApi.
8995
+ * @export
8996
+ * @interface WorkspaceManagementApiLeaveWorkspaceRequest
8997
+ */
8998
+ export interface WorkspaceManagementApiLeaveWorkspaceRequest {
8999
+ /**
9000
+ * Workspace identifier
9001
+ * @type {string}
9002
+ * @memberof WorkspaceManagementApiLeaveWorkspace
9003
+ */
9004
+ readonly workspaceId: string;
9005
+ }
8592
9006
  /**
8593
9007
  * Request parameters for listMembers operation in WorkspaceManagementApi.
8594
9008
  * @export
@@ -8702,6 +9116,15 @@ export declare class WorkspaceManagementApi extends BaseAPI implements Workspace
8702
9116
  * @memberof WorkspaceManagementApi
8703
9117
  */
8704
9118
  inviteMember(requestParameters: WorkspaceManagementApiInviteMemberRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Member[], any, {}>>;
9119
+ /**
9120
+ *
9121
+ * @summary Leave a workspace (remove yourself)
9122
+ * @param {WorkspaceManagementApiLeaveWorkspaceRequest} requestParameters Request parameters.
9123
+ * @param {*} [options] Override http request option.
9124
+ * @throws {RequiredError}
9125
+ * @memberof WorkspaceManagementApi
9126
+ */
9127
+ leaveWorkspace(requestParameters: WorkspaceManagementApiLeaveWorkspaceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Member[], any, {}>>;
8705
9128
  /**
8706
9129
  *
8707
9130
  * @summary List all members of a workspace