@awell-health/awell-extensions 1.0.147 → 1.0.148
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/extensions/collectData/v1/actions/remoteSingleSelect/config/{dataPoints.js → dataPoint.js} +1 -1
- package/dist/extensions/collectData/v1/actions/remoteSingleSelect/config/dataPoint.js.map +1 -0
- package/dist/extensions/collectData/v1/actions/remoteSingleSelect/config/index.d.ts +1 -1
- package/dist/extensions/collectData/v1/actions/remoteSingleSelect/config/index.js +2 -2
- package/dist/extensions/collectData/v1/actions/remoteSingleSelect/config/index.js.map +1 -1
- package/dist/extensions/collectData/v1/actions/remoteSingleSelect/index.d.ts +1 -1
- package/dist/extensions/collectData/v1/actions/remoteSingleSelect/index.js +3 -15
- package/dist/extensions/collectData/v1/actions/remoteSingleSelect/index.js.map +1 -1
- package/dist/extensions/index.js +10 -8
- package/dist/extensions/index.js.map +1 -1
- package/package.json +1 -1
- package/dist/extensions/collectData/v1/actions/remoteSingleSelect/config/dataPoints.js.map +0 -1
- /package/dist/extensions/collectData/v1/actions/remoteSingleSelect/config/{dataPoints.d.ts → dataPoint.d.ts} +0 -0
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"dataPoint.js","sourceRoot":"","sources":["../../../../../../../extensions/collectData/v1/actions/remoteSingleSelect/config/dataPoint.ts"],"names":[],"mappings":";;;AAEa,QAAA,UAAU,GAAG;IACxB,KAAK,EAAE;QACL,GAAG,EAAE,OAAO;QACZ,SAAS,EAAE,QAAQ;KACpB;IACD,KAAK,EAAE;QACL,GAAG,EAAE,OAAO;QACZ,SAAS,EAAE,QAAQ;KACpB;CAC4C,CAAA"}
|
@@ -1,2 +1,2 @@
|
|
1
1
|
export { fields } from './fields';
|
2
|
-
export { dataPoints } from './
|
2
|
+
export { dataPoints } from './dataPoint';
|
@@ -3,6 +3,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.dataPoints = exports.fields = void 0;
|
4
4
|
var fields_1 = require("./fields");
|
5
5
|
Object.defineProperty(exports, "fields", { enumerable: true, get: function () { return fields_1.fields; } });
|
6
|
-
var
|
7
|
-
Object.defineProperty(exports, "dataPoints", { enumerable: true, get: function () { return
|
6
|
+
var dataPoint_1 = require("./dataPoint");
|
7
|
+
Object.defineProperty(exports, "dataPoints", { enumerable: true, get: function () { return dataPoint_1.dataPoints; } });
|
8
8
|
//# sourceMappingURL=index.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../extensions/collectData/v1/actions/remoteSingleSelect/config/index.ts"],"names":[],"mappings":";;;AAAA,mCAAiC;AAAxB,gGAAA,MAAM,OAAA;AACf,
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../extensions/collectData/v1/actions/remoteSingleSelect/config/index.ts"],"names":[],"mappings":";;;AAAA,mCAAiC;AAAxB,gGAAA,MAAM,OAAA;AACf,yCAAwC;AAA/B,uGAAA,UAAU,OAAA"}
|
@@ -1 +1 @@
|
|
1
|
-
export
|
1
|
+
export { remoteSingleSelect } from './remoteSingleSelect';
|
@@ -1,18 +1,6 @@
|
|
1
1
|
"use strict";
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
3
|
-
if (k2 === undefined) k2 = k;
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
7
|
-
}
|
8
|
-
Object.defineProperty(o, k2, desc);
|
9
|
-
}) : (function(o, m, k, k2) {
|
10
|
-
if (k2 === undefined) k2 = k;
|
11
|
-
o[k2] = m[k];
|
12
|
-
}));
|
13
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
14
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
15
|
-
};
|
16
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
17
|
-
|
3
|
+
exports.remoteSingleSelect = void 0;
|
4
|
+
var remoteSingleSelect_1 = require("./remoteSingleSelect");
|
5
|
+
Object.defineProperty(exports, "remoteSingleSelect", { enumerable: true, get: function () { return remoteSingleSelect_1.remoteSingleSelect; } });
|
18
6
|
//# sourceMappingURL=index.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../extensions/collectData/v1/actions/remoteSingleSelect/index.ts"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../extensions/collectData/v1/actions/remoteSingleSelect/index.ts"],"names":[],"mappings":";;;AAAA,2DAAyD;AAAhD,wHAAA,kBAAkB,OAAA"}
|
package/dist/extensions/index.js
CHANGED
@@ -51,37 +51,39 @@ const iterable_1 = require("./iterable");
|
|
51
51
|
const zendesk_1 = require("./zendesk");
|
52
52
|
const infobip_1 = require("./infobip");
|
53
53
|
const nexuzhealth_1 = require("./nexuzhealth");
|
54
|
+
const collectData_1 = require("./collectData");
|
54
55
|
const json = __importStar(require("./markdown.json"));
|
55
56
|
exports.markdown = json;
|
56
57
|
exports.extensions = [
|
57
58
|
// AvaAi, Best to disable this until we cleared out data privacy & HIPAA with OpenAI
|
59
|
+
// ZusHealth is not ready for public use yet
|
60
|
+
// ZusHealth,
|
58
61
|
awell_1.Awell,
|
59
62
|
calDotCom_1.CalDotCom,
|
60
63
|
calendly_1.Calendly,
|
61
64
|
canvasMedical_1.CanvasMedical,
|
62
65
|
cloudinary_1.Cloudinary,
|
66
|
+
cmDotCom_1.CmDotCom,
|
67
|
+
collectData_1.CollectData,
|
68
|
+
docuSign_1.DocuSign,
|
63
69
|
dropboxSign_1.DropboxSign,
|
64
70
|
elation_1.Elation,
|
65
71
|
formsort_1.Formsort,
|
66
72
|
healthie_1.Healthie,
|
67
73
|
hello_world_1.HelloWorld,
|
74
|
+
infobip_1.Infobip,
|
75
|
+
iterable_1.Iterable,
|
68
76
|
mailchimp_1.Mailchimp,
|
69
77
|
mailgun_1.Mailgun,
|
70
78
|
math_1.MathExtension,
|
71
79
|
messagebird_1.MessageBird,
|
72
80
|
metriport_1.Metriport,
|
73
81
|
nexuzhealth_1.nexuzhealth,
|
82
|
+
sendbird_1.Sendbird,
|
83
|
+
sendgrid_extension_1.Sendgrid,
|
74
84
|
transform_1.Transform,
|
75
85
|
twilio_1.Twilio,
|
76
86
|
wellinks_1.Wellinks,
|
77
|
-
sendgrid_extension_1.Sendgrid,
|
78
|
-
cmDotCom_1.CmDotCom,
|
79
|
-
docuSign_1.DocuSign,
|
80
|
-
sendbird_1.Sendbird,
|
81
|
-
// ZusHealth is not ready for public use yet
|
82
|
-
// ZusHealth,
|
83
|
-
iterable_1.Iterable,
|
84
87
|
zendesk_1.Zendesk,
|
85
|
-
infobip_1.Infobip,
|
86
88
|
];
|
87
89
|
//# sourceMappingURL=index.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../extensions/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,kCAAkC;AAClC,mCAA+B;AAC/B,2CAAuC;AACvC,yCAAqC;AACrC,mDAA+C;AAC/C,6CAAyC;AACzC,+CAA2C;AAC3C,uCAAmC;AACnC,yCAAqC;AACrC,yCAAqC;AACrC,+CAA0C;AAC1C,2CAAuC;AACvC,uCAAmC;AACnC,iCAAsC;AACtC,+CAA2C;AAC3C,2CAAuC;AACvC,qCAAiC;AACjC,yCAAqC;AACrC,6DAA+C;AAC/C,yCAAqC;AACrC,yCAAqC;AACrC,yCAAqC;AACrC,2CAAuC;AACvC,yCAAqC;AACrC,uCAAmC;AACnC,uCAAmC;AACnC,+CAA2C;AAE3C,sDAAuC;AAG1B,QAAA,QAAQ,GAAa,IAAI,CAAA;AAEzB,QAAA,UAAU,GAAG;IACxB,oFAAoF;IACpF,aAAK;IACL,qBAAS;IACT,mBAAQ;IACR,6BAAa;IACb,uBAAU;IACV,yBAAW;IACX,iBAAO;IACP,mBAAQ;IACR,mBAAQ;IACR,wBAAU;IACV,qBAAS;IACT,iBAAO;IACP,oBAAa;IACb,yBAAW;IACX,qBAAS;IACT,yBAAW;IACX,
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../extensions/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,kCAAkC;AAClC,mCAA+B;AAC/B,2CAAuC;AACvC,yCAAqC;AACrC,mDAA+C;AAC/C,6CAAyC;AACzC,+CAA2C;AAC3C,uCAAmC;AACnC,yCAAqC;AACrC,yCAAqC;AACrC,+CAA0C;AAC1C,2CAAuC;AACvC,uCAAmC;AACnC,iCAAsC;AACtC,+CAA2C;AAC3C,2CAAuC;AACvC,qCAAiC;AACjC,yCAAqC;AACrC,6DAA+C;AAC/C,yCAAqC;AACrC,yCAAqC;AACrC,yCAAqC;AACrC,2CAAuC;AACvC,yCAAqC;AACrC,uCAAmC;AACnC,uCAAmC;AACnC,+CAA2C;AAC3C,+CAA2C;AAE3C,sDAAuC;AAG1B,QAAA,QAAQ,GAAa,IAAI,CAAA;AAEzB,QAAA,UAAU,GAAG;IACxB,oFAAoF;IACpF,4CAA4C;IAC5C,aAAa;IACb,aAAK;IACL,qBAAS;IACT,mBAAQ;IACR,6BAAa;IACb,uBAAU;IACV,mBAAQ;IACR,yBAAW;IACX,mBAAQ;IACR,yBAAW;IACX,iBAAO;IACP,mBAAQ;IACR,mBAAQ;IACR,wBAAU;IACV,iBAAO;IACP,mBAAQ;IACR,qBAAS;IACT,iBAAO;IACP,oBAAa;IACb,yBAAW;IACX,qBAAS;IACT,yBAAW;IACX,mBAAQ;IACR,6BAAQ;IACR,qBAAS;IACT,eAAM;IACN,mBAAQ;IACR,iBAAO;CACR,CAAA"}
|
package/package.json
CHANGED
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"dataPoints.js","sourceRoot":"","sources":["../../../../../../../extensions/collectData/v1/actions/remoteSingleSelect/config/dataPoints.ts"],"names":[],"mappings":";;;AAEa,QAAA,UAAU,GAAG;IACxB,KAAK,EAAE;QACL,GAAG,EAAE,OAAO;QACZ,SAAS,EAAE,QAAQ;KACpB;IACD,KAAK,EAAE;QACL,GAAG,EAAE,OAAO;QACZ,SAAS,EAAE,QAAQ;KACpB;CAC4C,CAAA"}
|
File without changes
|