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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (99) 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 +343 -0
  5. package/lib/api/hospitals-api.d.ts.map +1 -1
  6. package/lib/api/hospitals-api.js +497 -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/contact-scope.d.ts +22 -0
  14. package/lib/models/contact-scope.d.ts.map +1 -0
  15. package/lib/models/contact-scope.js +25 -0
  16. package/lib/models/create-grade-command.d.ts +44 -0
  17. package/lib/models/create-grade-command.d.ts.map +1 -0
  18. package/lib/models/create-hospital-command.d.ts +6 -0
  19. package/lib/models/create-hospital-command.d.ts.map +1 -1
  20. package/lib/models/create-hospital-contact-command.d.ts +62 -0
  21. package/lib/models/create-hospital-contact-command.d.ts.map +1 -0
  22. package/lib/models/create-hospital-contact-command.js +15 -0
  23. package/lib/models/create-survey-form-command.d.ts +6 -0
  24. package/lib/models/create-survey-form-command.d.ts.map +1 -1
  25. package/lib/models/grade-item-model.d.ts +57 -0
  26. package/lib/models/grade-item-model.d.ts.map +1 -0
  27. package/lib/models/grade-item-model.js +15 -0
  28. package/lib/models/grade-model.d.ts +57 -0
  29. package/lib/models/grade-model.d.ts.map +1 -0
  30. package/lib/models/grade-model.js +15 -0
  31. package/lib/models/grade-targets.d.ts +22 -0
  32. package/lib/models/grade-targets.d.ts.map +1 -0
  33. package/lib/models/grade-targets.js +25 -0
  34. package/lib/models/grades-model.d.ts +33 -0
  35. package/lib/models/grades-model.d.ts.map +1 -0
  36. package/lib/models/grades-model.js +15 -0
  37. package/lib/models/hospital-contact-item-model.d.ts +80 -0
  38. package/lib/models/hospital-contact-item-model.d.ts.map +1 -0
  39. package/lib/models/hospital-contact-item-model.js +15 -0
  40. package/lib/models/hospital-contact-model.d.ts +80 -0
  41. package/lib/models/hospital-contact-model.d.ts.map +1 -0
  42. package/lib/models/hospital-contact-model.js +15 -0
  43. package/lib/models/hospital-contacts-model.d.ts +33 -0
  44. package/lib/models/hospital-contacts-model.d.ts.map +1 -0
  45. package/lib/models/hospital-contacts-model.js +15 -0
  46. package/lib/models/hospital-item-model.d.ts +13 -0
  47. package/lib/models/hospital-item-model.d.ts.map +1 -1
  48. package/lib/models/hospital-model.d.ts +13 -0
  49. package/lib/models/hospital-model.d.ts.map +1 -1
  50. package/lib/models/index.d.ts +12 -1
  51. package/lib/models/index.d.ts.map +1 -1
  52. package/lib/models/index.js +12 -1
  53. package/lib/models/survey-form-item-model.d.ts +6 -0
  54. package/lib/models/survey-form-item-model.d.ts.map +1 -1
  55. package/lib/models/survey-form-model.d.ts +6 -0
  56. package/lib/models/survey-form-model.d.ts.map +1 -1
  57. package/lib/models/survey-results-model.d.ts +3 -3
  58. package/lib/models/survey-results-model.d.ts.map +1 -1
  59. package/lib/models/update-grade-command.d.ts +37 -0
  60. package/lib/models/update-grade-command.d.ts.map +1 -0
  61. package/lib/models/update-grade-command.js +15 -0
  62. package/lib/models/update-hospital-command.d.ts +6 -0
  63. package/lib/models/update-hospital-command.d.ts.map +1 -1
  64. package/lib/models/update-hospital-contact-command.d.ts +62 -0
  65. package/lib/models/update-hospital-contact-command.d.ts.map +1 -0
  66. package/lib/models/update-hospital-contact-command.js +15 -0
  67. package/lib/models/update-survey-form-command.d.ts +6 -0
  68. package/lib/models/update-survey-form-command.d.ts.map +1 -1
  69. package/package.json +1 -1
  70. package/src/.openapi-generator/FILES +13 -1
  71. package/src/api/grades-api.ts +595 -0
  72. package/src/api/hospitals-api.ts +600 -0
  73. package/src/api/survey-results-api.ts +20 -6
  74. package/src/api.ts +1 -0
  75. package/src/models/contact-scope.ts +31 -0
  76. package/src/models/create-grade-command.ts +51 -0
  77. package/src/models/create-hospital-command.ts +6 -0
  78. package/src/models/create-hospital-contact-command.ts +69 -0
  79. package/src/models/create-survey-form-command.ts +6 -0
  80. package/src/models/grade-item-model.ts +66 -0
  81. package/src/models/grade-model.ts +66 -0
  82. package/src/models/grade-targets.ts +31 -0
  83. package/src/models/grades-model.ts +42 -0
  84. package/src/models/hospital-contact-item-model.ts +87 -0
  85. package/src/models/{survey-result-item-model.ts → hospital-contact-model.ts} +27 -21
  86. package/src/models/hospital-contacts-model.ts +42 -0
  87. package/src/models/hospital-item-model.ts +15 -0
  88. package/src/models/hospital-model.ts +15 -0
  89. package/src/models/index.ts +12 -1
  90. package/src/models/survey-form-item-model.ts +6 -0
  91. package/src/models/survey-form-model.ts +6 -0
  92. package/src/models/survey-results-model.ts +3 -3
  93. package/src/models/update-grade-command.ts +42 -0
  94. package/src/models/update-hospital-command.ts +6 -0
  95. package/src/models/update-hospital-contact-command.ts +69 -0
  96. package/src/models/update-survey-form-command.ts +6 -0
  97. package/lib/models/survey-result-item-model.d.ts +0 -74
  98. package/lib/models/survey-result-item-model.d.ts.map +0 -1
  99. /package/lib/models/{survey-result-item-model.js → create-grade-command.js} +0 -0
@@ -634,6 +634,269 @@ 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 {ContactScope} [scope]
787
+ * @param {string} [name]
788
+ * @param {string} [languageCode]
789
+ * @param {number} [page]
790
+ * @param {number} [limit]
791
+ * @param {Date} [lastRetrieved]
792
+ * @param {*} [options] Override http request option.
793
+ * @throws {RequiredError}
794
+ */
795
+ apiV1HospitalsHospitalIdContactsGet: function (hospitalId, contactId, scope, name, languageCode, page, limit, lastRetrieved, options) {
796
+ if (options === void 0) { options = {}; }
797
+ return __awaiter(_this, void 0, void 0, function () {
798
+ var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
799
+ return __generator(this, function (_a) {
800
+ switch (_a.label) {
801
+ case 0:
802
+ // verify required parameter 'hospitalId' is not null or undefined
803
+ (0, common_1.assertParamExists)('apiV1HospitalsHospitalIdContactsGet', 'hospitalId', hospitalId);
804
+ localVarPath = "/api/v1/hospitals/{hospitalId}/contacts"
805
+ .replace("{".concat("hospitalId", "}"), encodeURIComponent(String(hospitalId)));
806
+ localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
807
+ if (configuration) {
808
+ baseOptions = configuration.baseOptions;
809
+ }
810
+ localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), options);
811
+ localVarHeaderParameter = {};
812
+ localVarQueryParameter = {};
813
+ // authentication oauth2 required
814
+ // oauth required
815
+ return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)];
816
+ case 1:
817
+ // authentication oauth2 required
818
+ // oauth required
819
+ _a.sent();
820
+ if (contactId !== undefined) {
821
+ localVarQueryParameter['ContactId'] = contactId;
822
+ }
823
+ if (scope !== undefined) {
824
+ localVarQueryParameter['Scope'] = scope;
825
+ }
826
+ if (name !== undefined) {
827
+ localVarQueryParameter['Name'] = name;
828
+ }
829
+ if (languageCode !== undefined) {
830
+ localVarQueryParameter['LanguageCode'] = languageCode;
831
+ }
832
+ if (page !== undefined) {
833
+ localVarQueryParameter['page'] = page;
834
+ }
835
+ if (limit !== undefined) {
836
+ localVarQueryParameter['limit'] = limit;
837
+ }
838
+ if (lastRetrieved !== undefined) {
839
+ localVarQueryParameter['lastRetrieved'] = (lastRetrieved instanceof Date) ?
840
+ lastRetrieved.toISOString() :
841
+ lastRetrieved;
842
+ }
843
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
844
+ headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
845
+ localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
846
+ return [2 /*return*/, {
847
+ url: (0, common_1.toPathString)(localVarUrlObj),
848
+ options: localVarRequestOptions,
849
+ }];
850
+ }
851
+ });
852
+ });
853
+ },
854
+ /**
855
+ *
856
+ * @summary Create hospital contact
857
+ * @param {string} hospitalId
858
+ * @param {CreateHospitalContactCommand} [createHospitalContactCommand]
859
+ * @param {*} [options] Override http request option.
860
+ * @throws {RequiredError}
861
+ */
862
+ apiV1HospitalsHospitalIdContactsPost: function (hospitalId, createHospitalContactCommand, options) {
863
+ if (options === void 0) { options = {}; }
864
+ return __awaiter(_this, void 0, void 0, function () {
865
+ var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
866
+ return __generator(this, function (_a) {
867
+ switch (_a.label) {
868
+ case 0:
869
+ // verify required parameter 'hospitalId' is not null or undefined
870
+ (0, common_1.assertParamExists)('apiV1HospitalsHospitalIdContactsPost', 'hospitalId', hospitalId);
871
+ localVarPath = "/api/v1/hospitals/{hospitalId}/contacts"
872
+ .replace("{".concat("hospitalId", "}"), encodeURIComponent(String(hospitalId)));
873
+ localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
874
+ if (configuration) {
875
+ baseOptions = configuration.baseOptions;
876
+ }
877
+ localVarRequestOptions = __assign(__assign({ method: 'POST' }, baseOptions), options);
878
+ localVarHeaderParameter = {};
879
+ localVarQueryParameter = {};
880
+ // authentication oauth2 required
881
+ // oauth required
882
+ return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)];
883
+ case 1:
884
+ // authentication oauth2 required
885
+ // oauth required
886
+ _a.sent();
887
+ localVarHeaderParameter['Content-Type'] = 'application/json';
888
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
889
+ headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
890
+ localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
891
+ localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(createHospitalContactCommand, localVarRequestOptions, configuration);
892
+ return [2 /*return*/, {
893
+ url: (0, common_1.toPathString)(localVarUrlObj),
894
+ options: localVarRequestOptions,
895
+ }];
896
+ }
897
+ });
898
+ });
899
+ },
637
900
  /**
638
901
  *
639
902
  * @summary Delete Hospital.
@@ -5556,6 +5819,118 @@ var HospitalsApiFp = function (configuration) {
5556
5819
  });
5557
5820
  });
5558
5821
  },
5822
+ /**
5823
+ *
5824
+ * @summary Delete hospital contact
5825
+ * @param {string} hospitalId
5826
+ * @param {string} contactId
5827
+ * @param {*} [options] Override http request option.
5828
+ * @throws {RequiredError}
5829
+ */
5830
+ apiV1HospitalsHospitalIdContactsContactIdDelete: function (hospitalId, contactId, options) {
5831
+ return __awaiter(this, void 0, void 0, function () {
5832
+ var localVarAxiosArgs;
5833
+ return __generator(this, function (_a) {
5834
+ switch (_a.label) {
5835
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsHospitalIdContactsContactIdDelete(hospitalId, contactId, options)];
5836
+ case 1:
5837
+ localVarAxiosArgs = _a.sent();
5838
+ return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
5839
+ }
5840
+ });
5841
+ });
5842
+ },
5843
+ /**
5844
+ *
5845
+ * @summary Get hospital contact
5846
+ * @param {string} hospitalId
5847
+ * @param {string} contactId
5848
+ * @param {*} [options] Override http request option.
5849
+ * @throws {RequiredError}
5850
+ */
5851
+ apiV1HospitalsHospitalIdContactsContactIdGet: function (hospitalId, contactId, options) {
5852
+ return __awaiter(this, void 0, void 0, function () {
5853
+ var localVarAxiosArgs;
5854
+ return __generator(this, function (_a) {
5855
+ switch (_a.label) {
5856
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsHospitalIdContactsContactIdGet(hospitalId, contactId, options)];
5857
+ case 1:
5858
+ localVarAxiosArgs = _a.sent();
5859
+ return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
5860
+ }
5861
+ });
5862
+ });
5863
+ },
5864
+ /**
5865
+ *
5866
+ * @summary Update hospital contact
5867
+ * @param {string} hospitalId
5868
+ * @param {string} contactId
5869
+ * @param {UpdateHospitalContactCommand} [updateHospitalContactCommand]
5870
+ * @param {*} [options] Override http request option.
5871
+ * @throws {RequiredError}
5872
+ */
5873
+ apiV1HospitalsHospitalIdContactsContactIdPut: function (hospitalId, contactId, updateHospitalContactCommand, options) {
5874
+ return __awaiter(this, void 0, void 0, function () {
5875
+ var localVarAxiosArgs;
5876
+ return __generator(this, function (_a) {
5877
+ switch (_a.label) {
5878
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsHospitalIdContactsContactIdPut(hospitalId, contactId, updateHospitalContactCommand, options)];
5879
+ case 1:
5880
+ localVarAxiosArgs = _a.sent();
5881
+ return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
5882
+ }
5883
+ });
5884
+ });
5885
+ },
5886
+ /**
5887
+ *
5888
+ * @summary Get hospital contacts
5889
+ * @param {string} hospitalId
5890
+ * @param {string} [contactId]
5891
+ * @param {ContactScope} [scope]
5892
+ * @param {string} [name]
5893
+ * @param {string} [languageCode]
5894
+ * @param {number} [page]
5895
+ * @param {number} [limit]
5896
+ * @param {Date} [lastRetrieved]
5897
+ * @param {*} [options] Override http request option.
5898
+ * @throws {RequiredError}
5899
+ */
5900
+ apiV1HospitalsHospitalIdContactsGet: function (hospitalId, contactId, scope, name, languageCode, page, limit, lastRetrieved, options) {
5901
+ return __awaiter(this, void 0, void 0, function () {
5902
+ var localVarAxiosArgs;
5903
+ return __generator(this, function (_a) {
5904
+ switch (_a.label) {
5905
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsHospitalIdContactsGet(hospitalId, contactId, scope, name, languageCode, page, limit, lastRetrieved, options)];
5906
+ case 1:
5907
+ localVarAxiosArgs = _a.sent();
5908
+ return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
5909
+ }
5910
+ });
5911
+ });
5912
+ },
5913
+ /**
5914
+ *
5915
+ * @summary Create hospital contact
5916
+ * @param {string} hospitalId
5917
+ * @param {CreateHospitalContactCommand} [createHospitalContactCommand]
5918
+ * @param {*} [options] Override http request option.
5919
+ * @throws {RequiredError}
5920
+ */
5921
+ apiV1HospitalsHospitalIdContactsPost: function (hospitalId, createHospitalContactCommand, options) {
5922
+ return __awaiter(this, void 0, void 0, function () {
5923
+ var localVarAxiosArgs;
5924
+ return __generator(this, function (_a) {
5925
+ switch (_a.label) {
5926
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsHospitalIdContactsPost(hospitalId, createHospitalContactCommand, options)];
5927
+ case 1:
5928
+ localVarAxiosArgs = _a.sent();
5929
+ return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
5930
+ }
5931
+ });
5932
+ });
5933
+ },
5559
5934
  /**
5560
5935
  *
5561
5936
  * @summary Delete Hospital.
@@ -7637,6 +8012,68 @@ var HospitalsApiFactory = function (configuration, basePath, axios) {
7637
8012
  apiV1HospitalsHospitalIdAppointmenttimetablesGet: function (hospitalId, dayOfWeek, page, limit, lastRetrieved, options) {
7638
8013
  return localVarFp.apiV1HospitalsHospitalIdAppointmenttimetablesGet(hospitalId, dayOfWeek, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
7639
8014
  },
8015
+ /**
8016
+ *
8017
+ * @summary Delete hospital contact
8018
+ * @param {string} hospitalId
8019
+ * @param {string} contactId
8020
+ * @param {*} [options] Override http request option.
8021
+ * @throws {RequiredError}
8022
+ */
8023
+ apiV1HospitalsHospitalIdContactsContactIdDelete: function (hospitalId, contactId, options) {
8024
+ return localVarFp.apiV1HospitalsHospitalIdContactsContactIdDelete(hospitalId, contactId, options).then(function (request) { return request(axios, basePath); });
8025
+ },
8026
+ /**
8027
+ *
8028
+ * @summary Get hospital contact
8029
+ * @param {string} hospitalId
8030
+ * @param {string} contactId
8031
+ * @param {*} [options] Override http request option.
8032
+ * @throws {RequiredError}
8033
+ */
8034
+ apiV1HospitalsHospitalIdContactsContactIdGet: function (hospitalId, contactId, options) {
8035
+ return localVarFp.apiV1HospitalsHospitalIdContactsContactIdGet(hospitalId, contactId, options).then(function (request) { return request(axios, basePath); });
8036
+ },
8037
+ /**
8038
+ *
8039
+ * @summary Update hospital contact
8040
+ * @param {string} hospitalId
8041
+ * @param {string} contactId
8042
+ * @param {UpdateHospitalContactCommand} [updateHospitalContactCommand]
8043
+ * @param {*} [options] Override http request option.
8044
+ * @throws {RequiredError}
8045
+ */
8046
+ apiV1HospitalsHospitalIdContactsContactIdPut: function (hospitalId, contactId, updateHospitalContactCommand, options) {
8047
+ return localVarFp.apiV1HospitalsHospitalIdContactsContactIdPut(hospitalId, contactId, updateHospitalContactCommand, options).then(function (request) { return request(axios, basePath); });
8048
+ },
8049
+ /**
8050
+ *
8051
+ * @summary Get hospital contacts
8052
+ * @param {string} hospitalId
8053
+ * @param {string} [contactId]
8054
+ * @param {ContactScope} [scope]
8055
+ * @param {string} [name]
8056
+ * @param {string} [languageCode]
8057
+ * @param {number} [page]
8058
+ * @param {number} [limit]
8059
+ * @param {Date} [lastRetrieved]
8060
+ * @param {*} [options] Override http request option.
8061
+ * @throws {RequiredError}
8062
+ */
8063
+ apiV1HospitalsHospitalIdContactsGet: function (hospitalId, contactId, scope, name, languageCode, page, limit, lastRetrieved, options) {
8064
+ return localVarFp.apiV1HospitalsHospitalIdContactsGet(hospitalId, contactId, scope, name, languageCode, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
8065
+ },
8066
+ /**
8067
+ *
8068
+ * @summary Create hospital contact
8069
+ * @param {string} hospitalId
8070
+ * @param {CreateHospitalContactCommand} [createHospitalContactCommand]
8071
+ * @param {*} [options] Override http request option.
8072
+ * @throws {RequiredError}
8073
+ */
8074
+ apiV1HospitalsHospitalIdContactsPost: function (hospitalId, createHospitalContactCommand, options) {
8075
+ return localVarFp.apiV1HospitalsHospitalIdContactsPost(hospitalId, createHospitalContactCommand, options).then(function (request) { return request(axios, basePath); });
8076
+ },
7640
8077
  /**
7641
8078
  *
7642
8079
  * @summary Delete Hospital.
@@ -8865,6 +9302,66 @@ var HospitalsApi = /** @class */ (function (_super) {
8865
9302
  var _this = this;
8866
9303
  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
9304
  };
9305
+ /**
9306
+ *
9307
+ * @summary Delete hospital contact
9308
+ * @param {HospitalsApiApiV1HospitalsHospitalIdContactsContactIdDeleteRequest} requestParameters Request parameters.
9309
+ * @param {*} [options] Override http request option.
9310
+ * @throws {RequiredError}
9311
+ * @memberof HospitalsApi
9312
+ */
9313
+ HospitalsApi.prototype.apiV1HospitalsHospitalIdContactsContactIdDelete = function (requestParameters, options) {
9314
+ var _this = this;
9315
+ return (0, exports.HospitalsApiFp)(this.configuration).apiV1HospitalsHospitalIdContactsContactIdDelete(requestParameters.hospitalId, requestParameters.contactId, options).then(function (request) { return request(_this.axios, _this.basePath); });
9316
+ };
9317
+ /**
9318
+ *
9319
+ * @summary Get hospital contact
9320
+ * @param {HospitalsApiApiV1HospitalsHospitalIdContactsContactIdGetRequest} requestParameters Request parameters.
9321
+ * @param {*} [options] Override http request option.
9322
+ * @throws {RequiredError}
9323
+ * @memberof HospitalsApi
9324
+ */
9325
+ HospitalsApi.prototype.apiV1HospitalsHospitalIdContactsContactIdGet = function (requestParameters, options) {
9326
+ var _this = this;
9327
+ return (0, exports.HospitalsApiFp)(this.configuration).apiV1HospitalsHospitalIdContactsContactIdGet(requestParameters.hospitalId, requestParameters.contactId, options).then(function (request) { return request(_this.axios, _this.basePath); });
9328
+ };
9329
+ /**
9330
+ *
9331
+ * @summary Update hospital contact
9332
+ * @param {HospitalsApiApiV1HospitalsHospitalIdContactsContactIdPutRequest} requestParameters Request parameters.
9333
+ * @param {*} [options] Override http request option.
9334
+ * @throws {RequiredError}
9335
+ * @memberof HospitalsApi
9336
+ */
9337
+ HospitalsApi.prototype.apiV1HospitalsHospitalIdContactsContactIdPut = function (requestParameters, options) {
9338
+ var _this = this;
9339
+ return (0, exports.HospitalsApiFp)(this.configuration).apiV1HospitalsHospitalIdContactsContactIdPut(requestParameters.hospitalId, requestParameters.contactId, requestParameters.updateHospitalContactCommand, options).then(function (request) { return request(_this.axios, _this.basePath); });
9340
+ };
9341
+ /**
9342
+ *
9343
+ * @summary Get hospital contacts
9344
+ * @param {HospitalsApiApiV1HospitalsHospitalIdContactsGetRequest} requestParameters Request parameters.
9345
+ * @param {*} [options] Override http request option.
9346
+ * @throws {RequiredError}
9347
+ * @memberof HospitalsApi
9348
+ */
9349
+ HospitalsApi.prototype.apiV1HospitalsHospitalIdContactsGet = function (requestParameters, options) {
9350
+ var _this = this;
9351
+ return (0, exports.HospitalsApiFp)(this.configuration).apiV1HospitalsHospitalIdContactsGet(requestParameters.hospitalId, requestParameters.contactId, requestParameters.scope, requestParameters.name, requestParameters.languageCode, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
9352
+ };
9353
+ /**
9354
+ *
9355
+ * @summary Create hospital contact
9356
+ * @param {HospitalsApiApiV1HospitalsHospitalIdContactsPostRequest} requestParameters Request parameters.
9357
+ * @param {*} [options] Override http request option.
9358
+ * @throws {RequiredError}
9359
+ * @memberof HospitalsApi
9360
+ */
9361
+ HospitalsApi.prototype.apiV1HospitalsHospitalIdContactsPost = function (requestParameters, options) {
9362
+ var _this = this;
9363
+ return (0, exports.HospitalsApiFp)(this.configuration).apiV1HospitalsHospitalIdContactsPost(requestParameters.hospitalId, requestParameters.createHospitalContactCommand, options).then(function (request) { return request(_this.axios, _this.basePath); });
9364
+ };
8868
9365
  /**
8869
9366
  *
8870
9367
  * @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"}