harperdb 4.7.0-beta.2 → 4.7.0-beta.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/README.md +1 -1
- package/bin/harperdb.js +79 -79
- package/bin/lite.js +77 -77
- package/config/yaml/defaultConfig.yaml +1 -1
- package/json/systemSchema.json +30 -0
- package/launchServiceScripts/launchNatsIngestService.js +77 -77
- package/launchServiceScripts/launchNatsReplyService.js +77 -77
- package/launchServiceScripts/launchUpdateNodes4-0-0.js +77 -77
- package/npm-shrinkwrap.json +302 -294
- package/package.json +3 -1
- package/resources/RequestTarget.d.ts +2 -0
- package/resources/Table.d.ts +34 -34
- package/resources/analytics/hostnames.d.ts +5 -477
- package/resources/blob.d.ts +6 -3
- package/resources/databases.d.ts +1 -478
- package/resources/openApi.d.ts +27 -0
- package/security/certificateVerification/certificateVerificationSource.d.ts +18 -0
- package/security/certificateVerification/configValidation.d.ts +14 -0
- package/security/certificateVerification/crlVerification.d.ts +29 -0
- package/security/certificateVerification/index.d.ts +31 -0
- package/security/certificateVerification/ocspVerification.d.ts +23 -0
- package/security/certificateVerification/types.d.ts +105 -0
- package/security/certificateVerification/verificationConfig.d.ts +29 -0
- package/security/certificateVerification/verificationUtils.d.ts +79 -0
- package/server/jobs/jobProcess.js +77 -77
- package/server/operationsServer.d.ts +13 -3
- package/server/replication/replicator.d.ts +6 -0
- package/server/threads/threadServer.js +77 -77
- package/studio/web/assets/index-BsZJSz4i.js +1 -0
- package/studio/web/assets/index-BwVqw4zI.js +453 -0
- package/studio/web/assets/index-OpljqLtb.css +4 -0
- package/studio/web/assets/profiler-CW5dV_9B.js +1 -0
- package/studio/web/assets/startRecording--YUj61DT.js +2 -0
- package/studio/web/index.html +2 -2
- package/studio/web/running.html +90 -0
- package/utility/hdbTerms.d.ts +22 -3
- package/utility/scripts/restartHdb.js +77 -77
- package/security/certificateVerification.d.ts +0 -87
- package/studio/web/assets/index-B797owPM.js +0 -1
- package/studio/web/assets/index-CXaPu3wc.js +0 -445
- package/studio/web/assets/index-Dj8x6atJ.css +0 -4
- package/studio/web/assets/profiler-CgmzpljF.js +0 -1
- package/studio/web/assets/startRecording-DiD-ht9H.js +0 -2
- /package/security/{pkijs-ed25519-patch.d.ts → certificateVerification/pkijs-ed25519-patch.d.ts} +0 -0
package/json/systemSchema.json
CHANGED
|
@@ -339,5 +339,35 @@
|
|
|
339
339
|
"attribute": "id"
|
|
340
340
|
}
|
|
341
341
|
]
|
|
342
|
+
},
|
|
343
|
+
"hdb_certificate_cache": {
|
|
344
|
+
"hash_attribute": "certificate_id",
|
|
345
|
+
"name": "hdb_certificate_cache",
|
|
346
|
+
"schema": "system",
|
|
347
|
+
"attributes": [
|
|
348
|
+
{
|
|
349
|
+
"attribute": "certificate_id"
|
|
350
|
+
}
|
|
351
|
+
]
|
|
352
|
+
},
|
|
353
|
+
"hdb_crl_cache": {
|
|
354
|
+
"hash_attribute": "distribution_point",
|
|
355
|
+
"name": "hdb_crl_cache",
|
|
356
|
+
"schema": "system",
|
|
357
|
+
"attributes": [
|
|
358
|
+
{
|
|
359
|
+
"attribute": "distribution_point"
|
|
360
|
+
}
|
|
361
|
+
]
|
|
362
|
+
},
|
|
363
|
+
"hdb_revoked_certificates": {
|
|
364
|
+
"hash_attribute": "composite_id",
|
|
365
|
+
"name": "hdb_revoked_certificates",
|
|
366
|
+
"schema": "system",
|
|
367
|
+
"attributes": [
|
|
368
|
+
{
|
|
369
|
+
"attribute": "composite_id"
|
|
370
|
+
}
|
|
371
|
+
]
|
|
342
372
|
}
|
|
343
373
|
}
|