@credo-ts/askar 0.6.0-pr-2539-20251127092008 → 0.6.0
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/build/AskarApi.mjs +2 -2
- package/build/AskarStoreManager.mjs +3 -3
- package/build/_virtual/{_@oxc-project_runtime@0.97.0 → _@oxc-project_runtime@0.99.0}/helpers/decorate.mjs +1 -1
- package/build/_virtual/{_@oxc-project_runtime@0.97.0 → _@oxc-project_runtime@0.99.0}/helpers/decorateMetadata.mjs +1 -1
- package/build/_virtual/{_@oxc-project_runtime@0.97.0 → _@oxc-project_runtime@0.99.0}/helpers/decorateParam.mjs +1 -1
- package/build/storage/AskarStorageService.mjs +2 -2
- package/package.json +4 -4
package/build/AskarApi.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AskarModuleConfig } from "./AskarModuleConfig.mjs";
|
|
2
|
-
import { __decorateMetadata } from "./_virtual/_@oxc-project_runtime@0.
|
|
3
|
-
import { __decorate } from "./_virtual/_@oxc-project_runtime@0.
|
|
2
|
+
import { __decorateMetadata } from "./_virtual/_@oxc-project_runtime@0.99.0/helpers/decorateMetadata.mjs";
|
|
3
|
+
import { __decorate } from "./_virtual/_@oxc-project_runtime@0.99.0/helpers/decorate.mjs";
|
|
4
4
|
import { AskarStoreManager } from "./AskarStoreManager.mjs";
|
|
5
5
|
import { AgentContext } from "@credo-ts/core";
|
|
6
6
|
import { injectable as injectable$1 } from "tsyringe";
|
|
@@ -12,9 +12,9 @@ import { getAskarStoreConfigForContextCorrelationId } from "./tenants.mjs";
|
|
|
12
12
|
import { AskarErrorCode, isAskarError } from "./utils/askarError.mjs";
|
|
13
13
|
import { isSqliteInMemoryUri, keyDerivationMethodFromStoreConfig, uriFromStoreConfig } from "./utils/askarStoreConfig.mjs";
|
|
14
14
|
import "./utils/index.mjs";
|
|
15
|
-
import { __decorateMetadata } from "./_virtual/_@oxc-project_runtime@0.
|
|
16
|
-
import { __decorateParam } from "./_virtual/_@oxc-project_runtime@0.
|
|
17
|
-
import { __decorate } from "./_virtual/_@oxc-project_runtime@0.
|
|
15
|
+
import { __decorateMetadata } from "./_virtual/_@oxc-project_runtime@0.99.0/helpers/decorateMetadata.mjs";
|
|
16
|
+
import { __decorateParam } from "./_virtual/_@oxc-project_runtime@0.99.0/helpers/decorateParam.mjs";
|
|
17
|
+
import { __decorate } from "./_virtual/_@oxc-project_runtime@0.99.0/helpers/decorate.mjs";
|
|
18
18
|
import { AgentContext, InjectionSymbols, JsonTransformer, StorageVersionRecord } from "@credo-ts/core";
|
|
19
19
|
import { KdfMethod, Session, Store, StoreKeyMethod } from "@openwallet-foundation/askar-shared";
|
|
20
20
|
import { inject, injectable as injectable$1 } from "tsyringe";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
//#region \0@oxc-project+runtime@0.
|
|
1
|
+
//#region \0@oxc-project+runtime@0.99.0/helpers/decorate.js
|
|
2
2
|
function __decorate(decorators, target, key, desc) {
|
|
3
3
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
4
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
//#region \0@oxc-project+runtime@0.
|
|
1
|
+
//#region \0@oxc-project+runtime@0.99.0/helpers/decorateMetadata.js
|
|
2
2
|
function __decorateMetadata(k, v) {
|
|
3
3
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
4
4
|
}
|
|
@@ -2,8 +2,8 @@ import { AskarError as AskarError$1 } from "../error/AskarError.mjs";
|
|
|
2
2
|
import "../error/index.mjs";
|
|
3
3
|
import { askarQueryFromSearchQuery, recordToInstance, transformFromRecordTagValues } from "./utils.mjs";
|
|
4
4
|
import { AskarErrorCode, isAskarError } from "../utils/askarError.mjs";
|
|
5
|
-
import { __decorateMetadata } from "../_virtual/_@oxc-project_runtime@0.
|
|
6
|
-
import { __decorate } from "../_virtual/_@oxc-project_runtime@0.
|
|
5
|
+
import { __decorateMetadata } from "../_virtual/_@oxc-project_runtime@0.99.0/helpers/decorateMetadata.mjs";
|
|
6
|
+
import { __decorate } from "../_virtual/_@oxc-project_runtime@0.99.0/helpers/decorate.mjs";
|
|
7
7
|
import { AskarStoreManager } from "../AskarStoreManager.mjs";
|
|
8
8
|
import { CredoError, JsonTransformer, RecordDuplicateError, RecordNotFoundError, injectable } from "@credo-ts/core";
|
|
9
9
|
import { Scan, Session } from "@openwallet-foundation/askar-shared";
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
".": "./build/index.mjs",
|
|
5
5
|
"./package.json": "./package.json"
|
|
6
6
|
},
|
|
7
|
-
"version": "0.6.0
|
|
7
|
+
"version": "0.6.0",
|
|
8
8
|
"files": [
|
|
9
9
|
"build"
|
|
10
10
|
],
|
|
@@ -20,10 +20,10 @@
|
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"class-transformer": "0.5.1",
|
|
23
|
-
"class-validator": "0.14.1",
|
|
23
|
+
"class-validator": "^0.14.1",
|
|
24
24
|
"rxjs": "^7.8.2",
|
|
25
25
|
"tsyringe": "^4.10.0",
|
|
26
|
-
"@credo-ts/core": "0.6.0
|
|
26
|
+
"@credo-ts/core": "0.6.0"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@openwallet-foundation/askar-nodejs": "^0.4.3",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"@types/ref-struct-di": "^1.1.12",
|
|
33
33
|
"reflect-metadata": "0.2.2",
|
|
34
34
|
"typescript": "~5.9.3",
|
|
35
|
-
"@credo-ts/tenants": "0.6.0
|
|
35
|
+
"@credo-ts/tenants": "0.6.0"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
38
|
"@openwallet-foundation/askar-shared": "^0.4.3"
|