@openfn/language-mssql 4.2.1 → 4.2.2
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/ast.json +10 -1
- package/package.json +2 -2
package/ast.json
CHANGED
|
@@ -1090,7 +1090,7 @@
|
|
|
1090
1090
|
"options"
|
|
1091
1091
|
],
|
|
1092
1092
|
"docs": {
|
|
1093
|
-
"description": "Sets a cursor property on state.\nSupports natural language dates like `now`, `today`, `yesterday`, `n hours ago`, `n days ago`, and `start`,\nwhich will be converted relative to the environment (ie, the Lightning or CLI locale). Custom timezones \nare not yet supported.\nSee the usage guide at {@link https://docs.openfn.org/documentation/jobs/job-writing-guide#using-cursors}",
|
|
1093
|
+
"description": "Sets a cursor property on state.\nSupports natural language dates like `now`, `today`, `yesterday`, `n hours ago`, `n days ago`, and `start`,\nwhich will be converted relative to the environment (ie, the Lightning or CLI locale). Custom timezones \nare not yet supported.\nYou can provide a formatter to customise the final cursor value, which is useful for normalising\ndifferent inputs. The custom formatter runs after natural language date conversion.\nSee the usage guide at {@link https://docs.openfn.org/documentation/jobs/job-writing-guide#using-cursors}",
|
|
1094
1094
|
"tags": [
|
|
1095
1095
|
{
|
|
1096
1096
|
"title": "public",
|
|
@@ -1148,6 +1148,15 @@
|
|
|
1148
1148
|
},
|
|
1149
1149
|
"name": "options.defaultValue"
|
|
1150
1150
|
},
|
|
1151
|
+
{
|
|
1152
|
+
"title": "param",
|
|
1153
|
+
"description": "custom formatter for the final cursor value",
|
|
1154
|
+
"type": {
|
|
1155
|
+
"type": "NameExpression",
|
|
1156
|
+
"name": "Function"
|
|
1157
|
+
},
|
|
1158
|
+
"name": "options.format"
|
|
1159
|
+
},
|
|
1151
1160
|
{
|
|
1152
1161
|
"title": "returns",
|
|
1153
1162
|
"description": null,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openfn/language-mssql",
|
|
3
|
-
"version": "4.2.
|
|
3
|
+
"version": "4.2.2",
|
|
4
4
|
"description": "A Microsoft SQL language pack for OpenFn",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"configuration-schema.json"
|
|
24
24
|
],
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@openfn/language-common": "1.13.
|
|
26
|
+
"@openfn/language-common": "1.13.3",
|
|
27
27
|
"tedious": "15.1.0"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|