@openfn/language-varo 1.1.4 → 2.0.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.
- package/dist/index.cjs +0 -3
- package/dist/index.js +0 -3
- package/package.json +1 -1
- package/types/Adaptor.d.ts +1 -1
package/dist/index.cjs
CHANGED
|
@@ -33,7 +33,6 @@ __export(src_exports, {
|
|
|
33
33
|
fields: () => import_language_common2.fields,
|
|
34
34
|
fn: () => import_language_common2.fn,
|
|
35
35
|
fnIf: () => import_language_common2.fnIf,
|
|
36
|
-
http: () => import_language_common2.http,
|
|
37
36
|
lastReferenceValue: () => import_language_common2.lastReferenceValue,
|
|
38
37
|
merge: () => import_language_common2.merge,
|
|
39
38
|
sourceValue: () => import_language_common2.sourceValue
|
|
@@ -56,7 +55,6 @@ __export(Adaptor_exports, {
|
|
|
56
55
|
fields: () => import_language_common2.fields,
|
|
57
56
|
fn: () => import_language_common2.fn,
|
|
58
57
|
fnIf: () => import_language_common2.fnIf,
|
|
59
|
-
http: () => import_language_common2.http,
|
|
60
58
|
lastReferenceValue: () => import_language_common2.lastReferenceValue,
|
|
61
59
|
merge: () => import_language_common2.merge,
|
|
62
60
|
sourceValue: () => import_language_common2.sourceValue
|
|
@@ -673,7 +671,6 @@ var src_default = Adaptor_exports;
|
|
|
673
671
|
fields,
|
|
674
672
|
fn,
|
|
675
673
|
fnIf,
|
|
676
|
-
http,
|
|
677
674
|
lastReferenceValue,
|
|
678
675
|
merge,
|
|
679
676
|
sourceValue
|
package/dist/index.js
CHANGED
|
@@ -20,7 +20,6 @@ __export(Adaptor_exports, {
|
|
|
20
20
|
fields: () => fields,
|
|
21
21
|
fn: () => fn,
|
|
22
22
|
fnIf: () => fnIf,
|
|
23
|
-
http: () => http,
|
|
24
23
|
lastReferenceValue: () => lastReferenceValue,
|
|
25
24
|
merge: () => merge,
|
|
26
25
|
sourceValue: () => sourceValue
|
|
@@ -551,7 +550,6 @@ import {
|
|
|
551
550
|
fields,
|
|
552
551
|
fn,
|
|
553
552
|
fnIf,
|
|
554
|
-
http,
|
|
555
553
|
lastReferenceValue,
|
|
556
554
|
merge,
|
|
557
555
|
sourceValue
|
|
@@ -652,7 +650,6 @@ export {
|
|
|
652
650
|
fields,
|
|
653
651
|
fn,
|
|
654
652
|
fnIf,
|
|
655
|
-
http,
|
|
656
653
|
lastReferenceValue,
|
|
657
654
|
merge,
|
|
658
655
|
sourceValue
|
package/package.json
CHANGED
package/types/Adaptor.d.ts
CHANGED
|
@@ -57,4 +57,4 @@ export function convertItemsToReports(items: any[], reportType?: string): Operat
|
|
|
57
57
|
* convertReportsToMessageContents(emsReports, "ems");
|
|
58
58
|
*/
|
|
59
59
|
export function convertReportsToMessageContents(reports: any, reportType?: string): Function;
|
|
60
|
-
export { alterState, combine, cursor, dataPath, dataValue, each, field, fields, fn, fnIf,
|
|
60
|
+
export { alterState, combine, cursor, dataPath, dataValue, each, field, fields, fn, fnIf, lastReferenceValue, merge, sourceValue } from "@openfn/language-common";
|