@estopia/shared 1.0.36 → 1.0.38
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/dist/index.d.ts +0 -14
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -23
- package/dist/index.js.map +1 -1
- package/dist/server.d.ts +15 -0
- package/dist/server.d.ts.map +1 -0
- package/dist/server.js +26 -0
- package/dist/server.js.map +1 -0
- package/dist/types/oauth.d.ts +47 -3
- package/dist/types/oauth.d.ts.map +1 -1
- package/dist/types/oauth.js +12 -1
- package/dist/types/oauth.js.map +1 -1
- package/package.json +5 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,19 +1,5 @@
|
|
|
1
|
-
export { createLogger } from './logging/logger';
|
|
2
|
-
export type { LoggerOptions, LogMeta } from './logging/logger';
|
|
3
|
-
export { createCockroachDBConnection } from './database/cockroach';
|
|
4
|
-
export type { CockroachConfig } from './database/types';
|
|
5
|
-
export { Pool as CockroachDBClient } from 'pg';
|
|
6
|
-
export { Client as ScyllaDBClient } from 'cassandra-driver';
|
|
7
|
-
export { EventPublisher } from './broker/publisher';
|
|
8
|
-
export { EventSubscriber } from './broker/subscriber';
|
|
9
|
-
export type { EventPayloads } from './broker/eventTypes';
|
|
10
1
|
export type { UserDto } from './types/user';
|
|
11
|
-
export { validateJWTToken, tryValidateJWTToken } from './helpers/validateJWTToken';
|
|
12
2
|
export type { DB } from './database/dataTypes';
|
|
13
|
-
export type { EstopiaRequest } from './types/request';
|
|
14
|
-
export { requireAuth } from './helpers/middlware/auth';
|
|
15
|
-
export { requireSecure } from './helpers/middlware/secure';
|
|
16
|
-
export { requireAdmin } from './helpers/middlware/admin';
|
|
17
3
|
export { OAUTH_SCOPES, SCOPE_IDS } from './types/oauth';
|
|
18
4
|
export type { OAuthScope } from './types/oauth';
|
|
19
5
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,YAAY,EAAE,OAAO,EAAE,MAAM,cAAc,CAAC;AAC5C,YAAY,EAAE,EAAE,EAAE,MAAM,sBAAsB,CAAC;AAC/C,OAAO,EAAE,YAAY,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AACxD,YAAY,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -1,28 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.SCOPE_IDS = exports.OAUTH_SCOPES =
|
|
4
|
-
var logger_1 = require("./logging/logger");
|
|
5
|
-
Object.defineProperty(exports, "createLogger", { enumerable: true, get: function () { return logger_1.createLogger; } });
|
|
6
|
-
var cockroach_1 = require("./database/cockroach");
|
|
7
|
-
Object.defineProperty(exports, "createCockroachDBConnection", { enumerable: true, get: function () { return cockroach_1.createCockroachDBConnection; } });
|
|
8
|
-
// Export the database clients for type hinting in other services
|
|
9
|
-
var pg_1 = require("pg");
|
|
10
|
-
Object.defineProperty(exports, "CockroachDBClient", { enumerable: true, get: function () { return pg_1.Pool; } });
|
|
11
|
-
var cassandra_driver_1 = require("cassandra-driver");
|
|
12
|
-
Object.defineProperty(exports, "ScyllaDBClient", { enumerable: true, get: function () { return cassandra_driver_1.Client; } });
|
|
13
|
-
var publisher_1 = require("./broker/publisher");
|
|
14
|
-
Object.defineProperty(exports, "EventPublisher", { enumerable: true, get: function () { return publisher_1.EventPublisher; } });
|
|
15
|
-
var subscriber_1 = require("./broker/subscriber");
|
|
16
|
-
Object.defineProperty(exports, "EventSubscriber", { enumerable: true, get: function () { return subscriber_1.EventSubscriber; } });
|
|
17
|
-
var validateJWTToken_1 = require("./helpers/validateJWTToken");
|
|
18
|
-
Object.defineProperty(exports, "validateJWTToken", { enumerable: true, get: function () { return validateJWTToken_1.validateJWTToken; } });
|
|
19
|
-
Object.defineProperty(exports, "tryValidateJWTToken", { enumerable: true, get: function () { return validateJWTToken_1.tryValidateJWTToken; } });
|
|
20
|
-
var auth_1 = require("./helpers/middlware/auth");
|
|
21
|
-
Object.defineProperty(exports, "requireAuth", { enumerable: true, get: function () { return auth_1.requireAuth; } });
|
|
22
|
-
var secure_1 = require("./helpers/middlware/secure");
|
|
23
|
-
Object.defineProperty(exports, "requireSecure", { enumerable: true, get: function () { return secure_1.requireSecure; } });
|
|
24
|
-
var admin_1 = require("./helpers/middlware/admin");
|
|
25
|
-
Object.defineProperty(exports, "requireAdmin", { enumerable: true, get: function () { return admin_1.requireAdmin; } });
|
|
3
|
+
exports.SCOPE_IDS = exports.OAUTH_SCOPES = void 0;
|
|
26
4
|
var oauth_1 = require("./types/oauth");
|
|
27
5
|
Object.defineProperty(exports, "OAUTH_SCOPES", { enumerable: true, get: function () { return oauth_1.OAUTH_SCOPES; } });
|
|
28
6
|
Object.defineProperty(exports, "SCOPE_IDS", { enumerable: true, get: function () { return oauth_1.SCOPE_IDS; } });
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AAEA,uCAAwD;AAA/C,qGAAA,YAAY,OAAA;AAAE,kGAAA,SAAS,OAAA"}
|
package/dist/server.d.ts
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export { createLogger } from './logging/logger';
|
|
2
|
+
export type { LoggerOptions, LogMeta } from './logging/logger';
|
|
3
|
+
export { createCockroachDBConnection } from './database/cockroach';
|
|
4
|
+
export type { CockroachConfig } from './database/types';
|
|
5
|
+
export { Pool as CockroachDBClient } from 'pg';
|
|
6
|
+
export { Client as ScyllaDBClient } from 'cassandra-driver';
|
|
7
|
+
export { EventPublisher } from './broker/publisher';
|
|
8
|
+
export { EventSubscriber } from './broker/subscriber';
|
|
9
|
+
export type { EventPayloads } from './broker/eventTypes';
|
|
10
|
+
export { validateJWTToken, tryValidateJWTToken } from './helpers/validateJWTToken';
|
|
11
|
+
export type { EstopiaRequest } from './types/request';
|
|
12
|
+
export { requireAuth } from './helpers/middlware/auth';
|
|
13
|
+
export { requireSecure } from './helpers/middlware/secure';
|
|
14
|
+
export { requireAdmin } from './helpers/middlware/admin';
|
|
15
|
+
//# sourceMappingURL=server.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"server.d.ts","sourceRoot":"","sources":["../src/server.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;AAChD,YAAY,EAAE,aAAa,EAAE,OAAO,EAAE,MAAM,kBAAkB,CAAC;AAE/D,OAAO,EAAE,2BAA2B,EAAE,MAAM,sBAAsB,CAAC;AAGnE,YAAY,EAAE,eAAe,EAAE,MAAM,kBAAkB,CAAC;AAGxD,OAAO,EAAE,IAAI,IAAI,iBAAiB,EAAE,MAAM,IAAI,CAAC;AAC/C,OAAO,EAAE,MAAM,IAAI,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAE5D,OAAO,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;AACpD,OAAO,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;AACtD,YAAY,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AAEzD,OAAO,EAAE,gBAAgB,EAAE,mBAAmB,EAAE,MAAM,4BAA4B,CAAC;AAEnF,YAAY,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AACtD,OAAO,EAAE,WAAW,EAAE,MAAM,0BAA0B,CAAC;AACvD,OAAO,EAAE,aAAa,EAAE,MAAM,4BAA4B,CAAC;AAC3D,OAAO,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAC"}
|
package/dist/server.js
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.requireAdmin = exports.requireSecure = exports.requireAuth = exports.tryValidateJWTToken = exports.validateJWTToken = exports.EventSubscriber = exports.EventPublisher = exports.ScyllaDBClient = exports.CockroachDBClient = exports.createCockroachDBConnection = exports.createLogger = void 0;
|
|
4
|
+
var logger_1 = require("./logging/logger");
|
|
5
|
+
Object.defineProperty(exports, "createLogger", { enumerable: true, get: function () { return logger_1.createLogger; } });
|
|
6
|
+
var cockroach_1 = require("./database/cockroach");
|
|
7
|
+
Object.defineProperty(exports, "createCockroachDBConnection", { enumerable: true, get: function () { return cockroach_1.createCockroachDBConnection; } });
|
|
8
|
+
// Export the database clients for type hinting in other services
|
|
9
|
+
var pg_1 = require("pg");
|
|
10
|
+
Object.defineProperty(exports, "CockroachDBClient", { enumerable: true, get: function () { return pg_1.Pool; } });
|
|
11
|
+
var cassandra_driver_1 = require("cassandra-driver");
|
|
12
|
+
Object.defineProperty(exports, "ScyllaDBClient", { enumerable: true, get: function () { return cassandra_driver_1.Client; } });
|
|
13
|
+
var publisher_1 = require("./broker/publisher");
|
|
14
|
+
Object.defineProperty(exports, "EventPublisher", { enumerable: true, get: function () { return publisher_1.EventPublisher; } });
|
|
15
|
+
var subscriber_1 = require("./broker/subscriber");
|
|
16
|
+
Object.defineProperty(exports, "EventSubscriber", { enumerable: true, get: function () { return subscriber_1.EventSubscriber; } });
|
|
17
|
+
var validateJWTToken_1 = require("./helpers/validateJWTToken");
|
|
18
|
+
Object.defineProperty(exports, "validateJWTToken", { enumerable: true, get: function () { return validateJWTToken_1.validateJWTToken; } });
|
|
19
|
+
Object.defineProperty(exports, "tryValidateJWTToken", { enumerable: true, get: function () { return validateJWTToken_1.tryValidateJWTToken; } });
|
|
20
|
+
var auth_1 = require("./helpers/middlware/auth");
|
|
21
|
+
Object.defineProperty(exports, "requireAuth", { enumerable: true, get: function () { return auth_1.requireAuth; } });
|
|
22
|
+
var secure_1 = require("./helpers/middlware/secure");
|
|
23
|
+
Object.defineProperty(exports, "requireSecure", { enumerable: true, get: function () { return secure_1.requireSecure; } });
|
|
24
|
+
var admin_1 = require("./helpers/middlware/admin");
|
|
25
|
+
Object.defineProperty(exports, "requireAdmin", { enumerable: true, get: function () { return admin_1.requireAdmin; } });
|
|
26
|
+
//# sourceMappingURL=server.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"server.js","sourceRoot":"","sources":["../src/server.ts"],"names":[],"mappings":";;;AAAA,2CAAgD;AAAvC,sGAAA,YAAY,OAAA;AAGrB,kDAAmE;AAA1D,wHAAA,2BAA2B,OAAA;AAKpC,iEAAiE;AACjE,yBAA+C;AAAtC,uGAAA,IAAI,OAAqB;AAClC,qDAA4D;AAAnD,kHAAA,MAAM,OAAkB;AAEjC,gDAAoD;AAA3C,2GAAA,cAAc,OAAA;AACvB,kDAAsD;AAA7C,6GAAA,eAAe,OAAA;AAGxB,+DAAmF;AAA1E,oHAAA,gBAAgB,OAAA;AAAE,uHAAA,mBAAmB,OAAA;AAG9C,iDAAuD;AAA9C,mGAAA,WAAW,OAAA;AACpB,qDAA2D;AAAlD,uGAAA,aAAa,OAAA;AACtB,mDAAyD;AAAhD,qGAAA,YAAY,OAAA"}
|
package/dist/types/oauth.d.ts
CHANGED
|
@@ -23,18 +23,62 @@ export declare const OAUTH_SCOPES: readonly [{
|
|
|
23
23
|
readonly label: "Read Phone";
|
|
24
24
|
readonly desc: "Access to your registered phone numbers.";
|
|
25
25
|
}, {
|
|
26
|
-
readonly id: "profile:read:
|
|
27
|
-
readonly label: "Read
|
|
26
|
+
readonly id: "profile:read:admin";
|
|
27
|
+
readonly label: "Read Admin";
|
|
28
28
|
readonly desc: "Access to your admin status.";
|
|
29
|
+
}, {
|
|
30
|
+
readonly id: "profile:read:icon";
|
|
31
|
+
readonly label: "Read Icon";
|
|
32
|
+
readonly desc: "Access to your profile icon URL.";
|
|
33
|
+
}, {
|
|
34
|
+
readonly id: "profile:read:preferences";
|
|
35
|
+
readonly label: "Read Preferences";
|
|
36
|
+
readonly desc: "Access to your profile preferences.";
|
|
37
|
+
}, {
|
|
38
|
+
readonly id: "profile:read:passkeys";
|
|
39
|
+
readonly label: "Read Passkeys";
|
|
40
|
+
readonly desc: "Access to your registered passkeys.";
|
|
41
|
+
}, {
|
|
42
|
+
readonly id: "profile:read:authapps";
|
|
43
|
+
readonly label: "Read Auth Apps";
|
|
44
|
+
readonly desc: "Access to your registered authentication apps.";
|
|
29
45
|
}, {
|
|
30
46
|
readonly id: "profile:read:username";
|
|
31
47
|
readonly label: "Read Username";
|
|
32
48
|
readonly desc: "Access to your unique username.";
|
|
49
|
+
}, {
|
|
50
|
+
readonly id: "profile:write:email";
|
|
51
|
+
readonly label: "Write Email";
|
|
52
|
+
readonly desc: "Permission to update your email address. Will still need verified. This includes resending verfication emails.";
|
|
53
|
+
}, {
|
|
54
|
+
readonly id: "profile:write:password";
|
|
55
|
+
readonly label: "Write Password";
|
|
56
|
+
readonly desc: "Permission to update your password.";
|
|
57
|
+
}, {
|
|
58
|
+
readonly id: "profile:write:icon";
|
|
59
|
+
readonly label: "Write Icon";
|
|
60
|
+
readonly desc: "Permission to update your profile icon.";
|
|
61
|
+
}, {
|
|
62
|
+
readonly id: "profile:write:preferences";
|
|
63
|
+
readonly label: "Write Preferences";
|
|
64
|
+
readonly desc: "Permission to update your profile preferences.";
|
|
65
|
+
}, {
|
|
66
|
+
readonly id: "profile:write:passkeys";
|
|
67
|
+
readonly label: "Write Passkeys";
|
|
68
|
+
readonly desc: "Permission to update your registered passkeys.";
|
|
69
|
+
}, {
|
|
70
|
+
readonly id: "profile:write:authapps";
|
|
71
|
+
readonly label: "Write Auth Apps";
|
|
72
|
+
readonly desc: "Permission to update your registered authentication apps.";
|
|
73
|
+
}, {
|
|
74
|
+
readonly id: "profile:delete:email";
|
|
75
|
+
readonly label: "Delete Email";
|
|
76
|
+
readonly desc: "Permission to delete your email address.";
|
|
33
77
|
}, {
|
|
34
78
|
readonly id: "openid";
|
|
35
79
|
readonly label: "OpenID";
|
|
36
80
|
readonly desc: "Standard OpenID Connect scope.";
|
|
37
81
|
}];
|
|
38
82
|
export type OAuthScope = typeof OAUTH_SCOPES[number]['id'];
|
|
39
|
-
export declare const SCOPE_IDS: ("profile" | "profile:read" | "profile:write" | "profile:write:username" | "profile:read:email" | "profile:read:phone" | "profile:read:
|
|
83
|
+
export declare const SCOPE_IDS: ("profile" | "profile:read" | "profile:write" | "profile:write:username" | "profile:read:email" | "profile:read:phone" | "profile:read:admin" | "profile:read:icon" | "profile:read:preferences" | "profile:read:passkeys" | "profile:read:authapps" | "profile:read:username" | "profile:write:email" | "profile:write:password" | "profile:write:icon" | "profile:write:preferences" | "profile:write:passkeys" | "profile:write:authapps" | "profile:delete:email" | "openid")[];
|
|
40
84
|
//# sourceMappingURL=oauth.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"oauth.d.ts","sourceRoot":"","sources":["../../src/types/oauth.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,YAAY
|
|
1
|
+
{"version":3,"file":"oauth.d.ts","sourceRoot":"","sources":["../../src/types/oauth.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAqBf,CAAC;AAEX,MAAM,MAAM,UAAU,GAAG,OAAO,YAAY,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC;AAE3D,eAAO,MAAM,SAAS,qdAA8B,CAAC"}
|
package/dist/types/oauth.js
CHANGED
|
@@ -8,8 +8,19 @@ exports.OAUTH_SCOPES = [
|
|
|
8
8
|
{ id: 'profile:write:username', label: 'Write Username', desc: 'Permission to update your username.' },
|
|
9
9
|
{ id: 'profile:read:email', label: 'Read Emails', desc: 'Access to your registered email addresses.' },
|
|
10
10
|
{ id: 'profile:read:phone', label: 'Read Phone', desc: 'Access to your registered phone numbers.' },
|
|
11
|
-
{ id: 'profile:read:
|
|
11
|
+
{ id: 'profile:read:admin', label: 'Read Admin', desc: 'Access to your admin status.' },
|
|
12
|
+
{ id: 'profile:read:icon', label: 'Read Icon', desc: 'Access to your profile icon URL.' },
|
|
13
|
+
{ id: 'profile:read:preferences', label: 'Read Preferences', desc: 'Access to your profile preferences.' },
|
|
14
|
+
{ id: 'profile:read:passkeys', label: 'Read Passkeys', desc: 'Access to your registered passkeys.' },
|
|
15
|
+
{ id: 'profile:read:authapps', label: 'Read Auth Apps', desc: 'Access to your registered authentication apps.' },
|
|
12
16
|
{ id: 'profile:read:username', label: 'Read Username', desc: 'Access to your unique username.' },
|
|
17
|
+
{ id: 'profile:write:email', label: 'Write Email', desc: 'Permission to update your email address. Will still need verified. This includes resending verfication emails.' },
|
|
18
|
+
{ id: 'profile:write:password', label: 'Write Password', desc: 'Permission to update your password.' },
|
|
19
|
+
{ id: 'profile:write:icon', label: 'Write Icon', desc: 'Permission to update your profile icon.' },
|
|
20
|
+
{ id: 'profile:write:preferences', label: 'Write Preferences', desc: 'Permission to update your profile preferences.' },
|
|
21
|
+
{ id: 'profile:write:passkeys', label: 'Write Passkeys', desc: 'Permission to update your registered passkeys.' },
|
|
22
|
+
{ id: 'profile:write:authapps', label: 'Write Auth Apps', desc: 'Permission to update your registered authentication apps.' },
|
|
23
|
+
{ id: 'profile:delete:email', label: 'Delete Email', desc: 'Permission to delete your email address.' },
|
|
13
24
|
{ id: 'openid', label: 'OpenID', desc: 'Standard OpenID Connect scope.' }
|
|
14
25
|
];
|
|
15
26
|
exports.SCOPE_IDS = exports.OAUTH_SCOPES.map(s => s.id);
|
package/dist/types/oauth.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"oauth.js","sourceRoot":"","sources":["../../src/types/oauth.ts"],"names":[],"mappings":";;;AAAa,QAAA,YAAY,GAAG;IAC1B,EAAE,EAAE,EAAE,SAAS,EAAE,KAAK,EAAE,eAAe,EAAE,IAAI,EAAE,4CAA4C,EAAE;IAC7F,EAAE,EAAE,EAAE,cAAc,EAAE,KAAK,EAAE,cAAc,EAAE,IAAI,EAAE,qDAAqD,EAAE;IAC1G,EAAE,EAAE,EAAE,eAAe,EAAE,KAAK,EAAE,eAAe,EAAE,IAAI,EAAE,4CAA4C,EAAE;IACnG,EAAE,EAAE,EAAE,wBAAwB,EAAE,KAAK,EAAE,gBAAgB,EAAE,IAAI,EAAE,qCAAqC,EAAE;IACtG,EAAE,EAAE,EAAE,oBAAoB,EAAE,KAAK,EAAE,aAAa,EAAE,IAAI,EAAE,4CAA4C,EAAE;IACtG,EAAE,EAAE,EAAE,oBAAoB,EAAE,KAAK,EAAE,YAAY,EAAE,IAAI,EAAE,0CAA0C,EAAE;IACnG,EAAE,EAAE,EAAE,mBAAmB,EAAE,KAAK,EAAE,WAAW,EAAE,IAAI,EAAE,
|
|
1
|
+
{"version":3,"file":"oauth.js","sourceRoot":"","sources":["../../src/types/oauth.ts"],"names":[],"mappings":";;;AAAa,QAAA,YAAY,GAAG;IAC1B,EAAE,EAAE,EAAE,SAAS,EAAE,KAAK,EAAE,eAAe,EAAE,IAAI,EAAE,4CAA4C,EAAE;IAC7F,EAAE,EAAE,EAAE,cAAc,EAAE,KAAK,EAAE,cAAc,EAAE,IAAI,EAAE,qDAAqD,EAAE;IAC1G,EAAE,EAAE,EAAE,eAAe,EAAE,KAAK,EAAE,eAAe,EAAE,IAAI,EAAE,4CAA4C,EAAE;IACnG,EAAE,EAAE,EAAE,wBAAwB,EAAE,KAAK,EAAE,gBAAgB,EAAE,IAAI,EAAE,qCAAqC,EAAE;IACtG,EAAE,EAAE,EAAE,oBAAoB,EAAE,KAAK,EAAE,aAAa,EAAE,IAAI,EAAE,4CAA4C,EAAE;IACtG,EAAE,EAAE,EAAE,oBAAoB,EAAE,KAAK,EAAE,YAAY,EAAE,IAAI,EAAE,0CAA0C,EAAE;IACnG,EAAE,EAAE,EAAE,oBAAoB,EAAE,KAAK,EAAE,YAAY,EAAE,IAAI,EAAE,8BAA8B,EAAE;IACvF,EAAE,EAAE,EAAE,mBAAmB,EAAE,KAAK,EAAE,WAAW,EAAE,IAAI,EAAE,kCAAkC,EAAE;IACzF,EAAE,EAAE,EAAE,0BAA0B,EAAE,KAAK,EAAE,kBAAkB,EAAE,IAAI,EAAE,qCAAqC,EAAE;IAC1G,EAAE,EAAE,EAAE,uBAAuB,EAAE,KAAK,EAAE,eAAe,EAAE,IAAI,EAAE,qCAAqC,EAAE;IACpG,EAAE,EAAE,EAAE,uBAAuB,EAAE,KAAK,EAAE,gBAAgB,EAAE,IAAI,EAAE,gDAAgD,EAAE;IAChH,EAAE,EAAE,EAAE,uBAAuB,EAAE,KAAK,EAAE,eAAe,EAAE,IAAI,EAAE,iCAAiC,EAAE;IAChG,EAAE,EAAE,EAAE,qBAAqB,EAAE,KAAK,EAAE,aAAa,EAAE,IAAI,EAAE,gHAAgH,EAAE;IAC3K,EAAE,EAAE,EAAE,wBAAwB,EAAE,KAAK,EAAE,gBAAgB,EAAE,IAAI,EAAE,qCAAqC,EAAE;IACtG,EAAE,EAAE,EAAE,oBAAoB,EAAE,KAAK,EAAE,YAAY,EAAE,IAAI,EAAE,yCAAyC,EAAE;IAClG,EAAE,EAAE,EAAE,2BAA2B,EAAE,KAAK,EAAE,mBAAmB,EAAE,IAAI,EAAE,gDAAgD,EAAE;IACvH,EAAE,EAAE,EAAE,wBAAwB,EAAE,KAAK,EAAE,gBAAgB,EAAE,IAAI,EAAE,gDAAgD,EAAE;IACjH,EAAE,EAAE,EAAE,wBAAwB,EAAE,KAAK,EAAE,iBAAiB,EAAE,IAAI,EAAE,2DAA2D,EAAE;IAC7H,EAAE,EAAE,EAAE,sBAAsB,EAAE,KAAK,EAAE,cAAc,EAAE,IAAI,EAAE,0CAA0C,EAAE;IACvG,EAAE,EAAE,EAAE,QAAQ,EAAE,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,gCAAgC,EAAE;CACjE,CAAC;AAIE,QAAA,SAAS,GAAG,oBAAY,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@estopia/shared",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.38",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
|
+
"exports": {
|
|
7
|
+
".": "./dist/index.js",
|
|
8
|
+
"./server": "./dist/server.js"
|
|
9
|
+
},
|
|
6
10
|
"description": "",
|
|
7
11
|
"author": "",
|
|
8
12
|
"license": "ISC",
|