@rasadov/lumoar-sdk 1.1.5 → 1.1.7
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/.openapi-generator/FILES +5 -0
- package/api.ts +515 -35
- package/dist/api.d.ts +308 -24
- package/dist/api.js +374 -35
- package/docs/EvidenceApi.md +4 -4
- package/docs/ForgotPasswordSchema.md +23 -0
- package/docs/ResendOTPSchema.md +25 -0
- package/docs/ResetPasswordSchema.md +27 -0
- package/docs/SendOTPSchema.md +23 -0
- package/docs/UserApi.md +265 -5
- package/docs/VerifyEmailSchema.md +25 -0
- package/package.json +1 -1
package/dist/api.js
CHANGED
|
@@ -1826,18 +1826,16 @@ export const EvidenceApiAxiosParamCreator = function (configuration) {
|
|
|
1826
1826
|
* @param {*} [options] Override http request option.
|
|
1827
1827
|
* @throws {RequiredError}
|
|
1828
1828
|
*/
|
|
1829
|
-
|
|
1829
|
+
uploadEvidenceV1EvidenceUploadPost: (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
|
-
assertParamExists('
|
|
1831
|
+
assertParamExists('uploadEvidenceV1EvidenceUploadPost', 'companyId', companyId);
|
|
1832
1832
|
// verify required parameter 'controlId' is not null or undefined
|
|
1833
|
-
assertParamExists('
|
|
1833
|
+
assertParamExists('uploadEvidenceV1EvidenceUploadPost', 'controlId', controlId);
|
|
1834
1834
|
// verify required parameter 'text' is not null or undefined
|
|
1835
|
-
assertParamExists('
|
|
1835
|
+
assertParamExists('uploadEvidenceV1EvidenceUploadPost', 'text', text);
|
|
1836
1836
|
// verify required parameter 'files' is not null or undefined
|
|
1837
|
-
assertParamExists('
|
|
1838
|
-
const localVarPath = `/v1/evidence/upload
|
|
1839
|
-
.replace(`{${"company_id"}}`, encodeURIComponent(String(companyId)))
|
|
1840
|
-
.replace(`{${"control_id"}}`, encodeURIComponent(String(controlId)));
|
|
1837
|
+
assertParamExists('uploadEvidenceV1EvidenceUploadPost', 'files', files);
|
|
1838
|
+
const localVarPath = `/v1/evidence/upload`;
|
|
1841
1839
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1842
1840
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1843
1841
|
let baseOptions;
|
|
@@ -1848,6 +1846,12 @@ export const EvidenceApiAxiosParamCreator = function (configuration) {
|
|
|
1848
1846
|
const localVarHeaderParameter = {};
|
|
1849
1847
|
const localVarQueryParameter = {};
|
|
1850
1848
|
const localVarFormParams = new ((configuration && configuration.formDataCtor) || FormData)();
|
|
1849
|
+
if (companyId !== undefined) {
|
|
1850
|
+
localVarQueryParameter['company_id'] = companyId;
|
|
1851
|
+
}
|
|
1852
|
+
if (controlId !== undefined) {
|
|
1853
|
+
localVarQueryParameter['control_id'] = controlId;
|
|
1854
|
+
}
|
|
1851
1855
|
if (text !== undefined) {
|
|
1852
1856
|
localVarQueryParameter['text'] = text;
|
|
1853
1857
|
}
|
|
@@ -1963,12 +1967,12 @@ export const EvidenceApiFp = function (configuration) {
|
|
|
1963
1967
|
* @param {*} [options] Override http request option.
|
|
1964
1968
|
* @throws {RequiredError}
|
|
1965
1969
|
*/
|
|
1966
|
-
|
|
1970
|
+
uploadEvidenceV1EvidenceUploadPost(companyId, controlId, text, files, authorization, sessionId, options) {
|
|
1967
1971
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1968
1972
|
var _a, _b, _c;
|
|
1969
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.
|
|
1973
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.uploadEvidenceV1EvidenceUploadPost(companyId, controlId, text, files, authorization, sessionId, options);
|
|
1970
1974
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1971
|
-
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['EvidenceApi.
|
|
1975
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['EvidenceApi.uploadEvidenceV1EvidenceUploadPost']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1972
1976
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1973
1977
|
});
|
|
1974
1978
|
},
|
|
@@ -2042,8 +2046,8 @@ export const EvidenceApiFactory = function (configuration, basePath, axios) {
|
|
|
2042
2046
|
* @param {*} [options] Override http request option.
|
|
2043
2047
|
* @throws {RequiredError}
|
|
2044
2048
|
*/
|
|
2045
|
-
|
|
2046
|
-
return localVarFp.
|
|
2049
|
+
uploadEvidenceV1EvidenceUploadPost(companyId, controlId, text, files, authorization, sessionId, options) {
|
|
2050
|
+
return localVarFp.uploadEvidenceV1EvidenceUploadPost(companyId, controlId, text, files, authorization, sessionId, options).then((request) => request(axios, basePath));
|
|
2047
2051
|
},
|
|
2048
2052
|
};
|
|
2049
2053
|
};
|
|
@@ -2120,8 +2124,8 @@ export class EvidenceApi extends BaseAPI {
|
|
|
2120
2124
|
* @throws {RequiredError}
|
|
2121
2125
|
* @memberof EvidenceApi
|
|
2122
2126
|
*/
|
|
2123
|
-
|
|
2124
|
-
return EvidenceApiFp(this.configuration).
|
|
2127
|
+
uploadEvidenceV1EvidenceUploadPost(companyId, controlId, text, files, authorization, sessionId, options) {
|
|
2128
|
+
return EvidenceApiFp(this.configuration).uploadEvidenceV1EvidenceUploadPost(companyId, controlId, text, files, authorization, sessionId, options).then((request) => request(this.axios, this.basePath));
|
|
2125
2129
|
}
|
|
2126
2130
|
}
|
|
2127
2131
|
/**
|
|
@@ -4584,7 +4588,7 @@ export const ListTasksForUserV1TasksUserGetOrderEnum = {
|
|
|
4584
4588
|
export const UserApiAxiosParamCreator = function (configuration) {
|
|
4585
4589
|
return {
|
|
4586
4590
|
/**
|
|
4587
|
-
*
|
|
4591
|
+
*
|
|
4588
4592
|
* @summary Change Password
|
|
4589
4593
|
* @param {UpdatePassword} updatePassword
|
|
4590
4594
|
* @param {string | null} [sessionId]
|
|
@@ -4615,7 +4619,7 @@ export const UserApiAxiosParamCreator = function (configuration) {
|
|
|
4615
4619
|
};
|
|
4616
4620
|
}),
|
|
4617
4621
|
/**
|
|
4618
|
-
*
|
|
4622
|
+
*
|
|
4619
4623
|
* @summary Delete User
|
|
4620
4624
|
* @param {string | null} [sessionId]
|
|
4621
4625
|
* @param {*} [options] Override http request option.
|
|
@@ -4641,7 +4645,37 @@ export const UserApiAxiosParamCreator = function (configuration) {
|
|
|
4641
4645
|
};
|
|
4642
4646
|
}),
|
|
4643
4647
|
/**
|
|
4644
|
-
*
|
|
4648
|
+
*
|
|
4649
|
+
* @summary Forgot Password
|
|
4650
|
+
* @param {ForgotPasswordSchema} forgotPasswordSchema
|
|
4651
|
+
* @param {*} [options] Override http request option.
|
|
4652
|
+
* @throws {RequiredError}
|
|
4653
|
+
*/
|
|
4654
|
+
forgotPasswordV1UserForgotPasswordPost: (forgotPasswordSchema_1, ...args_1) => __awaiter(this, [forgotPasswordSchema_1, ...args_1], void 0, function* (forgotPasswordSchema, options = {}) {
|
|
4655
|
+
// verify required parameter 'forgotPasswordSchema' is not null or undefined
|
|
4656
|
+
assertParamExists('forgotPasswordV1UserForgotPasswordPost', 'forgotPasswordSchema', forgotPasswordSchema);
|
|
4657
|
+
const localVarPath = `/v1/user/forgot-password`;
|
|
4658
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4659
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4660
|
+
let baseOptions;
|
|
4661
|
+
if (configuration) {
|
|
4662
|
+
baseOptions = configuration.baseOptions;
|
|
4663
|
+
}
|
|
4664
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
4665
|
+
const localVarHeaderParameter = {};
|
|
4666
|
+
const localVarQueryParameter = {};
|
|
4667
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
4668
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4669
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4670
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4671
|
+
localVarRequestOptions.data = serializeDataIfNeeded(forgotPasswordSchema, localVarRequestOptions, configuration);
|
|
4672
|
+
return {
|
|
4673
|
+
url: toPathString(localVarUrlObj),
|
|
4674
|
+
options: localVarRequestOptions,
|
|
4675
|
+
};
|
|
4676
|
+
}),
|
|
4677
|
+
/**
|
|
4678
|
+
*
|
|
4645
4679
|
* @summary Get User Dash
|
|
4646
4680
|
* @param {string | null} [sessionId]
|
|
4647
4681
|
* @param {*} [options] Override http request option.
|
|
@@ -4667,7 +4701,7 @@ export const UserApiAxiosParamCreator = function (configuration) {
|
|
|
4667
4701
|
};
|
|
4668
4702
|
}),
|
|
4669
4703
|
/**
|
|
4670
|
-
*
|
|
4704
|
+
*
|
|
4671
4705
|
* @summary Get User
|
|
4672
4706
|
* @param {string | null} [sessionId]
|
|
4673
4707
|
* @param {*} [options] Override http request option.
|
|
@@ -4693,7 +4727,97 @@ export const UserApiAxiosParamCreator = function (configuration) {
|
|
|
4693
4727
|
};
|
|
4694
4728
|
}),
|
|
4695
4729
|
/**
|
|
4696
|
-
*
|
|
4730
|
+
*
|
|
4731
|
+
* @summary Resend Otp
|
|
4732
|
+
* @param {ResendOTPSchema} resendOTPSchema
|
|
4733
|
+
* @param {*} [options] Override http request option.
|
|
4734
|
+
* @throws {RequiredError}
|
|
4735
|
+
*/
|
|
4736
|
+
resendOtpV1UserResendOtpPost: (resendOTPSchema_1, ...args_1) => __awaiter(this, [resendOTPSchema_1, ...args_1], void 0, function* (resendOTPSchema, options = {}) {
|
|
4737
|
+
// verify required parameter 'resendOTPSchema' is not null or undefined
|
|
4738
|
+
assertParamExists('resendOtpV1UserResendOtpPost', 'resendOTPSchema', resendOTPSchema);
|
|
4739
|
+
const localVarPath = `/v1/user/resend-otp`;
|
|
4740
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4741
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4742
|
+
let baseOptions;
|
|
4743
|
+
if (configuration) {
|
|
4744
|
+
baseOptions = configuration.baseOptions;
|
|
4745
|
+
}
|
|
4746
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
4747
|
+
const localVarHeaderParameter = {};
|
|
4748
|
+
const localVarQueryParameter = {};
|
|
4749
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
4750
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4751
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4752
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4753
|
+
localVarRequestOptions.data = serializeDataIfNeeded(resendOTPSchema, localVarRequestOptions, configuration);
|
|
4754
|
+
return {
|
|
4755
|
+
url: toPathString(localVarUrlObj),
|
|
4756
|
+
options: localVarRequestOptions,
|
|
4757
|
+
};
|
|
4758
|
+
}),
|
|
4759
|
+
/**
|
|
4760
|
+
*
|
|
4761
|
+
* @summary Reset Password
|
|
4762
|
+
* @param {ResetPasswordSchema} resetPasswordSchema
|
|
4763
|
+
* @param {*} [options] Override http request option.
|
|
4764
|
+
* @throws {RequiredError}
|
|
4765
|
+
*/
|
|
4766
|
+
resetPasswordV1UserResetPasswordPost: (resetPasswordSchema_1, ...args_1) => __awaiter(this, [resetPasswordSchema_1, ...args_1], void 0, function* (resetPasswordSchema, options = {}) {
|
|
4767
|
+
// verify required parameter 'resetPasswordSchema' is not null or undefined
|
|
4768
|
+
assertParamExists('resetPasswordV1UserResetPasswordPost', 'resetPasswordSchema', resetPasswordSchema);
|
|
4769
|
+
const localVarPath = `/v1/user/reset-password`;
|
|
4770
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4771
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4772
|
+
let baseOptions;
|
|
4773
|
+
if (configuration) {
|
|
4774
|
+
baseOptions = configuration.baseOptions;
|
|
4775
|
+
}
|
|
4776
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
4777
|
+
const localVarHeaderParameter = {};
|
|
4778
|
+
const localVarQueryParameter = {};
|
|
4779
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
4780
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4781
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4782
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4783
|
+
localVarRequestOptions.data = serializeDataIfNeeded(resetPasswordSchema, localVarRequestOptions, configuration);
|
|
4784
|
+
return {
|
|
4785
|
+
url: toPathString(localVarUrlObj),
|
|
4786
|
+
options: localVarRequestOptions,
|
|
4787
|
+
};
|
|
4788
|
+
}),
|
|
4789
|
+
/**
|
|
4790
|
+
*
|
|
4791
|
+
* @summary Send Verification Email
|
|
4792
|
+
* @param {SendOTPSchema} sendOTPSchema
|
|
4793
|
+
* @param {*} [options] Override http request option.
|
|
4794
|
+
* @throws {RequiredError}
|
|
4795
|
+
*/
|
|
4796
|
+
sendVerificationEmailV1UserSendVerificationEmailPost: (sendOTPSchema_1, ...args_1) => __awaiter(this, [sendOTPSchema_1, ...args_1], void 0, function* (sendOTPSchema, options = {}) {
|
|
4797
|
+
// verify required parameter 'sendOTPSchema' is not null or undefined
|
|
4798
|
+
assertParamExists('sendVerificationEmailV1UserSendVerificationEmailPost', 'sendOTPSchema', sendOTPSchema);
|
|
4799
|
+
const localVarPath = `/v1/user/send-verification-email`;
|
|
4800
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4801
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4802
|
+
let baseOptions;
|
|
4803
|
+
if (configuration) {
|
|
4804
|
+
baseOptions = configuration.baseOptions;
|
|
4805
|
+
}
|
|
4806
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
4807
|
+
const localVarHeaderParameter = {};
|
|
4808
|
+
const localVarQueryParameter = {};
|
|
4809
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
4810
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4811
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4812
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4813
|
+
localVarRequestOptions.data = serializeDataIfNeeded(sendOTPSchema, localVarRequestOptions, configuration);
|
|
4814
|
+
return {
|
|
4815
|
+
url: toPathString(localVarUrlObj),
|
|
4816
|
+
options: localVarRequestOptions,
|
|
4817
|
+
};
|
|
4818
|
+
}),
|
|
4819
|
+
/**
|
|
4820
|
+
*
|
|
4697
4821
|
* @summary Update User
|
|
4698
4822
|
* @param {UserUpdate} userUpdate
|
|
4699
4823
|
* @param {string | null} [sessionId]
|
|
@@ -4723,6 +4847,36 @@ export const UserApiAxiosParamCreator = function (configuration) {
|
|
|
4723
4847
|
options: localVarRequestOptions,
|
|
4724
4848
|
};
|
|
4725
4849
|
}),
|
|
4850
|
+
/**
|
|
4851
|
+
*
|
|
4852
|
+
* @summary Verify Email
|
|
4853
|
+
* @param {VerifyEmailSchema} verifyEmailSchema
|
|
4854
|
+
* @param {*} [options] Override http request option.
|
|
4855
|
+
* @throws {RequiredError}
|
|
4856
|
+
*/
|
|
4857
|
+
verifyEmailV1UserVerifyEmailPost: (verifyEmailSchema_1, ...args_1) => __awaiter(this, [verifyEmailSchema_1, ...args_1], void 0, function* (verifyEmailSchema, options = {}) {
|
|
4858
|
+
// verify required parameter 'verifyEmailSchema' is not null or undefined
|
|
4859
|
+
assertParamExists('verifyEmailV1UserVerifyEmailPost', 'verifyEmailSchema', verifyEmailSchema);
|
|
4860
|
+
const localVarPath = `/v1/user/verify-email`;
|
|
4861
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4862
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4863
|
+
let baseOptions;
|
|
4864
|
+
if (configuration) {
|
|
4865
|
+
baseOptions = configuration.baseOptions;
|
|
4866
|
+
}
|
|
4867
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
4868
|
+
const localVarHeaderParameter = {};
|
|
4869
|
+
const localVarQueryParameter = {};
|
|
4870
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
4871
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4872
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4873
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4874
|
+
localVarRequestOptions.data = serializeDataIfNeeded(verifyEmailSchema, localVarRequestOptions, configuration);
|
|
4875
|
+
return {
|
|
4876
|
+
url: toPathString(localVarUrlObj),
|
|
4877
|
+
options: localVarRequestOptions,
|
|
4878
|
+
};
|
|
4879
|
+
}),
|
|
4726
4880
|
};
|
|
4727
4881
|
};
|
|
4728
4882
|
/**
|
|
@@ -4733,7 +4887,7 @@ export const UserApiFp = function (configuration) {
|
|
|
4733
4887
|
const localVarAxiosParamCreator = UserApiAxiosParamCreator(configuration);
|
|
4734
4888
|
return {
|
|
4735
4889
|
/**
|
|
4736
|
-
*
|
|
4890
|
+
*
|
|
4737
4891
|
* @summary Change Password
|
|
4738
4892
|
* @param {UpdatePassword} updatePassword
|
|
4739
4893
|
* @param {string | null} [sessionId]
|
|
@@ -4750,7 +4904,7 @@ export const UserApiFp = function (configuration) {
|
|
|
4750
4904
|
});
|
|
4751
4905
|
},
|
|
4752
4906
|
/**
|
|
4753
|
-
*
|
|
4907
|
+
*
|
|
4754
4908
|
* @summary Delete User
|
|
4755
4909
|
* @param {string | null} [sessionId]
|
|
4756
4910
|
* @param {*} [options] Override http request option.
|
|
@@ -4766,7 +4920,23 @@ export const UserApiFp = function (configuration) {
|
|
|
4766
4920
|
});
|
|
4767
4921
|
},
|
|
4768
4922
|
/**
|
|
4769
|
-
*
|
|
4923
|
+
*
|
|
4924
|
+
* @summary Forgot Password
|
|
4925
|
+
* @param {ForgotPasswordSchema} forgotPasswordSchema
|
|
4926
|
+
* @param {*} [options] Override http request option.
|
|
4927
|
+
* @throws {RequiredError}
|
|
4928
|
+
*/
|
|
4929
|
+
forgotPasswordV1UserForgotPasswordPost(forgotPasswordSchema, options) {
|
|
4930
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
4931
|
+
var _a, _b, _c;
|
|
4932
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.forgotPasswordV1UserForgotPasswordPost(forgotPasswordSchema, options);
|
|
4933
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
4934
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['UserApi.forgotPasswordV1UserForgotPasswordPost']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
4935
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4936
|
+
});
|
|
4937
|
+
},
|
|
4938
|
+
/**
|
|
4939
|
+
*
|
|
4770
4940
|
* @summary Get User Dash
|
|
4771
4941
|
* @param {string | null} [sessionId]
|
|
4772
4942
|
* @param {*} [options] Override http request option.
|
|
@@ -4782,7 +4952,7 @@ export const UserApiFp = function (configuration) {
|
|
|
4782
4952
|
});
|
|
4783
4953
|
},
|
|
4784
4954
|
/**
|
|
4785
|
-
*
|
|
4955
|
+
*
|
|
4786
4956
|
* @summary Get User
|
|
4787
4957
|
* @param {string | null} [sessionId]
|
|
4788
4958
|
* @param {*} [options] Override http request option.
|
|
@@ -4798,7 +4968,55 @@ export const UserApiFp = function (configuration) {
|
|
|
4798
4968
|
});
|
|
4799
4969
|
},
|
|
4800
4970
|
/**
|
|
4801
|
-
*
|
|
4971
|
+
*
|
|
4972
|
+
* @summary Resend Otp
|
|
4973
|
+
* @param {ResendOTPSchema} resendOTPSchema
|
|
4974
|
+
* @param {*} [options] Override http request option.
|
|
4975
|
+
* @throws {RequiredError}
|
|
4976
|
+
*/
|
|
4977
|
+
resendOtpV1UserResendOtpPost(resendOTPSchema, options) {
|
|
4978
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
4979
|
+
var _a, _b, _c;
|
|
4980
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.resendOtpV1UserResendOtpPost(resendOTPSchema, options);
|
|
4981
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
4982
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['UserApi.resendOtpV1UserResendOtpPost']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
4983
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4984
|
+
});
|
|
4985
|
+
},
|
|
4986
|
+
/**
|
|
4987
|
+
*
|
|
4988
|
+
* @summary Reset Password
|
|
4989
|
+
* @param {ResetPasswordSchema} resetPasswordSchema
|
|
4990
|
+
* @param {*} [options] Override http request option.
|
|
4991
|
+
* @throws {RequiredError}
|
|
4992
|
+
*/
|
|
4993
|
+
resetPasswordV1UserResetPasswordPost(resetPasswordSchema, options) {
|
|
4994
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
4995
|
+
var _a, _b, _c;
|
|
4996
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.resetPasswordV1UserResetPasswordPost(resetPasswordSchema, options);
|
|
4997
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
4998
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['UserApi.resetPasswordV1UserResetPasswordPost']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
4999
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
5000
|
+
});
|
|
5001
|
+
},
|
|
5002
|
+
/**
|
|
5003
|
+
*
|
|
5004
|
+
* @summary Send Verification Email
|
|
5005
|
+
* @param {SendOTPSchema} sendOTPSchema
|
|
5006
|
+
* @param {*} [options] Override http request option.
|
|
5007
|
+
* @throws {RequiredError}
|
|
5008
|
+
*/
|
|
5009
|
+
sendVerificationEmailV1UserSendVerificationEmailPost(sendOTPSchema, options) {
|
|
5010
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
5011
|
+
var _a, _b, _c;
|
|
5012
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.sendVerificationEmailV1UserSendVerificationEmailPost(sendOTPSchema, options);
|
|
5013
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
5014
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['UserApi.sendVerificationEmailV1UserSendVerificationEmailPost']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
5015
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
5016
|
+
});
|
|
5017
|
+
},
|
|
5018
|
+
/**
|
|
5019
|
+
*
|
|
4802
5020
|
* @summary Update User
|
|
4803
5021
|
* @param {UserUpdate} userUpdate
|
|
4804
5022
|
* @param {string | null} [sessionId]
|
|
@@ -4814,6 +5032,22 @@ export const UserApiFp = function (configuration) {
|
|
|
4814
5032
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4815
5033
|
});
|
|
4816
5034
|
},
|
|
5035
|
+
/**
|
|
5036
|
+
*
|
|
5037
|
+
* @summary Verify Email
|
|
5038
|
+
* @param {VerifyEmailSchema} verifyEmailSchema
|
|
5039
|
+
* @param {*} [options] Override http request option.
|
|
5040
|
+
* @throws {RequiredError}
|
|
5041
|
+
*/
|
|
5042
|
+
verifyEmailV1UserVerifyEmailPost(verifyEmailSchema, options) {
|
|
5043
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
5044
|
+
var _a, _b, _c;
|
|
5045
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.verifyEmailV1UserVerifyEmailPost(verifyEmailSchema, options);
|
|
5046
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
5047
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['UserApi.verifyEmailV1UserVerifyEmailPost']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
5048
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
5049
|
+
});
|
|
5050
|
+
},
|
|
4817
5051
|
};
|
|
4818
5052
|
};
|
|
4819
5053
|
/**
|
|
@@ -4824,7 +5058,7 @@ export const UserApiFactory = function (configuration, basePath, axios) {
|
|
|
4824
5058
|
const localVarFp = UserApiFp(configuration);
|
|
4825
5059
|
return {
|
|
4826
5060
|
/**
|
|
4827
|
-
*
|
|
5061
|
+
*
|
|
4828
5062
|
* @summary Change Password
|
|
4829
5063
|
* @param {UpdatePassword} updatePassword
|
|
4830
5064
|
* @param {string | null} [sessionId]
|
|
@@ -4835,7 +5069,7 @@ export const UserApiFactory = function (configuration, basePath, axios) {
|
|
|
4835
5069
|
return localVarFp.changePasswordV1UserPasswordChangePatch(updatePassword, sessionId, options).then((request) => request(axios, basePath));
|
|
4836
5070
|
},
|
|
4837
5071
|
/**
|
|
4838
|
-
*
|
|
5072
|
+
*
|
|
4839
5073
|
* @summary Delete User
|
|
4840
5074
|
* @param {string | null} [sessionId]
|
|
4841
5075
|
* @param {*} [options] Override http request option.
|
|
@@ -4845,7 +5079,17 @@ export const UserApiFactory = function (configuration, basePath, axios) {
|
|
|
4845
5079
|
return localVarFp.deleteUserV1UserDeleteDelete(sessionId, options).then((request) => request(axios, basePath));
|
|
4846
5080
|
},
|
|
4847
5081
|
/**
|
|
4848
|
-
*
|
|
5082
|
+
*
|
|
5083
|
+
* @summary Forgot Password
|
|
5084
|
+
* @param {ForgotPasswordSchema} forgotPasswordSchema
|
|
5085
|
+
* @param {*} [options] Override http request option.
|
|
5086
|
+
* @throws {RequiredError}
|
|
5087
|
+
*/
|
|
5088
|
+
forgotPasswordV1UserForgotPasswordPost(forgotPasswordSchema, options) {
|
|
5089
|
+
return localVarFp.forgotPasswordV1UserForgotPasswordPost(forgotPasswordSchema, options).then((request) => request(axios, basePath));
|
|
5090
|
+
},
|
|
5091
|
+
/**
|
|
5092
|
+
*
|
|
4849
5093
|
* @summary Get User Dash
|
|
4850
5094
|
* @param {string | null} [sessionId]
|
|
4851
5095
|
* @param {*} [options] Override http request option.
|
|
@@ -4855,7 +5099,7 @@ export const UserApiFactory = function (configuration, basePath, axios) {
|
|
|
4855
5099
|
return localVarFp.getUserDashV1UserMeDashGet(sessionId, options).then((request) => request(axios, basePath));
|
|
4856
5100
|
},
|
|
4857
5101
|
/**
|
|
4858
|
-
*
|
|
5102
|
+
*
|
|
4859
5103
|
* @summary Get User
|
|
4860
5104
|
* @param {string | null} [sessionId]
|
|
4861
5105
|
* @param {*} [options] Override http request option.
|
|
@@ -4865,7 +5109,37 @@ export const UserApiFactory = function (configuration, basePath, axios) {
|
|
|
4865
5109
|
return localVarFp.getUserV1UserMeGet(sessionId, options).then((request) => request(axios, basePath));
|
|
4866
5110
|
},
|
|
4867
5111
|
/**
|
|
4868
|
-
*
|
|
5112
|
+
*
|
|
5113
|
+
* @summary Resend Otp
|
|
5114
|
+
* @param {ResendOTPSchema} resendOTPSchema
|
|
5115
|
+
* @param {*} [options] Override http request option.
|
|
5116
|
+
* @throws {RequiredError}
|
|
5117
|
+
*/
|
|
5118
|
+
resendOtpV1UserResendOtpPost(resendOTPSchema, options) {
|
|
5119
|
+
return localVarFp.resendOtpV1UserResendOtpPost(resendOTPSchema, options).then((request) => request(axios, basePath));
|
|
5120
|
+
},
|
|
5121
|
+
/**
|
|
5122
|
+
*
|
|
5123
|
+
* @summary Reset Password
|
|
5124
|
+
* @param {ResetPasswordSchema} resetPasswordSchema
|
|
5125
|
+
* @param {*} [options] Override http request option.
|
|
5126
|
+
* @throws {RequiredError}
|
|
5127
|
+
*/
|
|
5128
|
+
resetPasswordV1UserResetPasswordPost(resetPasswordSchema, options) {
|
|
5129
|
+
return localVarFp.resetPasswordV1UserResetPasswordPost(resetPasswordSchema, options).then((request) => request(axios, basePath));
|
|
5130
|
+
},
|
|
5131
|
+
/**
|
|
5132
|
+
*
|
|
5133
|
+
* @summary Send Verification Email
|
|
5134
|
+
* @param {SendOTPSchema} sendOTPSchema
|
|
5135
|
+
* @param {*} [options] Override http request option.
|
|
5136
|
+
* @throws {RequiredError}
|
|
5137
|
+
*/
|
|
5138
|
+
sendVerificationEmailV1UserSendVerificationEmailPost(sendOTPSchema, options) {
|
|
5139
|
+
return localVarFp.sendVerificationEmailV1UserSendVerificationEmailPost(sendOTPSchema, options).then((request) => request(axios, basePath));
|
|
5140
|
+
},
|
|
5141
|
+
/**
|
|
5142
|
+
*
|
|
4869
5143
|
* @summary Update User
|
|
4870
5144
|
* @param {UserUpdate} userUpdate
|
|
4871
5145
|
* @param {string | null} [sessionId]
|
|
@@ -4875,6 +5149,16 @@ export const UserApiFactory = function (configuration, basePath, axios) {
|
|
|
4875
5149
|
updateUserV1UserUpdatePatch(userUpdate, sessionId, options) {
|
|
4876
5150
|
return localVarFp.updateUserV1UserUpdatePatch(userUpdate, sessionId, options).then((request) => request(axios, basePath));
|
|
4877
5151
|
},
|
|
5152
|
+
/**
|
|
5153
|
+
*
|
|
5154
|
+
* @summary Verify Email
|
|
5155
|
+
* @param {VerifyEmailSchema} verifyEmailSchema
|
|
5156
|
+
* @param {*} [options] Override http request option.
|
|
5157
|
+
* @throws {RequiredError}
|
|
5158
|
+
*/
|
|
5159
|
+
verifyEmailV1UserVerifyEmailPost(verifyEmailSchema, options) {
|
|
5160
|
+
return localVarFp.verifyEmailV1UserVerifyEmailPost(verifyEmailSchema, options).then((request) => request(axios, basePath));
|
|
5161
|
+
},
|
|
4878
5162
|
};
|
|
4879
5163
|
};
|
|
4880
5164
|
/**
|
|
@@ -4885,7 +5169,7 @@ export const UserApiFactory = function (configuration, basePath, axios) {
|
|
|
4885
5169
|
*/
|
|
4886
5170
|
export class UserApi extends BaseAPI {
|
|
4887
5171
|
/**
|
|
4888
|
-
*
|
|
5172
|
+
*
|
|
4889
5173
|
* @summary Change Password
|
|
4890
5174
|
* @param {UpdatePassword} updatePassword
|
|
4891
5175
|
* @param {string | null} [sessionId]
|
|
@@ -4897,7 +5181,7 @@ export class UserApi extends BaseAPI {
|
|
|
4897
5181
|
return UserApiFp(this.configuration).changePasswordV1UserPasswordChangePatch(updatePassword, sessionId, options).then((request) => request(this.axios, this.basePath));
|
|
4898
5182
|
}
|
|
4899
5183
|
/**
|
|
4900
|
-
*
|
|
5184
|
+
*
|
|
4901
5185
|
* @summary Delete User
|
|
4902
5186
|
* @param {string | null} [sessionId]
|
|
4903
5187
|
* @param {*} [options] Override http request option.
|
|
@@ -4908,7 +5192,18 @@ export class UserApi extends BaseAPI {
|
|
|
4908
5192
|
return UserApiFp(this.configuration).deleteUserV1UserDeleteDelete(sessionId, options).then((request) => request(this.axios, this.basePath));
|
|
4909
5193
|
}
|
|
4910
5194
|
/**
|
|
4911
|
-
*
|
|
5195
|
+
*
|
|
5196
|
+
* @summary Forgot Password
|
|
5197
|
+
* @param {ForgotPasswordSchema} forgotPasswordSchema
|
|
5198
|
+
* @param {*} [options] Override http request option.
|
|
5199
|
+
* @throws {RequiredError}
|
|
5200
|
+
* @memberof UserApi
|
|
5201
|
+
*/
|
|
5202
|
+
forgotPasswordV1UserForgotPasswordPost(forgotPasswordSchema, options) {
|
|
5203
|
+
return UserApiFp(this.configuration).forgotPasswordV1UserForgotPasswordPost(forgotPasswordSchema, options).then((request) => request(this.axios, this.basePath));
|
|
5204
|
+
}
|
|
5205
|
+
/**
|
|
5206
|
+
*
|
|
4912
5207
|
* @summary Get User Dash
|
|
4913
5208
|
* @param {string | null} [sessionId]
|
|
4914
5209
|
* @param {*} [options] Override http request option.
|
|
@@ -4919,7 +5214,7 @@ export class UserApi extends BaseAPI {
|
|
|
4919
5214
|
return UserApiFp(this.configuration).getUserDashV1UserMeDashGet(sessionId, options).then((request) => request(this.axios, this.basePath));
|
|
4920
5215
|
}
|
|
4921
5216
|
/**
|
|
4922
|
-
*
|
|
5217
|
+
*
|
|
4923
5218
|
* @summary Get User
|
|
4924
5219
|
* @param {string | null} [sessionId]
|
|
4925
5220
|
* @param {*} [options] Override http request option.
|
|
@@ -4930,7 +5225,40 @@ export class UserApi extends BaseAPI {
|
|
|
4930
5225
|
return UserApiFp(this.configuration).getUserV1UserMeGet(sessionId, options).then((request) => request(this.axios, this.basePath));
|
|
4931
5226
|
}
|
|
4932
5227
|
/**
|
|
4933
|
-
*
|
|
5228
|
+
*
|
|
5229
|
+
* @summary Resend Otp
|
|
5230
|
+
* @param {ResendOTPSchema} resendOTPSchema
|
|
5231
|
+
* @param {*} [options] Override http request option.
|
|
5232
|
+
* @throws {RequiredError}
|
|
5233
|
+
* @memberof UserApi
|
|
5234
|
+
*/
|
|
5235
|
+
resendOtpV1UserResendOtpPost(resendOTPSchema, options) {
|
|
5236
|
+
return UserApiFp(this.configuration).resendOtpV1UserResendOtpPost(resendOTPSchema, options).then((request) => request(this.axios, this.basePath));
|
|
5237
|
+
}
|
|
5238
|
+
/**
|
|
5239
|
+
*
|
|
5240
|
+
* @summary Reset Password
|
|
5241
|
+
* @param {ResetPasswordSchema} resetPasswordSchema
|
|
5242
|
+
* @param {*} [options] Override http request option.
|
|
5243
|
+
* @throws {RequiredError}
|
|
5244
|
+
* @memberof UserApi
|
|
5245
|
+
*/
|
|
5246
|
+
resetPasswordV1UserResetPasswordPost(resetPasswordSchema, options) {
|
|
5247
|
+
return UserApiFp(this.configuration).resetPasswordV1UserResetPasswordPost(resetPasswordSchema, options).then((request) => request(this.axios, this.basePath));
|
|
5248
|
+
}
|
|
5249
|
+
/**
|
|
5250
|
+
*
|
|
5251
|
+
* @summary Send Verification Email
|
|
5252
|
+
* @param {SendOTPSchema} sendOTPSchema
|
|
5253
|
+
* @param {*} [options] Override http request option.
|
|
5254
|
+
* @throws {RequiredError}
|
|
5255
|
+
* @memberof UserApi
|
|
5256
|
+
*/
|
|
5257
|
+
sendVerificationEmailV1UserSendVerificationEmailPost(sendOTPSchema, options) {
|
|
5258
|
+
return UserApiFp(this.configuration).sendVerificationEmailV1UserSendVerificationEmailPost(sendOTPSchema, options).then((request) => request(this.axios, this.basePath));
|
|
5259
|
+
}
|
|
5260
|
+
/**
|
|
5261
|
+
*
|
|
4934
5262
|
* @summary Update User
|
|
4935
5263
|
* @param {UserUpdate} userUpdate
|
|
4936
5264
|
* @param {string | null} [sessionId]
|
|
@@ -4941,4 +5269,15 @@ export class UserApi extends BaseAPI {
|
|
|
4941
5269
|
updateUserV1UserUpdatePatch(userUpdate, sessionId, options) {
|
|
4942
5270
|
return UserApiFp(this.configuration).updateUserV1UserUpdatePatch(userUpdate, sessionId, options).then((request) => request(this.axios, this.basePath));
|
|
4943
5271
|
}
|
|
5272
|
+
/**
|
|
5273
|
+
*
|
|
5274
|
+
* @summary Verify Email
|
|
5275
|
+
* @param {VerifyEmailSchema} verifyEmailSchema
|
|
5276
|
+
* @param {*} [options] Override http request option.
|
|
5277
|
+
* @throws {RequiredError}
|
|
5278
|
+
* @memberof UserApi
|
|
5279
|
+
*/
|
|
5280
|
+
verifyEmailV1UserVerifyEmailPost(verifyEmailSchema, options) {
|
|
5281
|
+
return UserApiFp(this.configuration).verifyEmailV1UserVerifyEmailPost(verifyEmailSchema, options).then((request) => request(this.axios, this.basePath));
|
|
5282
|
+
}
|
|
4944
5283
|
}
|
package/docs/EvidenceApi.md
CHANGED
|
@@ -8,7 +8,7 @@ All URIs are relative to *http://localhost*
|
|
|
8
8
|
|[**getEvidenceFilesV1EvidenceFileEvidenceFileIdGet**](#getevidencefilesv1evidencefileevidencefileidget) | **GET** /v1/evidence/file/{evidence_file_id} | Get Evidence Files|
|
|
9
9
|
|[**listCompanyEvidenceV1EvidenceCompanyCompanyIdGet**](#listcompanyevidencev1evidencecompanycompanyidget) | **GET** /v1/evidence/company/{company_id} | List Company Evidence|
|
|
10
10
|
|[**updateEvidenceV1EvidenceUpdatePut**](#updateevidencev1evidenceupdateput) | **PUT** /v1/evidence/update | Update Evidence|
|
|
11
|
-
|[**
|
|
11
|
+
|[**uploadEvidenceV1EvidenceUploadPost**](#uploadevidencev1evidenceuploadpost) | **POST** /v1/evidence/upload | Upload Evidence|
|
|
12
12
|
|
|
13
13
|
# **deleteEvidenceV1EvidenceDeleteDelete**
|
|
14
14
|
> deleteEvidenceV1EvidenceDeleteDelete()
|
|
@@ -241,8 +241,8 @@ No authorization required
|
|
|
241
241
|
|
|
242
242
|
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
243
243
|
|
|
244
|
-
# **
|
|
245
|
-
> EvidenceBase
|
|
244
|
+
# **uploadEvidenceV1EvidenceUploadPost**
|
|
245
|
+
> EvidenceBase uploadEvidenceV1EvidenceUploadPost()
|
|
246
246
|
|
|
247
247
|
|
|
248
248
|
### Example
|
|
@@ -263,7 +263,7 @@ let files: Array<File>; // (default to undefined)
|
|
|
263
263
|
let authorization: string; // (optional) (default to undefined)
|
|
264
264
|
let sessionId: string; // (optional) (default to undefined)
|
|
265
265
|
|
|
266
|
-
const { status, data } = await apiInstance.
|
|
266
|
+
const { status, data } = await apiInstance.uploadEvidenceV1EvidenceUploadPost(
|
|
267
267
|
companyId,
|
|
268
268
|
controlId,
|
|
269
269
|
text,
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# ForgotPasswordSchema
|
|
2
|
+
|
|
3
|
+
Schema for forgot password request
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type | Description | Notes
|
|
8
|
+
------------ | ------------- | ------------- | -------------
|
|
9
|
+
**email** | **string** | | [default to undefined]
|
|
10
|
+
**turnstile_token** | **string** | | [default to undefined]
|
|
11
|
+
|
|
12
|
+
## Example
|
|
13
|
+
|
|
14
|
+
```typescript
|
|
15
|
+
import { ForgotPasswordSchema } from './api';
|
|
16
|
+
|
|
17
|
+
const instance: ForgotPasswordSchema = {
|
|
18
|
+
email,
|
|
19
|
+
turnstile_token,
|
|
20
|
+
};
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|