ch-admin-api-client-typescript 5.30.26 → 5.30.38
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/lib/api/appointments-api.d.ts +69 -3
- package/lib/api/appointments-api.d.ts.map +1 -1
- package/lib/api/appointments-api.js +101 -6
- package/lib/api/hospitals-api.d.ts +313 -0
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.js +478 -0
- package/lib/api/search-api.d.ts +55 -0
- package/lib/api/search-api.d.ts.map +1 -1
- package/lib/api/search-api.js +93 -0
- package/lib/api.d.ts +0 -1
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +0 -1
- package/lib/models/appointment-status.d.ts +1 -0
- package/lib/models/appointment-status.d.ts.map +1 -1
- package/lib/models/appointment-status.js +1 -0
- package/lib/models/cancel-appointment-command.d.ts +33 -0
- package/lib/models/cancel-appointment-command.d.ts.map +1 -0
- package/lib/models/cancel-appointment-command.js +15 -0
- package/lib/models/header-navigation-item-model.d.ts +20 -8
- package/lib/models/header-navigation-item-model.d.ts.map +1 -1
- package/lib/models/index.d.ts +2 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +2 -0
- package/lib/models/reschedule-appointment-command.d.ts +37 -0
- package/lib/models/reschedule-appointment-command.d.ts.map +1 -0
- package/lib/models/reschedule-appointment-command.js +15 -0
- package/lib/models/save-header-navigation-item-model.d.ts +15 -3
- package/lib/models/save-header-navigation-item-model.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +2 -1
- package/src/api/appointments-api.ts +121 -6
- package/src/api/hospitals-api.ts +546 -0
- package/src/api/search-api.ts +104 -0
- package/src/api.ts +0 -1
- package/src/models/appointment-status.ts +1 -0
- package/src/models/cancel-appointment-command.ts +42 -0
- package/src/models/header-navigation-item-model.ts +20 -8
- package/src/models/index.ts +2 -0
- package/src/models/reschedule-appointment-command.ts +42 -0
- package/src/models/save-header-navigation-item-model.ts +15 -3
- package/lib/api/header-navigations-api.d.ts +0 -309
- package/lib/api/header-navigations-api.d.ts.map +0 -1
- package/lib/api/header-navigations-api.js +0 -579
- package/src/api/header-navigations-api.ts +0 -539
package/src/api/search-api.ts
CHANGED
|
@@ -21,6 +21,8 @@ import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObj
|
|
|
21
21
|
// @ts-ignore
|
|
22
22
|
import { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } from '../base';
|
|
23
23
|
// @ts-ignore
|
|
24
|
+
import { ProblemDetails } from '../models';
|
|
25
|
+
// @ts-ignore
|
|
24
26
|
import { SearchIndexType } from '../models';
|
|
25
27
|
/**
|
|
26
28
|
* SearchApi - axios parameter creator
|
|
@@ -28,6 +30,52 @@ import { SearchIndexType } from '../models';
|
|
|
28
30
|
*/
|
|
29
31
|
export const SearchApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
30
32
|
return {
|
|
33
|
+
/**
|
|
34
|
+
*
|
|
35
|
+
* @summary Upload documents into azure search index. <br>To start uploading from where it left off, enter the current number of documents into skip value.
|
|
36
|
+
* @param {SearchIndexType} selectedIndextype
|
|
37
|
+
* @param {number} [skip] To start uploading from where it left off, enter the current number of documents into skip value.
|
|
38
|
+
* @param {*} [options] Override http request option.
|
|
39
|
+
* @throws {RequiredError}
|
|
40
|
+
*/
|
|
41
|
+
apiV1SearchDocumentsPost: async (selectedIndextype: SearchIndexType, skip?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
42
|
+
// verify required parameter 'selectedIndextype' is not null or undefined
|
|
43
|
+
assertParamExists('apiV1SearchDocumentsPost', 'selectedIndextype', selectedIndextype)
|
|
44
|
+
const localVarPath = `/api/v1/search/documents`;
|
|
45
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
46
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
47
|
+
let baseOptions;
|
|
48
|
+
if (configuration) {
|
|
49
|
+
baseOptions = configuration.baseOptions;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
53
|
+
const localVarHeaderParameter = {} as any;
|
|
54
|
+
const localVarQueryParameter = {} as any;
|
|
55
|
+
|
|
56
|
+
// authentication oauth2 required
|
|
57
|
+
// oauth required
|
|
58
|
+
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["cloudhospital_admin_api"], configuration)
|
|
59
|
+
|
|
60
|
+
if (selectedIndextype !== undefined) {
|
|
61
|
+
localVarQueryParameter['selectedIndextype'] = selectedIndextype;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
if (skip !== undefined) {
|
|
65
|
+
localVarQueryParameter['skip'] = skip;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
71
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
72
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
73
|
+
|
|
74
|
+
return {
|
|
75
|
+
url: toPathString(localVarUrlObj),
|
|
76
|
+
options: localVarRequestOptions,
|
|
77
|
+
};
|
|
78
|
+
},
|
|
31
79
|
/**
|
|
32
80
|
*
|
|
33
81
|
* @summary Recreate Index
|
|
@@ -84,6 +132,18 @@ export const SearchApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
84
132
|
export const SearchApiFp = function(configuration?: Configuration) {
|
|
85
133
|
const localVarAxiosParamCreator = SearchApiAxiosParamCreator(configuration)
|
|
86
134
|
return {
|
|
135
|
+
/**
|
|
136
|
+
*
|
|
137
|
+
* @summary Upload documents into azure search index. <br>To start uploading from where it left off, enter the current number of documents into skip value.
|
|
138
|
+
* @param {SearchIndexType} selectedIndextype
|
|
139
|
+
* @param {number} [skip] To start uploading from where it left off, enter the current number of documents into skip value.
|
|
140
|
+
* @param {*} [options] Override http request option.
|
|
141
|
+
* @throws {RequiredError}
|
|
142
|
+
*/
|
|
143
|
+
async apiV1SearchDocumentsPost(selectedIndextype: SearchIndexType, skip?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>> {
|
|
144
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1SearchDocumentsPost(selectedIndextype, skip, options);
|
|
145
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
146
|
+
},
|
|
87
147
|
/**
|
|
88
148
|
*
|
|
89
149
|
* @summary Recreate Index
|
|
@@ -106,6 +166,17 @@ export const SearchApiFp = function(configuration?: Configuration) {
|
|
|
106
166
|
export const SearchApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
107
167
|
const localVarFp = SearchApiFp(configuration)
|
|
108
168
|
return {
|
|
169
|
+
/**
|
|
170
|
+
*
|
|
171
|
+
* @summary Upload documents into azure search index. <br>To start uploading from where it left off, enter the current number of documents into skip value.
|
|
172
|
+
* @param {SearchIndexType} selectedIndextype
|
|
173
|
+
* @param {number} [skip] To start uploading from where it left off, enter the current number of documents into skip value.
|
|
174
|
+
* @param {*} [options] Override http request option.
|
|
175
|
+
* @throws {RequiredError}
|
|
176
|
+
*/
|
|
177
|
+
apiV1SearchDocumentsPost(selectedIndextype: SearchIndexType, skip?: number, options?: any): AxiosPromise<string> {
|
|
178
|
+
return localVarFp.apiV1SearchDocumentsPost(selectedIndextype, skip, options).then((request) => request(axios, basePath));
|
|
179
|
+
},
|
|
109
180
|
/**
|
|
110
181
|
*
|
|
111
182
|
* @summary Recreate Index
|
|
@@ -120,6 +191,27 @@ export const SearchApiFactory = function (configuration?: Configuration, basePat
|
|
|
120
191
|
};
|
|
121
192
|
};
|
|
122
193
|
|
|
194
|
+
/**
|
|
195
|
+
* Request parameters for apiV1SearchDocumentsPost operation in SearchApi.
|
|
196
|
+
* @export
|
|
197
|
+
* @interface SearchApiApiV1SearchDocumentsPostRequest
|
|
198
|
+
*/
|
|
199
|
+
export interface SearchApiApiV1SearchDocumentsPostRequest {
|
|
200
|
+
/**
|
|
201
|
+
*
|
|
202
|
+
* @type {SearchIndexType}
|
|
203
|
+
* @memberof SearchApiApiV1SearchDocumentsPost
|
|
204
|
+
*/
|
|
205
|
+
readonly selectedIndextype: SearchIndexType
|
|
206
|
+
|
|
207
|
+
/**
|
|
208
|
+
* To start uploading from where it left off, enter the current number of documents into skip value.
|
|
209
|
+
* @type {number}
|
|
210
|
+
* @memberof SearchApiApiV1SearchDocumentsPost
|
|
211
|
+
*/
|
|
212
|
+
readonly skip?: number
|
|
213
|
+
}
|
|
214
|
+
|
|
123
215
|
/**
|
|
124
216
|
* Request parameters for apiV1SearchRecreatePost operation in SearchApi.
|
|
125
217
|
* @export
|
|
@@ -148,6 +240,18 @@ export interface SearchApiApiV1SearchRecreatePostRequest {
|
|
|
148
240
|
* @extends {BaseAPI}
|
|
149
241
|
*/
|
|
150
242
|
export class SearchApi extends BaseAPI {
|
|
243
|
+
/**
|
|
244
|
+
*
|
|
245
|
+
* @summary Upload documents into azure search index. <br>To start uploading from where it left off, enter the current number of documents into skip value.
|
|
246
|
+
* @param {SearchApiApiV1SearchDocumentsPostRequest} requestParameters Request parameters.
|
|
247
|
+
* @param {*} [options] Override http request option.
|
|
248
|
+
* @throws {RequiredError}
|
|
249
|
+
* @memberof SearchApi
|
|
250
|
+
*/
|
|
251
|
+
public apiV1SearchDocumentsPost(requestParameters: SearchApiApiV1SearchDocumentsPostRequest, options?: AxiosRequestConfig) {
|
|
252
|
+
return SearchApiFp(this.configuration).apiV1SearchDocumentsPost(requestParameters.selectedIndextype, requestParameters.skip, options).then((request) => request(this.axios, this.basePath));
|
|
253
|
+
}
|
|
254
|
+
|
|
151
255
|
/**
|
|
152
256
|
*
|
|
153
257
|
* @summary Recreate Index
|
package/src/api.ts
CHANGED
|
@@ -39,7 +39,6 @@ export * from './api/faq-categories-api';
|
|
|
39
39
|
export * from './api/faqs-api';
|
|
40
40
|
export * from './api/grades-api';
|
|
41
41
|
export * from './api/group-channels-api';
|
|
42
|
-
export * from './api/header-navigations-api';
|
|
43
42
|
export * from './api/hospital-branches-api';
|
|
44
43
|
export * from './api/hospital-groups-api';
|
|
45
44
|
export * from './api/hospitals-api';
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* CloudHospital Admin Api
|
|
5
|
+
* CloudHospital application with Swagger, Swashbuckle, and API versioning.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1
|
|
8
|
+
* Contact: developer@icloudhospital.com
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import { AppointmentRefundBankTransferModel } from './appointment-refund-bank-transfer-model';
|
|
19
|
+
// May contain unused imports in some cases
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
import { AppointmentRefundUpiModel } from './appointment-refund-upi-model';
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @export
|
|
26
|
+
* @interface CancelAppointmentCommand
|
|
27
|
+
*/
|
|
28
|
+
export interface CancelAppointmentCommand {
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {AppointmentRefundBankTransferModel}
|
|
32
|
+
* @memberof CancelAppointmentCommand
|
|
33
|
+
*/
|
|
34
|
+
'refundBankTransfer'?: AppointmentRefundBankTransferModel;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {AppointmentRefundUpiModel}
|
|
38
|
+
* @memberof CancelAppointmentCommand
|
|
39
|
+
*/
|
|
40
|
+
'refundUpi'?: AppointmentRefundUpiModel;
|
|
41
|
+
}
|
|
42
|
+
|
|
@@ -25,42 +25,54 @@ export interface HeaderNavigationItemModel {
|
|
|
25
25
|
* @type {string}
|
|
26
26
|
* @memberof HeaderNavigationItemModel
|
|
27
27
|
*/
|
|
28
|
-
'
|
|
28
|
+
'name'?: string | null;
|
|
29
29
|
/**
|
|
30
30
|
*
|
|
31
31
|
* @type {string}
|
|
32
32
|
* @memberof HeaderNavigationItemModel
|
|
33
33
|
*/
|
|
34
|
-
'
|
|
34
|
+
'url'?: string | null;
|
|
35
35
|
/**
|
|
36
36
|
*
|
|
37
37
|
* @type {string}
|
|
38
38
|
* @memberof HeaderNavigationItemModel
|
|
39
39
|
*/
|
|
40
|
-
'
|
|
40
|
+
'description'?: string | null;
|
|
41
41
|
/**
|
|
42
42
|
*
|
|
43
|
-
* @type {
|
|
43
|
+
* @type {string}
|
|
44
44
|
* @memberof HeaderNavigationItemModel
|
|
45
45
|
*/
|
|
46
|
-
'
|
|
46
|
+
'thumbnailUrl'?: string | null;
|
|
47
47
|
/**
|
|
48
48
|
*
|
|
49
49
|
* @type {number}
|
|
50
50
|
* @memberof HeaderNavigationItemModel
|
|
51
51
|
*/
|
|
52
52
|
'order'?: number;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {Array<HeaderNavigationItemModel>}
|
|
56
|
+
* @memberof HeaderNavigationItemModel
|
|
57
|
+
*/
|
|
58
|
+
'subItems'?: Array<HeaderNavigationItemModel> | null;
|
|
53
59
|
/**
|
|
54
60
|
*
|
|
55
61
|
* @type {string}
|
|
56
62
|
* @memberof HeaderNavigationItemModel
|
|
57
63
|
*/
|
|
58
|
-
'
|
|
64
|
+
'id'?: string;
|
|
59
65
|
/**
|
|
60
66
|
*
|
|
61
|
-
* @type {
|
|
67
|
+
* @type {number}
|
|
62
68
|
* @memberof HeaderNavigationItemModel
|
|
63
69
|
*/
|
|
64
|
-
'
|
|
70
|
+
'level'?: number;
|
|
71
|
+
/**
|
|
72
|
+
*
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof HeaderNavigationItemModel
|
|
75
|
+
*/
|
|
76
|
+
'parentId'?: string | null;
|
|
65
77
|
}
|
|
66
78
|
|
package/src/models/index.ts
CHANGED
|
@@ -69,6 +69,7 @@ export * from './call-history-language-statistics-model';
|
|
|
69
69
|
export * from './call-history-model';
|
|
70
70
|
export * from './call-statistics-model';
|
|
71
71
|
export * from './call-status';
|
|
72
|
+
export * from './cancel-appointment-command';
|
|
72
73
|
export * from './change-email-command';
|
|
73
74
|
export * from './charge-status';
|
|
74
75
|
export * from './chat-user-model';
|
|
@@ -369,6 +370,7 @@ export * from './refund-policy';
|
|
|
369
370
|
export * from './refund-status';
|
|
370
371
|
export * from './reject-appointment-command';
|
|
371
372
|
export * from './reject-reason';
|
|
373
|
+
export * from './reschedule-appointment-command';
|
|
372
374
|
export * from './review-type';
|
|
373
375
|
export * from './save-appointment-timetable-override-model';
|
|
374
376
|
export * from './save-appointment-timetable-overrides-result-model';
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* CloudHospital Admin Api
|
|
5
|
+
* CloudHospital application with Swagger, Swashbuckle, and API versioning.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1
|
|
8
|
+
* Contact: developer@icloudhospital.com
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface RescheduleAppointmentCommand
|
|
21
|
+
*/
|
|
22
|
+
export interface RescheduleAppointmentCommand {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {Date}
|
|
26
|
+
* @memberof RescheduleAppointmentCommand
|
|
27
|
+
*/
|
|
28
|
+
'confirmedDateStart'?: Date;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {Date}
|
|
32
|
+
* @memberof RescheduleAppointmentCommand
|
|
33
|
+
*/
|
|
34
|
+
'confirmedDateEnd'?: Date;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof RescheduleAppointmentCommand
|
|
39
|
+
*/
|
|
40
|
+
'languageCode'?: string | null;
|
|
41
|
+
}
|
|
42
|
+
|
|
@@ -25,19 +25,25 @@ export interface SaveHeaderNavigationItemModel {
|
|
|
25
25
|
* @type {string}
|
|
26
26
|
* @memberof SaveHeaderNavigationItemModel
|
|
27
27
|
*/
|
|
28
|
-
'
|
|
28
|
+
'name'?: string | null;
|
|
29
29
|
/**
|
|
30
30
|
*
|
|
31
31
|
* @type {string}
|
|
32
32
|
* @memberof SaveHeaderNavigationItemModel
|
|
33
33
|
*/
|
|
34
|
-
'
|
|
34
|
+
'url'?: string | null;
|
|
35
35
|
/**
|
|
36
36
|
*
|
|
37
37
|
* @type {string}
|
|
38
38
|
* @memberof SaveHeaderNavigationItemModel
|
|
39
39
|
*/
|
|
40
|
-
'
|
|
40
|
+
'description'?: string | null;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof SaveHeaderNavigationItemModel
|
|
45
|
+
*/
|
|
46
|
+
'thumbnailUrl'?: string | null;
|
|
41
47
|
/**
|
|
42
48
|
*
|
|
43
49
|
* @type {number}
|
|
@@ -50,5 +56,11 @@ export interface SaveHeaderNavigationItemModel {
|
|
|
50
56
|
* @memberof SaveHeaderNavigationItemModel
|
|
51
57
|
*/
|
|
52
58
|
'subItems'?: Array<SaveHeaderNavigationItemModel> | null;
|
|
59
|
+
/**
|
|
60
|
+
*
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof SaveHeaderNavigationItemModel
|
|
63
|
+
*/
|
|
64
|
+
'id'?: string | null;
|
|
53
65
|
}
|
|
54
66
|
|
|
@@ -1,309 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* CloudHospital Admin Api
|
|
3
|
-
* CloudHospital application with Swagger, Swashbuckle, and API versioning.
|
|
4
|
-
*
|
|
5
|
-
* The version of the OpenAPI document: 1
|
|
6
|
-
* Contact: developer@icloudhospital.com
|
|
7
|
-
*
|
|
8
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
-
* https://openapi-generator.tech
|
|
10
|
-
* Do not edit the class manually.
|
|
11
|
-
*/
|
|
12
|
-
import { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
|
|
13
|
-
import { Configuration } from '../configuration';
|
|
14
|
-
import { RequestArgs, BaseAPI } from '../base';
|
|
15
|
-
import { HeaderNavigationItemModel } from '../models';
|
|
16
|
-
import { SaveHeaderNavigationsCommand } from '../models';
|
|
17
|
-
/**
|
|
18
|
-
* HeaderNavigationsApi - axios parameter creator
|
|
19
|
-
* @export
|
|
20
|
-
*/
|
|
21
|
-
export declare const HeaderNavigationsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
22
|
-
/**
|
|
23
|
-
*
|
|
24
|
-
* @summary Get all HeaderNavigationItems
|
|
25
|
-
* @param {string} languageCode
|
|
26
|
-
* @param {*} [options] Override http request option.
|
|
27
|
-
* @throws {RequiredError}
|
|
28
|
-
*/
|
|
29
|
-
apiV1HeadernavigationsLanguageCodeGet: (languageCode: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
30
|
-
/**
|
|
31
|
-
*
|
|
32
|
-
* @summary Delete HeaderNavigationItem
|
|
33
|
-
* @param {string} languageCode
|
|
34
|
-
* @param {string} id
|
|
35
|
-
* @param {*} [options] Override http request option.
|
|
36
|
-
* @throws {RequiredError}
|
|
37
|
-
*/
|
|
38
|
-
apiV1HeadernavigationsLanguageCodeIdDelete: (languageCode: string, id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
39
|
-
/**
|
|
40
|
-
*
|
|
41
|
-
* @summary Get HeaderNavigationItem by id
|
|
42
|
-
* @param {string} languageCode
|
|
43
|
-
* @param {string} id
|
|
44
|
-
* @param {*} [options] Override http request option.
|
|
45
|
-
* @throws {RequiredError}
|
|
46
|
-
*/
|
|
47
|
-
apiV1HeadernavigationsLanguageCodeIdGet: (languageCode: string, id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
48
|
-
/**
|
|
49
|
-
*
|
|
50
|
-
* @summary Get HeaderNavigationItems by parent id
|
|
51
|
-
* @param {string} languageCode
|
|
52
|
-
* @param {string} parentId
|
|
53
|
-
* @param {*} [options] Override http request option.
|
|
54
|
-
* @throws {RequiredError}
|
|
55
|
-
*/
|
|
56
|
-
apiV1HeadernavigationsLanguageCodeParentIdSubitemsGet: (languageCode: string, parentId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
57
|
-
/**
|
|
58
|
-
*
|
|
59
|
-
* @summary Save HeaderNavigationItem
|
|
60
|
-
* @param {string} languageCode
|
|
61
|
-
* @param {SaveHeaderNavigationsCommand} [saveHeaderNavigationsCommand]
|
|
62
|
-
* @param {*} [options] Override http request option.
|
|
63
|
-
* @throws {RequiredError}
|
|
64
|
-
*/
|
|
65
|
-
apiV1HeadernavigationsLanguageCodePost: (languageCode: string, saveHeaderNavigationsCommand?: SaveHeaderNavigationsCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
66
|
-
};
|
|
67
|
-
/**
|
|
68
|
-
* HeaderNavigationsApi - functional programming interface
|
|
69
|
-
* @export
|
|
70
|
-
*/
|
|
71
|
-
export declare const HeaderNavigationsApiFp: (configuration?: Configuration) => {
|
|
72
|
-
/**
|
|
73
|
-
*
|
|
74
|
-
* @summary Get all HeaderNavigationItems
|
|
75
|
-
* @param {string} languageCode
|
|
76
|
-
* @param {*} [options] Override http request option.
|
|
77
|
-
* @throws {RequiredError}
|
|
78
|
-
*/
|
|
79
|
-
apiV1HeadernavigationsLanguageCodeGet(languageCode: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<HeaderNavigationItemModel>>>;
|
|
80
|
-
/**
|
|
81
|
-
*
|
|
82
|
-
* @summary Delete HeaderNavigationItem
|
|
83
|
-
* @param {string} languageCode
|
|
84
|
-
* @param {string} id
|
|
85
|
-
* @param {*} [options] Override http request option.
|
|
86
|
-
* @throws {RequiredError}
|
|
87
|
-
*/
|
|
88
|
-
apiV1HeadernavigationsLanguageCodeIdDelete(languageCode: string, id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
89
|
-
/**
|
|
90
|
-
*
|
|
91
|
-
* @summary Get HeaderNavigationItem by id
|
|
92
|
-
* @param {string} languageCode
|
|
93
|
-
* @param {string} id
|
|
94
|
-
* @param {*} [options] Override http request option.
|
|
95
|
-
* @throws {RequiredError}
|
|
96
|
-
*/
|
|
97
|
-
apiV1HeadernavigationsLanguageCodeIdGet(languageCode: string, id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HeaderNavigationItemModel>>;
|
|
98
|
-
/**
|
|
99
|
-
*
|
|
100
|
-
* @summary Get HeaderNavigationItems by parent id
|
|
101
|
-
* @param {string} languageCode
|
|
102
|
-
* @param {string} parentId
|
|
103
|
-
* @param {*} [options] Override http request option.
|
|
104
|
-
* @throws {RequiredError}
|
|
105
|
-
*/
|
|
106
|
-
apiV1HeadernavigationsLanguageCodeParentIdSubitemsGet(languageCode: string, parentId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<HeaderNavigationItemModel>>>;
|
|
107
|
-
/**
|
|
108
|
-
*
|
|
109
|
-
* @summary Save HeaderNavigationItem
|
|
110
|
-
* @param {string} languageCode
|
|
111
|
-
* @param {SaveHeaderNavigationsCommand} [saveHeaderNavigationsCommand]
|
|
112
|
-
* @param {*} [options] Override http request option.
|
|
113
|
-
* @throws {RequiredError}
|
|
114
|
-
*/
|
|
115
|
-
apiV1HeadernavigationsLanguageCodePost(languageCode: string, saveHeaderNavigationsCommand?: SaveHeaderNavigationsCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HeaderNavigationItemModel>>;
|
|
116
|
-
};
|
|
117
|
-
/**
|
|
118
|
-
* HeaderNavigationsApi - factory interface
|
|
119
|
-
* @export
|
|
120
|
-
*/
|
|
121
|
-
export declare const HeaderNavigationsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
122
|
-
/**
|
|
123
|
-
*
|
|
124
|
-
* @summary Get all HeaderNavigationItems
|
|
125
|
-
* @param {string} languageCode
|
|
126
|
-
* @param {*} [options] Override http request option.
|
|
127
|
-
* @throws {RequiredError}
|
|
128
|
-
*/
|
|
129
|
-
apiV1HeadernavigationsLanguageCodeGet(languageCode: string, options?: any): AxiosPromise<Array<HeaderNavigationItemModel>>;
|
|
130
|
-
/**
|
|
131
|
-
*
|
|
132
|
-
* @summary Delete HeaderNavigationItem
|
|
133
|
-
* @param {string} languageCode
|
|
134
|
-
* @param {string} id
|
|
135
|
-
* @param {*} [options] Override http request option.
|
|
136
|
-
* @throws {RequiredError}
|
|
137
|
-
*/
|
|
138
|
-
apiV1HeadernavigationsLanguageCodeIdDelete(languageCode: string, id: string, options?: any): AxiosPromise<boolean>;
|
|
139
|
-
/**
|
|
140
|
-
*
|
|
141
|
-
* @summary Get HeaderNavigationItem by id
|
|
142
|
-
* @param {string} languageCode
|
|
143
|
-
* @param {string} id
|
|
144
|
-
* @param {*} [options] Override http request option.
|
|
145
|
-
* @throws {RequiredError}
|
|
146
|
-
*/
|
|
147
|
-
apiV1HeadernavigationsLanguageCodeIdGet(languageCode: string, id: string, options?: any): AxiosPromise<HeaderNavigationItemModel>;
|
|
148
|
-
/**
|
|
149
|
-
*
|
|
150
|
-
* @summary Get HeaderNavigationItems by parent id
|
|
151
|
-
* @param {string} languageCode
|
|
152
|
-
* @param {string} parentId
|
|
153
|
-
* @param {*} [options] Override http request option.
|
|
154
|
-
* @throws {RequiredError}
|
|
155
|
-
*/
|
|
156
|
-
apiV1HeadernavigationsLanguageCodeParentIdSubitemsGet(languageCode: string, parentId: string, options?: any): AxiosPromise<Array<HeaderNavigationItemModel>>;
|
|
157
|
-
/**
|
|
158
|
-
*
|
|
159
|
-
* @summary Save HeaderNavigationItem
|
|
160
|
-
* @param {string} languageCode
|
|
161
|
-
* @param {SaveHeaderNavigationsCommand} [saveHeaderNavigationsCommand]
|
|
162
|
-
* @param {*} [options] Override http request option.
|
|
163
|
-
* @throws {RequiredError}
|
|
164
|
-
*/
|
|
165
|
-
apiV1HeadernavigationsLanguageCodePost(languageCode: string, saveHeaderNavigationsCommand?: SaveHeaderNavigationsCommand, options?: any): AxiosPromise<HeaderNavigationItemModel>;
|
|
166
|
-
};
|
|
167
|
-
/**
|
|
168
|
-
* Request parameters for apiV1HeadernavigationsLanguageCodeGet operation in HeaderNavigationsApi.
|
|
169
|
-
* @export
|
|
170
|
-
* @interface HeaderNavigationsApiApiV1HeadernavigationsLanguageCodeGetRequest
|
|
171
|
-
*/
|
|
172
|
-
export interface HeaderNavigationsApiApiV1HeadernavigationsLanguageCodeGetRequest {
|
|
173
|
-
/**
|
|
174
|
-
*
|
|
175
|
-
* @type {string}
|
|
176
|
-
* @memberof HeaderNavigationsApiApiV1HeadernavigationsLanguageCodeGet
|
|
177
|
-
*/
|
|
178
|
-
readonly languageCode: string;
|
|
179
|
-
}
|
|
180
|
-
/**
|
|
181
|
-
* Request parameters for apiV1HeadernavigationsLanguageCodeIdDelete operation in HeaderNavigationsApi.
|
|
182
|
-
* @export
|
|
183
|
-
* @interface HeaderNavigationsApiApiV1HeadernavigationsLanguageCodeIdDeleteRequest
|
|
184
|
-
*/
|
|
185
|
-
export interface HeaderNavigationsApiApiV1HeadernavigationsLanguageCodeIdDeleteRequest {
|
|
186
|
-
/**
|
|
187
|
-
*
|
|
188
|
-
* @type {string}
|
|
189
|
-
* @memberof HeaderNavigationsApiApiV1HeadernavigationsLanguageCodeIdDelete
|
|
190
|
-
*/
|
|
191
|
-
readonly languageCode: string;
|
|
192
|
-
/**
|
|
193
|
-
*
|
|
194
|
-
* @type {string}
|
|
195
|
-
* @memberof HeaderNavigationsApiApiV1HeadernavigationsLanguageCodeIdDelete
|
|
196
|
-
*/
|
|
197
|
-
readonly id: string;
|
|
198
|
-
}
|
|
199
|
-
/**
|
|
200
|
-
* Request parameters for apiV1HeadernavigationsLanguageCodeIdGet operation in HeaderNavigationsApi.
|
|
201
|
-
* @export
|
|
202
|
-
* @interface HeaderNavigationsApiApiV1HeadernavigationsLanguageCodeIdGetRequest
|
|
203
|
-
*/
|
|
204
|
-
export interface HeaderNavigationsApiApiV1HeadernavigationsLanguageCodeIdGetRequest {
|
|
205
|
-
/**
|
|
206
|
-
*
|
|
207
|
-
* @type {string}
|
|
208
|
-
* @memberof HeaderNavigationsApiApiV1HeadernavigationsLanguageCodeIdGet
|
|
209
|
-
*/
|
|
210
|
-
readonly languageCode: string;
|
|
211
|
-
/**
|
|
212
|
-
*
|
|
213
|
-
* @type {string}
|
|
214
|
-
* @memberof HeaderNavigationsApiApiV1HeadernavigationsLanguageCodeIdGet
|
|
215
|
-
*/
|
|
216
|
-
readonly id: string;
|
|
217
|
-
}
|
|
218
|
-
/**
|
|
219
|
-
* Request parameters for apiV1HeadernavigationsLanguageCodeParentIdSubitemsGet operation in HeaderNavigationsApi.
|
|
220
|
-
* @export
|
|
221
|
-
* @interface HeaderNavigationsApiApiV1HeadernavigationsLanguageCodeParentIdSubitemsGetRequest
|
|
222
|
-
*/
|
|
223
|
-
export interface HeaderNavigationsApiApiV1HeadernavigationsLanguageCodeParentIdSubitemsGetRequest {
|
|
224
|
-
/**
|
|
225
|
-
*
|
|
226
|
-
* @type {string}
|
|
227
|
-
* @memberof HeaderNavigationsApiApiV1HeadernavigationsLanguageCodeParentIdSubitemsGet
|
|
228
|
-
*/
|
|
229
|
-
readonly languageCode: string;
|
|
230
|
-
/**
|
|
231
|
-
*
|
|
232
|
-
* @type {string}
|
|
233
|
-
* @memberof HeaderNavigationsApiApiV1HeadernavigationsLanguageCodeParentIdSubitemsGet
|
|
234
|
-
*/
|
|
235
|
-
readonly parentId: string;
|
|
236
|
-
}
|
|
237
|
-
/**
|
|
238
|
-
* Request parameters for apiV1HeadernavigationsLanguageCodePost operation in HeaderNavigationsApi.
|
|
239
|
-
* @export
|
|
240
|
-
* @interface HeaderNavigationsApiApiV1HeadernavigationsLanguageCodePostRequest
|
|
241
|
-
*/
|
|
242
|
-
export interface HeaderNavigationsApiApiV1HeadernavigationsLanguageCodePostRequest {
|
|
243
|
-
/**
|
|
244
|
-
*
|
|
245
|
-
* @type {string}
|
|
246
|
-
* @memberof HeaderNavigationsApiApiV1HeadernavigationsLanguageCodePost
|
|
247
|
-
*/
|
|
248
|
-
readonly languageCode: string;
|
|
249
|
-
/**
|
|
250
|
-
*
|
|
251
|
-
* @type {SaveHeaderNavigationsCommand}
|
|
252
|
-
* @memberof HeaderNavigationsApiApiV1HeadernavigationsLanguageCodePost
|
|
253
|
-
*/
|
|
254
|
-
readonly saveHeaderNavigationsCommand?: SaveHeaderNavigationsCommand;
|
|
255
|
-
}
|
|
256
|
-
/**
|
|
257
|
-
* HeaderNavigationsApi - object-oriented interface
|
|
258
|
-
* @export
|
|
259
|
-
* @class HeaderNavigationsApi
|
|
260
|
-
* @extends {BaseAPI}
|
|
261
|
-
*/
|
|
262
|
-
export declare class HeaderNavigationsApi extends BaseAPI {
|
|
263
|
-
/**
|
|
264
|
-
*
|
|
265
|
-
* @summary Get all HeaderNavigationItems
|
|
266
|
-
* @param {HeaderNavigationsApiApiV1HeadernavigationsLanguageCodeGetRequest} requestParameters Request parameters.
|
|
267
|
-
* @param {*} [options] Override http request option.
|
|
268
|
-
* @throws {RequiredError}
|
|
269
|
-
* @memberof HeaderNavigationsApi
|
|
270
|
-
*/
|
|
271
|
-
apiV1HeadernavigationsLanguageCodeGet(requestParameters: HeaderNavigationsApiApiV1HeadernavigationsLanguageCodeGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HeaderNavigationItemModel[], any>>;
|
|
272
|
-
/**
|
|
273
|
-
*
|
|
274
|
-
* @summary Delete HeaderNavigationItem
|
|
275
|
-
* @param {HeaderNavigationsApiApiV1HeadernavigationsLanguageCodeIdDeleteRequest} requestParameters Request parameters.
|
|
276
|
-
* @param {*} [options] Override http request option.
|
|
277
|
-
* @throws {RequiredError}
|
|
278
|
-
* @memberof HeaderNavigationsApi
|
|
279
|
-
*/
|
|
280
|
-
apiV1HeadernavigationsLanguageCodeIdDelete(requestParameters: HeaderNavigationsApiApiV1HeadernavigationsLanguageCodeIdDeleteRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
281
|
-
/**
|
|
282
|
-
*
|
|
283
|
-
* @summary Get HeaderNavigationItem by id
|
|
284
|
-
* @param {HeaderNavigationsApiApiV1HeadernavigationsLanguageCodeIdGetRequest} requestParameters Request parameters.
|
|
285
|
-
* @param {*} [options] Override http request option.
|
|
286
|
-
* @throws {RequiredError}
|
|
287
|
-
* @memberof HeaderNavigationsApi
|
|
288
|
-
*/
|
|
289
|
-
apiV1HeadernavigationsLanguageCodeIdGet(requestParameters: HeaderNavigationsApiApiV1HeadernavigationsLanguageCodeIdGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HeaderNavigationItemModel, any>>;
|
|
290
|
-
/**
|
|
291
|
-
*
|
|
292
|
-
* @summary Get HeaderNavigationItems by parent id
|
|
293
|
-
* @param {HeaderNavigationsApiApiV1HeadernavigationsLanguageCodeParentIdSubitemsGetRequest} requestParameters Request parameters.
|
|
294
|
-
* @param {*} [options] Override http request option.
|
|
295
|
-
* @throws {RequiredError}
|
|
296
|
-
* @memberof HeaderNavigationsApi
|
|
297
|
-
*/
|
|
298
|
-
apiV1HeadernavigationsLanguageCodeParentIdSubitemsGet(requestParameters: HeaderNavigationsApiApiV1HeadernavigationsLanguageCodeParentIdSubitemsGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HeaderNavigationItemModel[], any>>;
|
|
299
|
-
/**
|
|
300
|
-
*
|
|
301
|
-
* @summary Save HeaderNavigationItem
|
|
302
|
-
* @param {HeaderNavigationsApiApiV1HeadernavigationsLanguageCodePostRequest} requestParameters Request parameters.
|
|
303
|
-
* @param {*} [options] Override http request option.
|
|
304
|
-
* @throws {RequiredError}
|
|
305
|
-
* @memberof HeaderNavigationsApi
|
|
306
|
-
*/
|
|
307
|
-
apiV1HeadernavigationsLanguageCodePost(requestParameters: HeaderNavigationsApiApiV1HeadernavigationsLanguageCodePostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HeaderNavigationItemModel, any>>;
|
|
308
|
-
}
|
|
309
|
-
//# sourceMappingURL=header-navigations-api.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"header-navigations-api.d.ts","sourceRoot":"","sources":["../../src/api/header-navigations-api.ts"],"names":[],"mappings":"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"}
|