@digitaldefiance/suite-core-lib 1.1.2 → 1.1.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
CHANGED
|
@@ -327,6 +327,11 @@ MIT © [Digital Defiance](https://github.com/digitaldefiance)
|
|
|
327
327
|
|
|
328
328
|
## ChangeLog
|
|
329
329
|
|
|
330
|
+
## v1.1.3: Add PrivateKeyRequiredError
|
|
331
|
+
|
|
332
|
+
- Thu Oct 23 2025 20:19:00 GMT-0700 (Pacific Daylight Time)
|
|
333
|
+
- Add PrivateKeyRequiredError
|
|
334
|
+
|
|
330
335
|
## v1.1.2: Add EmailTokenFailedToSendError and supporting strings
|
|
331
336
|
|
|
332
337
|
- Thu Oct 23 2025 17:58:00 GMT-0700 (Pacific Daylight Time)
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { CoreLanguageCode } from '@digitaldefiance/i18n-lib';
|
|
2
|
+
import { TranslatableSuiteError } from './translatable-suite';
|
|
3
|
+
export declare class PrivateKeyRequiredError extends TranslatableSuiteError {
|
|
4
|
+
constructor(language?: CoreLanguageCode);
|
|
5
|
+
}
|
|
6
|
+
//# sourceMappingURL=private-key-required.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"private-key-required.d.ts","sourceRoot":"","sources":["../../src/errors/private-key-required.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,2BAA2B,CAAC;AAE7D,OAAO,EAAE,sBAAsB,EAAE,MAAM,sBAAsB,CAAC;AAE9D,qBAAa,uBAAwB,SAAQ,sBAAsB;gBACrD,QAAQ,CAAC,EAAE,gBAAgB;CAQxC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.PrivateKeyRequiredError = void 0;
|
|
4
|
+
const enumerations_1 = require("../enumerations");
|
|
5
|
+
const translatable_suite_1 = require("./translatable-suite");
|
|
6
|
+
class PrivateKeyRequiredError extends translatable_suite_1.TranslatableSuiteError {
|
|
7
|
+
constructor(language) {
|
|
8
|
+
super(enumerations_1.SuiteCoreStringKey.Error_MemberErrorMissingPrivateKey, undefined, language);
|
|
9
|
+
this.name = 'PrivateKeyRequiredError';
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
exports.PrivateKeyRequiredError = PrivateKeyRequiredError;
|
|
13
|
+
//# sourceMappingURL=private-key-required.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"private-key-required.js","sourceRoot":"","sources":["../../src/errors/private-key-required.ts"],"names":[],"mappings":";;;AACA,kDAAqD;AACrD,6DAA8D;AAE9D,MAAa,uBAAwB,SAAQ,2CAAsB;IACjE,YAAY,QAA2B;QACrC,KAAK,CACD,iCAAkB,CAAC,kCAAkC,EACrD,SAAS,EACT,QAAQ,CACX,CAAC;QACF,IAAI,CAAC,IAAI,GAAG,yBAAyB,CAAC;IACxC,CAAC;CACF;AATD,0DASC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@digitaldefiance/suite-core-lib",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.4",
|
|
4
4
|
"description": "Generic user system and document system common core for applications",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -16,9 +16,9 @@
|
|
|
16
16
|
"publish:public": "npm publish --access public"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@digitaldefiance/ecies-lib": "1.1.
|
|
20
|
-
"@digitaldefiance/i18n-lib": "1.2.
|
|
21
|
-
"@digitaldefiance/node-ecies-lib": "1.1.
|
|
19
|
+
"@digitaldefiance/ecies-lib": "1.1.1",
|
|
20
|
+
"@digitaldefiance/i18n-lib": "1.2.3",
|
|
21
|
+
"@digitaldefiance/node-ecies-lib": "1.1.1"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"@babel/core": "^7.28.4",
|