@infisale-client/api 1.3.17 → 1.3.19
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 +663 -196
- package/dist/api/api.js +417 -32
- package/dist/api/api.mjs +409 -28
- package/package.json +2 -2
package/dist/api/api.d.ts
CHANGED
|
@@ -47,37 +47,6 @@ export declare const CompanyUserStatusEnum: {
|
|
|
47
47
|
readonly DELETED: "deleted";
|
|
48
48
|
};
|
|
49
49
|
export type CompanyUserStatusEnum = typeof CompanyUserStatusEnum[keyof typeof CompanyUserStatusEnum];
|
|
50
|
-
/**
|
|
51
|
-
*
|
|
52
|
-
* @export
|
|
53
|
-
* @enum {string}
|
|
54
|
-
*/
|
|
55
|
-
export declare const ComponentProductListTypeEnum: {
|
|
56
|
-
readonly GRID: "grid";
|
|
57
|
-
readonly CAROUSEL: "carousel";
|
|
58
|
-
};
|
|
59
|
-
export type ComponentProductListTypeEnum = typeof ComponentProductListTypeEnum[keyof typeof ComponentProductListTypeEnum];
|
|
60
|
-
/**
|
|
61
|
-
*
|
|
62
|
-
* @export
|
|
63
|
-
* @enum {string}
|
|
64
|
-
*/
|
|
65
|
-
export declare const ComponentProductOrderEnum: {
|
|
66
|
-
readonly NEWEST: "newest";
|
|
67
|
-
readonly BEST_SELLING: "best_selling";
|
|
68
|
-
};
|
|
69
|
-
export type ComponentProductOrderEnum = typeof ComponentProductOrderEnum[keyof typeof ComponentProductOrderEnum];
|
|
70
|
-
/**
|
|
71
|
-
*
|
|
72
|
-
* @export
|
|
73
|
-
* @enum {string}
|
|
74
|
-
*/
|
|
75
|
-
export declare const ComponentProductTypeEnum: {
|
|
76
|
-
readonly CATEGORY: "category";
|
|
77
|
-
readonly COLLECTION: "collection";
|
|
78
|
-
readonly BRAND: "brand";
|
|
79
|
-
};
|
|
80
|
-
export type ComponentProductTypeEnum = typeof ComponentProductTypeEnum[keyof typeof ComponentProductTypeEnum];
|
|
81
50
|
/**
|
|
82
51
|
*
|
|
83
52
|
* @export
|
|
@@ -4272,6 +4241,12 @@ export interface IContactFormPostRequest {
|
|
|
4272
4241
|
* @memberof IContactFormPostRequest
|
|
4273
4242
|
*/
|
|
4274
4243
|
'data': Array<IContactFormResponseDataInner>;
|
|
4244
|
+
/**
|
|
4245
|
+
*
|
|
4246
|
+
* @type {string}
|
|
4247
|
+
* @memberof IContactFormPostRequest
|
|
4248
|
+
*/
|
|
4249
|
+
'title'?: string;
|
|
4275
4250
|
/**
|
|
4276
4251
|
*
|
|
4277
4252
|
* @type {string}
|
|
@@ -4321,6 +4296,12 @@ export interface IContactFormResponse {
|
|
|
4321
4296
|
* @memberof IContactFormResponse
|
|
4322
4297
|
*/
|
|
4323
4298
|
'ip': string;
|
|
4299
|
+
/**
|
|
4300
|
+
*
|
|
4301
|
+
* @type {string}
|
|
4302
|
+
* @memberof IContactFormResponse
|
|
4303
|
+
*/
|
|
4304
|
+
'title': string;
|
|
4324
4305
|
/**
|
|
4325
4306
|
*
|
|
4326
4307
|
* @type {Array<IContactFormResponseDataInner>}
|
|
@@ -4339,7 +4320,7 @@ export interface IContactFormResponseDataInner {
|
|
|
4339
4320
|
* @type {string}
|
|
4340
4321
|
* @memberof IContactFormResponseDataInner
|
|
4341
4322
|
*/
|
|
4342
|
-
'value'
|
|
4323
|
+
'value'?: string;
|
|
4343
4324
|
/**
|
|
4344
4325
|
*
|
|
4345
4326
|
* @type {string}
|
|
@@ -5024,6 +5005,232 @@ export declare const IMyOrderCollectionQueryParamsDateFieldEnum: {
|
|
|
5024
5005
|
readonly UPDATED_AT: "updatedAt";
|
|
5025
5006
|
};
|
|
5026
5007
|
export type IMyOrderCollectionQueryParamsDateFieldEnum = typeof IMyOrderCollectionQueryParamsDateFieldEnum[keyof typeof IMyOrderCollectionQueryParamsDateFieldEnum];
|
|
5008
|
+
/**
|
|
5009
|
+
*
|
|
5010
|
+
* @export
|
|
5011
|
+
* @interface INavigationCollectionQueryParams
|
|
5012
|
+
*/
|
|
5013
|
+
export interface INavigationCollectionQueryParams {
|
|
5014
|
+
/**
|
|
5015
|
+
*
|
|
5016
|
+
* @type {number}
|
|
5017
|
+
* @memberof INavigationCollectionQueryParams
|
|
5018
|
+
*/
|
|
5019
|
+
'page'?: number;
|
|
5020
|
+
/**
|
|
5021
|
+
*
|
|
5022
|
+
* @type {number}
|
|
5023
|
+
* @memberof INavigationCollectionQueryParams
|
|
5024
|
+
*/
|
|
5025
|
+
'itemsPerPage'?: number;
|
|
5026
|
+
/**
|
|
5027
|
+
*
|
|
5028
|
+
* @type {string}
|
|
5029
|
+
* @memberof INavigationCollectionQueryParams
|
|
5030
|
+
*/
|
|
5031
|
+
'search'?: string;
|
|
5032
|
+
/**
|
|
5033
|
+
*
|
|
5034
|
+
* @type {string}
|
|
5035
|
+
* @memberof INavigationCollectionQueryParams
|
|
5036
|
+
*/
|
|
5037
|
+
'startDate'?: string;
|
|
5038
|
+
/**
|
|
5039
|
+
*
|
|
5040
|
+
* @type {string}
|
|
5041
|
+
* @memberof INavigationCollectionQueryParams
|
|
5042
|
+
*/
|
|
5043
|
+
'endDate'?: string;
|
|
5044
|
+
/**
|
|
5045
|
+
*
|
|
5046
|
+
* @type {string}
|
|
5047
|
+
* @memberof INavigationCollectionQueryParams
|
|
5048
|
+
*/
|
|
5049
|
+
'dateField'?: INavigationCollectionQueryParamsDateFieldEnum;
|
|
5050
|
+
/**
|
|
5051
|
+
*
|
|
5052
|
+
* @type {OrderEnum}
|
|
5053
|
+
* @memberof INavigationCollectionQueryParams
|
|
5054
|
+
*/
|
|
5055
|
+
'order'?: OrderEnum;
|
|
5056
|
+
/**
|
|
5057
|
+
*
|
|
5058
|
+
* @type {string}
|
|
5059
|
+
* @memberof INavigationCollectionQueryParams
|
|
5060
|
+
*/
|
|
5061
|
+
'sort'?: string;
|
|
5062
|
+
/**
|
|
5063
|
+
*
|
|
5064
|
+
* @type {string}
|
|
5065
|
+
* @memberof INavigationCollectionQueryParams
|
|
5066
|
+
*/
|
|
5067
|
+
'companyId': string;
|
|
5068
|
+
}
|
|
5069
|
+
export declare const INavigationCollectionQueryParamsDateFieldEnum: {
|
|
5070
|
+
readonly CREATED_AT: "createdAt";
|
|
5071
|
+
readonly UPDATED_AT: "updatedAt";
|
|
5072
|
+
};
|
|
5073
|
+
export type INavigationCollectionQueryParamsDateFieldEnum = typeof INavigationCollectionQueryParamsDateFieldEnum[keyof typeof INavigationCollectionQueryParamsDateFieldEnum];
|
|
5074
|
+
/**
|
|
5075
|
+
*
|
|
5076
|
+
* @export
|
|
5077
|
+
* @interface INavigationLink
|
|
5078
|
+
*/
|
|
5079
|
+
export interface INavigationLink {
|
|
5080
|
+
/**
|
|
5081
|
+
*
|
|
5082
|
+
* @type {string}
|
|
5083
|
+
* @memberof INavigationLink
|
|
5084
|
+
*/
|
|
5085
|
+
'title': string;
|
|
5086
|
+
/**
|
|
5087
|
+
*
|
|
5088
|
+
* @type {string}
|
|
5089
|
+
* @memberof INavigationLink
|
|
5090
|
+
*/
|
|
5091
|
+
'url': string;
|
|
5092
|
+
/**
|
|
5093
|
+
*
|
|
5094
|
+
* @type {NavigationLinkTypeEnum}
|
|
5095
|
+
* @memberof INavigationLink
|
|
5096
|
+
*/
|
|
5097
|
+
'type': NavigationLinkTypeEnum;
|
|
5098
|
+
/**
|
|
5099
|
+
*
|
|
5100
|
+
* @type {any}
|
|
5101
|
+
* @memberof INavigationLink
|
|
5102
|
+
*/
|
|
5103
|
+
'object': any;
|
|
5104
|
+
}
|
|
5105
|
+
/**
|
|
5106
|
+
*
|
|
5107
|
+
* @export
|
|
5108
|
+
* @interface INavigationPostRequest
|
|
5109
|
+
*/
|
|
5110
|
+
export interface INavigationPostRequest {
|
|
5111
|
+
/**
|
|
5112
|
+
*
|
|
5113
|
+
* @type {string}
|
|
5114
|
+
* @memberof INavigationPostRequest
|
|
5115
|
+
*/
|
|
5116
|
+
'title': string;
|
|
5117
|
+
/**
|
|
5118
|
+
*
|
|
5119
|
+
* @type {string}
|
|
5120
|
+
* @memberof INavigationPostRequest
|
|
5121
|
+
*/
|
|
5122
|
+
'slug': string;
|
|
5123
|
+
/**
|
|
5124
|
+
*
|
|
5125
|
+
* @type {LanguageEnum}
|
|
5126
|
+
* @memberof INavigationPostRequest
|
|
5127
|
+
*/
|
|
5128
|
+
'locale': LanguageEnum;
|
|
5129
|
+
/**
|
|
5130
|
+
*
|
|
5131
|
+
* @type {Array<INavigationLink>}
|
|
5132
|
+
* @memberof INavigationPostRequest
|
|
5133
|
+
*/
|
|
5134
|
+
'links': Array<INavigationLink>;
|
|
5135
|
+
}
|
|
5136
|
+
/**
|
|
5137
|
+
*
|
|
5138
|
+
* @export
|
|
5139
|
+
* @interface INavigationResponse
|
|
5140
|
+
*/
|
|
5141
|
+
export interface INavigationResponse {
|
|
5142
|
+
/**
|
|
5143
|
+
*
|
|
5144
|
+
* @type {string}
|
|
5145
|
+
* @memberof INavigationResponse
|
|
5146
|
+
*/
|
|
5147
|
+
'_id': string;
|
|
5148
|
+
/**
|
|
5149
|
+
*
|
|
5150
|
+
* @type {number}
|
|
5151
|
+
* @memberof INavigationResponse
|
|
5152
|
+
*/
|
|
5153
|
+
'__v': number;
|
|
5154
|
+
/**
|
|
5155
|
+
*
|
|
5156
|
+
* @type {string}
|
|
5157
|
+
* @memberof INavigationResponse
|
|
5158
|
+
*/
|
|
5159
|
+
'createdAt': string;
|
|
5160
|
+
/**
|
|
5161
|
+
*
|
|
5162
|
+
* @type {string}
|
|
5163
|
+
* @memberof INavigationResponse
|
|
5164
|
+
*/
|
|
5165
|
+
'updatedAt': string;
|
|
5166
|
+
/**
|
|
5167
|
+
*
|
|
5168
|
+
* @type {string}
|
|
5169
|
+
* @memberof INavigationResponse
|
|
5170
|
+
*/
|
|
5171
|
+
'company': string;
|
|
5172
|
+
/**
|
|
5173
|
+
*
|
|
5174
|
+
* @type {LanguageEnum}
|
|
5175
|
+
* @memberof INavigationResponse
|
|
5176
|
+
*/
|
|
5177
|
+
'locale': LanguageEnum;
|
|
5178
|
+
/**
|
|
5179
|
+
*
|
|
5180
|
+
* @type {string}
|
|
5181
|
+
* @memberof INavigationResponse
|
|
5182
|
+
*/
|
|
5183
|
+
'title': string;
|
|
5184
|
+
/**
|
|
5185
|
+
*
|
|
5186
|
+
* @type {string}
|
|
5187
|
+
* @memberof INavigationResponse
|
|
5188
|
+
*/
|
|
5189
|
+
'slug': string;
|
|
5190
|
+
/**
|
|
5191
|
+
*
|
|
5192
|
+
* @type {Array<INavigationLink>}
|
|
5193
|
+
* @memberof INavigationResponse
|
|
5194
|
+
*/
|
|
5195
|
+
'links': Array<INavigationLink>;
|
|
5196
|
+
}
|
|
5197
|
+
/**
|
|
5198
|
+
*
|
|
5199
|
+
* @export
|
|
5200
|
+
* @interface INavigationsResponse
|
|
5201
|
+
*/
|
|
5202
|
+
export interface INavigationsResponse {
|
|
5203
|
+
/**
|
|
5204
|
+
*
|
|
5205
|
+
* @type {number}
|
|
5206
|
+
* @memberof INavigationsResponse
|
|
5207
|
+
*/
|
|
5208
|
+
'page': number;
|
|
5209
|
+
/**
|
|
5210
|
+
*
|
|
5211
|
+
* @type {number}
|
|
5212
|
+
* @memberof INavigationsResponse
|
|
5213
|
+
*/
|
|
5214
|
+
'itemsPerPage': number;
|
|
5215
|
+
/**
|
|
5216
|
+
*
|
|
5217
|
+
* @type {number}
|
|
5218
|
+
* @memberof INavigationsResponse
|
|
5219
|
+
*/
|
|
5220
|
+
'total': number;
|
|
5221
|
+
/**
|
|
5222
|
+
*
|
|
5223
|
+
* @type {number}
|
|
5224
|
+
* @memberof INavigationsResponse
|
|
5225
|
+
*/
|
|
5226
|
+
'totalPages': number;
|
|
5227
|
+
/**
|
|
5228
|
+
*
|
|
5229
|
+
* @type {Array<INavigationResponse>}
|
|
5230
|
+
* @memberof INavigationsResponse
|
|
5231
|
+
*/
|
|
5232
|
+
'data': Array<INavigationResponse>;
|
|
5233
|
+
}
|
|
5027
5234
|
/**
|
|
5028
5235
|
*
|
|
5029
5236
|
* @export
|
|
@@ -7472,10 +7679,10 @@ export interface IProductResponse {
|
|
|
7472
7679
|
'reviewCount': number;
|
|
7473
7680
|
/**
|
|
7474
7681
|
*
|
|
7475
|
-
* @type {
|
|
7682
|
+
* @type {PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFieldsReviewCounts}
|
|
7476
7683
|
* @memberof IProductResponse
|
|
7477
7684
|
*/
|
|
7478
|
-
'reviewCounts':
|
|
7685
|
+
'reviewCounts': PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFieldsReviewCounts;
|
|
7479
7686
|
/**
|
|
7480
7687
|
*
|
|
7481
7688
|
* @type {ContentStatusEnum}
|
|
@@ -7543,43 +7750,6 @@ export interface IProductResponse {
|
|
|
7543
7750
|
*/
|
|
7544
7751
|
'template': ITemplateResponse;
|
|
7545
7752
|
}
|
|
7546
|
-
/**
|
|
7547
|
-
*
|
|
7548
|
-
* @export
|
|
7549
|
-
* @interface IProductResponseReviewCounts
|
|
7550
|
-
*/
|
|
7551
|
-
export interface IProductResponseReviewCounts {
|
|
7552
|
-
/**
|
|
7553
|
-
*
|
|
7554
|
-
* @type {number}
|
|
7555
|
-
* @memberof IProductResponseReviewCounts
|
|
7556
|
-
*/
|
|
7557
|
-
'1': number;
|
|
7558
|
-
/**
|
|
7559
|
-
*
|
|
7560
|
-
* @type {number}
|
|
7561
|
-
* @memberof IProductResponseReviewCounts
|
|
7562
|
-
*/
|
|
7563
|
-
'2': number;
|
|
7564
|
-
/**
|
|
7565
|
-
*
|
|
7566
|
-
* @type {number}
|
|
7567
|
-
* @memberof IProductResponseReviewCounts
|
|
7568
|
-
*/
|
|
7569
|
-
'3': number;
|
|
7570
|
-
/**
|
|
7571
|
-
*
|
|
7572
|
-
* @type {number}
|
|
7573
|
-
* @memberof IProductResponseReviewCounts
|
|
7574
|
-
*/
|
|
7575
|
-
'4': number;
|
|
7576
|
-
/**
|
|
7577
|
-
*
|
|
7578
|
-
* @type {number}
|
|
7579
|
-
* @memberof IProductResponseReviewCounts
|
|
7580
|
-
*/
|
|
7581
|
-
'5': number;
|
|
7582
|
-
}
|
|
7583
7753
|
/**
|
|
7584
7754
|
*
|
|
7585
7755
|
* @export
|
|
@@ -8281,135 +8451,31 @@ export interface ITemplateComponentResponse {
|
|
|
8281
8451
|
* @memberof ITemplateComponentResponse
|
|
8282
8452
|
*/
|
|
8283
8453
|
'contents': Array<ITemplateComponentContentResponse>;
|
|
8454
|
+
}
|
|
8455
|
+
/**
|
|
8456
|
+
*
|
|
8457
|
+
* @export
|
|
8458
|
+
* @interface ITemplatePatchRequest
|
|
8459
|
+
*/
|
|
8460
|
+
export interface ITemplatePatchRequest {
|
|
8284
8461
|
/**
|
|
8285
8462
|
*
|
|
8286
|
-
* @type {
|
|
8287
|
-
* @memberof
|
|
8463
|
+
* @type {string}
|
|
8464
|
+
* @memberof ITemplatePatchRequest
|
|
8288
8465
|
*/
|
|
8289
|
-
'
|
|
8466
|
+
'title'?: string;
|
|
8290
8467
|
/**
|
|
8291
8468
|
*
|
|
8292
|
-
* @type {
|
|
8293
|
-
* @memberof
|
|
8469
|
+
* @type {PartialRecordLanguageEnumITemplateComponentResponseArray}
|
|
8470
|
+
* @memberof ITemplatePatchRequest
|
|
8294
8471
|
*/
|
|
8295
|
-
'
|
|
8472
|
+
'components'?: PartialRecordLanguageEnumITemplateComponentResponseArray;
|
|
8296
8473
|
/**
|
|
8297
8474
|
*
|
|
8298
|
-
* @type {
|
|
8299
|
-
* @memberof
|
|
8475
|
+
* @type {string}
|
|
8476
|
+
* @memberof ITemplatePatchRequest
|
|
8300
8477
|
*/
|
|
8301
|
-
'
|
|
8302
|
-
/**
|
|
8303
|
-
*
|
|
8304
|
-
* @type {Array<ICollectionResponse>}
|
|
8305
|
-
* @memberof ITemplateComponentResponse
|
|
8306
|
-
*/
|
|
8307
|
-
'collections'?: Array<ICollectionResponse>;
|
|
8308
|
-
/**
|
|
8309
|
-
*
|
|
8310
|
-
* @type {ITemplateComponentResponsePages}
|
|
8311
|
-
* @memberof ITemplateComponentResponse
|
|
8312
|
-
*/
|
|
8313
|
-
'pages'?: ITemplateComponentResponsePages;
|
|
8314
|
-
}
|
|
8315
|
-
/**
|
|
8316
|
-
*
|
|
8317
|
-
* @export
|
|
8318
|
-
* @interface ITemplateComponentResponsePages
|
|
8319
|
-
*/
|
|
8320
|
-
export interface ITemplateComponentResponsePages {
|
|
8321
|
-
/**
|
|
8322
|
-
*
|
|
8323
|
-
* @type {number}
|
|
8324
|
-
* @memberof ITemplateComponentResponsePages
|
|
8325
|
-
*/
|
|
8326
|
-
'limit'?: number;
|
|
8327
|
-
/**
|
|
8328
|
-
*
|
|
8329
|
-
* @type {Array<IPageResponse>}
|
|
8330
|
-
* @memberof ITemplateComponentResponsePages
|
|
8331
|
-
*/
|
|
8332
|
-
'list'?: Array<IPageResponse>;
|
|
8333
|
-
/**
|
|
8334
|
-
*
|
|
8335
|
-
* @type {Array<IPageResponse>}
|
|
8336
|
-
* @memberof ITemplateComponentResponsePages
|
|
8337
|
-
*/
|
|
8338
|
-
'items'?: Array<IPageResponse>;
|
|
8339
|
-
}
|
|
8340
|
-
/**
|
|
8341
|
-
*
|
|
8342
|
-
* @export
|
|
8343
|
-
* @interface ITemplateComponentResponseProducts
|
|
8344
|
-
*/
|
|
8345
|
-
export interface ITemplateComponentResponseProducts {
|
|
8346
|
-
/**
|
|
8347
|
-
*
|
|
8348
|
-
* @type {Array<IProductResponse>}
|
|
8349
|
-
* @memberof ITemplateComponentResponseProducts
|
|
8350
|
-
*/
|
|
8351
|
-
'list'?: Array<IProductResponse>;
|
|
8352
|
-
/**
|
|
8353
|
-
*
|
|
8354
|
-
* @type {number}
|
|
8355
|
-
* @memberof ITemplateComponentResponseProducts
|
|
8356
|
-
*/
|
|
8357
|
-
'limit'?: number;
|
|
8358
|
-
/**
|
|
8359
|
-
*
|
|
8360
|
-
* @type {ComponentProductListTypeEnum}
|
|
8361
|
-
* @memberof ITemplateComponentResponseProducts
|
|
8362
|
-
*/
|
|
8363
|
-
'listType': ComponentProductListTypeEnum;
|
|
8364
|
-
/**
|
|
8365
|
-
*
|
|
8366
|
-
* @type {ComponentProductOrderEnum}
|
|
8367
|
-
* @memberof ITemplateComponentResponseProducts
|
|
8368
|
-
*/
|
|
8369
|
-
'order'?: ComponentProductOrderEnum;
|
|
8370
|
-
/**
|
|
8371
|
-
*
|
|
8372
|
-
* @type {ComponentProductTypeEnum}
|
|
8373
|
-
* @memberof ITemplateComponentResponseProducts
|
|
8374
|
-
*/
|
|
8375
|
-
'relType'?: ComponentProductTypeEnum;
|
|
8376
|
-
/**
|
|
8377
|
-
*
|
|
8378
|
-
* @type {string}
|
|
8379
|
-
* @memberof ITemplateComponentResponseProducts
|
|
8380
|
-
*/
|
|
8381
|
-
'relation'?: string;
|
|
8382
|
-
/**
|
|
8383
|
-
*
|
|
8384
|
-
* @type {Array<IProductResponse>}
|
|
8385
|
-
* @memberof ITemplateComponentResponseProducts
|
|
8386
|
-
*/
|
|
8387
|
-
'items'?: Array<IProductResponse>;
|
|
8388
|
-
}
|
|
8389
|
-
/**
|
|
8390
|
-
*
|
|
8391
|
-
* @export
|
|
8392
|
-
* @interface ITemplatePatchRequest
|
|
8393
|
-
*/
|
|
8394
|
-
export interface ITemplatePatchRequest {
|
|
8395
|
-
/**
|
|
8396
|
-
*
|
|
8397
|
-
* @type {string}
|
|
8398
|
-
* @memberof ITemplatePatchRequest
|
|
8399
|
-
*/
|
|
8400
|
-
'title'?: string;
|
|
8401
|
-
/**
|
|
8402
|
-
*
|
|
8403
|
-
* @type {PartialRecordLanguageEnumITemplateComponentResponseArray}
|
|
8404
|
-
* @memberof ITemplatePatchRequest
|
|
8405
|
-
*/
|
|
8406
|
-
'components'?: PartialRecordLanguageEnumITemplateComponentResponseArray;
|
|
8407
|
-
/**
|
|
8408
|
-
*
|
|
8409
|
-
* @type {string}
|
|
8410
|
-
* @memberof ITemplatePatchRequest
|
|
8411
|
-
*/
|
|
8412
|
-
'type'?: string;
|
|
8478
|
+
'type'?: string;
|
|
8413
8479
|
/**
|
|
8414
8480
|
*
|
|
8415
8481
|
* @type {boolean}
|
|
@@ -9307,6 +9373,23 @@ export declare const LanguageEnum: {
|
|
|
9307
9373
|
readonly DE: "de";
|
|
9308
9374
|
};
|
|
9309
9375
|
export type LanguageEnum = typeof LanguageEnum[keyof typeof LanguageEnum];
|
|
9376
|
+
/**
|
|
9377
|
+
*
|
|
9378
|
+
* @export
|
|
9379
|
+
* @enum {string}
|
|
9380
|
+
*/
|
|
9381
|
+
export declare const NavigationLinkTypeEnum: {
|
|
9382
|
+
readonly BLOG_LINK: "blog_link";
|
|
9383
|
+
readonly COLLECTION_LINK: "collection_link";
|
|
9384
|
+
readonly CATEGORY_LINK: "category_link";
|
|
9385
|
+
readonly CUSTOMER_ACCOUNT_PAGE_LINK: "customer_account_page_link";
|
|
9386
|
+
readonly HTTP_LINK: "http_link";
|
|
9387
|
+
readonly PAGE_LINK: "page_link";
|
|
9388
|
+
readonly POLICY_LINK: "policy_link";
|
|
9389
|
+
readonly PRODUCT_LINK: "product_link";
|
|
9390
|
+
readonly UNIQUE_PAGE_LINK: "unique_page_link";
|
|
9391
|
+
};
|
|
9392
|
+
export type NavigationLinkTypeEnum = typeof NavigationLinkTypeEnum[keyof typeof NavigationLinkTypeEnum];
|
|
9310
9393
|
/**
|
|
9311
9394
|
*
|
|
9312
9395
|
* @export
|
|
@@ -10488,16 +10571,47 @@ export interface PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesUse
|
|
|
10488
10571
|
/**
|
|
10489
10572
|
* From T, pick a set of properties whose keys are in the union K
|
|
10490
10573
|
* @export
|
|
10491
|
-
* @interface
|
|
10574
|
+
* @interface PickIContactFormExcludeKeyofIContactFormKeyofMongoResponseOrCompanyOrIpOrTitle
|
|
10492
10575
|
*/
|
|
10493
|
-
export interface
|
|
10576
|
+
export interface PickIContactFormExcludeKeyofIContactFormKeyofMongoResponseOrCompanyOrIpOrTitle {
|
|
10494
10577
|
/**
|
|
10495
10578
|
*
|
|
10496
10579
|
* @type {Array<IContactFormResponseDataInner>}
|
|
10497
|
-
* @memberof
|
|
10580
|
+
* @memberof PickIContactFormExcludeKeyofIContactFormKeyofMongoResponseOrCompanyOrIpOrTitle
|
|
10498
10581
|
*/
|
|
10499
10582
|
'data': Array<IContactFormResponseDataInner>;
|
|
10500
10583
|
}
|
|
10584
|
+
/**
|
|
10585
|
+
* From T, pick a set of properties whose keys are in the union K
|
|
10586
|
+
* @export
|
|
10587
|
+
* @interface PickINavigationExcludeKeyofINavigationKeyofMongoResponseOrCompany
|
|
10588
|
+
*/
|
|
10589
|
+
export interface PickINavigationExcludeKeyofINavigationKeyofMongoResponseOrCompany {
|
|
10590
|
+
/**
|
|
10591
|
+
*
|
|
10592
|
+
* @type {string}
|
|
10593
|
+
* @memberof PickINavigationExcludeKeyofINavigationKeyofMongoResponseOrCompany
|
|
10594
|
+
*/
|
|
10595
|
+
'title': string;
|
|
10596
|
+
/**
|
|
10597
|
+
*
|
|
10598
|
+
* @type {string}
|
|
10599
|
+
* @memberof PickINavigationExcludeKeyofINavigationKeyofMongoResponseOrCompany
|
|
10600
|
+
*/
|
|
10601
|
+
'slug': string;
|
|
10602
|
+
/**
|
|
10603
|
+
*
|
|
10604
|
+
* @type {LanguageEnum}
|
|
10605
|
+
* @memberof PickINavigationExcludeKeyofINavigationKeyofMongoResponseOrCompany
|
|
10606
|
+
*/
|
|
10607
|
+
'locale': LanguageEnum;
|
|
10608
|
+
/**
|
|
10609
|
+
*
|
|
10610
|
+
* @type {Array<INavigationLink>}
|
|
10611
|
+
* @memberof PickINavigationExcludeKeyofINavigationKeyofMongoResponseOrCompany
|
|
10612
|
+
*/
|
|
10613
|
+
'links': Array<INavigationLink>;
|
|
10614
|
+
}
|
|
10501
10615
|
/**
|
|
10502
10616
|
* From T, pick a set of properties whose keys are in the union K
|
|
10503
10617
|
* @export
|
|
@@ -11135,10 +11249,47 @@ export interface PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttr
|
|
|
11135
11249
|
'reviewCount': number;
|
|
11136
11250
|
/**
|
|
11137
11251
|
*
|
|
11138
|
-
* @type {
|
|
11252
|
+
* @type {PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFieldsReviewCounts}
|
|
11139
11253
|
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFields
|
|
11140
11254
|
*/
|
|
11141
|
-
'reviewCounts':
|
|
11255
|
+
'reviewCounts': PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFieldsReviewCounts;
|
|
11256
|
+
}
|
|
11257
|
+
/**
|
|
11258
|
+
*
|
|
11259
|
+
* @export
|
|
11260
|
+
* @interface PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFieldsReviewCounts
|
|
11261
|
+
*/
|
|
11262
|
+
export interface PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFieldsReviewCounts {
|
|
11263
|
+
/**
|
|
11264
|
+
*
|
|
11265
|
+
* @type {number}
|
|
11266
|
+
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFieldsReviewCounts
|
|
11267
|
+
*/
|
|
11268
|
+
'1': number;
|
|
11269
|
+
/**
|
|
11270
|
+
*
|
|
11271
|
+
* @type {number}
|
|
11272
|
+
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFieldsReviewCounts
|
|
11273
|
+
*/
|
|
11274
|
+
'2': number;
|
|
11275
|
+
/**
|
|
11276
|
+
*
|
|
11277
|
+
* @type {number}
|
|
11278
|
+
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFieldsReviewCounts
|
|
11279
|
+
*/
|
|
11280
|
+
'3': number;
|
|
11281
|
+
/**
|
|
11282
|
+
*
|
|
11283
|
+
* @type {number}
|
|
11284
|
+
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFieldsReviewCounts
|
|
11285
|
+
*/
|
|
11286
|
+
'4': number;
|
|
11287
|
+
/**
|
|
11288
|
+
*
|
|
11289
|
+
* @type {number}
|
|
11290
|
+
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFieldsReviewCounts
|
|
11291
|
+
*/
|
|
11292
|
+
'5': number;
|
|
11142
11293
|
}
|
|
11143
11294
|
/**
|
|
11144
11295
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -17405,6 +17556,322 @@ export declare const GetFilesDateFieldEnum: {
|
|
|
17405
17556
|
readonly UPDATED_AT: "updatedAt";
|
|
17406
17557
|
};
|
|
17407
17558
|
export type GetFilesDateFieldEnum = typeof GetFilesDateFieldEnum[keyof typeof GetFilesDateFieldEnum];
|
|
17559
|
+
/**
|
|
17560
|
+
* NavigationApi - axios parameter creator
|
|
17561
|
+
* @export
|
|
17562
|
+
*/
|
|
17563
|
+
export declare const NavigationApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
17564
|
+
/**
|
|
17565
|
+
*
|
|
17566
|
+
* @param {INavigationPostRequest} iNavigationPostRequest
|
|
17567
|
+
* @param {*} [options] Override http request option.
|
|
17568
|
+
* @throws {RequiredError}
|
|
17569
|
+
*/
|
|
17570
|
+
createNavigation: (iNavigationPostRequest: INavigationPostRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
17571
|
+
/**
|
|
17572
|
+
*
|
|
17573
|
+
* @param {string} id
|
|
17574
|
+
* @param {*} [options] Override http request option.
|
|
17575
|
+
* @throws {RequiredError}
|
|
17576
|
+
*/
|
|
17577
|
+
deleteNavigation: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
17578
|
+
/**
|
|
17579
|
+
*
|
|
17580
|
+
* @param {string} id
|
|
17581
|
+
* @param {*} [options] Override http request option.
|
|
17582
|
+
* @throws {RequiredError}
|
|
17583
|
+
*/
|
|
17584
|
+
getNavigationById: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
17585
|
+
/**
|
|
17586
|
+
*
|
|
17587
|
+
* @param {string} companyId
|
|
17588
|
+
* @param {number} [page]
|
|
17589
|
+
* @param {number} [itemsPerPage]
|
|
17590
|
+
* @param {string} [search]
|
|
17591
|
+
* @param {string} [startDate]
|
|
17592
|
+
* @param {string} [endDate]
|
|
17593
|
+
* @param {GetNavigationsDateFieldEnum} [dateField]
|
|
17594
|
+
* @param {OrderEnum} [order]
|
|
17595
|
+
* @param {string} [sort]
|
|
17596
|
+
* @param {*} [options] Override http request option.
|
|
17597
|
+
* @throws {RequiredError}
|
|
17598
|
+
*/
|
|
17599
|
+
getNavigations: (companyId: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetNavigationsDateFieldEnum, order?: OrderEnum, sort?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
17600
|
+
/**
|
|
17601
|
+
*
|
|
17602
|
+
* @param {string} id
|
|
17603
|
+
* @param {INavigationPostRequest} iNavigationPostRequest
|
|
17604
|
+
* @param {*} [options] Override http request option.
|
|
17605
|
+
* @throws {RequiredError}
|
|
17606
|
+
*/
|
|
17607
|
+
patchNavigation: (id: string, iNavigationPostRequest: INavigationPostRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
17608
|
+
};
|
|
17609
|
+
/**
|
|
17610
|
+
* NavigationApi - functional programming interface
|
|
17611
|
+
* @export
|
|
17612
|
+
*/
|
|
17613
|
+
export declare const NavigationApiFp: (configuration?: Configuration) => {
|
|
17614
|
+
/**
|
|
17615
|
+
*
|
|
17616
|
+
* @param {INavigationPostRequest} iNavigationPostRequest
|
|
17617
|
+
* @param {*} [options] Override http request option.
|
|
17618
|
+
* @throws {RequiredError}
|
|
17619
|
+
*/
|
|
17620
|
+
createNavigation(iNavigationPostRequest: INavigationPostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<INavigationResponse>>;
|
|
17621
|
+
/**
|
|
17622
|
+
*
|
|
17623
|
+
* @param {string} id
|
|
17624
|
+
* @param {*} [options] Override http request option.
|
|
17625
|
+
* @throws {RequiredError}
|
|
17626
|
+
*/
|
|
17627
|
+
deleteNavigation(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
17628
|
+
/**
|
|
17629
|
+
*
|
|
17630
|
+
* @param {string} id
|
|
17631
|
+
* @param {*} [options] Override http request option.
|
|
17632
|
+
* @throws {RequiredError}
|
|
17633
|
+
*/
|
|
17634
|
+
getNavigationById(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<INavigationResponse>>;
|
|
17635
|
+
/**
|
|
17636
|
+
*
|
|
17637
|
+
* @param {string} companyId
|
|
17638
|
+
* @param {number} [page]
|
|
17639
|
+
* @param {number} [itemsPerPage]
|
|
17640
|
+
* @param {string} [search]
|
|
17641
|
+
* @param {string} [startDate]
|
|
17642
|
+
* @param {string} [endDate]
|
|
17643
|
+
* @param {GetNavigationsDateFieldEnum} [dateField]
|
|
17644
|
+
* @param {OrderEnum} [order]
|
|
17645
|
+
* @param {string} [sort]
|
|
17646
|
+
* @param {*} [options] Override http request option.
|
|
17647
|
+
* @throws {RequiredError}
|
|
17648
|
+
*/
|
|
17649
|
+
getNavigations(companyId: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetNavigationsDateFieldEnum, order?: OrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<INavigationsResponse>>;
|
|
17650
|
+
/**
|
|
17651
|
+
*
|
|
17652
|
+
* @param {string} id
|
|
17653
|
+
* @param {INavigationPostRequest} iNavigationPostRequest
|
|
17654
|
+
* @param {*} [options] Override http request option.
|
|
17655
|
+
* @throws {RequiredError}
|
|
17656
|
+
*/
|
|
17657
|
+
patchNavigation(id: string, iNavigationPostRequest: INavigationPostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<INavigationResponse>>;
|
|
17658
|
+
};
|
|
17659
|
+
/**
|
|
17660
|
+
* NavigationApi - factory interface
|
|
17661
|
+
* @export
|
|
17662
|
+
*/
|
|
17663
|
+
export declare const NavigationApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
17664
|
+
/**
|
|
17665
|
+
*
|
|
17666
|
+
* @param {NavigationApiCreateNavigationRequest} requestParameters Request parameters.
|
|
17667
|
+
* @param {*} [options] Override http request option.
|
|
17668
|
+
* @throws {RequiredError}
|
|
17669
|
+
*/
|
|
17670
|
+
createNavigation(requestParameters: NavigationApiCreateNavigationRequest, options?: RawAxiosRequestConfig): AxiosPromise<INavigationResponse>;
|
|
17671
|
+
/**
|
|
17672
|
+
*
|
|
17673
|
+
* @param {NavigationApiDeleteNavigationRequest} requestParameters Request parameters.
|
|
17674
|
+
* @param {*} [options] Override http request option.
|
|
17675
|
+
* @throws {RequiredError}
|
|
17676
|
+
*/
|
|
17677
|
+
deleteNavigation(requestParameters: NavigationApiDeleteNavigationRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
17678
|
+
/**
|
|
17679
|
+
*
|
|
17680
|
+
* @param {NavigationApiGetNavigationByIdRequest} requestParameters Request parameters.
|
|
17681
|
+
* @param {*} [options] Override http request option.
|
|
17682
|
+
* @throws {RequiredError}
|
|
17683
|
+
*/
|
|
17684
|
+
getNavigationById(requestParameters: NavigationApiGetNavigationByIdRequest, options?: RawAxiosRequestConfig): AxiosPromise<INavigationResponse>;
|
|
17685
|
+
/**
|
|
17686
|
+
*
|
|
17687
|
+
* @param {NavigationApiGetNavigationsRequest} requestParameters Request parameters.
|
|
17688
|
+
* @param {*} [options] Override http request option.
|
|
17689
|
+
* @throws {RequiredError}
|
|
17690
|
+
*/
|
|
17691
|
+
getNavigations(requestParameters: NavigationApiGetNavigationsRequest, options?: RawAxiosRequestConfig): AxiosPromise<INavigationsResponse>;
|
|
17692
|
+
/**
|
|
17693
|
+
*
|
|
17694
|
+
* @param {NavigationApiPatchNavigationRequest} requestParameters Request parameters.
|
|
17695
|
+
* @param {*} [options] Override http request option.
|
|
17696
|
+
* @throws {RequiredError}
|
|
17697
|
+
*/
|
|
17698
|
+
patchNavigation(requestParameters: NavigationApiPatchNavigationRequest, options?: RawAxiosRequestConfig): AxiosPromise<INavigationResponse>;
|
|
17699
|
+
};
|
|
17700
|
+
/**
|
|
17701
|
+
* Request parameters for createNavigation operation in NavigationApi.
|
|
17702
|
+
* @export
|
|
17703
|
+
* @interface NavigationApiCreateNavigationRequest
|
|
17704
|
+
*/
|
|
17705
|
+
export interface NavigationApiCreateNavigationRequest {
|
|
17706
|
+
/**
|
|
17707
|
+
*
|
|
17708
|
+
* @type {INavigationPostRequest}
|
|
17709
|
+
* @memberof NavigationApiCreateNavigation
|
|
17710
|
+
*/
|
|
17711
|
+
readonly iNavigationPostRequest: INavigationPostRequest;
|
|
17712
|
+
}
|
|
17713
|
+
/**
|
|
17714
|
+
* Request parameters for deleteNavigation operation in NavigationApi.
|
|
17715
|
+
* @export
|
|
17716
|
+
* @interface NavigationApiDeleteNavigationRequest
|
|
17717
|
+
*/
|
|
17718
|
+
export interface NavigationApiDeleteNavigationRequest {
|
|
17719
|
+
/**
|
|
17720
|
+
*
|
|
17721
|
+
* @type {string}
|
|
17722
|
+
* @memberof NavigationApiDeleteNavigation
|
|
17723
|
+
*/
|
|
17724
|
+
readonly id: string;
|
|
17725
|
+
}
|
|
17726
|
+
/**
|
|
17727
|
+
* Request parameters for getNavigationById operation in NavigationApi.
|
|
17728
|
+
* @export
|
|
17729
|
+
* @interface NavigationApiGetNavigationByIdRequest
|
|
17730
|
+
*/
|
|
17731
|
+
export interface NavigationApiGetNavigationByIdRequest {
|
|
17732
|
+
/**
|
|
17733
|
+
*
|
|
17734
|
+
* @type {string}
|
|
17735
|
+
* @memberof NavigationApiGetNavigationById
|
|
17736
|
+
*/
|
|
17737
|
+
readonly id: string;
|
|
17738
|
+
}
|
|
17739
|
+
/**
|
|
17740
|
+
* Request parameters for getNavigations operation in NavigationApi.
|
|
17741
|
+
* @export
|
|
17742
|
+
* @interface NavigationApiGetNavigationsRequest
|
|
17743
|
+
*/
|
|
17744
|
+
export interface NavigationApiGetNavigationsRequest {
|
|
17745
|
+
/**
|
|
17746
|
+
*
|
|
17747
|
+
* @type {string}
|
|
17748
|
+
* @memberof NavigationApiGetNavigations
|
|
17749
|
+
*/
|
|
17750
|
+
readonly companyId: string;
|
|
17751
|
+
/**
|
|
17752
|
+
*
|
|
17753
|
+
* @type {number}
|
|
17754
|
+
* @memberof NavigationApiGetNavigations
|
|
17755
|
+
*/
|
|
17756
|
+
readonly page?: number;
|
|
17757
|
+
/**
|
|
17758
|
+
*
|
|
17759
|
+
* @type {number}
|
|
17760
|
+
* @memberof NavigationApiGetNavigations
|
|
17761
|
+
*/
|
|
17762
|
+
readonly itemsPerPage?: number;
|
|
17763
|
+
/**
|
|
17764
|
+
*
|
|
17765
|
+
* @type {string}
|
|
17766
|
+
* @memberof NavigationApiGetNavigations
|
|
17767
|
+
*/
|
|
17768
|
+
readonly search?: string;
|
|
17769
|
+
/**
|
|
17770
|
+
*
|
|
17771
|
+
* @type {string}
|
|
17772
|
+
* @memberof NavigationApiGetNavigations
|
|
17773
|
+
*/
|
|
17774
|
+
readonly startDate?: string;
|
|
17775
|
+
/**
|
|
17776
|
+
*
|
|
17777
|
+
* @type {string}
|
|
17778
|
+
* @memberof NavigationApiGetNavigations
|
|
17779
|
+
*/
|
|
17780
|
+
readonly endDate?: string;
|
|
17781
|
+
/**
|
|
17782
|
+
*
|
|
17783
|
+
* @type {'createdAt' | 'updatedAt'}
|
|
17784
|
+
* @memberof NavigationApiGetNavigations
|
|
17785
|
+
*/
|
|
17786
|
+
readonly dateField?: GetNavigationsDateFieldEnum;
|
|
17787
|
+
/**
|
|
17788
|
+
*
|
|
17789
|
+
* @type {OrderEnum}
|
|
17790
|
+
* @memberof NavigationApiGetNavigations
|
|
17791
|
+
*/
|
|
17792
|
+
readonly order?: OrderEnum;
|
|
17793
|
+
/**
|
|
17794
|
+
*
|
|
17795
|
+
* @type {string}
|
|
17796
|
+
* @memberof NavigationApiGetNavigations
|
|
17797
|
+
*/
|
|
17798
|
+
readonly sort?: string;
|
|
17799
|
+
}
|
|
17800
|
+
/**
|
|
17801
|
+
* Request parameters for patchNavigation operation in NavigationApi.
|
|
17802
|
+
* @export
|
|
17803
|
+
* @interface NavigationApiPatchNavigationRequest
|
|
17804
|
+
*/
|
|
17805
|
+
export interface NavigationApiPatchNavigationRequest {
|
|
17806
|
+
/**
|
|
17807
|
+
*
|
|
17808
|
+
* @type {string}
|
|
17809
|
+
* @memberof NavigationApiPatchNavigation
|
|
17810
|
+
*/
|
|
17811
|
+
readonly id: string;
|
|
17812
|
+
/**
|
|
17813
|
+
*
|
|
17814
|
+
* @type {INavigationPostRequest}
|
|
17815
|
+
* @memberof NavigationApiPatchNavigation
|
|
17816
|
+
*/
|
|
17817
|
+
readonly iNavigationPostRequest: INavigationPostRequest;
|
|
17818
|
+
}
|
|
17819
|
+
/**
|
|
17820
|
+
* NavigationApi - object-oriented interface
|
|
17821
|
+
* @export
|
|
17822
|
+
* @class NavigationApi
|
|
17823
|
+
* @extends {BaseAPI}
|
|
17824
|
+
*/
|
|
17825
|
+
export declare class NavigationApi extends BaseAPI {
|
|
17826
|
+
/**
|
|
17827
|
+
*
|
|
17828
|
+
* @param {NavigationApiCreateNavigationRequest} requestParameters Request parameters.
|
|
17829
|
+
* @param {*} [options] Override http request option.
|
|
17830
|
+
* @throws {RequiredError}
|
|
17831
|
+
* @memberof NavigationApi
|
|
17832
|
+
*/
|
|
17833
|
+
createNavigation(requestParameters: NavigationApiCreateNavigationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<INavigationResponse, any>>;
|
|
17834
|
+
/**
|
|
17835
|
+
*
|
|
17836
|
+
* @param {NavigationApiDeleteNavigationRequest} requestParameters Request parameters.
|
|
17837
|
+
* @param {*} [options] Override http request option.
|
|
17838
|
+
* @throws {RequiredError}
|
|
17839
|
+
* @memberof NavigationApi
|
|
17840
|
+
*/
|
|
17841
|
+
deleteNavigation(requestParameters: NavigationApiDeleteNavigationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
17842
|
+
/**
|
|
17843
|
+
*
|
|
17844
|
+
* @param {NavigationApiGetNavigationByIdRequest} requestParameters Request parameters.
|
|
17845
|
+
* @param {*} [options] Override http request option.
|
|
17846
|
+
* @throws {RequiredError}
|
|
17847
|
+
* @memberof NavigationApi
|
|
17848
|
+
*/
|
|
17849
|
+
getNavigationById(requestParameters: NavigationApiGetNavigationByIdRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<INavigationResponse, any>>;
|
|
17850
|
+
/**
|
|
17851
|
+
*
|
|
17852
|
+
* @param {NavigationApiGetNavigationsRequest} requestParameters Request parameters.
|
|
17853
|
+
* @param {*} [options] Override http request option.
|
|
17854
|
+
* @throws {RequiredError}
|
|
17855
|
+
* @memberof NavigationApi
|
|
17856
|
+
*/
|
|
17857
|
+
getNavigations(requestParameters: NavigationApiGetNavigationsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<INavigationsResponse, any>>;
|
|
17858
|
+
/**
|
|
17859
|
+
*
|
|
17860
|
+
* @param {NavigationApiPatchNavigationRequest} requestParameters Request parameters.
|
|
17861
|
+
* @param {*} [options] Override http request option.
|
|
17862
|
+
* @throws {RequiredError}
|
|
17863
|
+
* @memberof NavigationApi
|
|
17864
|
+
*/
|
|
17865
|
+
patchNavigation(requestParameters: NavigationApiPatchNavigationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<INavigationResponse, any>>;
|
|
17866
|
+
}
|
|
17867
|
+
/**
|
|
17868
|
+
* @export
|
|
17869
|
+
*/
|
|
17870
|
+
export declare const GetNavigationsDateFieldEnum: {
|
|
17871
|
+
readonly CREATED_AT: "createdAt";
|
|
17872
|
+
readonly UPDATED_AT: "updatedAt";
|
|
17873
|
+
};
|
|
17874
|
+
export type GetNavigationsDateFieldEnum = typeof GetNavigationsDateFieldEnum[keyof typeof GetNavigationsDateFieldEnum];
|
|
17408
17875
|
/**
|
|
17409
17876
|
* NotificationApi - axios parameter creator
|
|
17410
17877
|
* @export
|