snowpipe-streaming 1.4.0 → 1.5.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/package.json +7 -7
- package/src/index.d.ts +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "snowpipe-streaming",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.0",
|
|
4
4
|
"description": "Snowflake Streaming Ingest SDK for Node.js",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"types": "src/index.d.ts",
|
|
@@ -27,11 +27,11 @@
|
|
|
27
27
|
"typedoc": "^0.28.19"
|
|
28
28
|
},
|
|
29
29
|
"optionalDependencies": {
|
|
30
|
-
"snowpipe-streaming-linux-x64-gnu": "1.
|
|
31
|
-
"snowpipe-streaming-linux-x64-musl": "1.
|
|
32
|
-
"snowpipe-streaming-linux-arm64-gnu": "1.
|
|
33
|
-
"snowpipe-streaming-linux-arm64-musl": "1.
|
|
34
|
-
"snowpipe-streaming-darwin-arm64": "1.
|
|
35
|
-
"snowpipe-streaming-win32-x64-msvc": "1.
|
|
30
|
+
"snowpipe-streaming-linux-x64-gnu": "1.5.0",
|
|
31
|
+
"snowpipe-streaming-linux-x64-musl": "1.5.0",
|
|
32
|
+
"snowpipe-streaming-linux-arm64-gnu": "1.5.0",
|
|
33
|
+
"snowpipe-streaming-linux-arm64-musl": "1.5.0",
|
|
34
|
+
"snowpipe-streaming-darwin-arm64": "1.5.0",
|
|
35
|
+
"snowpipe-streaming-win32-x64-msvc": "1.5.0"
|
|
36
36
|
}
|
|
37
37
|
}
|
package/src/index.d.ts
CHANGED
|
@@ -49,7 +49,9 @@ export function createClient(options: {
|
|
|
49
49
|
pipeName: string;
|
|
50
50
|
/** Path to a JSON file containing connection properties and authentication information. */
|
|
51
51
|
profilePath?: string;
|
|
52
|
-
/** Connection properties and authentication information. Common properties include account, user, private_key, url
|
|
52
|
+
/** Connection properties and authentication information. Common properties include account, user, private_key, url
|
|
53
|
+
* and application (partner app name for User-Agent; 1–64 visible ASCII chars (0x21–0x7E),
|
|
54
|
+
* excluding `(`, `)`, `\`; regex: `^[!-'*-\[-\]-~]{1,64}$`). */
|
|
53
55
|
properties?: Record<string, string>;
|
|
54
56
|
}): Promise<StreamingIngestClient>;
|
|
55
57
|
|
|
@@ -347,5 +349,3 @@ export class StreamingIngestError extends Error {
|
|
|
347
349
|
/** HTTP status name (for example, "Bad Request"). */
|
|
348
350
|
readonly httpStatusName: string;
|
|
349
351
|
}
|
|
350
|
-
|
|
351
|
-
|