@infisale-client/api 1.1.25 → 1.1.28
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 +601 -33
- package/dist/api/api.js +410 -24
- package/dist/api/api.mjs +405 -23
- package/package.json +4 -3
package/dist/api/api.d.ts
CHANGED
|
@@ -779,7 +779,13 @@ export interface IBrandCollectionQueryParams {
|
|
|
779
779
|
* @type {string}
|
|
780
780
|
* @memberof IBrandCollectionQueryParams
|
|
781
781
|
*/
|
|
782
|
-
'company_id'
|
|
782
|
+
'company_id'?: string;
|
|
783
|
+
/**
|
|
784
|
+
*
|
|
785
|
+
* @type {string}
|
|
786
|
+
* @memberof IBrandCollectionQueryParams
|
|
787
|
+
*/
|
|
788
|
+
'domain'?: string;
|
|
783
789
|
/**
|
|
784
790
|
*
|
|
785
791
|
* @type {ContentStatusEnum}
|
|
@@ -1065,7 +1071,13 @@ export interface ICategoryCollectionQueryParams {
|
|
|
1065
1071
|
* @type {string}
|
|
1066
1072
|
* @memberof ICategoryCollectionQueryParams
|
|
1067
1073
|
*/
|
|
1068
|
-
'company_id'
|
|
1074
|
+
'company_id'?: string;
|
|
1075
|
+
/**
|
|
1076
|
+
*
|
|
1077
|
+
* @type {string}
|
|
1078
|
+
* @memberof ICategoryCollectionQueryParams
|
|
1079
|
+
*/
|
|
1080
|
+
'domain'?: string;
|
|
1069
1081
|
/**
|
|
1070
1082
|
*
|
|
1071
1083
|
* @type {ContentStatusEnum}
|
|
@@ -3331,6 +3343,190 @@ export interface ICompanyUsersResponse {
|
|
|
3331
3343
|
*/
|
|
3332
3344
|
'users': Array<ICompanyAdminResponseUsersInner>;
|
|
3333
3345
|
}
|
|
3346
|
+
/**
|
|
3347
|
+
*
|
|
3348
|
+
* @export
|
|
3349
|
+
* @interface IContactFormCollectionQueryParams
|
|
3350
|
+
*/
|
|
3351
|
+
export interface IContactFormCollectionQueryParams {
|
|
3352
|
+
/**
|
|
3353
|
+
*
|
|
3354
|
+
* @type {number}
|
|
3355
|
+
* @memberof IContactFormCollectionQueryParams
|
|
3356
|
+
*/
|
|
3357
|
+
'page'?: number;
|
|
3358
|
+
/**
|
|
3359
|
+
*
|
|
3360
|
+
* @type {number}
|
|
3361
|
+
* @memberof IContactFormCollectionQueryParams
|
|
3362
|
+
*/
|
|
3363
|
+
'itemsPerPage'?: number;
|
|
3364
|
+
/**
|
|
3365
|
+
*
|
|
3366
|
+
* @type {string}
|
|
3367
|
+
* @memberof IContactFormCollectionQueryParams
|
|
3368
|
+
*/
|
|
3369
|
+
'search'?: string;
|
|
3370
|
+
/**
|
|
3371
|
+
*
|
|
3372
|
+
* @type {string}
|
|
3373
|
+
* @memberof IContactFormCollectionQueryParams
|
|
3374
|
+
*/
|
|
3375
|
+
'startDate'?: string;
|
|
3376
|
+
/**
|
|
3377
|
+
*
|
|
3378
|
+
* @type {string}
|
|
3379
|
+
* @memberof IContactFormCollectionQueryParams
|
|
3380
|
+
*/
|
|
3381
|
+
'endDate'?: string;
|
|
3382
|
+
/**
|
|
3383
|
+
*
|
|
3384
|
+
* @type {string}
|
|
3385
|
+
* @memberof IContactFormCollectionQueryParams
|
|
3386
|
+
*/
|
|
3387
|
+
'dateField'?: string;
|
|
3388
|
+
/**
|
|
3389
|
+
*
|
|
3390
|
+
* @type {OrderEnum}
|
|
3391
|
+
* @memberof IContactFormCollectionQueryParams
|
|
3392
|
+
*/
|
|
3393
|
+
'order'?: OrderEnum;
|
|
3394
|
+
/**
|
|
3395
|
+
*
|
|
3396
|
+
* @type {string}
|
|
3397
|
+
* @memberof IContactFormCollectionQueryParams
|
|
3398
|
+
*/
|
|
3399
|
+
'sort'?: string;
|
|
3400
|
+
/**
|
|
3401
|
+
*
|
|
3402
|
+
* @type {string}
|
|
3403
|
+
* @memberof IContactFormCollectionQueryParams
|
|
3404
|
+
*/
|
|
3405
|
+
'company_id': string;
|
|
3406
|
+
}
|
|
3407
|
+
/**
|
|
3408
|
+
*
|
|
3409
|
+
* @export
|
|
3410
|
+
* @interface IContactFormPostRequest
|
|
3411
|
+
*/
|
|
3412
|
+
export interface IContactFormPostRequest {
|
|
3413
|
+
/**
|
|
3414
|
+
*
|
|
3415
|
+
* @type {string}
|
|
3416
|
+
* @memberof IContactFormPostRequest
|
|
3417
|
+
*/
|
|
3418
|
+
'name'?: string;
|
|
3419
|
+
/**
|
|
3420
|
+
*
|
|
3421
|
+
* @type {string}
|
|
3422
|
+
* @memberof IContactFormPostRequest
|
|
3423
|
+
*/
|
|
3424
|
+
'email': string;
|
|
3425
|
+
/**
|
|
3426
|
+
*
|
|
3427
|
+
* @type {string}
|
|
3428
|
+
* @memberof IContactFormPostRequest
|
|
3429
|
+
*/
|
|
3430
|
+
'message': string;
|
|
3431
|
+
}
|
|
3432
|
+
/**
|
|
3433
|
+
*
|
|
3434
|
+
* @export
|
|
3435
|
+
* @interface IContactFormResponse
|
|
3436
|
+
*/
|
|
3437
|
+
export interface IContactFormResponse {
|
|
3438
|
+
/**
|
|
3439
|
+
*
|
|
3440
|
+
* @type {string}
|
|
3441
|
+
* @memberof IContactFormResponse
|
|
3442
|
+
*/
|
|
3443
|
+
'_id': string;
|
|
3444
|
+
/**
|
|
3445
|
+
*
|
|
3446
|
+
* @type {number}
|
|
3447
|
+
* @memberof IContactFormResponse
|
|
3448
|
+
*/
|
|
3449
|
+
'__v': number;
|
|
3450
|
+
/**
|
|
3451
|
+
*
|
|
3452
|
+
* @type {string}
|
|
3453
|
+
* @memberof IContactFormResponse
|
|
3454
|
+
*/
|
|
3455
|
+
'createdAt': string;
|
|
3456
|
+
/**
|
|
3457
|
+
*
|
|
3458
|
+
* @type {string}
|
|
3459
|
+
* @memberof IContactFormResponse
|
|
3460
|
+
*/
|
|
3461
|
+
'updatedAt': string;
|
|
3462
|
+
/**
|
|
3463
|
+
*
|
|
3464
|
+
* @type {string}
|
|
3465
|
+
* @memberof IContactFormResponse
|
|
3466
|
+
*/
|
|
3467
|
+
'company': string;
|
|
3468
|
+
/**
|
|
3469
|
+
*
|
|
3470
|
+
* @type {string}
|
|
3471
|
+
* @memberof IContactFormResponse
|
|
3472
|
+
*/
|
|
3473
|
+
'email': string;
|
|
3474
|
+
/**
|
|
3475
|
+
*
|
|
3476
|
+
* @type {string}
|
|
3477
|
+
* @memberof IContactFormResponse
|
|
3478
|
+
*/
|
|
3479
|
+
'name'?: string;
|
|
3480
|
+
/**
|
|
3481
|
+
*
|
|
3482
|
+
* @type {string}
|
|
3483
|
+
* @memberof IContactFormResponse
|
|
3484
|
+
*/
|
|
3485
|
+
'message': string;
|
|
3486
|
+
/**
|
|
3487
|
+
*
|
|
3488
|
+
* @type {string}
|
|
3489
|
+
* @memberof IContactFormResponse
|
|
3490
|
+
*/
|
|
3491
|
+
'ip': string;
|
|
3492
|
+
}
|
|
3493
|
+
/**
|
|
3494
|
+
*
|
|
3495
|
+
* @export
|
|
3496
|
+
* @interface IContactFormsResponse
|
|
3497
|
+
*/
|
|
3498
|
+
export interface IContactFormsResponse {
|
|
3499
|
+
/**
|
|
3500
|
+
*
|
|
3501
|
+
* @type {number}
|
|
3502
|
+
* @memberof IContactFormsResponse
|
|
3503
|
+
*/
|
|
3504
|
+
'page': number;
|
|
3505
|
+
/**
|
|
3506
|
+
*
|
|
3507
|
+
* @type {number}
|
|
3508
|
+
* @memberof IContactFormsResponse
|
|
3509
|
+
*/
|
|
3510
|
+
'itemsPerPage': number;
|
|
3511
|
+
/**
|
|
3512
|
+
*
|
|
3513
|
+
* @type {number}
|
|
3514
|
+
* @memberof IContactFormsResponse
|
|
3515
|
+
*/
|
|
3516
|
+
'total': number;
|
|
3517
|
+
/**
|
|
3518
|
+
*
|
|
3519
|
+
* @type {number}
|
|
3520
|
+
* @memberof IContactFormsResponse
|
|
3521
|
+
*/
|
|
3522
|
+
'totalPages': number;
|
|
3523
|
+
/**
|
|
3524
|
+
*
|
|
3525
|
+
* @type {Array<IContactFormResponse>}
|
|
3526
|
+
* @memberof IContactFormsResponse
|
|
3527
|
+
*/
|
|
3528
|
+
'data': Array<IContactFormResponse>;
|
|
3529
|
+
}
|
|
3334
3530
|
/**
|
|
3335
3531
|
*
|
|
3336
3532
|
* @export
|
|
@@ -5600,12 +5796,6 @@ export interface IResetPasswordRequest {
|
|
|
5600
5796
|
* @memberof IResetPasswordRequest
|
|
5601
5797
|
*/
|
|
5602
5798
|
'code': string;
|
|
5603
|
-
/**
|
|
5604
|
-
*
|
|
5605
|
-
* @type {string}
|
|
5606
|
-
* @memberof IResetPasswordRequest
|
|
5607
|
-
*/
|
|
5608
|
-
'email': string;
|
|
5609
5799
|
}
|
|
5610
5800
|
/**
|
|
5611
5801
|
*
|
|
@@ -5848,6 +6038,12 @@ export interface ITemplateResponseComponentsInnerConfig {
|
|
|
5848
6038
|
* @memberof ITemplateResponseComponentsInnerConfig
|
|
5849
6039
|
*/
|
|
5850
6040
|
'autoPlay'?: boolean;
|
|
6041
|
+
/**
|
|
6042
|
+
*
|
|
6043
|
+
* @type {boolean}
|
|
6044
|
+
* @memberof ITemplateResponseComponentsInnerConfig
|
|
6045
|
+
*/
|
|
6046
|
+
'addName'?: boolean;
|
|
5851
6047
|
}
|
|
5852
6048
|
/**
|
|
5853
6049
|
*
|
|
@@ -6366,6 +6562,12 @@ export interface IUserResponse {
|
|
|
6366
6562
|
* @memberof IUserResponse
|
|
6367
6563
|
*/
|
|
6368
6564
|
'language': LanguageEnum;
|
|
6565
|
+
/**
|
|
6566
|
+
*
|
|
6567
|
+
* @type {PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTContactPermissions}
|
|
6568
|
+
* @memberof IUserResponse
|
|
6569
|
+
*/
|
|
6570
|
+
'contact_permissions': PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTContactPermissions;
|
|
6369
6571
|
/**
|
|
6370
6572
|
*
|
|
6371
6573
|
* @type {UserStatusEnum}
|
|
@@ -6514,7 +6716,7 @@ export type NavigationUrlTargetEnum = typeof NavigationUrlTargetEnum[keyof typeo
|
|
|
6514
6716
|
/**
|
|
6515
6717
|
*
|
|
6516
6718
|
* @export
|
|
6517
|
-
* @enum {
|
|
6719
|
+
* @enum {number}
|
|
6518
6720
|
*/
|
|
6519
6721
|
export declare const NotificationMessageEnum: {
|
|
6520
6722
|
readonly NUMBER_404: 404;
|
|
@@ -7263,6 +7465,31 @@ export interface PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesUse
|
|
|
7263
7465
|
*/
|
|
7264
7466
|
'user': string;
|
|
7265
7467
|
}
|
|
7468
|
+
/**
|
|
7469
|
+
* From T, pick a set of properties whose keys are in the union K
|
|
7470
|
+
* @export
|
|
7471
|
+
* @interface PickIContactFormExcludeKeyofIContactFormKeyofMongoResponseOrCompanyOrIp
|
|
7472
|
+
*/
|
|
7473
|
+
export interface PickIContactFormExcludeKeyofIContactFormKeyofMongoResponseOrCompanyOrIp {
|
|
7474
|
+
/**
|
|
7475
|
+
*
|
|
7476
|
+
* @type {string}
|
|
7477
|
+
* @memberof PickIContactFormExcludeKeyofIContactFormKeyofMongoResponseOrCompanyOrIp
|
|
7478
|
+
*/
|
|
7479
|
+
'name'?: string;
|
|
7480
|
+
/**
|
|
7481
|
+
*
|
|
7482
|
+
* @type {string}
|
|
7483
|
+
* @memberof PickIContactFormExcludeKeyofIContactFormKeyofMongoResponseOrCompanyOrIp
|
|
7484
|
+
*/
|
|
7485
|
+
'email': string;
|
|
7486
|
+
/**
|
|
7487
|
+
*
|
|
7488
|
+
* @type {string}
|
|
7489
|
+
* @memberof PickIContactFormExcludeKeyofIContactFormKeyofMongoResponseOrCompanyOrIp
|
|
7490
|
+
*/
|
|
7491
|
+
'message': string;
|
|
7492
|
+
}
|
|
7266
7493
|
/**
|
|
7267
7494
|
* From T, pick a set of properties whose keys are in the union K
|
|
7268
7495
|
* @export
|
|
@@ -7727,6 +7954,12 @@ export interface PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdmin
|
|
|
7727
7954
|
* @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrT
|
|
7728
7955
|
*/
|
|
7729
7956
|
'language': LanguageEnum;
|
|
7957
|
+
/**
|
|
7958
|
+
*
|
|
7959
|
+
* @type {PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTContactPermissions}
|
|
7960
|
+
* @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrT
|
|
7961
|
+
*/
|
|
7962
|
+
'contact_permissions': PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTContactPermissions;
|
|
7730
7963
|
/**
|
|
7731
7964
|
*
|
|
7732
7965
|
* @type {UserStatusEnum}
|
|
@@ -7758,6 +7991,25 @@ export interface PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdmin
|
|
|
7758
7991
|
*/
|
|
7759
7992
|
'updatedAt': string;
|
|
7760
7993
|
}
|
|
7994
|
+
/**
|
|
7995
|
+
*
|
|
7996
|
+
* @export
|
|
7997
|
+
* @interface PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTContactPermissions
|
|
7998
|
+
*/
|
|
7999
|
+
export interface PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTContactPermissions {
|
|
8000
|
+
/**
|
|
8001
|
+
*
|
|
8002
|
+
* @type {boolean}
|
|
8003
|
+
* @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTContactPermissions
|
|
8004
|
+
*/
|
|
8005
|
+
'sms': boolean;
|
|
8006
|
+
/**
|
|
8007
|
+
*
|
|
8008
|
+
* @type {boolean}
|
|
8009
|
+
* @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTContactPermissions
|
|
8010
|
+
*/
|
|
8011
|
+
'email': boolean;
|
|
8012
|
+
}
|
|
7761
8013
|
/**
|
|
7762
8014
|
*
|
|
7763
8015
|
* @export
|
|
@@ -8219,6 +8471,13 @@ export declare const AuthApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
8219
8471
|
* @throws {RequiredError}
|
|
8220
8472
|
*/
|
|
8221
8473
|
socialLogin: (domain: string, iSocialLoginRequest: ISocialLoginRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8474
|
+
/**
|
|
8475
|
+
*
|
|
8476
|
+
* @param {string} code
|
|
8477
|
+
* @param {*} [options] Override http request option.
|
|
8478
|
+
* @throws {RequiredError}
|
|
8479
|
+
*/
|
|
8480
|
+
verifyCode: (code: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8222
8481
|
};
|
|
8223
8482
|
/**
|
|
8224
8483
|
* AuthApi - functional programming interface
|
|
@@ -8281,6 +8540,13 @@ export declare const AuthApiFp: (configuration?: Configuration) => {
|
|
|
8281
8540
|
* @throws {RequiredError}
|
|
8282
8541
|
*/
|
|
8283
8542
|
socialLogin(domain: string, iSocialLoginRequest: ISocialLoginRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ILoginResponse>>;
|
|
8543
|
+
/**
|
|
8544
|
+
*
|
|
8545
|
+
* @param {string} code
|
|
8546
|
+
* @param {*} [options] Override http request option.
|
|
8547
|
+
* @throws {RequiredError}
|
|
8548
|
+
*/
|
|
8549
|
+
verifyCode(code: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IUserResponse>>;
|
|
8284
8550
|
};
|
|
8285
8551
|
/**
|
|
8286
8552
|
* AuthApi - factory interface
|
|
@@ -8336,6 +8602,13 @@ export declare const AuthApiFactory: (configuration?: Configuration, basePath?:
|
|
|
8336
8602
|
* @throws {RequiredError}
|
|
8337
8603
|
*/
|
|
8338
8604
|
socialLogin(requestParameters: AuthApiSocialLoginRequest, options?: RawAxiosRequestConfig): AxiosPromise<ILoginResponse>;
|
|
8605
|
+
/**
|
|
8606
|
+
*
|
|
8607
|
+
* @param {AuthApiVerifyCodeRequest} requestParameters Request parameters.
|
|
8608
|
+
* @param {*} [options] Override http request option.
|
|
8609
|
+
* @throws {RequiredError}
|
|
8610
|
+
*/
|
|
8611
|
+
verifyCode(requestParameters: AuthApiVerifyCodeRequest, options?: RawAxiosRequestConfig): AxiosPromise<IUserResponse>;
|
|
8339
8612
|
};
|
|
8340
8613
|
/**
|
|
8341
8614
|
* Request parameters for forgotPassword operation in AuthApi.
|
|
@@ -8470,6 +8743,19 @@ export interface AuthApiSocialLoginRequest {
|
|
|
8470
8743
|
*/
|
|
8471
8744
|
readonly iSocialLoginRequest: ISocialLoginRequest;
|
|
8472
8745
|
}
|
|
8746
|
+
/**
|
|
8747
|
+
* Request parameters for verifyCode operation in AuthApi.
|
|
8748
|
+
* @export
|
|
8749
|
+
* @interface AuthApiVerifyCodeRequest
|
|
8750
|
+
*/
|
|
8751
|
+
export interface AuthApiVerifyCodeRequest {
|
|
8752
|
+
/**
|
|
8753
|
+
*
|
|
8754
|
+
* @type {string}
|
|
8755
|
+
* @memberof AuthApiVerifyCode
|
|
8756
|
+
*/
|
|
8757
|
+
readonly code: string;
|
|
8758
|
+
}
|
|
8473
8759
|
/**
|
|
8474
8760
|
* AuthApi - object-oriented interface
|
|
8475
8761
|
* @export
|
|
@@ -8533,6 +8819,14 @@ export declare class AuthApi extends BaseAPI {
|
|
|
8533
8819
|
* @memberof AuthApi
|
|
8534
8820
|
*/
|
|
8535
8821
|
socialLogin(requestParameters: AuthApiSocialLoginRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ILoginResponse, any>>;
|
|
8822
|
+
/**
|
|
8823
|
+
*
|
|
8824
|
+
* @param {AuthApiVerifyCodeRequest} requestParameters Request parameters.
|
|
8825
|
+
* @param {*} [options] Override http request option.
|
|
8826
|
+
* @throws {RequiredError}
|
|
8827
|
+
* @memberof AuthApi
|
|
8828
|
+
*/
|
|
8829
|
+
verifyCode(requestParameters: AuthApiVerifyCodeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IUserResponse, any>>;
|
|
8536
8830
|
}
|
|
8537
8831
|
/**
|
|
8538
8832
|
* BasketApi - axios parameter creator
|
|
@@ -8837,7 +9131,6 @@ export declare const BrandApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
8837
9131
|
getBrandById: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8838
9132
|
/**
|
|
8839
9133
|
*
|
|
8840
|
-
* @param {string} companyId
|
|
8841
9134
|
* @param {number} [page]
|
|
8842
9135
|
* @param {number} [itemsPerPage]
|
|
8843
9136
|
* @param {string} [search]
|
|
@@ -8846,11 +9139,13 @@ export declare const BrandApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
8846
9139
|
* @param {string} [dateField]
|
|
8847
9140
|
* @param {OrderEnum} [order]
|
|
8848
9141
|
* @param {string} [sort]
|
|
9142
|
+
* @param {string} [companyId]
|
|
9143
|
+
* @param {string} [domain]
|
|
8849
9144
|
* @param {ContentStatusEnum} [status]
|
|
8850
9145
|
* @param {*} [options] Override http request option.
|
|
8851
9146
|
* @throws {RequiredError}
|
|
8852
9147
|
*/
|
|
8853
|
-
getBrands: (
|
|
9148
|
+
getBrands: (page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string, companyId?: string, domain?: string, status?: ContentStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8854
9149
|
/**
|
|
8855
9150
|
*
|
|
8856
9151
|
* @param {string} id
|
|
@@ -8895,7 +9190,6 @@ export declare const BrandApiFp: (configuration?: Configuration) => {
|
|
|
8895
9190
|
getBrandById(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IBrandResponse>>;
|
|
8896
9191
|
/**
|
|
8897
9192
|
*
|
|
8898
|
-
* @param {string} companyId
|
|
8899
9193
|
* @param {number} [page]
|
|
8900
9194
|
* @param {number} [itemsPerPage]
|
|
8901
9195
|
* @param {string} [search]
|
|
@@ -8904,11 +9198,13 @@ export declare const BrandApiFp: (configuration?: Configuration) => {
|
|
|
8904
9198
|
* @param {string} [dateField]
|
|
8905
9199
|
* @param {OrderEnum} [order]
|
|
8906
9200
|
* @param {string} [sort]
|
|
9201
|
+
* @param {string} [companyId]
|
|
9202
|
+
* @param {string} [domain]
|
|
8907
9203
|
* @param {ContentStatusEnum} [status]
|
|
8908
9204
|
* @param {*} [options] Override http request option.
|
|
8909
9205
|
* @throws {RequiredError}
|
|
8910
9206
|
*/
|
|
8911
|
-
getBrands(
|
|
9207
|
+
getBrands(page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string, companyId?: string, domain?: string, status?: ContentStatusEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IBrandsResponse>>;
|
|
8912
9208
|
/**
|
|
8913
9209
|
*
|
|
8914
9210
|
* @param {string} id
|
|
@@ -8957,7 +9253,7 @@ export declare const BrandApiFactory: (configuration?: Configuration, basePath?:
|
|
|
8957
9253
|
* @param {*} [options] Override http request option.
|
|
8958
9254
|
* @throws {RequiredError}
|
|
8959
9255
|
*/
|
|
8960
|
-
getBrands(requestParameters
|
|
9256
|
+
getBrands(requestParameters?: BrandApiGetBrandsRequest, options?: RawAxiosRequestConfig): AxiosPromise<IBrandsResponse>;
|
|
8961
9257
|
/**
|
|
8962
9258
|
*
|
|
8963
9259
|
* @param {BrandApiUpdateBrandRequest} requestParameters Request parameters.
|
|
@@ -9024,12 +9320,6 @@ export interface BrandApiGetBrandByIdRequest {
|
|
|
9024
9320
|
* @interface BrandApiGetBrandsRequest
|
|
9025
9321
|
*/
|
|
9026
9322
|
export interface BrandApiGetBrandsRequest {
|
|
9027
|
-
/**
|
|
9028
|
-
*
|
|
9029
|
-
* @type {string}
|
|
9030
|
-
* @memberof BrandApiGetBrands
|
|
9031
|
-
*/
|
|
9032
|
-
readonly companyId: string;
|
|
9033
9323
|
/**
|
|
9034
9324
|
*
|
|
9035
9325
|
* @type {number}
|
|
@@ -9078,6 +9368,18 @@ export interface BrandApiGetBrandsRequest {
|
|
|
9078
9368
|
* @memberof BrandApiGetBrands
|
|
9079
9369
|
*/
|
|
9080
9370
|
readonly sort?: string;
|
|
9371
|
+
/**
|
|
9372
|
+
*
|
|
9373
|
+
* @type {string}
|
|
9374
|
+
* @memberof BrandApiGetBrands
|
|
9375
|
+
*/
|
|
9376
|
+
readonly companyId?: string;
|
|
9377
|
+
/**
|
|
9378
|
+
*
|
|
9379
|
+
* @type {string}
|
|
9380
|
+
* @memberof BrandApiGetBrands
|
|
9381
|
+
*/
|
|
9382
|
+
readonly domain?: string;
|
|
9081
9383
|
/**
|
|
9082
9384
|
*
|
|
9083
9385
|
* @type {ContentStatusEnum}
|
|
@@ -9150,7 +9452,7 @@ export declare class BrandApi extends BaseAPI {
|
|
|
9150
9452
|
* @throws {RequiredError}
|
|
9151
9453
|
* @memberof BrandApi
|
|
9152
9454
|
*/
|
|
9153
|
-
getBrands(requestParameters
|
|
9455
|
+
getBrands(requestParameters?: BrandApiGetBrandsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IBrandsResponse, any>>;
|
|
9154
9456
|
/**
|
|
9155
9457
|
*
|
|
9156
9458
|
* @param {BrandApiUpdateBrandRequest} requestParameters Request parameters.
|
|
@@ -9188,7 +9490,6 @@ export declare const CategoryApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
9188
9490
|
getAllCategories: (companyId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9189
9491
|
/**
|
|
9190
9492
|
*
|
|
9191
|
-
* @param {string} companyId
|
|
9192
9493
|
* @param {number} [page]
|
|
9193
9494
|
* @param {number} [itemsPerPage]
|
|
9194
9495
|
* @param {string} [search]
|
|
@@ -9197,11 +9498,13 @@ export declare const CategoryApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
9197
9498
|
* @param {string} [dateField]
|
|
9198
9499
|
* @param {OrderEnum} [order]
|
|
9199
9500
|
* @param {string} [sort]
|
|
9501
|
+
* @param {string} [companyId]
|
|
9502
|
+
* @param {string} [domain]
|
|
9200
9503
|
* @param {ContentStatusEnum} [status]
|
|
9201
9504
|
* @param {*} [options] Override http request option.
|
|
9202
9505
|
* @throws {RequiredError}
|
|
9203
9506
|
*/
|
|
9204
|
-
getCategories: (
|
|
9507
|
+
getCategories: (page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string, companyId?: string, domain?: string, status?: ContentStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9205
9508
|
/**
|
|
9206
9509
|
*
|
|
9207
9510
|
* @param {string} companyId
|
|
@@ -9253,7 +9556,6 @@ export declare const CategoryApiFp: (configuration?: Configuration) => {
|
|
|
9253
9556
|
getAllCategories(companyId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IAllCategoriesResponse>>;
|
|
9254
9557
|
/**
|
|
9255
9558
|
*
|
|
9256
|
-
* @param {string} companyId
|
|
9257
9559
|
* @param {number} [page]
|
|
9258
9560
|
* @param {number} [itemsPerPage]
|
|
9259
9561
|
* @param {string} [search]
|
|
@@ -9262,11 +9564,13 @@ export declare const CategoryApiFp: (configuration?: Configuration) => {
|
|
|
9262
9564
|
* @param {string} [dateField]
|
|
9263
9565
|
* @param {OrderEnum} [order]
|
|
9264
9566
|
* @param {string} [sort]
|
|
9567
|
+
* @param {string} [companyId]
|
|
9568
|
+
* @param {string} [domain]
|
|
9265
9569
|
* @param {ContentStatusEnum} [status]
|
|
9266
9570
|
* @param {*} [options] Override http request option.
|
|
9267
9571
|
* @throws {RequiredError}
|
|
9268
9572
|
*/
|
|
9269
|
-
getCategories(
|
|
9573
|
+
getCategories(page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string, companyId?: string, domain?: string, status?: ContentStatusEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ICategoriesResponse>>;
|
|
9270
9574
|
/**
|
|
9271
9575
|
*
|
|
9272
9576
|
* @param {string} companyId
|
|
@@ -9322,7 +9626,7 @@ export declare const CategoryApiFactory: (configuration?: Configuration, basePat
|
|
|
9322
9626
|
* @param {*} [options] Override http request option.
|
|
9323
9627
|
* @throws {RequiredError}
|
|
9324
9628
|
*/
|
|
9325
|
-
getCategories(requestParameters
|
|
9629
|
+
getCategories(requestParameters?: CategoryApiGetCategoriesRequest, options?: RawAxiosRequestConfig): AxiosPromise<ICategoriesResponse>;
|
|
9326
9630
|
/**
|
|
9327
9631
|
*
|
|
9328
9632
|
* @param {CategoryApiGetCategoryAttributesRequest} requestParameters Request parameters.
|
|
@@ -9390,12 +9694,6 @@ export interface CategoryApiGetAllCategoriesRequest {
|
|
|
9390
9694
|
* @interface CategoryApiGetCategoriesRequest
|
|
9391
9695
|
*/
|
|
9392
9696
|
export interface CategoryApiGetCategoriesRequest {
|
|
9393
|
-
/**
|
|
9394
|
-
*
|
|
9395
|
-
* @type {string}
|
|
9396
|
-
* @memberof CategoryApiGetCategories
|
|
9397
|
-
*/
|
|
9398
|
-
readonly companyId: string;
|
|
9399
9697
|
/**
|
|
9400
9698
|
*
|
|
9401
9699
|
* @type {number}
|
|
@@ -9444,6 +9742,18 @@ export interface CategoryApiGetCategoriesRequest {
|
|
|
9444
9742
|
* @memberof CategoryApiGetCategories
|
|
9445
9743
|
*/
|
|
9446
9744
|
readonly sort?: string;
|
|
9745
|
+
/**
|
|
9746
|
+
*
|
|
9747
|
+
* @type {string}
|
|
9748
|
+
* @memberof CategoryApiGetCategories
|
|
9749
|
+
*/
|
|
9750
|
+
readonly companyId?: string;
|
|
9751
|
+
/**
|
|
9752
|
+
*
|
|
9753
|
+
* @type {string}
|
|
9754
|
+
* @memberof CategoryApiGetCategories
|
|
9755
|
+
*/
|
|
9756
|
+
readonly domain?: string;
|
|
9447
9757
|
/**
|
|
9448
9758
|
*
|
|
9449
9759
|
* @type {ContentStatusEnum}
|
|
@@ -9534,7 +9844,7 @@ export declare class CategoryApi extends BaseAPI {
|
|
|
9534
9844
|
* @throws {RequiredError}
|
|
9535
9845
|
* @memberof CategoryApi
|
|
9536
9846
|
*/
|
|
9537
|
-
getCategories(requestParameters
|
|
9847
|
+
getCategories(requestParameters?: CategoryApiGetCategoriesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ICategoriesResponse, any>>;
|
|
9538
9848
|
/**
|
|
9539
9849
|
*
|
|
9540
9850
|
* @param {CategoryApiGetCategoryAttributesRequest} requestParameters Request parameters.
|
|
@@ -11140,6 +11450,264 @@ export declare class CompanyApi extends BaseAPI {
|
|
|
11140
11450
|
*/
|
|
11141
11451
|
updateUserInCompany(requestParameters: CompanyApiUpdateUserInCompanyRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ICompanyResponse, any>>;
|
|
11142
11452
|
}
|
|
11453
|
+
/**
|
|
11454
|
+
* ContactFormApi - axios parameter creator
|
|
11455
|
+
* @export
|
|
11456
|
+
*/
|
|
11457
|
+
export declare const ContactFormApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
11458
|
+
/**
|
|
11459
|
+
*
|
|
11460
|
+
* @param {IContactFormPostRequest} iContactFormPostRequest
|
|
11461
|
+
* @param {*} [options] Override http request option.
|
|
11462
|
+
* @throws {RequiredError}
|
|
11463
|
+
*/
|
|
11464
|
+
createContactForm: (iContactFormPostRequest: IContactFormPostRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11465
|
+
/**
|
|
11466
|
+
*
|
|
11467
|
+
* @param {string} id
|
|
11468
|
+
* @param {*} [options] Override http request option.
|
|
11469
|
+
* @throws {RequiredError}
|
|
11470
|
+
*/
|
|
11471
|
+
deleteContactForm: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11472
|
+
/**
|
|
11473
|
+
*
|
|
11474
|
+
* @param {string} id
|
|
11475
|
+
* @param {*} [options] Override http request option.
|
|
11476
|
+
* @throws {RequiredError}
|
|
11477
|
+
*/
|
|
11478
|
+
getContactFormById: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11479
|
+
/**
|
|
11480
|
+
*
|
|
11481
|
+
* @param {string} companyId
|
|
11482
|
+
* @param {number} [page]
|
|
11483
|
+
* @param {number} [itemsPerPage]
|
|
11484
|
+
* @param {string} [search]
|
|
11485
|
+
* @param {string} [startDate]
|
|
11486
|
+
* @param {string} [endDate]
|
|
11487
|
+
* @param {string} [dateField]
|
|
11488
|
+
* @param {OrderEnum} [order]
|
|
11489
|
+
* @param {string} [sort]
|
|
11490
|
+
* @param {*} [options] Override http request option.
|
|
11491
|
+
* @throws {RequiredError}
|
|
11492
|
+
*/
|
|
11493
|
+
getContactForms: (companyId: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11494
|
+
};
|
|
11495
|
+
/**
|
|
11496
|
+
* ContactFormApi - functional programming interface
|
|
11497
|
+
* @export
|
|
11498
|
+
*/
|
|
11499
|
+
export declare const ContactFormApiFp: (configuration?: Configuration) => {
|
|
11500
|
+
/**
|
|
11501
|
+
*
|
|
11502
|
+
* @param {IContactFormPostRequest} iContactFormPostRequest
|
|
11503
|
+
* @param {*} [options] Override http request option.
|
|
11504
|
+
* @throws {RequiredError}
|
|
11505
|
+
*/
|
|
11506
|
+
createContactForm(iContactFormPostRequest: IContactFormPostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IContactFormResponse>>;
|
|
11507
|
+
/**
|
|
11508
|
+
*
|
|
11509
|
+
* @param {string} id
|
|
11510
|
+
* @param {*} [options] Override http request option.
|
|
11511
|
+
* @throws {RequiredError}
|
|
11512
|
+
*/
|
|
11513
|
+
deleteContactForm(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
11514
|
+
/**
|
|
11515
|
+
*
|
|
11516
|
+
* @param {string} id
|
|
11517
|
+
* @param {*} [options] Override http request option.
|
|
11518
|
+
* @throws {RequiredError}
|
|
11519
|
+
*/
|
|
11520
|
+
getContactFormById(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IContactFormResponse>>;
|
|
11521
|
+
/**
|
|
11522
|
+
*
|
|
11523
|
+
* @param {string} companyId
|
|
11524
|
+
* @param {number} [page]
|
|
11525
|
+
* @param {number} [itemsPerPage]
|
|
11526
|
+
* @param {string} [search]
|
|
11527
|
+
* @param {string} [startDate]
|
|
11528
|
+
* @param {string} [endDate]
|
|
11529
|
+
* @param {string} [dateField]
|
|
11530
|
+
* @param {OrderEnum} [order]
|
|
11531
|
+
* @param {string} [sort]
|
|
11532
|
+
* @param {*} [options] Override http request option.
|
|
11533
|
+
* @throws {RequiredError}
|
|
11534
|
+
*/
|
|
11535
|
+
getContactForms(companyId: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IContactFormsResponse>>;
|
|
11536
|
+
};
|
|
11537
|
+
/**
|
|
11538
|
+
* ContactFormApi - factory interface
|
|
11539
|
+
* @export
|
|
11540
|
+
*/
|
|
11541
|
+
export declare const ContactFormApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
11542
|
+
/**
|
|
11543
|
+
*
|
|
11544
|
+
* @param {ContactFormApiCreateContactFormRequest} requestParameters Request parameters.
|
|
11545
|
+
* @param {*} [options] Override http request option.
|
|
11546
|
+
* @throws {RequiredError}
|
|
11547
|
+
*/
|
|
11548
|
+
createContactForm(requestParameters: ContactFormApiCreateContactFormRequest, options?: RawAxiosRequestConfig): AxiosPromise<IContactFormResponse>;
|
|
11549
|
+
/**
|
|
11550
|
+
*
|
|
11551
|
+
* @param {ContactFormApiDeleteContactFormRequest} requestParameters Request parameters.
|
|
11552
|
+
* @param {*} [options] Override http request option.
|
|
11553
|
+
* @throws {RequiredError}
|
|
11554
|
+
*/
|
|
11555
|
+
deleteContactForm(requestParameters: ContactFormApiDeleteContactFormRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
11556
|
+
/**
|
|
11557
|
+
*
|
|
11558
|
+
* @param {ContactFormApiGetContactFormByIdRequest} requestParameters Request parameters.
|
|
11559
|
+
* @param {*} [options] Override http request option.
|
|
11560
|
+
* @throws {RequiredError}
|
|
11561
|
+
*/
|
|
11562
|
+
getContactFormById(requestParameters: ContactFormApiGetContactFormByIdRequest, options?: RawAxiosRequestConfig): AxiosPromise<IContactFormResponse>;
|
|
11563
|
+
/**
|
|
11564
|
+
*
|
|
11565
|
+
* @param {ContactFormApiGetContactFormsRequest} requestParameters Request parameters.
|
|
11566
|
+
* @param {*} [options] Override http request option.
|
|
11567
|
+
* @throws {RequiredError}
|
|
11568
|
+
*/
|
|
11569
|
+
getContactForms(requestParameters: ContactFormApiGetContactFormsRequest, options?: RawAxiosRequestConfig): AxiosPromise<IContactFormsResponse>;
|
|
11570
|
+
};
|
|
11571
|
+
/**
|
|
11572
|
+
* Request parameters for createContactForm operation in ContactFormApi.
|
|
11573
|
+
* @export
|
|
11574
|
+
* @interface ContactFormApiCreateContactFormRequest
|
|
11575
|
+
*/
|
|
11576
|
+
export interface ContactFormApiCreateContactFormRequest {
|
|
11577
|
+
/**
|
|
11578
|
+
*
|
|
11579
|
+
* @type {IContactFormPostRequest}
|
|
11580
|
+
* @memberof ContactFormApiCreateContactForm
|
|
11581
|
+
*/
|
|
11582
|
+
readonly iContactFormPostRequest: IContactFormPostRequest;
|
|
11583
|
+
}
|
|
11584
|
+
/**
|
|
11585
|
+
* Request parameters for deleteContactForm operation in ContactFormApi.
|
|
11586
|
+
* @export
|
|
11587
|
+
* @interface ContactFormApiDeleteContactFormRequest
|
|
11588
|
+
*/
|
|
11589
|
+
export interface ContactFormApiDeleteContactFormRequest {
|
|
11590
|
+
/**
|
|
11591
|
+
*
|
|
11592
|
+
* @type {string}
|
|
11593
|
+
* @memberof ContactFormApiDeleteContactForm
|
|
11594
|
+
*/
|
|
11595
|
+
readonly id: string;
|
|
11596
|
+
}
|
|
11597
|
+
/**
|
|
11598
|
+
* Request parameters for getContactFormById operation in ContactFormApi.
|
|
11599
|
+
* @export
|
|
11600
|
+
* @interface ContactFormApiGetContactFormByIdRequest
|
|
11601
|
+
*/
|
|
11602
|
+
export interface ContactFormApiGetContactFormByIdRequest {
|
|
11603
|
+
/**
|
|
11604
|
+
*
|
|
11605
|
+
* @type {string}
|
|
11606
|
+
* @memberof ContactFormApiGetContactFormById
|
|
11607
|
+
*/
|
|
11608
|
+
readonly id: string;
|
|
11609
|
+
}
|
|
11610
|
+
/**
|
|
11611
|
+
* Request parameters for getContactForms operation in ContactFormApi.
|
|
11612
|
+
* @export
|
|
11613
|
+
* @interface ContactFormApiGetContactFormsRequest
|
|
11614
|
+
*/
|
|
11615
|
+
export interface ContactFormApiGetContactFormsRequest {
|
|
11616
|
+
/**
|
|
11617
|
+
*
|
|
11618
|
+
* @type {string}
|
|
11619
|
+
* @memberof ContactFormApiGetContactForms
|
|
11620
|
+
*/
|
|
11621
|
+
readonly companyId: string;
|
|
11622
|
+
/**
|
|
11623
|
+
*
|
|
11624
|
+
* @type {number}
|
|
11625
|
+
* @memberof ContactFormApiGetContactForms
|
|
11626
|
+
*/
|
|
11627
|
+
readonly page?: number;
|
|
11628
|
+
/**
|
|
11629
|
+
*
|
|
11630
|
+
* @type {number}
|
|
11631
|
+
* @memberof ContactFormApiGetContactForms
|
|
11632
|
+
*/
|
|
11633
|
+
readonly itemsPerPage?: number;
|
|
11634
|
+
/**
|
|
11635
|
+
*
|
|
11636
|
+
* @type {string}
|
|
11637
|
+
* @memberof ContactFormApiGetContactForms
|
|
11638
|
+
*/
|
|
11639
|
+
readonly search?: string;
|
|
11640
|
+
/**
|
|
11641
|
+
*
|
|
11642
|
+
* @type {string}
|
|
11643
|
+
* @memberof ContactFormApiGetContactForms
|
|
11644
|
+
*/
|
|
11645
|
+
readonly startDate?: string;
|
|
11646
|
+
/**
|
|
11647
|
+
*
|
|
11648
|
+
* @type {string}
|
|
11649
|
+
* @memberof ContactFormApiGetContactForms
|
|
11650
|
+
*/
|
|
11651
|
+
readonly endDate?: string;
|
|
11652
|
+
/**
|
|
11653
|
+
*
|
|
11654
|
+
* @type {string}
|
|
11655
|
+
* @memberof ContactFormApiGetContactForms
|
|
11656
|
+
*/
|
|
11657
|
+
readonly dateField?: string;
|
|
11658
|
+
/**
|
|
11659
|
+
*
|
|
11660
|
+
* @type {OrderEnum}
|
|
11661
|
+
* @memberof ContactFormApiGetContactForms
|
|
11662
|
+
*/
|
|
11663
|
+
readonly order?: OrderEnum;
|
|
11664
|
+
/**
|
|
11665
|
+
*
|
|
11666
|
+
* @type {string}
|
|
11667
|
+
* @memberof ContactFormApiGetContactForms
|
|
11668
|
+
*/
|
|
11669
|
+
readonly sort?: string;
|
|
11670
|
+
}
|
|
11671
|
+
/**
|
|
11672
|
+
* ContactFormApi - object-oriented interface
|
|
11673
|
+
* @export
|
|
11674
|
+
* @class ContactFormApi
|
|
11675
|
+
* @extends {BaseAPI}
|
|
11676
|
+
*/
|
|
11677
|
+
export declare class ContactFormApi extends BaseAPI {
|
|
11678
|
+
/**
|
|
11679
|
+
*
|
|
11680
|
+
* @param {ContactFormApiCreateContactFormRequest} requestParameters Request parameters.
|
|
11681
|
+
* @param {*} [options] Override http request option.
|
|
11682
|
+
* @throws {RequiredError}
|
|
11683
|
+
* @memberof ContactFormApi
|
|
11684
|
+
*/
|
|
11685
|
+
createContactForm(requestParameters: ContactFormApiCreateContactFormRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IContactFormResponse, any>>;
|
|
11686
|
+
/**
|
|
11687
|
+
*
|
|
11688
|
+
* @param {ContactFormApiDeleteContactFormRequest} requestParameters Request parameters.
|
|
11689
|
+
* @param {*} [options] Override http request option.
|
|
11690
|
+
* @throws {RequiredError}
|
|
11691
|
+
* @memberof ContactFormApi
|
|
11692
|
+
*/
|
|
11693
|
+
deleteContactForm(requestParameters: ContactFormApiDeleteContactFormRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
11694
|
+
/**
|
|
11695
|
+
*
|
|
11696
|
+
* @param {ContactFormApiGetContactFormByIdRequest} requestParameters Request parameters.
|
|
11697
|
+
* @param {*} [options] Override http request option.
|
|
11698
|
+
* @throws {RequiredError}
|
|
11699
|
+
* @memberof ContactFormApi
|
|
11700
|
+
*/
|
|
11701
|
+
getContactFormById(requestParameters: ContactFormApiGetContactFormByIdRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IContactFormResponse, any>>;
|
|
11702
|
+
/**
|
|
11703
|
+
*
|
|
11704
|
+
* @param {ContactFormApiGetContactFormsRequest} requestParameters Request parameters.
|
|
11705
|
+
* @param {*} [options] Override http request option.
|
|
11706
|
+
* @throws {RequiredError}
|
|
11707
|
+
* @memberof ContactFormApi
|
|
11708
|
+
*/
|
|
11709
|
+
getContactForms(requestParameters: ContactFormApiGetContactFormsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IContactFormsResponse, any>>;
|
|
11710
|
+
}
|
|
11143
11711
|
/**
|
|
11144
11712
|
* FileApi - axios parameter creator
|
|
11145
11713
|
* @export
|