@kubun/plugin-connector 0.14.1 → 0.14.3
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/lib/action.d.ts +9 -0
- package/lib/action.js +9 -1
- package/lib/auth-required.d.ts +11 -0
- package/lib/auth-required.js +17 -0
- package/lib/credential-refresh-bridge.d.ts +11 -0
- package/lib/credential-refresh-bridge.js +27 -0
- package/lib/credential.d.ts +2 -2
- package/lib/credential.js +1 -1
- package/lib/index.d.ts +8 -2
- package/lib/index.js +350 -62
- package/lib/manager.d.ts +71 -3
- package/lib/manager.js +41 -6
- package/lib/oauth.d.ts +5 -1
- package/lib/oauth.js +5 -2
- package/lib/periodic-sync.d.ts +4 -0
- package/lib/periodic-sync.js +12 -0
- package/lib/schema.d.ts +45 -1
- package/lib/schema.js +122 -0
- package/lib/sync/orchestrate.d.ts +11 -1
- package/lib/sync/orchestrate.js +6 -0
- package/lib/sync/workflow.d.ts +11 -0
- package/lib/sync/workflow.js +26 -2
- package/lib/write-grants.d.ts +10 -2
- package/lib/write-grants.js +10 -1
- package/package.json +7 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kubun/plugin-connector",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.3",
|
|
4
4
|
"license": "see LICENSE.md",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"type": "module",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"@kokuin/jwe": "^0.1.0",
|
|
19
19
|
"@kokuin/token": "^0.5.0",
|
|
20
20
|
"@kubun/connector": "^0.14.0",
|
|
21
|
-
"@kubun/credential": "^0.14.
|
|
21
|
+
"@kubun/credential": "^0.14.3",
|
|
22
22
|
"@kubun/credential-types": "^0.14.0",
|
|
23
23
|
"@kubun/db": "^0.14.0",
|
|
24
24
|
"@kubun/engine": "^0.14.1",
|
|
@@ -27,11 +27,11 @@
|
|
|
27
27
|
"@kubun/id": "^0.14.0",
|
|
28
28
|
"@kubun/logger": "^0.14.0",
|
|
29
29
|
"@kubun/plugin-blob-api": "^0.14.0",
|
|
30
|
-
"@kubun/plugin-workflow-api": "^0.14.
|
|
30
|
+
"@kubun/plugin-workflow-api": "^0.14.1",
|
|
31
31
|
"@kubun/protocol": "^0.14.1",
|
|
32
32
|
"@kubun/service-credential-api": "^0.14.0",
|
|
33
33
|
"@kubun/store-connector": "^0.14.0",
|
|
34
|
-
"@kubun/store-credential": "^0.14.
|
|
34
|
+
"@kubun/store-credential": "^0.14.1",
|
|
35
35
|
"@kubun/store-delegation": "^0.14.0",
|
|
36
36
|
"@kubun/store-graph": "^0.14.1",
|
|
37
37
|
"@noble/hashes": "^2.4.0",
|
|
@@ -50,17 +50,18 @@
|
|
|
50
50
|
"@kokuin/controller": "^0.1.0",
|
|
51
51
|
"@kubun/blob-backend": "^0.14.0",
|
|
52
52
|
"@kubun/connector-google-mail": "^0.14.0",
|
|
53
|
+
"@kubun/db-node-sqlite": "^0.14.0",
|
|
53
54
|
"@kubun/db-postgres": "^0.14.0",
|
|
54
55
|
"@kubun/models": "^0.14.0",
|
|
55
56
|
"@kubun/plugin-blob": "^0.14.0",
|
|
56
57
|
"@kubun/plugin-credential": "^0.14.0",
|
|
57
58
|
"@kubun/plugin-service-client": "^0.14.0",
|
|
58
59
|
"@kubun/plugin-service-server": "^0.14.0",
|
|
59
|
-
"@kubun/plugin-workflow": "^0.14.
|
|
60
|
+
"@kubun/plugin-workflow": "^0.14.1",
|
|
60
61
|
"@kubun/service-controller-log-api": "^0.14.0",
|
|
61
62
|
"@kubun/store-blob": "^0.14.0",
|
|
62
63
|
"@kubun/store-controller": "^0.14.0",
|
|
63
|
-
"@kubun/store-workflow": "^0.14.
|
|
64
|
+
"@kubun/store-workflow": "^0.14.1",
|
|
64
65
|
"@kubun/test-utils": "^0.13.0",
|
|
65
66
|
"@testcontainers/postgresql": "^12.1.0",
|
|
66
67
|
"get-port": "^7.2.0"
|