oksy 0.1.18 → 0.1.19
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/boot.js +20 -20
- package/library.js +1 -1
- package/package.json +1 -1
- package/types/src/ReactiveStore/BaseEntity.d.ts +5 -1
package/package.json
CHANGED
@@ -7,7 +7,10 @@ import { IValidator } from './Validators/IValidator';
|
|
7
7
|
export type Draft<T> = {
|
8
8
|
[P in keyof T]: T[P] extends Function ? T[P] : (P extends 'id' | 'workspaceId' ? T[P] : null | T[P]);
|
9
9
|
};
|
10
|
-
|
10
|
+
type ManyFields<T1 extends GlobalEntity> = {
|
11
|
+
[K in keyof T1]: T1[K] extends Many<any, any> ? K : never;
|
12
|
+
}[keyof T1];
|
13
|
+
export type One<T1 extends GlobalEntity, T2 extends ManyFields<T1>, T3 extends BlueprintFieldOne['cascade'] = 'DELETE'> = T1;
|
11
14
|
export declare abstract class GlobalEntity {
|
12
15
|
id: string;
|
13
16
|
isValid: boolean;
|
@@ -48,3 +51,4 @@ export declare abstract class BaseFile extends Entity {
|
|
48
51
|
size: number;
|
49
52
|
type: string;
|
50
53
|
}
|
54
|
+
export {};
|