harperdb 4.7.0-alpha.2 → 4.7.0-alpha.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/README.md +1 -1
- package/bin/harperdb.js +48 -51
- package/bin/lite.js +48 -51
- package/components/status/ComponentStatus.d.ts +1 -1
- package/components/status/ComponentStatusRegistry.d.ts +1 -1
- package/components/status/crossThread.d.ts +1 -1
- package/components/status/index.d.ts +3 -3
- package/launchServiceScripts/launchNatsIngestService.js +48 -51
- package/launchServiceScripts/launchNatsReplyService.js +48 -51
- package/launchServiceScripts/launchUpdateNodes4-0-0.js +48 -51
- package/npm-shrinkwrap.json +23 -23
- package/package.json +1 -1
- package/resources/RequestTarget.d.ts +1 -1
- package/resources/Resource.d.ts +1 -1
- package/resources/ResourceInterface.d.ts +7 -7
- package/resources/usageLicensing.d.ts +13 -8
- package/server/jobs/jobProcess.js +48 -51
- package/server/replication/replicator.d.ts +2 -2
- package/server/status/index.d.ts +2 -2
- package/server/threads/threadServer.js +48 -51
- package/studio/build-local/asset-manifest.json +2 -2
- package/studio/build-local/index.html +1 -1
- package/studio/build-local/static/js/{main.b93998e3.js → main.eedb02ca.js} +2 -2
- package/utility/hdbTerms.d.ts +3 -0
- package/utility/scripts/restartHdb.js +48 -51
- package/validation/usageLicensing.d.ts +7 -0
- /package/studio/build-local/static/js/{main.b93998e3.js.LICENSE.txt → main.eedb02ca.js.LICENSE.txt} +0 -0
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
export declare class PublicKey {
|
|
2
|
+
pem: string;
|
|
3
|
+
constructor(mode?: string);
|
|
4
|
+
getKey(): import("crypto").KeyObject;
|
|
5
|
+
toString(): string;
|
|
6
|
+
}
|
|
1
7
|
type HarperLicenseTyp = 'Harper-License';
|
|
2
8
|
type HarperLicenseAlg = 'EdDSA';
|
|
3
9
|
export interface LicenseHeader {
|
|
@@ -30,5 +36,6 @@ export declare class InvalidHeaderError extends InvalidLicenseError {
|
|
|
30
36
|
}
|
|
31
37
|
export declare class InvalidPayloadError extends InvalidLicenseError {
|
|
32
38
|
}
|
|
39
|
+
export declare const publicKey: PublicKey;
|
|
33
40
|
export declare function validateLicense(encodedLicense: string): ValidatedLicense;
|
|
34
41
|
export {};
|
/package/studio/build-local/static/js/{main.b93998e3.js.LICENSE.txt → main.eedb02ca.js.LICENSE.txt}
RENAMED
|
File without changes
|