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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oksy",
3
- "version": "0.1.18",
3
+ "version": "0.1.19",
4
4
  "description": "The OKSY framework",
5
5
  "main": "library.js",
6
6
  "typings": "./types/src/library.pub.d.ts",
@@ -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
- export type One<T1 extends GlobalEntity, T2 extends keyof T1, T3 extends BlueprintFieldOne['cascade'] = 'DELETE'> = T1;
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 {};