zavadil-ts-common 1.1.75 → 1.1.77
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 +11 -7
- package/dist/type/Entity.d.ts +2 -2
- package/dist/type/index.d.ts +1 -0
- package/package.json +1 -1
- package/src/type/Entity.ts +2 -2
- package/src/type/index.ts +1 -1
package/dist/index.d.ts
CHANGED
@@ -55,6 +55,16 @@ type CacheStats = {
|
|
55
55
|
};
|
56
56
|
type HashCacheStats = CacheStats & {};
|
57
57
|
|
58
|
+
type EntityBase = {
|
59
|
+
id?: number | null;
|
60
|
+
createdOn?: Date;
|
61
|
+
lastUpdateOn?: Date;
|
62
|
+
};
|
63
|
+
type EntityWithName = EntityBase & {
|
64
|
+
name: string;
|
65
|
+
};
|
66
|
+
type LookupTableEntity = EntityWithName & {};
|
67
|
+
|
58
68
|
declare class HashCacheAsync<K, V> {
|
59
69
|
private cache;
|
60
70
|
private supplier;
|
@@ -86,12 +96,6 @@ declare class LazyAsync<T> {
|
|
86
96
|
reset(): void;
|
87
97
|
}
|
88
98
|
|
89
|
-
type EntityBase = {
|
90
|
-
id?: number | null;
|
91
|
-
created_on?: Date;
|
92
|
-
last_update_on?: Date;
|
93
|
-
};
|
94
|
-
|
95
99
|
type RestClientHeaders = {};
|
96
100
|
declare class RestClient {
|
97
101
|
private baseUrl;
|
@@ -408,4 +412,4 @@ declare class Vector2 {
|
|
408
412
|
toString(decimals?: number): string;
|
409
413
|
}
|
410
414
|
|
411
|
-
export { type AccessTokenPayload, ArrayUtil, AsyncUtil, ByteUtil, CacheAsync, type CacheStats, CancellablePromise, DateUtil, EntityCachedClient, EntityClient, EntityClientWithStub, EventManager, type Func, type FuncHandlers, type FuncHandlersCache, HashCacheAsync, type HashCacheStats, type IdTokenPayload, type JavaHeapStats, type JwKeyPayload, type JwksPayload, Lazy, LazyAsync, LookupClient, NumberUtil, OAuthRestClient, OAuthSubject, OAuthTokenManager, ObjectUtil, type Page, type PagingRequest, PagingUtil, type QueueStats, type RequestAccessTokenPayload, type RequestIdTokenFromLoginPayload, type RequestIdTokenFromPrevTokenPayload, RestClient, type RestClientHeaders, RestClientWithOAuth, type ServerOAuthInfoPayload, type SortingField, type SortingRequest, StringUtil, type TokenRequestPayloadBase, type TokenResponsePayloadBase, type UserAlert, UserAlertType, UserAlerts, Vector2 };
|
415
|
+
export { type AccessTokenPayload, ArrayUtil, AsyncUtil, ByteUtil, CacheAsync, type CacheStats, CancellablePromise, DateUtil, type EntityBase, EntityCachedClient, EntityClient, EntityClientWithStub, type EntityWithName, EventManager, type Func, type FuncHandlers, type FuncHandlersCache, HashCacheAsync, type HashCacheStats, type IdTokenPayload, type JavaHeapStats, type JwKeyPayload, type JwksPayload, Lazy, LazyAsync, LookupClient, type LookupTableEntity, NumberUtil, OAuthRestClient, OAuthSubject, OAuthTokenManager, ObjectUtil, type Page, type PagingRequest, PagingUtil, type QueueStats, type RequestAccessTokenPayload, type RequestIdTokenFromLoginPayload, type RequestIdTokenFromPrevTokenPayload, RestClient, type RestClientHeaders, RestClientWithOAuth, type ServerOAuthInfoPayload, type SortingField, type SortingRequest, StringUtil, type TokenRequestPayloadBase, type TokenResponsePayloadBase, type UserAlert, UserAlertType, UserAlerts, Vector2 };
|
package/dist/type/Entity.d.ts
CHANGED
package/dist/type/index.d.ts
CHANGED
package/package.json
CHANGED
package/src/type/Entity.ts
CHANGED
package/src/type/index.ts
CHANGED