@infisale-client/api 1.2.50 → 1.2.51
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/api/api.d.ts +109 -43
- package/dist/api/api.js +59 -0
- package/dist/api/api.mjs +59 -0
- package/package.json +2 -2
package/dist/api/api.d.ts
CHANGED
|
@@ -2086,10 +2086,16 @@ export interface ICompany {
|
|
|
2086
2086
|
'warehouses': Array<ICompanyResponseWarehousesInner>;
|
|
2087
2087
|
/**
|
|
2088
2088
|
*
|
|
2089
|
-
* @type {
|
|
2089
|
+
* @type {string}
|
|
2090
2090
|
* @memberof ICompany
|
|
2091
2091
|
*/
|
|
2092
|
-
'
|
|
2092
|
+
'senderEmailDnsRecordsUpdatedAt': string;
|
|
2093
|
+
/**
|
|
2094
|
+
*
|
|
2095
|
+
* @type {Array<ICompanyAdminResponseSenderEmailDnsRecordsInner>}
|
|
2096
|
+
* @memberof ICompany
|
|
2097
|
+
*/
|
|
2098
|
+
'senderEmailDnsRecords': Array<ICompanyAdminResponseSenderEmailDnsRecordsInner>;
|
|
2093
2099
|
/**
|
|
2094
2100
|
*
|
|
2095
2101
|
* @type {{ [key: string]: ICompanyResponseNavigationsValue; }}
|
|
@@ -2387,10 +2393,10 @@ export interface ICompanyAdminResponse {
|
|
|
2387
2393
|
'warehouses': Array<ICompanyResponseWarehousesInner>;
|
|
2388
2394
|
/**
|
|
2389
2395
|
*
|
|
2390
|
-
* @type {Array<
|
|
2396
|
+
* @type {Array<ICompanyAdminResponseSenderEmailDnsRecordsInner>}
|
|
2391
2397
|
* @memberof ICompanyAdminResponse
|
|
2392
2398
|
*/
|
|
2393
|
-
'senderEmailDnsRecords'
|
|
2399
|
+
'senderEmailDnsRecords': Array<ICompanyAdminResponseSenderEmailDnsRecordsInner>;
|
|
2394
2400
|
/**
|
|
2395
2401
|
*
|
|
2396
2402
|
* @type {{ [key: string]: ICompanyResponseNavigationsValue; }}
|
|
@@ -2424,6 +2430,55 @@ export interface ICompanyAdminResponse {
|
|
|
2424
2430
|
*/
|
|
2425
2431
|
'customHostnames': Array<ICompanyResponseCustomHostnamesInner>;
|
|
2426
2432
|
}
|
|
2433
|
+
/**
|
|
2434
|
+
*
|
|
2435
|
+
* @export
|
|
2436
|
+
* @interface ICompanyAdminResponseSenderEmailDnsRecordsInner
|
|
2437
|
+
*/
|
|
2438
|
+
export interface ICompanyAdminResponseSenderEmailDnsRecordsInner {
|
|
2439
|
+
/**
|
|
2440
|
+
*
|
|
2441
|
+
* @type {number}
|
|
2442
|
+
* @memberof ICompanyAdminResponseSenderEmailDnsRecordsInner
|
|
2443
|
+
*/
|
|
2444
|
+
'errorCount': number;
|
|
2445
|
+
/**
|
|
2446
|
+
*
|
|
2447
|
+
* @type {boolean}
|
|
2448
|
+
* @memberof ICompanyAdminResponseSenderEmailDnsRecordsInner
|
|
2449
|
+
*/
|
|
2450
|
+
'active': boolean;
|
|
2451
|
+
/**
|
|
2452
|
+
*
|
|
2453
|
+
* @type {boolean}
|
|
2454
|
+
* @memberof ICompanyAdminResponseSenderEmailDnsRecordsInner
|
|
2455
|
+
*/
|
|
2456
|
+
'isNew': boolean;
|
|
2457
|
+
/**
|
|
2458
|
+
*
|
|
2459
|
+
* @type {number}
|
|
2460
|
+
* @memberof ICompanyAdminResponseSenderEmailDnsRecordsInner
|
|
2461
|
+
*/
|
|
2462
|
+
'priority'?: number;
|
|
2463
|
+
/**
|
|
2464
|
+
*
|
|
2465
|
+
* @type {EmailConfigDnsRecordTypeEnum}
|
|
2466
|
+
* @memberof ICompanyAdminResponseSenderEmailDnsRecordsInner
|
|
2467
|
+
*/
|
|
2468
|
+
'type': EmailConfigDnsRecordTypeEnum;
|
|
2469
|
+
/**
|
|
2470
|
+
*
|
|
2471
|
+
* @type {string}
|
|
2472
|
+
* @memberof ICompanyAdminResponseSenderEmailDnsRecordsInner
|
|
2473
|
+
*/
|
|
2474
|
+
'value': string;
|
|
2475
|
+
/**
|
|
2476
|
+
*
|
|
2477
|
+
* @type {string}
|
|
2478
|
+
* @memberof ICompanyAdminResponseSenderEmailDnsRecordsInner
|
|
2479
|
+
*/
|
|
2480
|
+
'key': string;
|
|
2481
|
+
}
|
|
2427
2482
|
/**
|
|
2428
2483
|
*
|
|
2429
2484
|
* @export
|
|
@@ -2604,10 +2659,16 @@ export interface ICompanyPatchRequest {
|
|
|
2604
2659
|
'firebaseAdminCredentials'?: ICompanyResponseFirebaseAdminCredentials;
|
|
2605
2660
|
/**
|
|
2606
2661
|
*
|
|
2607
|
-
* @type {
|
|
2662
|
+
* @type {string}
|
|
2608
2663
|
* @memberof ICompanyPatchRequest
|
|
2609
2664
|
*/
|
|
2610
|
-
'
|
|
2665
|
+
'senderEmailDnsRecordsUpdatedAt'?: string;
|
|
2666
|
+
/**
|
|
2667
|
+
*
|
|
2668
|
+
* @type {Array<ICompanyAdminResponseSenderEmailDnsRecordsInner>}
|
|
2669
|
+
* @memberof ICompanyPatchRequest
|
|
2670
|
+
*/
|
|
2671
|
+
'senderEmailDnsRecords'?: Array<ICompanyAdminResponseSenderEmailDnsRecordsInner>;
|
|
2611
2672
|
/**
|
|
2612
2673
|
*
|
|
2613
2674
|
* @type {Array<ICompanyResponseWarehousesInner>}
|
|
@@ -3042,12 +3103,6 @@ export interface ICompanyResponse {
|
|
|
3042
3103
|
* @memberof ICompanyResponse
|
|
3043
3104
|
*/
|
|
3044
3105
|
'warehouses': Array<ICompanyResponseWarehousesInner>;
|
|
3045
|
-
/**
|
|
3046
|
-
*
|
|
3047
|
-
* @type {Array<ICompanyResponseSenderEmailDnsRecordsInner>}
|
|
3048
|
-
* @memberof ICompanyResponse
|
|
3049
|
-
*/
|
|
3050
|
-
'senderEmailDnsRecords'?: Array<ICompanyResponseSenderEmailDnsRecordsInner>;
|
|
3051
3106
|
/**
|
|
3052
3107
|
*
|
|
3053
3108
|
* @type {{ [key: string]: ICompanyResponseNavigationsValue; }}
|
|
@@ -3278,37 +3333,6 @@ export interface ICompanyResponseNavigationsValue {
|
|
|
3278
3333
|
*/
|
|
3279
3334
|
'header': Array<NavigationUrl>;
|
|
3280
3335
|
}
|
|
3281
|
-
/**
|
|
3282
|
-
*
|
|
3283
|
-
* @export
|
|
3284
|
-
* @interface ICompanyResponseSenderEmailDnsRecordsInner
|
|
3285
|
-
*/
|
|
3286
|
-
export interface ICompanyResponseSenderEmailDnsRecordsInner {
|
|
3287
|
-
/**
|
|
3288
|
-
*
|
|
3289
|
-
* @type {number}
|
|
3290
|
-
* @memberof ICompanyResponseSenderEmailDnsRecordsInner
|
|
3291
|
-
*/
|
|
3292
|
-
'priority'?: number;
|
|
3293
|
-
/**
|
|
3294
|
-
*
|
|
3295
|
-
* @type {EmailConfigDnsRecordTypeEnum}
|
|
3296
|
-
* @memberof ICompanyResponseSenderEmailDnsRecordsInner
|
|
3297
|
-
*/
|
|
3298
|
-
'type': EmailConfigDnsRecordTypeEnum;
|
|
3299
|
-
/**
|
|
3300
|
-
*
|
|
3301
|
-
* @type {string}
|
|
3302
|
-
* @memberof ICompanyResponseSenderEmailDnsRecordsInner
|
|
3303
|
-
*/
|
|
3304
|
-
'value': string;
|
|
3305
|
-
/**
|
|
3306
|
-
*
|
|
3307
|
-
* @type {string}
|
|
3308
|
-
* @memberof ICompanyResponseSenderEmailDnsRecordsInner
|
|
3309
|
-
*/
|
|
3310
|
-
'key': string;
|
|
3311
|
-
}
|
|
3312
3336
|
/**
|
|
3313
3337
|
*
|
|
3314
3338
|
* @export
|
|
@@ -12188,6 +12212,13 @@ export declare const CompanyApiAxiosParamCreator: (configuration?: Configuration
|
|
|
12188
12212
|
* @throws {RequiredError}
|
|
12189
12213
|
*/
|
|
12190
12214
|
addUserToCompany: (id: string, iCompanyCreateUserRequest: ICompanyCreateUserRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12215
|
+
/**
|
|
12216
|
+
*
|
|
12217
|
+
* @param {string} id
|
|
12218
|
+
* @param {*} [options] Override http request option.
|
|
12219
|
+
* @throws {RequiredError}
|
|
12220
|
+
*/
|
|
12221
|
+
checkEmailDnsRecords: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12191
12222
|
/**
|
|
12192
12223
|
*
|
|
12193
12224
|
* @param {ICompanyPostRequest} iCompanyPostRequest
|
|
@@ -12382,6 +12413,13 @@ export declare const CompanyApiFp: (configuration?: Configuration) => {
|
|
|
12382
12413
|
* @throws {RequiredError}
|
|
12383
12414
|
*/
|
|
12384
12415
|
addUserToCompany(id: string, iCompanyCreateUserRequest: ICompanyCreateUserRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ICompanyResponse>>;
|
|
12416
|
+
/**
|
|
12417
|
+
*
|
|
12418
|
+
* @param {string} id
|
|
12419
|
+
* @param {*} [options] Override http request option.
|
|
12420
|
+
* @throws {RequiredError}
|
|
12421
|
+
*/
|
|
12422
|
+
checkEmailDnsRecords(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
12385
12423
|
/**
|
|
12386
12424
|
*
|
|
12387
12425
|
* @param {ICompanyPostRequest} iCompanyPostRequest
|
|
@@ -12574,6 +12612,13 @@ export declare const CompanyApiFactory: (configuration?: Configuration, basePath
|
|
|
12574
12612
|
* @throws {RequiredError}
|
|
12575
12613
|
*/
|
|
12576
12614
|
addUserToCompany(requestParameters: CompanyApiAddUserToCompanyRequest, options?: RawAxiosRequestConfig): AxiosPromise<ICompanyResponse>;
|
|
12615
|
+
/**
|
|
12616
|
+
*
|
|
12617
|
+
* @param {CompanyApiCheckEmailDnsRecordsRequest} requestParameters Request parameters.
|
|
12618
|
+
* @param {*} [options] Override http request option.
|
|
12619
|
+
* @throws {RequiredError}
|
|
12620
|
+
*/
|
|
12621
|
+
checkEmailDnsRecords(requestParameters: CompanyApiCheckEmailDnsRecordsRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
12577
12622
|
/**
|
|
12578
12623
|
*
|
|
12579
12624
|
* @param {CompanyApiCreateCompanyRequest} requestParameters Request parameters.
|
|
@@ -12753,6 +12798,19 @@ export interface CompanyApiAddUserToCompanyRequest {
|
|
|
12753
12798
|
*/
|
|
12754
12799
|
readonly iCompanyCreateUserRequest: ICompanyCreateUserRequest;
|
|
12755
12800
|
}
|
|
12801
|
+
/**
|
|
12802
|
+
* Request parameters for checkEmailDnsRecords operation in CompanyApi.
|
|
12803
|
+
* @export
|
|
12804
|
+
* @interface CompanyApiCheckEmailDnsRecordsRequest
|
|
12805
|
+
*/
|
|
12806
|
+
export interface CompanyApiCheckEmailDnsRecordsRequest {
|
|
12807
|
+
/**
|
|
12808
|
+
*
|
|
12809
|
+
* @type {string}
|
|
12810
|
+
* @memberof CompanyApiCheckEmailDnsRecords
|
|
12811
|
+
*/
|
|
12812
|
+
readonly id: string;
|
|
12813
|
+
}
|
|
12756
12814
|
/**
|
|
12757
12815
|
* Request parameters for createCompany operation in CompanyApi.
|
|
12758
12816
|
* @export
|
|
@@ -13228,6 +13286,14 @@ export declare class CompanyApi extends BaseAPI {
|
|
|
13228
13286
|
* @memberof CompanyApi
|
|
13229
13287
|
*/
|
|
13230
13288
|
addUserToCompany(requestParameters: CompanyApiAddUserToCompanyRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ICompanyResponse, any>>;
|
|
13289
|
+
/**
|
|
13290
|
+
*
|
|
13291
|
+
* @param {CompanyApiCheckEmailDnsRecordsRequest} requestParameters Request parameters.
|
|
13292
|
+
* @param {*} [options] Override http request option.
|
|
13293
|
+
* @throws {RequiredError}
|
|
13294
|
+
* @memberof CompanyApi
|
|
13295
|
+
*/
|
|
13296
|
+
checkEmailDnsRecords(requestParameters: CompanyApiCheckEmailDnsRecordsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
13231
13297
|
/**
|
|
13232
13298
|
*
|
|
13233
13299
|
* @param {CompanyApiCreateCompanyRequest} requestParameters Request parameters.
|
package/dist/api/api.js
CHANGED
|
@@ -3649,6 +3649,34 @@ const CompanyApiAxiosParamCreator = function (configuration) {
|
|
|
3649
3649
|
options: localVarRequestOptions,
|
|
3650
3650
|
};
|
|
3651
3651
|
},
|
|
3652
|
+
/**
|
|
3653
|
+
*
|
|
3654
|
+
* @param {string} id
|
|
3655
|
+
* @param {*} [options] Override http request option.
|
|
3656
|
+
* @throws {RequiredError}
|
|
3657
|
+
*/
|
|
3658
|
+
checkEmailDnsRecords: async (id, options = {}) => {
|
|
3659
|
+
// verify required parameter 'id' is not null or undefined
|
|
3660
|
+
(0, common_1.assertParamExists)('checkEmailDnsRecords', 'id', id);
|
|
3661
|
+
const localVarPath = `/api/companies/{id}/check-email-dns-records`
|
|
3662
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
3663
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3664
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
3665
|
+
let baseOptions;
|
|
3666
|
+
if (configuration) {
|
|
3667
|
+
baseOptions = configuration.baseOptions;
|
|
3668
|
+
}
|
|
3669
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
3670
|
+
const localVarHeaderParameter = {};
|
|
3671
|
+
const localVarQueryParameter = {};
|
|
3672
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
3673
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3674
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
3675
|
+
return {
|
|
3676
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
3677
|
+
options: localVarRequestOptions,
|
|
3678
|
+
};
|
|
3679
|
+
},
|
|
3652
3680
|
/**
|
|
3653
3681
|
*
|
|
3654
3682
|
* @param {ICompanyPostRequest} iCompanyPostRequest
|
|
@@ -4389,6 +4417,18 @@ const CompanyApiFp = function (configuration) {
|
|
|
4389
4417
|
const localVarOperationServerBasePath = base_1.operationServerMap['CompanyApi.addUserToCompany']?.[localVarOperationServerIndex]?.url;
|
|
4390
4418
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4391
4419
|
},
|
|
4420
|
+
/**
|
|
4421
|
+
*
|
|
4422
|
+
* @param {string} id
|
|
4423
|
+
* @param {*} [options] Override http request option.
|
|
4424
|
+
* @throws {RequiredError}
|
|
4425
|
+
*/
|
|
4426
|
+
async checkEmailDnsRecords(id, options) {
|
|
4427
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.checkEmailDnsRecords(id, options);
|
|
4428
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4429
|
+
const localVarOperationServerBasePath = base_1.operationServerMap['CompanyApi.checkEmailDnsRecords']?.[localVarOperationServerIndex]?.url;
|
|
4430
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4431
|
+
},
|
|
4392
4432
|
/**
|
|
4393
4433
|
*
|
|
4394
4434
|
* @param {ICompanyPostRequest} iCompanyPostRequest
|
|
@@ -4689,6 +4729,15 @@ const CompanyApiFactory = function (configuration, basePath, axios) {
|
|
|
4689
4729
|
addUserToCompany(requestParameters, options) {
|
|
4690
4730
|
return localVarFp.addUserToCompany(requestParameters.id, requestParameters.iCompanyCreateUserRequest, options).then((request) => request(axios, basePath));
|
|
4691
4731
|
},
|
|
4732
|
+
/**
|
|
4733
|
+
*
|
|
4734
|
+
* @param {CompanyApiCheckEmailDnsRecordsRequest} requestParameters Request parameters.
|
|
4735
|
+
* @param {*} [options] Override http request option.
|
|
4736
|
+
* @throws {RequiredError}
|
|
4737
|
+
*/
|
|
4738
|
+
checkEmailDnsRecords(requestParameters, options) {
|
|
4739
|
+
return localVarFp.checkEmailDnsRecords(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
4740
|
+
},
|
|
4692
4741
|
/**
|
|
4693
4742
|
*
|
|
4694
4743
|
* @param {CompanyApiCreateCompanyRequest} requestParameters Request parameters.
|
|
@@ -4899,6 +4948,16 @@ class CompanyApi extends base_1.BaseAPI {
|
|
|
4899
4948
|
addUserToCompany(requestParameters, options) {
|
|
4900
4949
|
return (0, exports.CompanyApiFp)(this.configuration).addUserToCompany(requestParameters.id, requestParameters.iCompanyCreateUserRequest, options).then((request) => request(this.axios, this.basePath));
|
|
4901
4950
|
}
|
|
4951
|
+
/**
|
|
4952
|
+
*
|
|
4953
|
+
* @param {CompanyApiCheckEmailDnsRecordsRequest} requestParameters Request parameters.
|
|
4954
|
+
* @param {*} [options] Override http request option.
|
|
4955
|
+
* @throws {RequiredError}
|
|
4956
|
+
* @memberof CompanyApi
|
|
4957
|
+
*/
|
|
4958
|
+
checkEmailDnsRecords(requestParameters, options) {
|
|
4959
|
+
return (0, exports.CompanyApiFp)(this.configuration).checkEmailDnsRecords(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
4960
|
+
}
|
|
4902
4961
|
/**
|
|
4903
4962
|
*
|
|
4904
4963
|
* @param {CompanyApiCreateCompanyRequest} requestParameters Request parameters.
|
package/dist/api/api.mjs
CHANGED
|
@@ -3614,6 +3614,34 @@ export const CompanyApiAxiosParamCreator = function (configuration) {
|
|
|
3614
3614
|
options: localVarRequestOptions,
|
|
3615
3615
|
};
|
|
3616
3616
|
},
|
|
3617
|
+
/**
|
|
3618
|
+
*
|
|
3619
|
+
* @param {string} id
|
|
3620
|
+
* @param {*} [options] Override http request option.
|
|
3621
|
+
* @throws {RequiredError}
|
|
3622
|
+
*/
|
|
3623
|
+
checkEmailDnsRecords: async (id, options = {}) => {
|
|
3624
|
+
// verify required parameter 'id' is not null or undefined
|
|
3625
|
+
assertParamExists('checkEmailDnsRecords', 'id', id);
|
|
3626
|
+
const localVarPath = `/api/companies/{id}/check-email-dns-records`
|
|
3627
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
3628
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3629
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3630
|
+
let baseOptions;
|
|
3631
|
+
if (configuration) {
|
|
3632
|
+
baseOptions = configuration.baseOptions;
|
|
3633
|
+
}
|
|
3634
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
3635
|
+
const localVarHeaderParameter = {};
|
|
3636
|
+
const localVarQueryParameter = {};
|
|
3637
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3638
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3639
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
3640
|
+
return {
|
|
3641
|
+
url: toPathString(localVarUrlObj),
|
|
3642
|
+
options: localVarRequestOptions,
|
|
3643
|
+
};
|
|
3644
|
+
},
|
|
3617
3645
|
/**
|
|
3618
3646
|
*
|
|
3619
3647
|
* @param {ICompanyPostRequest} iCompanyPostRequest
|
|
@@ -4353,6 +4381,18 @@ export const CompanyApiFp = function (configuration) {
|
|
|
4353
4381
|
const localVarOperationServerBasePath = operationServerMap['CompanyApi.addUserToCompany']?.[localVarOperationServerIndex]?.url;
|
|
4354
4382
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4355
4383
|
},
|
|
4384
|
+
/**
|
|
4385
|
+
*
|
|
4386
|
+
* @param {string} id
|
|
4387
|
+
* @param {*} [options] Override http request option.
|
|
4388
|
+
* @throws {RequiredError}
|
|
4389
|
+
*/
|
|
4390
|
+
async checkEmailDnsRecords(id, options) {
|
|
4391
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.checkEmailDnsRecords(id, options);
|
|
4392
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4393
|
+
const localVarOperationServerBasePath = operationServerMap['CompanyApi.checkEmailDnsRecords']?.[localVarOperationServerIndex]?.url;
|
|
4394
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4395
|
+
},
|
|
4356
4396
|
/**
|
|
4357
4397
|
*
|
|
4358
4398
|
* @param {ICompanyPostRequest} iCompanyPostRequest
|
|
@@ -4652,6 +4692,15 @@ export const CompanyApiFactory = function (configuration, basePath, axios) {
|
|
|
4652
4692
|
addUserToCompany(requestParameters, options) {
|
|
4653
4693
|
return localVarFp.addUserToCompany(requestParameters.id, requestParameters.iCompanyCreateUserRequest, options).then((request) => request(axios, basePath));
|
|
4654
4694
|
},
|
|
4695
|
+
/**
|
|
4696
|
+
*
|
|
4697
|
+
* @param {CompanyApiCheckEmailDnsRecordsRequest} requestParameters Request parameters.
|
|
4698
|
+
* @param {*} [options] Override http request option.
|
|
4699
|
+
* @throws {RequiredError}
|
|
4700
|
+
*/
|
|
4701
|
+
checkEmailDnsRecords(requestParameters, options) {
|
|
4702
|
+
return localVarFp.checkEmailDnsRecords(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
4703
|
+
},
|
|
4655
4704
|
/**
|
|
4656
4705
|
*
|
|
4657
4706
|
* @param {CompanyApiCreateCompanyRequest} requestParameters Request parameters.
|
|
@@ -4861,6 +4910,16 @@ export class CompanyApi extends BaseAPI {
|
|
|
4861
4910
|
addUserToCompany(requestParameters, options) {
|
|
4862
4911
|
return CompanyApiFp(this.configuration).addUserToCompany(requestParameters.id, requestParameters.iCompanyCreateUserRequest, options).then((request) => request(this.axios, this.basePath));
|
|
4863
4912
|
}
|
|
4913
|
+
/**
|
|
4914
|
+
*
|
|
4915
|
+
* @param {CompanyApiCheckEmailDnsRecordsRequest} requestParameters Request parameters.
|
|
4916
|
+
* @param {*} [options] Override http request option.
|
|
4917
|
+
* @throws {RequiredError}
|
|
4918
|
+
* @memberof CompanyApi
|
|
4919
|
+
*/
|
|
4920
|
+
checkEmailDnsRecords(requestParameters, options) {
|
|
4921
|
+
return CompanyApiFp(this.configuration).checkEmailDnsRecords(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
4922
|
+
}
|
|
4864
4923
|
/**
|
|
4865
4924
|
*
|
|
4866
4925
|
* @param {CompanyApiCreateCompanyRequest} requestParameters Request parameters.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@infisale-client/api",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.51",
|
|
4
4
|
"description": "api-sdk",
|
|
5
5
|
"author": "Muhammet KÖKLÜ <105980019+byhipernova@users.noreply.github.com>",
|
|
6
6
|
"homepage": "https://github.com/infisale/infisale-client#readme",
|
|
@@ -37,5 +37,5 @@
|
|
|
37
37
|
"bugs": {
|
|
38
38
|
"url": "https://github.com/infisale/infisale-client/issues"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "1d1bbc5626686510af451a6122eac26b32349054"
|
|
41
41
|
}
|