@openfn/language-satusehat 2.0.9 → 2.0.11
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 +6 -3
- package/dist/index.js +6 -3
- package/package.json +2 -2
- package/types/Adaptor.d.ts +1 -1
package/dist/index.cjs
CHANGED
|
@@ -44,7 +44,8 @@ __export(src_exports, {
|
|
|
44
44
|
patch: () => patch,
|
|
45
45
|
post: () => post,
|
|
46
46
|
put: () => put,
|
|
47
|
-
sourceValue: () => import_language_common3.sourceValue
|
|
47
|
+
sourceValue: () => import_language_common3.sourceValue,
|
|
48
|
+
util: () => import_language_common3.util
|
|
48
49
|
});
|
|
49
50
|
module.exports = __toCommonJS(src_exports);
|
|
50
51
|
|
|
@@ -69,7 +70,8 @@ __export(Adaptor_exports, {
|
|
|
69
70
|
patch: () => patch,
|
|
70
71
|
post: () => post,
|
|
71
72
|
put: () => put,
|
|
72
|
-
sourceValue: () => import_language_common3.sourceValue
|
|
73
|
+
sourceValue: () => import_language_common3.sourceValue,
|
|
74
|
+
util: () => import_language_common3.util
|
|
73
75
|
});
|
|
74
76
|
var import_language_common2 = require("@openfn/language-common");
|
|
75
77
|
var import_util2 = require("@openfn/language-common/util");
|
|
@@ -279,5 +281,6 @@ var src_default = Adaptor_exports;
|
|
|
279
281
|
patch,
|
|
280
282
|
post,
|
|
281
283
|
put,
|
|
282
|
-
sourceValue
|
|
284
|
+
sourceValue,
|
|
285
|
+
util
|
|
283
286
|
});
|
package/dist/index.js
CHANGED
|
@@ -25,7 +25,8 @@ __export(Adaptor_exports, {
|
|
|
25
25
|
patch: () => patch,
|
|
26
26
|
post: () => post,
|
|
27
27
|
put: () => put,
|
|
28
|
-
sourceValue: () => sourceValue
|
|
28
|
+
sourceValue: () => sourceValue,
|
|
29
|
+
util: () => util
|
|
29
30
|
});
|
|
30
31
|
import { execute as commonExecute } from "@openfn/language-common";
|
|
31
32
|
import { expandReferences } from "@openfn/language-common/util";
|
|
@@ -135,7 +136,8 @@ import {
|
|
|
135
136
|
http,
|
|
136
137
|
lastReferenceValue,
|
|
137
138
|
merge,
|
|
138
|
-
sourceValue
|
|
139
|
+
sourceValue,
|
|
140
|
+
util
|
|
139
141
|
} from "@openfn/language-common";
|
|
140
142
|
function execute(...operations) {
|
|
141
143
|
const initialState = {
|
|
@@ -254,5 +256,6 @@ export {
|
|
|
254
256
|
patch,
|
|
255
257
|
post,
|
|
256
258
|
put,
|
|
257
|
-
sourceValue
|
|
259
|
+
sourceValue,
|
|
260
|
+
util
|
|
258
261
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openfn/language-satusehat",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.11",
|
|
4
4
|
"description": "OpenFn Satusehat adaptor",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"configuration-schema.json"
|
|
21
21
|
],
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@openfn/language-common": "2.3.
|
|
23
|
+
"@openfn/language-common": "2.3.1"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"assertion-error": "2.0.0",
|
package/types/Adaptor.d.ts
CHANGED
|
@@ -107,4 +107,4 @@ export type SatusehatHttpState = {
|
|
|
107
107
|
*/
|
|
108
108
|
references: any;
|
|
109
109
|
};
|
|
110
|
-
export { fn, fnIf, alterState, arrayToString, combine, dataPath, dataValue, each, field, fields, http, lastReferenceValue, merge, sourceValue } from "@openfn/language-common";
|
|
110
|
+
export { fn, fnIf, alterState, arrayToString, combine, dataPath, dataValue, each, field, fields, http, lastReferenceValue, merge, sourceValue, util } from "@openfn/language-common";
|