@blocklet/server-js 1.17.3-beta-20251123-232619-53258789 → 1.17.3-beta-20251125-042047-1bcefd39
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/browser.d.ts +2 -0
- package/dist/bundle.js +1 -1
- package/dist/report.html +2 -2
- package/dist/schema/graphql.json +20 -0
- package/dist/types.js +2 -0
- package/dist/types.js.map +1 -1
- package/docs/QUERIES.md +230 -228
- package/lib/node.d.ts +2 -0
- package/lib/schema/graphql.json +20 -0
- package/lib/types.js +2 -0
- package/lib/types.js.map +1 -1
- package/package.json +2 -2
package/lib/node.d.ts
CHANGED
package/lib/schema/graphql.json
CHANGED
|
@@ -11224,6 +11224,26 @@
|
|
|
11224
11224
|
"ofType": null
|
|
11225
11225
|
},
|
|
11226
11226
|
"defaultValue": null
|
|
11227
|
+
},
|
|
11228
|
+
{
|
|
11229
|
+
"name": "certificate",
|
|
11230
|
+
"description": null,
|
|
11231
|
+
"type": {
|
|
11232
|
+
"kind": "SCALAR",
|
|
11233
|
+
"name": "String",
|
|
11234
|
+
"ofType": null
|
|
11235
|
+
},
|
|
11236
|
+
"defaultValue": null
|
|
11237
|
+
},
|
|
11238
|
+
{
|
|
11239
|
+
"name": "privateKey",
|
|
11240
|
+
"description": null,
|
|
11241
|
+
"type": {
|
|
11242
|
+
"kind": "SCALAR",
|
|
11243
|
+
"name": "String",
|
|
11244
|
+
"ofType": null
|
|
11245
|
+
},
|
|
11246
|
+
"defaultValue": null
|
|
11227
11247
|
}
|
|
11228
11248
|
],
|
|
11229
11249
|
"interfaces": null,
|
package/lib/types.js
CHANGED