@databricks/sdk-options 0.1.0-dev.6 → 0.3.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/README.md +3 -7
- package/dist/client/index.d.ts +4 -2
- package/dist/client/index.d.ts.map +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,11 +1,7 @@
|
|
|
1
1
|
# Databricks SDK Options for JavaScript
|
|
2
2
|
|
|
3
|
-
> [!
|
|
4
|
-
> ## PREVIEW - NOT FOR PRODUCTION USE
|
|
3
|
+
> [!NOTE]
|
|
5
4
|
>
|
|
6
|
-
>
|
|
5
|
+
> ## Beta
|
|
7
6
|
>
|
|
8
|
-
>
|
|
9
|
-
> - **Breaking changes may occur at any time**
|
|
10
|
-
> - **APIs are experimental and unstable**
|
|
11
|
-
> - **Use for development and testing only**
|
|
7
|
+
> **This SDK is in Beta and is supported for production use cases.** Interfaces might still change slightly before GA (e.g. name standardization and minor ergonomic tweaks). We are keen to hear feedback from early adopters — please [file issues](https://github.com/databricks/sdk-js/issues), and we will address them.
|
package/dist/client/index.d.ts
CHANGED
|
@@ -21,8 +21,10 @@ export interface ClientOptions {
|
|
|
21
21
|
/**
|
|
22
22
|
* Databricks workspace ID used to route workspace-level API calls on
|
|
23
23
|
* unified hosts (SPOG). When set, workspace-level methods send the
|
|
24
|
-
* `X-Databricks-
|
|
25
|
-
*
|
|
24
|
+
* `X-Databricks-Workspace-Id` header on every request. Accepts either a
|
|
25
|
+
* classic numeric workspace ID or another workspace identifier format that
|
|
26
|
+
* the server understands. Ignored by clients that only expose account-level
|
|
27
|
+
* methods.
|
|
26
28
|
*/
|
|
27
29
|
workspaceId?: string;
|
|
28
30
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/client/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,EAAC,WAAW,EAAC,MAAM,sBAAsB,CAAC;AACtD,OAAO,KAAK,EAAC,UAAU,EAAC,MAAM,2BAA2B,CAAC;AAC1D,OAAO,KAAK,EAAC,MAAM,EAAC,MAAM,6BAA6B,CAAC;AACxD,OAAO,KAAK,EAAC,cAAc,EAAC,MAAM,+BAA+B,CAAC;AAElE,sDAAsD;AACtD,MAAM,WAAW,aAAa;IAC5B,2BAA2B;IAC3B,IAAI,CAAC,EAAE,MAAM,CAAC;IAEd;;;;;OAKG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/client/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,EAAC,WAAW,EAAC,MAAM,sBAAsB,CAAC;AACtD,OAAO,KAAK,EAAC,UAAU,EAAC,MAAM,2BAA2B,CAAC;AAC1D,OAAO,KAAK,EAAC,MAAM,EAAC,MAAM,6BAA6B,CAAC;AACxD,OAAO,KAAK,EAAC,cAAc,EAAC,MAAM,+BAA+B,CAAC;AAElE,sDAAsD;AACtD,MAAM,WAAW,aAAa;IAC5B,2BAA2B;IAC3B,IAAI,CAAC,EAAE,MAAM,CAAC;IAEd;;;;;OAKG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;;;;;;OAOG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;;OAGG;IACH,UAAU,CAAC,EAAE,UAAU,CAAC;IAExB,iDAAiD;IACjD,WAAW,CAAC,EAAE,WAAW,CAAC;IAE1B;;;OAGG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IAEjB,iDAAiD;IACjD,MAAM,CAAC,EAAE,MAAM,CAAC;IAEhB;;;;;;;;;OASG;IACH,cAAc,CAAC,EAAE,cAAc,CAAC;CACjC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@databricks/sdk-options",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "Options for configuring Databricks API clients and individual calls.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"node": ">=22.0.0"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@databricks/sdk-auth": ">=0.
|
|
45
|
-
"@databricks/sdk-core": ">=0.
|
|
44
|
+
"@databricks/sdk-auth": ">=0.3.0 <1.0.0",
|
|
45
|
+
"@databricks/sdk-core": ">=0.3.0 <1.0.0"
|
|
46
46
|
}
|
|
47
47
|
}
|