ch-admin-api-client-typescript 5.36.61 → 5.36.66
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/form-templates-api.d.ts +83 -0
- package/lib/api/form-templates-api.d.ts.map +1 -1
- package/lib/api/form-templates-api.js +111 -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/chadmin-model.d.ts +0 -7
- package/lib/models/chadmin-model.d.ts.map +1 -1
- package/lib/models/chmanager-model.d.ts +0 -7
- package/lib/models/chmanager-model.d.ts.map +1 -1
- package/lib/models/create-profile-command.d.ts +0 -7
- package/lib/models/create-profile-command.d.ts.map +1 -1
- package/lib/models/doctor-model.d.ts +0 -7
- package/lib/models/doctor-model.d.ts.map +1 -1
- package/lib/models/form-template-affiliation-model.d.ts +6 -0
- package/lib/models/form-template-affiliation-model.d.ts.map +1 -1
- package/lib/models/{members-model.d.ts → form-template-affiliations-model.d.ts} +8 -8
- package/lib/models/form-template-affiliations-model.d.ts.map +1 -0
- package/lib/models/form-template-item-model.d.ts +0 -7
- package/lib/models/form-template-item-model.d.ts.map +1 -1
- package/lib/models/form-template-model.d.ts +0 -7
- package/lib/models/form-template-model.d.ts.map +1 -1
- package/lib/models/index.d.ts +1 -8
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +1 -8
- package/lib/models/manager-model.d.ts +0 -7
- package/lib/models/manager-model.d.ts.map +1 -1
- package/lib/models/patient-item-model.d.ts +0 -7
- package/lib/models/patient-item-model.d.ts.map +1 -1
- package/lib/models/patient-model.d.ts +0 -14
- package/lib/models/patient-model.d.ts.map +1 -1
- package/lib/models/update-profile-command.d.ts +0 -7
- package/lib/models/update-profile-command.d.ts.map +1 -1
- package/lib/models/user-model.d.ts +0 -7
- package/lib/models/user-model.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +1 -9
- package/src/api/form-templates-api.ts +145 -0
- package/src/api.ts +0 -1
- package/src/models/chadmin-model.ts +0 -9
- package/src/models/chmanager-model.ts +0 -9
- package/src/models/create-profile-command.ts +0 -9
- package/src/models/doctor-model.ts +0 -9
- package/src/models/form-template-affiliation-model.ts +6 -0
- package/src/models/{memberships-model.ts → form-template-affiliations-model.ts} +7 -7
- package/src/models/form-template-item-model.ts +0 -9
- package/src/models/form-template-model.ts +0 -9
- package/src/models/index.ts +1 -8
- package/src/models/manager-model.ts +0 -9
- package/src/models/patient-item-model.ts +0 -9
- package/src/models/patient-model.ts +0 -18
- package/src/models/update-profile-command.ts +0 -9
- package/src/models/user-model.ts +0 -9
- package/lib/api/memberships-api.d.ts +0 -281
- package/lib/api/memberships-api.d.ts.map +0 -1
- package/lib/api/memberships-api.js +0 -457
- package/lib/models/member-model.d.ts +0 -62
- package/lib/models/member-model.d.ts.map +0 -1
- package/lib/models/members-model.d.ts.map +0 -1
- package/lib/models/members-model.js +0 -15
- package/lib/models/membership-item-model.d.ts +0 -68
- package/lib/models/membership-item-model.d.ts.map +0 -1
- package/lib/models/membership-item-model.js +0 -15
- package/lib/models/membership-model.d.ts +0 -68
- package/lib/models/membership-model.d.ts.map +0 -1
- package/lib/models/membership-model.js +0 -15
- package/lib/models/memberships-model.d.ts +0 -33
- package/lib/models/memberships-model.d.ts.map +0 -1
- package/lib/models/memberships-model.js +0 -15
- package/lib/models/subscription-model.d.ts +0 -37
- package/lib/models/subscription-model.d.ts.map +0 -1
- package/lib/models/subscription-model.js +0 -15
- package/lib/models/user-location-model.d.ts +0 -74
- package/lib/models/user-location-model.d.ts.map +0 -1
- package/lib/models/user-location-model.js +0 -15
- package/lib/models/user-location-type.d.ts +0 -22
- package/lib/models/user-location-type.d.ts.map +0 -1
- package/lib/models/user-location-type.js +0 -25
- package/src/api/memberships-api.ts +0 -480
- package/src/models/member-model.ts +0 -69
- package/src/models/members-model.ts +0 -42
- package/src/models/membership-item-model.ts +0 -75
- package/src/models/membership-model.ts +0 -75
- package/src/models/subscription-model.ts +0 -42
- package/src/models/user-location-model.ts +0 -81
- package/src/models/user-location-type.ts +0 -31
- /package/lib/models/{member-model.js → form-template-affiliations-model.js} +0 -0
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
import { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
|
|
13
13
|
import { Configuration } from '../configuration';
|
|
14
14
|
import { RequestArgs, BaseAPI } from '../base';
|
|
15
|
+
import { FormTemplateAffiliationsModel } from '../models';
|
|
15
16
|
import { FormTemplateModel } from '../models';
|
|
16
17
|
import { FormTemplatePlatform } from '../models';
|
|
17
18
|
import { FormTemplateStatus } from '../models';
|
|
@@ -35,6 +36,18 @@ export declare const FormTemplatesApiAxiosParamCreator: (configuration?: Configu
|
|
|
35
36
|
* @throws {RequiredError}
|
|
36
37
|
*/
|
|
37
38
|
apiV1FormtemplatesFormTemplateIdDelete: (formTemplateId: string, isPermanent?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
39
|
+
/**
|
|
40
|
+
*
|
|
41
|
+
* @summary Get formTemplateAffilitions
|
|
42
|
+
* @param {string} formTemplateId
|
|
43
|
+
* @param {string} [languageCode]
|
|
44
|
+
* @param {number} [page]
|
|
45
|
+
* @param {number} [limit]
|
|
46
|
+
* @param {Date} [lastRetrieved]
|
|
47
|
+
* @param {*} [options] Override http request option.
|
|
48
|
+
* @throws {RequiredError}
|
|
49
|
+
*/
|
|
50
|
+
apiV1FormtemplatesFormTemplateIdFormtemplateaffiliationsGet: (formTemplateId: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
38
51
|
/**
|
|
39
52
|
*
|
|
40
53
|
* @summary Get formTemplate
|
|
@@ -131,6 +144,18 @@ export declare const FormTemplatesApiFp: (configuration?: Configuration) => {
|
|
|
131
144
|
* @throws {RequiredError}
|
|
132
145
|
*/
|
|
133
146
|
apiV1FormtemplatesFormTemplateIdDelete(formTemplateId: string, isPermanent?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
147
|
+
/**
|
|
148
|
+
*
|
|
149
|
+
* @summary Get formTemplateAffilitions
|
|
150
|
+
* @param {string} formTemplateId
|
|
151
|
+
* @param {string} [languageCode]
|
|
152
|
+
* @param {number} [page]
|
|
153
|
+
* @param {number} [limit]
|
|
154
|
+
* @param {Date} [lastRetrieved]
|
|
155
|
+
* @param {*} [options] Override http request option.
|
|
156
|
+
* @throws {RequiredError}
|
|
157
|
+
*/
|
|
158
|
+
apiV1FormtemplatesFormTemplateIdFormtemplateaffiliationsGet(formTemplateId: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FormTemplateAffiliationsModel>>;
|
|
134
159
|
/**
|
|
135
160
|
*
|
|
136
161
|
* @summary Get formTemplate
|
|
@@ -227,6 +252,18 @@ export declare const FormTemplatesApiFactory: (configuration?: Configuration, ba
|
|
|
227
252
|
* @throws {RequiredError}
|
|
228
253
|
*/
|
|
229
254
|
apiV1FormtemplatesFormTemplateIdDelete(formTemplateId: string, isPermanent?: boolean, options?: any): AxiosPromise<boolean>;
|
|
255
|
+
/**
|
|
256
|
+
*
|
|
257
|
+
* @summary Get formTemplateAffilitions
|
|
258
|
+
* @param {string} formTemplateId
|
|
259
|
+
* @param {string} [languageCode]
|
|
260
|
+
* @param {number} [page]
|
|
261
|
+
* @param {number} [limit]
|
|
262
|
+
* @param {Date} [lastRetrieved]
|
|
263
|
+
* @param {*} [options] Override http request option.
|
|
264
|
+
* @throws {RequiredError}
|
|
265
|
+
*/
|
|
266
|
+
apiV1FormtemplatesFormTemplateIdFormtemplateaffiliationsGet(formTemplateId: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<FormTemplateAffiliationsModel>;
|
|
230
267
|
/**
|
|
231
268
|
*
|
|
232
269
|
* @summary Get formTemplate
|
|
@@ -328,6 +365,43 @@ export interface FormTemplatesApiApiV1FormtemplatesFormTemplateIdDeleteRequest {
|
|
|
328
365
|
*/
|
|
329
366
|
readonly isPermanent?: boolean;
|
|
330
367
|
}
|
|
368
|
+
/**
|
|
369
|
+
* Request parameters for apiV1FormtemplatesFormTemplateIdFormtemplateaffiliationsGet operation in FormTemplatesApi.
|
|
370
|
+
* @export
|
|
371
|
+
* @interface FormTemplatesApiApiV1FormtemplatesFormTemplateIdFormtemplateaffiliationsGetRequest
|
|
372
|
+
*/
|
|
373
|
+
export interface FormTemplatesApiApiV1FormtemplatesFormTemplateIdFormtemplateaffiliationsGetRequest {
|
|
374
|
+
/**
|
|
375
|
+
*
|
|
376
|
+
* @type {string}
|
|
377
|
+
* @memberof FormTemplatesApiApiV1FormtemplatesFormTemplateIdFormtemplateaffiliationsGet
|
|
378
|
+
*/
|
|
379
|
+
readonly formTemplateId: string;
|
|
380
|
+
/**
|
|
381
|
+
*
|
|
382
|
+
* @type {string}
|
|
383
|
+
* @memberof FormTemplatesApiApiV1FormtemplatesFormTemplateIdFormtemplateaffiliationsGet
|
|
384
|
+
*/
|
|
385
|
+
readonly languageCode?: string;
|
|
386
|
+
/**
|
|
387
|
+
*
|
|
388
|
+
* @type {number}
|
|
389
|
+
* @memberof FormTemplatesApiApiV1FormtemplatesFormTemplateIdFormtemplateaffiliationsGet
|
|
390
|
+
*/
|
|
391
|
+
readonly page?: number;
|
|
392
|
+
/**
|
|
393
|
+
*
|
|
394
|
+
* @type {number}
|
|
395
|
+
* @memberof FormTemplatesApiApiV1FormtemplatesFormTemplateIdFormtemplateaffiliationsGet
|
|
396
|
+
*/
|
|
397
|
+
readonly limit?: number;
|
|
398
|
+
/**
|
|
399
|
+
*
|
|
400
|
+
* @type {Date}
|
|
401
|
+
* @memberof FormTemplatesApiApiV1FormtemplatesFormTemplateIdFormtemplateaffiliationsGet
|
|
402
|
+
*/
|
|
403
|
+
readonly lastRetrieved?: Date;
|
|
404
|
+
}
|
|
331
405
|
/**
|
|
332
406
|
* Request parameters for apiV1FormtemplatesFormTemplateIdGet operation in FormTemplatesApi.
|
|
333
407
|
* @export
|
|
@@ -550,6 +624,15 @@ export declare class FormTemplatesApi extends BaseAPI {
|
|
|
550
624
|
* @memberof FormTemplatesApi
|
|
551
625
|
*/
|
|
552
626
|
apiV1FormtemplatesFormTemplateIdDelete(requestParameters: FormTemplatesApiApiV1FormtemplatesFormTemplateIdDeleteRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
627
|
+
/**
|
|
628
|
+
*
|
|
629
|
+
* @summary Get formTemplateAffilitions
|
|
630
|
+
* @param {FormTemplatesApiApiV1FormtemplatesFormTemplateIdFormtemplateaffiliationsGetRequest} requestParameters Request parameters.
|
|
631
|
+
* @param {*} [options] Override http request option.
|
|
632
|
+
* @throws {RequiredError}
|
|
633
|
+
* @memberof FormTemplatesApi
|
|
634
|
+
*/
|
|
635
|
+
apiV1FormtemplatesFormTemplateIdFormtemplateaffiliationsGet(requestParameters: FormTemplatesApiApiV1FormtemplatesFormTemplateIdFormtemplateaffiliationsGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FormTemplateAffiliationsModel, any>>;
|
|
553
636
|
/**
|
|
554
637
|
*
|
|
555
638
|
* @summary Get formTemplate
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"form-templates-api.d.ts","sourceRoot":"","sources":["../../src/api/form-templates-api.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"form-templates-api.d.ts","sourceRoot":"","sources":["../../src/api/form-templates-api.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH,OAAoB,EAAE,YAAY,EAAE,aAAa,EAAE,kBAAkB,EAAE,MAAM,OAAO,CAAC;AACrF,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAKjD,OAAO,EAAiC,WAAW,EAAE,OAAO,EAAiB,MAAM,SAAS,CAAC;AAE7F,OAAO,EAAE,6BAA6B,EAAE,MAAM,WAAW,CAAC;AAE1D,OAAO,EAAE,iBAAiB,EAAE,MAAM,WAAW,CAAC;AAE9C,OAAO,EAAE,oBAAoB,EAAE,MAAM,WAAW,CAAC;AAEjD,OAAO,EAAE,kBAAkB,EAAE,MAAM,WAAW,CAAC;AAE/C,OAAO,EAAE,gBAAgB,EAAE,MAAM,WAAW,CAAC;AAE7C,OAAO,EAAE,kBAAkB,EAAE,MAAM,WAAW,CAAC;AAI/C,OAAO,EAAE,uBAAuB,EAAE,MAAM,WAAW,CAAC;AAEpD,OAAO,EAAE,kCAAkC,EAAE,MAAM,WAAW,CAAC;AAE/D,OAAO,EAAE,4BAA4B,EAAE,MAAM,WAAW,CAAC;AAEzD,OAAO,EAAE,2BAA2B,EAAE,MAAM,WAAW,CAAC;AACxD;;;GAGG;AACH,eAAO,MAAM,iCAAiC,mBAA6B,aAAa;IAEhF;;;;;;;OAOG;6DAC4D,MAAM,gBAAgB,OAAO,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IAmCrJ;;;;;;;;;;OAUG;kFACiF,MAAM,iBAAiB,MAAM,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IAiD/N;;;;;;;;OAQG;0DACyD,MAAM,iBAAiB,MAAM,eAAe,MAAM,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IAuCvK;;;;;;;OAOG;gFAC+E,MAAM,cAAc,MAAM,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IAkCrK;;;;;;;;OAQG;8EAC6E,MAAM,cAAc,MAAM,uCAAuC,kCAAkC,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IAqC5O;;;;;;;OAOG;0DACyD,MAAM,4BAA4B,uBAAuB,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IAkC9K;;;;;;OAMG;oEACmE,MAAM,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IA+BrI;;;;;;;OAOG;oEACmE,MAAM,iCAAiC,4BAA4B,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IAkClM;;;;;;;;;;;;;;;;OAgBG;2CAC0C,MAAM,SAAS,MAAM,eAAe,MAAM,aAAa,oBAAoB,qBAAqB,gBAAgB,WAAW,kBAAkB,aAAa,OAAO,eAAe,OAAO,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IA0ElV;;;;;;OAMG;uDACsD,uBAAuB,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;CAgChJ,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,kBAAkB,mBAA4B,aAAa;IAGhE;;;;;;;OAOG;2DAC0D,MAAM,gBAAgB,OAAO,YAAY,kBAAkB,oBAAoB,aAAa,aAAa,MAAM,KAAK,aAAa,OAAO,CAAC;IAItM;;;;;;;;;;OAUG;gFAC+E,MAAM,iBAAiB,MAAM,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAY,kBAAkB,oBAAoB,aAAa,aAAa,MAAM,KAAK,aAAa,6BAA6B,CAAC;IAItS;;;;;;;;OAQG;wDACuD,MAAM,iBAAiB,MAAM,eAAe,MAAM,YAAY,kBAAkB,oBAAoB,aAAa,aAAa,MAAM,KAAK,aAAa,iBAAiB,CAAC;IAIlO;;;;;;;OAOG;8EAC6E,MAAM,cAAc,MAAM,YAAY,kBAAkB,oBAAoB,aAAa,aAAa,MAAM,KAAK,aAAa,OAAO,CAAC;IAItN;;;;;;;;OAQG;4EAC2E,MAAM,cAAc,MAAM,uCAAuC,kCAAkC,YAAY,kBAAkB,oBAAoB,aAAa,aAAa,MAAM,KAAK,aAAa,OAAO,CAAC;IAI7R;;;;;;;OAOG;wDACuD,MAAM,4BAA4B,uBAAuB,YAAY,kBAAkB,oBAAoB,aAAa,aAAa,MAAM,KAAK,aAAa,iBAAiB,CAAC;IAIzO;;;;;;OAMG;kEACiE,MAAM,YAAY,kBAAkB,oBAAoB,aAAa,aAAa,MAAM,KAAK,aAAa,OAAO,CAAC;IAItL;;;;;;;OAOG;kEACiE,MAAM,iCAAiC,4BAA4B,YAAY,kBAAkB,oBAAoB,aAAa,aAAa,MAAM,KAAK,aAAa,2BAA2B,CAAC;IAIvQ;;;;;;;;;;;;;;;;OAgBG;yCACwC,MAAM,SAAS,MAAM,eAAe,MAAM,aAAa,oBAAoB,qBAAqB,gBAAgB,WAAW,kBAAkB,aAAa,OAAO,eAAe,OAAO,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAY,kBAAkB,oBAAoB,aAAa,aAAa,MAAM,KAAK,aAAa,kBAAkB,CAAC;IAI9Y;;;;;;OAMG;qDACoD,uBAAuB,YAAY,kBAAkB,oBAAoB,aAAa,aAAa,MAAM,KAAK,aAAa,iBAAiB,CAAC;CAK3M,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,uBAAuB,mBAA6B,aAAa,aAAa,MAAM,UAAU,aAAa;IAGhH;;;;;;;OAOG;2DACoD,MAAM,gBAAgB,OAAO,YAAY,GAAG,GAAG,aAAa,OAAO,CAAC;IAG3H;;;;;;;;;;OAUG;gFACyE,MAAM,iBAAiB,MAAM,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAY,GAAG,GAAG,aAAa,6BAA6B,CAAC;IAG3N;;;;;;;;OAQG;wDACiD,MAAM,iBAAiB,MAAM,eAAe,MAAM,YAAY,GAAG,GAAG,aAAa,iBAAiB,CAAC;IAGvJ;;;;;;;OAOG;8EACuE,MAAM,cAAc,MAAM,YAAY,GAAG,GAAG,aAAa,OAAO,CAAC;IAG3I;;;;;;;;OAQG;4EACqE,MAAM,cAAc,MAAM,uCAAuC,kCAAkC,YAAY,GAAG,GAAG,aAAa,OAAO,CAAC;IAGlN;;;;;;;OAOG;wDACiD,MAAM,4BAA4B,uBAAuB,YAAY,GAAG,GAAG,aAAa,iBAAiB,CAAC;IAG9J;;;;;;OAMG;kEAC2D,MAAM,YAAY,GAAG,GAAG,aAAa,OAAO,CAAC;IAG3G;;;;;;;OAOG;kEAC2D,MAAM,iCAAiC,4BAA4B,YAAY,GAAG,GAAG,aAAa,2BAA2B,CAAC;IAG5L;;;;;;;;;;;;;;;;OAgBG;yCACkC,MAAM,SAAS,MAAM,eAAe,MAAM,aAAa,oBAAoB,qBAAqB,gBAAgB,WAAW,kBAAkB,aAAa,OAAO,eAAe,OAAO,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAY,GAAG,GAAG,aAAa,kBAAkB,CAAC;IAGnU;;;;;;OAMG;qDAC8C,uBAAuB,YAAY,GAAG,GAAG,aAAa,iBAAiB,CAAC;CAIhI,CAAC;AAEF;;;;GAIG;AACH,MAAM,WAAW,6DAA6D;IAC1E;;;;OAIG;IACH,QAAQ,CAAC,cAAc,EAAE,MAAM,CAAA;IAE/B;;;;OAIG;IACH,QAAQ,CAAC,WAAW,CAAC,EAAE,OAAO,CAAA;CACjC;AAED;;;;GAIG;AACH,MAAM,WAAW,kFAAkF;IAC/F;;;;OAIG;IACH,QAAQ,CAAC,cAAc,EAAE,MAAM,CAAA;IAE/B;;;;OAIG;IACH,QAAQ,CAAC,YAAY,CAAC,EAAE,MAAM,CAAA;IAE9B;;;;OAIG;IACH,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,CAAA;IAEtB;;;;OAIG;IACH,QAAQ,CAAC,KAAK,CAAC,EAAE,MAAM,CAAA;IAEvB;;;;OAIG;IACH,QAAQ,CAAC,aAAa,CAAC,EAAE,IAAI,CAAA;CAChC;AAED;;;;GAIG;AACH,MAAM,WAAW,0DAA0D;IACvE;;;;OAIG;IACH,QAAQ,CAAC,cAAc,EAAE,MAAM,CAAA;IAE/B;;;;OAIG;IACH,QAAQ,CAAC,YAAY,CAAC,EAAE,MAAM,CAAA;IAE9B;;;;OAIG;IACH,QAAQ,CAAC,UAAU,CAAC,EAAE,MAAM,CAAA;CAC/B;AAED;;;;GAIG;AACH,MAAM,WAAW,gFAAgF;IAC7F;;;;OAIG;IACH,QAAQ,CAAC,cAAc,EAAE,MAAM,CAAA;IAE/B;;;;OAIG;IACH,QAAQ,CAAC,UAAU,EAAE,MAAM,CAAA;CAC9B;AAED;;;;GAIG;AACH,MAAM,WAAW,8EAA8E;IAC3F;;;;OAIG;IACH,QAAQ,CAAC,cAAc,EAAE,MAAM,CAAA;IAE/B;;;;OAIG;IACH,QAAQ,CAAC,UAAU,EAAE,MAAM,CAAA;IAE3B;;;;OAIG;IACH,QAAQ,CAAC,kCAAkC,CAAC,EAAE,kCAAkC,CAAA;CACnF;AAED;;;;GAIG;AACH,MAAM,WAAW,0DAA0D;IACvE;;;;OAIG;IACH,QAAQ,CAAC,cAAc,EAAE,MAAM,CAAA;IAE/B;;;;OAIG;IACH,QAAQ,CAAC,uBAAuB,CAAC,EAAE,uBAAuB,CAAA;CAC7D;AAED;;;;GAIG;AACH,MAAM,WAAW,oEAAoE;IACjF;;;;OAIG;IACH,QAAQ,CAAC,cAAc,EAAE,MAAM,CAAA;CAClC;AAED;;;;GAIG;AACH,MAAM,WAAW,oEAAoE;IACjF;;;;OAIG;IACH,QAAQ,CAAC,cAAc,EAAE,MAAM,CAAA;IAE/B;;;;OAIG;IACH,QAAQ,CAAC,4BAA4B,CAAC,EAAE,4BAA4B,CAAA;CACvE;AAED;;;;GAIG;AACH,MAAM,WAAW,4CAA4C;IACzD;;;;OAIG;IACH,QAAQ,CAAC,YAAY,CAAC,EAAE,MAAM,CAAA;IAE9B;;;;OAIG;IACH,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,CAAA;IAEtB;;;;OAIG;IACH,QAAQ,CAAC,UAAU,CAAC,EAAE,MAAM,CAAA;IAE5B;;;;OAIG;IACH,QAAQ,CAAC,QAAQ,CAAC,EAAE,oBAAoB,CAAA;IAExC;;;;OAIG;IACH,QAAQ,CAAC,gBAAgB,CAAC,EAAE,gBAAgB,CAAA;IAE5C;;;;OAIG;IACH,QAAQ,CAAC,MAAM,CAAC,EAAE,kBAAkB,CAAA;IAEpC;;;;OAIG;IACH,QAAQ,CAAC,QAAQ,CAAC,EAAE,OAAO,CAAA;IAE3B;;;;OAIG;IACH,QAAQ,CAAC,UAAU,CAAC,EAAE,OAAO,CAAA;IAE7B;;;;OAIG;IACH,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,CAAA;IAEtB;;;;OAIG;IACH,QAAQ,CAAC,KAAK,CAAC,EAAE,MAAM,CAAA;IAEvB;;;;OAIG;IACH,QAAQ,CAAC,aAAa,CAAC,EAAE,IAAI,CAAA;CAChC;AAED;;;;GAIG;AACH,MAAM,WAAW,6CAA6C;IAC1D;;;;OAIG;IACH,QAAQ,CAAC,uBAAuB,CAAC,EAAE,uBAAuB,CAAA;CAC7D;AAED;;;;;GAKG;AACH,qBAAa,gBAAiB,SAAQ,OAAO;IACzC;;;;;;;OAOG;IACI,sCAAsC,CAAC,iBAAiB,EAAE,6DAA6D,EAAE,OAAO,CAAC,EAAE,kBAAkB;IAI5J;;;;;;;OAOG;IACI,2DAA2D,CAAC,iBAAiB,EAAE,kFAAkF,EAAE,OAAO,CAAC,EAAE,kBAAkB;IAItM;;;;;;;OAOG;IACI,mCAAmC,CAAC,iBAAiB,EAAE,0DAA0D,EAAE,OAAO,CAAC,EAAE,kBAAkB;IAItJ;;;;;;;OAOG;IACI,yDAAyD,CAAC,iBAAiB,EAAE,gFAAgF,EAAE,OAAO,CAAC,EAAE,kBAAkB;IAIlM;;;;;;;OAOG;IACI,uDAAuD,CAAC,iBAAiB,EAAE,8EAA8E,EAAE,OAAO,CAAC,EAAE,kBAAkB;IAI9L;;;;;;;OAOG;IACI,mCAAmC,CAAC,iBAAiB,EAAE,0DAA0D,EAAE,OAAO,CAAC,EAAE,kBAAkB;IAItJ;;;;;;;OAOG;IACI,6CAA6C,CAAC,iBAAiB,EAAE,oEAAoE,EAAE,OAAO,CAAC,EAAE,kBAAkB;IAI1K;;;;;;;OAOG;IACI,6CAA6C,CAAC,iBAAiB,EAAE,oEAAoE,EAAE,OAAO,CAAC,EAAE,kBAAkB;IAI1K;;;;;;;OAOG;IACI,qBAAqB,CAAC,iBAAiB,GAAE,4CAAiD,EAAE,OAAO,CAAC,EAAE,kBAAkB;IAI/H;;;;;;;OAOG;IACI,sBAAsB,CAAC,iBAAiB,GAAE,6CAAkD,EAAE,OAAO,CAAC,EAAE,kBAAkB;CAGpI"}
|
|
@@ -139,6 +139,67 @@ var FormTemplatesApiAxiosParamCreator = function (configuration) {
|
|
|
139
139
|
});
|
|
140
140
|
});
|
|
141
141
|
},
|
|
142
|
+
/**
|
|
143
|
+
*
|
|
144
|
+
* @summary Get formTemplateAffilitions
|
|
145
|
+
* @param {string} formTemplateId
|
|
146
|
+
* @param {string} [languageCode]
|
|
147
|
+
* @param {number} [page]
|
|
148
|
+
* @param {number} [limit]
|
|
149
|
+
* @param {Date} [lastRetrieved]
|
|
150
|
+
* @param {*} [options] Override http request option.
|
|
151
|
+
* @throws {RequiredError}
|
|
152
|
+
*/
|
|
153
|
+
apiV1FormtemplatesFormTemplateIdFormtemplateaffiliationsGet: function (formTemplateId, languageCode, page, limit, lastRetrieved, options) {
|
|
154
|
+
if (options === void 0) { options = {}; }
|
|
155
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
156
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
157
|
+
return __generator(this, function (_a) {
|
|
158
|
+
switch (_a.label) {
|
|
159
|
+
case 0:
|
|
160
|
+
// verify required parameter 'formTemplateId' is not null or undefined
|
|
161
|
+
(0, common_1.assertParamExists)('apiV1FormtemplatesFormTemplateIdFormtemplateaffiliationsGet', 'formTemplateId', formTemplateId);
|
|
162
|
+
localVarPath = "/api/v1/formtemplates/{formTemplateId}/formtemplateaffiliations"
|
|
163
|
+
.replace("{".concat("formTemplateId", "}"), encodeURIComponent(String(formTemplateId)));
|
|
164
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
165
|
+
if (configuration) {
|
|
166
|
+
baseOptions = configuration.baseOptions;
|
|
167
|
+
}
|
|
168
|
+
localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), options);
|
|
169
|
+
localVarHeaderParameter = {};
|
|
170
|
+
localVarQueryParameter = {};
|
|
171
|
+
// authentication oauth2 required
|
|
172
|
+
// oauth required
|
|
173
|
+
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "oauth2", ["cloudhospital_admin_api"], configuration)];
|
|
174
|
+
case 1:
|
|
175
|
+
// authentication oauth2 required
|
|
176
|
+
// oauth required
|
|
177
|
+
_a.sent();
|
|
178
|
+
if (languageCode !== undefined) {
|
|
179
|
+
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
180
|
+
}
|
|
181
|
+
if (page !== undefined) {
|
|
182
|
+
localVarQueryParameter['page'] = page;
|
|
183
|
+
}
|
|
184
|
+
if (limit !== undefined) {
|
|
185
|
+
localVarQueryParameter['limit'] = limit;
|
|
186
|
+
}
|
|
187
|
+
if (lastRetrieved !== undefined) {
|
|
188
|
+
localVarQueryParameter['lastRetrieved'] = (lastRetrieved instanceof Date) ?
|
|
189
|
+
lastRetrieved.toISOString() :
|
|
190
|
+
lastRetrieved;
|
|
191
|
+
}
|
|
192
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
193
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
194
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
195
|
+
return [2 /*return*/, {
|
|
196
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
197
|
+
options: localVarRequestOptions,
|
|
198
|
+
}];
|
|
199
|
+
}
|
|
200
|
+
});
|
|
201
|
+
});
|
|
202
|
+
},
|
|
142
203
|
/**
|
|
143
204
|
*
|
|
144
205
|
* @summary Get formTemplate
|
|
@@ -580,6 +641,30 @@ var FormTemplatesApiFp = function (configuration) {
|
|
|
580
641
|
});
|
|
581
642
|
});
|
|
582
643
|
},
|
|
644
|
+
/**
|
|
645
|
+
*
|
|
646
|
+
* @summary Get formTemplateAffilitions
|
|
647
|
+
* @param {string} formTemplateId
|
|
648
|
+
* @param {string} [languageCode]
|
|
649
|
+
* @param {number} [page]
|
|
650
|
+
* @param {number} [limit]
|
|
651
|
+
* @param {Date} [lastRetrieved]
|
|
652
|
+
* @param {*} [options] Override http request option.
|
|
653
|
+
* @throws {RequiredError}
|
|
654
|
+
*/
|
|
655
|
+
apiV1FormtemplatesFormTemplateIdFormtemplateaffiliationsGet: function (formTemplateId, languageCode, page, limit, lastRetrieved, options) {
|
|
656
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
657
|
+
var localVarAxiosArgs;
|
|
658
|
+
return __generator(this, function (_a) {
|
|
659
|
+
switch (_a.label) {
|
|
660
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1FormtemplatesFormTemplateIdFormtemplateaffiliationsGet(formTemplateId, languageCode, page, limit, lastRetrieved, options)];
|
|
661
|
+
case 1:
|
|
662
|
+
localVarAxiosArgs = _a.sent();
|
|
663
|
+
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
664
|
+
}
|
|
665
|
+
});
|
|
666
|
+
});
|
|
667
|
+
},
|
|
583
668
|
/**
|
|
584
669
|
*
|
|
585
670
|
* @summary Get formTemplate
|
|
@@ -778,6 +863,20 @@ var FormTemplatesApiFactory = function (configuration, basePath, axios) {
|
|
|
778
863
|
apiV1FormtemplatesFormTemplateIdDelete: function (formTemplateId, isPermanent, options) {
|
|
779
864
|
return localVarFp.apiV1FormtemplatesFormTemplateIdDelete(formTemplateId, isPermanent, options).then(function (request) { return request(axios, basePath); });
|
|
780
865
|
},
|
|
866
|
+
/**
|
|
867
|
+
*
|
|
868
|
+
* @summary Get formTemplateAffilitions
|
|
869
|
+
* @param {string} formTemplateId
|
|
870
|
+
* @param {string} [languageCode]
|
|
871
|
+
* @param {number} [page]
|
|
872
|
+
* @param {number} [limit]
|
|
873
|
+
* @param {Date} [lastRetrieved]
|
|
874
|
+
* @param {*} [options] Override http request option.
|
|
875
|
+
* @throws {RequiredError}
|
|
876
|
+
*/
|
|
877
|
+
apiV1FormtemplatesFormTemplateIdFormtemplateaffiliationsGet: function (formTemplateId, languageCode, page, limit, lastRetrieved, options) {
|
|
878
|
+
return localVarFp.apiV1FormtemplatesFormTemplateIdFormtemplateaffiliationsGet(formTemplateId, languageCode, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
879
|
+
},
|
|
781
880
|
/**
|
|
782
881
|
*
|
|
783
882
|
* @summary Get formTemplate
|
|
@@ -901,6 +1000,18 @@ var FormTemplatesApi = /** @class */ (function (_super) {
|
|
|
901
1000
|
var _this = this;
|
|
902
1001
|
return (0, exports.FormTemplatesApiFp)(this.configuration).apiV1FormtemplatesFormTemplateIdDelete(requestParameters.formTemplateId, requestParameters.isPermanent, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
903
1002
|
};
|
|
1003
|
+
/**
|
|
1004
|
+
*
|
|
1005
|
+
* @summary Get formTemplateAffilitions
|
|
1006
|
+
* @param {FormTemplatesApiApiV1FormtemplatesFormTemplateIdFormtemplateaffiliationsGetRequest} requestParameters Request parameters.
|
|
1007
|
+
* @param {*} [options] Override http request option.
|
|
1008
|
+
* @throws {RequiredError}
|
|
1009
|
+
* @memberof FormTemplatesApi
|
|
1010
|
+
*/
|
|
1011
|
+
FormTemplatesApi.prototype.apiV1FormtemplatesFormTemplateIdFormtemplateaffiliationsGet = function (requestParameters, options) {
|
|
1012
|
+
var _this = this;
|
|
1013
|
+
return (0, exports.FormTemplatesApiFp)(this.configuration).apiV1FormtemplatesFormTemplateIdFormtemplateaffiliationsGet(requestParameters.formTemplateId, requestParameters.languageCode, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1014
|
+
};
|
|
904
1015
|
/**
|
|
905
1016
|
*
|
|
906
1017
|
* @summary Get formTemplate
|
package/lib/api.d.ts
CHANGED
|
@@ -42,7 +42,6 @@ export * from './api/hospitals-api';
|
|
|
42
42
|
export * from './api/images-api';
|
|
43
43
|
export * from './api/languages-api';
|
|
44
44
|
export * from './api/managers-api';
|
|
45
|
-
export * from './api/memberships-api';
|
|
46
45
|
export * from './api/message-webhooks-api';
|
|
47
46
|
export * from './api/notifications-api';
|
|
48
47
|
export * from './api/patient-affiliations-api';
|
package/lib/api.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../src/api.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH,cAAc,oBAAoB,CAAC;AACnC,cAAc,0BAA0B,CAAC;AACzC,cAAc,uBAAuB,CAAC;AACtC,cAAc,wBAAwB,CAAC;AACvC,cAAc,oBAAoB,CAAC;AACnC,cAAc,wCAAwC,CAAC;AACvD,cAAc,oBAAoB,CAAC;AACnC,cAAc,sBAAsB,CAAC;AACrC,cAAc,0BAA0B,CAAC;AACzC,cAAc,sBAAsB,CAAC;AACrC,cAAc,0BAA0B,CAAC;AACzC,cAAc,wBAAwB,CAAC;AACvC,cAAc,qBAAqB,CAAC;AACpC,cAAc,qBAAqB,CAAC;AACpC,cAAc,sBAAsB,CAAC;AACrC,cAAc,iBAAiB,CAAC;AAChC,cAAc,wBAAwB,CAAC;AACvC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,mBAAmB,CAAC;AAClC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,0BAA0B,CAAC;AACzC,cAAc,0BAA0B,CAAC;AACzC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,wBAAwB,CAAC;AACvC,cAAc,0BAA0B,CAAC;AACzC,cAAc,kBAAkB,CAAC;AACjC,cAAc,0BAA0B,CAAC;AACzC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,qBAAqB,CAAC;AACpC,cAAc,kBAAkB,CAAC;AACjC,cAAc,qBAAqB,CAAC;AACpC,cAAc,oBAAoB,CAAC;AACnC,cAAc,
|
|
1
|
+
{"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../src/api.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH,cAAc,oBAAoB,CAAC;AACnC,cAAc,0BAA0B,CAAC;AACzC,cAAc,uBAAuB,CAAC;AACtC,cAAc,wBAAwB,CAAC;AACvC,cAAc,oBAAoB,CAAC;AACnC,cAAc,wCAAwC,CAAC;AACvD,cAAc,oBAAoB,CAAC;AACnC,cAAc,sBAAsB,CAAC;AACrC,cAAc,0BAA0B,CAAC;AACzC,cAAc,sBAAsB,CAAC;AACrC,cAAc,0BAA0B,CAAC;AACzC,cAAc,wBAAwB,CAAC;AACvC,cAAc,qBAAqB,CAAC;AACpC,cAAc,qBAAqB,CAAC;AACpC,cAAc,sBAAsB,CAAC;AACrC,cAAc,iBAAiB,CAAC;AAChC,cAAc,wBAAwB,CAAC;AACvC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,mBAAmB,CAAC;AAClC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,0BAA0B,CAAC;AACzC,cAAc,0BAA0B,CAAC;AACzC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,wBAAwB,CAAC;AACvC,cAAc,0BAA0B,CAAC;AACzC,cAAc,kBAAkB,CAAC;AACjC,cAAc,0BAA0B,CAAC;AACzC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,qBAAqB,CAAC;AACpC,cAAc,kBAAkB,CAAC;AACjC,cAAc,qBAAqB,CAAC;AACpC,cAAc,oBAAoB,CAAC;AACnC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,yBAAyB,CAAC;AACxC,cAAc,gCAAgC,CAAC;AAC/C,cAAc,oBAAoB,CAAC;AACnC,cAAc,oBAAoB,CAAC;AACnC,cAAc,iBAAiB,CAAC;AAChC,cAAc,yBAAyB,CAAC;AACxC,cAAc,oBAAoB,CAAC;AACnC,cAAc,sBAAsB,CAAC;AACrC,cAAc,kBAAkB,CAAC;AACjC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,oBAAoB,CAAC;AACnC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,uBAAuB,CAAC;AACtC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,wBAAwB,CAAC;AACvC,cAAc,0BAA0B,CAAC;AACzC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,uBAAuB,CAAC;AACtC,cAAc,oBAAoB,CAAC"}
|
package/lib/api.js
CHANGED
|
@@ -60,7 +60,6 @@ __exportStar(require("./api/hospitals-api"), exports);
|
|
|
60
60
|
__exportStar(require("./api/images-api"), exports);
|
|
61
61
|
__exportStar(require("./api/languages-api"), exports);
|
|
62
62
|
__exportStar(require("./api/managers-api"), exports);
|
|
63
|
-
__exportStar(require("./api/memberships-api"), exports);
|
|
64
63
|
__exportStar(require("./api/message-webhooks-api"), exports);
|
|
65
64
|
__exportStar(require("./api/notifications-api"), exports);
|
|
66
65
|
__exportStar(require("./api/patient-affiliations-api"), exports);
|
|
@@ -12,7 +12,6 @@
|
|
|
12
12
|
import { AuditableEntityModel } from './auditable-entity-model';
|
|
13
13
|
import { Gender } from './gender';
|
|
14
14
|
import { UserLanguageModel } from './user-language-model';
|
|
15
|
-
import { UserLocationModel } from './user-location-model';
|
|
16
15
|
/**
|
|
17
16
|
*
|
|
18
17
|
* @export
|
|
@@ -115,11 +114,5 @@ export interface CHAdminModel {
|
|
|
115
114
|
* @memberof CHAdminModel
|
|
116
115
|
*/
|
|
117
116
|
'languages'?: Array<UserLanguageModel> | null;
|
|
118
|
-
/**
|
|
119
|
-
*
|
|
120
|
-
* @type {Array<UserLocationModel>}
|
|
121
|
-
* @memberof CHAdminModel
|
|
122
|
-
*/
|
|
123
|
-
'locations'?: Array<UserLocationModel> | null;
|
|
124
117
|
}
|
|
125
118
|
//# sourceMappingURL=chadmin-model.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"chadmin-model.d.ts","sourceRoot":"","sources":["../../src/models/chadmin-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AAGhE,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAGlC,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;
|
|
1
|
+
{"version":3,"file":"chadmin-model.d.ts","sourceRoot":"","sources":["../../src/models/chadmin-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AAGhE,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAGlC,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AAE1D;;;;GAIG;AACH,MAAM,WAAW,YAAY;IACzB;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB;;;;OAIG;IACH,aAAa,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;IAC5B;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,qBAAqB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtC;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,oBAAoB,CAAC;IACzC;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,WAAW,CAAC,EAAE,KAAK,CAAC,iBAAiB,CAAC,GAAG,IAAI,CAAC;CACjD"}
|
|
@@ -12,7 +12,6 @@
|
|
|
12
12
|
import { AuditableEntityModel } from './auditable-entity-model';
|
|
13
13
|
import { Gender } from './gender';
|
|
14
14
|
import { UserLanguageModel } from './user-language-model';
|
|
15
|
-
import { UserLocationModel } from './user-location-model';
|
|
16
15
|
/**
|
|
17
16
|
*
|
|
18
17
|
* @export
|
|
@@ -115,11 +114,5 @@ export interface CHManagerModel {
|
|
|
115
114
|
* @memberof CHManagerModel
|
|
116
115
|
*/
|
|
117
116
|
'languages'?: Array<UserLanguageModel> | null;
|
|
118
|
-
/**
|
|
119
|
-
*
|
|
120
|
-
* @type {Array<UserLocationModel>}
|
|
121
|
-
* @memberof CHManagerModel
|
|
122
|
-
*/
|
|
123
|
-
'locations'?: Array<UserLocationModel> | null;
|
|
124
117
|
}
|
|
125
118
|
//# sourceMappingURL=chmanager-model.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"chmanager-model.d.ts","sourceRoot":"","sources":["../../src/models/chmanager-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AAGhE,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAGlC,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;
|
|
1
|
+
{"version":3,"file":"chmanager-model.d.ts","sourceRoot":"","sources":["../../src/models/chmanager-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AAGhE,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAGlC,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AAE1D;;;;GAIG;AACH,MAAM,WAAW,cAAc;IAC3B;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB;;;;OAIG;IACH,aAAa,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;IAC5B;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,qBAAqB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtC;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,oBAAoB,CAAC;IACzC;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,WAAW,CAAC,EAAE,KAAK,CAAC,iBAAiB,CAAC,GAAG,IAAI,CAAC;CACjD"}
|
|
@@ -11,7 +11,6 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import { Gender } from './gender';
|
|
13
13
|
import { UserLanguageModel } from './user-language-model';
|
|
14
|
-
import { UserLocationModel } from './user-location-model';
|
|
15
14
|
/**
|
|
16
15
|
*
|
|
17
16
|
* @export
|
|
@@ -78,12 +77,6 @@ export interface CreateProfileCommand {
|
|
|
78
77
|
* @memberof CreateProfileCommand
|
|
79
78
|
*/
|
|
80
79
|
'languages'?: Array<UserLanguageModel> | null;
|
|
81
|
-
/**
|
|
82
|
-
*
|
|
83
|
-
* @type {Array<UserLocationModel>}
|
|
84
|
-
* @memberof CreateProfileCommand
|
|
85
|
-
*/
|
|
86
|
-
'locations'?: Array<UserLocationModel> | null;
|
|
87
80
|
/**
|
|
88
81
|
*
|
|
89
82
|
* @type {string}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-profile-command.d.ts","sourceRoot":"","sources":["../../src/models/create-profile-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAGlC,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;
|
|
1
|
+
{"version":3,"file":"create-profile-command.d.ts","sourceRoot":"","sources":["../../src/models/create-profile-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAGlC,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AAE1D;;;;GAIG;AACH,MAAM,WAAW,oBAAoB;IACjC;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB;;;;OAIG;IACH,aAAa,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;IAC5B;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,WAAW,CAAC,EAAE,KAAK,CAAC,iBAAiB,CAAC,GAAG,IAAI,CAAC;IAC9C;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAChC"}
|
|
@@ -13,7 +13,6 @@ import { AuditableEntityModel } from './auditable-entity-model';
|
|
|
13
13
|
import { DoctorAffiliationSimpleModel } from './doctor-affiliation-simple-model';
|
|
14
14
|
import { Gender } from './gender';
|
|
15
15
|
import { UserLanguageModel } from './user-language-model';
|
|
16
|
-
import { UserLocationModel } from './user-location-model';
|
|
17
16
|
/**
|
|
18
17
|
*
|
|
19
18
|
* @export
|
|
@@ -116,12 +115,6 @@ export interface DoctorModel {
|
|
|
116
115
|
* @memberof DoctorModel
|
|
117
116
|
*/
|
|
118
117
|
'languages'?: Array<UserLanguageModel> | null;
|
|
119
|
-
/**
|
|
120
|
-
*
|
|
121
|
-
* @type {Array<UserLocationModel>}
|
|
122
|
-
* @memberof DoctorModel
|
|
123
|
-
*/
|
|
124
|
-
'locations'?: Array<UserLocationModel> | null;
|
|
125
118
|
/**
|
|
126
119
|
*
|
|
127
120
|
* @type {string}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"doctor-model.d.ts","sourceRoot":"","sources":["../../src/models/doctor-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AAGhE,OAAO,EAAE,4BAA4B,EAAE,MAAM,mCAAmC,CAAC;AAGjF,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAGlC,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;
|
|
1
|
+
{"version":3,"file":"doctor-model.d.ts","sourceRoot":"","sources":["../../src/models/doctor-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AAGhE,OAAO,EAAE,4BAA4B,EAAE,MAAM,mCAAmC,CAAC;AAGjF,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAGlC,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AAE1D;;;;GAIG;AACH,MAAM,WAAW,WAAW;IACxB;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB;;;;OAIG;IACH,aAAa,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;IAC5B;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,qBAAqB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtC;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,oBAAoB,CAAC;IACzC;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,WAAW,CAAC,EAAE,KAAK,CAAC,iBAAiB,CAAC,GAAG,IAAI,CAAC;IAC9C;;;;OAIG;IACH,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;IAClC;;;;OAIG;IACH,cAAc,CAAC,EAAE,KAAK,CAAC,4BAA4B,CAAC,GAAG,IAAI,CAAC;CAC/D"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"form-template-affiliation-model.d.ts","sourceRoot":"","sources":["../../src/models/form-template-affiliation-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,4BAA4B;IACzC;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAClC"}
|
|
1
|
+
{"version":3,"file":"form-template-affiliation-model.d.ts","sourceRoot":"","sources":["../../src/models/form-template-affiliation-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,4BAA4B;IACzC;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAClC"}
|
|
@@ -9,25 +9,25 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import {
|
|
12
|
+
import { FormTemplateAffiliationModel } from './form-template-affiliation-model';
|
|
13
13
|
import { PagedListMetaData } from './paged-list-meta-data';
|
|
14
14
|
/**
|
|
15
15
|
*
|
|
16
16
|
* @export
|
|
17
|
-
* @interface
|
|
17
|
+
* @interface FormTemplateAffiliationsModel
|
|
18
18
|
*/
|
|
19
|
-
export interface
|
|
19
|
+
export interface FormTemplateAffiliationsModel {
|
|
20
20
|
/**
|
|
21
21
|
*
|
|
22
|
-
* @type {Array<
|
|
23
|
-
* @memberof
|
|
22
|
+
* @type {Array<FormTemplateAffiliationModel>}
|
|
23
|
+
* @memberof FormTemplateAffiliationsModel
|
|
24
24
|
*/
|
|
25
|
-
'items'?: Array<
|
|
25
|
+
'items'?: Array<FormTemplateAffiliationModel> | null;
|
|
26
26
|
/**
|
|
27
27
|
*
|
|
28
28
|
* @type {PagedListMetaData}
|
|
29
|
-
* @memberof
|
|
29
|
+
* @memberof FormTemplateAffiliationsModel
|
|
30
30
|
*/
|
|
31
31
|
'metaData'?: PagedListMetaData;
|
|
32
32
|
}
|
|
33
|
-
//# sourceMappingURL=
|
|
33
|
+
//# sourceMappingURL=form-template-affiliations-model.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"form-template-affiliations-model.d.ts","sourceRoot":"","sources":["../../src/models/form-template-affiliations-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,4BAA4B,EAAE,MAAM,mCAAmC,CAAC;AAGjF,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAE3D;;;;GAIG;AACH,MAAM,WAAW,6BAA6B;IAC1C;;;;OAIG;IACH,OAAO,CAAC,EAAE,KAAK,CAAC,4BAA4B,CAAC,GAAG,IAAI,CAAC;IACrD;;;;OAIG;IACH,UAAU,CAAC,EAAE,iBAAiB,CAAC;CAClC"}
|
|
@@ -10,7 +10,6 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import { AuditableEntityModel } from './auditable-entity-model';
|
|
13
|
-
import { FormTemplateAffiliationModel } from './form-template-affiliation-model';
|
|
14
13
|
import { FormTemplatePlatform } from './form-template-platform';
|
|
15
14
|
import { FormTemplateStatus } from './form-template-status';
|
|
16
15
|
import { FormTemplateType } from './form-template-type';
|
|
@@ -62,12 +61,6 @@ export interface FormTemplateItemModel {
|
|
|
62
61
|
* @memberof FormTemplateItemModel
|
|
63
62
|
*/
|
|
64
63
|
'isShared'?: boolean;
|
|
65
|
-
/**
|
|
66
|
-
*
|
|
67
|
-
* @type {Array<FormTemplateAffiliationModel>}
|
|
68
|
-
* @memberof FormTemplateItemModel
|
|
69
|
-
*/
|
|
70
|
-
'formTemplateAffiliations'?: Array<FormTemplateAffiliationModel> | null;
|
|
71
64
|
/**
|
|
72
65
|
*
|
|
73
66
|
* @type {string}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"form-template-item-model.d.ts","sourceRoot":"","sources":["../../src/models/form-template-item-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AAGhE,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"form-template-item-model.d.ts","sourceRoot":"","sources":["../../src/models/form-template-item-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AAGhE,OAAO,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AAGhE,OAAO,EAAE,kBAAkB,EAAE,MAAM,wBAAwB,CAAC;AAG5D,OAAO,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AAExD;;;;GAIG;AACH,MAAM,WAAW,qBAAqB;IAClC;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,kBAAkB,CAAC,EAAE,gBAAgB,CAAC;IACtC;;;;OAIG;IACH,QAAQ,CAAC,EAAE,kBAAkB,CAAC;IAC9B;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,UAAU,CAAC,EAAE,oBAAoB,CAAC;IAClC;;;;OAIG;IACH,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,oBAAoB,CAAC;CAC5C"}
|
|
@@ -11,7 +11,6 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import { AuditableEntityModel } from './auditable-entity-model';
|
|
13
13
|
import { FormSectionModel } from './form-section-model';
|
|
14
|
-
import { FormTemplateAffiliationModel } from './form-template-affiliation-model';
|
|
15
14
|
import { FormTemplatePlatform } from './form-template-platform';
|
|
16
15
|
import { FormTemplateStatus } from './form-template-status';
|
|
17
16
|
import { FormTemplateType } from './form-template-type';
|
|
@@ -63,12 +62,6 @@ export interface FormTemplateModel {
|
|
|
63
62
|
* @memberof FormTemplateModel
|
|
64
63
|
*/
|
|
65
64
|
'isShared'?: boolean;
|
|
66
|
-
/**
|
|
67
|
-
*
|
|
68
|
-
* @type {Array<FormTemplateAffiliationModel>}
|
|
69
|
-
* @memberof FormTemplateModel
|
|
70
|
-
*/
|
|
71
|
-
'formTemplateAffiliations'?: Array<FormTemplateAffiliationModel> | null;
|
|
72
65
|
/**
|
|
73
66
|
*
|
|
74
67
|
* @type {string}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"form-template-model.d.ts","sourceRoot":"","sources":["../../src/models/form-template-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AAGhE,OAAO,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AAGxD,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"form-template-model.d.ts","sourceRoot":"","sources":["../../src/models/form-template-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AAGhE,OAAO,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AAGxD,OAAO,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AAGhE,OAAO,EAAE,kBAAkB,EAAE,MAAM,wBAAwB,CAAC;AAG5D,OAAO,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AAExD;;;;GAIG;AACH,MAAM,WAAW,iBAAiB;IAC9B;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,kBAAkB,CAAC,EAAE,gBAAgB,CAAC;IACtC;;;;OAIG;IACH,QAAQ,CAAC,EAAE,kBAAkB,CAAC;IAC9B;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,UAAU,CAAC,EAAE,oBAAoB,CAAC;IAClC;;;;OAIG;IACH,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,oBAAoB,CAAC;IACzC;;;;OAIG;IACH,UAAU,CAAC,EAAE,KAAK,CAAC,gBAAgB,CAAC,GAAG,IAAI,CAAC;IAC5C;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAC7B"}
|
package/lib/models/index.d.ts
CHANGED
|
@@ -239,6 +239,7 @@ export * from './form-results-model';
|
|
|
239
239
|
export * from './form-section-input-model';
|
|
240
240
|
export * from './form-section-model';
|
|
241
241
|
export * from './form-template-affiliation-model';
|
|
242
|
+
export * from './form-template-affiliations-model';
|
|
242
243
|
export * from './form-template-item-model';
|
|
243
244
|
export * from './form-template-model';
|
|
244
245
|
export * from './form-template-platform';
|
|
@@ -325,11 +326,6 @@ export * from './marketing-type';
|
|
|
325
326
|
export * from './media-model';
|
|
326
327
|
export * from './media-type';
|
|
327
328
|
export * from './medias-model';
|
|
328
|
-
export * from './member-model';
|
|
329
|
-
export * from './members-model';
|
|
330
|
-
export * from './membership-item-model';
|
|
331
|
-
export * from './membership-model';
|
|
332
|
-
export * from './memberships-model';
|
|
333
329
|
export * from './mention-type';
|
|
334
330
|
export * from './message-provider';
|
|
335
331
|
export * from './message-type';
|
|
@@ -460,7 +456,6 @@ export * from './specialty-type-sorting-command';
|
|
|
460
456
|
export * from './specialty-types-model';
|
|
461
457
|
export * from './specialty-types-simple-model';
|
|
462
458
|
export * from './string-filter-types';
|
|
463
|
-
export * from './subscription-model';
|
|
464
459
|
export * from './survey-form-affiliation-model';
|
|
465
460
|
export * from './survey-form-duration-statistics-model';
|
|
466
461
|
export * from './survey-form-element-input-model';
|
|
@@ -580,8 +575,6 @@ export * from './upload-media-from-uri-command';
|
|
|
580
575
|
export * from './uploaded-medias-model';
|
|
581
576
|
export * from './user';
|
|
582
577
|
export * from './user-language-model';
|
|
583
|
-
export * from './user-location-model';
|
|
584
|
-
export * from './user-location-type';
|
|
585
578
|
export * from './user-model';
|
|
586
579
|
export * from './web-app-environment-model';
|
|
587
580
|
export * from './web-app-environments-model';
|