ch-admin-api-client-typescript 5.90.7 → 5.90.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (32) hide show
  1. package/lib/api/languages-api.d.ts +12 -3
  2. package/lib/api/languages-api.d.ts.map +1 -1
  3. package/lib/api/languages-api.js +15 -9
  4. package/lib/models/translate-about-us-page-command.d.ts +12 -0
  5. package/lib/models/translate-about-us-page-command.d.ts.map +1 -1
  6. package/lib/models/translate-article-category-command.d.ts +12 -0
  7. package/lib/models/translate-article-category-command.d.ts.map +1 -1
  8. package/lib/models/translate-article-command.d.ts +12 -0
  9. package/lib/models/translate-article-command.d.ts.map +1 -1
  10. package/lib/models/translate-benefit-command.d.ts +12 -0
  11. package/lib/models/translate-benefit-command.d.ts.map +1 -1
  12. package/lib/models/translate-country-command.d.ts +12 -0
  13. package/lib/models/translate-country-command.d.ts.map +1 -1
  14. package/lib/models/translate-deal-command.d.ts +12 -0
  15. package/lib/models/translate-deal-command.d.ts.map +1 -1
  16. package/lib/models/translate-doctor-affiliation-command.d.ts +12 -0
  17. package/lib/models/translate-doctor-affiliation-command.d.ts.map +1 -1
  18. package/lib/models/translate-frequently-asked-question-command.d.ts +12 -0
  19. package/lib/models/translate-frequently-asked-question-command.d.ts.map +1 -1
  20. package/lib/models/translate-general-article-command.d.ts +12 -0
  21. package/lib/models/translate-general-article-command.d.ts.map +1 -1
  22. package/lib/models/translate-hospital-command.d.ts +12 -0
  23. package/lib/models/translate-hospital-command.d.ts.map +1 -1
  24. package/lib/models/translate-hospital-service-command.d.ts +12 -0
  25. package/lib/models/translate-hospital-service-command.d.ts.map +1 -1
  26. package/lib/models/translate-hospital-specialty-command.d.ts +12 -0
  27. package/lib/models/translate-hospital-specialty-command.d.ts.map +1 -1
  28. package/lib/models/translate-specialty-command.d.ts +12 -0
  29. package/lib/models/translate-specialty-command.d.ts.map +1 -1
  30. package/lib/models/translate-specialty-type-command.d.ts +12 -0
  31. package/lib/models/translate-specialty-type-command.d.ts.map +1 -1
  32. package/package.json +1 -1
@@ -81,10 +81,11 @@ export declare const LanguagesApiAxiosParamCreator: (configuration?: Configurati
81
81
  *
82
82
  * @summary Delete language (Auth policies: RequireManagerRole)
83
83
  * @param {string} code Two-letter ISO 639-1 language code identifying the Language entity (e.g., `en`, `ko`). This is NOT a locale code — the Language entity always uses 2-letter codes as its primary key.
84
+ * @param {boolean} [force] When `true`, cascade-deletes `CountryLanguage` and `PlatformInterpretationLanguage` records before removing the language. Appointments that reference this language will still block deletion regardless of this flag.
84
85
  * @param {*} [options] Override http request option.
85
86
  * @throws {RequiredError}
86
87
  */
87
- apiV1LanguagesCodeDelete: (code: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
88
+ apiV1LanguagesCodeDelete: (code: string, force?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
88
89
  /**
89
90
  *
90
91
  * @summary Get Language. (Auth policies: RequireDefaultAdminAppRole)
@@ -195,10 +196,11 @@ export declare const LanguagesApiFp: (configuration?: Configuration) => {
195
196
  *
196
197
  * @summary Delete language (Auth policies: RequireManagerRole)
197
198
  * @param {string} code Two-letter ISO 639-1 language code identifying the Language entity (e.g., &#x60;en&#x60;, &#x60;ko&#x60;). This is NOT a locale code — the Language entity always uses 2-letter codes as its primary key.
199
+ * @param {boolean} [force] When &#x60;true&#x60;, cascade-deletes &#x60;CountryLanguage&#x60; and &#x60;PlatformInterpretationLanguage&#x60; records before removing the language. Appointments that reference this language will still block deletion regardless of this flag.
198
200
  * @param {*} [options] Override http request option.
199
201
  * @throws {RequiredError}
200
202
  */
201
- apiV1LanguagesCodeDelete(code: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
203
+ apiV1LanguagesCodeDelete(code: string, force?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
202
204
  /**
203
205
  *
204
206
  * @summary Get Language. (Auth policies: RequireDefaultAdminAppRole)
@@ -309,10 +311,11 @@ export declare const LanguagesApiFactory: (configuration?: Configuration, basePa
309
311
  *
310
312
  * @summary Delete language (Auth policies: RequireManagerRole)
311
313
  * @param {string} code Two-letter ISO 639-1 language code identifying the Language entity (e.g., &#x60;en&#x60;, &#x60;ko&#x60;). This is NOT a locale code — the Language entity always uses 2-letter codes as its primary key.
314
+ * @param {boolean} [force] When &#x60;true&#x60;, cascade-deletes &#x60;CountryLanguage&#x60; and &#x60;PlatformInterpretationLanguage&#x60; records before removing the language. Appointments that reference this language will still block deletion regardless of this flag.
312
315
  * @param {*} [options] Override http request option.
313
316
  * @throws {RequiredError}
314
317
  */
315
- apiV1LanguagesCodeDelete(code: string, options?: any): AxiosPromise<boolean>;
318
+ apiV1LanguagesCodeDelete(code: string, force?: boolean, options?: any): AxiosPromise<boolean>;
316
319
  /**
317
320
  *
318
321
  * @summary Get Language. (Auth policies: RequireDefaultAdminAppRole)
@@ -501,6 +504,12 @@ export interface LanguagesApiApiV1LanguagesCodeDeleteRequest {
501
504
  * @memberof LanguagesApiApiV1LanguagesCodeDelete
502
505
  */
503
506
  readonly code: string;
507
+ /**
508
+ * When &#x60;true&#x60;, cascade-deletes &#x60;CountryLanguage&#x60; and &#x60;PlatformInterpretationLanguage&#x60; records before removing the language. Appointments that reference this language will still block deletion regardless of this flag.
509
+ * @type {boolean}
510
+ * @memberof LanguagesApiApiV1LanguagesCodeDelete
511
+ */
512
+ readonly force?: boolean;
504
513
  }
505
514
  /**
506
515
  * Request parameters for apiV1LanguagesCodeGet operation in LanguagesApi.
@@ -1 +1 @@
1
- {"version":3,"file":"languages-api.d.ts","sourceRoot":"","sources":["../../src/api/languages-api.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"languages-api.d.ts","sourceRoot":"","sources":["../../src/api/languages-api.ts"],"names":[],"mappings":"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"}
@@ -380,15 +380,16 @@ var LanguagesApiAxiosParamCreator = function (configuration) {
380
380
  *
381
381
  * @summary Delete language (Auth policies: RequireManagerRole)
382
382
  * @param {string} code Two-letter ISO 639-1 language code identifying the Language entity (e.g., &#x60;en&#x60;, &#x60;ko&#x60;). This is NOT a locale code — the Language entity always uses 2-letter codes as its primary key.
383
+ * @param {boolean} [force] When &#x60;true&#x60;, cascade-deletes &#x60;CountryLanguage&#x60; and &#x60;PlatformInterpretationLanguage&#x60; records before removing the language. Appointments that reference this language will still block deletion regardless of this flag.
383
384
  * @param {*} [options] Override http request option.
384
385
  * @throws {RequiredError}
385
386
  */
386
- apiV1LanguagesCodeDelete: function (code_1) {
387
+ apiV1LanguagesCodeDelete: function (code_1, force_1) {
387
388
  var args_1 = [];
388
- for (var _i = 1; _i < arguments.length; _i++) {
389
- args_1[_i - 1] = arguments[_i];
389
+ for (var _i = 2; _i < arguments.length; _i++) {
390
+ args_1[_i - 2] = arguments[_i];
390
391
  }
391
- return __awaiter(_this, __spreadArray([code_1], args_1, true), void 0, function (code, options) {
392
+ return __awaiter(_this, __spreadArray([code_1, force_1], args_1, true), void 0, function (code, force, options) {
392
393
  var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
393
394
  if (options === void 0) { options = {}; }
394
395
  return __generator(this, function (_a) {
@@ -412,6 +413,9 @@ var LanguagesApiAxiosParamCreator = function (configuration) {
412
413
  // authentication oauth2 required
413
414
  // oauth required
414
415
  _a.sent();
416
+ if (force !== undefined) {
417
+ localVarQueryParameter['force'] = force;
418
+ }
415
419
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
416
420
  headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
417
421
  localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -824,15 +828,16 @@ var LanguagesApiFp = function (configuration) {
824
828
  *
825
829
  * @summary Delete language (Auth policies: RequireManagerRole)
826
830
  * @param {string} code Two-letter ISO 639-1 language code identifying the Language entity (e.g., &#x60;en&#x60;, &#x60;ko&#x60;). This is NOT a locale code — the Language entity always uses 2-letter codes as its primary key.
831
+ * @param {boolean} [force] When &#x60;true&#x60;, cascade-deletes &#x60;CountryLanguage&#x60; and &#x60;PlatformInterpretationLanguage&#x60; records before removing the language. Appointments that reference this language will still block deletion regardless of this flag.
827
832
  * @param {*} [options] Override http request option.
828
833
  * @throws {RequiredError}
829
834
  */
830
- apiV1LanguagesCodeDelete: function (code, options) {
835
+ apiV1LanguagesCodeDelete: function (code, force, options) {
831
836
  return __awaiter(this, void 0, void 0, function () {
832
837
  var localVarAxiosArgs;
833
838
  return __generator(this, function (_a) {
834
839
  switch (_a.label) {
835
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1LanguagesCodeDelete(code, options)];
840
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1LanguagesCodeDelete(code, force, options)];
836
841
  case 1:
837
842
  localVarAxiosArgs = _a.sent();
838
843
  return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
@@ -1024,11 +1029,12 @@ var LanguagesApiFactory = function (configuration, basePath, axios) {
1024
1029
  *
1025
1030
  * @summary Delete language (Auth policies: RequireManagerRole)
1026
1031
  * @param {string} code Two-letter ISO 639-1 language code identifying the Language entity (e.g., &#x60;en&#x60;, &#x60;ko&#x60;). This is NOT a locale code — the Language entity always uses 2-letter codes as its primary key.
1032
+ * @param {boolean} [force] When &#x60;true&#x60;, cascade-deletes &#x60;CountryLanguage&#x60; and &#x60;PlatformInterpretationLanguage&#x60; records before removing the language. Appointments that reference this language will still block deletion regardless of this flag.
1027
1033
  * @param {*} [options] Override http request option.
1028
1034
  * @throws {RequiredError}
1029
1035
  */
1030
- apiV1LanguagesCodeDelete: function (code, options) {
1031
- return localVarFp.apiV1LanguagesCodeDelete(code, options).then(function (request) { return request(axios, basePath); });
1036
+ apiV1LanguagesCodeDelete: function (code, force, options) {
1037
+ return localVarFp.apiV1LanguagesCodeDelete(code, force, options).then(function (request) { return request(axios, basePath); });
1032
1038
  },
1033
1039
  /**
1034
1040
  *
@@ -1174,7 +1180,7 @@ var LanguagesApi = /** @class */ (function (_super) {
1174
1180
  */
1175
1181
  LanguagesApi.prototype.apiV1LanguagesCodeDelete = function (requestParameters, options) {
1176
1182
  var _this = this;
1177
- return (0, exports.LanguagesApiFp)(this.configuration).apiV1LanguagesCodeDelete(requestParameters.code, options).then(function (request) { return request(_this.axios, _this.basePath); });
1183
+ return (0, exports.LanguagesApiFp)(this.configuration).apiV1LanguagesCodeDelete(requestParameters.code, requestParameters.force, options).then(function (request) { return request(_this.axios, _this.basePath); });
1178
1184
  };
1179
1185
  /**
1180
1186
  *
@@ -39,5 +39,17 @@ export interface TranslateAboutUsPageCommand {
39
39
  * @memberof TranslateAboutUsPageCommand
40
40
  */
41
41
  'targetFields'?: Array<string> | null;
42
+ /**
43
+ *
44
+ * @type {string}
45
+ * @memberof TranslateAboutUsPageCommand
46
+ */
47
+ 'aiPromptId'?: string | null;
48
+ /**
49
+ *
50
+ * @type {string}
51
+ * @memberof TranslateAboutUsPageCommand
52
+ */
53
+ 'customPrompt'?: string | null;
42
54
  }
43
55
  //# sourceMappingURL=translate-about-us-page-command.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"translate-about-us-page-command.d.ts","sourceRoot":"","sources":["../../src/models/translate-about-us-page-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,2BAA2B;IACxC;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B;;;;OAIG;IACH,cAAc,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;CACzC"}
1
+ {"version":3,"file":"translate-about-us-page-command.d.ts","sourceRoot":"","sources":["../../src/models/translate-about-us-page-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,2BAA2B;IACxC;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B;;;;OAIG;IACH,cAAc,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;IACtC;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAClC"}
@@ -39,5 +39,17 @@ export interface TranslateArticleCategoryCommand {
39
39
  * @memberof TranslateArticleCategoryCommand
40
40
  */
41
41
  'targetFields'?: Array<string> | null;
42
+ /**
43
+ *
44
+ * @type {string}
45
+ * @memberof TranslateArticleCategoryCommand
46
+ */
47
+ 'aiPromptId'?: string | null;
48
+ /**
49
+ *
50
+ * @type {string}
51
+ * @memberof TranslateArticleCategoryCommand
52
+ */
53
+ 'customPrompt'?: string | null;
42
54
  }
43
55
  //# sourceMappingURL=translate-article-category-command.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"translate-article-category-command.d.ts","sourceRoot":"","sources":["../../src/models/translate-article-category-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,+BAA+B;IAC5C;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B;;;;OAIG;IACH,cAAc,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;CACzC"}
1
+ {"version":3,"file":"translate-article-category-command.d.ts","sourceRoot":"","sources":["../../src/models/translate-article-category-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,+BAA+B;IAC5C;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B;;;;OAIG;IACH,cAAc,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;IACtC;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAClC"}
@@ -39,5 +39,17 @@ export interface TranslateArticleCommand {
39
39
  * @memberof TranslateArticleCommand
40
40
  */
41
41
  'targetFields'?: Array<string> | null;
42
+ /**
43
+ *
44
+ * @type {string}
45
+ * @memberof TranslateArticleCommand
46
+ */
47
+ 'aiPromptId'?: string | null;
48
+ /**
49
+ *
50
+ * @type {string}
51
+ * @memberof TranslateArticleCommand
52
+ */
53
+ 'customPrompt'?: string | null;
42
54
  }
43
55
  //# sourceMappingURL=translate-article-command.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"translate-article-command.d.ts","sourceRoot":"","sources":["../../src/models/translate-article-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,uBAAuB;IACpC;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B;;;;OAIG;IACH,cAAc,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;CACzC"}
1
+ {"version":3,"file":"translate-article-command.d.ts","sourceRoot":"","sources":["../../src/models/translate-article-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,uBAAuB;IACpC;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B;;;;OAIG;IACH,cAAc,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;IACtC;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAClC"}
@@ -39,5 +39,17 @@ export interface TranslateBenefitCommand {
39
39
  * @memberof TranslateBenefitCommand
40
40
  */
41
41
  'targetFields'?: Array<string> | null;
42
+ /**
43
+ *
44
+ * @type {string}
45
+ * @memberof TranslateBenefitCommand
46
+ */
47
+ 'aiPromptId'?: string | null;
48
+ /**
49
+ *
50
+ * @type {string}
51
+ * @memberof TranslateBenefitCommand
52
+ */
53
+ 'customPrompt'?: string | null;
42
54
  }
43
55
  //# sourceMappingURL=translate-benefit-command.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"translate-benefit-command.d.ts","sourceRoot":"","sources":["../../src/models/translate-benefit-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,uBAAuB;IACpC;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B;;;;OAIG;IACH,cAAc,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;CACzC"}
1
+ {"version":3,"file":"translate-benefit-command.d.ts","sourceRoot":"","sources":["../../src/models/translate-benefit-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,uBAAuB;IACpC;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B;;;;OAIG;IACH,cAAc,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;IACtC;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAClC"}
@@ -39,5 +39,17 @@ export interface TranslateCountryCommand {
39
39
  * @memberof TranslateCountryCommand
40
40
  */
41
41
  'targetFields'?: Array<string> | null;
42
+ /**
43
+ *
44
+ * @type {string}
45
+ * @memberof TranslateCountryCommand
46
+ */
47
+ 'aiPromptId'?: string | null;
48
+ /**
49
+ *
50
+ * @type {string}
51
+ * @memberof TranslateCountryCommand
52
+ */
53
+ 'customPrompt'?: string | null;
42
54
  }
43
55
  //# sourceMappingURL=translate-country-command.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"translate-country-command.d.ts","sourceRoot":"","sources":["../../src/models/translate-country-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,uBAAuB;IACpC;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B;;;;OAIG;IACH,cAAc,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;CACzC"}
1
+ {"version":3,"file":"translate-country-command.d.ts","sourceRoot":"","sources":["../../src/models/translate-country-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,uBAAuB;IACpC;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B;;;;OAIG;IACH,cAAc,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;IACtC;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAClC"}
@@ -39,5 +39,17 @@ export interface TranslateDealCommand {
39
39
  * @memberof TranslateDealCommand
40
40
  */
41
41
  'targetFields'?: Array<string> | null;
42
+ /**
43
+ *
44
+ * @type {string}
45
+ * @memberof TranslateDealCommand
46
+ */
47
+ 'aiPromptId'?: string | null;
48
+ /**
49
+ *
50
+ * @type {string}
51
+ * @memberof TranslateDealCommand
52
+ */
53
+ 'customPrompt'?: string | null;
42
54
  }
43
55
  //# sourceMappingURL=translate-deal-command.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"translate-deal-command.d.ts","sourceRoot":"","sources":["../../src/models/translate-deal-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,oBAAoB;IACjC;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B;;;;OAIG;IACH,cAAc,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;CACzC"}
1
+ {"version":3,"file":"translate-deal-command.d.ts","sourceRoot":"","sources":["../../src/models/translate-deal-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,oBAAoB;IACjC;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B;;;;OAIG;IACH,cAAc,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;IACtC;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAClC"}
@@ -39,5 +39,17 @@ export interface TranslateDoctorAffiliationCommand {
39
39
  * @memberof TranslateDoctorAffiliationCommand
40
40
  */
41
41
  'targetFields'?: Array<string> | null;
42
+ /**
43
+ *
44
+ * @type {string}
45
+ * @memberof TranslateDoctorAffiliationCommand
46
+ */
47
+ 'aiPromptId'?: string | null;
48
+ /**
49
+ *
50
+ * @type {string}
51
+ * @memberof TranslateDoctorAffiliationCommand
52
+ */
53
+ 'customPrompt'?: string | null;
42
54
  }
43
55
  //# sourceMappingURL=translate-doctor-affiliation-command.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"translate-doctor-affiliation-command.d.ts","sourceRoot":"","sources":["../../src/models/translate-doctor-affiliation-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,iCAAiC;IAC9C;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B;;;;OAIG;IACH,cAAc,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;CACzC"}
1
+ {"version":3,"file":"translate-doctor-affiliation-command.d.ts","sourceRoot":"","sources":["../../src/models/translate-doctor-affiliation-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,iCAAiC;IAC9C;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B;;;;OAIG;IACH,cAAc,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;IACtC;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAClC"}
@@ -39,5 +39,17 @@ export interface TranslateFrequentlyAskedQuestionCommand {
39
39
  * @memberof TranslateFrequentlyAskedQuestionCommand
40
40
  */
41
41
  'targetFields'?: Array<string> | null;
42
+ /**
43
+ *
44
+ * @type {string}
45
+ * @memberof TranslateFrequentlyAskedQuestionCommand
46
+ */
47
+ 'aiPromptId'?: string | null;
48
+ /**
49
+ *
50
+ * @type {string}
51
+ * @memberof TranslateFrequentlyAskedQuestionCommand
52
+ */
53
+ 'customPrompt'?: string | null;
42
54
  }
43
55
  //# sourceMappingURL=translate-frequently-asked-question-command.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"translate-frequently-asked-question-command.d.ts","sourceRoot":"","sources":["../../src/models/translate-frequently-asked-question-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,uCAAuC;IACpD;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B;;;;OAIG;IACH,cAAc,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;CACzC"}
1
+ {"version":3,"file":"translate-frequently-asked-question-command.d.ts","sourceRoot":"","sources":["../../src/models/translate-frequently-asked-question-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,uCAAuC;IACpD;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B;;;;OAIG;IACH,cAAc,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;IACtC;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAClC"}
@@ -39,5 +39,17 @@ export interface TranslateGeneralArticleCommand {
39
39
  * @memberof TranslateGeneralArticleCommand
40
40
  */
41
41
  'targetFields'?: Array<string> | null;
42
+ /**
43
+ *
44
+ * @type {string}
45
+ * @memberof TranslateGeneralArticleCommand
46
+ */
47
+ 'aiPromptId'?: string | null;
48
+ /**
49
+ *
50
+ * @type {string}
51
+ * @memberof TranslateGeneralArticleCommand
52
+ */
53
+ 'customPrompt'?: string | null;
42
54
  }
43
55
  //# sourceMappingURL=translate-general-article-command.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"translate-general-article-command.d.ts","sourceRoot":"","sources":["../../src/models/translate-general-article-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,8BAA8B;IAC3C;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B;;;;OAIG;IACH,cAAc,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;CACzC"}
1
+ {"version":3,"file":"translate-general-article-command.d.ts","sourceRoot":"","sources":["../../src/models/translate-general-article-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,8BAA8B;IAC3C;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B;;;;OAIG;IACH,cAAc,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;IACtC;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAClC"}
@@ -39,5 +39,17 @@ export interface TranslateHospitalCommand {
39
39
  * @memberof TranslateHospitalCommand
40
40
  */
41
41
  'targetFields'?: Array<string> | null;
42
+ /**
43
+ *
44
+ * @type {string}
45
+ * @memberof TranslateHospitalCommand
46
+ */
47
+ 'aiPromptId'?: string | null;
48
+ /**
49
+ *
50
+ * @type {string}
51
+ * @memberof TranslateHospitalCommand
52
+ */
53
+ 'customPrompt'?: string | null;
42
54
  }
43
55
  //# sourceMappingURL=translate-hospital-command.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"translate-hospital-command.d.ts","sourceRoot":"","sources":["../../src/models/translate-hospital-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,wBAAwB;IACrC;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B;;;;OAIG;IACH,cAAc,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;CACzC"}
1
+ {"version":3,"file":"translate-hospital-command.d.ts","sourceRoot":"","sources":["../../src/models/translate-hospital-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,wBAAwB;IACrC;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B;;;;OAIG;IACH,cAAc,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;IACtC;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAClC"}
@@ -39,5 +39,17 @@ export interface TranslateHospitalServiceCommand {
39
39
  * @memberof TranslateHospitalServiceCommand
40
40
  */
41
41
  'targetFields'?: Array<string> | null;
42
+ /**
43
+ *
44
+ * @type {string}
45
+ * @memberof TranslateHospitalServiceCommand
46
+ */
47
+ 'aiPromptId'?: string | null;
48
+ /**
49
+ *
50
+ * @type {string}
51
+ * @memberof TranslateHospitalServiceCommand
52
+ */
53
+ 'customPrompt'?: string | null;
42
54
  }
43
55
  //# sourceMappingURL=translate-hospital-service-command.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"translate-hospital-service-command.d.ts","sourceRoot":"","sources":["../../src/models/translate-hospital-service-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,+BAA+B;IAC5C;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B;;;;OAIG;IACH,cAAc,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;CACzC"}
1
+ {"version":3,"file":"translate-hospital-service-command.d.ts","sourceRoot":"","sources":["../../src/models/translate-hospital-service-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,+BAA+B;IAC5C;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B;;;;OAIG;IACH,cAAc,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;IACtC;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAClC"}
@@ -39,5 +39,17 @@ export interface TranslateHospitalSpecialtyCommand {
39
39
  * @memberof TranslateHospitalSpecialtyCommand
40
40
  */
41
41
  'targetFields'?: Array<string> | null;
42
+ /**
43
+ *
44
+ * @type {string}
45
+ * @memberof TranslateHospitalSpecialtyCommand
46
+ */
47
+ 'aiPromptId'?: string | null;
48
+ /**
49
+ *
50
+ * @type {string}
51
+ * @memberof TranslateHospitalSpecialtyCommand
52
+ */
53
+ 'customPrompt'?: string | null;
42
54
  }
43
55
  //# sourceMappingURL=translate-hospital-specialty-command.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"translate-hospital-specialty-command.d.ts","sourceRoot":"","sources":["../../src/models/translate-hospital-specialty-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,iCAAiC;IAC9C;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B;;;;OAIG;IACH,cAAc,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;CACzC"}
1
+ {"version":3,"file":"translate-hospital-specialty-command.d.ts","sourceRoot":"","sources":["../../src/models/translate-hospital-specialty-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,iCAAiC;IAC9C;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B;;;;OAIG;IACH,cAAc,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;IACtC;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAClC"}
@@ -39,5 +39,17 @@ export interface TranslateSpecialtyCommand {
39
39
  * @memberof TranslateSpecialtyCommand
40
40
  */
41
41
  'targetFields'?: Array<string> | null;
42
+ /**
43
+ *
44
+ * @type {string}
45
+ * @memberof TranslateSpecialtyCommand
46
+ */
47
+ 'aiPromptId'?: string | null;
48
+ /**
49
+ *
50
+ * @type {string}
51
+ * @memberof TranslateSpecialtyCommand
52
+ */
53
+ 'customPrompt'?: string | null;
42
54
  }
43
55
  //# sourceMappingURL=translate-specialty-command.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"translate-specialty-command.d.ts","sourceRoot":"","sources":["../../src/models/translate-specialty-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,yBAAyB;IACtC;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B;;;;OAIG;IACH,cAAc,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;CACzC"}
1
+ {"version":3,"file":"translate-specialty-command.d.ts","sourceRoot":"","sources":["../../src/models/translate-specialty-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,yBAAyB;IACtC;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B;;;;OAIG;IACH,cAAc,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;IACtC;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAClC"}
@@ -39,5 +39,17 @@ export interface TranslateSpecialtyTypeCommand {
39
39
  * @memberof TranslateSpecialtyTypeCommand
40
40
  */
41
41
  'targetFields'?: Array<string> | null;
42
+ /**
43
+ *
44
+ * @type {string}
45
+ * @memberof TranslateSpecialtyTypeCommand
46
+ */
47
+ 'aiPromptId'?: string | null;
48
+ /**
49
+ *
50
+ * @type {string}
51
+ * @memberof TranslateSpecialtyTypeCommand
52
+ */
53
+ 'customPrompt'?: string | null;
42
54
  }
43
55
  //# sourceMappingURL=translate-specialty-type-command.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"translate-specialty-type-command.d.ts","sourceRoot":"","sources":["../../src/models/translate-specialty-type-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,6BAA6B;IAC1C;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B;;;;OAIG;IACH,cAAc,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;CACzC"}
1
+ {"version":3,"file":"translate-specialty-type-command.d.ts","sourceRoot":"","sources":["../../src/models/translate-specialty-type-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,6BAA6B;IAC1C;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B;;;;OAIG;IACH,cAAc,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;IACtC;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAClC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ch-admin-api-client-typescript",
3
- "version": "5.90.7",
3
+ "version": "5.90.19",
4
4
  "description": "Openapi generated typescript-axios client for CloudHospital admin",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",