@infisale-client/api 1.3.18 → 1.3.20

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
@@ -4320,7 +4320,7 @@ export interface IContactFormResponseDataInner {
4320
4320
  * @type {string}
4321
4321
  * @memberof IContactFormResponseDataInner
4322
4322
  */
4323
- 'value': string;
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,380 @@ 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 {string} companyId
17582
+ * @param {*} [options] Override http request option.
17583
+ * @throws {RequiredError}
17584
+ */
17585
+ getNavigationById: (id: string, companyId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17586
+ /**
17587
+ *
17588
+ * @param {string} companyId
17589
+ * @param {string} slug
17590
+ * @param {*} [options] Override http request option.
17591
+ * @throws {RequiredError}
17592
+ */
17593
+ getNavigationBySlug: (companyId: string, slug: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17594
+ /**
17595
+ *
17596
+ * @param {string} companyId
17597
+ * @param {number} [page]
17598
+ * @param {number} [itemsPerPage]
17599
+ * @param {string} [search]
17600
+ * @param {string} [startDate]
17601
+ * @param {string} [endDate]
17602
+ * @param {GetNavigationsDateFieldEnum} [dateField]
17603
+ * @param {OrderEnum} [order]
17604
+ * @param {string} [sort]
17605
+ * @param {*} [options] Override http request option.
17606
+ * @throws {RequiredError}
17607
+ */
17608
+ getNavigations: (companyId: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetNavigationsDateFieldEnum, order?: OrderEnum, sort?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17609
+ /**
17610
+ *
17611
+ * @param {string} id
17612
+ * @param {INavigationPostRequest} iNavigationPostRequest
17613
+ * @param {*} [options] Override http request option.
17614
+ * @throws {RequiredError}
17615
+ */
17616
+ patchNavigation: (id: string, iNavigationPostRequest: INavigationPostRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17617
+ };
17618
+ /**
17619
+ * NavigationApi - functional programming interface
17620
+ * @export
17621
+ */
17622
+ export declare const NavigationApiFp: (configuration?: Configuration) => {
17623
+ /**
17624
+ *
17625
+ * @param {INavigationPostRequest} iNavigationPostRequest
17626
+ * @param {*} [options] Override http request option.
17627
+ * @throws {RequiredError}
17628
+ */
17629
+ createNavigation(iNavigationPostRequest: INavigationPostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<INavigationResponse>>;
17630
+ /**
17631
+ *
17632
+ * @param {string} id
17633
+ * @param {*} [options] Override http request option.
17634
+ * @throws {RequiredError}
17635
+ */
17636
+ deleteNavigation(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
17637
+ /**
17638
+ *
17639
+ * @param {string} id
17640
+ * @param {string} companyId
17641
+ * @param {*} [options] Override http request option.
17642
+ * @throws {RequiredError}
17643
+ */
17644
+ getNavigationById(id: string, companyId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<INavigationResponse>>;
17645
+ /**
17646
+ *
17647
+ * @param {string} companyId
17648
+ * @param {string} slug
17649
+ * @param {*} [options] Override http request option.
17650
+ * @throws {RequiredError}
17651
+ */
17652
+ getNavigationBySlug(companyId: string, slug: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<INavigationResponse>>;
17653
+ /**
17654
+ *
17655
+ * @param {string} companyId
17656
+ * @param {number} [page]
17657
+ * @param {number} [itemsPerPage]
17658
+ * @param {string} [search]
17659
+ * @param {string} [startDate]
17660
+ * @param {string} [endDate]
17661
+ * @param {GetNavigationsDateFieldEnum} [dateField]
17662
+ * @param {OrderEnum} [order]
17663
+ * @param {string} [sort]
17664
+ * @param {*} [options] Override http request option.
17665
+ * @throws {RequiredError}
17666
+ */
17667
+ 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>>;
17668
+ /**
17669
+ *
17670
+ * @param {string} id
17671
+ * @param {INavigationPostRequest} iNavigationPostRequest
17672
+ * @param {*} [options] Override http request option.
17673
+ * @throws {RequiredError}
17674
+ */
17675
+ patchNavigation(id: string, iNavigationPostRequest: INavigationPostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<INavigationResponse>>;
17676
+ };
17677
+ /**
17678
+ * NavigationApi - factory interface
17679
+ * @export
17680
+ */
17681
+ export declare const NavigationApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
17682
+ /**
17683
+ *
17684
+ * @param {NavigationApiCreateNavigationRequest} requestParameters Request parameters.
17685
+ * @param {*} [options] Override http request option.
17686
+ * @throws {RequiredError}
17687
+ */
17688
+ createNavigation(requestParameters: NavigationApiCreateNavigationRequest, options?: RawAxiosRequestConfig): AxiosPromise<INavigationResponse>;
17689
+ /**
17690
+ *
17691
+ * @param {NavigationApiDeleteNavigationRequest} requestParameters Request parameters.
17692
+ * @param {*} [options] Override http request option.
17693
+ * @throws {RequiredError}
17694
+ */
17695
+ deleteNavigation(requestParameters: NavigationApiDeleteNavigationRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
17696
+ /**
17697
+ *
17698
+ * @param {NavigationApiGetNavigationByIdRequest} requestParameters Request parameters.
17699
+ * @param {*} [options] Override http request option.
17700
+ * @throws {RequiredError}
17701
+ */
17702
+ getNavigationById(requestParameters: NavigationApiGetNavigationByIdRequest, options?: RawAxiosRequestConfig): AxiosPromise<INavigationResponse>;
17703
+ /**
17704
+ *
17705
+ * @param {NavigationApiGetNavigationBySlugRequest} requestParameters Request parameters.
17706
+ * @param {*} [options] Override http request option.
17707
+ * @throws {RequiredError}
17708
+ */
17709
+ getNavigationBySlug(requestParameters: NavigationApiGetNavigationBySlugRequest, options?: RawAxiosRequestConfig): AxiosPromise<INavigationResponse>;
17710
+ /**
17711
+ *
17712
+ * @param {NavigationApiGetNavigationsRequest} requestParameters Request parameters.
17713
+ * @param {*} [options] Override http request option.
17714
+ * @throws {RequiredError}
17715
+ */
17716
+ getNavigations(requestParameters: NavigationApiGetNavigationsRequest, options?: RawAxiosRequestConfig): AxiosPromise<INavigationsResponse>;
17717
+ /**
17718
+ *
17719
+ * @param {NavigationApiPatchNavigationRequest} requestParameters Request parameters.
17720
+ * @param {*} [options] Override http request option.
17721
+ * @throws {RequiredError}
17722
+ */
17723
+ patchNavigation(requestParameters: NavigationApiPatchNavigationRequest, options?: RawAxiosRequestConfig): AxiosPromise<INavigationResponse>;
17724
+ };
17725
+ /**
17726
+ * Request parameters for createNavigation operation in NavigationApi.
17727
+ * @export
17728
+ * @interface NavigationApiCreateNavigationRequest
17729
+ */
17730
+ export interface NavigationApiCreateNavigationRequest {
17731
+ /**
17732
+ *
17733
+ * @type {INavigationPostRequest}
17734
+ * @memberof NavigationApiCreateNavigation
17735
+ */
17736
+ readonly iNavigationPostRequest: INavigationPostRequest;
17737
+ }
17738
+ /**
17739
+ * Request parameters for deleteNavigation operation in NavigationApi.
17740
+ * @export
17741
+ * @interface NavigationApiDeleteNavigationRequest
17742
+ */
17743
+ export interface NavigationApiDeleteNavigationRequest {
17744
+ /**
17745
+ *
17746
+ * @type {string}
17747
+ * @memberof NavigationApiDeleteNavigation
17748
+ */
17749
+ readonly id: string;
17750
+ }
17751
+ /**
17752
+ * Request parameters for getNavigationById operation in NavigationApi.
17753
+ * @export
17754
+ * @interface NavigationApiGetNavigationByIdRequest
17755
+ */
17756
+ export interface NavigationApiGetNavigationByIdRequest {
17757
+ /**
17758
+ *
17759
+ * @type {string}
17760
+ * @memberof NavigationApiGetNavigationById
17761
+ */
17762
+ readonly id: string;
17763
+ /**
17764
+ *
17765
+ * @type {string}
17766
+ * @memberof NavigationApiGetNavigationById
17767
+ */
17768
+ readonly companyId: string;
17769
+ }
17770
+ /**
17771
+ * Request parameters for getNavigationBySlug operation in NavigationApi.
17772
+ * @export
17773
+ * @interface NavigationApiGetNavigationBySlugRequest
17774
+ */
17775
+ export interface NavigationApiGetNavigationBySlugRequest {
17776
+ /**
17777
+ *
17778
+ * @type {string}
17779
+ * @memberof NavigationApiGetNavigationBySlug
17780
+ */
17781
+ readonly companyId: string;
17782
+ /**
17783
+ *
17784
+ * @type {string}
17785
+ * @memberof NavigationApiGetNavigationBySlug
17786
+ */
17787
+ readonly slug: string;
17788
+ }
17789
+ /**
17790
+ * Request parameters for getNavigations operation in NavigationApi.
17791
+ * @export
17792
+ * @interface NavigationApiGetNavigationsRequest
17793
+ */
17794
+ export interface NavigationApiGetNavigationsRequest {
17795
+ /**
17796
+ *
17797
+ * @type {string}
17798
+ * @memberof NavigationApiGetNavigations
17799
+ */
17800
+ readonly companyId: string;
17801
+ /**
17802
+ *
17803
+ * @type {number}
17804
+ * @memberof NavigationApiGetNavigations
17805
+ */
17806
+ readonly page?: number;
17807
+ /**
17808
+ *
17809
+ * @type {number}
17810
+ * @memberof NavigationApiGetNavigations
17811
+ */
17812
+ readonly itemsPerPage?: number;
17813
+ /**
17814
+ *
17815
+ * @type {string}
17816
+ * @memberof NavigationApiGetNavigations
17817
+ */
17818
+ readonly search?: string;
17819
+ /**
17820
+ *
17821
+ * @type {string}
17822
+ * @memberof NavigationApiGetNavigations
17823
+ */
17824
+ readonly startDate?: string;
17825
+ /**
17826
+ *
17827
+ * @type {string}
17828
+ * @memberof NavigationApiGetNavigations
17829
+ */
17830
+ readonly endDate?: string;
17831
+ /**
17832
+ *
17833
+ * @type {'createdAt' | 'updatedAt'}
17834
+ * @memberof NavigationApiGetNavigations
17835
+ */
17836
+ readonly dateField?: GetNavigationsDateFieldEnum;
17837
+ /**
17838
+ *
17839
+ * @type {OrderEnum}
17840
+ * @memberof NavigationApiGetNavigations
17841
+ */
17842
+ readonly order?: OrderEnum;
17843
+ /**
17844
+ *
17845
+ * @type {string}
17846
+ * @memberof NavigationApiGetNavigations
17847
+ */
17848
+ readonly sort?: string;
17849
+ }
17850
+ /**
17851
+ * Request parameters for patchNavigation operation in NavigationApi.
17852
+ * @export
17853
+ * @interface NavigationApiPatchNavigationRequest
17854
+ */
17855
+ export interface NavigationApiPatchNavigationRequest {
17856
+ /**
17857
+ *
17858
+ * @type {string}
17859
+ * @memberof NavigationApiPatchNavigation
17860
+ */
17861
+ readonly id: string;
17862
+ /**
17863
+ *
17864
+ * @type {INavigationPostRequest}
17865
+ * @memberof NavigationApiPatchNavigation
17866
+ */
17867
+ readonly iNavigationPostRequest: INavigationPostRequest;
17868
+ }
17869
+ /**
17870
+ * NavigationApi - object-oriented interface
17871
+ * @export
17872
+ * @class NavigationApi
17873
+ * @extends {BaseAPI}
17874
+ */
17875
+ export declare class NavigationApi extends BaseAPI {
17876
+ /**
17877
+ *
17878
+ * @param {NavigationApiCreateNavigationRequest} requestParameters Request parameters.
17879
+ * @param {*} [options] Override http request option.
17880
+ * @throws {RequiredError}
17881
+ * @memberof NavigationApi
17882
+ */
17883
+ createNavigation(requestParameters: NavigationApiCreateNavigationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<INavigationResponse, any>>;
17884
+ /**
17885
+ *
17886
+ * @param {NavigationApiDeleteNavigationRequest} requestParameters Request parameters.
17887
+ * @param {*} [options] Override http request option.
17888
+ * @throws {RequiredError}
17889
+ * @memberof NavigationApi
17890
+ */
17891
+ deleteNavigation(requestParameters: NavigationApiDeleteNavigationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
17892
+ /**
17893
+ *
17894
+ * @param {NavigationApiGetNavigationByIdRequest} requestParameters Request parameters.
17895
+ * @param {*} [options] Override http request option.
17896
+ * @throws {RequiredError}
17897
+ * @memberof NavigationApi
17898
+ */
17899
+ getNavigationById(requestParameters: NavigationApiGetNavigationByIdRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<INavigationResponse, any>>;
17900
+ /**
17901
+ *
17902
+ * @param {NavigationApiGetNavigationBySlugRequest} requestParameters Request parameters.
17903
+ * @param {*} [options] Override http request option.
17904
+ * @throws {RequiredError}
17905
+ * @memberof NavigationApi
17906
+ */
17907
+ getNavigationBySlug(requestParameters: NavigationApiGetNavigationBySlugRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<INavigationResponse, any>>;
17908
+ /**
17909
+ *
17910
+ * @param {NavigationApiGetNavigationsRequest} requestParameters Request parameters.
17911
+ * @param {*} [options] Override http request option.
17912
+ * @throws {RequiredError}
17913
+ * @memberof NavigationApi
17914
+ */
17915
+ getNavigations(requestParameters: NavigationApiGetNavigationsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<INavigationsResponse, any>>;
17916
+ /**
17917
+ *
17918
+ * @param {NavigationApiPatchNavigationRequest} requestParameters Request parameters.
17919
+ * @param {*} [options] Override http request option.
17920
+ * @throws {RequiredError}
17921
+ * @memberof NavigationApi
17922
+ */
17923
+ patchNavigation(requestParameters: NavigationApiPatchNavigationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<INavigationResponse, any>>;
17924
+ }
17925
+ /**
17926
+ * @export
17927
+ */
17928
+ export declare const GetNavigationsDateFieldEnum: {
17929
+ readonly CREATED_AT: "createdAt";
17930
+ readonly UPDATED_AT: "updatedAt";
17931
+ };
17932
+ export type GetNavigationsDateFieldEnum = typeof GetNavigationsDateFieldEnum[keyof typeof GetNavigationsDateFieldEnum];
17285
17933
  /**
17286
17934
  * NotificationApi - axios parameter creator
17287
17935
  * @export