@infisale-client/api 1.3.18 → 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 +591 -1
- package/dist/api/api.js +417 -4
- package/dist/api/api.mjs +409 -0
- package/package.json +2 -2
package/dist/api/api.d.ts
CHANGED
|
@@ -4320,7 +4320,7 @@ export interface IContactFormResponseDataInner {
|
|
|
4320
4320
|
* @type {string}
|
|
4321
4321
|
* @memberof IContactFormResponseDataInner
|
|
4322
4322
|
*/
|
|
4323
|
-
'value'
|
|
4323
|
+
'value'?: string;
|
|
4324
4324
|
/**
|
|
4325
4325
|
*
|
|
4326
4326
|
* @type {string}
|
|
@@ -5005,6 +5005,232 @@ export declare const IMyOrderCollectionQueryParamsDateFieldEnum: {
|
|
|
5005
5005
|
readonly UPDATED_AT: "updatedAt";
|
|
5006
5006
|
};
|
|
5007
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
|
+
}
|
|
5008
5234
|
/**
|
|
5009
5235
|
*
|
|
5010
5236
|
* @export
|
|
@@ -9147,6 +9373,23 @@ export declare const LanguageEnum: {
|
|
|
9147
9373
|
readonly DE: "de";
|
|
9148
9374
|
};
|
|
9149
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];
|
|
9150
9393
|
/**
|
|
9151
9394
|
*
|
|
9152
9395
|
* @export
|
|
@@ -10338,6 +10581,37 @@ export interface PickIContactFormExcludeKeyofIContactFormKeyofMongoResponseOrCom
|
|
|
10338
10581
|
*/
|
|
10339
10582
|
'data': Array<IContactFormResponseDataInner>;
|
|
10340
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
|
+
}
|
|
10341
10615
|
/**
|
|
10342
10616
|
* From T, pick a set of properties whose keys are in the union K
|
|
10343
10617
|
* @export
|
|
@@ -17282,6 +17556,322 @@ export declare const GetFilesDateFieldEnum: {
|
|
|
17282
17556
|
readonly UPDATED_AT: "updatedAt";
|
|
17283
17557
|
};
|
|
17284
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];
|
|
17285
17875
|
/**
|
|
17286
17876
|
* NotificationApi - axios parameter creator
|
|
17287
17877
|
* @export
|