system-initiative-api-client 1.8.0 → 1.10.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
@@ -202,6 +202,43 @@ export interface ApiSuccessString {
202
202
  */
203
203
  'data': string;
204
204
  }
205
+ /**
206
+ *
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
+ }
205
242
  /**
206
243
  *
207
244
  * @export
@@ -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
  *
@@ -1134,6 +1313,56 @@ export interface ErrorResponse {
1134
1313
  */
1135
1314
  'error': ErrorDetail;
1136
1315
  }
1316
+ /**
1317
+ *
1318
+ * @export
1319
+ * @interface ExecDebugFuncV1Request
1320
+ */
1321
+ export interface ExecDebugFuncV1Request {
1322
+ /**
1323
+ *
1324
+ * @type {string}
1325
+ * @memberof ExecDebugFuncV1Request
1326
+ */
1327
+ 'code': string;
1328
+ /**
1329
+ *
1330
+ * @type {string}
1331
+ * @memberof ExecDebugFuncV1Request
1332
+ */
1333
+ 'componentId': string;
1334
+ /**
1335
+ *
1336
+ * @type {any}
1337
+ * @memberof ExecDebugFuncV1Request
1338
+ */
1339
+ 'debugInput'?: any;
1340
+ /**
1341
+ *
1342
+ * @type {string}
1343
+ * @memberof ExecDebugFuncV1Request
1344
+ */
1345
+ 'handler': string;
1346
+ /**
1347
+ *
1348
+ * @type {string}
1349
+ * @memberof ExecDebugFuncV1Request
1350
+ */
1351
+ 'name': string;
1352
+ }
1353
+ /**
1354
+ *
1355
+ * @export
1356
+ * @interface ExecDebugFuncV1Response
1357
+ */
1358
+ export interface ExecDebugFuncV1Response {
1359
+ /**
1360
+ *
1361
+ * @type {string}
1362
+ * @memberof ExecDebugFuncV1Response
1363
+ */
1364
+ 'debugFuncJobStateId': string;
1365
+ }
1137
1366
  /**
1138
1367
  *
1139
1368
  * @export
@@ -1656,6 +1885,43 @@ export interface GetComponentV1ResponseManagementFunction {
1656
1885
  */
1657
1886
  'managementPrototypeId': string;
1658
1887
  }
1888
+ /**
1889
+ *
1890
+ * @export
1891
+ * @interface GetDebugFuncJobStateV1Response
1892
+ */
1893
+ export interface GetDebugFuncJobStateV1Response {
1894
+ /**
1895
+ *
1896
+ * @type {string}
1897
+ * @memberof GetDebugFuncJobStateV1Response
1898
+ */
1899
+ 'failure'?: string | null;
1900
+ /**
1901
+ *
1902
+ * @type {string}
1903
+ * @memberof GetDebugFuncJobStateV1Response
1904
+ */
1905
+ 'funcRunId'?: string | null;
1906
+ /**
1907
+ *
1908
+ * @type {string}
1909
+ * @memberof GetDebugFuncJobStateV1Response
1910
+ */
1911
+ 'id': string;
1912
+ /**
1913
+ *
1914
+ * @type {any}
1915
+ * @memberof GetDebugFuncJobStateV1Response
1916
+ */
1917
+ 'result'?: any;
1918
+ /**
1919
+ *
1920
+ * @type {string}
1921
+ * @memberof GetDebugFuncJobStateV1Response
1922
+ */
1923
+ 'state': string;
1924
+ }
1659
1925
  /**
1660
1926
  *
1661
1927
  * @export
@@ -5294,11 +5560,196 @@ export declare class ComponentsApi extends BaseAPI implements ComponentsApiInter
5294
5560
  */
5295
5561
  upgradeComponent(requestParameters: ComponentsApiUpgradeComponentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UpgradeComponentV1Response, any, {}>>;
5296
5562
  }
5563
+ /**
5564
+ * DebugFuncsApi - axios parameter creator
5565
+ * @export
5566
+ */
5567
+ export declare const DebugFuncsApiAxiosParamCreator: (configuration?: Configuration) => {
5568
+ /**
5569
+ *
5570
+ * @summary Execute a debug function in the context of a component
5571
+ * @param {string} workspaceId Workspace identifier
5572
+ * @param {string} changeSetId Change Set identifier
5573
+ * @param {ExecDebugFuncV1Request} execDebugFuncV1Request
5574
+ * @param {*} [options] Override http request option.
5575
+ * @throws {RequiredError}
5576
+ */
5577
+ execDebugFunc: (workspaceId: string, changeSetId: string, execDebugFuncV1Request: ExecDebugFuncV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5578
+ /**
5579
+ *
5580
+ * @summary Get debug funcs job state details
5581
+ * @param {string} workspaceId Workspace identifier
5582
+ * @param {string} changeSetId Change Set identifier
5583
+ * @param {string} debugFuncJobStateId Debug Func Job identifier
5584
+ * @param {*} [options] Override http request option.
5585
+ * @throws {RequiredError}
5586
+ */
5587
+ getDebugFuncState: (workspaceId: string, changeSetId: string, debugFuncJobStateId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5588
+ };
5589
+ /**
5590
+ * DebugFuncsApi - functional programming interface
5591
+ * @export
5592
+ */
5593
+ export declare const DebugFuncsApiFp: (configuration?: Configuration) => {
5594
+ /**
5595
+ *
5596
+ * @summary Execute a debug function in the context of a component
5597
+ * @param {string} workspaceId Workspace identifier
5598
+ * @param {string} changeSetId Change Set identifier
5599
+ * @param {ExecDebugFuncV1Request} execDebugFuncV1Request
5600
+ * @param {*} [options] Override http request option.
5601
+ * @throws {RequiredError}
5602
+ */
5603
+ execDebugFunc(workspaceId: string, changeSetId: string, execDebugFuncV1Request: ExecDebugFuncV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ExecDebugFuncV1Response>>;
5604
+ /**
5605
+ *
5606
+ * @summary Get debug funcs job state details
5607
+ * @param {string} workspaceId Workspace identifier
5608
+ * @param {string} changeSetId Change Set identifier
5609
+ * @param {string} debugFuncJobStateId Debug Func Job identifier
5610
+ * @param {*} [options] Override http request option.
5611
+ * @throws {RequiredError}
5612
+ */
5613
+ getDebugFuncState(workspaceId: string, changeSetId: string, debugFuncJobStateId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetDebugFuncJobStateV1Response>>;
5614
+ };
5615
+ /**
5616
+ * DebugFuncsApi - factory interface
5617
+ * @export
5618
+ */
5619
+ export declare const DebugFuncsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
5620
+ /**
5621
+ *
5622
+ * @summary Execute a debug function in the context of a component
5623
+ * @param {DebugFuncsApiExecDebugFuncRequest} requestParameters Request parameters.
5624
+ * @param {*} [options] Override http request option.
5625
+ * @throws {RequiredError}
5626
+ */
5627
+ execDebugFunc(requestParameters: DebugFuncsApiExecDebugFuncRequest, options?: RawAxiosRequestConfig): AxiosPromise<ExecDebugFuncV1Response>;
5628
+ /**
5629
+ *
5630
+ * @summary Get debug funcs job state details
5631
+ * @param {DebugFuncsApiGetDebugFuncStateRequest} requestParameters Request parameters.
5632
+ * @param {*} [options] Override http request option.
5633
+ * @throws {RequiredError}
5634
+ */
5635
+ getDebugFuncState(requestParameters: DebugFuncsApiGetDebugFuncStateRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetDebugFuncJobStateV1Response>;
5636
+ };
5637
+ /**
5638
+ * DebugFuncsApi - interface
5639
+ * @export
5640
+ * @interface DebugFuncsApi
5641
+ */
5642
+ export interface DebugFuncsApiInterface {
5643
+ /**
5644
+ *
5645
+ * @summary Execute a debug function in the context of a component
5646
+ * @param {DebugFuncsApiExecDebugFuncRequest} requestParameters Request parameters.
5647
+ * @param {*} [options] Override http request option.
5648
+ * @throws {RequiredError}
5649
+ * @memberof DebugFuncsApiInterface
5650
+ */
5651
+ execDebugFunc(requestParameters: DebugFuncsApiExecDebugFuncRequest, options?: RawAxiosRequestConfig): AxiosPromise<ExecDebugFuncV1Response>;
5652
+ /**
5653
+ *
5654
+ * @summary Get debug funcs job state details
5655
+ * @param {DebugFuncsApiGetDebugFuncStateRequest} requestParameters Request parameters.
5656
+ * @param {*} [options] Override http request option.
5657
+ * @throws {RequiredError}
5658
+ * @memberof DebugFuncsApiInterface
5659
+ */
5660
+ getDebugFuncState(requestParameters: DebugFuncsApiGetDebugFuncStateRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetDebugFuncJobStateV1Response>;
5661
+ }
5662
+ /**
5663
+ * Request parameters for execDebugFunc operation in DebugFuncsApi.
5664
+ * @export
5665
+ * @interface DebugFuncsApiExecDebugFuncRequest
5666
+ */
5667
+ export interface DebugFuncsApiExecDebugFuncRequest {
5668
+ /**
5669
+ * Workspace identifier
5670
+ * @type {string}
5671
+ * @memberof DebugFuncsApiExecDebugFunc
5672
+ */
5673
+ readonly workspaceId: string;
5674
+ /**
5675
+ * Change Set identifier
5676
+ * @type {string}
5677
+ * @memberof DebugFuncsApiExecDebugFunc
5678
+ */
5679
+ readonly changeSetId: string;
5680
+ /**
5681
+ *
5682
+ * @type {ExecDebugFuncV1Request}
5683
+ * @memberof DebugFuncsApiExecDebugFunc
5684
+ */
5685
+ readonly execDebugFuncV1Request: ExecDebugFuncV1Request;
5686
+ }
5687
+ /**
5688
+ * Request parameters for getDebugFuncState operation in DebugFuncsApi.
5689
+ * @export
5690
+ * @interface DebugFuncsApiGetDebugFuncStateRequest
5691
+ */
5692
+ export interface DebugFuncsApiGetDebugFuncStateRequest {
5693
+ /**
5694
+ * Workspace identifier
5695
+ * @type {string}
5696
+ * @memberof DebugFuncsApiGetDebugFuncState
5697
+ */
5698
+ readonly workspaceId: string;
5699
+ /**
5700
+ * Change Set identifier
5701
+ * @type {string}
5702
+ * @memberof DebugFuncsApiGetDebugFuncState
5703
+ */
5704
+ readonly changeSetId: string;
5705
+ /**
5706
+ * Debug Func Job identifier
5707
+ * @type {string}
5708
+ * @memberof DebugFuncsApiGetDebugFuncState
5709
+ */
5710
+ readonly debugFuncJobStateId: string;
5711
+ }
5712
+ /**
5713
+ * DebugFuncsApi - object-oriented interface
5714
+ * @export
5715
+ * @class DebugFuncsApi
5716
+ * @extends {BaseAPI}
5717
+ */
5718
+ export declare class DebugFuncsApi extends BaseAPI implements DebugFuncsApiInterface {
5719
+ /**
5720
+ *
5721
+ * @summary Execute a debug function in the context of a component
5722
+ * @param {DebugFuncsApiExecDebugFuncRequest} requestParameters Request parameters.
5723
+ * @param {*} [options] Override http request option.
5724
+ * @throws {RequiredError}
5725
+ * @memberof DebugFuncsApi
5726
+ */
5727
+ execDebugFunc(requestParameters: DebugFuncsApiExecDebugFuncRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ExecDebugFuncV1Response, any, {}>>;
5728
+ /**
5729
+ *
5730
+ * @summary Get debug funcs job state details
5731
+ * @param {DebugFuncsApiGetDebugFuncStateRequest} requestParameters Request parameters.
5732
+ * @param {*} [options] Override http request option.
5733
+ * @throws {RequiredError}
5734
+ * @memberof DebugFuncsApi
5735
+ */
5736
+ getDebugFuncState(requestParameters: DebugFuncsApiGetDebugFuncStateRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetDebugFuncJobStateV1Response, any, {}>>;
5737
+ }
5297
5738
  /**
5298
5739
  * FuncsApi - axios parameter creator
5299
5740
  * @export
5300
5741
  */
5301
5742
  export declare const FuncsApiAxiosParamCreator: (configuration?: Configuration) => {
5743
+ /**
5744
+ *
5745
+ * @summary Create a transformation function
5746
+ * @param {string} workspaceId Workspace identifier
5747
+ * @param {string} changeSetId Change Set identifier
5748
+ * @param {CreateTransformationFuncV1Request} createTransformationFuncV1Request
5749
+ * @param {*} [options] Override http request option.
5750
+ * @throws {RequiredError}
5751
+ */
5752
+ createTransformation: (workspaceId: string, changeSetId: string, createTransformationFuncV1Request: CreateTransformationFuncV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5302
5753
  /**
5303
5754
  *
5304
5755
  * @summary Get function details
@@ -5347,6 +5798,16 @@ export declare const FuncsApiAxiosParamCreator: (configuration?: Configuration)
5347
5798
  * @export
5348
5799
  */
5349
5800
  export declare const FuncsApiFp: (configuration?: Configuration) => {
5801
+ /**
5802
+ *
5803
+ * @summary Create a transformation function
5804
+ * @param {string} workspaceId Workspace identifier
5805
+ * @param {string} changeSetId Change Set identifier
5806
+ * @param {CreateTransformationFuncV1Request} createTransformationFuncV1Request
5807
+ * @param {*} [options] Override http request option.
5808
+ * @throws {RequiredError}
5809
+ */
5810
+ createTransformation(workspaceId: string, changeSetId: string, createTransformationFuncV1Request: CreateTransformationFuncV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateTransformationFuncV1Response>>;
5350
5811
  /**
5351
5812
  *
5352
5813
  * @summary Get function details
@@ -5395,6 +5856,14 @@ export declare const FuncsApiFp: (configuration?: Configuration) => {
5395
5856
  * @export
5396
5857
  */
5397
5858
  export declare const FuncsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
5859
+ /**
5860
+ *
5861
+ * @summary Create a transformation function
5862
+ * @param {FuncsApiCreateTransformationRequest} requestParameters Request parameters.
5863
+ * @param {*} [options] Override http request option.
5864
+ * @throws {RequiredError}
5865
+ */
5866
+ createTransformation(requestParameters: FuncsApiCreateTransformationRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateTransformationFuncV1Response>;
5398
5867
  /**
5399
5868
  *
5400
5869
  * @summary Get function details
@@ -5434,6 +5903,15 @@ export declare const FuncsApiFactory: (configuration?: Configuration, basePath?:
5434
5903
  * @interface FuncsApi
5435
5904
  */
5436
5905
  export interface FuncsApiInterface {
5906
+ /**
5907
+ *
5908
+ * @summary Create a transformation function
5909
+ * @param {FuncsApiCreateTransformationRequest} requestParameters Request parameters.
5910
+ * @param {*} [options] Override http request option.
5911
+ * @throws {RequiredError}
5912
+ * @memberof FuncsApiInterface
5913
+ */
5914
+ createTransformation(requestParameters: FuncsApiCreateTransformationRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateTransformationFuncV1Response>;
5437
5915
  /**
5438
5916
  *
5439
5917
  * @summary Get function details
@@ -5471,6 +5949,31 @@ export interface FuncsApiInterface {
5471
5949
  */
5472
5950
  updateFunc(requestParameters: FuncsApiUpdateFuncRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateFuncV1Response>;
5473
5951
  }
5952
+ /**
5953
+ * Request parameters for createTransformation operation in FuncsApi.
5954
+ * @export
5955
+ * @interface FuncsApiCreateTransformationRequest
5956
+ */
5957
+ export interface FuncsApiCreateTransformationRequest {
5958
+ /**
5959
+ * Workspace identifier
5960
+ * @type {string}
5961
+ * @memberof FuncsApiCreateTransformation
5962
+ */
5963
+ readonly workspaceId: string;
5964
+ /**
5965
+ * Change Set identifier
5966
+ * @type {string}
5967
+ * @memberof FuncsApiCreateTransformation
5968
+ */
5969
+ readonly changeSetId: string;
5970
+ /**
5971
+ *
5972
+ * @type {CreateTransformationFuncV1Request}
5973
+ * @memberof FuncsApiCreateTransformation
5974
+ */
5975
+ readonly createTransformationFuncV1Request: CreateTransformationFuncV1Request;
5976
+ }
5474
5977
  /**
5475
5978
  * Request parameters for getFunc operation in FuncsApi.
5476
5979
  * @export
@@ -5590,6 +6093,15 @@ export interface FuncsApiUpdateFuncRequest {
5590
6093
  * @extends {BaseAPI}
5591
6094
  */
5592
6095
  export declare class FuncsApi extends BaseAPI implements FuncsApiInterface {
6096
+ /**
6097
+ *
6098
+ * @summary Create a transformation function
6099
+ * @param {FuncsApiCreateTransformationRequest} requestParameters Request parameters.
6100
+ * @param {*} [options] Override http request option.
6101
+ * @throws {RequiredError}
6102
+ * @memberof FuncsApi
6103
+ */
6104
+ createTransformation(requestParameters: FuncsApiCreateTransformationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateTransformationFuncV1Response, any, {}>>;
5593
6105
  /**
5594
6106
  *
5595
6107
  * @summary Get function details
@@ -5823,6 +6335,18 @@ export declare const SchemasApiAxiosParamCreator: (configuration?: Configuration
5823
6335
  * @throws {RequiredError}
5824
6336
  */
5825
6337
  createVariantAction: (workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, createVariantActionFuncV1Request: CreateVariantActionFuncV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6338
+ /**
6339
+ *
6340
+ * @summary Create an attribute function and attach to a schema variant
6341
+ * @param {string} workspaceId Workspace identifier
6342
+ * @param {string} changeSetId Change Set identifier
6343
+ * @param {string} schemaId Schema identifier
6344
+ * @param {string} schemaVariantId Schema variant identifier
6345
+ * @param {CreateVariantAttributeFuncV1Request} createVariantAttributeFuncV1Request
6346
+ * @param {*} [options] Override http request option.
6347
+ * @throws {RequiredError}
6348
+ */
6349
+ createVariantAttribute: (workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, createVariantAttributeFuncV1Request: CreateVariantAttributeFuncV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5826
6350
  /**
5827
6351
  *
5828
6352
  * @summary Create an authentication function and attach to a schema variant
@@ -5883,6 +6407,18 @@ export declare const SchemasApiAxiosParamCreator: (configuration?: Configuration
5883
6407
  * @throws {RequiredError}
5884
6408
  */
5885
6409
  detachActionFuncBinding: (workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, funcId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6410
+ /**
6411
+ *
6412
+ * @summary Delete the binding between an attribute func and the schema variant
6413
+ * @param {string} workspaceId Workspace identifier
6414
+ * @param {string} changeSetId Change Set identifier
6415
+ * @param {string} schemaId Schema identifier
6416
+ * @param {string} schemaVariantId Schema variant identifier
6417
+ * @param {string} funcId Func identifier
6418
+ * @param {*} [options] Override http request option.
6419
+ * @throws {RequiredError}
6420
+ */
6421
+ detachAttributeFuncBinding: (workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, funcId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5886
6422
  /**
5887
6423
  *
5888
6424
  * @summary Delete the binding between an authentication func and the schema variant
@@ -6054,6 +6590,18 @@ export declare const SchemasApiFp: (configuration?: Configuration) => {
6054
6590
  * @throws {RequiredError}
6055
6591
  */
6056
6592
  createVariantAction(workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, createVariantActionFuncV1Request: CreateVariantActionFuncV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateVariantActionFuncV1Response>>;
6593
+ /**
6594
+ *
6595
+ * @summary Create an attribute function and attach to a schema variant
6596
+ * @param {string} workspaceId Workspace identifier
6597
+ * @param {string} changeSetId Change Set identifier
6598
+ * @param {string} schemaId Schema identifier
6599
+ * @param {string} schemaVariantId Schema variant identifier
6600
+ * @param {CreateVariantAttributeFuncV1Request} createVariantAttributeFuncV1Request
6601
+ * @param {*} [options] Override http request option.
6602
+ * @throws {RequiredError}
6603
+ */
6604
+ createVariantAttribute(workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, createVariantAttributeFuncV1Request: CreateVariantAttributeFuncV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateVariantAttributeFuncV1Response>>;
6057
6605
  /**
6058
6606
  *
6059
6607
  * @summary Create an authentication function and attach to a schema variant
@@ -6114,6 +6662,18 @@ export declare const SchemasApiFp: (configuration?: Configuration) => {
6114
6662
  * @throws {RequiredError}
6115
6663
  */
6116
6664
  detachActionFuncBinding(workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, funcId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DetachFuncBindingV1Response>>;
6665
+ /**
6666
+ *
6667
+ * @summary Delete the binding between an attribute func and the schema variant
6668
+ * @param {string} workspaceId Workspace identifier
6669
+ * @param {string} changeSetId Change Set identifier
6670
+ * @param {string} schemaId Schema identifier
6671
+ * @param {string} schemaVariantId Schema variant identifier
6672
+ * @param {string} funcId Func identifier
6673
+ * @param {*} [options] Override http request option.
6674
+ * @throws {RequiredError}
6675
+ */
6676
+ detachAttributeFuncBinding(workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, funcId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DetachFuncBindingV1Response>>;
6117
6677
  /**
6118
6678
  *
6119
6679
  * @summary Delete the binding between an authentication func and the schema variant
@@ -6279,6 +6839,14 @@ export declare const SchemasApiFactory: (configuration?: Configuration, basePath
6279
6839
  * @throws {RequiredError}
6280
6840
  */
6281
6841
  createVariantAction(requestParameters: SchemasApiCreateVariantActionRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateVariantActionFuncV1Response>;
6842
+ /**
6843
+ *
6844
+ * @summary Create an attribute function and attach to a schema variant
6845
+ * @param {SchemasApiCreateVariantAttributeRequest} requestParameters Request parameters.
6846
+ * @param {*} [options] Override http request option.
6847
+ * @throws {RequiredError}
6848
+ */
6849
+ createVariantAttribute(requestParameters: SchemasApiCreateVariantAttributeRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateVariantAttributeFuncV1Response>;
6282
6850
  /**
6283
6851
  *
6284
6852
  * @summary Create an authentication function and attach to a schema variant
@@ -6319,6 +6887,14 @@ export declare const SchemasApiFactory: (configuration?: Configuration, basePath
6319
6887
  * @throws {RequiredError}
6320
6888
  */
6321
6889
  detachActionFuncBinding(requestParameters: SchemasApiDetachActionFuncBindingRequest, options?: RawAxiosRequestConfig): AxiosPromise<DetachFuncBindingV1Response>;
6890
+ /**
6891
+ *
6892
+ * @summary Delete the binding between an attribute func and the schema variant
6893
+ * @param {SchemasApiDetachAttributeFuncBindingRequest} requestParameters Request parameters.
6894
+ * @param {*} [options] Override http request option.
6895
+ * @throws {RequiredError}
6896
+ */
6897
+ detachAttributeFuncBinding(requestParameters: SchemasApiDetachAttributeFuncBindingRequest, options?: RawAxiosRequestConfig): AxiosPromise<DetachFuncBindingV1Response>;
6322
6898
  /**
6323
6899
  *
6324
6900
  * @summary Delete the binding between an authentication func and the schema variant
@@ -6448,6 +7024,15 @@ export interface SchemasApiInterface {
6448
7024
  * @memberof SchemasApiInterface
6449
7025
  */
6450
7026
  createVariantAction(requestParameters: SchemasApiCreateVariantActionRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateVariantActionFuncV1Response>;
7027
+ /**
7028
+ *
7029
+ * @summary Create an attribute function and attach to a schema variant
7030
+ * @param {SchemasApiCreateVariantAttributeRequest} requestParameters Request parameters.
7031
+ * @param {*} [options] Override http request option.
7032
+ * @throws {RequiredError}
7033
+ * @memberof SchemasApiInterface
7034
+ */
7035
+ createVariantAttribute(requestParameters: SchemasApiCreateVariantAttributeRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateVariantAttributeFuncV1Response>;
6451
7036
  /**
6452
7037
  *
6453
7038
  * @summary Create an authentication function and attach to a schema variant
@@ -6493,6 +7078,15 @@ export interface SchemasApiInterface {
6493
7078
  * @memberof SchemasApiInterface
6494
7079
  */
6495
7080
  detachActionFuncBinding(requestParameters: SchemasApiDetachActionFuncBindingRequest, options?: RawAxiosRequestConfig): AxiosPromise<DetachFuncBindingV1Response>;
7081
+ /**
7082
+ *
7083
+ * @summary Delete the binding between an attribute func and the schema variant
7084
+ * @param {SchemasApiDetachAttributeFuncBindingRequest} requestParameters Request parameters.
7085
+ * @param {*} [options] Override http request option.
7086
+ * @throws {RequiredError}
7087
+ * @memberof SchemasApiInterface
7088
+ */
7089
+ detachAttributeFuncBinding(requestParameters: SchemasApiDetachAttributeFuncBindingRequest, options?: RawAxiosRequestConfig): AxiosPromise<DetachFuncBindingV1Response>;
6496
7090
  /**
6497
7091
  *
6498
7092
  * @summary Delete the binding between an authentication func and the schema variant
@@ -6673,6 +7267,43 @@ export interface SchemasApiCreateVariantActionRequest {
6673
7267
  */
6674
7268
  readonly createVariantActionFuncV1Request: CreateVariantActionFuncV1Request;
6675
7269
  }
7270
+ /**
7271
+ * Request parameters for createVariantAttribute operation in SchemasApi.
7272
+ * @export
7273
+ * @interface SchemasApiCreateVariantAttributeRequest
7274
+ */
7275
+ export interface SchemasApiCreateVariantAttributeRequest {
7276
+ /**
7277
+ * Workspace identifier
7278
+ * @type {string}
7279
+ * @memberof SchemasApiCreateVariantAttribute
7280
+ */
7281
+ readonly workspaceId: string;
7282
+ /**
7283
+ * Change Set identifier
7284
+ * @type {string}
7285
+ * @memberof SchemasApiCreateVariantAttribute
7286
+ */
7287
+ readonly changeSetId: string;
7288
+ /**
7289
+ * Schema identifier
7290
+ * @type {string}
7291
+ * @memberof SchemasApiCreateVariantAttribute
7292
+ */
7293
+ readonly schemaId: string;
7294
+ /**
7295
+ * Schema variant identifier
7296
+ * @type {string}
7297
+ * @memberof SchemasApiCreateVariantAttribute
7298
+ */
7299
+ readonly schemaVariantId: string;
7300
+ /**
7301
+ *
7302
+ * @type {CreateVariantAttributeFuncV1Request}
7303
+ * @memberof SchemasApiCreateVariantAttribute
7304
+ */
7305
+ readonly createVariantAttributeFuncV1Request: CreateVariantAttributeFuncV1Request;
7306
+ }
6676
7307
  /**
6677
7308
  * Request parameters for createVariantAuthentication operation in SchemasApi.
6678
7309
  * @export
@@ -6858,6 +7489,43 @@ export interface SchemasApiDetachActionFuncBindingRequest {
6858
7489
  */
6859
7490
  readonly funcId: string;
6860
7491
  }
7492
+ /**
7493
+ * Request parameters for detachAttributeFuncBinding operation in SchemasApi.
7494
+ * @export
7495
+ * @interface SchemasApiDetachAttributeFuncBindingRequest
7496
+ */
7497
+ export interface SchemasApiDetachAttributeFuncBindingRequest {
7498
+ /**
7499
+ * Workspace identifier
7500
+ * @type {string}
7501
+ * @memberof SchemasApiDetachAttributeFuncBinding
7502
+ */
7503
+ readonly workspaceId: string;
7504
+ /**
7505
+ * Change Set identifier
7506
+ * @type {string}
7507
+ * @memberof SchemasApiDetachAttributeFuncBinding
7508
+ */
7509
+ readonly changeSetId: string;
7510
+ /**
7511
+ * Schema identifier
7512
+ * @type {string}
7513
+ * @memberof SchemasApiDetachAttributeFuncBinding
7514
+ */
7515
+ readonly schemaId: string;
7516
+ /**
7517
+ * Schema variant identifier
7518
+ * @type {string}
7519
+ * @memberof SchemasApiDetachAttributeFuncBinding
7520
+ */
7521
+ readonly schemaVariantId: string;
7522
+ /**
7523
+ * Func identifier
7524
+ * @type {string}
7525
+ * @memberof SchemasApiDetachAttributeFuncBinding
7526
+ */
7527
+ readonly funcId: string;
7528
+ }
6861
7529
  /**
6862
7530
  * Request parameters for detachAuthenticationFuncBinding operation in SchemasApi.
6863
7531
  * @export
@@ -7286,6 +7954,15 @@ export declare class SchemasApi extends BaseAPI implements SchemasApiInterface {
7286
7954
  * @memberof SchemasApi
7287
7955
  */
7288
7956
  createVariantAction(requestParameters: SchemasApiCreateVariantActionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateVariantActionFuncV1Response, any, {}>>;
7957
+ /**
7958
+ *
7959
+ * @summary Create an attribute function and attach to a schema variant
7960
+ * @param {SchemasApiCreateVariantAttributeRequest} requestParameters Request parameters.
7961
+ * @param {*} [options] Override http request option.
7962
+ * @throws {RequiredError}
7963
+ * @memberof SchemasApi
7964
+ */
7965
+ createVariantAttribute(requestParameters: SchemasApiCreateVariantAttributeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateVariantAttributeFuncV1Response, any, {}>>;
7289
7966
  /**
7290
7967
  *
7291
7968
  * @summary Create an authentication function and attach to a schema variant
@@ -7331,6 +8008,15 @@ export declare class SchemasApi extends BaseAPI implements SchemasApiInterface {
7331
8008
  * @memberof SchemasApi
7332
8009
  */
7333
8010
  detachActionFuncBinding(requestParameters: SchemasApiDetachActionFuncBindingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DetachFuncBindingV1Response, any, {}>>;
8011
+ /**
8012
+ *
8013
+ * @summary Delete the binding between an attribute func and the schema variant
8014
+ * @param {SchemasApiDetachAttributeFuncBindingRequest} requestParameters Request parameters.
8015
+ * @param {*} [options] Override http request option.
8016
+ * @throws {RequiredError}
8017
+ * @memberof SchemasApi
8018
+ */
8019
+ detachAttributeFuncBinding(requestParameters: SchemasApiDetachAttributeFuncBindingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DetachFuncBindingV1Response, any, {}>>;
7334
8020
  /**
7335
8021
  *
7336
8022
  * @summary Delete the binding between an authentication func and the schema variant