@olane/o-tool-registry 0.2.3 → 0.3.1
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/auth/oAuth.tool.d.ts +2 -2
- package/dist/auth/oAuth.tool.d.ts.map +1 -1
- package/dist/auth/oAuth.tool.js +2 -2
- package/dist/init.d.ts +2 -2
- package/dist/init.d.ts.map +1 -1
- package/package.json +12 -12
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export declare class OAuthTool extends
|
|
1
|
+
import { oToolConfig, oVirtualTool } from '@olane/o-tool';
|
|
2
|
+
export declare class OAuthTool extends oVirtualTool {
|
|
3
3
|
private oauthConfigs;
|
|
4
4
|
private tokenStore;
|
|
5
5
|
constructor(config: oToolConfig);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"oAuth.tool.d.ts","sourceRoot":"","sources":["../../src/auth/oAuth.tool.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"oAuth.tool.d.ts","sourceRoot":"","sources":["../../src/auth/oAuth.tool.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,YAAY,EAAE,MAAM,eAAe,CAAC;AAO1D,qBAAa,SAAU,SAAQ,YAAY;IACzC,OAAO,CAAC,YAAY,CAAuC;IAC3D,OAAO,CAAC,UAAU,CAAuC;gBAE7C,MAAM,EAAE,WAAW;IAWzB,eAAe,CAAC,OAAO,EAAE,GAAG,GAAG,OAAO,CAAC,GAAG,CAAC;IAuC3C,yBAAyB,CAAC,OAAO,EAAE,GAAG,GAAG,OAAO,CAAC,GAAG,CAAC;IAqDrD,kBAAkB,CAAC,OAAO,EAAE,GAAG,GAAG,OAAO,CAAC,GAAG,CAAC;IAuE9C,kBAAkB,CAAC,OAAO,EAAE,GAAG,GAAG,OAAO,CAAC,GAAG,CAAC;IAuE9C,iBAAiB,CAAC,OAAO,EAAE,GAAG,GAAG,OAAO,CAAC,GAAG,CAAC;IAgD7C,mBAAmB,CAAC,OAAO,EAAE,GAAG,GAAG,OAAO,CAAC,GAAG,CAAC;IAgD/C,iBAAiB,CAAC,OAAO,EAAE,GAAG,GAAG,OAAO,CAAC,GAAG,CAAC;IAoF7C,kBAAkB,CAAC,OAAO,EAAE,GAAG,GAAG,OAAO,CAAC,GAAG,CAAC;IAU9C,qBAAqB,CAAC,OAAO,EAAE,GAAG,GAAG,OAAO,CAAC,GAAG,CAAC;IAyCjD,iBAAiB,CAAC,OAAO,EAAE,GAAG,GAAG,OAAO,CAAC,GAAG,CAAC;IA4BnD,OAAO,CAAC,oBAAoB;YAMd,qBAAqB;IAOnC,OAAO,CAAC,eAAe;CAMxB"}
|
package/dist/auth/oAuth.tool.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { oVirtualTool } from '@olane/o-tool';
|
|
2
2
|
import { oAddress } from '@olane/o-core';
|
|
3
3
|
import { oauthMethods } from './methods/auth.methods.js';
|
|
4
|
-
export class OAuthTool extends
|
|
4
|
+
export class OAuthTool extends oVirtualTool {
|
|
5
5
|
constructor(config) {
|
|
6
6
|
super({
|
|
7
7
|
...config,
|
package/dist/init.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export declare const initRegistryTools: (oNode: oVirtualTool
|
|
1
|
+
import { oVirtualTool } from '@olane/o-tool';
|
|
2
|
+
export declare const initRegistryTools: (oNode: oVirtualTool) => void;
|
|
3
3
|
//# sourceMappingURL=init.d.ts.map
|
package/dist/init.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"init.d.ts","sourceRoot":"","sources":["../src/init.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"init.d.ts","sourceRoot":"","sources":["../src/init.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,YAAY,EAAE,MAAM,eAAe,CAAC;AAE7C,eAAO,MAAM,iBAAiB,UAAW,YAAY,KAAG,IA8BvD,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@olane/o-tool-registry",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
},
|
|
27
27
|
"repository": {
|
|
28
28
|
"type": "git",
|
|
29
|
-
"url": "git+https://github.com/olane-labs/
|
|
29
|
+
"url": "git+https://github.com/olane-labs/olane.git"
|
|
30
30
|
},
|
|
31
31
|
"author": "oLane Inc.",
|
|
32
32
|
"license": "ISC",
|
|
@@ -34,11 +34,11 @@
|
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@eslint/eslintrc": "^3.3.1",
|
|
36
36
|
"@eslint/js": "^9.29.0",
|
|
37
|
-
"@olane/o-config": "^0.
|
|
38
|
-
"@olane/o-core": "^0.
|
|
39
|
-
"@olane/o-protocol": "^0.
|
|
40
|
-
"@olane/o-tool": "^0.
|
|
41
|
-
"@olane/o-tools-common": "^0.
|
|
37
|
+
"@olane/o-config": "^0.3.1",
|
|
38
|
+
"@olane/o-core": "^0.3.1",
|
|
39
|
+
"@olane/o-protocol": "^0.3.1",
|
|
40
|
+
"@olane/o-tool": "^0.3.1",
|
|
41
|
+
"@olane/o-tools-common": "^0.3.1",
|
|
42
42
|
"@tsconfig/node20": "^20.1.6",
|
|
43
43
|
"@types/jest": "^30.0.0",
|
|
44
44
|
"@types/uuid": "^10.0.0",
|
|
@@ -57,11 +57,11 @@
|
|
|
57
57
|
"typescript": "5.4.5"
|
|
58
58
|
},
|
|
59
59
|
"peerDependencies": {
|
|
60
|
-
"@olane/o-config": "^0.
|
|
61
|
-
"@olane/o-core": "^0.
|
|
62
|
-
"@olane/o-protocol": "^0.
|
|
63
|
-
"@olane/o-tool": "^0.
|
|
64
|
-
"@olane/o-tools-common": "^0.
|
|
60
|
+
"@olane/o-config": "^0.3.1",
|
|
61
|
+
"@olane/o-core": "^0.3.1",
|
|
62
|
+
"@olane/o-protocol": "^0.3.1",
|
|
63
|
+
"@olane/o-tool": "^0.3.1",
|
|
64
|
+
"@olane/o-tools-common": "^0.3.1"
|
|
65
65
|
},
|
|
66
66
|
"dependencies": {
|
|
67
67
|
"@huggingface/transformers": "^3.5.2",
|