@learncard/didkey-plugin 1.0.3 → 1.0.4
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/index.d.ts +11 -0
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
@@ -19,6 +19,7 @@ export declare const getDidKeyPlugin: <DidMethod extends string>(learnCard: {
|
|
19
19
|
index?: {} | undefined;
|
20
20
|
cache?: {} | undefined;
|
21
21
|
id?: {} | undefined;
|
22
|
+
context?: {} | undefined;
|
22
23
|
}>(plugin: NewPlugin) => Promise<{
|
23
24
|
plugins: [...any[], NewPlugin];
|
24
25
|
invoke: any;
|
@@ -33,6 +34,7 @@ export declare const getDidKeyPlugin: <DidMethod extends string>(learnCard: {
|
|
33
34
|
index?: {} | undefined;
|
34
35
|
cache?: {} | undefined;
|
35
36
|
id?: {} | undefined;
|
37
|
+
context?: {} | undefined;
|
36
38
|
}>(plugin: NewPlugin_1) => Promise<{
|
37
39
|
plugins: [...any[], NewPlugin, NewPlugin_1];
|
38
40
|
invoke: any;
|
@@ -47,6 +49,7 @@ export declare const getDidKeyPlugin: <DidMethod extends string>(learnCard: {
|
|
47
49
|
index?: {} | undefined;
|
48
50
|
cache?: {} | undefined;
|
49
51
|
id?: {} | undefined;
|
52
|
+
context?: {} | undefined;
|
50
53
|
}>(plugin: NewPlugin_2) => Promise<{
|
51
54
|
plugins: [...any[], NewPlugin, NewPlugin_1, NewPlugin_2];
|
52
55
|
invoke: any;
|
@@ -61,6 +64,7 @@ export declare const getDidKeyPlugin: <DidMethod extends string>(learnCard: {
|
|
61
64
|
index?: {} | undefined;
|
62
65
|
cache?: {} | undefined;
|
63
66
|
id?: {} | undefined;
|
67
|
+
context?: {} | undefined;
|
64
68
|
}>(plugin: NewPlugin_3) => Promise<{
|
65
69
|
plugins: [...any[], NewPlugin, NewPlugin_1, NewPlugin_2, NewPlugin_3];
|
66
70
|
invoke: any;
|
@@ -75,6 +79,7 @@ export declare const getDidKeyPlugin: <DidMethod extends string>(learnCard: {
|
|
75
79
|
index?: {} | undefined;
|
76
80
|
cache?: {} | undefined;
|
77
81
|
id?: {} | undefined;
|
82
|
+
context?: {} | undefined;
|
78
83
|
}>(plugin: NewPlugin_4) => Promise<{
|
79
84
|
plugins: [...any[], NewPlugin, NewPlugin_1, NewPlugin_2, NewPlugin_3, NewPlugin_4];
|
80
85
|
invoke: any;
|
@@ -89,6 +94,7 @@ export declare const getDidKeyPlugin: <DidMethod extends string>(learnCard: {
|
|
89
94
|
index?: {} | undefined;
|
90
95
|
cache?: {} | undefined;
|
91
96
|
id?: {} | undefined;
|
97
|
+
context?: {} | undefined;
|
92
98
|
}>(plugin: NewPlugin_5) => Promise<{
|
93
99
|
plugins: [...any[], NewPlugin, NewPlugin_1, NewPlugin_2, NewPlugin_3, NewPlugin_4, NewPlugin_5];
|
94
100
|
invoke: any;
|
@@ -103,6 +109,7 @@ export declare const getDidKeyPlugin: <DidMethod extends string>(learnCard: {
|
|
103
109
|
index?: {} | undefined;
|
104
110
|
cache?: {} | undefined;
|
105
111
|
id?: {} | undefined;
|
112
|
+
context?: {} | undefined;
|
106
113
|
}>(plugin: NewPlugin_6) => Promise<{
|
107
114
|
plugins: [...any[], NewPlugin, NewPlugin_1, NewPlugin_2, NewPlugin_3, NewPlugin_4, NewPlugin_5, NewPlugin_6];
|
108
115
|
invoke: any;
|
@@ -117,6 +124,7 @@ export declare const getDidKeyPlugin: <DidMethod extends string>(learnCard: {
|
|
117
124
|
index?: {} | undefined;
|
118
125
|
cache?: {} | undefined;
|
119
126
|
id?: {} | undefined;
|
127
|
+
context?: {} | undefined;
|
120
128
|
}>(plugin: NewPlugin_7) => Promise<{
|
121
129
|
plugins: [...any[], NewPlugin, NewPlugin_1, NewPlugin_2, NewPlugin_3, NewPlugin_4, NewPlugin_5, NewPlugin_6, NewPlugin_7];
|
122
130
|
invoke: any;
|
@@ -131,6 +139,7 @@ export declare const getDidKeyPlugin: <DidMethod extends string>(learnCard: {
|
|
131
139
|
index?: {} | undefined;
|
132
140
|
cache?: {} | undefined;
|
133
141
|
id?: {} | undefined;
|
142
|
+
context?: {} | undefined;
|
134
143
|
}>(plugin: NewPlugin_8) => Promise<{
|
135
144
|
plugins: [...any[], NewPlugin, NewPlugin_1, NewPlugin_2, NewPlugin_3, NewPlugin_4, NewPlugin_5, NewPlugin_6, NewPlugin_7, NewPlugin_8];
|
136
145
|
invoke: any;
|
@@ -145,6 +154,7 @@ export declare const getDidKeyPlugin: <DidMethod extends string>(learnCard: {
|
|
145
154
|
index?: {} | undefined;
|
146
155
|
cache?: {} | undefined;
|
147
156
|
id?: {} | undefined;
|
157
|
+
context?: {} | undefined;
|
148
158
|
}>(plugin: NewPlugin_9) => Promise<{
|
149
159
|
plugins: [...any[], NewPlugin, NewPlugin_1, NewPlugin_2, NewPlugin_3, NewPlugin_4, NewPlugin_5, NewPlugin_6, NewPlugin_7, NewPlugin_8, NewPlugin_9];
|
150
160
|
invoke: any;
|
@@ -159,6 +169,7 @@ export declare const getDidKeyPlugin: <DidMethod extends string>(learnCard: {
|
|
159
169
|
index?: {} | undefined;
|
160
170
|
cache?: {} | undefined;
|
161
171
|
id?: {} | undefined;
|
172
|
+
context?: {} | undefined;
|
162
173
|
}>(plugin: NewPlugin_10) => Promise<any>;
|
163
174
|
debug?: {
|
164
175
|
(...data: any[]): void;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@learncard/didkey-plugin",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.4",
|
4
4
|
"description": "",
|
5
5
|
"main": "./dist/index.js",
|
6
6
|
"module": "./dist/didkey-plugin.esm.js",
|
@@ -32,7 +32,7 @@
|
|
32
32
|
"types": "./dist/index.d.ts",
|
33
33
|
"dependencies": {
|
34
34
|
"hex-lite": "^1.5.0",
|
35
|
-
"@learncard/core": "9.0
|
35
|
+
"@learncard/core": "9.1.0",
|
36
36
|
"@learncard/helpers": "^1.0.7"
|
37
37
|
},
|
38
38
|
"scripts": {
|