ch-admin-api-client-typescript 5.55.13 → 5.56.1
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/countries-api.d.ts +28 -28
- package/lib/api/countries-api.js +28 -28
- package/lib/api/grades-api.d.ts +8 -8
- package/lib/api/grades-api.js +8 -8
- package/lib/api/languages-api.d.ts +20 -20
- package/lib/api/languages-api.js +20 -20
- package/lib/api/specialties-api.d.ts +24 -24
- package/lib/api/specialties-api.js +24 -24
- package/lib/api/specialty-types-api.d.ts +24 -24
- package/lib/api/specialty-types-api.js +24 -24
- package/lib/api/tags-api.d.ts +16 -16
- package/lib/api/tags-api.js +16 -16
- package/lib/api/translation-api.d.ts +4 -4
- package/lib/api/translation-api.d.ts.map +1 -1
- package/lib/api/translation-api.js +4 -4
- package/lib/api/users-api.d.ts +8 -8
- package/lib/api/users-api.js +8 -8
- package/lib/api.d.ts +0 -1
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +0 -1
- package/lib/models/index.d.ts +0 -6
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +0 -6
- package/package.json +1 -1
- package/lib/api/email-marketings-api.d.ts +0 -358
- package/lib/api/email-marketings-api.d.ts.map +0 -1
- package/lib/api/email-marketings-api.js +0 -699
- package/lib/models/create-template-version-command.d.ts +0 -37
- package/lib/models/create-template-version-command.d.ts.map +0 -1
- package/lib/models/create-template-version-command.js +0 -15
- package/lib/models/send-template-version-command.d.ts +0 -25
- package/lib/models/send-template-version-command.d.ts.map +0 -1
- package/lib/models/send-template-version-command.js +0 -15
- package/lib/models/template-version-item-model.d.ts +0 -67
- package/lib/models/template-version-item-model.d.ts.map +0 -1
- package/lib/models/template-version-item-model.js +0 -15
- package/lib/models/template-version-model.d.ts +0 -67
- package/lib/models/template-version-model.d.ts.map +0 -1
- package/lib/models/template-version-model.js +0 -15
- package/lib/models/template-versions-model.d.ts +0 -33
- package/lib/models/template-versions-model.d.ts.map +0 -1
- package/lib/models/template-versions-model.js +0 -15
- package/lib/models/update-template-version-command.d.ts +0 -37
- package/lib/models/update-template-version-command.d.ts.map +0 -1
- package/lib/models/update-template-version-command.js +0 -15
|
@@ -23,7 +23,7 @@ import { UpdateLanguageCommand } from '../models';
|
|
|
23
23
|
export declare const LanguagesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
24
24
|
/**
|
|
25
25
|
*
|
|
26
|
-
* @summary (Auth policies:
|
|
26
|
+
* @summary Delete language (Auth policies: RequireManagerRole)
|
|
27
27
|
* @param {string} code
|
|
28
28
|
* @param {*} [options] Override http request option.
|
|
29
29
|
* @throws {RequiredError}
|
|
@@ -31,7 +31,7 @@ export declare const LanguagesApiAxiosParamCreator: (configuration?: Configurati
|
|
|
31
31
|
apiV1LanguagesCodeDelete: (code: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
32
32
|
/**
|
|
33
33
|
*
|
|
34
|
-
* @summary Get Language. (Auth
|
|
34
|
+
* @summary Get Language. (Auth roles: Admin,Manager,ContentManager,PatientManager,LocalManager,Doctor)
|
|
35
35
|
* @param {string} code
|
|
36
36
|
* @param {*} [options] Override http request option.
|
|
37
37
|
* @throws {RequiredError}
|
|
@@ -39,7 +39,7 @@ export declare const LanguagesApiAxiosParamCreator: (configuration?: Configurati
|
|
|
39
39
|
apiV1LanguagesCodeGet: (code: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
40
40
|
/**
|
|
41
41
|
*
|
|
42
|
-
* @summary (Auth policies:
|
|
42
|
+
* @summary Update lanuguage (Auth policies: RequireManagerRole)
|
|
43
43
|
* @param {string} code
|
|
44
44
|
* @param {UpdateLanguageCommand} [updateLanguageCommand]
|
|
45
45
|
* @param {*} [options] Override http request option.
|
|
@@ -48,7 +48,7 @@ export declare const LanguagesApiAxiosParamCreator: (configuration?: Configurati
|
|
|
48
48
|
apiV1LanguagesCodePut: (code: string, updateLanguageCommand?: UpdateLanguageCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
49
49
|
/**
|
|
50
50
|
*
|
|
51
|
-
* @summary Get all Languages. (Auth
|
|
51
|
+
* @summary Get all Languages. (Auth roles: Admin,Manager,ContentManager,PatientManager,LocalManager,Doctor)
|
|
52
52
|
* @param {string} [code]
|
|
53
53
|
* @param {string} [name]
|
|
54
54
|
* @param {string} [description]
|
|
@@ -62,7 +62,7 @@ export declare const LanguagesApiAxiosParamCreator: (configuration?: Configurati
|
|
|
62
62
|
apiV1LanguagesGet: (code?: string, name?: string, description?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
63
63
|
/**
|
|
64
64
|
*
|
|
65
|
-
* @summary (Auth policies:
|
|
65
|
+
* @summary Create language (Auth policies: RequireManagerRole)
|
|
66
66
|
* @param {CreateLanguageCommand} [createLanguageCommand]
|
|
67
67
|
* @param {*} [options] Override http request option.
|
|
68
68
|
* @throws {RequiredError}
|
|
@@ -76,7 +76,7 @@ export declare const LanguagesApiAxiosParamCreator: (configuration?: Configurati
|
|
|
76
76
|
export declare const LanguagesApiFp: (configuration?: Configuration) => {
|
|
77
77
|
/**
|
|
78
78
|
*
|
|
79
|
-
* @summary (Auth policies:
|
|
79
|
+
* @summary Delete language (Auth policies: RequireManagerRole)
|
|
80
80
|
* @param {string} code
|
|
81
81
|
* @param {*} [options] Override http request option.
|
|
82
82
|
* @throws {RequiredError}
|
|
@@ -84,7 +84,7 @@ export declare const LanguagesApiFp: (configuration?: Configuration) => {
|
|
|
84
84
|
apiV1LanguagesCodeDelete(code: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
85
85
|
/**
|
|
86
86
|
*
|
|
87
|
-
* @summary Get Language. (Auth
|
|
87
|
+
* @summary Get Language. (Auth roles: Admin,Manager,ContentManager,PatientManager,LocalManager,Doctor)
|
|
88
88
|
* @param {string} code
|
|
89
89
|
* @param {*} [options] Override http request option.
|
|
90
90
|
* @throws {RequiredError}
|
|
@@ -92,7 +92,7 @@ export declare const LanguagesApiFp: (configuration?: Configuration) => {
|
|
|
92
92
|
apiV1LanguagesCodeGet(code: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LanguageModel>>;
|
|
93
93
|
/**
|
|
94
94
|
*
|
|
95
|
-
* @summary (Auth policies:
|
|
95
|
+
* @summary Update lanuguage (Auth policies: RequireManagerRole)
|
|
96
96
|
* @param {string} code
|
|
97
97
|
* @param {UpdateLanguageCommand} [updateLanguageCommand]
|
|
98
98
|
* @param {*} [options] Override http request option.
|
|
@@ -101,7 +101,7 @@ export declare const LanguagesApiFp: (configuration?: Configuration) => {
|
|
|
101
101
|
apiV1LanguagesCodePut(code: string, updateLanguageCommand?: UpdateLanguageCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LanguageModel>>;
|
|
102
102
|
/**
|
|
103
103
|
*
|
|
104
|
-
* @summary Get all Languages. (Auth
|
|
104
|
+
* @summary Get all Languages. (Auth roles: Admin,Manager,ContentManager,PatientManager,LocalManager,Doctor)
|
|
105
105
|
* @param {string} [code]
|
|
106
106
|
* @param {string} [name]
|
|
107
107
|
* @param {string} [description]
|
|
@@ -115,7 +115,7 @@ export declare const LanguagesApiFp: (configuration?: Configuration) => {
|
|
|
115
115
|
apiV1LanguagesGet(code?: string, name?: string, description?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LanguagesModel>>;
|
|
116
116
|
/**
|
|
117
117
|
*
|
|
118
|
-
* @summary (Auth policies:
|
|
118
|
+
* @summary Create language (Auth policies: RequireManagerRole)
|
|
119
119
|
* @param {CreateLanguageCommand} [createLanguageCommand]
|
|
120
120
|
* @param {*} [options] Override http request option.
|
|
121
121
|
* @throws {RequiredError}
|
|
@@ -129,7 +129,7 @@ export declare const LanguagesApiFp: (configuration?: Configuration) => {
|
|
|
129
129
|
export declare const LanguagesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
130
130
|
/**
|
|
131
131
|
*
|
|
132
|
-
* @summary (Auth policies:
|
|
132
|
+
* @summary Delete language (Auth policies: RequireManagerRole)
|
|
133
133
|
* @param {string} code
|
|
134
134
|
* @param {*} [options] Override http request option.
|
|
135
135
|
* @throws {RequiredError}
|
|
@@ -137,7 +137,7 @@ export declare const LanguagesApiFactory: (configuration?: Configuration, basePa
|
|
|
137
137
|
apiV1LanguagesCodeDelete(code: string, options?: any): AxiosPromise<boolean>;
|
|
138
138
|
/**
|
|
139
139
|
*
|
|
140
|
-
* @summary Get Language. (Auth
|
|
140
|
+
* @summary Get Language. (Auth roles: Admin,Manager,ContentManager,PatientManager,LocalManager,Doctor)
|
|
141
141
|
* @param {string} code
|
|
142
142
|
* @param {*} [options] Override http request option.
|
|
143
143
|
* @throws {RequiredError}
|
|
@@ -145,7 +145,7 @@ export declare const LanguagesApiFactory: (configuration?: Configuration, basePa
|
|
|
145
145
|
apiV1LanguagesCodeGet(code: string, options?: any): AxiosPromise<LanguageModel>;
|
|
146
146
|
/**
|
|
147
147
|
*
|
|
148
|
-
* @summary (Auth policies:
|
|
148
|
+
* @summary Update lanuguage (Auth policies: RequireManagerRole)
|
|
149
149
|
* @param {string} code
|
|
150
150
|
* @param {UpdateLanguageCommand} [updateLanguageCommand]
|
|
151
151
|
* @param {*} [options] Override http request option.
|
|
@@ -154,7 +154,7 @@ export declare const LanguagesApiFactory: (configuration?: Configuration, basePa
|
|
|
154
154
|
apiV1LanguagesCodePut(code: string, updateLanguageCommand?: UpdateLanguageCommand, options?: any): AxiosPromise<LanguageModel>;
|
|
155
155
|
/**
|
|
156
156
|
*
|
|
157
|
-
* @summary Get all Languages. (Auth
|
|
157
|
+
* @summary Get all Languages. (Auth roles: Admin,Manager,ContentManager,PatientManager,LocalManager,Doctor)
|
|
158
158
|
* @param {string} [code]
|
|
159
159
|
* @param {string} [name]
|
|
160
160
|
* @param {string} [description]
|
|
@@ -168,7 +168,7 @@ export declare const LanguagesApiFactory: (configuration?: Configuration, basePa
|
|
|
168
168
|
apiV1LanguagesGet(code?: string, name?: string, description?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<LanguagesModel>;
|
|
169
169
|
/**
|
|
170
170
|
*
|
|
171
|
-
* @summary (Auth policies:
|
|
171
|
+
* @summary Create language (Auth policies: RequireManagerRole)
|
|
172
172
|
* @param {CreateLanguageCommand} [createLanguageCommand]
|
|
173
173
|
* @param {*} [options] Override http request option.
|
|
174
174
|
* @throws {RequiredError}
|
|
@@ -291,7 +291,7 @@ export interface LanguagesApiApiV1LanguagesPostRequest {
|
|
|
291
291
|
export declare class LanguagesApi extends BaseAPI {
|
|
292
292
|
/**
|
|
293
293
|
*
|
|
294
|
-
* @summary (Auth policies:
|
|
294
|
+
* @summary Delete language (Auth policies: RequireManagerRole)
|
|
295
295
|
* @param {LanguagesApiApiV1LanguagesCodeDeleteRequest} requestParameters Request parameters.
|
|
296
296
|
* @param {*} [options] Override http request option.
|
|
297
297
|
* @throws {RequiredError}
|
|
@@ -300,7 +300,7 @@ export declare class LanguagesApi extends BaseAPI {
|
|
|
300
300
|
apiV1LanguagesCodeDelete(requestParameters: LanguagesApiApiV1LanguagesCodeDeleteRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
301
301
|
/**
|
|
302
302
|
*
|
|
303
|
-
* @summary Get Language. (Auth
|
|
303
|
+
* @summary Get Language. (Auth roles: Admin,Manager,ContentManager,PatientManager,LocalManager,Doctor)
|
|
304
304
|
* @param {LanguagesApiApiV1LanguagesCodeGetRequest} requestParameters Request parameters.
|
|
305
305
|
* @param {*} [options] Override http request option.
|
|
306
306
|
* @throws {RequiredError}
|
|
@@ -309,7 +309,7 @@ export declare class LanguagesApi extends BaseAPI {
|
|
|
309
309
|
apiV1LanguagesCodeGet(requestParameters: LanguagesApiApiV1LanguagesCodeGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LanguageModel, any>>;
|
|
310
310
|
/**
|
|
311
311
|
*
|
|
312
|
-
* @summary (Auth policies:
|
|
312
|
+
* @summary Update lanuguage (Auth policies: RequireManagerRole)
|
|
313
313
|
* @param {LanguagesApiApiV1LanguagesCodePutRequest} requestParameters Request parameters.
|
|
314
314
|
* @param {*} [options] Override http request option.
|
|
315
315
|
* @throws {RequiredError}
|
|
@@ -318,7 +318,7 @@ export declare class LanguagesApi extends BaseAPI {
|
|
|
318
318
|
apiV1LanguagesCodePut(requestParameters: LanguagesApiApiV1LanguagesCodePutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LanguageModel, any>>;
|
|
319
319
|
/**
|
|
320
320
|
*
|
|
321
|
-
* @summary Get all Languages. (Auth
|
|
321
|
+
* @summary Get all Languages. (Auth roles: Admin,Manager,ContentManager,PatientManager,LocalManager,Doctor)
|
|
322
322
|
* @param {LanguagesApiApiV1LanguagesGetRequest} requestParameters Request parameters.
|
|
323
323
|
* @param {*} [options] Override http request option.
|
|
324
324
|
* @throws {RequiredError}
|
|
@@ -327,7 +327,7 @@ export declare class LanguagesApi extends BaseAPI {
|
|
|
327
327
|
apiV1LanguagesGet(requestParameters?: LanguagesApiApiV1LanguagesGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LanguagesModel, any>>;
|
|
328
328
|
/**
|
|
329
329
|
*
|
|
330
|
-
* @summary (Auth policies:
|
|
330
|
+
* @summary Create language (Auth policies: RequireManagerRole)
|
|
331
331
|
* @param {LanguagesApiApiV1LanguagesPostRequest} requestParameters Request parameters.
|
|
332
332
|
* @param {*} [options] Override http request option.
|
|
333
333
|
* @throws {RequiredError}
|
package/lib/api/languages-api.js
CHANGED
|
@@ -103,7 +103,7 @@ var LanguagesApiAxiosParamCreator = function (configuration) {
|
|
|
103
103
|
return {
|
|
104
104
|
/**
|
|
105
105
|
*
|
|
106
|
-
* @summary (Auth policies:
|
|
106
|
+
* @summary Delete language (Auth policies: RequireManagerRole)
|
|
107
107
|
* @param {string} code
|
|
108
108
|
* @param {*} [options] Override http request option.
|
|
109
109
|
* @throws {RequiredError}
|
|
@@ -150,7 +150,7 @@ var LanguagesApiAxiosParamCreator = function (configuration) {
|
|
|
150
150
|
},
|
|
151
151
|
/**
|
|
152
152
|
*
|
|
153
|
-
* @summary Get Language. (Auth
|
|
153
|
+
* @summary Get Language. (Auth roles: Admin,Manager,ContentManager,PatientManager,LocalManager,Doctor)
|
|
154
154
|
* @param {string} code
|
|
155
155
|
* @param {*} [options] Override http request option.
|
|
156
156
|
* @throws {RequiredError}
|
|
@@ -197,7 +197,7 @@ var LanguagesApiAxiosParamCreator = function (configuration) {
|
|
|
197
197
|
},
|
|
198
198
|
/**
|
|
199
199
|
*
|
|
200
|
-
* @summary (Auth policies:
|
|
200
|
+
* @summary Update lanuguage (Auth policies: RequireManagerRole)
|
|
201
201
|
* @param {string} code
|
|
202
202
|
* @param {UpdateLanguageCommand} [updateLanguageCommand]
|
|
203
203
|
* @param {*} [options] Override http request option.
|
|
@@ -247,7 +247,7 @@ var LanguagesApiAxiosParamCreator = function (configuration) {
|
|
|
247
247
|
},
|
|
248
248
|
/**
|
|
249
249
|
*
|
|
250
|
-
* @summary Get all Languages. (Auth
|
|
250
|
+
* @summary Get all Languages. (Auth roles: Admin,Manager,ContentManager,PatientManager,LocalManager,Doctor)
|
|
251
251
|
* @param {string} [code]
|
|
252
252
|
* @param {string} [name]
|
|
253
253
|
* @param {string} [description]
|
|
@@ -320,7 +320,7 @@ var LanguagesApiAxiosParamCreator = function (configuration) {
|
|
|
320
320
|
},
|
|
321
321
|
/**
|
|
322
322
|
*
|
|
323
|
-
* @summary (Auth policies:
|
|
323
|
+
* @summary Create language (Auth policies: RequireManagerRole)
|
|
324
324
|
* @param {CreateLanguageCommand} [createLanguageCommand]
|
|
325
325
|
* @param {*} [options] Override http request option.
|
|
326
326
|
* @throws {RequiredError}
|
|
@@ -376,7 +376,7 @@ var LanguagesApiFp = function (configuration) {
|
|
|
376
376
|
return {
|
|
377
377
|
/**
|
|
378
378
|
*
|
|
379
|
-
* @summary (Auth policies:
|
|
379
|
+
* @summary Delete language (Auth policies: RequireManagerRole)
|
|
380
380
|
* @param {string} code
|
|
381
381
|
* @param {*} [options] Override http request option.
|
|
382
382
|
* @throws {RequiredError}
|
|
@@ -396,7 +396,7 @@ var LanguagesApiFp = function (configuration) {
|
|
|
396
396
|
},
|
|
397
397
|
/**
|
|
398
398
|
*
|
|
399
|
-
* @summary Get Language. (Auth
|
|
399
|
+
* @summary Get Language. (Auth roles: Admin,Manager,ContentManager,PatientManager,LocalManager,Doctor)
|
|
400
400
|
* @param {string} code
|
|
401
401
|
* @param {*} [options] Override http request option.
|
|
402
402
|
* @throws {RequiredError}
|
|
@@ -416,7 +416,7 @@ var LanguagesApiFp = function (configuration) {
|
|
|
416
416
|
},
|
|
417
417
|
/**
|
|
418
418
|
*
|
|
419
|
-
* @summary (Auth policies:
|
|
419
|
+
* @summary Update lanuguage (Auth policies: RequireManagerRole)
|
|
420
420
|
* @param {string} code
|
|
421
421
|
* @param {UpdateLanguageCommand} [updateLanguageCommand]
|
|
422
422
|
* @param {*} [options] Override http request option.
|
|
@@ -437,7 +437,7 @@ var LanguagesApiFp = function (configuration) {
|
|
|
437
437
|
},
|
|
438
438
|
/**
|
|
439
439
|
*
|
|
440
|
-
* @summary Get all Languages. (Auth
|
|
440
|
+
* @summary Get all Languages. (Auth roles: Admin,Manager,ContentManager,PatientManager,LocalManager,Doctor)
|
|
441
441
|
* @param {string} [code]
|
|
442
442
|
* @param {string} [name]
|
|
443
443
|
* @param {string} [description]
|
|
@@ -463,7 +463,7 @@ var LanguagesApiFp = function (configuration) {
|
|
|
463
463
|
},
|
|
464
464
|
/**
|
|
465
465
|
*
|
|
466
|
-
* @summary (Auth policies:
|
|
466
|
+
* @summary Create language (Auth policies: RequireManagerRole)
|
|
467
467
|
* @param {CreateLanguageCommand} [createLanguageCommand]
|
|
468
468
|
* @param {*} [options] Override http request option.
|
|
469
469
|
* @throws {RequiredError}
|
|
@@ -493,7 +493,7 @@ var LanguagesApiFactory = function (configuration, basePath, axios) {
|
|
|
493
493
|
return {
|
|
494
494
|
/**
|
|
495
495
|
*
|
|
496
|
-
* @summary (Auth policies:
|
|
496
|
+
* @summary Delete language (Auth policies: RequireManagerRole)
|
|
497
497
|
* @param {string} code
|
|
498
498
|
* @param {*} [options] Override http request option.
|
|
499
499
|
* @throws {RequiredError}
|
|
@@ -503,7 +503,7 @@ var LanguagesApiFactory = function (configuration, basePath, axios) {
|
|
|
503
503
|
},
|
|
504
504
|
/**
|
|
505
505
|
*
|
|
506
|
-
* @summary Get Language. (Auth
|
|
506
|
+
* @summary Get Language. (Auth roles: Admin,Manager,ContentManager,PatientManager,LocalManager,Doctor)
|
|
507
507
|
* @param {string} code
|
|
508
508
|
* @param {*} [options] Override http request option.
|
|
509
509
|
* @throws {RequiredError}
|
|
@@ -513,7 +513,7 @@ var LanguagesApiFactory = function (configuration, basePath, axios) {
|
|
|
513
513
|
},
|
|
514
514
|
/**
|
|
515
515
|
*
|
|
516
|
-
* @summary (Auth policies:
|
|
516
|
+
* @summary Update lanuguage (Auth policies: RequireManagerRole)
|
|
517
517
|
* @param {string} code
|
|
518
518
|
* @param {UpdateLanguageCommand} [updateLanguageCommand]
|
|
519
519
|
* @param {*} [options] Override http request option.
|
|
@@ -524,7 +524,7 @@ var LanguagesApiFactory = function (configuration, basePath, axios) {
|
|
|
524
524
|
},
|
|
525
525
|
/**
|
|
526
526
|
*
|
|
527
|
-
* @summary Get all Languages. (Auth
|
|
527
|
+
* @summary Get all Languages. (Auth roles: Admin,Manager,ContentManager,PatientManager,LocalManager,Doctor)
|
|
528
528
|
* @param {string} [code]
|
|
529
529
|
* @param {string} [name]
|
|
530
530
|
* @param {string} [description]
|
|
@@ -540,7 +540,7 @@ var LanguagesApiFactory = function (configuration, basePath, axios) {
|
|
|
540
540
|
},
|
|
541
541
|
/**
|
|
542
542
|
*
|
|
543
|
-
* @summary (Auth policies:
|
|
543
|
+
* @summary Create language (Auth policies: RequireManagerRole)
|
|
544
544
|
* @param {CreateLanguageCommand} [createLanguageCommand]
|
|
545
545
|
* @param {*} [options] Override http request option.
|
|
546
546
|
* @throws {RequiredError}
|
|
@@ -564,7 +564,7 @@ var LanguagesApi = /** @class */ (function (_super) {
|
|
|
564
564
|
}
|
|
565
565
|
/**
|
|
566
566
|
*
|
|
567
|
-
* @summary (Auth policies:
|
|
567
|
+
* @summary Delete language (Auth policies: RequireManagerRole)
|
|
568
568
|
* @param {LanguagesApiApiV1LanguagesCodeDeleteRequest} requestParameters Request parameters.
|
|
569
569
|
* @param {*} [options] Override http request option.
|
|
570
570
|
* @throws {RequiredError}
|
|
@@ -576,7 +576,7 @@ var LanguagesApi = /** @class */ (function (_super) {
|
|
|
576
576
|
};
|
|
577
577
|
/**
|
|
578
578
|
*
|
|
579
|
-
* @summary Get Language. (Auth
|
|
579
|
+
* @summary Get Language. (Auth roles: Admin,Manager,ContentManager,PatientManager,LocalManager,Doctor)
|
|
580
580
|
* @param {LanguagesApiApiV1LanguagesCodeGetRequest} requestParameters Request parameters.
|
|
581
581
|
* @param {*} [options] Override http request option.
|
|
582
582
|
* @throws {RequiredError}
|
|
@@ -588,7 +588,7 @@ var LanguagesApi = /** @class */ (function (_super) {
|
|
|
588
588
|
};
|
|
589
589
|
/**
|
|
590
590
|
*
|
|
591
|
-
* @summary (Auth policies:
|
|
591
|
+
* @summary Update lanuguage (Auth policies: RequireManagerRole)
|
|
592
592
|
* @param {LanguagesApiApiV1LanguagesCodePutRequest} requestParameters Request parameters.
|
|
593
593
|
* @param {*} [options] Override http request option.
|
|
594
594
|
* @throws {RequiredError}
|
|
@@ -600,7 +600,7 @@ var LanguagesApi = /** @class */ (function (_super) {
|
|
|
600
600
|
};
|
|
601
601
|
/**
|
|
602
602
|
*
|
|
603
|
-
* @summary Get all Languages. (Auth
|
|
603
|
+
* @summary Get all Languages. (Auth roles: Admin,Manager,ContentManager,PatientManager,LocalManager,Doctor)
|
|
604
604
|
* @param {LanguagesApiApiV1LanguagesGetRequest} requestParameters Request parameters.
|
|
605
605
|
* @param {*} [options] Override http request option.
|
|
606
606
|
* @throws {RequiredError}
|
|
@@ -613,7 +613,7 @@ var LanguagesApi = /** @class */ (function (_super) {
|
|
|
613
613
|
};
|
|
614
614
|
/**
|
|
615
615
|
*
|
|
616
|
-
* @summary (Auth policies:
|
|
616
|
+
* @summary Create language (Auth policies: RequireManagerRole)
|
|
617
617
|
* @param {LanguagesApiApiV1LanguagesPostRequest} requestParameters Request parameters.
|
|
618
618
|
* @param {*} [options] Override http request option.
|
|
619
619
|
* @throws {RequiredError}
|
|
@@ -31,7 +31,7 @@ import { UpdateSpecialtyCommand } from '../models';
|
|
|
31
31
|
export declare const SpecialtiesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
32
32
|
/**
|
|
33
33
|
*
|
|
34
|
-
* @summary Get all Specialties. (Auth
|
|
34
|
+
* @summary Get all Specialties. (Auth roles: Admin,Manager,ContentManager,PatientManager,LocalManager,Doctor)
|
|
35
35
|
* @param {string} [id]
|
|
36
36
|
* @param {string} [name]
|
|
37
37
|
* @param {string} [description]
|
|
@@ -60,7 +60,7 @@ export declare const SpecialtiesApiAxiosParamCreator: (configuration?: Configura
|
|
|
60
60
|
apiV1SpecialtiesPost: (createSpecialtyCommand?: CreateSpecialtyCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
61
61
|
/**
|
|
62
62
|
*
|
|
63
|
-
* @summary Get all Specialties Simple. (Auth
|
|
63
|
+
* @summary Get all Specialties Simple. (Auth roles: Admin,Manager,ContentManager,PatientManager,LocalManager,Doctor)
|
|
64
64
|
* @param {string} [id]
|
|
65
65
|
* @param {string} [name]
|
|
66
66
|
* @param {string} [description]
|
|
@@ -81,7 +81,7 @@ export declare const SpecialtiesApiAxiosParamCreator: (configuration?: Configura
|
|
|
81
81
|
apiV1SpecialtiesSimpleGet: (id?: string, name?: string, description?: string, specialtyTypeId?: string, marketingType?: MarketingType, hospitalId?: string, created?: Date, languageCode?: string, ids?: Array<string>, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
82
82
|
/**
|
|
83
83
|
*
|
|
84
|
-
* @summary (Auth
|
|
84
|
+
* @summary (Auth roles: Admin,Manager,ContentManager,PatientManager,LocalManager,Doctor)
|
|
85
85
|
* @param {string} slug
|
|
86
86
|
* @param {string} [languageCode]
|
|
87
87
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -100,7 +100,7 @@ export declare const SpecialtiesApiAxiosParamCreator: (configuration?: Configura
|
|
|
100
100
|
apiV1SpecialtiesSpecialtyIdDelete: (specialtyId: string, isPermanent?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
101
101
|
/**
|
|
102
102
|
*
|
|
103
|
-
* @summary Get Specialty. (Auth
|
|
103
|
+
* @summary Get Specialty. (Auth roles: Admin,Manager,ContentManager,PatientManager,LocalManager,Doctor)
|
|
104
104
|
* @param {string} specialtyId
|
|
105
105
|
* @param {string} [languageCode]
|
|
106
106
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -110,7 +110,7 @@ export declare const SpecialtiesApiAxiosParamCreator: (configuration?: Configura
|
|
|
110
110
|
apiV1SpecialtiesSpecialtyIdGet: (specialtyId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
111
111
|
/**
|
|
112
112
|
*
|
|
113
|
-
* @summary Get all SpecialtyMedias. (Auth
|
|
113
|
+
* @summary Get all SpecialtyMedias. (Auth roles: Admin,Manager,ContentManager,PatientManager,LocalManager,Doctor)
|
|
114
114
|
* @param {string} specialtyId
|
|
115
115
|
* @param {string} [id]
|
|
116
116
|
* @param {MediaType} [mediaType]
|
|
@@ -132,7 +132,7 @@ export declare const SpecialtiesApiAxiosParamCreator: (configuration?: Configura
|
|
|
132
132
|
apiV1SpecialtiesSpecialtyIdMediasMediaIdDelete: (specialtyId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
133
133
|
/**
|
|
134
134
|
*
|
|
135
|
-
* @summary Get SpecialtyMedia. (Auth
|
|
135
|
+
* @summary Get SpecialtyMedia. (Auth roles: Admin,Manager,ContentManager,PatientManager,LocalManager,Doctor)
|
|
136
136
|
* @param {string} specialtyId
|
|
137
137
|
* @param {string} mediaId
|
|
138
138
|
* @param {*} [options] Override http request option.
|
|
@@ -201,7 +201,7 @@ export declare const SpecialtiesApiAxiosParamCreator: (configuration?: Configura
|
|
|
201
201
|
export declare const SpecialtiesApiFp: (configuration?: Configuration) => {
|
|
202
202
|
/**
|
|
203
203
|
*
|
|
204
|
-
* @summary Get all Specialties. (Auth
|
|
204
|
+
* @summary Get all Specialties. (Auth roles: Admin,Manager,ContentManager,PatientManager,LocalManager,Doctor)
|
|
205
205
|
* @param {string} [id]
|
|
206
206
|
* @param {string} [name]
|
|
207
207
|
* @param {string} [description]
|
|
@@ -230,7 +230,7 @@ export declare const SpecialtiesApiFp: (configuration?: Configuration) => {
|
|
|
230
230
|
apiV1SpecialtiesPost(createSpecialtyCommand?: CreateSpecialtyCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SpecialtyModel>>;
|
|
231
231
|
/**
|
|
232
232
|
*
|
|
233
|
-
* @summary Get all Specialties Simple. (Auth
|
|
233
|
+
* @summary Get all Specialties Simple. (Auth roles: Admin,Manager,ContentManager,PatientManager,LocalManager,Doctor)
|
|
234
234
|
* @param {string} [id]
|
|
235
235
|
* @param {string} [name]
|
|
236
236
|
* @param {string} [description]
|
|
@@ -251,7 +251,7 @@ export declare const SpecialtiesApiFp: (configuration?: Configuration) => {
|
|
|
251
251
|
apiV1SpecialtiesSimpleGet(id?: string, name?: string, description?: string, specialtyTypeId?: string, marketingType?: MarketingType, hospitalId?: string, created?: Date, languageCode?: string, ids?: Array<string>, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SpecialtiesSimpleModel>>;
|
|
252
252
|
/**
|
|
253
253
|
*
|
|
254
|
-
* @summary (Auth
|
|
254
|
+
* @summary (Auth roles: Admin,Manager,ContentManager,PatientManager,LocalManager,Doctor)
|
|
255
255
|
* @param {string} slug
|
|
256
256
|
* @param {string} [languageCode]
|
|
257
257
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -270,7 +270,7 @@ export declare const SpecialtiesApiFp: (configuration?: Configuration) => {
|
|
|
270
270
|
apiV1SpecialtiesSpecialtyIdDelete(specialtyId: string, isPermanent?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
271
271
|
/**
|
|
272
272
|
*
|
|
273
|
-
* @summary Get Specialty. (Auth
|
|
273
|
+
* @summary Get Specialty. (Auth roles: Admin,Manager,ContentManager,PatientManager,LocalManager,Doctor)
|
|
274
274
|
* @param {string} specialtyId
|
|
275
275
|
* @param {string} [languageCode]
|
|
276
276
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -280,7 +280,7 @@ export declare const SpecialtiesApiFp: (configuration?: Configuration) => {
|
|
|
280
280
|
apiV1SpecialtiesSpecialtyIdGet(specialtyId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SpecialtyModel>>;
|
|
281
281
|
/**
|
|
282
282
|
*
|
|
283
|
-
* @summary Get all SpecialtyMedias. (Auth
|
|
283
|
+
* @summary Get all SpecialtyMedias. (Auth roles: Admin,Manager,ContentManager,PatientManager,LocalManager,Doctor)
|
|
284
284
|
* @param {string} specialtyId
|
|
285
285
|
* @param {string} [id]
|
|
286
286
|
* @param {MediaType} [mediaType]
|
|
@@ -302,7 +302,7 @@ export declare const SpecialtiesApiFp: (configuration?: Configuration) => {
|
|
|
302
302
|
apiV1SpecialtiesSpecialtyIdMediasMediaIdDelete(specialtyId: string, mediaId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
303
303
|
/**
|
|
304
304
|
*
|
|
305
|
-
* @summary Get SpecialtyMedia. (Auth
|
|
305
|
+
* @summary Get SpecialtyMedia. (Auth roles: Admin,Manager,ContentManager,PatientManager,LocalManager,Doctor)
|
|
306
306
|
* @param {string} specialtyId
|
|
307
307
|
* @param {string} mediaId
|
|
308
308
|
* @param {*} [options] Override http request option.
|
|
@@ -371,7 +371,7 @@ export declare const SpecialtiesApiFp: (configuration?: Configuration) => {
|
|
|
371
371
|
export declare const SpecialtiesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
372
372
|
/**
|
|
373
373
|
*
|
|
374
|
-
* @summary Get all Specialties. (Auth
|
|
374
|
+
* @summary Get all Specialties. (Auth roles: Admin,Manager,ContentManager,PatientManager,LocalManager,Doctor)
|
|
375
375
|
* @param {string} [id]
|
|
376
376
|
* @param {string} [name]
|
|
377
377
|
* @param {string} [description]
|
|
@@ -400,7 +400,7 @@ export declare const SpecialtiesApiFactory: (configuration?: Configuration, base
|
|
|
400
400
|
apiV1SpecialtiesPost(createSpecialtyCommand?: CreateSpecialtyCommand, options?: any): AxiosPromise<SpecialtyModel>;
|
|
401
401
|
/**
|
|
402
402
|
*
|
|
403
|
-
* @summary Get all Specialties Simple. (Auth
|
|
403
|
+
* @summary Get all Specialties Simple. (Auth roles: Admin,Manager,ContentManager,PatientManager,LocalManager,Doctor)
|
|
404
404
|
* @param {string} [id]
|
|
405
405
|
* @param {string} [name]
|
|
406
406
|
* @param {string} [description]
|
|
@@ -421,7 +421,7 @@ export declare const SpecialtiesApiFactory: (configuration?: Configuration, base
|
|
|
421
421
|
apiV1SpecialtiesSimpleGet(id?: string, name?: string, description?: string, specialtyTypeId?: string, marketingType?: MarketingType, hospitalId?: string, created?: Date, languageCode?: string, ids?: Array<string>, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<SpecialtiesSimpleModel>;
|
|
422
422
|
/**
|
|
423
423
|
*
|
|
424
|
-
* @summary (Auth
|
|
424
|
+
* @summary (Auth roles: Admin,Manager,ContentManager,PatientManager,LocalManager,Doctor)
|
|
425
425
|
* @param {string} slug
|
|
426
426
|
* @param {string} [languageCode]
|
|
427
427
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -440,7 +440,7 @@ export declare const SpecialtiesApiFactory: (configuration?: Configuration, base
|
|
|
440
440
|
apiV1SpecialtiesSpecialtyIdDelete(specialtyId: string, isPermanent?: boolean, options?: any): AxiosPromise<boolean>;
|
|
441
441
|
/**
|
|
442
442
|
*
|
|
443
|
-
* @summary Get Specialty. (Auth
|
|
443
|
+
* @summary Get Specialty. (Auth roles: Admin,Manager,ContentManager,PatientManager,LocalManager,Doctor)
|
|
444
444
|
* @param {string} specialtyId
|
|
445
445
|
* @param {string} [languageCode]
|
|
446
446
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -450,7 +450,7 @@ export declare const SpecialtiesApiFactory: (configuration?: Configuration, base
|
|
|
450
450
|
apiV1SpecialtiesSpecialtyIdGet(specialtyId: string, languageCode?: string, returnDefaultValue?: boolean, options?: any): AxiosPromise<SpecialtyModel>;
|
|
451
451
|
/**
|
|
452
452
|
*
|
|
453
|
-
* @summary Get all SpecialtyMedias. (Auth
|
|
453
|
+
* @summary Get all SpecialtyMedias. (Auth roles: Admin,Manager,ContentManager,PatientManager,LocalManager,Doctor)
|
|
454
454
|
* @param {string} specialtyId
|
|
455
455
|
* @param {string} [id]
|
|
456
456
|
* @param {MediaType} [mediaType]
|
|
@@ -472,7 +472,7 @@ export declare const SpecialtiesApiFactory: (configuration?: Configuration, base
|
|
|
472
472
|
apiV1SpecialtiesSpecialtyIdMediasMediaIdDelete(specialtyId: string, mediaId: string, options?: any): AxiosPromise<boolean>;
|
|
473
473
|
/**
|
|
474
474
|
*
|
|
475
|
-
* @summary Get SpecialtyMedia. (Auth
|
|
475
|
+
* @summary Get SpecialtyMedia. (Auth roles: Admin,Manager,ContentManager,PatientManager,LocalManager,Doctor)
|
|
476
476
|
* @param {string} specialtyId
|
|
477
477
|
* @param {string} mediaId
|
|
478
478
|
* @param {*} [options] Override http request option.
|
|
@@ -1002,7 +1002,7 @@ export interface SpecialtiesApiApiV1SpecialtiesSpecialtyIdTranslatePostRequest {
|
|
|
1002
1002
|
export declare class SpecialtiesApi extends BaseAPI {
|
|
1003
1003
|
/**
|
|
1004
1004
|
*
|
|
1005
|
-
* @summary Get all Specialties. (Auth
|
|
1005
|
+
* @summary Get all Specialties. (Auth roles: Admin,Manager,ContentManager,PatientManager,LocalManager,Doctor)
|
|
1006
1006
|
* @param {SpecialtiesApiApiV1SpecialtiesGetRequest} requestParameters Request parameters.
|
|
1007
1007
|
* @param {*} [options] Override http request option.
|
|
1008
1008
|
* @throws {RequiredError}
|
|
@@ -1020,7 +1020,7 @@ export declare class SpecialtiesApi extends BaseAPI {
|
|
|
1020
1020
|
apiV1SpecialtiesPost(requestParameters?: SpecialtiesApiApiV1SpecialtiesPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyModel, any>>;
|
|
1021
1021
|
/**
|
|
1022
1022
|
*
|
|
1023
|
-
* @summary Get all Specialties Simple. (Auth
|
|
1023
|
+
* @summary Get all Specialties Simple. (Auth roles: Admin,Manager,ContentManager,PatientManager,LocalManager,Doctor)
|
|
1024
1024
|
* @param {SpecialtiesApiApiV1SpecialtiesSimpleGetRequest} requestParameters Request parameters.
|
|
1025
1025
|
* @param {*} [options] Override http request option.
|
|
1026
1026
|
* @throws {RequiredError}
|
|
@@ -1029,7 +1029,7 @@ export declare class SpecialtiesApi extends BaseAPI {
|
|
|
1029
1029
|
apiV1SpecialtiesSimpleGet(requestParameters?: SpecialtiesApiApiV1SpecialtiesSimpleGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtiesSimpleModel, any>>;
|
|
1030
1030
|
/**
|
|
1031
1031
|
*
|
|
1032
|
-
* @summary (Auth
|
|
1032
|
+
* @summary (Auth roles: Admin,Manager,ContentManager,PatientManager,LocalManager,Doctor)
|
|
1033
1033
|
* @param {SpecialtiesApiApiV1SpecialtiesSlugGetRequest} requestParameters Request parameters.
|
|
1034
1034
|
* @param {*} [options] Override http request option.
|
|
1035
1035
|
* @throws {RequiredError}
|
|
@@ -1047,7 +1047,7 @@ export declare class SpecialtiesApi extends BaseAPI {
|
|
|
1047
1047
|
apiV1SpecialtiesSpecialtyIdDelete(requestParameters: SpecialtiesApiApiV1SpecialtiesSpecialtyIdDeleteRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
1048
1048
|
/**
|
|
1049
1049
|
*
|
|
1050
|
-
* @summary Get Specialty. (Auth
|
|
1050
|
+
* @summary Get Specialty. (Auth roles: Admin,Manager,ContentManager,PatientManager,LocalManager,Doctor)
|
|
1051
1051
|
* @param {SpecialtiesApiApiV1SpecialtiesSpecialtyIdGetRequest} requestParameters Request parameters.
|
|
1052
1052
|
* @param {*} [options] Override http request option.
|
|
1053
1053
|
* @throws {RequiredError}
|
|
@@ -1056,7 +1056,7 @@ export declare class SpecialtiesApi extends BaseAPI {
|
|
|
1056
1056
|
apiV1SpecialtiesSpecialtyIdGet(requestParameters: SpecialtiesApiApiV1SpecialtiesSpecialtyIdGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyModel, any>>;
|
|
1057
1057
|
/**
|
|
1058
1058
|
*
|
|
1059
|
-
* @summary Get all SpecialtyMedias. (Auth
|
|
1059
|
+
* @summary Get all SpecialtyMedias. (Auth roles: Admin,Manager,ContentManager,PatientManager,LocalManager,Doctor)
|
|
1060
1060
|
* @param {SpecialtiesApiApiV1SpecialtiesSpecialtyIdMediasGetRequest} requestParameters Request parameters.
|
|
1061
1061
|
* @param {*} [options] Override http request option.
|
|
1062
1062
|
* @throws {RequiredError}
|
|
@@ -1074,7 +1074,7 @@ export declare class SpecialtiesApi extends BaseAPI {
|
|
|
1074
1074
|
apiV1SpecialtiesSpecialtyIdMediasMediaIdDelete(requestParameters: SpecialtiesApiApiV1SpecialtiesSpecialtyIdMediasMediaIdDeleteRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
1075
1075
|
/**
|
|
1076
1076
|
*
|
|
1077
|
-
* @summary Get SpecialtyMedia. (Auth
|
|
1077
|
+
* @summary Get SpecialtyMedia. (Auth roles: Admin,Manager,ContentManager,PatientManager,LocalManager,Doctor)
|
|
1078
1078
|
* @param {SpecialtiesApiApiV1SpecialtiesSpecialtyIdMediasMediaIdGetRequest} requestParameters Request parameters.
|
|
1079
1079
|
* @param {*} [options] Override http request option.
|
|
1080
1080
|
* @throws {RequiredError}
|