@databricks/sdk-oauth 0.10.0 → 0.12.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/v1/client.d.ts +6 -6
- package/dist/v1/client.js +6 -6
- package/package.json +4 -4
package/dist/v1/client.d.ts
CHANGED
|
@@ -11,23 +11,23 @@ export declare class OAuthClient {
|
|
|
11
11
|
/**
|
|
12
12
|
* Create Custom OAuth App Integration.
|
|
13
13
|
*
|
|
14
|
-
* You can retrieve the custom OAuth app integration via
|
|
14
|
+
* You can retrieve the custom OAuth app integration via [CustomAppIntegration/get](https://docs.databricks.com/api/account/customappintegration/get).
|
|
15
15
|
*/
|
|
16
16
|
createCustomOAuthAppIntegration(req: CreateCustomOAuthAppIntegrationRequest, options?: CallOptions): Promise<CustomOAuthAppIntegrationSecret>;
|
|
17
17
|
/**
|
|
18
18
|
* Create Published OAuth App Integration.
|
|
19
19
|
*
|
|
20
|
-
* You can retrieve the published OAuth app integration via
|
|
20
|
+
* You can retrieve the published OAuth app integration via [PublishedAppIntegration/get](https://docs.databricks.com/api/account/publishedappintegration/get).
|
|
21
21
|
*/
|
|
22
22
|
createPublishedOAuthAppIntegration(req: CreatePublishedOAuthAppIntegrationRequest, options?: CallOptions): Promise<CreatePublishedOAuthAppIntegrationResponse>;
|
|
23
23
|
/**
|
|
24
24
|
* Delete an existing Custom OAuth App Integration.
|
|
25
|
-
* You can retrieve the custom OAuth app integration via
|
|
25
|
+
* You can retrieve the custom OAuth app integration via [CustomAppIntegration/get](https://docs.databricks.com/api/account/customappintegration/get).
|
|
26
26
|
*/
|
|
27
27
|
deleteCustomOAuthAppIntegration(req: DeleteCustomOAuthAppIntegrationRequest, options?: CallOptions): Promise<DeleteCustomOAuthAppIntegrationResponse>;
|
|
28
28
|
/**
|
|
29
29
|
* Delete an existing Published OAuth App Integration.
|
|
30
|
-
* You can retrieve the published OAuth app integration via
|
|
30
|
+
* You can retrieve the published OAuth app integration via [PublishedAppIntegration/get](https://docs.databricks.com/api/account/publishedappintegration/get).
|
|
31
31
|
*/
|
|
32
32
|
deletePublishedOAuthAppIntegration(req: DeletePublishedOAuthAppIntegrationRequest, options?: CallOptions): Promise<DeletePublishedOAuthAppIntegrationResponse>;
|
|
33
33
|
/** Gets the Custom OAuth App Integration for the given integration id. */
|
|
@@ -45,12 +45,12 @@ export declare class OAuthClient {
|
|
|
45
45
|
listPublishedOAuthAppsIter(req: ListPublishedOAuthAppsRequest, options?: CallOptions): AsyncGenerator<PublishedOAuthApp>;
|
|
46
46
|
/**
|
|
47
47
|
* Updates an existing custom OAuth App Integration.
|
|
48
|
-
* You can retrieve the custom OAuth app integration via
|
|
48
|
+
* You can retrieve the custom OAuth app integration via [CustomAppIntegration/get](https://docs.databricks.com/api/account/customappintegration/get).
|
|
49
49
|
*/
|
|
50
50
|
updateCustomOAuthAppIntegration(req: UpdateCustomOAuthAppIntegrationRequest, options?: CallOptions): Promise<UpdateCustomOAuthAppIntegrationResponse>;
|
|
51
51
|
/**
|
|
52
52
|
* Updates an existing published OAuth App Integration.
|
|
53
|
-
* You can retrieve the published OAuth app integration via
|
|
53
|
+
* You can retrieve the published OAuth app integration via [PublishedAppIntegration/get](https://docs.databricks.com/api/account/publishedappintegration/get).
|
|
54
54
|
*/
|
|
55
55
|
updatePublishedOAuthAppIntegration(req: UpdatePublishedOAuthAppIntegrationRequest, options?: CallOptions): Promise<UpdatePublishedOAuthAppIntegrationResponse>;
|
|
56
56
|
}
|
package/dist/v1/client.js
CHANGED
|
@@ -38,7 +38,7 @@ export class OAuthClient {
|
|
|
38
38
|
/**
|
|
39
39
|
* Create Custom OAuth App Integration.
|
|
40
40
|
*
|
|
41
|
-
* You can retrieve the custom OAuth app integration via
|
|
41
|
+
* You can retrieve the custom OAuth app integration via [CustomAppIntegration/get](https://docs.databricks.com/api/account/customappintegration/get).
|
|
42
42
|
*/
|
|
43
43
|
async createCustomOAuthAppIntegration(req, options) {
|
|
44
44
|
const { host, accountId, httpClient } = await this.resolveConfig();
|
|
@@ -65,7 +65,7 @@ export class OAuthClient {
|
|
|
65
65
|
/**
|
|
66
66
|
* Create Published OAuth App Integration.
|
|
67
67
|
*
|
|
68
|
-
* You can retrieve the published OAuth app integration via
|
|
68
|
+
* You can retrieve the published OAuth app integration via [PublishedAppIntegration/get](https://docs.databricks.com/api/account/publishedappintegration/get).
|
|
69
69
|
*/
|
|
70
70
|
async createPublishedOAuthAppIntegration(req, options) {
|
|
71
71
|
const { host, accountId, httpClient } = await this.resolveConfig();
|
|
@@ -91,7 +91,7 @@ export class OAuthClient {
|
|
|
91
91
|
}
|
|
92
92
|
/**
|
|
93
93
|
* Delete an existing Custom OAuth App Integration.
|
|
94
|
-
* You can retrieve the custom OAuth app integration via
|
|
94
|
+
* You can retrieve the custom OAuth app integration via [CustomAppIntegration/get](https://docs.databricks.com/api/account/customappintegration/get).
|
|
95
95
|
*/
|
|
96
96
|
async deleteCustomOAuthAppIntegration(req, options) {
|
|
97
97
|
const { host, accountId, httpClient } = await this.resolveConfig();
|
|
@@ -116,7 +116,7 @@ export class OAuthClient {
|
|
|
116
116
|
}
|
|
117
117
|
/**
|
|
118
118
|
* Delete an existing Published OAuth App Integration.
|
|
119
|
-
* You can retrieve the published OAuth app integration via
|
|
119
|
+
* You can retrieve the published OAuth app integration via [PublishedAppIntegration/get](https://docs.databricks.com/api/account/publishedappintegration/get).
|
|
120
120
|
*/
|
|
121
121
|
async deletePublishedOAuthAppIntegration(req, options) {
|
|
122
122
|
const { host, accountId, httpClient } = await this.resolveConfig();
|
|
@@ -320,7 +320,7 @@ export class OAuthClient {
|
|
|
320
320
|
}
|
|
321
321
|
/**
|
|
322
322
|
* Updates an existing custom OAuth App Integration.
|
|
323
|
-
* You can retrieve the custom OAuth app integration via
|
|
323
|
+
* You can retrieve the custom OAuth app integration via [CustomAppIntegration/get](https://docs.databricks.com/api/account/customappintegration/get).
|
|
324
324
|
*/
|
|
325
325
|
async updateCustomOAuthAppIntegration(req, options) {
|
|
326
326
|
const { host, accountId, httpClient } = await this.resolveConfig();
|
|
@@ -346,7 +346,7 @@ export class OAuthClient {
|
|
|
346
346
|
}
|
|
347
347
|
/**
|
|
348
348
|
* Updates an existing published OAuth App Integration.
|
|
349
|
-
* You can retrieve the published OAuth app integration via
|
|
349
|
+
* You can retrieve the published OAuth app integration via [PublishedAppIntegration/get](https://docs.databricks.com/api/account/publishedappintegration/get).
|
|
350
350
|
*/
|
|
351
351
|
async updatePublishedOAuthAppIntegration(req, options) {
|
|
352
352
|
const { host, accountId, httpClient } = await this.resolveConfig();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@databricks/sdk-oauth",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.12.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -33,9 +33,9 @@
|
|
|
33
33
|
"directory": "packages/oauth"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@databricks/sdk-auth": ">=0.
|
|
37
|
-
"@databricks/sdk-core": ">=0.
|
|
38
|
-
"@databricks/sdk-options": ">=0.
|
|
36
|
+
"@databricks/sdk-auth": ">=0.12.0 <1.0.0",
|
|
37
|
+
"@databricks/sdk-core": ">=0.12.0 <1.0.0",
|
|
38
|
+
"@databricks/sdk-options": ">=0.12.0 <1.0.0",
|
|
39
39
|
"@js-temporal/polyfill": "^0.5.0",
|
|
40
40
|
"json-bigint": "^1.0.0",
|
|
41
41
|
"zod": "^4.3.6"
|