@awell-health/awell-extensions 1.0.164 → 1.0.166
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/extensions/external-server/settings.d.ts +1 -1
- package/dist/extensions/external-server/settings.js +1 -1
- package/dist/extensions/external-server/settings.js.map +1 -1
- package/dist/extensions/external-server/v1/actions/external-extension.js +1 -2
- package/dist/extensions/external-server/v1/actions/external-extension.js.map +1 -1
- package/dist/extensions/healthie/actions/checkPatientTag/checkPatientTag.d.ts +4 -0
- package/dist/extensions/healthie/actions/checkPatientTag/checkPatientTag.js +74 -0
- package/dist/extensions/healthie/actions/checkPatientTag/checkPatientTag.js.map +1 -0
- package/dist/extensions/healthie/actions/checkPatientTag/checkPatientTag.test.d.ts +1 -0
- package/dist/extensions/healthie/actions/checkPatientTag/checkPatientTag.test.js +57 -0
- package/dist/extensions/healthie/actions/checkPatientTag/checkPatientTag.test.js.map +1 -0
- package/dist/extensions/healthie/actions/checkPatientTag/config/dataPoints.d.ts +6 -0
- package/dist/extensions/healthie/actions/checkPatientTag/config/dataPoints.js +10 -0
- package/dist/extensions/healthie/actions/checkPatientTag/config/dataPoints.js.map +1 -0
- package/dist/extensions/healthie/actions/checkPatientTag/config/fields.d.ts +15 -0
- package/dist/extensions/healthie/actions/checkPatientTag/config/fields.js +19 -0
- package/dist/extensions/healthie/actions/checkPatientTag/config/fields.js.map +1 -0
- package/dist/extensions/healthie/actions/checkPatientTag/config/index.d.ts +2 -0
- package/dist/extensions/healthie/actions/checkPatientTag/config/index.js +8 -0
- package/dist/extensions/healthie/actions/checkPatientTag/config/index.js.map +1 -0
- package/dist/extensions/healthie/actions/checkPatientTag/index.d.ts +1 -0
- package/dist/extensions/healthie/actions/checkPatientTag/index.js +18 -0
- package/dist/extensions/healthie/actions/checkPatientTag/index.js.map +1 -0
- package/dist/extensions/healthie/actions/checkScheduledAppointments/checkScheduledAppointments.d.ts +4 -0
- package/dist/extensions/healthie/actions/checkScheduledAppointments/checkScheduledAppointments.js +77 -0
- package/dist/extensions/healthie/actions/checkScheduledAppointments/checkScheduledAppointments.js.map +1 -0
- package/dist/extensions/healthie/actions/checkScheduledAppointments/checkScheduledAppointments.test.d.ts +1 -0
- package/dist/extensions/healthie/actions/checkScheduledAppointments/checkScheduledAppointments.test.js +57 -0
- package/dist/extensions/healthie/actions/checkScheduledAppointments/checkScheduledAppointments.test.js.map +1 -0
- package/dist/extensions/healthie/actions/checkScheduledAppointments/config/dataPoints.d.ts +6 -0
- package/dist/extensions/healthie/actions/checkScheduledAppointments/config/dataPoints.js +10 -0
- package/dist/extensions/healthie/actions/checkScheduledAppointments/config/dataPoints.js.map +1 -0
- package/dist/extensions/healthie/actions/checkScheduledAppointments/config/fields.d.ts +16 -0
- package/dist/extensions/healthie/actions/checkScheduledAppointments/config/fields.js +20 -0
- package/dist/extensions/healthie/actions/checkScheduledAppointments/config/fields.js.map +1 -0
- package/dist/extensions/healthie/actions/checkScheduledAppointments/config/index.d.ts +2 -0
- package/dist/extensions/healthie/actions/checkScheduledAppointments/config/index.js +8 -0
- package/dist/extensions/healthie/actions/checkScheduledAppointments/config/index.js.map +1 -0
- package/dist/extensions/healthie/actions/checkScheduledAppointments/index.d.ts +1 -0
- package/dist/extensions/healthie/actions/checkScheduledAppointments/index.js +18 -0
- package/dist/extensions/healthie/actions/checkScheduledAppointments/index.js.map +1 -0
- package/dist/extensions/healthie/actions/index.d.ts +59 -0
- package/dist/extensions/healthie/actions/index.js +4 -0
- package/dist/extensions/healthie/actions/index.js.map +1 -1
- package/dist/extensions/healthie/gql/sdk.d.ts +1502 -307
- package/dist/extensions/healthie/gql/sdk.js +527 -3
- package/dist/extensions/healthie/gql/sdk.js.map +1 -1
- package/dist/extensions/markdown.json +2 -2
- package/package.json +1 -1
@@ -881,4 +881,63 @@ export declare const actions: {
|
|
881
881
|
description: string;
|
882
882
|
};
|
883
883
|
}, string, never>;
|
884
|
+
checkPatientTag: import("@awell-health/extensions-core").Action<{
|
885
|
+
id: {
|
886
|
+
id: string;
|
887
|
+
label: string;
|
888
|
+
description: string;
|
889
|
+
type: import("@awell-health/extensions-core").FieldType.STRING;
|
890
|
+
};
|
891
|
+
patientId: {
|
892
|
+
id: string;
|
893
|
+
label: string;
|
894
|
+
description: string;
|
895
|
+
type: import("@awell-health/extensions-core").FieldType.STRING;
|
896
|
+
};
|
897
|
+
}, {
|
898
|
+
apiUrl: {
|
899
|
+
key: string;
|
900
|
+
label: string;
|
901
|
+
obfuscated: false;
|
902
|
+
required: true;
|
903
|
+
description: string;
|
904
|
+
};
|
905
|
+
apiKey: {
|
906
|
+
key: string;
|
907
|
+
label: string;
|
908
|
+
obfuscated: true;
|
909
|
+
required: true;
|
910
|
+
description: string;
|
911
|
+
};
|
912
|
+
}, "hasTag", never>;
|
913
|
+
checkScheduledAppointments: import("@awell-health/extensions-core").Action<{
|
914
|
+
patientId: {
|
915
|
+
id: string;
|
916
|
+
label: string;
|
917
|
+
description: string;
|
918
|
+
type: import("@awell-health/extensions-core").FieldType.STRING;
|
919
|
+
};
|
920
|
+
appointmentTypeId: {
|
921
|
+
id: string;
|
922
|
+
label: string;
|
923
|
+
description: string;
|
924
|
+
type: import("@awell-health/extensions-core").FieldType.STRING;
|
925
|
+
required: true;
|
926
|
+
};
|
927
|
+
}, {
|
928
|
+
apiUrl: {
|
929
|
+
key: string;
|
930
|
+
label: string;
|
931
|
+
obfuscated: false;
|
932
|
+
required: true;
|
933
|
+
description: string;
|
934
|
+
};
|
935
|
+
apiKey: {
|
936
|
+
key: string;
|
937
|
+
label: string;
|
938
|
+
obfuscated: true;
|
939
|
+
required: true;
|
940
|
+
description: string;
|
941
|
+
};
|
942
|
+
}, "isScheduled", never>;
|
884
943
|
};
|
@@ -23,6 +23,8 @@ const applyTagToPatient_1 = require("./applyTagToPatient");
|
|
23
23
|
const getMetricEntry_1 = require("./getMetricEntry");
|
24
24
|
const updatePatientQuickNote_1 = require("./updatePatientQuickNote");
|
25
25
|
const createMetricEntry_1 = require("./createMetricEntry");
|
26
|
+
const checkPatientTag_1 = require("./checkPatientTag");
|
27
|
+
const checkScheduledAppointments_1 = require("./checkScheduledAppointments");
|
26
28
|
exports.actions = {
|
27
29
|
createAppointment: createAppointment_1.createAppointment,
|
28
30
|
createTask: createTask_1.createTask,
|
@@ -55,5 +57,7 @@ exports.actions = {
|
|
55
57
|
getMetricEntry: getMetricEntry_1.getMetricEntry,
|
56
58
|
updatePatientQuickNote: updatePatientQuickNote_1.updatePatientQuickNote,
|
57
59
|
createMetricEntry: createMetricEntry_1.createMetricEntry,
|
60
|
+
checkPatientTag: checkPatientTag_1.checkPatientTag,
|
61
|
+
checkScheduledAppointments: checkScheduledAppointments_1.checkScheduledAppointments,
|
58
62
|
};
|
59
63
|
//# sourceMappingURL=index.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../extensions/healthie/actions/index.ts"],"names":[],"mappings":";;;AAAA,2DAAuD;AACvD,wDAAoD;AACpD,qDAAiD;AACjD,uDAAmD;AACnD,mDAA+C;AAC/C,iEAA6D;AAC7D,6DAAyD;AACzD,2EAAuE;AACvE,qDAAiD;AACjD,oDAAoD;AACpD,mEAA+D;AAC/D,2DAAuD;AACvD,2DAAuD;AACvD,6CAAyC;AACzC,iDAA6C;AAC7C,iEAA6D;AAC7D,mDAA+C;AAC/C,6CAAyC;AACzC,2DAAuD;AACvD,qDAAiD;AACjD,qEAAiE;AACjE,2DAAuD;
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../extensions/healthie/actions/index.ts"],"names":[],"mappings":";;;AAAA,2DAAuD;AACvD,wDAAoD;AACpD,qDAAiD;AACjD,uDAAmD;AACnD,mDAA+C;AAC/C,iEAA6D;AAC7D,6DAAyD;AACzD,2EAAuE;AACvE,qDAAiD;AACjD,oDAAoD;AACpD,mEAA+D;AAC/D,2DAAuD;AACvD,2DAAuD;AACvD,6CAAyC;AACzC,iDAA6C;AAC7C,iEAA6D;AAC7D,mDAA+C;AAC/C,6CAAyC;AACzC,2DAAuD;AACvD,qDAAiD;AACjD,qEAAiE;AACjE,2DAAuD;AACvD,uDAAmD;AACnD,6EAAyE;AAE5D,QAAA,OAAO,GAAG;IACrB,iBAAiB,EAAjB,qCAAiB;IACjB,UAAU,EAAV,uBAAU;IACV,cAAc,EAAd,+BAAc;IACd,UAAU,EAAV,uBAAU;IACV,eAAe,EAAf,iCAAe;IACf,aAAa,EAAb,6BAAa;IACb,aAAa,EAAb,6BAAa;IACb,iBAAiB,EAAjB,qCAAiB;IACjB,oBAAoB,EAApB,2CAAoB;IACpB,kBAAkB,EAAlB,uCAAkB;IAClB,yBAAyB,EAAzB,qDAAyB;IACzB,cAAc,EAAd,+BAAc;IACd;;;QAGI;IACJ,kBAAkB;IAClB,qBAAqB,EAArB,6CAAqB;IACrB,iBAAiB,EAAjB,qCAAiB;IACjB,iBAAiB,EAAjB,qCAAiB;IACjB;;;QAGI;IACJ,sBAAsB;IACtB,UAAU,EAAV,uBAAU;IACV,YAAY,EAAZ,2BAAY;IACZ,oBAAoB,EAApB,2CAAoB;IACpB,cAAc,EAAd,+BAAc;IACd,sBAAsB,EAAtB,+CAAsB;IACtB,iBAAiB,EAAjB,qCAAiB;IACjB,eAAe,EAAf,iCAAe;IACf,0BAA0B,EAA1B,uDAA0B;CAC3B,CAAA"}
|