vona-module-a-orm 5.1.20 → 5.1.23

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.
@@ -14,6 +14,6 @@ export type TypeEntityMeta<T, N = string> = Required<{
14
14
  };
15
15
  export declare const SymbolKeyFieldsMore: unique symbol;
16
16
  export type TypeSymbolKeyFieldsMore = typeof SymbolKeyFieldsMore;
17
- export type TypeEntityStudentMetaSimple<T> = Omit<T, '$table' | '$comment' | '$default'>;
18
- export type TypeEntityStudentMetaSimpleColumns<T> = PickString<keyof TypeEntityStudentMetaSimple<T>>;
17
+ export type TypeEntityMetaFields<T> = Omit<T, '$table' | '$comment' | '$default'>;
18
+ export type TypeEntityMetaFieldKeys<T> = PickString<keyof TypeEntityMetaFields<T>>;
19
19
  //# sourceMappingURL=entity.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"entity.d.ts","sourceRoot":"","sources":["../../src/types/entity.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;AAEvC,MAAM,MAAM,cAAc,CAAC,CAAC,EAAE,CAAC,GAAG,MAAM,IAAI,QAAQ,CAAC;KAClD,GAAG,IAAI,MAAM,CAAC,GAAG,GAAG;CACtB,CAAC,GAAG;IACH,MAAM,EAAE,CAAC,CAAC;IACV,QAAQ,EAAE,QAAQ,CAAC;SAAG,GAAG,IAAI,MAAM,CAAC,GAAG,MAAM;KAAE,CAAC,GAAG;QAAE,MAAM,EAAE,MAAM,CAAA;KAAE,CAAC;IACtE,QAAQ,EAAE,QAAQ,CAAC;SAAG,GAAG,IAAI,MAAM,CAAC,GAAG,GAAG;KAAE,CAAC,CAAC;CAC/C,CAAC;AAEF,eAAO,MAAM,mBAAmB,eAAwB,CAAC;AACzD,MAAM,MAAM,uBAAuB,GAAG,OAAO,mBAAmB,CAAC;AAEjE,MAAM,MAAM,2BAA2B,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,EAAE,QAAQ,GAAG,UAAU,GAAG,UAAU,CAAC,CAAC;AACzF,MAAM,MAAM,kCAAkC,CAAC,CAAC,IAAI,UAAU,CAC5D,MAAM,2BAA2B,CAAC,CAAC,CAAC,CACrC,CAAC"}
1
+ {"version":3,"file":"entity.d.ts","sourceRoot":"","sources":["../../src/types/entity.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;AAEvC,MAAM,MAAM,cAAc,CAAC,CAAC,EAAE,CAAC,GAAG,MAAM,IAAI,QAAQ,CAAC;KAClD,GAAG,IAAI,MAAM,CAAC,GAAG,GAAG;CACtB,CAAC,GAAG;IACH,MAAM,EAAE,CAAC,CAAC;IACV,QAAQ,EAAE,QAAQ,CAAC;SAAG,GAAG,IAAI,MAAM,CAAC,GAAG,MAAM;KAAE,CAAC,GAAG;QAAE,MAAM,EAAE,MAAM,CAAA;KAAE,CAAC;IACtE,QAAQ,EAAE,QAAQ,CAAC;SAAG,GAAG,IAAI,MAAM,CAAC,GAAG,GAAG;KAAE,CAAC,CAAC;CAC/C,CAAC;AAEF,eAAO,MAAM,mBAAmB,eAAwB,CAAC;AACzD,MAAM,MAAM,uBAAuB,GAAG,OAAO,mBAAmB,CAAC;AAEjE,MAAM,MAAM,oBAAoB,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,EAAE,QAAQ,GAAG,UAAU,GAAG,UAAU,CAAC,CAAC;AAClF,MAAM,MAAM,uBAAuB,CAAC,CAAC,IAAI,UAAU,CAAC,MAAM,oBAAoB,CAAC,CAAC,CAAC,CAAC,CAAC"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "vona-module-a-orm",
3
- "version": "5.1.20",
4
- "gitHead": "7a711c5f09e0c1d3b0fda2084710297ea45b5d8e",
3
+ "version": "5.1.23",
4
+ "gitHead": "e6ba99cf7fcb42ab5bc46591e48bd071d7a35a7a",
5
5
  "description": "db",
6
6
  "keywords": [
7
7
  "Cabloy Module"
@@ -11,7 +11,5 @@ export type TypeEntityMeta<T, N = string> = Required<{
11
11
  export const SymbolKeyFieldsMore = Symbol('$fieldsMore');
12
12
  export type TypeSymbolKeyFieldsMore = typeof SymbolKeyFieldsMore;
13
13
 
14
- export type TypeEntityStudentMetaSimple<T> = Omit<T, '$table' | '$comment' | '$default'>;
15
- export type TypeEntityStudentMetaSimpleColumns<T> = PickString<
16
- keyof TypeEntityStudentMetaSimple<T>
17
- >;
14
+ export type TypeEntityMetaFields<T> = Omit<T, '$table' | '$comment' | '$default'>;
15
+ export type TypeEntityMetaFieldKeys<T> = PickString<keyof TypeEntityMetaFields<T>>;