@tomei/sso 0.39.1 → 0.39.2
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/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
package/package.json
CHANGED
|
@@ -17,7 +17,7 @@ export class APIKey extends ObjectBase {
|
|
|
17
17
|
Name: string;
|
|
18
18
|
Description: string;
|
|
19
19
|
Status: APIKeyStatusEnum;
|
|
20
|
-
|
|
20
|
+
ExpirationDate: Date;
|
|
21
21
|
_InvokedById: number;
|
|
22
22
|
_InvokedAt: Date;
|
|
23
23
|
_CreatedAt: Date;
|
|
@@ -57,7 +57,7 @@ export class APIKey extends ObjectBase {
|
|
|
57
57
|
this.Name = apiKeyAttr.Name;
|
|
58
58
|
this.Description = apiKeyAttr.Description;
|
|
59
59
|
this.Status = apiKeyAttr.Status;
|
|
60
|
-
this.
|
|
60
|
+
this.ExpirationDate = apiKeyAttr.ExpirationDate;
|
|
61
61
|
this._InvokedById = apiKeyAttr.InvokedById;
|
|
62
62
|
this._InvokedAt = apiKeyAttr.InvokedAt;
|
|
63
63
|
this._CreatedAt = apiKeyAttr.CreatedAt;
|
|
@@ -132,7 +132,7 @@ export class APIKey extends ObjectBase {
|
|
|
132
132
|
ApiKey: this.ApiKey,
|
|
133
133
|
Name: this.Name,
|
|
134
134
|
Status: this.Status,
|
|
135
|
-
ExpirationDate: this.
|
|
135
|
+
ExpirationDate: this.ExpirationDate,
|
|
136
136
|
CreatedAt: this.CreatedAt,
|
|
137
137
|
CreatedById: this.CreatedById,
|
|
138
138
|
InvokedAt: this.InvokedAt,
|
|
@@ -183,7 +183,7 @@ export class APIKey extends ObjectBase {
|
|
|
183
183
|
ApiKey: this.ApiKey,
|
|
184
184
|
Name: this.Name,
|
|
185
185
|
Status: this.Status,
|
|
186
|
-
ExpirationDate: this.
|
|
186
|
+
ExpirationDate: this.ExpirationDate,
|
|
187
187
|
CreatedAt: this.CreatedAt,
|
|
188
188
|
CreatedById: this.CreatedById,
|
|
189
189
|
InvokedAt: this.InvokedAt,
|
package/src/index.ts
CHANGED