ch-admin-api-client-typescript 5.1.9 → 5.2.0

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 (94) hide show
  1. package/lib/api/grades-api.d.ts +339 -0
  2. package/lib/api/grades-api.d.ts.map +1 -0
  3. package/lib/api/grades-api.js +600 -0
  4. package/lib/api/hospitals-api.d.ts +333 -0
  5. package/lib/api/hospitals-api.d.ts.map +1 -1
  6. package/lib/api/hospitals-api.js +491 -0
  7. package/lib/api/survey-results-api.d.ts +12 -3
  8. package/lib/api/survey-results-api.d.ts.map +1 -1
  9. package/lib/api/survey-results-api.js +12 -6
  10. package/lib/api.d.ts +1 -0
  11. package/lib/api.d.ts.map +1 -1
  12. package/lib/api.js +1 -0
  13. package/lib/models/create-grade-command.d.ts +44 -0
  14. package/lib/models/create-grade-command.d.ts.map +1 -0
  15. package/lib/models/create-hospital-command.d.ts +6 -0
  16. package/lib/models/create-hospital-command.d.ts.map +1 -1
  17. package/lib/models/create-hospital-contact-command.d.ts +55 -0
  18. package/lib/models/create-hospital-contact-command.d.ts.map +1 -0
  19. package/lib/models/create-hospital-contact-command.js +15 -0
  20. package/lib/models/create-survey-form-command.d.ts +6 -0
  21. package/lib/models/create-survey-form-command.d.ts.map +1 -1
  22. package/lib/models/grade-item-model.d.ts +57 -0
  23. package/lib/models/grade-item-model.d.ts.map +1 -0
  24. package/lib/models/grade-item-model.js +15 -0
  25. package/lib/models/grade-model.d.ts +57 -0
  26. package/lib/models/grade-model.d.ts.map +1 -0
  27. package/lib/models/grade-model.js +15 -0
  28. package/lib/models/grade-targets.d.ts +22 -0
  29. package/lib/models/grade-targets.d.ts.map +1 -0
  30. package/lib/models/grade-targets.js +25 -0
  31. package/lib/models/grades-model.d.ts +33 -0
  32. package/lib/models/grades-model.d.ts.map +1 -0
  33. package/lib/models/grades-model.js +15 -0
  34. package/lib/models/{survey-result-item-model.d.ts → hospital-contact-item-model.d.ts} +18 -25
  35. package/lib/models/hospital-contact-item-model.d.ts.map +1 -0
  36. package/lib/models/hospital-contact-item-model.js +15 -0
  37. package/lib/models/hospital-contact-model.d.ts +67 -0
  38. package/lib/models/hospital-contact-model.d.ts.map +1 -0
  39. package/lib/models/hospital-contact-model.js +15 -0
  40. package/lib/models/hospital-contacts-model.d.ts +33 -0
  41. package/lib/models/hospital-contacts-model.d.ts.map +1 -0
  42. package/lib/models/hospital-contacts-model.js +15 -0
  43. package/lib/models/hospital-item-model.d.ts +13 -0
  44. package/lib/models/hospital-item-model.d.ts.map +1 -1
  45. package/lib/models/hospital-model.d.ts +13 -0
  46. package/lib/models/hospital-model.d.ts.map +1 -1
  47. package/lib/models/index.d.ts +11 -1
  48. package/lib/models/index.d.ts.map +1 -1
  49. package/lib/models/index.js +11 -1
  50. package/lib/models/survey-form-item-model.d.ts +6 -0
  51. package/lib/models/survey-form-item-model.d.ts.map +1 -1
  52. package/lib/models/survey-form-model.d.ts +6 -0
  53. package/lib/models/survey-form-model.d.ts.map +1 -1
  54. package/lib/models/survey-results-model.d.ts +3 -3
  55. package/lib/models/survey-results-model.d.ts.map +1 -1
  56. package/lib/models/update-grade-command.d.ts +37 -0
  57. package/lib/models/update-grade-command.d.ts.map +1 -0
  58. package/lib/models/update-grade-command.js +15 -0
  59. package/lib/models/update-hospital-command.d.ts +6 -0
  60. package/lib/models/update-hospital-command.d.ts.map +1 -1
  61. package/lib/models/update-hospital-contact-command.d.ts +55 -0
  62. package/lib/models/update-hospital-contact-command.d.ts.map +1 -0
  63. package/lib/models/update-hospital-contact-command.js +15 -0
  64. package/lib/models/update-survey-form-command.d.ts +6 -0
  65. package/lib/models/update-survey-form-command.d.ts.map +1 -1
  66. package/package.json +1 -1
  67. package/src/.openapi-generator/FILES +12 -1
  68. package/src/api/grades-api.ts +595 -0
  69. package/src/api/hospitals-api.ts +584 -0
  70. package/src/api/survey-results-api.ts +20 -6
  71. package/src/api.ts +1 -0
  72. package/src/models/create-grade-command.ts +51 -0
  73. package/src/models/create-hospital-command.ts +6 -0
  74. package/src/models/create-hospital-contact-command.ts +60 -0
  75. package/src/models/create-survey-form-command.ts +6 -0
  76. package/src/models/grade-item-model.ts +66 -0
  77. package/src/models/grade-model.ts +66 -0
  78. package/src/models/grade-targets.ts +31 -0
  79. package/src/models/grades-model.ts +42 -0
  80. package/src/models/{survey-result-item-model.ts → hospital-contact-item-model.ts} +17 -26
  81. package/src/models/hospital-contact-model.ts +72 -0
  82. package/src/models/hospital-contacts-model.ts +42 -0
  83. package/src/models/hospital-item-model.ts +15 -0
  84. package/src/models/hospital-model.ts +15 -0
  85. package/src/models/index.ts +11 -1
  86. package/src/models/survey-form-item-model.ts +6 -0
  87. package/src/models/survey-form-model.ts +6 -0
  88. package/src/models/survey-results-model.ts +3 -3
  89. package/src/models/update-grade-command.ts +42 -0
  90. package/src/models/update-hospital-command.ts +6 -0
  91. package/src/models/update-hospital-contact-command.ts +60 -0
  92. package/src/models/update-survey-form-command.ts +6 -0
  93. package/lib/models/survey-result-item-model.d.ts.map +0 -1
  94. /package/lib/models/{survey-result-item-model.js → create-grade-command.js} +0 -0
@@ -634,6 +634,265 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
634
634
  });
635
635
  });
636
636
  },
637
+ /**
638
+ *
639
+ * @summary Delete hospital contact
640
+ * @param {string} hospitalId
641
+ * @param {string} contactId
642
+ * @param {*} [options] Override http request option.
643
+ * @throws {RequiredError}
644
+ */
645
+ apiV1HospitalsHospitalIdContactsContactIdDelete: function (hospitalId, contactId, options) {
646
+ if (options === void 0) { options = {}; }
647
+ return __awaiter(_this, void 0, void 0, function () {
648
+ var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
649
+ return __generator(this, function (_a) {
650
+ switch (_a.label) {
651
+ case 0:
652
+ // verify required parameter 'hospitalId' is not null or undefined
653
+ (0, common_1.assertParamExists)('apiV1HospitalsHospitalIdContactsContactIdDelete', 'hospitalId', hospitalId);
654
+ // verify required parameter 'contactId' is not null or undefined
655
+ (0, common_1.assertParamExists)('apiV1HospitalsHospitalIdContactsContactIdDelete', 'contactId', contactId);
656
+ localVarPath = "/api/v1/hospitals/{hospitalId}/contacts/{contactId}"
657
+ .replace("{".concat("hospitalId", "}"), encodeURIComponent(String(hospitalId)))
658
+ .replace("{".concat("contactId", "}"), encodeURIComponent(String(contactId)));
659
+ localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
660
+ if (configuration) {
661
+ baseOptions = configuration.baseOptions;
662
+ }
663
+ localVarRequestOptions = __assign(__assign({ method: 'DELETE' }, baseOptions), options);
664
+ localVarHeaderParameter = {};
665
+ localVarQueryParameter = {};
666
+ // authentication oauth2 required
667
+ // oauth required
668
+ return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)];
669
+ case 1:
670
+ // authentication oauth2 required
671
+ // oauth required
672
+ _a.sent();
673
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
674
+ headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
675
+ localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
676
+ return [2 /*return*/, {
677
+ url: (0, common_1.toPathString)(localVarUrlObj),
678
+ options: localVarRequestOptions,
679
+ }];
680
+ }
681
+ });
682
+ });
683
+ },
684
+ /**
685
+ *
686
+ * @summary Get hospital contact
687
+ * @param {string} hospitalId
688
+ * @param {string} contactId
689
+ * @param {*} [options] Override http request option.
690
+ * @throws {RequiredError}
691
+ */
692
+ apiV1HospitalsHospitalIdContactsContactIdGet: function (hospitalId, contactId, options) {
693
+ if (options === void 0) { options = {}; }
694
+ return __awaiter(_this, void 0, void 0, function () {
695
+ var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
696
+ return __generator(this, function (_a) {
697
+ switch (_a.label) {
698
+ case 0:
699
+ // verify required parameter 'hospitalId' is not null or undefined
700
+ (0, common_1.assertParamExists)('apiV1HospitalsHospitalIdContactsContactIdGet', 'hospitalId', hospitalId);
701
+ // verify required parameter 'contactId' is not null or undefined
702
+ (0, common_1.assertParamExists)('apiV1HospitalsHospitalIdContactsContactIdGet', 'contactId', contactId);
703
+ localVarPath = "/api/v1/hospitals/{hospitalId}/contacts/{contactId}"
704
+ .replace("{".concat("hospitalId", "}"), encodeURIComponent(String(hospitalId)))
705
+ .replace("{".concat("contactId", "}"), encodeURIComponent(String(contactId)));
706
+ localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
707
+ if (configuration) {
708
+ baseOptions = configuration.baseOptions;
709
+ }
710
+ localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), options);
711
+ localVarHeaderParameter = {};
712
+ localVarQueryParameter = {};
713
+ // authentication oauth2 required
714
+ // oauth required
715
+ return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)];
716
+ case 1:
717
+ // authentication oauth2 required
718
+ // oauth required
719
+ _a.sent();
720
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
721
+ headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
722
+ localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
723
+ return [2 /*return*/, {
724
+ url: (0, common_1.toPathString)(localVarUrlObj),
725
+ options: localVarRequestOptions,
726
+ }];
727
+ }
728
+ });
729
+ });
730
+ },
731
+ /**
732
+ *
733
+ * @summary Update hospital contact
734
+ * @param {string} hospitalId
735
+ * @param {string} contactId
736
+ * @param {UpdateHospitalContactCommand} [updateHospitalContactCommand]
737
+ * @param {*} [options] Override http request option.
738
+ * @throws {RequiredError}
739
+ */
740
+ apiV1HospitalsHospitalIdContactsContactIdPut: function (hospitalId, contactId, updateHospitalContactCommand, options) {
741
+ if (options === void 0) { options = {}; }
742
+ return __awaiter(_this, void 0, void 0, function () {
743
+ var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
744
+ return __generator(this, function (_a) {
745
+ switch (_a.label) {
746
+ case 0:
747
+ // verify required parameter 'hospitalId' is not null or undefined
748
+ (0, common_1.assertParamExists)('apiV1HospitalsHospitalIdContactsContactIdPut', 'hospitalId', hospitalId);
749
+ // verify required parameter 'contactId' is not null or undefined
750
+ (0, common_1.assertParamExists)('apiV1HospitalsHospitalIdContactsContactIdPut', 'contactId', contactId);
751
+ localVarPath = "/api/v1/hospitals/{hospitalId}/contacts/{contactId}"
752
+ .replace("{".concat("hospitalId", "}"), encodeURIComponent(String(hospitalId)))
753
+ .replace("{".concat("contactId", "}"), encodeURIComponent(String(contactId)));
754
+ localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
755
+ if (configuration) {
756
+ baseOptions = configuration.baseOptions;
757
+ }
758
+ localVarRequestOptions = __assign(__assign({ method: 'PUT' }, baseOptions), options);
759
+ localVarHeaderParameter = {};
760
+ localVarQueryParameter = {};
761
+ // authentication oauth2 required
762
+ // oauth required
763
+ return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)];
764
+ case 1:
765
+ // authentication oauth2 required
766
+ // oauth required
767
+ _a.sent();
768
+ localVarHeaderParameter['Content-Type'] = 'application/json';
769
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
770
+ headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
771
+ localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
772
+ localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(updateHospitalContactCommand, localVarRequestOptions, configuration);
773
+ return [2 /*return*/, {
774
+ url: (0, common_1.toPathString)(localVarUrlObj),
775
+ options: localVarRequestOptions,
776
+ }];
777
+ }
778
+ });
779
+ });
780
+ },
781
+ /**
782
+ *
783
+ * @summary Get hospital contacts
784
+ * @param {string} hospitalId
785
+ * @param {string} [contactId]
786
+ * @param {string} [name]
787
+ * @param {string} [languageCode]
788
+ * @param {number} [page]
789
+ * @param {number} [limit]
790
+ * @param {Date} [lastRetrieved]
791
+ * @param {*} [options] Override http request option.
792
+ * @throws {RequiredError}
793
+ */
794
+ apiV1HospitalsHospitalIdContactsGet: function (hospitalId, contactId, name, languageCode, page, limit, lastRetrieved, options) {
795
+ if (options === void 0) { options = {}; }
796
+ return __awaiter(_this, void 0, void 0, function () {
797
+ var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
798
+ return __generator(this, function (_a) {
799
+ switch (_a.label) {
800
+ case 0:
801
+ // verify required parameter 'hospitalId' is not null or undefined
802
+ (0, common_1.assertParamExists)('apiV1HospitalsHospitalIdContactsGet', 'hospitalId', hospitalId);
803
+ localVarPath = "/api/v1/hospitals/{hospitalId}/contacts"
804
+ .replace("{".concat("hospitalId", "}"), encodeURIComponent(String(hospitalId)));
805
+ localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
806
+ if (configuration) {
807
+ baseOptions = configuration.baseOptions;
808
+ }
809
+ localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), options);
810
+ localVarHeaderParameter = {};
811
+ localVarQueryParameter = {};
812
+ // authentication oauth2 required
813
+ // oauth required
814
+ return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)];
815
+ case 1:
816
+ // authentication oauth2 required
817
+ // oauth required
818
+ _a.sent();
819
+ if (contactId !== undefined) {
820
+ localVarQueryParameter['ContactId'] = contactId;
821
+ }
822
+ if (name !== undefined) {
823
+ localVarQueryParameter['Name'] = name;
824
+ }
825
+ if (languageCode !== undefined) {
826
+ localVarQueryParameter['LanguageCode'] = languageCode;
827
+ }
828
+ if (page !== undefined) {
829
+ localVarQueryParameter['page'] = page;
830
+ }
831
+ if (limit !== undefined) {
832
+ localVarQueryParameter['limit'] = limit;
833
+ }
834
+ if (lastRetrieved !== undefined) {
835
+ localVarQueryParameter['lastRetrieved'] = (lastRetrieved instanceof Date) ?
836
+ lastRetrieved.toISOString() :
837
+ lastRetrieved;
838
+ }
839
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
840
+ headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
841
+ localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
842
+ return [2 /*return*/, {
843
+ url: (0, common_1.toPathString)(localVarUrlObj),
844
+ options: localVarRequestOptions,
845
+ }];
846
+ }
847
+ });
848
+ });
849
+ },
850
+ /**
851
+ *
852
+ * @summary Create hospital contact
853
+ * @param {string} hospitalId
854
+ * @param {CreateHospitalContactCommand} [createHospitalContactCommand]
855
+ * @param {*} [options] Override http request option.
856
+ * @throws {RequiredError}
857
+ */
858
+ apiV1HospitalsHospitalIdContactsPost: function (hospitalId, createHospitalContactCommand, options) {
859
+ if (options === void 0) { options = {}; }
860
+ return __awaiter(_this, void 0, void 0, function () {
861
+ var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
862
+ return __generator(this, function (_a) {
863
+ switch (_a.label) {
864
+ case 0:
865
+ // verify required parameter 'hospitalId' is not null or undefined
866
+ (0, common_1.assertParamExists)('apiV1HospitalsHospitalIdContactsPost', 'hospitalId', hospitalId);
867
+ localVarPath = "/api/v1/hospitals/{hospitalId}/contacts"
868
+ .replace("{".concat("hospitalId", "}"), encodeURIComponent(String(hospitalId)));
869
+ localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
870
+ if (configuration) {
871
+ baseOptions = configuration.baseOptions;
872
+ }
873
+ localVarRequestOptions = __assign(__assign({ method: 'POST' }, baseOptions), options);
874
+ localVarHeaderParameter = {};
875
+ localVarQueryParameter = {};
876
+ // authentication oauth2 required
877
+ // oauth required
878
+ return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)];
879
+ case 1:
880
+ // authentication oauth2 required
881
+ // oauth required
882
+ _a.sent();
883
+ localVarHeaderParameter['Content-Type'] = 'application/json';
884
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
885
+ headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
886
+ localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
887
+ localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(createHospitalContactCommand, localVarRequestOptions, configuration);
888
+ return [2 /*return*/, {
889
+ url: (0, common_1.toPathString)(localVarUrlObj),
890
+ options: localVarRequestOptions,
891
+ }];
892
+ }
893
+ });
894
+ });
895
+ },
637
896
  /**
638
897
  *
639
898
  * @summary Delete Hospital.
@@ -5556,6 +5815,117 @@ var HospitalsApiFp = function (configuration) {
5556
5815
  });
5557
5816
  });
5558
5817
  },
5818
+ /**
5819
+ *
5820
+ * @summary Delete hospital contact
5821
+ * @param {string} hospitalId
5822
+ * @param {string} contactId
5823
+ * @param {*} [options] Override http request option.
5824
+ * @throws {RequiredError}
5825
+ */
5826
+ apiV1HospitalsHospitalIdContactsContactIdDelete: function (hospitalId, contactId, options) {
5827
+ return __awaiter(this, void 0, void 0, function () {
5828
+ var localVarAxiosArgs;
5829
+ return __generator(this, function (_a) {
5830
+ switch (_a.label) {
5831
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsHospitalIdContactsContactIdDelete(hospitalId, contactId, options)];
5832
+ case 1:
5833
+ localVarAxiosArgs = _a.sent();
5834
+ return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
5835
+ }
5836
+ });
5837
+ });
5838
+ },
5839
+ /**
5840
+ *
5841
+ * @summary Get hospital contact
5842
+ * @param {string} hospitalId
5843
+ * @param {string} contactId
5844
+ * @param {*} [options] Override http request option.
5845
+ * @throws {RequiredError}
5846
+ */
5847
+ apiV1HospitalsHospitalIdContactsContactIdGet: function (hospitalId, contactId, options) {
5848
+ return __awaiter(this, void 0, void 0, function () {
5849
+ var localVarAxiosArgs;
5850
+ return __generator(this, function (_a) {
5851
+ switch (_a.label) {
5852
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsHospitalIdContactsContactIdGet(hospitalId, contactId, options)];
5853
+ case 1:
5854
+ localVarAxiosArgs = _a.sent();
5855
+ return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
5856
+ }
5857
+ });
5858
+ });
5859
+ },
5860
+ /**
5861
+ *
5862
+ * @summary Update hospital contact
5863
+ * @param {string} hospitalId
5864
+ * @param {string} contactId
5865
+ * @param {UpdateHospitalContactCommand} [updateHospitalContactCommand]
5866
+ * @param {*} [options] Override http request option.
5867
+ * @throws {RequiredError}
5868
+ */
5869
+ apiV1HospitalsHospitalIdContactsContactIdPut: function (hospitalId, contactId, updateHospitalContactCommand, options) {
5870
+ return __awaiter(this, void 0, void 0, function () {
5871
+ var localVarAxiosArgs;
5872
+ return __generator(this, function (_a) {
5873
+ switch (_a.label) {
5874
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsHospitalIdContactsContactIdPut(hospitalId, contactId, updateHospitalContactCommand, options)];
5875
+ case 1:
5876
+ localVarAxiosArgs = _a.sent();
5877
+ return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
5878
+ }
5879
+ });
5880
+ });
5881
+ },
5882
+ /**
5883
+ *
5884
+ * @summary Get hospital contacts
5885
+ * @param {string} hospitalId
5886
+ * @param {string} [contactId]
5887
+ * @param {string} [name]
5888
+ * @param {string} [languageCode]
5889
+ * @param {number} [page]
5890
+ * @param {number} [limit]
5891
+ * @param {Date} [lastRetrieved]
5892
+ * @param {*} [options] Override http request option.
5893
+ * @throws {RequiredError}
5894
+ */
5895
+ apiV1HospitalsHospitalIdContactsGet: function (hospitalId, contactId, name, languageCode, page, limit, lastRetrieved, options) {
5896
+ return __awaiter(this, void 0, void 0, function () {
5897
+ var localVarAxiosArgs;
5898
+ return __generator(this, function (_a) {
5899
+ switch (_a.label) {
5900
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsHospitalIdContactsGet(hospitalId, contactId, name, languageCode, page, limit, lastRetrieved, options)];
5901
+ case 1:
5902
+ localVarAxiosArgs = _a.sent();
5903
+ return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
5904
+ }
5905
+ });
5906
+ });
5907
+ },
5908
+ /**
5909
+ *
5910
+ * @summary Create hospital contact
5911
+ * @param {string} hospitalId
5912
+ * @param {CreateHospitalContactCommand} [createHospitalContactCommand]
5913
+ * @param {*} [options] Override http request option.
5914
+ * @throws {RequiredError}
5915
+ */
5916
+ apiV1HospitalsHospitalIdContactsPost: function (hospitalId, createHospitalContactCommand, options) {
5917
+ return __awaiter(this, void 0, void 0, function () {
5918
+ var localVarAxiosArgs;
5919
+ return __generator(this, function (_a) {
5920
+ switch (_a.label) {
5921
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsHospitalIdContactsPost(hospitalId, createHospitalContactCommand, options)];
5922
+ case 1:
5923
+ localVarAxiosArgs = _a.sent();
5924
+ return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
5925
+ }
5926
+ });
5927
+ });
5928
+ },
5559
5929
  /**
5560
5930
  *
5561
5931
  * @summary Delete Hospital.
@@ -7637,6 +8007,67 @@ var HospitalsApiFactory = function (configuration, basePath, axios) {
7637
8007
  apiV1HospitalsHospitalIdAppointmenttimetablesGet: function (hospitalId, dayOfWeek, page, limit, lastRetrieved, options) {
7638
8008
  return localVarFp.apiV1HospitalsHospitalIdAppointmenttimetablesGet(hospitalId, dayOfWeek, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
7639
8009
  },
8010
+ /**
8011
+ *
8012
+ * @summary Delete hospital contact
8013
+ * @param {string} hospitalId
8014
+ * @param {string} contactId
8015
+ * @param {*} [options] Override http request option.
8016
+ * @throws {RequiredError}
8017
+ */
8018
+ apiV1HospitalsHospitalIdContactsContactIdDelete: function (hospitalId, contactId, options) {
8019
+ return localVarFp.apiV1HospitalsHospitalIdContactsContactIdDelete(hospitalId, contactId, options).then(function (request) { return request(axios, basePath); });
8020
+ },
8021
+ /**
8022
+ *
8023
+ * @summary Get hospital contact
8024
+ * @param {string} hospitalId
8025
+ * @param {string} contactId
8026
+ * @param {*} [options] Override http request option.
8027
+ * @throws {RequiredError}
8028
+ */
8029
+ apiV1HospitalsHospitalIdContactsContactIdGet: function (hospitalId, contactId, options) {
8030
+ return localVarFp.apiV1HospitalsHospitalIdContactsContactIdGet(hospitalId, contactId, options).then(function (request) { return request(axios, basePath); });
8031
+ },
8032
+ /**
8033
+ *
8034
+ * @summary Update hospital contact
8035
+ * @param {string} hospitalId
8036
+ * @param {string} contactId
8037
+ * @param {UpdateHospitalContactCommand} [updateHospitalContactCommand]
8038
+ * @param {*} [options] Override http request option.
8039
+ * @throws {RequiredError}
8040
+ */
8041
+ apiV1HospitalsHospitalIdContactsContactIdPut: function (hospitalId, contactId, updateHospitalContactCommand, options) {
8042
+ return localVarFp.apiV1HospitalsHospitalIdContactsContactIdPut(hospitalId, contactId, updateHospitalContactCommand, options).then(function (request) { return request(axios, basePath); });
8043
+ },
8044
+ /**
8045
+ *
8046
+ * @summary Get hospital contacts
8047
+ * @param {string} hospitalId
8048
+ * @param {string} [contactId]
8049
+ * @param {string} [name]
8050
+ * @param {string} [languageCode]
8051
+ * @param {number} [page]
8052
+ * @param {number} [limit]
8053
+ * @param {Date} [lastRetrieved]
8054
+ * @param {*} [options] Override http request option.
8055
+ * @throws {RequiredError}
8056
+ */
8057
+ apiV1HospitalsHospitalIdContactsGet: function (hospitalId, contactId, name, languageCode, page, limit, lastRetrieved, options) {
8058
+ return localVarFp.apiV1HospitalsHospitalIdContactsGet(hospitalId, contactId, name, languageCode, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
8059
+ },
8060
+ /**
8061
+ *
8062
+ * @summary Create hospital contact
8063
+ * @param {string} hospitalId
8064
+ * @param {CreateHospitalContactCommand} [createHospitalContactCommand]
8065
+ * @param {*} [options] Override http request option.
8066
+ * @throws {RequiredError}
8067
+ */
8068
+ apiV1HospitalsHospitalIdContactsPost: function (hospitalId, createHospitalContactCommand, options) {
8069
+ return localVarFp.apiV1HospitalsHospitalIdContactsPost(hospitalId, createHospitalContactCommand, options).then(function (request) { return request(axios, basePath); });
8070
+ },
7640
8071
  /**
7641
8072
  *
7642
8073
  * @summary Delete Hospital.
@@ -8865,6 +9296,66 @@ var HospitalsApi = /** @class */ (function (_super) {
8865
9296
  var _this = this;
8866
9297
  return (0, exports.HospitalsApiFp)(this.configuration).apiV1HospitalsHospitalIdAppointmenttimetablesGet(requestParameters.hospitalId, requestParameters.dayOfWeek, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
8867
9298
  };
9299
+ /**
9300
+ *
9301
+ * @summary Delete hospital contact
9302
+ * @param {HospitalsApiApiV1HospitalsHospitalIdContactsContactIdDeleteRequest} requestParameters Request parameters.
9303
+ * @param {*} [options] Override http request option.
9304
+ * @throws {RequiredError}
9305
+ * @memberof HospitalsApi
9306
+ */
9307
+ HospitalsApi.prototype.apiV1HospitalsHospitalIdContactsContactIdDelete = function (requestParameters, options) {
9308
+ var _this = this;
9309
+ return (0, exports.HospitalsApiFp)(this.configuration).apiV1HospitalsHospitalIdContactsContactIdDelete(requestParameters.hospitalId, requestParameters.contactId, options).then(function (request) { return request(_this.axios, _this.basePath); });
9310
+ };
9311
+ /**
9312
+ *
9313
+ * @summary Get hospital contact
9314
+ * @param {HospitalsApiApiV1HospitalsHospitalIdContactsContactIdGetRequest} requestParameters Request parameters.
9315
+ * @param {*} [options] Override http request option.
9316
+ * @throws {RequiredError}
9317
+ * @memberof HospitalsApi
9318
+ */
9319
+ HospitalsApi.prototype.apiV1HospitalsHospitalIdContactsContactIdGet = function (requestParameters, options) {
9320
+ var _this = this;
9321
+ return (0, exports.HospitalsApiFp)(this.configuration).apiV1HospitalsHospitalIdContactsContactIdGet(requestParameters.hospitalId, requestParameters.contactId, options).then(function (request) { return request(_this.axios, _this.basePath); });
9322
+ };
9323
+ /**
9324
+ *
9325
+ * @summary Update hospital contact
9326
+ * @param {HospitalsApiApiV1HospitalsHospitalIdContactsContactIdPutRequest} requestParameters Request parameters.
9327
+ * @param {*} [options] Override http request option.
9328
+ * @throws {RequiredError}
9329
+ * @memberof HospitalsApi
9330
+ */
9331
+ HospitalsApi.prototype.apiV1HospitalsHospitalIdContactsContactIdPut = function (requestParameters, options) {
9332
+ var _this = this;
9333
+ return (0, exports.HospitalsApiFp)(this.configuration).apiV1HospitalsHospitalIdContactsContactIdPut(requestParameters.hospitalId, requestParameters.contactId, requestParameters.updateHospitalContactCommand, options).then(function (request) { return request(_this.axios, _this.basePath); });
9334
+ };
9335
+ /**
9336
+ *
9337
+ * @summary Get hospital contacts
9338
+ * @param {HospitalsApiApiV1HospitalsHospitalIdContactsGetRequest} requestParameters Request parameters.
9339
+ * @param {*} [options] Override http request option.
9340
+ * @throws {RequiredError}
9341
+ * @memberof HospitalsApi
9342
+ */
9343
+ HospitalsApi.prototype.apiV1HospitalsHospitalIdContactsGet = function (requestParameters, options) {
9344
+ var _this = this;
9345
+ return (0, exports.HospitalsApiFp)(this.configuration).apiV1HospitalsHospitalIdContactsGet(requestParameters.hospitalId, requestParameters.contactId, requestParameters.name, requestParameters.languageCode, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
9346
+ };
9347
+ /**
9348
+ *
9349
+ * @summary Create hospital contact
9350
+ * @param {HospitalsApiApiV1HospitalsHospitalIdContactsPostRequest} requestParameters Request parameters.
9351
+ * @param {*} [options] Override http request option.
9352
+ * @throws {RequiredError}
9353
+ * @memberof HospitalsApi
9354
+ */
9355
+ HospitalsApi.prototype.apiV1HospitalsHospitalIdContactsPost = function (requestParameters, options) {
9356
+ var _this = this;
9357
+ return (0, exports.HospitalsApiFp)(this.configuration).apiV1HospitalsHospitalIdContactsPost(requestParameters.hospitalId, requestParameters.createHospitalContactCommand, options).then(function (request) { return request(_this.axios, _this.basePath); });
9358
+ };
8868
9359
  /**
8869
9360
  *
8870
9361
  * @summary Delete Hospital.
@@ -24,6 +24,7 @@ export declare const SurveyResultsApiAxiosParamCreator: (configuration?: Configu
24
24
  * @summary Get survey results
25
25
  * @param {string} [id]
26
26
  * @param {string} [hospitalId]
27
+ * @param {string} [surveyFormId]
27
28
  * @param {string} [name]
28
29
  * @param {string} [languageCode]
29
30
  * @param {number} [page]
@@ -32,7 +33,7 @@ export declare const SurveyResultsApiAxiosParamCreator: (configuration?: Configu
32
33
  * @param {*} [options] Override http request option.
33
34
  * @throws {RequiredError}
34
35
  */
35
- apiV1SurveyresultsGet: (id?: string, hospitalId?: string, name?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
36
+ apiV1SurveyresultsGet: (id?: string, hospitalId?: string, surveyFormId?: string, name?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
36
37
  /**
37
38
  *
38
39
  * @summary Delete survey result
@@ -60,6 +61,7 @@ export declare const SurveyResultsApiFp: (configuration?: Configuration) => {
60
61
  * @summary Get survey results
61
62
  * @param {string} [id]
62
63
  * @param {string} [hospitalId]
64
+ * @param {string} [surveyFormId]
63
65
  * @param {string} [name]
64
66
  * @param {string} [languageCode]
65
67
  * @param {number} [page]
@@ -68,7 +70,7 @@ export declare const SurveyResultsApiFp: (configuration?: Configuration) => {
68
70
  * @param {*} [options] Override http request option.
69
71
  * @throws {RequiredError}
70
72
  */
71
- apiV1SurveyresultsGet(id?: string, hospitalId?: string, name?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SurveyResultsModel>>;
73
+ apiV1SurveyresultsGet(id?: string, hospitalId?: string, surveyFormId?: string, name?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SurveyResultsModel>>;
72
74
  /**
73
75
  *
74
76
  * @summary Delete survey result
@@ -96,6 +98,7 @@ export declare const SurveyResultsApiFactory: (configuration?: Configuration, ba
96
98
  * @summary Get survey results
97
99
  * @param {string} [id]
98
100
  * @param {string} [hospitalId]
101
+ * @param {string} [surveyFormId]
99
102
  * @param {string} [name]
100
103
  * @param {string} [languageCode]
101
104
  * @param {number} [page]
@@ -104,7 +107,7 @@ export declare const SurveyResultsApiFactory: (configuration?: Configuration, ba
104
107
  * @param {*} [options] Override http request option.
105
108
  * @throws {RequiredError}
106
109
  */
107
- apiV1SurveyresultsGet(id?: string, hospitalId?: string, name?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<SurveyResultsModel>;
110
+ apiV1SurveyresultsGet(id?: string, hospitalId?: string, surveyFormId?: string, name?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<SurveyResultsModel>;
108
111
  /**
109
112
  *
110
113
  * @summary Delete survey result
@@ -140,6 +143,12 @@ export interface SurveyResultsApiApiV1SurveyresultsGetRequest {
140
143
  * @memberof SurveyResultsApiApiV1SurveyresultsGet
141
144
  */
142
145
  readonly hospitalId?: string;
146
+ /**
147
+ *
148
+ * @type {string}
149
+ * @memberof SurveyResultsApiApiV1SurveyresultsGet
150
+ */
151
+ readonly surveyFormId?: string;
143
152
  /**
144
153
  *
145
154
  * @type {string}
@@ -1 +1 @@
1
- {"version":3,"file":"survey-results-api.d.ts","sourceRoot":"","sources":["../../src/api/survey-results-api.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"survey-results-api.d.ts","sourceRoot":"","sources":["../../src/api/survey-results-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;AAI7F,OAAO,EAAE,iBAAiB,EAAE,MAAM,WAAW,CAAC;AAE9C,OAAO,EAAE,kBAAkB,EAAE,MAAM,WAAW,CAAC;AAC/C;;;GAGG;AACH,eAAO,MAAM,iCAAiC,mBAA6B,aAAa;IAEhF;;;;;;;;;;;;;OAaG;iCACgC,MAAM,eAAe,MAAM,iBAAiB,MAAM,SAAS,MAAM,iBAAiB,MAAM,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IA8DzO;;;;;;OAMG;6DAC4D,MAAM,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IA+B9H;;;;;;OAMG;0DACyD,MAAM,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;CAgClI,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,kBAAkB,mBAA4B,aAAa;IAGhE;;;;;;;;;;;;;OAaG;+BAC8B,MAAM,eAAe,MAAM,iBAAiB,MAAM,SAAS,MAAM,iBAAiB,MAAM,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAY,kBAAkB,oBAAoB,aAAa,aAAa,MAAM,KAAK,aAAa,kBAAkB,CAAC;IAIrS;;;;;;OAMG;2DAC0D,MAAM,YAAY,kBAAkB,oBAAoB,aAAa,aAAa,MAAM,KAAK,aAAa,OAAO,CAAC;IAI/K;;;;;;OAMG;wDACuD,MAAM,YAAY,kBAAkB,oBAAoB,aAAa,aAAa,MAAM,KAAK,aAAa,iBAAiB,CAAC;CAK7L,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,uBAAuB,mBAA6B,aAAa,aAAa,MAAM,UAAU,aAAa;IAGhH;;;;;;;;;;;;;OAaG;+BACwB,MAAM,eAAe,MAAM,iBAAiB,MAAM,SAAS,MAAM,iBAAiB,MAAM,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAY,GAAG,GAAG,aAAa,kBAAkB,CAAC;IAG1N;;;;;;OAMG;2DACoD,MAAM,YAAY,GAAG,GAAG,aAAa,OAAO,CAAC;IAGpG;;;;;;OAMG;wDACiD,MAAM,YAAY,GAAG,GAAG,aAAa,iBAAiB,CAAC;CAIlH,CAAC;AAEF;;;;GAIG;AACH,MAAM,WAAW,4CAA4C;IACzD;;;;OAIG;IACH,QAAQ,CAAC,EAAE,CAAC,EAAE,MAAM,CAAA;IAEpB;;;;OAIG;IACH,QAAQ,CAAC,UAAU,CAAC,EAAE,MAAM,CAAA;IAE5B;;;;OAIG;IACH,QAAQ,CAAC,YAAY,CAAC,EAAE,MAAM,CAAA;IAE9B;;;;OAIG;IACH,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,CAAA;IAEtB;;;;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,6DAA6D;IAC1E;;;;OAIG;IACH,QAAQ,CAAC,cAAc,EAAE,MAAM,CAAA;CAClC;AAED;;;;GAIG;AACH,MAAM,WAAW,0DAA0D;IACvE;;;;OAIG;IACH,QAAQ,CAAC,cAAc,EAAE,MAAM,CAAA;CAClC;AAED;;;;;GAKG;AACH,qBAAa,gBAAiB,SAAQ,OAAO;IACzC;;;;;;;OAOG;IACI,qBAAqB,CAAC,iBAAiB,GAAE,4CAAiD,EAAE,OAAO,CAAC,EAAE,kBAAkB;IAI/H;;;;;;;OAOG;IACI,sCAAsC,CAAC,iBAAiB,EAAE,6DAA6D,EAAE,OAAO,CAAC,EAAE,kBAAkB;IAI5J;;;;;;;OAOG;IACI,mCAAmC,CAAC,iBAAiB,EAAE,0DAA0D,EAAE,OAAO,CAAC,EAAE,kBAAkB;CAGzJ"}