@dbx-tools/auth 0.6.167 → 0.6.175
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/index.ts +2 -3
- package/lib/index.js +3 -39
- package/package.json +10 -10
package/index.ts
CHANGED
|
@@ -3,6 +3,5 @@
|
|
|
3
3
|
// Hand edits are overwritten on the next watch; this file is read-only.
|
|
4
4
|
|
|
5
5
|
export const PACKAGE_IDENTIFIER = "@dbx-tools/auth";
|
|
6
|
-
export
|
|
7
|
-
export
|
|
8
|
-
export * from "./exports.ts";
|
|
6
|
+
export const PACKAGE_VERSION = "0.6.175";
|
|
7
|
+
export * from "./src/bindings.ts";
|
package/lib/index.js
CHANGED
|
@@ -1,41 +1,3 @@
|
|
|
1
|
-
var __defProp = Object.defineProperty;
|
|
2
|
-
var __returnValue = (v) => v;
|
|
3
|
-
function __exportSetter(name, newValue) {
|
|
4
|
-
this[name] = __returnValue.bind(null, newValue);
|
|
5
|
-
}
|
|
6
|
-
var __export = (target, all) => {
|
|
7
|
-
for (var name in all)
|
|
8
|
-
__defProp(target, name, {
|
|
9
|
-
get: all[name],
|
|
10
|
-
enumerable: true,
|
|
11
|
-
configurable: true,
|
|
12
|
-
set: __exportSetter.bind(all, name)
|
|
13
|
-
});
|
|
14
|
-
};
|
|
15
|
-
|
|
16
|
-
// src/bindings.ts
|
|
17
|
-
var exports_bindings = {};
|
|
18
|
-
__export(exports_bindings, {
|
|
19
|
-
uniffiModule: () => _bindings_default,
|
|
20
|
-
uniffiInitAsync: () => uniffiInitAsync,
|
|
21
|
-
credentialKey: () => credentialKey,
|
|
22
|
-
createStorageHandle: () => createStorageHandle,
|
|
23
|
-
createProviderAuthWithStorage: () => createProviderAuthWithStorage,
|
|
24
|
-
createProviderAuth: () => createProviderAuth,
|
|
25
|
-
canonicalScopes: () => canonicalScopes,
|
|
26
|
-
StorageHandle: () => StorageHandle,
|
|
27
|
-
StorageAdapterImpl: () => StorageAdapterImpl,
|
|
28
|
-
Storage: () => Storage,
|
|
29
|
-
ProviderOptions: () => ProviderOptions,
|
|
30
|
-
ProviderAuth: () => ProviderAuth,
|
|
31
|
-
OAuthGrant: () => OAuthGrant,
|
|
32
|
-
FileLayout: () => FileLayout,
|
|
33
|
-
AuthOptions: () => AuthOptions,
|
|
34
|
-
AuthError_Tags: () => AuthError_Tags,
|
|
35
|
-
AuthError: () => AuthError,
|
|
36
|
-
AccessToken: () => AccessToken
|
|
37
|
-
});
|
|
38
|
-
|
|
39
1
|
// src/_bindings-ffi.ts
|
|
40
2
|
import lib from "@ubjs/node";
|
|
41
3
|
var { UniffiNativeModule, FfiType, resolveLibPath } = lib;
|
|
@@ -1605,8 +1567,10 @@ var _bindings_default = Object.freeze({
|
|
|
1605
1567
|
// src/bindings.ts
|
|
1606
1568
|
_bindings_default.initialize();
|
|
1607
1569
|
async function uniffiInitAsync() {}
|
|
1570
|
+
|
|
1608
1571
|
// index.ts
|
|
1609
1572
|
var PACKAGE_IDENTIFIER = "@dbx-tools/auth";
|
|
1573
|
+
var PACKAGE_VERSION = "0.6.175";
|
|
1610
1574
|
export {
|
|
1611
1575
|
_bindings_default as uniffiModule,
|
|
1612
1576
|
uniffiInitAsync,
|
|
@@ -1615,12 +1579,12 @@ export {
|
|
|
1615
1579
|
createProviderAuthWithStorage,
|
|
1616
1580
|
createProviderAuth,
|
|
1617
1581
|
canonicalScopes,
|
|
1618
|
-
exports_bindings as bindings,
|
|
1619
1582
|
StorageHandle,
|
|
1620
1583
|
StorageAdapterImpl,
|
|
1621
1584
|
Storage,
|
|
1622
1585
|
ProviderOptions,
|
|
1623
1586
|
ProviderAuth,
|
|
1587
|
+
PACKAGE_VERSION,
|
|
1624
1588
|
PACKAGE_IDENTIFIER,
|
|
1625
1589
|
OAuthGrant,
|
|
1626
1590
|
FileLayout,
|
package/package.json
CHANGED
|
@@ -1,19 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dbx-tools/auth",
|
|
3
|
-
"description": "Node bindings for dbx-tools-auth",
|
|
4
3
|
"repository": {
|
|
5
4
|
"type": "git",
|
|
6
5
|
"url": "git+https://github.com/reggie-db/dbx-tools.git",
|
|
7
6
|
"directory": "packages/js/node/auth"
|
|
8
7
|
},
|
|
9
8
|
"dependencies": {
|
|
10
|
-
"@dbx-tools/shared-core": "0.6.
|
|
9
|
+
"@dbx-tools/shared-core": "0.6.175",
|
|
11
10
|
"@ubjs/core": "0.31.0-5",
|
|
12
11
|
"@ubjs/node": "0.31.0-5"
|
|
13
12
|
},
|
|
14
13
|
"main": "./lib/index.js",
|
|
15
14
|
"license": "Apache-2.0",
|
|
16
|
-
"version": "0.6.
|
|
15
|
+
"version": "0.6.175",
|
|
17
16
|
"types": "./index.ts",
|
|
18
17
|
"type": "module",
|
|
19
18
|
"exports": {
|
|
@@ -28,18 +27,19 @@
|
|
|
28
27
|
"src",
|
|
29
28
|
"lib"
|
|
30
29
|
],
|
|
31
|
-
"private": false,
|
|
32
30
|
"optionalDependencies": {
|
|
33
|
-
"@dbx-tools/auth-linux-x64-gnu": "0.6.
|
|
34
|
-
"@dbx-tools/auth-linux-arm64-gnu": "0.6.
|
|
35
|
-
"@dbx-tools/auth-darwin-x64": "0.6.
|
|
36
|
-
"@dbx-tools/auth-darwin-arm64": "0.6.
|
|
37
|
-
"@dbx-tools/auth-win32-x64-msvc": "0.6.
|
|
31
|
+
"@dbx-tools/auth-linux-x64-gnu": "0.6.175",
|
|
32
|
+
"@dbx-tools/auth-linux-arm64-gnu": "0.6.175",
|
|
33
|
+
"@dbx-tools/auth-darwin-x64": "0.6.175",
|
|
34
|
+
"@dbx-tools/auth-darwin-arm64": "0.6.175",
|
|
35
|
+
"@dbx-tools/auth-win32-x64-msvc": "0.6.175"
|
|
38
36
|
},
|
|
39
37
|
"dbxToolsConfig": {
|
|
38
|
+
"uniffi": true,
|
|
40
39
|
"tags": [
|
|
41
40
|
"node"
|
|
42
41
|
]
|
|
43
42
|
},
|
|
44
|
-
"//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"bunx projen\"."
|
|
43
|
+
"//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"bunx projen\".",
|
|
44
|
+
"private": false
|
|
45
45
|
}
|