@xyo-network/sentinel-wrapper 3.5.2 → 3.6.0-rc.10
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/neutral/Wrapper.d.ts +258 -32
- package/dist/neutral/Wrapper.d.ts.map +1 -1
- package/package.json +24 -23
|
@@ -11,17 +11,99 @@ export declare class SentinelWrapper<TModule extends SentinelModule = SentinelMo
|
|
|
11
11
|
addToResolvers?: boolean;
|
|
12
12
|
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
13
13
|
allowNameResolution?: boolean;
|
|
14
|
-
config: import("@
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
14
|
+
config: import("@xylabs/object").DeepRestrictToStringKeys<{
|
|
15
|
+
schema: import("@xyo-network/payload-model").Schema;
|
|
16
|
+
readonly archiving?: {
|
|
17
|
+
readonly archivists?: string[] | undefined;
|
|
18
|
+
readonly queries?: string[] | undefined;
|
|
19
|
+
} | undefined;
|
|
20
|
+
readonly allowedQueries?: string[] | undefined;
|
|
21
|
+
readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
|
|
22
|
+
readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
|
|
23
|
+
readonly labels?: {
|
|
24
|
+
[x: string]: string | undefined;
|
|
25
|
+
} | undefined;
|
|
26
|
+
readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
|
|
27
|
+
readonly paging?: {
|
|
28
|
+
[x: string]: {
|
|
29
|
+
size?: number | undefined;
|
|
30
|
+
};
|
|
31
|
+
} | undefined;
|
|
32
|
+
readonly retry?: {
|
|
33
|
+
backoff?: number | undefined;
|
|
34
|
+
interval?: number | undefined;
|
|
35
|
+
retries?: number | undefined;
|
|
36
|
+
} | undefined;
|
|
37
|
+
readonly security?: {
|
|
38
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
39
|
+
readonly allowed?: {
|
|
40
|
+
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
41
|
+
} | undefined;
|
|
42
|
+
readonly disallowed?: {
|
|
43
|
+
[x: string]: Lowercase<string>[];
|
|
44
|
+
} | undefined;
|
|
45
|
+
} | undefined;
|
|
46
|
+
readonly sign?: boolean | undefined;
|
|
47
|
+
readonly storeQueries?: boolean | undefined;
|
|
48
|
+
readonly timestamp?: boolean | undefined;
|
|
49
|
+
automations?: ({
|
|
50
|
+
schema: "network.xyo.automation";
|
|
51
|
+
type: "interval";
|
|
52
|
+
end?: number | undefined;
|
|
53
|
+
frequency?: number | undefined;
|
|
54
|
+
frequencyUnits?: "second" | "minute" | "hour" | "day" | undefined;
|
|
55
|
+
remaining?: number | undefined;
|
|
56
|
+
start: number;
|
|
57
|
+
} | {
|
|
58
|
+
schema: "network.xyo.automation.interval";
|
|
59
|
+
type: "interval";
|
|
60
|
+
end?: number | undefined;
|
|
61
|
+
frequency?: number | undefined;
|
|
62
|
+
frequencyUnits?: "second" | "minute" | "hour" | "day" | undefined;
|
|
63
|
+
remaining?: number | undefined;
|
|
64
|
+
start: number;
|
|
65
|
+
} | {
|
|
66
|
+
schema: "network.xyo.automation.event";
|
|
67
|
+
type: "interval";
|
|
68
|
+
end?: number | undefined;
|
|
69
|
+
frequency?: number | undefined;
|
|
70
|
+
frequencyUnits?: "second" | "minute" | "hour" | "day" | undefined;
|
|
71
|
+
remaining?: number | undefined;
|
|
72
|
+
start: number;
|
|
73
|
+
} | {
|
|
74
|
+
schema: "network.xyo.automation";
|
|
75
|
+
type: "event";
|
|
76
|
+
} | {
|
|
77
|
+
schema: "network.xyo.automation.interval";
|
|
78
|
+
type: "event";
|
|
79
|
+
} | {
|
|
80
|
+
schema: "network.xyo.automation.event";
|
|
81
|
+
type: "event";
|
|
82
|
+
})[] | undefined;
|
|
83
|
+
synchronous?: boolean | undefined;
|
|
84
|
+
tasks: ({
|
|
85
|
+
endPoint?: "all" | "clear" | "commit" | "delete" | "get" | "insert" | undefined;
|
|
86
|
+
input?: string | boolean | string[] | undefined;
|
|
87
|
+
mod: import("@xyo-network/module-model").ModuleIdentifier;
|
|
88
|
+
required?: boolean | undefined;
|
|
89
|
+
} | {
|
|
90
|
+
endPoint?: "divine" | undefined;
|
|
91
|
+
input?: string | boolean | string[] | undefined;
|
|
92
|
+
mod: import("@xyo-network/module-model").ModuleIdentifier;
|
|
93
|
+
required?: boolean | undefined;
|
|
94
|
+
} | {
|
|
95
|
+
endPoint?: "observe" | undefined;
|
|
96
|
+
input?: string | boolean | string[] | undefined;
|
|
97
|
+
mod: import("@xyo-network/module-model").ModuleIdentifier;
|
|
98
|
+
required?: boolean | undefined;
|
|
99
|
+
} | {
|
|
100
|
+
endPoint?: string | undefined;
|
|
101
|
+
input?: string | boolean | string[] | undefined;
|
|
102
|
+
mod: import("@xyo-network/module-model").ModuleIdentifier;
|
|
103
|
+
required?: boolean | undefined;
|
|
104
|
+
})[];
|
|
105
|
+
throwErrors?: boolean | undefined;
|
|
106
|
+
}>;
|
|
25
107
|
ephemeralQueryAccountEnabled?: boolean;
|
|
26
108
|
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
27
109
|
}, import("@xyo-network/sentinel-model").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
@@ -29,11 +111,42 @@ export declare class SentinelWrapper<TModule extends SentinelModule = SentinelMo
|
|
|
29
111
|
addToResolvers?: boolean;
|
|
30
112
|
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
31
113
|
allowNameResolution?: boolean;
|
|
32
|
-
config: import("@
|
|
33
|
-
schema: "network.
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
114
|
+
config: import("@xylabs/object").DeepRestrictToStringKeys<{
|
|
115
|
+
schema: import("@xyo-network/payload-model").Schema;
|
|
116
|
+
readonly archiving?: {
|
|
117
|
+
readonly archivists?: string[] | undefined;
|
|
118
|
+
readonly queries?: string[] | undefined;
|
|
119
|
+
} | undefined;
|
|
120
|
+
readonly allowedQueries?: string[] | undefined;
|
|
121
|
+
readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
|
|
122
|
+
readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
|
|
123
|
+
readonly labels?: {
|
|
124
|
+
[x: string]: string | undefined;
|
|
125
|
+
} | undefined;
|
|
126
|
+
readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
|
|
127
|
+
readonly paging?: {
|
|
128
|
+
[x: string]: {
|
|
129
|
+
size?: number | undefined;
|
|
130
|
+
};
|
|
131
|
+
} | undefined;
|
|
132
|
+
readonly retry?: {
|
|
133
|
+
backoff?: number | undefined;
|
|
134
|
+
interval?: number | undefined;
|
|
135
|
+
retries?: number | undefined;
|
|
136
|
+
} | undefined;
|
|
137
|
+
readonly security?: {
|
|
138
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
139
|
+
readonly allowed?: {
|
|
140
|
+
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
141
|
+
} | undefined;
|
|
142
|
+
readonly disallowed?: {
|
|
143
|
+
[x: string]: Lowercase<string>[];
|
|
144
|
+
} | undefined;
|
|
145
|
+
} | undefined;
|
|
146
|
+
readonly sign?: boolean | undefined;
|
|
147
|
+
readonly storeQueries?: boolean | undefined;
|
|
148
|
+
readonly timestamp?: boolean | undefined;
|
|
149
|
+
}>;
|
|
37
150
|
ephemeralQueryAccountEnabled?: boolean;
|
|
38
151
|
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
39
152
|
}, import("@xyo-network/module-model").ModuleEventData<object>>>>>;
|
|
@@ -42,17 +155,99 @@ export declare class SentinelWrapper<TModule extends SentinelModule = SentinelMo
|
|
|
42
155
|
addToResolvers?: boolean;
|
|
43
156
|
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
44
157
|
allowNameResolution?: boolean;
|
|
45
|
-
config: import("@
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
158
|
+
config: import("@xylabs/object").DeepRestrictToStringKeys<{
|
|
159
|
+
schema: import("@xyo-network/payload-model").Schema;
|
|
160
|
+
readonly archiving?: {
|
|
161
|
+
readonly archivists?: string[] | undefined;
|
|
162
|
+
readonly queries?: string[] | undefined;
|
|
163
|
+
} | undefined;
|
|
164
|
+
readonly allowedQueries?: string[] | undefined;
|
|
165
|
+
readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
|
|
166
|
+
readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
|
|
167
|
+
readonly labels?: {
|
|
168
|
+
[x: string]: string | undefined;
|
|
169
|
+
} | undefined;
|
|
170
|
+
readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
|
|
171
|
+
readonly paging?: {
|
|
172
|
+
[x: string]: {
|
|
173
|
+
size?: number | undefined;
|
|
174
|
+
};
|
|
175
|
+
} | undefined;
|
|
176
|
+
readonly retry?: {
|
|
177
|
+
backoff?: number | undefined;
|
|
178
|
+
interval?: number | undefined;
|
|
179
|
+
retries?: number | undefined;
|
|
180
|
+
} | undefined;
|
|
181
|
+
readonly security?: {
|
|
182
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
183
|
+
readonly allowed?: {
|
|
184
|
+
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
185
|
+
} | undefined;
|
|
186
|
+
readonly disallowed?: {
|
|
187
|
+
[x: string]: Lowercase<string>[];
|
|
188
|
+
} | undefined;
|
|
189
|
+
} | undefined;
|
|
190
|
+
readonly sign?: boolean | undefined;
|
|
191
|
+
readonly storeQueries?: boolean | undefined;
|
|
192
|
+
readonly timestamp?: boolean | undefined;
|
|
193
|
+
automations?: ({
|
|
194
|
+
schema: "network.xyo.automation";
|
|
195
|
+
type: "interval";
|
|
196
|
+
end?: number | undefined;
|
|
197
|
+
frequency?: number | undefined;
|
|
198
|
+
frequencyUnits?: "second" | "minute" | "hour" | "day" | undefined;
|
|
199
|
+
remaining?: number | undefined;
|
|
200
|
+
start: number;
|
|
201
|
+
} | {
|
|
202
|
+
schema: "network.xyo.automation.interval";
|
|
203
|
+
type: "interval";
|
|
204
|
+
end?: number | undefined;
|
|
205
|
+
frequency?: number | undefined;
|
|
206
|
+
frequencyUnits?: "second" | "minute" | "hour" | "day" | undefined;
|
|
207
|
+
remaining?: number | undefined;
|
|
208
|
+
start: number;
|
|
209
|
+
} | {
|
|
210
|
+
schema: "network.xyo.automation.event";
|
|
211
|
+
type: "interval";
|
|
212
|
+
end?: number | undefined;
|
|
213
|
+
frequency?: number | undefined;
|
|
214
|
+
frequencyUnits?: "second" | "minute" | "hour" | "day" | undefined;
|
|
215
|
+
remaining?: number | undefined;
|
|
216
|
+
start: number;
|
|
217
|
+
} | {
|
|
218
|
+
schema: "network.xyo.automation";
|
|
219
|
+
type: "event";
|
|
220
|
+
} | {
|
|
221
|
+
schema: "network.xyo.automation.interval";
|
|
222
|
+
type: "event";
|
|
223
|
+
} | {
|
|
224
|
+
schema: "network.xyo.automation.event";
|
|
225
|
+
type: "event";
|
|
226
|
+
})[] | undefined;
|
|
227
|
+
synchronous?: boolean | undefined;
|
|
228
|
+
tasks: ({
|
|
229
|
+
endPoint?: "all" | "clear" | "commit" | "delete" | "get" | "insert" | undefined;
|
|
230
|
+
input?: string | boolean | string[] | undefined;
|
|
231
|
+
mod: import("@xyo-network/module-model").ModuleIdentifier;
|
|
232
|
+
required?: boolean | undefined;
|
|
233
|
+
} | {
|
|
234
|
+
endPoint?: "divine" | undefined;
|
|
235
|
+
input?: string | boolean | string[] | undefined;
|
|
236
|
+
mod: import("@xyo-network/module-model").ModuleIdentifier;
|
|
237
|
+
required?: boolean | undefined;
|
|
238
|
+
} | {
|
|
239
|
+
endPoint?: "observe" | undefined;
|
|
240
|
+
input?: string | boolean | string[] | undefined;
|
|
241
|
+
mod: import("@xyo-network/module-model").ModuleIdentifier;
|
|
242
|
+
required?: boolean | undefined;
|
|
243
|
+
} | {
|
|
244
|
+
endPoint?: string | undefined;
|
|
245
|
+
input?: string | boolean | string[] | undefined;
|
|
246
|
+
mod: import("@xyo-network/module-model").ModuleIdentifier;
|
|
247
|
+
required?: boolean | undefined;
|
|
248
|
+
})[];
|
|
249
|
+
throwErrors?: boolean | undefined;
|
|
250
|
+
}>;
|
|
56
251
|
ephemeralQueryAccountEnabled?: boolean;
|
|
57
252
|
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
58
253
|
}, import("@xyo-network/sentinel-model").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
@@ -60,11 +255,42 @@ export declare class SentinelWrapper<TModule extends SentinelModule = SentinelMo
|
|
|
60
255
|
addToResolvers?: boolean;
|
|
61
256
|
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
62
257
|
allowNameResolution?: boolean;
|
|
63
|
-
config: import("@
|
|
64
|
-
schema: "network.
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
258
|
+
config: import("@xylabs/object").DeepRestrictToStringKeys<{
|
|
259
|
+
schema: import("@xyo-network/payload-model").Schema;
|
|
260
|
+
readonly archiving?: {
|
|
261
|
+
readonly archivists?: string[] | undefined;
|
|
262
|
+
readonly queries?: string[] | undefined;
|
|
263
|
+
} | undefined;
|
|
264
|
+
readonly allowedQueries?: string[] | undefined;
|
|
265
|
+
readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
|
|
266
|
+
readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
|
|
267
|
+
readonly labels?: {
|
|
268
|
+
[x: string]: string | undefined;
|
|
269
|
+
} | undefined;
|
|
270
|
+
readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
|
|
271
|
+
readonly paging?: {
|
|
272
|
+
[x: string]: {
|
|
273
|
+
size?: number | undefined;
|
|
274
|
+
};
|
|
275
|
+
} | undefined;
|
|
276
|
+
readonly retry?: {
|
|
277
|
+
backoff?: number | undefined;
|
|
278
|
+
interval?: number | undefined;
|
|
279
|
+
retries?: number | undefined;
|
|
280
|
+
} | undefined;
|
|
281
|
+
readonly security?: {
|
|
282
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
283
|
+
readonly allowed?: {
|
|
284
|
+
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
285
|
+
} | undefined;
|
|
286
|
+
readonly disallowed?: {
|
|
287
|
+
[x: string]: Lowercase<string>[];
|
|
288
|
+
} | undefined;
|
|
289
|
+
} | undefined;
|
|
290
|
+
readonly sign?: boolean | undefined;
|
|
291
|
+
readonly storeQueries?: boolean | undefined;
|
|
292
|
+
readonly timestamp?: boolean | undefined;
|
|
293
|
+
}>;
|
|
68
294
|
ephemeralQueryAccountEnabled?: boolean;
|
|
69
295
|
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
70
296
|
}, import("@xyo-network/module-model").ModuleEventData<object>>>>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Wrapper.d.ts","sourceRoot":"","sources":["../../src/Wrapper.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAA;AACjE,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,8BAA8B,CAAA;AACrE,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAA;AAClE,OAAO,EAA8B,aAAa,EAAE,MAAM,6BAA6B,CAAA;AACvF,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,4BAA4B,CAAA;AACzD,OAAO,KAAK,EACV,gBAAgB,EAChB,cAAc,EAEf,MAAM,6BAA6B,CAAA;AAMpC,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAA;AAGjE,qBAAa,eAAe,CAAC,OAAO,SAAS,cAAc,GAAG,cAAc,CAC1E,SAAQ,aAAa,CAAC,OAAO,CAC7B,YAAW,gBAAgB,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC;IAC9C,OAAgB,qBAAqB;yBAlBwB,4BAC5D;;mCAGD,4BACU;;uBAGM,
|
|
1
|
+
{"version":3,"file":"Wrapper.d.ts","sourceRoot":"","sources":["../../src/Wrapper.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/sentinel-wrapper",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.6.0-rc.10",
|
|
4
4
|
"description": "Primary SDK for using XYO Protocol 2.0",
|
|
5
5
|
"homepage": "https://xyo.network",
|
|
6
6
|
"bugs": {
|
|
@@ -29,32 +29,33 @@
|
|
|
29
29
|
"module": "dist/neutral/index.mjs",
|
|
30
30
|
"types": "dist/neutral/index.d.ts",
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@xyo-network/account-model": "^3.
|
|
33
|
-
"@xyo-network/archivist-model": "^3.
|
|
34
|
-
"@xyo-network/module-model": "^3.
|
|
35
|
-
"@xyo-network/module-wrapper": "^3.
|
|
36
|
-
"@xyo-network/payload-model": "^3.
|
|
37
|
-
"@xyo-network/sentinel-model": "^3.
|
|
38
|
-
"@xyo-network/witness-model": "^3.
|
|
32
|
+
"@xyo-network/account-model": "^3.6.0-rc.10",
|
|
33
|
+
"@xyo-network/archivist-model": "^3.6.0-rc.10",
|
|
34
|
+
"@xyo-network/module-model": "^3.6.0-rc.10",
|
|
35
|
+
"@xyo-network/module-wrapper": "^3.6.0-rc.10",
|
|
36
|
+
"@xyo-network/payload-model": "^3.6.0-rc.10",
|
|
37
|
+
"@xyo-network/sentinel-model": "^3.6.0-rc.10",
|
|
38
|
+
"@xyo-network/witness-model": "^3.6.0-rc.10"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@xylabs/delay": "^4.4.
|
|
42
|
-
"@xylabs/ts-scripts-yarn3": "^4.2.
|
|
43
|
-
"@xylabs/tsconfig": "^4.2.
|
|
44
|
-
"@xylabs/vitest-extended": "^4.4.
|
|
45
|
-
"@xyo-network/abstract-witness": "^3.
|
|
46
|
-
"@xyo-network/account": "^3.
|
|
47
|
-
"@xyo-network/archivist-memory": "^3.
|
|
48
|
-
"@xyo-network/boundwitness-model": "^3.
|
|
49
|
-
"@xyo-network/module-model": "^3.
|
|
50
|
-
"@xyo-network/node-memory": "^3.
|
|
51
|
-
"@xyo-network/payload-builder": "^3.
|
|
52
|
-
"@xyo-network/sentinel-memory": "^3.
|
|
53
|
-
"@xyo-network/witness-adhoc": "^3.
|
|
41
|
+
"@xylabs/delay": "^4.4.21",
|
|
42
|
+
"@xylabs/ts-scripts-yarn3": "^4.2.6",
|
|
43
|
+
"@xylabs/tsconfig": "^4.2.6",
|
|
44
|
+
"@xylabs/vitest-extended": "^4.4.21",
|
|
45
|
+
"@xyo-network/abstract-witness": "^3.6.0-rc.10",
|
|
46
|
+
"@xyo-network/account": "^3.6.0-rc.10",
|
|
47
|
+
"@xyo-network/archivist-memory": "^3.6.0-rc.10",
|
|
48
|
+
"@xyo-network/boundwitness-model": "^3.6.0-rc.10",
|
|
49
|
+
"@xyo-network/module-model": "^3.6.0-rc.10",
|
|
50
|
+
"@xyo-network/node-memory": "^3.6.0-rc.10",
|
|
51
|
+
"@xyo-network/payload-builder": "^3.6.0-rc.10",
|
|
52
|
+
"@xyo-network/sentinel-memory": "^3.6.0-rc.10",
|
|
53
|
+
"@xyo-network/witness-adhoc": "^3.6.0-rc.10",
|
|
54
54
|
"typescript": "^5.7.2",
|
|
55
|
-
"vitest": "^2.1.
|
|
55
|
+
"vitest": "^2.1.8"
|
|
56
56
|
},
|
|
57
57
|
"publishConfig": {
|
|
58
58
|
"access": "public"
|
|
59
|
-
}
|
|
59
|
+
},
|
|
60
|
+
"stableVersion": "3.5.2"
|
|
60
61
|
}
|