@openfn/language-mssql 5.2.3 → 6.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
|
@@ -35,7 +35,6 @@ __export(src_exports, {
|
|
|
35
35
|
findValue: () => findValue,
|
|
36
36
|
fn: () => import_language_common2.fn,
|
|
37
37
|
fnIf: () => import_language_common2.fnIf,
|
|
38
|
-
http: () => import_language_common2.http,
|
|
39
38
|
insert: () => insert,
|
|
40
39
|
insertMany: () => insertMany,
|
|
41
40
|
insertTable: () => insertTable,
|
|
@@ -69,7 +68,6 @@ __export(Adaptor_exports, {
|
|
|
69
68
|
findValue: () => findValue,
|
|
70
69
|
fn: () => import_language_common2.fn,
|
|
71
70
|
fnIf: () => import_language_common2.fnIf,
|
|
72
|
-
http: () => import_language_common2.http,
|
|
73
71
|
insert: () => insert,
|
|
74
72
|
insertMany: () => insertMany,
|
|
75
73
|
insertTable: () => insertTable,
|
|
@@ -590,7 +588,6 @@ var src_default = Adaptor_exports;
|
|
|
590
588
|
findValue,
|
|
591
589
|
fn,
|
|
592
590
|
fnIf,
|
|
593
|
-
http,
|
|
594
591
|
insert,
|
|
595
592
|
insertMany,
|
|
596
593
|
insertTable,
|
package/dist/index.js
CHANGED
|
@@ -22,7 +22,6 @@ __export(Adaptor_exports, {
|
|
|
22
22
|
findValue: () => findValue,
|
|
23
23
|
fn: () => fn,
|
|
24
24
|
fnIf: () => fnIf,
|
|
25
|
-
http: () => http,
|
|
26
25
|
insert: () => insert,
|
|
27
26
|
insertMany: () => insertMany,
|
|
28
27
|
insertTable: () => insertTable,
|
|
@@ -65,7 +64,6 @@ import {
|
|
|
65
64
|
fields,
|
|
66
65
|
fn,
|
|
67
66
|
fnIf,
|
|
68
|
-
http,
|
|
69
67
|
lastReferenceValue,
|
|
70
68
|
cursor,
|
|
71
69
|
merge,
|
|
@@ -560,7 +558,6 @@ export {
|
|
|
560
558
|
findValue,
|
|
561
559
|
fn,
|
|
562
560
|
fnIf,
|
|
563
|
-
http,
|
|
564
561
|
insert,
|
|
565
562
|
insertMany,
|
|
566
563
|
insertTable,
|
package/package.json
CHANGED
package/types/Adaptor.d.ts
CHANGED
|
@@ -170,4 +170,4 @@ export function insertTable(tableName: string, columns: any[], options: object):
|
|
|
170
170
|
* @returns {Operation}
|
|
171
171
|
*/
|
|
172
172
|
export function modifyTable(tableName: string, columns: any[], options: object): Operation;
|
|
173
|
-
export { alterState, combine, dataPath, dataValue, dateFns, each, field, fields, fn, fnIf,
|
|
173
|
+
export { alterState, combine, dataPath, dataValue, dateFns, each, field, fields, fn, fnIf, lastReferenceValue, cursor, merge, sourceValue, as } from "@openfn/language-common";
|