@tomei/sso 0.39.1 → 0.39.2
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/src/components/api-key/api-key.d.ts +1 -1
- package/dist/src/components/api-key/api-key.js +3 -3
- package/dist/src/index.d.ts +1 -0
- package/dist/src/index.js +1 -0
- package/dist/src/index.js.map +1 -1
- package/dist/src/interfaces/api-key-attr.interface.d.ts +1 -1
- package/dist/src/models/api-key-entity.d.ts +1 -1
- package/dist/src/models/api-key-entity.js +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/components/api-key/api-key.ts +4 -4
- package/src/index.ts +1 -0
- package/src/interfaces/api-key-attr.interface.ts +1 -1
- package/src/models/api-key-entity.ts +1 -1
@@ -42,7 +42,7 @@ class APIKey extends general_1.ObjectBase {
|
|
42
42
|
this.Name = apiKeyAttr.Name;
|
43
43
|
this.Description = apiKeyAttr.Description;
|
44
44
|
this.Status = apiKeyAttr.Status;
|
45
|
-
this.
|
45
|
+
this.ExpirationDate = apiKeyAttr.ExpirationDate;
|
46
46
|
this._InvokedById = apiKeyAttr.InvokedById;
|
47
47
|
this._InvokedAt = apiKeyAttr.InvokedAt;
|
48
48
|
this._CreatedAt = apiKeyAttr.CreatedAt;
|
@@ -83,7 +83,7 @@ class APIKey extends general_1.ObjectBase {
|
|
83
83
|
ApiKey: this.ApiKey,
|
84
84
|
Name: this.Name,
|
85
85
|
Status: this.Status,
|
86
|
-
ExpirationDate: this.
|
86
|
+
ExpirationDate: this.ExpirationDate,
|
87
87
|
CreatedAt: this.CreatedAt,
|
88
88
|
CreatedById: this.CreatedById,
|
89
89
|
InvokedAt: this.InvokedAt,
|
@@ -107,7 +107,7 @@ class APIKey extends general_1.ObjectBase {
|
|
107
107
|
ApiKey: this.ApiKey,
|
108
108
|
Name: this.Name,
|
109
109
|
Status: this.Status,
|
110
|
-
ExpirationDate: this.
|
110
|
+
ExpirationDate: this.ExpirationDate,
|
111
111
|
CreatedAt: this.CreatedAt,
|
112
112
|
CreatedById: this.CreatedById,
|
113
113
|
InvokedAt: this.InvokedAt,
|
package/dist/src/index.d.ts
CHANGED
package/dist/src/index.js
CHANGED
@@ -20,5 +20,6 @@ __exportStar(require("./components"), exports);
|
|
20
20
|
__exportStar(require("./interfaces"), exports);
|
21
21
|
__exportStar(require("./redis-client"), exports);
|
22
22
|
__exportStar(require("./session"), exports);
|
23
|
+
__exportStar(require("./enum"), exports);
|
23
24
|
exports.ssoDb = require("./database");
|
24
25
|
//# sourceMappingURL=index.js.map
|
package/dist/src/index.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,OAAO,CAAC,QAAQ,CAAC,CAAC,MAAM,EAAE,CAAC;AAC3B,+CAA6B;AAC7B,+CAA6B;AAC7B,iDAA+B;AAC/B,4CAA0B;AAC1B,sCAAoC"}
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,OAAO,CAAC,QAAQ,CAAC,CAAC,MAAM,EAAE,CAAC;AAC3B,+CAA6B;AAC7B,+CAA6B;AAC7B,iDAA+B;AAC/B,4CAA0B;AAC1B,yCAAuB;AACvB,sCAAoC"}
|
@@ -57,7 +57,7 @@ __decorate([
|
|
57
57
|
allowNull: true,
|
58
58
|
}),
|
59
59
|
__metadata("design:type", Date)
|
60
|
-
], APIKeyModel.prototype, "
|
60
|
+
], APIKeyModel.prototype, "ExpirationDate", void 0);
|
61
61
|
__decorate([
|
62
62
|
(0, sequelize_typescript_1.ForeignKey)(() => user_entity_1.default),
|
63
63
|
(0, sequelize_typescript_1.Column)({
|