@openfn/language-satusehat 2.1.1 → 3.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 +2 -2
- package/types/Adaptor.d.ts +1 -1
package/dist/index.cjs
CHANGED
|
@@ -39,7 +39,6 @@ __export(src_exports, {
|
|
|
39
39
|
fn: () => import_language_common3.fn,
|
|
40
40
|
fnIf: () => import_language_common3.fnIf,
|
|
41
41
|
get: () => get,
|
|
42
|
-
http: () => import_language_common3.http,
|
|
43
42
|
lastReferenceValue: () => import_language_common3.lastReferenceValue,
|
|
44
43
|
map: () => import_language_common3.map,
|
|
45
44
|
merge: () => import_language_common3.merge,
|
|
@@ -67,7 +66,6 @@ __export(Adaptor_exports, {
|
|
|
67
66
|
fn: () => import_language_common3.fn,
|
|
68
67
|
fnIf: () => import_language_common3.fnIf,
|
|
69
68
|
get: () => get,
|
|
70
|
-
http: () => import_language_common3.http,
|
|
71
69
|
lastReferenceValue: () => import_language_common3.lastReferenceValue,
|
|
72
70
|
map: () => import_language_common3.map,
|
|
73
71
|
merge: () => import_language_common3.merge,
|
|
@@ -280,7 +278,6 @@ var src_default = Adaptor_exports;
|
|
|
280
278
|
fn,
|
|
281
279
|
fnIf,
|
|
282
280
|
get,
|
|
283
|
-
http,
|
|
284
281
|
lastReferenceValue,
|
|
285
282
|
map,
|
|
286
283
|
merge,
|
package/dist/index.js
CHANGED
|
@@ -20,7 +20,6 @@ __export(Adaptor_exports, {
|
|
|
20
20
|
fn: () => fn,
|
|
21
21
|
fnIf: () => fnIf,
|
|
22
22
|
get: () => get,
|
|
23
|
-
http: () => http,
|
|
24
23
|
lastReferenceValue: () => lastReferenceValue,
|
|
25
24
|
map: () => map,
|
|
26
25
|
merge: () => merge,
|
|
@@ -136,7 +135,6 @@ import {
|
|
|
136
135
|
fields,
|
|
137
136
|
fn,
|
|
138
137
|
fnIf,
|
|
139
|
-
http,
|
|
140
138
|
lastReferenceValue,
|
|
141
139
|
map,
|
|
142
140
|
merge,
|
|
@@ -255,7 +253,6 @@ export {
|
|
|
255
253
|
fn,
|
|
256
254
|
fnIf,
|
|
257
255
|
get,
|
|
258
|
-
http,
|
|
259
256
|
lastReferenceValue,
|
|
260
257
|
map,
|
|
261
258
|
merge,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openfn/language-satusehat",
|
|
3
3
|
"label": "Satusehat",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "3.0.0",
|
|
5
5
|
"description": "OpenFn Satusehat adaptor",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"exports": {
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"configuration-schema.json"
|
|
22
22
|
],
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@openfn/language-common": "3.0.
|
|
24
|
+
"@openfn/language-common": "3.0.2"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"assertion-error": "2.0.0",
|
package/types/Adaptor.d.ts
CHANGED
|
@@ -108,4 +108,4 @@ export type SatusehatHttpState = {
|
|
|
108
108
|
*/
|
|
109
109
|
references: any;
|
|
110
110
|
};
|
|
111
|
-
export { alterState, arrayToString, as, combine, dataPath, dataValue, each, field, fields, fn, fnIf,
|
|
111
|
+
export { alterState, arrayToString, as, combine, dataPath, dataValue, each, field, fields, fn, fnIf, lastReferenceValue, map, merge, sourceValue, util } from "@openfn/language-common";
|