@sphereon/ssi-sdk.agent-config 0.33.1-next.2 → 0.33.1-next.68

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.
@@ -1,48 +0,0 @@
1
- /**
2
- * Creates objects from a configuration object and a set of pointers.
3
- *
4
- * Example:
5
- * ```ts
6
- * const { url } = createObjects({ "rpcUrl": "http://localhost:8545", }, { url: '/rpcUrl' })
7
- * ```
8
- *
9
- * The config can contain references (`$ref`) to other objects within using JSON pointers.
10
- * Example:
11
- * ```json
12
- * {
13
- * "rpcUrl": "http://localhost:8545",
14
- * "endpoint": {
15
- * "url": {
16
- * "$ref": "/rpcUrl"
17
- * }
18
- * }
19
- * }
20
- * ```
21
- *
22
- * The config object can also contain references to NPM modules using the `$require` property.
23
- * Example:
24
- * ```json
25
- * {
26
- * "agent": {
27
- * "$require": "@veramo/core#Agent",
28
- * "$args": {
29
- * "plugins": [
30
- * { "$require": "@veramo/did-comm#DIDComm" },
31
- * ]
32
- * }
33
- * }
34
- * }
35
- * ```
36
- *
37
- * Environment variables can also be specified using the `$env` property.
38
- *
39
- * @see Please see {@link https://veramo.io/docs/veramo_agent/configuration_internals | Configuration Internals} for
40
- * more information.
41
- *
42
- * @param config - The configuration object
43
- * @param pointers - A map of JSON pointers to objects within that config that you wish to create
44
- *
45
- * @beta - This API may change without a major version bump
46
- */
47
- export declare function createObjects(config: object, pointers: Record<string, string>): Promise<Record<string, any>>;
48
- //# sourceMappingURL=objectCreator.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"objectCreator.d.ts","sourceRoot":"","sources":["../src/objectCreator.ts"],"names":[],"mappings":"AAGA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6CG;AACH,wBAAsB,aAAa,CAAC,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,GAAG,OAAO,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CAsGlH"}
@@ -1,201 +0,0 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- var desc = Object.getOwnPropertyDescriptor(m, k);
5
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
- desc = { enumerable: true, get: function() { return m[k]; } };
7
- }
8
- Object.defineProperty(o, k2, desc);
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
- Object.defineProperty(o, "default", { enumerable: true, value: v });
15
- }) : function(o, v) {
16
- o["default"] = v;
17
- });
18
- var __importStar = (this && this.__importStar) || function (mod) {
19
- if (mod && mod.__esModule) return mod;
20
- var result = {};
21
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
- __setModuleDefault(result, mod);
23
- return result;
24
- };
25
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
26
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
27
- return new (P || (P = Promise))(function (resolve, reject) {
28
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
29
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
30
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
31
- step((generator = generator.apply(thisArg, _arguments || [])).next());
32
- });
33
- };
34
- var __importDefault = (this && this.__importDefault) || function (mod) {
35
- return (mod && mod.__esModule) ? mod : { "default": mod };
36
- };
37
- Object.defineProperty(exports, "__esModule", { value: true });
38
- exports.createObjects = createObjects;
39
- const jsonpointer_1 = require("jsonpointer");
40
- const url_parse_1 = __importDefault(require("url-parse"));
41
- /**
42
- * Creates objects from a configuration object and a set of pointers.
43
- *
44
- * Example:
45
- * ```ts
46
- * const { url } = createObjects({ "rpcUrl": "http://localhost:8545", }, { url: '/rpcUrl' })
47
- * ```
48
- *
49
- * The config can contain references (`$ref`) to other objects within using JSON pointers.
50
- * Example:
51
- * ```json
52
- * {
53
- * "rpcUrl": "http://localhost:8545",
54
- * "endpoint": {
55
- * "url": {
56
- * "$ref": "/rpcUrl"
57
- * }
58
- * }
59
- * }
60
- * ```
61
- *
62
- * The config object can also contain references to NPM modules using the `$require` property.
63
- * Example:
64
- * ```json
65
- * {
66
- * "agent": {
67
- * "$require": "@veramo/core#Agent",
68
- * "$args": {
69
- * "plugins": [
70
- * { "$require": "@veramo/did-comm#DIDComm" },
71
- * ]
72
- * }
73
- * }
74
- * }
75
- * ```
76
- *
77
- * Environment variables can also be specified using the `$env` property.
78
- *
79
- * @see Please see {@link https://veramo.io/docs/veramo_agent/configuration_internals | Configuration Internals} for
80
- * more information.
81
- *
82
- * @param config - The configuration object
83
- * @param pointers - A map of JSON pointers to objects within that config that you wish to create
84
- *
85
- * @beta - This API may change without a major version bump
86
- */
87
- function createObjects(config, pointers) {
88
- return __awaiter(this, void 0, void 0, function* () {
89
- const objects = {};
90
- function resolveRefs(input) {
91
- return __awaiter(this, void 0, void 0, function* () {
92
- if (Array.isArray(input)) {
93
- const resolved = [];
94
- for (const item of input) {
95
- resolved.push(yield resolveRefs(item));
96
- }
97
- return resolved;
98
- }
99
- if (typeof input === 'object') {
100
- const resolved = {};
101
- for (const property in input) {
102
- if (input.hasOwnProperty(property)) {
103
- if (property === '$ref') {
104
- const pointer = input[property];
105
- return yield objectFromPointer(pointer);
106
- }
107
- else if (property === '$require') {
108
- return yield objectFromConfig(input);
109
- }
110
- else if (property === '$env') {
111
- return process.env[input[property]];
112
- }
113
- else {
114
- resolved[property] = yield resolveRefs(input[property]);
115
- }
116
- }
117
- }
118
- return resolved;
119
- }
120
- return input;
121
- });
122
- }
123
- function objectFromConfig(objectConfig) {
124
- return __awaiter(this, void 0, void 0, function* () {
125
- let object;
126
- // console.log('Requiring', objectConfig['$require'])
127
- const parsed = (0, url_parse_1.default)(objectConfig['$require'], {}, true);
128
- let module = parsed.pathname;
129
- const member = parsed.hash.length > 1 ? parsed.hash.slice(1) : undefined;
130
- const type = parsed.query['t'] || 'class';
131
- const pointer = parsed.query['p'];
132
- const args = objectConfig['$args'];
133
- // console.log({module, member, type, query: parsed.query})
134
- if (module.slice(0, 2) === './' || module.slice(0, 3) === '../') {
135
- const { resolve } = yield Promise.resolve().then(() => __importStar(require('path')));
136
- module = resolve(module);
137
- }
138
- const resolvedArgs = args !== undefined ? yield resolveRefs(args) : [];
139
- try {
140
- let required = member ? (yield Promise.resolve(`${module}`).then(s => __importStar(require(s))))[member] : yield Promise.resolve(`${module}`).then(s => __importStar(require(s)));
141
- if (type === 'class') {
142
- object = new required(...resolvedArgs);
143
- }
144
- else if (type === 'function') {
145
- object = required(...resolvedArgs);
146
- }
147
- else if (type === 'object') {
148
- object = required;
149
- }
150
- }
151
- catch (e) {
152
- throw new Error(`Error creating ${module}['${member}']: ${e.message}`);
153
- }
154
- if (pointer) {
155
- return (0, jsonpointer_1.get)(object, pointer);
156
- }
157
- return object;
158
- });
159
- }
160
- function objectFromPointer(pointer) {
161
- return __awaiter(this, void 0, void 0, function* () {
162
- const existingObject = (0, jsonpointer_1.get)(objects, pointer);
163
- if (existingObject) {
164
- // console.log('Existing', pointer)
165
- return existingObject;
166
- }
167
- else {
168
- // console.log('New', pointer)
169
- const objectConfig = (0, jsonpointer_1.get)(config, pointer);
170
- if (!objectConfig)
171
- throw Error('Pointer not found: ' + pointer);
172
- try {
173
- let object;
174
- if (objectConfig['$require']) {
175
- object = yield objectFromConfig(objectConfig);
176
- }
177
- else if (objectConfig['$env']) {
178
- object = process.env[objectConfig['$env']];
179
- }
180
- else {
181
- object = yield resolveRefs(objectConfig);
182
- }
183
- (0, jsonpointer_1.set)(objects, pointer, object);
184
- return object;
185
- }
186
- catch (e) {
187
- throw Error(e.message + '. While creating object from pointer: ' + pointer);
188
- }
189
- }
190
- });
191
- }
192
- const result = {};
193
- for (const key of Object.keys(pointers)) {
194
- if (pointers.hasOwnProperty(key)) {
195
- result[key] = yield objectFromPointer(pointers[key]);
196
- }
197
- }
198
- return result;
199
- });
200
- }
201
- //# sourceMappingURL=objectCreator.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"objectCreator.js","sourceRoot":"","sources":["../src/objectCreator.ts"],"names":[],"mappings":"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"}
@@ -1,11 +0,0 @@
1
- import { DateTimeType, DateType, SupportedDatabaseType } from './dataSources';
2
- export declare const getDbType: (opts?: {
3
- defaultType: SupportedDatabaseType;
4
- }) => SupportedDatabaseType;
5
- export declare const typeOrmDateTime: (opts?: {
6
- defaultType: SupportedDatabaseType;
7
- }) => DateTimeType;
8
- export declare const typeormDate: (opts?: {
9
- defaultType: SupportedDatabaseType;
10
- }) => DateType;
11
- //# sourceMappingURL=typeormTypes.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"typeormTypes.d.ts","sourceRoot":"","sources":["../src/typeormTypes.ts"],"names":[],"mappings":"AAAA,OAAO,EAAe,YAAY,EAAE,QAAQ,EAAE,qBAAqB,EAAE,MAAM,eAAe,CAAA;AAE1F,eAAO,MAAM,SAAS,UAAW;IAAE,WAAW,EAAE,qBAAqB,CAAA;CAAE,KAAG,qBAMzE,CAAA;AAED,eAAO,MAAM,eAAe,UAAW;IAAE,WAAW,EAAE,qBAAqB,CAAA;CAAE,KAAG,YAU/E,CAAA;AAED,eAAO,MAAM,WAAW,UAAW;IAAE,WAAW,EAAE,qBAAqB,CAAA;CAAE,KAAG,QAG3E,CAAA"}
@@ -1,31 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.typeormDate = exports.typeOrmDateTime = exports.getDbType = void 0;
4
- const dataSources_1 = require("./dataSources");
5
- const getDbType = (opts) => {
6
- var _a, _b, _c;
7
- const type = (_c = (_b = (typeof process === 'object' ? (_a = process === null || process === void 0 ? void 0 : process.env) === null || _a === void 0 ? void 0 : _a.DB_TYPE : undefined)) !== null && _b !== void 0 ? _b : dataSources_1.DataSources.singleInstance().defaultDbType) !== null && _c !== void 0 ? _c : opts === null || opts === void 0 ? void 0 : opts.defaultType;
8
- if (!type) {
9
- throw Error(`Could not determine DB type. Please set the DB_TYPE global variable or env var to one of 'postgres' or 'sqlite'`);
10
- }
11
- return type;
12
- };
13
- exports.getDbType = getDbType;
14
- const typeOrmDateTime = (opts) => {
15
- switch ((0, exports.getDbType)(opts)) {
16
- case 'postgres':
17
- return 'timestamp';
18
- case 'sqlite':
19
- case 'react-native':
20
- return 'datetime';
21
- default:
22
- throw Error(`DB type ${(0, exports.getDbType)(opts)} not supported. Right now only sqlite, react-native and postgresql are supported`);
23
- }
24
- };
25
- exports.typeOrmDateTime = typeOrmDateTime;
26
- const typeormDate = (opts) => {
27
- // The same for both DBs
28
- return 'date';
29
- };
30
- exports.typeormDate = typeormDate;
31
- //# sourceMappingURL=typeormTypes.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"typeormTypes.js","sourceRoot":"","sources":["../src/typeormTypes.ts"],"names":[],"mappings":";;;AAAA,+CAA0F;AAEnF,MAAM,SAAS,GAAG,CAAC,IAA6C,EAAyB,EAAE;;IAChG,MAAM,IAAI,GAAG,MAAA,MAAA,CAAC,OAAO,OAAO,KAAK,QAAQ,CAAC,CAAC,CAAC,MAAA,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,GAAG,0CAAE,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC,mCAAI,yBAAW,CAAC,cAAc,EAAE,CAAC,aAAa,mCAAI,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,WAAW,CAAA;IACjJ,IAAI,CAAC,IAAI,EAAE,CAAC;QACV,MAAM,KAAK,CAAC,iHAAiH,CAAC,CAAA;IAChI,CAAC;IACD,OAAO,IAA6B,CAAA;AACtC,CAAC,CAAA;AANY,QAAA,SAAS,aAMrB;AAEM,MAAM,eAAe,GAAG,CAAC,IAA6C,EAAgB,EAAE;IAC7F,QAAQ,IAAA,iBAAS,EAAC,IAAI,CAAC,EAAE,CAAC;QACxB,KAAK,UAAU;YACb,OAAO,WAAW,CAAA;QACpB,KAAK,QAAQ,CAAC;QACd,KAAK,cAAc;YACjB,OAAO,UAAU,CAAA;QACnB;YACE,MAAM,KAAK,CAAC,WAAW,IAAA,iBAAS,EAAC,IAAI,CAAC,kFAAkF,CAAC,CAAA;IAC7H,CAAC;AACH,CAAC,CAAA;AAVY,QAAA,eAAe,mBAU3B;AAEM,MAAM,WAAW,GAAG,CAAC,IAA6C,EAAY,EAAE;IACrF,wBAAwB;IACxB,OAAO,MAAM,CAAA;AACf,CAAC,CAAA;AAHY,QAAA,WAAW,eAGvB"}