@infisale-client/api 1.3.26 → 1.3.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 CHANGED
@@ -656,19 +656,6 @@ export interface IBasketCountResponse {
656
656
  */
657
657
  'productCount': number;
658
658
  }
659
- /**
660
- *
661
- * @export
662
- * @interface IBasketDeleteRequest
663
- */
664
- export interface IBasketDeleteRequest {
665
- /**
666
- *
667
- * @type {string}
668
- * @memberof IBasketDeleteRequest
669
- */
670
- 'basketId': string;
671
- }
672
659
  /**
673
660
  *
674
661
  * @export
@@ -860,12 +847,6 @@ export interface IBasketUpdateAmountRequest {
860
847
  * @memberof IBasketUpdateAmountRequest
861
848
  */
862
849
  'amount': number;
863
- /**
864
- *
865
- * @type {string}
866
- * @memberof IBasketUpdateAmountRequest
867
- */
868
- 'basketId': string;
869
850
  }
870
851
  /**
871
852
  *
@@ -8661,6 +8642,14 @@ export interface IThemePatchRequest {
8661
8642
  * @memberof IThemePatchRequest
8662
8643
  */
8663
8644
  'assetVersion'?: number;
8645
+ /**
8646
+ * Construct a type with a set of properties K of type T
8647
+ * @type {{ [key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumValue; }}
8648
+ * @memberof IThemePatchRequest
8649
+ */
8650
+ 'componentConfigIndex'?: {
8651
+ [key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumValue;
8652
+ };
8664
8653
  }
8665
8654
  /**
8666
8655
  *
@@ -8714,6 +8703,14 @@ export interface IThemePostRequest {
8714
8703
  * @memberof IThemePostRequest
8715
8704
  */
8716
8705
  'assetVersion': number;
8706
+ /**
8707
+ * Construct a type with a set of properties K of type T
8708
+ * @type {{ [key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumValue; }}
8709
+ * @memberof IThemePostRequest
8710
+ */
8711
+ 'componentConfigIndex': {
8712
+ [key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumValue;
8713
+ };
8717
8714
  }
8718
8715
  /**
8719
8716
  *
@@ -8817,6 +8814,14 @@ export interface IThemeResponse {
8817
8814
  * @memberof IThemeResponse
8818
8815
  */
8819
8816
  'assetVersion': number;
8817
+ /**
8818
+ * Construct a type with a set of properties K of type T
8819
+ * @type {{ [key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumValue; }}
8820
+ * @memberof IThemeResponse
8821
+ */
8822
+ 'componentConfigIndex': {
8823
+ [key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumValue;
8824
+ };
8820
8825
  }
8821
8826
  /**
8822
8827
  *
@@ -9040,6 +9045,243 @@ export interface IUniquePagesResponse {
9040
9045
  */
9041
9046
  'data': Array<IUniquePageResponse>;
9042
9047
  }
9048
+ /**
9049
+ *
9050
+ * @export
9051
+ * @interface IUrlRedirect
9052
+ */
9053
+ export interface IUrlRedirect {
9054
+ /**
9055
+ *
9056
+ * @type {string}
9057
+ * @memberof IUrlRedirect
9058
+ */
9059
+ '_id': string;
9060
+ /**
9061
+ *
9062
+ * @type {number}
9063
+ * @memberof IUrlRedirect
9064
+ */
9065
+ '__v': number;
9066
+ /**
9067
+ *
9068
+ * @type {string}
9069
+ * @memberof IUrlRedirect
9070
+ */
9071
+ 'createdAt': string;
9072
+ /**
9073
+ *
9074
+ * @type {string}
9075
+ * @memberof IUrlRedirect
9076
+ */
9077
+ 'updatedAt': string;
9078
+ /**
9079
+ *
9080
+ * @type {string}
9081
+ * @memberof IUrlRedirect
9082
+ */
9083
+ 'company': string;
9084
+ /**
9085
+ *
9086
+ * @type {string}
9087
+ * @memberof IUrlRedirect
9088
+ */
9089
+ 'from': string;
9090
+ /**
9091
+ *
9092
+ * @type {string}
9093
+ * @memberof IUrlRedirect
9094
+ */
9095
+ 'to': string;
9096
+ }
9097
+ /**
9098
+ *
9099
+ * @export
9100
+ * @interface IUrlRedirectCollectionQueryParams
9101
+ */
9102
+ export interface IUrlRedirectCollectionQueryParams {
9103
+ /**
9104
+ *
9105
+ * @type {OrderEnum}
9106
+ * @memberof IUrlRedirectCollectionQueryParams
9107
+ */
9108
+ 'order'?: OrderEnum;
9109
+ /**
9110
+ *
9111
+ * @type {number}
9112
+ * @memberof IUrlRedirectCollectionQueryParams
9113
+ */
9114
+ 'page'?: number;
9115
+ /**
9116
+ *
9117
+ * @type {number}
9118
+ * @memberof IUrlRedirectCollectionQueryParams
9119
+ */
9120
+ 'itemsPerPage'?: number;
9121
+ /**
9122
+ *
9123
+ * @type {string}
9124
+ * @memberof IUrlRedirectCollectionQueryParams
9125
+ */
9126
+ 'search'?: string;
9127
+ /**
9128
+ *
9129
+ * @type {string}
9130
+ * @memberof IUrlRedirectCollectionQueryParams
9131
+ */
9132
+ 'startDate'?: string;
9133
+ /**
9134
+ *
9135
+ * @type {string}
9136
+ * @memberof IUrlRedirectCollectionQueryParams
9137
+ */
9138
+ 'endDate'?: string;
9139
+ /**
9140
+ *
9141
+ * @type {string}
9142
+ * @memberof IUrlRedirectCollectionQueryParams
9143
+ */
9144
+ 'dateField'?: IUrlRedirectCollectionQueryParamsDateFieldEnum;
9145
+ /**
9146
+ *
9147
+ * @type {string}
9148
+ * @memberof IUrlRedirectCollectionQueryParams
9149
+ */
9150
+ 'companyId': string;
9151
+ /**
9152
+ *
9153
+ * @type {string}
9154
+ * @memberof IUrlRedirectCollectionQueryParams
9155
+ */
9156
+ 'createdAt'?: string;
9157
+ /**
9158
+ *
9159
+ * @type {string}
9160
+ * @memberof IUrlRedirectCollectionQueryParams
9161
+ */
9162
+ 'sort'?: IUrlRedirectCollectionQueryParamsSortEnum;
9163
+ }
9164
+ export declare const IUrlRedirectCollectionQueryParamsDateFieldEnum: {
9165
+ readonly CREATED_AT: "createdAt";
9166
+ readonly UPDATED_AT: "updatedAt";
9167
+ };
9168
+ export type IUrlRedirectCollectionQueryParamsDateFieldEnum = typeof IUrlRedirectCollectionQueryParamsDateFieldEnum[keyof typeof IUrlRedirectCollectionQueryParamsDateFieldEnum];
9169
+ export declare const IUrlRedirectCollectionQueryParamsSortEnum: {
9170
+ readonly CREATED_AT: "createdAt";
9171
+ readonly FROM: "from";
9172
+ };
9173
+ export type IUrlRedirectCollectionQueryParamsSortEnum = typeof IUrlRedirectCollectionQueryParamsSortEnum[keyof typeof IUrlRedirectCollectionQueryParamsSortEnum];
9174
+ /**
9175
+ *
9176
+ * @export
9177
+ * @interface IUrlRedirectPostRequest
9178
+ */
9179
+ export interface IUrlRedirectPostRequest {
9180
+ /**
9181
+ *
9182
+ * @type {string}
9183
+ * @memberof IUrlRedirectPostRequest
9184
+ */
9185
+ 'company': string;
9186
+ /**
9187
+ *
9188
+ * @type {string}
9189
+ * @memberof IUrlRedirectPostRequest
9190
+ */
9191
+ 'from': string;
9192
+ /**
9193
+ *
9194
+ * @type {string}
9195
+ * @memberof IUrlRedirectPostRequest
9196
+ */
9197
+ 'to': string;
9198
+ }
9199
+ /**
9200
+ *
9201
+ * @export
9202
+ * @interface IUrlRedirectResponse
9203
+ */
9204
+ export interface IUrlRedirectResponse {
9205
+ /**
9206
+ *
9207
+ * @type {string}
9208
+ * @memberof IUrlRedirectResponse
9209
+ */
9210
+ '_id': string;
9211
+ /**
9212
+ *
9213
+ * @type {number}
9214
+ * @memberof IUrlRedirectResponse
9215
+ */
9216
+ '__v': number;
9217
+ /**
9218
+ *
9219
+ * @type {string}
9220
+ * @memberof IUrlRedirectResponse
9221
+ */
9222
+ 'createdAt': string;
9223
+ /**
9224
+ *
9225
+ * @type {string}
9226
+ * @memberof IUrlRedirectResponse
9227
+ */
9228
+ 'updatedAt': string;
9229
+ /**
9230
+ *
9231
+ * @type {string}
9232
+ * @memberof IUrlRedirectResponse
9233
+ */
9234
+ 'company': string;
9235
+ /**
9236
+ *
9237
+ * @type {string}
9238
+ * @memberof IUrlRedirectResponse
9239
+ */
9240
+ 'from': string;
9241
+ /**
9242
+ *
9243
+ * @type {string}
9244
+ * @memberof IUrlRedirectResponse
9245
+ */
9246
+ 'to': string;
9247
+ }
9248
+ /**
9249
+ *
9250
+ * @export
9251
+ * @interface IUrlRedirectsResponse
9252
+ */
9253
+ export interface IUrlRedirectsResponse {
9254
+ /**
9255
+ *
9256
+ * @type {number}
9257
+ * @memberof IUrlRedirectsResponse
9258
+ */
9259
+ 'page': number;
9260
+ /**
9261
+ *
9262
+ * @type {number}
9263
+ * @memberof IUrlRedirectsResponse
9264
+ */
9265
+ 'itemsPerPage': number;
9266
+ /**
9267
+ *
9268
+ * @type {number}
9269
+ * @memberof IUrlRedirectsResponse
9270
+ */
9271
+ 'total': number;
9272
+ /**
9273
+ *
9274
+ * @type {number}
9275
+ * @memberof IUrlRedirectsResponse
9276
+ */
9277
+ 'totalPages': number;
9278
+ /**
9279
+ *
9280
+ * @type {Array<IUrlRedirect>}
9281
+ * @memberof IUrlRedirectsResponse
9282
+ */
9283
+ 'data': Array<IUrlRedirect>;
9284
+ }
9043
9285
  /**
9044
9286
  *
9045
9287
  * @export
@@ -11742,6 +11984,14 @@ export interface PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseO
11742
11984
  * @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrMainOrCompanyOrCreatorOrFiles
11743
11985
  */
11744
11986
  'assetVersion': number;
11987
+ /**
11988
+ * Construct a type with a set of properties K of type T
11989
+ * @type {{ [key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumValue; }}
11990
+ * @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrMainOrCompanyOrCreatorOrFiles
11991
+ */
11992
+ 'componentConfigIndex': {
11993
+ [key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumValue;
11994
+ };
11745
11995
  }
11746
11996
  /**
11747
11997
  * From T, pick a set of properties whose keys are in the union K
@@ -12301,6 +12551,25 @@ export interface RecordPlanTypeEnumMonthlyBandwidthNumberStandardB2c {
12301
12551
  */
12302
12552
  'monthlyBandwidth': number;
12303
12553
  }
12554
+ /**
12555
+ *
12556
+ * @export
12557
+ * @interface RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumValue
12558
+ */
12559
+ export interface RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumValue {
12560
+ /**
12561
+ * Construct a type with a set of properties K of type T
12562
+ * @type {object}
12563
+ * @memberof RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumValue
12564
+ */
12565
+ 'contents': object;
12566
+ /**
12567
+ * Construct a type with a set of properties K of type T
12568
+ * @type {object}
12569
+ * @memberof RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumValue
12570
+ */
12571
+ 'config': object;
12572
+ }
12304
12573
  /**
12305
12574
  *
12306
12575
  * @export
@@ -13159,11 +13428,11 @@ export declare const BasketApiAxiosParamCreator: (configuration?: Configuration)
13159
13428
  /**
13160
13429
  *
13161
13430
  * @param {string} itemId
13162
- * @param {IBasketDeleteRequest} iBasketDeleteRequest
13431
+ * @param {string} basketId
13163
13432
  * @param {*} [options] Override http request option.
13164
13433
  * @throws {RequiredError}
13165
13434
  */
13166
- deleteProductFromBasket: (itemId: string, iBasketDeleteRequest: IBasketDeleteRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
13435
+ deleteProductFromBasket: (itemId: string, basketId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
13167
13436
  /**
13168
13437
  *
13169
13438
  * @param {string} [id]
@@ -13188,11 +13457,12 @@ export declare const BasketApiAxiosParamCreator: (configuration?: Configuration)
13188
13457
  /**
13189
13458
  *
13190
13459
  * @param {string} itemId
13460
+ * @param {string} basketId
13191
13461
  * @param {IBasketUpdateAmountRequest} iBasketUpdateAmountRequest
13192
13462
  * @param {*} [options] Override http request option.
13193
13463
  * @throws {RequiredError}
13194
13464
  */
13195
- updateAmount: (itemId: string, iBasketUpdateAmountRequest: IBasketUpdateAmountRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
13465
+ updateAmount: (itemId: string, basketId: string, iBasketUpdateAmountRequest: IBasketUpdateAmountRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
13196
13466
  };
13197
13467
  /**
13198
13468
  * BasketApi - functional programming interface
@@ -13209,11 +13479,11 @@ export declare const BasketApiFp: (configuration?: Configuration) => {
13209
13479
  /**
13210
13480
  *
13211
13481
  * @param {string} itemId
13212
- * @param {IBasketDeleteRequest} iBasketDeleteRequest
13482
+ * @param {string} basketId
13213
13483
  * @param {*} [options] Override http request option.
13214
13484
  * @throws {RequiredError}
13215
13485
  */
13216
- deleteProductFromBasket(itemId: string, iBasketDeleteRequest: IBasketDeleteRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
13486
+ deleteProductFromBasket(itemId: string, basketId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
13217
13487
  /**
13218
13488
  *
13219
13489
  * @param {string} [id]
@@ -13238,11 +13508,12 @@ export declare const BasketApiFp: (configuration?: Configuration) => {
13238
13508
  /**
13239
13509
  *
13240
13510
  * @param {string} itemId
13511
+ * @param {string} basketId
13241
13512
  * @param {IBasketUpdateAmountRequest} iBasketUpdateAmountRequest
13242
13513
  * @param {*} [options] Override http request option.
13243
13514
  * @throws {RequiredError}
13244
13515
  */
13245
- updateAmount(itemId: string, iBasketUpdateAmountRequest: IBasketUpdateAmountRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
13516
+ updateAmount(itemId: string, basketId: string, iBasketUpdateAmountRequest: IBasketUpdateAmountRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
13246
13517
  };
13247
13518
  /**
13248
13519
  * BasketApi - factory interface
@@ -13319,10 +13590,10 @@ export interface BasketApiDeleteProductFromBasketRequest {
13319
13590
  readonly itemId: string;
13320
13591
  /**
13321
13592
  *
13322
- * @type {IBasketDeleteRequest}
13593
+ * @type {string}
13323
13594
  * @memberof BasketApiDeleteProductFromBasket
13324
13595
  */
13325
- readonly iBasketDeleteRequest: IBasketDeleteRequest;
13596
+ readonly basketId: string;
13326
13597
  }
13327
13598
  /**
13328
13599
  * Request parameters for getBasket operation in BasketApi.
@@ -13375,6 +13646,12 @@ export interface BasketApiUpdateAmountRequest {
13375
13646
  * @memberof BasketApiUpdateAmount
13376
13647
  */
13377
13648
  readonly itemId: string;
13649
+ /**
13650
+ *
13651
+ * @type {string}
13652
+ * @memberof BasketApiUpdateAmount
13653
+ */
13654
+ readonly basketId: string;
13378
13655
  /**
13379
13656
  *
13380
13657
  * @type {IBasketUpdateAmountRequest}
@@ -22190,6 +22467,388 @@ export declare const GetUniquePagesDateFieldEnum: {
22190
22467
  readonly UPDATED_AT: "updatedAt";
22191
22468
  };
22192
22469
  export type GetUniquePagesDateFieldEnum = typeof GetUniquePagesDateFieldEnum[keyof typeof GetUniquePagesDateFieldEnum];
22470
+ /**
22471
+ * UrlRedirectApi - axios parameter creator
22472
+ * @export
22473
+ */
22474
+ export declare const UrlRedirectApiAxiosParamCreator: (configuration?: Configuration) => {
22475
+ /**
22476
+ *
22477
+ * @param {IUrlRedirectPostRequest} iUrlRedirectPostRequest
22478
+ * @param {*} [options] Override http request option.
22479
+ * @throws {RequiredError}
22480
+ */
22481
+ createUrlRedirect: (iUrlRedirectPostRequest: IUrlRedirectPostRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22482
+ /**
22483
+ *
22484
+ * @param {string} id
22485
+ * @param {*} [options] Override http request option.
22486
+ * @throws {RequiredError}
22487
+ */
22488
+ deleteUrlRedirect: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22489
+ /**
22490
+ *
22491
+ * @param {string} id
22492
+ * @param {*} [options] Override http request option.
22493
+ * @throws {RequiredError}
22494
+ */
22495
+ getUrlRedirectById: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22496
+ /**
22497
+ *
22498
+ * @param {string} from
22499
+ * @param {string} companyId
22500
+ * @param {*} [options] Override http request option.
22501
+ * @throws {RequiredError}
22502
+ */
22503
+ getUrlRedirectBySource: (from: string, companyId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22504
+ /**
22505
+ *
22506
+ * @param {string} companyId
22507
+ * @param {OrderEnum} [order]
22508
+ * @param {number} [page]
22509
+ * @param {number} [itemsPerPage]
22510
+ * @param {string} [search]
22511
+ * @param {string} [startDate]
22512
+ * @param {string} [endDate]
22513
+ * @param {GetUrlRedirectsDateFieldEnum} [dateField]
22514
+ * @param {string} [createdAt]
22515
+ * @param {GetUrlRedirectsSortEnum} [sort]
22516
+ * @param {*} [options] Override http request option.
22517
+ * @throws {RequiredError}
22518
+ */
22519
+ getUrlRedirects: (companyId: string, order?: OrderEnum, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetUrlRedirectsDateFieldEnum, createdAt?: string, sort?: GetUrlRedirectsSortEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22520
+ /**
22521
+ *
22522
+ * @param {string} id
22523
+ * @param {IUrlRedirectPostRequest} iUrlRedirectPostRequest
22524
+ * @param {*} [options] Override http request option.
22525
+ * @throws {RequiredError}
22526
+ */
22527
+ updateUrlRedirect: (id: string, iUrlRedirectPostRequest: IUrlRedirectPostRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22528
+ };
22529
+ /**
22530
+ * UrlRedirectApi - functional programming interface
22531
+ * @export
22532
+ */
22533
+ export declare const UrlRedirectApiFp: (configuration?: Configuration) => {
22534
+ /**
22535
+ *
22536
+ * @param {IUrlRedirectPostRequest} iUrlRedirectPostRequest
22537
+ * @param {*} [options] Override http request option.
22538
+ * @throws {RequiredError}
22539
+ */
22540
+ createUrlRedirect(iUrlRedirectPostRequest: IUrlRedirectPostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
22541
+ /**
22542
+ *
22543
+ * @param {string} id
22544
+ * @param {*} [options] Override http request option.
22545
+ * @throws {RequiredError}
22546
+ */
22547
+ deleteUrlRedirect(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
22548
+ /**
22549
+ *
22550
+ * @param {string} id
22551
+ * @param {*} [options] Override http request option.
22552
+ * @throws {RequiredError}
22553
+ */
22554
+ getUrlRedirectById(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IUrlRedirectResponse>>;
22555
+ /**
22556
+ *
22557
+ * @param {string} from
22558
+ * @param {string} companyId
22559
+ * @param {*} [options] Override http request option.
22560
+ * @throws {RequiredError}
22561
+ */
22562
+ getUrlRedirectBySource(from: string, companyId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IUrlRedirectResponse>>;
22563
+ /**
22564
+ *
22565
+ * @param {string} companyId
22566
+ * @param {OrderEnum} [order]
22567
+ * @param {number} [page]
22568
+ * @param {number} [itemsPerPage]
22569
+ * @param {string} [search]
22570
+ * @param {string} [startDate]
22571
+ * @param {string} [endDate]
22572
+ * @param {GetUrlRedirectsDateFieldEnum} [dateField]
22573
+ * @param {string} [createdAt]
22574
+ * @param {GetUrlRedirectsSortEnum} [sort]
22575
+ * @param {*} [options] Override http request option.
22576
+ * @throws {RequiredError}
22577
+ */
22578
+ getUrlRedirects(companyId: string, order?: OrderEnum, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetUrlRedirectsDateFieldEnum, createdAt?: string, sort?: GetUrlRedirectsSortEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IUrlRedirectsResponse>>;
22579
+ /**
22580
+ *
22581
+ * @param {string} id
22582
+ * @param {IUrlRedirectPostRequest} iUrlRedirectPostRequest
22583
+ * @param {*} [options] Override http request option.
22584
+ * @throws {RequiredError}
22585
+ */
22586
+ updateUrlRedirect(id: string, iUrlRedirectPostRequest: IUrlRedirectPostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
22587
+ };
22588
+ /**
22589
+ * UrlRedirectApi - factory interface
22590
+ * @export
22591
+ */
22592
+ export declare const UrlRedirectApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
22593
+ /**
22594
+ *
22595
+ * @param {UrlRedirectApiCreateUrlRedirectRequest} requestParameters Request parameters.
22596
+ * @param {*} [options] Override http request option.
22597
+ * @throws {RequiredError}
22598
+ */
22599
+ createUrlRedirect(requestParameters: UrlRedirectApiCreateUrlRedirectRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
22600
+ /**
22601
+ *
22602
+ * @param {UrlRedirectApiDeleteUrlRedirectRequest} requestParameters Request parameters.
22603
+ * @param {*} [options] Override http request option.
22604
+ * @throws {RequiredError}
22605
+ */
22606
+ deleteUrlRedirect(requestParameters: UrlRedirectApiDeleteUrlRedirectRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
22607
+ /**
22608
+ *
22609
+ * @param {UrlRedirectApiGetUrlRedirectByIdRequest} requestParameters Request parameters.
22610
+ * @param {*} [options] Override http request option.
22611
+ * @throws {RequiredError}
22612
+ */
22613
+ getUrlRedirectById(requestParameters: UrlRedirectApiGetUrlRedirectByIdRequest, options?: RawAxiosRequestConfig): AxiosPromise<IUrlRedirectResponse>;
22614
+ /**
22615
+ *
22616
+ * @param {UrlRedirectApiGetUrlRedirectBySourceRequest} requestParameters Request parameters.
22617
+ * @param {*} [options] Override http request option.
22618
+ * @throws {RequiredError}
22619
+ */
22620
+ getUrlRedirectBySource(requestParameters: UrlRedirectApiGetUrlRedirectBySourceRequest, options?: RawAxiosRequestConfig): AxiosPromise<IUrlRedirectResponse>;
22621
+ /**
22622
+ *
22623
+ * @param {UrlRedirectApiGetUrlRedirectsRequest} requestParameters Request parameters.
22624
+ * @param {*} [options] Override http request option.
22625
+ * @throws {RequiredError}
22626
+ */
22627
+ getUrlRedirects(requestParameters: UrlRedirectApiGetUrlRedirectsRequest, options?: RawAxiosRequestConfig): AxiosPromise<IUrlRedirectsResponse>;
22628
+ /**
22629
+ *
22630
+ * @param {UrlRedirectApiUpdateUrlRedirectRequest} requestParameters Request parameters.
22631
+ * @param {*} [options] Override http request option.
22632
+ * @throws {RequiredError}
22633
+ */
22634
+ updateUrlRedirect(requestParameters: UrlRedirectApiUpdateUrlRedirectRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
22635
+ };
22636
+ /**
22637
+ * Request parameters for createUrlRedirect operation in UrlRedirectApi.
22638
+ * @export
22639
+ * @interface UrlRedirectApiCreateUrlRedirectRequest
22640
+ */
22641
+ export interface UrlRedirectApiCreateUrlRedirectRequest {
22642
+ /**
22643
+ *
22644
+ * @type {IUrlRedirectPostRequest}
22645
+ * @memberof UrlRedirectApiCreateUrlRedirect
22646
+ */
22647
+ readonly iUrlRedirectPostRequest: IUrlRedirectPostRequest;
22648
+ }
22649
+ /**
22650
+ * Request parameters for deleteUrlRedirect operation in UrlRedirectApi.
22651
+ * @export
22652
+ * @interface UrlRedirectApiDeleteUrlRedirectRequest
22653
+ */
22654
+ export interface UrlRedirectApiDeleteUrlRedirectRequest {
22655
+ /**
22656
+ *
22657
+ * @type {string}
22658
+ * @memberof UrlRedirectApiDeleteUrlRedirect
22659
+ */
22660
+ readonly id: string;
22661
+ }
22662
+ /**
22663
+ * Request parameters for getUrlRedirectById operation in UrlRedirectApi.
22664
+ * @export
22665
+ * @interface UrlRedirectApiGetUrlRedirectByIdRequest
22666
+ */
22667
+ export interface UrlRedirectApiGetUrlRedirectByIdRequest {
22668
+ /**
22669
+ *
22670
+ * @type {string}
22671
+ * @memberof UrlRedirectApiGetUrlRedirectById
22672
+ */
22673
+ readonly id: string;
22674
+ }
22675
+ /**
22676
+ * Request parameters for getUrlRedirectBySource operation in UrlRedirectApi.
22677
+ * @export
22678
+ * @interface UrlRedirectApiGetUrlRedirectBySourceRequest
22679
+ */
22680
+ export interface UrlRedirectApiGetUrlRedirectBySourceRequest {
22681
+ /**
22682
+ *
22683
+ * @type {string}
22684
+ * @memberof UrlRedirectApiGetUrlRedirectBySource
22685
+ */
22686
+ readonly from: string;
22687
+ /**
22688
+ *
22689
+ * @type {string}
22690
+ * @memberof UrlRedirectApiGetUrlRedirectBySource
22691
+ */
22692
+ readonly companyId: string;
22693
+ }
22694
+ /**
22695
+ * Request parameters for getUrlRedirects operation in UrlRedirectApi.
22696
+ * @export
22697
+ * @interface UrlRedirectApiGetUrlRedirectsRequest
22698
+ */
22699
+ export interface UrlRedirectApiGetUrlRedirectsRequest {
22700
+ /**
22701
+ *
22702
+ * @type {string}
22703
+ * @memberof UrlRedirectApiGetUrlRedirects
22704
+ */
22705
+ readonly companyId: string;
22706
+ /**
22707
+ *
22708
+ * @type {OrderEnum}
22709
+ * @memberof UrlRedirectApiGetUrlRedirects
22710
+ */
22711
+ readonly order?: OrderEnum;
22712
+ /**
22713
+ *
22714
+ * @type {number}
22715
+ * @memberof UrlRedirectApiGetUrlRedirects
22716
+ */
22717
+ readonly page?: number;
22718
+ /**
22719
+ *
22720
+ * @type {number}
22721
+ * @memberof UrlRedirectApiGetUrlRedirects
22722
+ */
22723
+ readonly itemsPerPage?: number;
22724
+ /**
22725
+ *
22726
+ * @type {string}
22727
+ * @memberof UrlRedirectApiGetUrlRedirects
22728
+ */
22729
+ readonly search?: string;
22730
+ /**
22731
+ *
22732
+ * @type {string}
22733
+ * @memberof UrlRedirectApiGetUrlRedirects
22734
+ */
22735
+ readonly startDate?: string;
22736
+ /**
22737
+ *
22738
+ * @type {string}
22739
+ * @memberof UrlRedirectApiGetUrlRedirects
22740
+ */
22741
+ readonly endDate?: string;
22742
+ /**
22743
+ *
22744
+ * @type {'createdAt' | 'updatedAt'}
22745
+ * @memberof UrlRedirectApiGetUrlRedirects
22746
+ */
22747
+ readonly dateField?: GetUrlRedirectsDateFieldEnum;
22748
+ /**
22749
+ *
22750
+ * @type {string}
22751
+ * @memberof UrlRedirectApiGetUrlRedirects
22752
+ */
22753
+ readonly createdAt?: string;
22754
+ /**
22755
+ *
22756
+ * @type {'createdAt' | 'from'}
22757
+ * @memberof UrlRedirectApiGetUrlRedirects
22758
+ */
22759
+ readonly sort?: GetUrlRedirectsSortEnum;
22760
+ }
22761
+ /**
22762
+ * Request parameters for updateUrlRedirect operation in UrlRedirectApi.
22763
+ * @export
22764
+ * @interface UrlRedirectApiUpdateUrlRedirectRequest
22765
+ */
22766
+ export interface UrlRedirectApiUpdateUrlRedirectRequest {
22767
+ /**
22768
+ *
22769
+ * @type {string}
22770
+ * @memberof UrlRedirectApiUpdateUrlRedirect
22771
+ */
22772
+ readonly id: string;
22773
+ /**
22774
+ *
22775
+ * @type {IUrlRedirectPostRequest}
22776
+ * @memberof UrlRedirectApiUpdateUrlRedirect
22777
+ */
22778
+ readonly iUrlRedirectPostRequest: IUrlRedirectPostRequest;
22779
+ }
22780
+ /**
22781
+ * UrlRedirectApi - object-oriented interface
22782
+ * @export
22783
+ * @class UrlRedirectApi
22784
+ * @extends {BaseAPI}
22785
+ */
22786
+ export declare class UrlRedirectApi extends BaseAPI {
22787
+ /**
22788
+ *
22789
+ * @param {UrlRedirectApiCreateUrlRedirectRequest} requestParameters Request parameters.
22790
+ * @param {*} [options] Override http request option.
22791
+ * @throws {RequiredError}
22792
+ * @memberof UrlRedirectApi
22793
+ */
22794
+ createUrlRedirect(requestParameters: UrlRedirectApiCreateUrlRedirectRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
22795
+ /**
22796
+ *
22797
+ * @param {UrlRedirectApiDeleteUrlRedirectRequest} requestParameters Request parameters.
22798
+ * @param {*} [options] Override http request option.
22799
+ * @throws {RequiredError}
22800
+ * @memberof UrlRedirectApi
22801
+ */
22802
+ deleteUrlRedirect(requestParameters: UrlRedirectApiDeleteUrlRedirectRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
22803
+ /**
22804
+ *
22805
+ * @param {UrlRedirectApiGetUrlRedirectByIdRequest} requestParameters Request parameters.
22806
+ * @param {*} [options] Override http request option.
22807
+ * @throws {RequiredError}
22808
+ * @memberof UrlRedirectApi
22809
+ */
22810
+ getUrlRedirectById(requestParameters: UrlRedirectApiGetUrlRedirectByIdRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IUrlRedirectResponse, any>>;
22811
+ /**
22812
+ *
22813
+ * @param {UrlRedirectApiGetUrlRedirectBySourceRequest} requestParameters Request parameters.
22814
+ * @param {*} [options] Override http request option.
22815
+ * @throws {RequiredError}
22816
+ * @memberof UrlRedirectApi
22817
+ */
22818
+ getUrlRedirectBySource(requestParameters: UrlRedirectApiGetUrlRedirectBySourceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IUrlRedirectResponse, any>>;
22819
+ /**
22820
+ *
22821
+ * @param {UrlRedirectApiGetUrlRedirectsRequest} requestParameters Request parameters.
22822
+ * @param {*} [options] Override http request option.
22823
+ * @throws {RequiredError}
22824
+ * @memberof UrlRedirectApi
22825
+ */
22826
+ getUrlRedirects(requestParameters: UrlRedirectApiGetUrlRedirectsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IUrlRedirectsResponse, any>>;
22827
+ /**
22828
+ *
22829
+ * @param {UrlRedirectApiUpdateUrlRedirectRequest} requestParameters Request parameters.
22830
+ * @param {*} [options] Override http request option.
22831
+ * @throws {RequiredError}
22832
+ * @memberof UrlRedirectApi
22833
+ */
22834
+ updateUrlRedirect(requestParameters: UrlRedirectApiUpdateUrlRedirectRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
22835
+ }
22836
+ /**
22837
+ * @export
22838
+ */
22839
+ export declare const GetUrlRedirectsDateFieldEnum: {
22840
+ readonly CREATED_AT: "createdAt";
22841
+ readonly UPDATED_AT: "updatedAt";
22842
+ };
22843
+ export type GetUrlRedirectsDateFieldEnum = typeof GetUrlRedirectsDateFieldEnum[keyof typeof GetUrlRedirectsDateFieldEnum];
22844
+ /**
22845
+ * @export
22846
+ */
22847
+ export declare const GetUrlRedirectsSortEnum: {
22848
+ readonly CREATED_AT: "createdAt";
22849
+ readonly FROM: "from";
22850
+ };
22851
+ export type GetUrlRedirectsSortEnum = typeof GetUrlRedirectsSortEnum[keyof typeof GetUrlRedirectsSortEnum];
22193
22852
  /**
22194
22853
  * UserApi - axios parameter creator
22195
22854
  * @export