@rasadov/lumoar-sdk 1.1.3 → 1.1.5
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/api.ts +17 -15
- package/dist/api.d.ts +8 -8
- package/dist/api.js +16 -14
- package/docs/EvidenceApi.md +4 -4
- package/package.json +1 -1
- package/update.sh +0 -1
package/api.ts
CHANGED
|
@@ -3946,18 +3946,20 @@ export const EvidenceApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
3946
3946
|
* @summary Upload Evidence
|
|
3947
3947
|
* @param {string} companyId
|
|
3948
3948
|
* @param {string} controlId
|
|
3949
|
+
* @param {string} text
|
|
3949
3950
|
* @param {Array<File>} files
|
|
3950
3951
|
* @param {string} [authorization]
|
|
3951
3952
|
* @param {string} [sessionId]
|
|
3952
|
-
* @param {string | null} [text]
|
|
3953
3953
|
* @param {*} [options] Override http request option.
|
|
3954
3954
|
* @throws {RequiredError}
|
|
3955
3955
|
*/
|
|
3956
|
-
uploadEvidenceV1EvidenceUploadCompanyIdControlIdPost: async (companyId: string, controlId: string, files: Array<File>, authorization?: string, sessionId?: string,
|
|
3956
|
+
uploadEvidenceV1EvidenceUploadCompanyIdControlIdPost: async (companyId: string, controlId: string, text: string, files: Array<File>, authorization?: string, sessionId?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3957
3957
|
// verify required parameter 'companyId' is not null or undefined
|
|
3958
3958
|
assertParamExists('uploadEvidenceV1EvidenceUploadCompanyIdControlIdPost', 'companyId', companyId)
|
|
3959
3959
|
// verify required parameter 'controlId' is not null or undefined
|
|
3960
3960
|
assertParamExists('uploadEvidenceV1EvidenceUploadCompanyIdControlIdPost', 'controlId', controlId)
|
|
3961
|
+
// verify required parameter 'text' is not null or undefined
|
|
3962
|
+
assertParamExists('uploadEvidenceV1EvidenceUploadCompanyIdControlIdPost', 'text', text)
|
|
3961
3963
|
// verify required parameter 'files' is not null or undefined
|
|
3962
3964
|
assertParamExists('uploadEvidenceV1EvidenceUploadCompanyIdControlIdPost', 'files', files)
|
|
3963
3965
|
const localVarPath = `/v1/evidence/upload/{company_id}/{control_id}`
|
|
@@ -3975,6 +3977,10 @@ export const EvidenceApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
3975
3977
|
const localVarQueryParameter = {} as any;
|
|
3976
3978
|
const localVarFormParams = new ((configuration && configuration.formDataCtor) || FormData)();
|
|
3977
3979
|
|
|
3980
|
+
if (text !== undefined) {
|
|
3981
|
+
localVarQueryParameter['text'] = text;
|
|
3982
|
+
}
|
|
3983
|
+
|
|
3978
3984
|
if (files) {
|
|
3979
3985
|
files.forEach((element) => {
|
|
3980
3986
|
localVarFormParams.append('files', element as any);
|
|
@@ -3982,10 +3988,6 @@ export const EvidenceApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
3982
3988
|
}
|
|
3983
3989
|
|
|
3984
3990
|
|
|
3985
|
-
if (text !== undefined) {
|
|
3986
|
-
localVarFormParams.append('text', text as any);
|
|
3987
|
-
}
|
|
3988
|
-
|
|
3989
3991
|
|
|
3990
3992
|
localVarHeaderParameter['Content-Type'] = 'multipart/form-data';
|
|
3991
3993
|
|
|
@@ -4078,15 +4080,15 @@ export const EvidenceApiFp = function(configuration?: Configuration) {
|
|
|
4078
4080
|
* @summary Upload Evidence
|
|
4079
4081
|
* @param {string} companyId
|
|
4080
4082
|
* @param {string} controlId
|
|
4083
|
+
* @param {string} text
|
|
4081
4084
|
* @param {Array<File>} files
|
|
4082
4085
|
* @param {string} [authorization]
|
|
4083
4086
|
* @param {string} [sessionId]
|
|
4084
|
-
* @param {string | null} [text]
|
|
4085
4087
|
* @param {*} [options] Override http request option.
|
|
4086
4088
|
* @throws {RequiredError}
|
|
4087
4089
|
*/
|
|
4088
|
-
async uploadEvidenceV1EvidenceUploadCompanyIdControlIdPost(companyId: string, controlId: string, files: Array<File>, authorization?: string, sessionId?: string,
|
|
4089
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.uploadEvidenceV1EvidenceUploadCompanyIdControlIdPost(companyId, controlId, files, authorization, sessionId,
|
|
4090
|
+
async uploadEvidenceV1EvidenceUploadCompanyIdControlIdPost(companyId: string, controlId: string, text: string, files: Array<File>, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EvidenceBase>> {
|
|
4091
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.uploadEvidenceV1EvidenceUploadCompanyIdControlIdPost(companyId, controlId, text, files, authorization, sessionId, options);
|
|
4090
4092
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4091
4093
|
const localVarOperationServerBasePath = operationServerMap['EvidenceApi.uploadEvidenceV1EvidenceUploadCompanyIdControlIdPost']?.[localVarOperationServerIndex]?.url;
|
|
4092
4094
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -4155,15 +4157,15 @@ export const EvidenceApiFactory = function (configuration?: Configuration, baseP
|
|
|
4155
4157
|
* @summary Upload Evidence
|
|
4156
4158
|
* @param {string} companyId
|
|
4157
4159
|
* @param {string} controlId
|
|
4160
|
+
* @param {string} text
|
|
4158
4161
|
* @param {Array<File>} files
|
|
4159
4162
|
* @param {string} [authorization]
|
|
4160
4163
|
* @param {string} [sessionId]
|
|
4161
|
-
* @param {string | null} [text]
|
|
4162
4164
|
* @param {*} [options] Override http request option.
|
|
4163
4165
|
* @throws {RequiredError}
|
|
4164
4166
|
*/
|
|
4165
|
-
uploadEvidenceV1EvidenceUploadCompanyIdControlIdPost(companyId: string, controlId: string, files: Array<File>, authorization?: string, sessionId?: string,
|
|
4166
|
-
return localVarFp.uploadEvidenceV1EvidenceUploadCompanyIdControlIdPost(companyId, controlId, files, authorization, sessionId,
|
|
4167
|
+
uploadEvidenceV1EvidenceUploadCompanyIdControlIdPost(companyId: string, controlId: string, text: string, files: Array<File>, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): AxiosPromise<EvidenceBase> {
|
|
4168
|
+
return localVarFp.uploadEvidenceV1EvidenceUploadCompanyIdControlIdPost(companyId, controlId, text, files, authorization, sessionId, options).then((request) => request(axios, basePath));
|
|
4167
4169
|
},
|
|
4168
4170
|
};
|
|
4169
4171
|
};
|
|
@@ -4237,16 +4239,16 @@ export class EvidenceApi extends BaseAPI {
|
|
|
4237
4239
|
* @summary Upload Evidence
|
|
4238
4240
|
* @param {string} companyId
|
|
4239
4241
|
* @param {string} controlId
|
|
4242
|
+
* @param {string} text
|
|
4240
4243
|
* @param {Array<File>} files
|
|
4241
4244
|
* @param {string} [authorization]
|
|
4242
4245
|
* @param {string} [sessionId]
|
|
4243
|
-
* @param {string | null} [text]
|
|
4244
4246
|
* @param {*} [options] Override http request option.
|
|
4245
4247
|
* @throws {RequiredError}
|
|
4246
4248
|
* @memberof EvidenceApi
|
|
4247
4249
|
*/
|
|
4248
|
-
public uploadEvidenceV1EvidenceUploadCompanyIdControlIdPost(companyId: string, controlId: string, files: Array<File>, authorization?: string, sessionId?: string,
|
|
4249
|
-
return EvidenceApiFp(this.configuration).uploadEvidenceV1EvidenceUploadCompanyIdControlIdPost(companyId, controlId, files, authorization, sessionId,
|
|
4250
|
+
public uploadEvidenceV1EvidenceUploadCompanyIdControlIdPost(companyId: string, controlId: string, text: string, files: Array<File>, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig) {
|
|
4251
|
+
return EvidenceApiFp(this.configuration).uploadEvidenceV1EvidenceUploadCompanyIdControlIdPost(companyId, controlId, text, files, authorization, sessionId, options).then((request) => request(this.axios, this.basePath));
|
|
4250
4252
|
}
|
|
4251
4253
|
}
|
|
4252
4254
|
|
package/dist/api.d.ts
CHANGED
|
@@ -2976,14 +2976,14 @@ export declare const EvidenceApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
2976
2976
|
* @summary Upload Evidence
|
|
2977
2977
|
* @param {string} companyId
|
|
2978
2978
|
* @param {string} controlId
|
|
2979
|
+
* @param {string} text
|
|
2979
2980
|
* @param {Array<File>} files
|
|
2980
2981
|
* @param {string} [authorization]
|
|
2981
2982
|
* @param {string} [sessionId]
|
|
2982
|
-
* @param {string | null} [text]
|
|
2983
2983
|
* @param {*} [options] Override http request option.
|
|
2984
2984
|
* @throws {RequiredError}
|
|
2985
2985
|
*/
|
|
2986
|
-
uploadEvidenceV1EvidenceUploadCompanyIdControlIdPost: (companyId: string, controlId: string, files: Array<File>, authorization?: string, sessionId?: string,
|
|
2986
|
+
uploadEvidenceV1EvidenceUploadCompanyIdControlIdPost: (companyId: string, controlId: string, text: string, files: Array<File>, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2987
2987
|
};
|
|
2988
2988
|
/**
|
|
2989
2989
|
* EvidenceApi - functional programming interface
|
|
@@ -3036,14 +3036,14 @@ export declare const EvidenceApiFp: (configuration?: Configuration) => {
|
|
|
3036
3036
|
* @summary Upload Evidence
|
|
3037
3037
|
* @param {string} companyId
|
|
3038
3038
|
* @param {string} controlId
|
|
3039
|
+
* @param {string} text
|
|
3039
3040
|
* @param {Array<File>} files
|
|
3040
3041
|
* @param {string} [authorization]
|
|
3041
3042
|
* @param {string} [sessionId]
|
|
3042
|
-
* @param {string | null} [text]
|
|
3043
3043
|
* @param {*} [options] Override http request option.
|
|
3044
3044
|
* @throws {RequiredError}
|
|
3045
3045
|
*/
|
|
3046
|
-
uploadEvidenceV1EvidenceUploadCompanyIdControlIdPost(companyId: string, controlId: string, files: Array<File>, authorization?: string, sessionId?: string,
|
|
3046
|
+
uploadEvidenceV1EvidenceUploadCompanyIdControlIdPost(companyId: string, controlId: string, text: string, files: Array<File>, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EvidenceBase>>;
|
|
3047
3047
|
};
|
|
3048
3048
|
/**
|
|
3049
3049
|
* EvidenceApi - factory interface
|
|
@@ -3096,14 +3096,14 @@ export declare const EvidenceApiFactory: (configuration?: Configuration, basePat
|
|
|
3096
3096
|
* @summary Upload Evidence
|
|
3097
3097
|
* @param {string} companyId
|
|
3098
3098
|
* @param {string} controlId
|
|
3099
|
+
* @param {string} text
|
|
3099
3100
|
* @param {Array<File>} files
|
|
3100
3101
|
* @param {string} [authorization]
|
|
3101
3102
|
* @param {string} [sessionId]
|
|
3102
|
-
* @param {string | null} [text]
|
|
3103
3103
|
* @param {*} [options] Override http request option.
|
|
3104
3104
|
* @throws {RequiredError}
|
|
3105
3105
|
*/
|
|
3106
|
-
uploadEvidenceV1EvidenceUploadCompanyIdControlIdPost(companyId: string, controlId: string, files: Array<File>, authorization?: string, sessionId?: string,
|
|
3106
|
+
uploadEvidenceV1EvidenceUploadCompanyIdControlIdPost(companyId: string, controlId: string, text: string, files: Array<File>, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): AxiosPromise<EvidenceBase>;
|
|
3107
3107
|
};
|
|
3108
3108
|
/**
|
|
3109
3109
|
* EvidenceApi - object-oriented interface
|
|
@@ -3162,15 +3162,15 @@ export declare class EvidenceApi extends BaseAPI {
|
|
|
3162
3162
|
* @summary Upload Evidence
|
|
3163
3163
|
* @param {string} companyId
|
|
3164
3164
|
* @param {string} controlId
|
|
3165
|
+
* @param {string} text
|
|
3165
3166
|
* @param {Array<File>} files
|
|
3166
3167
|
* @param {string} [authorization]
|
|
3167
3168
|
* @param {string} [sessionId]
|
|
3168
|
-
* @param {string | null} [text]
|
|
3169
3169
|
* @param {*} [options] Override http request option.
|
|
3170
3170
|
* @throws {RequiredError}
|
|
3171
3171
|
* @memberof EvidenceApi
|
|
3172
3172
|
*/
|
|
3173
|
-
uploadEvidenceV1EvidenceUploadCompanyIdControlIdPost(companyId: string, controlId: string, files: Array<File>, authorization?: string, sessionId?: string,
|
|
3173
|
+
uploadEvidenceV1EvidenceUploadCompanyIdControlIdPost(companyId: string, controlId: string, text: string, files: Array<File>, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EvidenceBase, any, {}>>;
|
|
3174
3174
|
}
|
|
3175
3175
|
/**
|
|
3176
3176
|
* HealthApi - axios parameter creator
|
package/dist/api.js
CHANGED
|
@@ -1819,18 +1819,20 @@ export const EvidenceApiAxiosParamCreator = function (configuration) {
|
|
|
1819
1819
|
* @summary Upload Evidence
|
|
1820
1820
|
* @param {string} companyId
|
|
1821
1821
|
* @param {string} controlId
|
|
1822
|
+
* @param {string} text
|
|
1822
1823
|
* @param {Array<File>} files
|
|
1823
1824
|
* @param {string} [authorization]
|
|
1824
1825
|
* @param {string} [sessionId]
|
|
1825
|
-
* @param {string | null} [text]
|
|
1826
1826
|
* @param {*} [options] Override http request option.
|
|
1827
1827
|
* @throws {RequiredError}
|
|
1828
1828
|
*/
|
|
1829
|
-
uploadEvidenceV1EvidenceUploadCompanyIdControlIdPost: (companyId_1, controlId_1, files_1, authorization_1, sessionId_1,
|
|
1829
|
+
uploadEvidenceV1EvidenceUploadCompanyIdControlIdPost: (companyId_1, controlId_1, text_1, files_1, authorization_1, sessionId_1, ...args_1) => __awaiter(this, [companyId_1, controlId_1, text_1, files_1, authorization_1, sessionId_1, ...args_1], void 0, function* (companyId, controlId, text, files, authorization, sessionId, options = {}) {
|
|
1830
1830
|
// verify required parameter 'companyId' is not null or undefined
|
|
1831
1831
|
assertParamExists('uploadEvidenceV1EvidenceUploadCompanyIdControlIdPost', 'companyId', companyId);
|
|
1832
1832
|
// verify required parameter 'controlId' is not null or undefined
|
|
1833
1833
|
assertParamExists('uploadEvidenceV1EvidenceUploadCompanyIdControlIdPost', 'controlId', controlId);
|
|
1834
|
+
// verify required parameter 'text' is not null or undefined
|
|
1835
|
+
assertParamExists('uploadEvidenceV1EvidenceUploadCompanyIdControlIdPost', 'text', text);
|
|
1834
1836
|
// verify required parameter 'files' is not null or undefined
|
|
1835
1837
|
assertParamExists('uploadEvidenceV1EvidenceUploadCompanyIdControlIdPost', 'files', files);
|
|
1836
1838
|
const localVarPath = `/v1/evidence/upload/{company_id}/{control_id}`
|
|
@@ -1846,14 +1848,14 @@ export const EvidenceApiAxiosParamCreator = function (configuration) {
|
|
|
1846
1848
|
const localVarHeaderParameter = {};
|
|
1847
1849
|
const localVarQueryParameter = {};
|
|
1848
1850
|
const localVarFormParams = new ((configuration && configuration.formDataCtor) || FormData)();
|
|
1851
|
+
if (text !== undefined) {
|
|
1852
|
+
localVarQueryParameter['text'] = text;
|
|
1853
|
+
}
|
|
1849
1854
|
if (files) {
|
|
1850
1855
|
files.forEach((element) => {
|
|
1851
1856
|
localVarFormParams.append('files', element);
|
|
1852
1857
|
});
|
|
1853
1858
|
}
|
|
1854
|
-
if (text !== undefined) {
|
|
1855
|
-
localVarFormParams.append('text', text);
|
|
1856
|
-
}
|
|
1857
1859
|
localVarHeaderParameter['Content-Type'] = 'multipart/form-data';
|
|
1858
1860
|
if (authorization != null) {
|
|
1859
1861
|
localVarHeaderParameter['Authorization'] = String(authorization);
|
|
@@ -1954,17 +1956,17 @@ export const EvidenceApiFp = function (configuration) {
|
|
|
1954
1956
|
* @summary Upload Evidence
|
|
1955
1957
|
* @param {string} companyId
|
|
1956
1958
|
* @param {string} controlId
|
|
1959
|
+
* @param {string} text
|
|
1957
1960
|
* @param {Array<File>} files
|
|
1958
1961
|
* @param {string} [authorization]
|
|
1959
1962
|
* @param {string} [sessionId]
|
|
1960
|
-
* @param {string | null} [text]
|
|
1961
1963
|
* @param {*} [options] Override http request option.
|
|
1962
1964
|
* @throws {RequiredError}
|
|
1963
1965
|
*/
|
|
1964
|
-
uploadEvidenceV1EvidenceUploadCompanyIdControlIdPost(companyId, controlId, files, authorization, sessionId,
|
|
1966
|
+
uploadEvidenceV1EvidenceUploadCompanyIdControlIdPost(companyId, controlId, text, files, authorization, sessionId, options) {
|
|
1965
1967
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1966
1968
|
var _a, _b, _c;
|
|
1967
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.uploadEvidenceV1EvidenceUploadCompanyIdControlIdPost(companyId, controlId, files, authorization, sessionId,
|
|
1969
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.uploadEvidenceV1EvidenceUploadCompanyIdControlIdPost(companyId, controlId, text, files, authorization, sessionId, options);
|
|
1968
1970
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1969
1971
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['EvidenceApi.uploadEvidenceV1EvidenceUploadCompanyIdControlIdPost']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1970
1972
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -2033,15 +2035,15 @@ export const EvidenceApiFactory = function (configuration, basePath, axios) {
|
|
|
2033
2035
|
* @summary Upload Evidence
|
|
2034
2036
|
* @param {string} companyId
|
|
2035
2037
|
* @param {string} controlId
|
|
2038
|
+
* @param {string} text
|
|
2036
2039
|
* @param {Array<File>} files
|
|
2037
2040
|
* @param {string} [authorization]
|
|
2038
2041
|
* @param {string} [sessionId]
|
|
2039
|
-
* @param {string | null} [text]
|
|
2040
2042
|
* @param {*} [options] Override http request option.
|
|
2041
2043
|
* @throws {RequiredError}
|
|
2042
2044
|
*/
|
|
2043
|
-
uploadEvidenceV1EvidenceUploadCompanyIdControlIdPost(companyId, controlId, files, authorization, sessionId,
|
|
2044
|
-
return localVarFp.uploadEvidenceV1EvidenceUploadCompanyIdControlIdPost(companyId, controlId, files, authorization, sessionId,
|
|
2045
|
+
uploadEvidenceV1EvidenceUploadCompanyIdControlIdPost(companyId, controlId, text, files, authorization, sessionId, options) {
|
|
2046
|
+
return localVarFp.uploadEvidenceV1EvidenceUploadCompanyIdControlIdPost(companyId, controlId, text, files, authorization, sessionId, options).then((request) => request(axios, basePath));
|
|
2045
2047
|
},
|
|
2046
2048
|
};
|
|
2047
2049
|
};
|
|
@@ -2110,16 +2112,16 @@ export class EvidenceApi extends BaseAPI {
|
|
|
2110
2112
|
* @summary Upload Evidence
|
|
2111
2113
|
* @param {string} companyId
|
|
2112
2114
|
* @param {string} controlId
|
|
2115
|
+
* @param {string} text
|
|
2113
2116
|
* @param {Array<File>} files
|
|
2114
2117
|
* @param {string} [authorization]
|
|
2115
2118
|
* @param {string} [sessionId]
|
|
2116
|
-
* @param {string | null} [text]
|
|
2117
2119
|
* @param {*} [options] Override http request option.
|
|
2118
2120
|
* @throws {RequiredError}
|
|
2119
2121
|
* @memberof EvidenceApi
|
|
2120
2122
|
*/
|
|
2121
|
-
uploadEvidenceV1EvidenceUploadCompanyIdControlIdPost(companyId, controlId, files, authorization, sessionId,
|
|
2122
|
-
return EvidenceApiFp(this.configuration).uploadEvidenceV1EvidenceUploadCompanyIdControlIdPost(companyId, controlId, files, authorization, sessionId,
|
|
2123
|
+
uploadEvidenceV1EvidenceUploadCompanyIdControlIdPost(companyId, controlId, text, files, authorization, sessionId, options) {
|
|
2124
|
+
return EvidenceApiFp(this.configuration).uploadEvidenceV1EvidenceUploadCompanyIdControlIdPost(companyId, controlId, text, files, authorization, sessionId, options).then((request) => request(this.axios, this.basePath));
|
|
2123
2125
|
}
|
|
2124
2126
|
}
|
|
2125
2127
|
/**
|
package/docs/EvidenceApi.md
CHANGED
|
@@ -258,18 +258,18 @@ const apiInstance = new EvidenceApi(configuration);
|
|
|
258
258
|
|
|
259
259
|
let companyId: string; // (default to undefined)
|
|
260
260
|
let controlId: string; // (default to undefined)
|
|
261
|
+
let text: string; // (default to undefined)
|
|
261
262
|
let files: Array<File>; // (default to undefined)
|
|
262
263
|
let authorization: string; // (optional) (default to undefined)
|
|
263
264
|
let sessionId: string; // (optional) (default to undefined)
|
|
264
|
-
let text: string; // (optional) (default to undefined)
|
|
265
265
|
|
|
266
266
|
const { status, data } = await apiInstance.uploadEvidenceV1EvidenceUploadCompanyIdControlIdPost(
|
|
267
267
|
companyId,
|
|
268
268
|
controlId,
|
|
269
|
+
text,
|
|
269
270
|
files,
|
|
270
271
|
authorization,
|
|
271
|
-
sessionId
|
|
272
|
-
text
|
|
272
|
+
sessionId
|
|
273
273
|
);
|
|
274
274
|
```
|
|
275
275
|
|
|
@@ -279,10 +279,10 @@ const { status, data } = await apiInstance.uploadEvidenceV1EvidenceUploadCompany
|
|
|
279
279
|
|------------- | ------------- | ------------- | -------------|
|
|
280
280
|
| **companyId** | [**string**] | | defaults to undefined|
|
|
281
281
|
| **controlId** | [**string**] | | defaults to undefined|
|
|
282
|
+
| **text** | [**string**] | | defaults to undefined|
|
|
282
283
|
| **files** | **Array<File>** | | defaults to undefined|
|
|
283
284
|
| **authorization** | [**string**] | | (optional) defaults to undefined|
|
|
284
285
|
| **sessionId** | [**string**] | | (optional) defaults to undefined|
|
|
285
|
-
| **text** | [**string**] | | (optional) defaults to undefined|
|
|
286
286
|
|
|
287
287
|
|
|
288
288
|
### Return type
|
package/package.json
CHANGED