sailpoint-api-client 1.8.20 → 1.8.21
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/beta/README.md +2 -2
- package/beta/api.ts +11 -9
- package/beta/common.ts +2 -2
- package/beta/package.json +1 -1
- package/dist/beta/api.d.ts +10 -8
- package/dist/beta/api.js +11 -9
- package/dist/beta/api.js.map +1 -1
- package/dist/beta/common.js +2 -2
- package/dist/nerm/common.js +2 -2
- package/dist/nermv2025/common.js +2 -2
- package/dist/v2024/api.d.ts +20 -16
- package/dist/v2024/api.js +17 -13
- package/dist/v2024/api.js.map +1 -1
- package/dist/v2024/common.js +2 -2
- package/dist/v2025/api.d.ts +20 -16
- package/dist/v2025/api.js +17 -13
- package/dist/v2025/api.js.map +1 -1
- package/dist/v2025/common.js +2 -2
- package/dist/v2026/api.d.ts +20 -16
- package/dist/v2026/api.js +17 -13
- package/dist/v2026/api.js.map +1 -1
- package/dist/v2026/common.js +2 -2
- package/dist/v3/api.d.ts +12 -8
- package/dist/v3/api.js +9 -5
- package/dist/v3/api.js.map +1 -1
- package/dist/v3/common.js +2 -2
- package/nerm/README.md +2 -2
- package/nerm/common.ts +2 -2
- package/nerm/package.json +1 -1
- package/nermv2025/README.md +2 -2
- package/nermv2025/common.ts +2 -2
- package/nermv2025/package.json +1 -1
- package/package.json +1 -1
- package/v2024/README.md +2 -2
- package/v2024/api.ts +23 -19
- package/v2024/common.ts +2 -2
- package/v2024/package.json +1 -1
- package/v2025/README.md +2 -2
- package/v2025/api.ts +23 -19
- package/v2025/common.ts +2 -2
- package/v2025/package.json +1 -1
- package/v2026/README.md +2 -2
- package/v2026/api.ts +23 -19
- package/v2026/common.ts +2 -2
- package/v2026/package.json +1 -1
- package/v3/README.md +2 -2
- package/v3/api.ts +15 -11
- package/v3/common.ts +2 -2
- package/v3/package.json +1 -1
package/beta/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## sailpoint-sdk@1.8.
|
|
1
|
+
## sailpoint-sdk@1.8.21
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install sailpoint-sdk@1.8.
|
|
39
|
+
npm install sailpoint-sdk@1.8.21 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/beta/api.ts
CHANGED
|
@@ -6343,7 +6343,9 @@ export type CampaignReferenceBetaTypeBeta = typeof CampaignReferenceBetaTypeBeta
|
|
|
6343
6343
|
export const CampaignReferenceBetaCampaignTypeBeta = {
|
|
6344
6344
|
Manager: 'MANAGER',
|
|
6345
6345
|
SourceOwner: 'SOURCE_OWNER',
|
|
6346
|
-
Search: 'SEARCH'
|
|
6346
|
+
Search: 'SEARCH',
|
|
6347
|
+
RoleComposition: 'ROLE_COMPOSITION',
|
|
6348
|
+
MachineAccount: 'MACHINE_ACCOUNT'
|
|
6347
6349
|
} as const;
|
|
6348
6350
|
|
|
6349
6351
|
export type CampaignReferenceBetaCampaignTypeBeta = typeof CampaignReferenceBetaCampaignTypeBeta[keyof typeof CampaignReferenceBetaCampaignTypeBeta];
|
|
@@ -48136,7 +48138,7 @@ export const CustomFormsBetaApiAxiosParamCreator = function (configuration?: Con
|
|
|
48136
48138
|
};
|
|
48137
48139
|
},
|
|
48138
48140
|
/**
|
|
48139
|
-
* Parameter `{formInstanceID}` should match a form instance ID.
|
|
48141
|
+
* Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
|
|
48140
48142
|
* @summary Returns a form instance.
|
|
48141
48143
|
* @param {string} formInstanceID Form instance ID
|
|
48142
48144
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -48312,7 +48314,7 @@ export const CustomFormsBetaApiAxiosParamCreator = function (configuration?: Con
|
|
|
48312
48314
|
};
|
|
48313
48315
|
},
|
|
48314
48316
|
/**
|
|
48315
|
-
* Parameter `{formInstanceID}` should match a form instance ID.
|
|
48317
|
+
* Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
|
|
48316
48318
|
* @summary Patch a form instance.
|
|
48317
48319
|
* @param {string} formInstanceID Form instance ID
|
|
48318
48320
|
* @param {Array<{ [key: string]: object; }>} [body] Body is the request payload to patch a form instance, check: https://jsonpatch.com
|
|
@@ -48756,7 +48758,7 @@ export const CustomFormsBetaApiFp = function(configuration?: Configuration) {
|
|
|
48756
48758
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
48757
48759
|
},
|
|
48758
48760
|
/**
|
|
48759
|
-
* Parameter `{formInstanceID}` should match a form instance ID.
|
|
48761
|
+
* Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
|
|
48760
48762
|
* @summary Returns a form instance.
|
|
48761
48763
|
* @param {string} formInstanceID Form instance ID
|
|
48762
48764
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -48810,7 +48812,7 @@ export const CustomFormsBetaApiFp = function(configuration?: Configuration) {
|
|
|
48810
48812
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
48811
48813
|
},
|
|
48812
48814
|
/**
|
|
48813
|
-
* Parameter `{formInstanceID}` should match a form instance ID.
|
|
48815
|
+
* Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
|
|
48814
48816
|
* @summary Patch a form instance.
|
|
48815
48817
|
* @param {string} formInstanceID Form instance ID
|
|
48816
48818
|
* @param {Array<{ [key: string]: object; }>} [body] Body is the request payload to patch a form instance, check: https://jsonpatch.com
|
|
@@ -49000,7 +49002,7 @@ export const CustomFormsBetaApiFactory = function (configuration?: Configuration
|
|
|
49000
49002
|
return localVarFp.getFormDefinitionByKey(requestParameters.formDefinitionID, axiosOptions).then((request) => request(axios, basePath));
|
|
49001
49003
|
},
|
|
49002
49004
|
/**
|
|
49003
|
-
* Parameter `{formInstanceID}` should match a form instance ID.
|
|
49005
|
+
* Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
|
|
49004
49006
|
* @summary Returns a form instance.
|
|
49005
49007
|
* @param {CustomFormsBetaApiGetFormInstanceByKeyRequest} requestParameters Request parameters.
|
|
49006
49008
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -49040,7 +49042,7 @@ export const CustomFormsBetaApiFactory = function (configuration?: Configuration
|
|
|
49040
49042
|
return localVarFp.patchFormDefinition(requestParameters.formDefinitionID, requestParameters.body, axiosOptions).then((request) => request(axios, basePath));
|
|
49041
49043
|
},
|
|
49042
49044
|
/**
|
|
49043
|
-
* Parameter `{formInstanceID}` should match a form instance ID.
|
|
49045
|
+
* Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
|
|
49044
49046
|
* @summary Patch a form instance.
|
|
49045
49047
|
* @param {CustomFormsBetaApiPatchFormInstanceRequest} requestParameters Request parameters.
|
|
49046
49048
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -49609,7 +49611,7 @@ export class CustomFormsBetaApi extends BaseAPI {
|
|
|
49609
49611
|
}
|
|
49610
49612
|
|
|
49611
49613
|
/**
|
|
49612
|
-
* Parameter `{formInstanceID}` should match a form instance ID.
|
|
49614
|
+
* Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
|
|
49613
49615
|
* @summary Returns a form instance.
|
|
49614
49616
|
* @param {CustomFormsBetaApiGetFormInstanceByKeyRequest} requestParameters Request parameters.
|
|
49615
49617
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -49657,7 +49659,7 @@ export class CustomFormsBetaApi extends BaseAPI {
|
|
|
49657
49659
|
}
|
|
49658
49660
|
|
|
49659
49661
|
/**
|
|
49660
|
-
* Parameter `{formInstanceID}` should match a form instance ID.
|
|
49662
|
+
* Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
|
|
49661
49663
|
* @summary Patch a form instance.
|
|
49662
49664
|
* @param {CustomFormsBetaApiPatchFormInstanceRequest} requestParameters Request parameters.
|
|
49663
49665
|
* @param {*} [axiosOptions] Override http request option.
|
package/beta/common.ts
CHANGED
|
@@ -146,14 +146,14 @@ export const toPathString = function (url: URL) {
|
|
|
146
146
|
export const createRequestFunction = function (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) {
|
|
147
147
|
return <T = unknown, R = AxiosResponse<T>>(axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
|
|
148
148
|
axiosRetry(axios, configuration.retriesConfig)
|
|
149
|
-
let userAgent = `SailPoint-SDK-TypeScript/1.8.
|
|
149
|
+
let userAgent = `SailPoint-SDK-TypeScript/1.8.21`;
|
|
150
150
|
if (configuration?.consumerIdentifier && configuration?.consumerVersion) {
|
|
151
151
|
userAgent += ` (${configuration.consumerIdentifier}/${configuration.consumerVersion})`;
|
|
152
152
|
}
|
|
153
153
|
userAgent += ` (${process.platform}; ${process.arch}) Node/${process.versions.node} (openapi-generator/7.12.0)`;
|
|
154
154
|
const headers = {
|
|
155
155
|
...axiosArgs.axiosOptions.headers,
|
|
156
|
-
...{'X-SailPoint-SDK':'typescript-1.8.
|
|
156
|
+
...{'X-SailPoint-SDK':'typescript-1.8.21'},
|
|
157
157
|
...{'User-Agent': userAgent},
|
|
158
158
|
}
|
|
159
159
|
|
package/beta/package.json
CHANGED
package/dist/beta/api.d.ts
CHANGED
|
@@ -6090,6 +6090,8 @@ export declare const CampaignReferenceBetaCampaignTypeBeta: {
|
|
|
6090
6090
|
readonly Manager: "MANAGER";
|
|
6091
6091
|
readonly SourceOwner: "SOURCE_OWNER";
|
|
6092
6092
|
readonly Search: "SEARCH";
|
|
6093
|
+
readonly RoleComposition: "ROLE_COMPOSITION";
|
|
6094
|
+
readonly MachineAccount: "MACHINE_ACCOUNT";
|
|
6093
6095
|
};
|
|
6094
6096
|
export type CampaignReferenceBetaCampaignTypeBeta = typeof CampaignReferenceBetaCampaignTypeBeta[keyof typeof CampaignReferenceBetaCampaignTypeBeta];
|
|
6095
6097
|
export declare const CampaignReferenceBetaCorrelatedStatusBeta: {
|
|
@@ -40684,7 +40686,7 @@ export declare const CustomFormsBetaApiAxiosParamCreator: (configuration?: Confi
|
|
|
40684
40686
|
*/
|
|
40685
40687
|
getFormDefinitionByKey: (formDefinitionID: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
40686
40688
|
/**
|
|
40687
|
-
* Parameter `{formInstanceID}` should match a form instance ID.
|
|
40689
|
+
* Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
|
|
40688
40690
|
* @summary Returns a form instance.
|
|
40689
40691
|
* @param {string} formInstanceID Form instance ID
|
|
40690
40692
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -40720,7 +40722,7 @@ export declare const CustomFormsBetaApiAxiosParamCreator: (configuration?: Confi
|
|
|
40720
40722
|
[key: string]: object;
|
|
40721
40723
|
}[], axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
40722
40724
|
/**
|
|
40723
|
-
* Parameter `{formInstanceID}` should match a form instance ID.
|
|
40725
|
+
* Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
|
|
40724
40726
|
* @summary Patch a form instance.
|
|
40725
40727
|
* @param {string} formInstanceID Form instance ID
|
|
40726
40728
|
* @param {Array<{ [key: string]: object; }>} [body] Body is the request payload to patch a form instance, check: https://jsonpatch.com
|
|
@@ -40865,7 +40867,7 @@ export declare const CustomFormsBetaApiFp: (configuration?: Configuration) => {
|
|
|
40865
40867
|
*/
|
|
40866
40868
|
getFormDefinitionByKey(formDefinitionID: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FormDefinitionResponseBeta>>;
|
|
40867
40869
|
/**
|
|
40868
|
-
* Parameter `{formInstanceID}` should match a form instance ID.
|
|
40870
|
+
* Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
|
|
40869
40871
|
* @summary Returns a form instance.
|
|
40870
40872
|
* @param {string} formInstanceID Form instance ID
|
|
40871
40873
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -40901,7 +40903,7 @@ export declare const CustomFormsBetaApiFp: (configuration?: Configuration) => {
|
|
|
40901
40903
|
[key: string]: object;
|
|
40902
40904
|
}[], axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FormDefinitionResponseBeta>>;
|
|
40903
40905
|
/**
|
|
40904
|
-
* Parameter `{formInstanceID}` should match a form instance ID.
|
|
40906
|
+
* Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
|
|
40905
40907
|
* @summary Patch a form instance.
|
|
40906
40908
|
* @param {string} formInstanceID Form instance ID
|
|
40907
40909
|
* @param {Array<{ [key: string]: object; }>} [body] Body is the request payload to patch a form instance, check: https://jsonpatch.com
|
|
@@ -41041,7 +41043,7 @@ export declare const CustomFormsBetaApiFactory: (configuration?: Configuration,
|
|
|
41041
41043
|
*/
|
|
41042
41044
|
getFormDefinitionByKey(requestParameters: CustomFormsBetaApiGetFormDefinitionByKeyRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<FormDefinitionResponseBeta>;
|
|
41043
41045
|
/**
|
|
41044
|
-
* Parameter `{formInstanceID}` should match a form instance ID.
|
|
41046
|
+
* Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
|
|
41045
41047
|
* @summary Returns a form instance.
|
|
41046
41048
|
* @param {CustomFormsBetaApiGetFormInstanceByKeyRequest} requestParameters Request parameters.
|
|
41047
41049
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -41073,7 +41075,7 @@ export declare const CustomFormsBetaApiFactory: (configuration?: Configuration,
|
|
|
41073
41075
|
*/
|
|
41074
41076
|
patchFormDefinition(requestParameters: CustomFormsBetaApiPatchFormDefinitionRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<FormDefinitionResponseBeta>;
|
|
41075
41077
|
/**
|
|
41076
|
-
* Parameter `{formInstanceID}` should match a form instance ID.
|
|
41078
|
+
* Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
|
|
41077
41079
|
* @summary Patch a form instance.
|
|
41078
41080
|
* @param {CustomFormsBetaApiPatchFormInstanceRequest} requestParameters Request parameters.
|
|
41079
41081
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -41567,7 +41569,7 @@ export declare class CustomFormsBetaApi extends BaseAPI {
|
|
|
41567
41569
|
*/
|
|
41568
41570
|
getFormDefinitionByKey(requestParameters: CustomFormsBetaApiGetFormDefinitionByKeyRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FormDefinitionResponseBeta, any>>;
|
|
41569
41571
|
/**
|
|
41570
|
-
* Parameter `{formInstanceID}` should match a form instance ID.
|
|
41572
|
+
* Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
|
|
41571
41573
|
* @summary Returns a form instance.
|
|
41572
41574
|
* @param {CustomFormsBetaApiGetFormInstanceByKeyRequest} requestParameters Request parameters.
|
|
41573
41575
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -41603,7 +41605,7 @@ export declare class CustomFormsBetaApi extends BaseAPI {
|
|
|
41603
41605
|
*/
|
|
41604
41606
|
patchFormDefinition(requestParameters: CustomFormsBetaApiPatchFormDefinitionRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FormDefinitionResponseBeta, any>>;
|
|
41605
41607
|
/**
|
|
41606
|
-
* Parameter `{formInstanceID}` should match a form instance ID.
|
|
41608
|
+
* Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
|
|
41607
41609
|
* @summary Patch a form instance.
|
|
41608
41610
|
* @param {CustomFormsBetaApiPatchFormInstanceRequest} requestParameters Request parameters.
|
|
41609
41611
|
* @param {*} [axiosOptions] Override http request option.
|
package/dist/beta/api.js
CHANGED
|
@@ -527,7 +527,9 @@ exports.CampaignReferenceBetaTypeBeta = {
|
|
|
527
527
|
exports.CampaignReferenceBetaCampaignTypeBeta = {
|
|
528
528
|
Manager: 'MANAGER',
|
|
529
529
|
SourceOwner: 'SOURCE_OWNER',
|
|
530
|
-
Search: 'SEARCH'
|
|
530
|
+
Search: 'SEARCH',
|
|
531
|
+
RoleComposition: 'ROLE_COMPOSITION',
|
|
532
|
+
MachineAccount: 'MACHINE_ACCOUNT'
|
|
531
533
|
};
|
|
532
534
|
exports.CampaignReferenceBetaCorrelatedStatusBeta = {
|
|
533
535
|
Correlated: 'CORRELATED',
|
|
@@ -15876,7 +15878,7 @@ var CustomFormsBetaApiAxiosParamCreator = function (configuration) {
|
|
|
15876
15878
|
});
|
|
15877
15879
|
},
|
|
15878
15880
|
/**
|
|
15879
|
-
* Parameter `{formInstanceID}` should match a form instance ID.
|
|
15881
|
+
* Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
|
|
15880
15882
|
* @summary Returns a form instance.
|
|
15881
15883
|
* @param {string} formInstanceID Form instance ID
|
|
15882
15884
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -16094,7 +16096,7 @@ var CustomFormsBetaApiAxiosParamCreator = function (configuration) {
|
|
|
16094
16096
|
});
|
|
16095
16097
|
},
|
|
16096
16098
|
/**
|
|
16097
|
-
* Parameter `{formInstanceID}` should match a form instance ID.
|
|
16099
|
+
* Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
|
|
16098
16100
|
* @summary Patch a form instance.
|
|
16099
16101
|
* @param {string} formInstanceID Form instance ID
|
|
16100
16102
|
* @param {Array<{ [key: string]: object; }>} [body] Body is the request payload to patch a form instance, check: https://jsonpatch.com
|
|
@@ -16680,7 +16682,7 @@ var CustomFormsBetaApiFp = function (configuration) {
|
|
|
16680
16682
|
});
|
|
16681
16683
|
},
|
|
16682
16684
|
/**
|
|
16683
|
-
* Parameter `{formInstanceID}` should match a form instance ID.
|
|
16685
|
+
* Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
|
|
16684
16686
|
* @summary Returns a form instance.
|
|
16685
16687
|
* @param {string} formInstanceID Form instance ID
|
|
16686
16688
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -16774,7 +16776,7 @@ var CustomFormsBetaApiFp = function (configuration) {
|
|
|
16774
16776
|
});
|
|
16775
16777
|
},
|
|
16776
16778
|
/**
|
|
16777
|
-
* Parameter `{formInstanceID}` should match a form instance ID.
|
|
16779
|
+
* Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
|
|
16778
16780
|
* @summary Patch a form instance.
|
|
16779
16781
|
* @param {string} formInstanceID Form instance ID
|
|
16780
16782
|
* @param {Array<{ [key: string]: object; }>} [body] Body is the request payload to patch a form instance, check: https://jsonpatch.com
|
|
@@ -17029,7 +17031,7 @@ var CustomFormsBetaApiFactory = function (configuration, basePath, axios) {
|
|
|
17029
17031
|
return localVarFp.getFormDefinitionByKey(requestParameters.formDefinitionID, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
17030
17032
|
},
|
|
17031
17033
|
/**
|
|
17032
|
-
* Parameter `{formInstanceID}` should match a form instance ID.
|
|
17034
|
+
* Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
|
|
17033
17035
|
* @summary Returns a form instance.
|
|
17034
17036
|
* @param {CustomFormsBetaApiGetFormInstanceByKeyRequest} requestParameters Request parameters.
|
|
17035
17037
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -17070,7 +17072,7 @@ var CustomFormsBetaApiFactory = function (configuration, basePath, axios) {
|
|
|
17070
17072
|
return localVarFp.patchFormDefinition(requestParameters.formDefinitionID, requestParameters.body, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
17071
17073
|
},
|
|
17072
17074
|
/**
|
|
17073
|
-
* Parameter `{formInstanceID}` should match a form instance ID.
|
|
17075
|
+
* Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
|
|
17074
17076
|
* @summary Patch a form instance.
|
|
17075
17077
|
* @param {CustomFormsBetaApiPatchFormInstanceRequest} requestParameters Request parameters.
|
|
17076
17078
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -17258,7 +17260,7 @@ var CustomFormsBetaApi = /** @class */ (function (_super) {
|
|
|
17258
17260
|
return (0, exports.CustomFormsBetaApiFp)(this.configuration).getFormDefinitionByKey(requestParameters.formDefinitionID, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
17259
17261
|
};
|
|
17260
17262
|
/**
|
|
17261
|
-
* Parameter `{formInstanceID}` should match a form instance ID.
|
|
17263
|
+
* Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
|
|
17262
17264
|
* @summary Returns a form instance.
|
|
17263
17265
|
* @param {CustomFormsBetaApiGetFormInstanceByKeyRequest} requestParameters Request parameters.
|
|
17264
17266
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -17307,7 +17309,7 @@ var CustomFormsBetaApi = /** @class */ (function (_super) {
|
|
|
17307
17309
|
return (0, exports.CustomFormsBetaApiFp)(this.configuration).patchFormDefinition(requestParameters.formDefinitionID, requestParameters.body, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
17308
17310
|
};
|
|
17309
17311
|
/**
|
|
17310
|
-
* Parameter `{formInstanceID}` should match a form instance ID.
|
|
17312
|
+
* Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
|
|
17311
17313
|
* @summary Patch a form instance.
|
|
17312
17314
|
* @param {CustomFormsBetaApiPatchFormInstanceRequest} requestParameters Request parameters.
|
|
17313
17315
|
* @param {*} [axiosOptions] Override http request option.
|