@ez4/database 0.8.0 → 0.9.0
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/errors/relations.d.ts +24 -0
- package/dist/library.cjs +95 -68
- package/dist/library.d.ts +4 -1
- package/dist/library.mjs +89 -63
- package/dist/main.cjs +5 -4
- package/dist/main.d.ts +8 -7
- package/dist/main.mjs +2 -1
- package/dist/metadata/indexes.d.ts +2 -2
- package/dist/metadata/relations.d.ts +5 -0
- package/dist/metadata/utils.d.ts +1 -0
- package/dist/services/client.d.ts +3 -25
- package/dist/services/database.d.ts +17 -2
- package/dist/services/indexes.d.ts +17 -30
- package/dist/services/order.d.ts +1 -1
- package/dist/services/query.d.ts +36 -35
- package/dist/services/relations.d.ts +63 -0
- package/dist/services/schemas.d.ts +6 -8
- package/dist/services/table.d.ts +85 -0
- package/dist/services/transaction.d.ts +10 -8
- package/dist/types/indexes.d.ts +5 -1
- package/dist/types/relations.d.ts +7 -0
- package/dist/types/table.d.ts +4 -2
- package/package.json +6 -6
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { IncorrectTypeError, InvalidTypeError, TypeError } from '@ez4/common/library';
|
|
2
|
+
export declare class InvalidRelationsTypeError extends InvalidTypeError {
|
|
3
|
+
constructor(fileName?: string);
|
|
4
|
+
}
|
|
5
|
+
export declare class IncorrectRelationsTypeError extends IncorrectTypeError {
|
|
6
|
+
schemaType: string;
|
|
7
|
+
constructor(schemaType: string, fileName?: string);
|
|
8
|
+
}
|
|
9
|
+
export declare class InvalidRelationTargetError extends TypeError {
|
|
10
|
+
relationSource: string;
|
|
11
|
+
constructor(relationSource: string, fileName?: string);
|
|
12
|
+
}
|
|
13
|
+
export declare class InvalidRelationTableError extends TypeError {
|
|
14
|
+
relationTable: string;
|
|
15
|
+
constructor(relationTable: string, fileName?: string);
|
|
16
|
+
}
|
|
17
|
+
export declare class InvalidRelationColumnError extends TypeError {
|
|
18
|
+
relationColumn: string;
|
|
19
|
+
constructor(relationColumn: string, fileName?: string);
|
|
20
|
+
}
|
|
21
|
+
export declare class InvalidRelationAliasError extends TypeError {
|
|
22
|
+
relationAlias: string;
|
|
23
|
+
constructor(relationAlias: string, fileName?: string);
|
|
24
|
+
}
|
package/dist/library.cjs
CHANGED
|
@@ -1,68 +1,95 @@
|
|
|
1
|
-
"use strict";var
|
|
2
|
-
typeof t=="object"||typeof t=="function")for(let
|
|
3
|
-
|
|
4
|
-
IncompleteTableError:()=>
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
(0,
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
super(
|
|
16
|
-
super(
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
super(
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
e,
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
(0,
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
o);
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
return
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
return
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
1
|
+
"use strict";var K=Object.defineProperty;var Ae=Object.getOwnPropertyDescriptor;var Oe=Object.getOwnPropertyNames;var Re=Object.prototype.hasOwnProperty;var ke=(e,t)=>{for(var r in t)K(e,r,{get:t[r],enumerable:!0})},ze=(e,t,r,o)=>{if(t&&
|
|
2
|
+
typeof t=="object"||typeof t=="function")for(let a of Oe(t))!Re.call(e,a)&&a!==r&&
|
|
3
|
+
K(e,a,{get:()=>t[a],enumerable:!(o=Ae(t,a))||o.enumerable});return e};var Ce=e=>ze(K({},"__esModule",{value:!0}),e);var Ke={};ke(Ke,{IncompleteHandlerError:()=>F,IncompleteServiceError:()=>E,IncompleteStreamError:()=>H,
|
|
4
|
+
IncompleteTableError:()=>w,IncorrectIndexesTypeError:()=>O,IncorrectRelationsTypeError:()=>v,
|
|
5
|
+
IncorrectSchemaTypeError:()=>C,IncorrectStreamTypeError:()=>$,InvalidIndexReferenceError:()=>k,
|
|
6
|
+
InvalidIndexTypeError:()=>R,InvalidIndexesTypeError:()=>A,InvalidRelationAliasError:()=>P,
|
|
7
|
+
InvalidRelationColumnError:()=>d,InvalidRelationTableError:()=>j,InvalidRelationTargetError:()=>D,
|
|
8
|
+
InvalidRelationsTypeError:()=>I,InvalidSchemaTypeError:()=>z,InvalidStreamTypeError:()=>N,
|
|
9
|
+
ServiceType:()=>q,getDatabaseServices:()=>Y,getDatabaseTable:()=>X,getTableSchema:()=>W,
|
|
10
|
+
isDatabaseService:()=>He,registerTriggers:()=>Je});module.exports=Ce(Ke);var je=require("@ez4/common/library"),Pe=require("@ez4/schema/library"),Ee=require("@ez4/project/library");var c=require("@ez4/common/library"),Ie=require("@ez4/reflection");var u=require("@ez4/common/library"),I=class extends u.InvalidTypeError{constructor(t){
|
|
11
|
+
super("Invalid table relations type",void 0,"Database.Relations",t)}},v=class extends u.IncorrectTypeError{constructor(r,o){
|
|
12
|
+
super("Incorrect table relations type",r,"Database.Relations",o);this.schemaType=
|
|
13
|
+
r}},D=class extends u.TypeError{constructor(r,o){super(`Target ${r} must follow \
|
|
14
|
+
the pattern 'column@alias'.`,o);this.relationSource=r}},j=class extends u.TypeError{constructor(r,o){
|
|
15
|
+
super(`Relation table ${r} don't exists.`,o);this.relationTable=r}},d=class extends u.TypeError{constructor(r,o){
|
|
16
|
+
super(`Relation column ${r} don't exists.`,o);this.relationColumn=r}},P=class extends u.TypeError{constructor(r,o){
|
|
17
|
+
super(`Relation alias ${r} can't override table columns.`,o);this.relationAlias=
|
|
18
|
+
r}};var q="@ez4/database",He=e=>e.type===q;var L=require("@ez4/common/library"),E=class extends L.IncompleteTypeError{constructor(t,r){
|
|
19
|
+
super("Incomplete database service",t,r)}};var p=require("@ez4/common/library"),U=require("@ez4/reflection"),_=e=>(0,p.isClassDeclaration)(
|
|
20
|
+
e)&&(0,p.hasHeritageType)(e,"Database.Service"),ee=e=>(0,p.isModelDeclaration)(e)&&
|
|
21
|
+
(0,p.hasHeritageType)(e,"Database.Table"),re=e=>(0,U.isTypeCallback)(e)||(0,U.isTypeFunction)(
|
|
22
|
+
e),te=e=>(0,p.hasHeritageType)(e,"Database.Relations"),oe=e=>(0,p.hasHeritageType)(
|
|
23
|
+
e,"Database.Indexes"),ae=e=>(0,p.hasHeritageType)(e,"Database.Schema"),se=e=>(0,p.hasHeritageType)(
|
|
24
|
+
e,"Database.Stream");var M=require("@ez4/common/library"),h=require("@ez4/reflection");var ne=require("@ez4/common/library"),w=class extends ne.IncompleteTypeError{constructor(t,r){
|
|
25
|
+
super("Incomplete database table",t,r)}};var T=require("@ez4/common/library"),A=class extends T.InvalidTypeError{constructor(t){
|
|
26
|
+
super("Invalid table indexes type",void 0,"Database.Indexes",t)}},O=class extends T.IncorrectTypeError{constructor(r,o){
|
|
27
|
+
super("Incorrect table indexes type",r,"Database.Indexes",o);this.schemaType=r}},
|
|
28
|
+
R=class extends T.TypeError{constructor(r,o){super(`Invalid index type, ${r} mus\
|
|
29
|
+
t follow one of the Index options.`,o);this.indexName=r}},k=class extends T.TypeError{constructor(r,o){
|
|
30
|
+
super(`Invalid index reference, ${r} must be valid column.`,o);this.indexName=r}};var b=require("@ez4/common/library"),y=require("@ez4/reflection");var pe=(e,t,r,o)=>{if(!(0,y.isTypeReference)(e))return ie(e,t,o);let a=r[e.path];
|
|
31
|
+
return a?ie(a,t,o):null},ie=(e,t,r)=>(0,y.isTypeObject)(e)?le(e,(0,b.getObjectMembers)(
|
|
32
|
+
e),r):(0,b.isModelDeclaration)(e)?te(e)?le(e,(0,b.getModelMembers)(e),r):(r.push(
|
|
33
|
+
new v(e.name,e.file)),null):(r.push(new I(t.file)),null),le=(e,t,r)=>{let o=[];for(let a of t){
|
|
34
|
+
if(!(0,y.isModelProperty)(a)||a.inherited)continue;let s=(0,b.getPropertyString)(
|
|
35
|
+
a);if(!s)return r.push(new D(a.name,e.file)),null;let[n,i]=a.name.split(":",2),[
|
|
36
|
+
l,V]=s.split("@",2);o.push({foreign:!1,sourceTable:n,sourceColumn:i,targetColumn:l,
|
|
37
|
+
targetAlias:V})}return o};var f=require("@ez4/common/library"),x=require("@ez4/reflection");var ue=(e,t,r,o)=>{if(!(0,x.isTypeReference)(e))return me(e,t,o);let a=r[e.path];
|
|
38
|
+
return a?me(a,t,o):null},me=(e,t,r)=>(0,x.isTypeObject)(e)?ce(e,(0,f.getObjectMembers)(
|
|
39
|
+
e),r):(0,f.isModelDeclaration)(e)?oe(e)?ce(e,(0,f.getModelMembers)(e),r):(r.push(
|
|
40
|
+
new O(e.name,e.file)),null):(r.push(new A(t.file)),null),ce=(e,t,r)=>{let o=[];for(let a of t){
|
|
41
|
+
if(!(0,x.isModelProperty)(a)||a.inherited)continue;let s=a.name,n=(0,f.getPropertyString)(
|
|
42
|
+
a);switch(n){case"primary":case"secondary":case"unique":case"ttl":o.push({name:s,
|
|
43
|
+
columns:s.split(":"),type:n});break;default:return r.push(new R(s,e.file)),null}}
|
|
44
|
+
return o};var G=require("@ez4/reflection"),fe=require("@ez4/common/library"),Q=require("@ez4/schema/library");var B=require("@ez4/common/library"),z=class extends B.InvalidTypeError{constructor(t){
|
|
45
|
+
super("Invalid table schema type",void 0,"Database.Schema",t)}},C=class extends B.IncorrectTypeError{constructor(r,o){
|
|
46
|
+
super("Incorrect table schema type",r,"Database.Schema",o);this.schemaType=r}};var W=(e,t,r,o)=>{if(!(0,G.isTypeReference)(e))return be(e,t,r,o);let a=r[e.path];
|
|
47
|
+
return a?be(a,t,r,o):null},be=(e,t,r,o)=>(0,G.isTypeObject)(e)?(0,Q.getObjectSchema)(
|
|
48
|
+
e,r):(0,fe.isModelDeclaration)(e)?ae(e)?(0,Q.getObjectSchema)(e,r):(o.push(new C(
|
|
49
|
+
e.name,e.file)),null):(o.push(new z(t.file)),null);var m=require("@ez4/common/library"),S=require("@ez4/reflection"),ge=require("@ez4/utils");var g=require("@ez4/common/library"),H=class extends g.IncompleteTypeError{constructor(t,r){
|
|
50
|
+
super("Incomplete table stream",t,r)}},N=class extends g.InvalidTypeError{constructor(t){
|
|
51
|
+
super("Invalid table stream type",void 0,"Database.Stream",t)}},$=class extends g.IncorrectTypeError{constructor(r,o){
|
|
52
|
+
super("Incorrect table stream type",r,"Database.Stream",o);this.streamType=r}};var Te=require("@ez4/common/library"),F=class extends Te.IncompleteTypeError{constructor(t,r){
|
|
53
|
+
super("Incomplete stream handler",t,r)}};var de=(e,t,r)=>{if(!re(e))return null;let o={},a=new Set(["name","file","change"]);
|
|
54
|
+
return e.description&&(o.description=e.description),(o.name=e.name)&&a.delete("n\
|
|
55
|
+
ame"),(o.file=e.file)&&a.delete("file"),e.parameters&&a.delete("change"),a.size===
|
|
56
|
+
0&&$e(o)?o:(r.push(new F([...a],e.file)),null)},$e=e=>!!e.name&&!!e.file;var Se=(e,t,r,o)=>{if(!(0,S.isTypeReference)(e))return ye(e,t,r,o);let a=r[e.path];
|
|
57
|
+
return a?ye(a,t,r,o):null},Fe=e=>!!e.handler,ye=(e,t,r,o)=>(0,S.isTypeObject)(e)?
|
|
58
|
+
xe(e,(0,m.getObjectMembers)(e),r,o):(0,m.isModelDeclaration)(e)?se(e)?xe(e,(0,m.getModelMembers)(
|
|
59
|
+
e),r,o):(o.push(new $(e.name,e.file)),null):(o.push(new N(t.file)),null),xe=(e,t,r,o)=>{
|
|
60
|
+
let a={},s=new Set(["handler"]);for(let n of t)if(!(!(0,S.isModelProperty)(n)||n.
|
|
61
|
+
inherited))switch(n.name){case"handler":a.handler=de(n.value,r,o);break;case"tim\
|
|
62
|
+
eout":case"memory":{let i=(0,m.getPropertyNumber)(n);(0,ge.isAnyNumber)(i)&&(a[n.
|
|
63
|
+
name]=i);break}case"variables":a.variables=(0,m.getLinkedVariableList)(n,o);break}
|
|
64
|
+
return Fe(a)?a:(o.push(new H([...s],e.file)),null)};var X=(e,t,r)=>{if(!(0,h.isTypeReference)(e))return Me(e,t,r);let o=t[e.path];return o?
|
|
65
|
+
Me(o,t,r):null},Ve=e=>!!e.name&&!!e.schema&&!!e.indexes,Me=(e,t,r)=>ee(e)?he(e,(0,M.getModelMembers)(
|
|
66
|
+
e),t,r):(0,h.isTypeObject)(e)?he(e,(0,M.getObjectMembers)(e),t,r):null,he=(e,t,r,o)=>{
|
|
67
|
+
let a={},s=new Set(["name","schema","indexes"]);for(let i of t)if(!(!(0,h.isModelProperty)(
|
|
68
|
+
i)||i.inherited))switch(i.name){case"name":(a.name=(0,M.getPropertyString)(i))&&
|
|
69
|
+
s.delete(i.name);break;case"relations":{let l=pe(i.value,e,r,o);l&&(a.relations=
|
|
70
|
+
l);break}case"indexes":{(a.indexes=ue(i.value,e,r,o))&&s.delete(i.name);break}case"\
|
|
71
|
+
schema":{(a.schema=W(i.value,e,r,o))&&s.delete(i.name);break}case"stream":{a.stream=
|
|
72
|
+
Se(i.value,e,r,o);break}}if(!Ve(a))return o.push(new w([...s],e.file)),null;let n=qe(
|
|
73
|
+
e,a.indexes,a.schema);return n.length?(o.push(...n),null):(a.relations&&Ue(a.relations,
|
|
74
|
+
a.indexes),a)},qe=(e,t,r)=>{let o=r.properties,a=[];for(let{name:s,columns:n}of t)
|
|
75
|
+
n.some(l=>!o[l])&&a.push(new k(s,e.file));return a},Ue=(e,t)=>{for(let r of e)r.
|
|
76
|
+
foreign=!t.some(({name:o,type:a})=>a==="primary"&&o===r.targetColumn)};var Y=e=>{let t={},r=[];for(let o in e){let a=e[o];if(!_(a))continue;let s={type:q},
|
|
77
|
+
n=new Set(["engine","tables"]);s.name=a.name;for(let l of(0,c.getModelMembers)(a))
|
|
78
|
+
if(!(!(0,Ie.isModelProperty)(l)||l.inherited))switch(l.name){case"engine":{(s.engine=
|
|
79
|
+
(0,c.getPropertyString)(l))&&n.delete(l.name);break}case"tables":(s.tables=Be(l,
|
|
80
|
+
e,r))&&n.delete(l.name);break;case"variables":s.variables=(0,c.getLinkedVariableList)(
|
|
81
|
+
l,r);break;case"services":s.services=(0,c.getLinkedServiceList)(l,e,r);break}if(!_e(
|
|
82
|
+
s)){r.push(new E([...n],a.file));continue}let i=Ge(a,s.tables);if(i.length){r.push(
|
|
83
|
+
...i);continue}t[a.name]=s}return{services:t,errors:r}},_e=e=>!!e.name&&!!e.tables,
|
|
84
|
+
Be=(e,t,r)=>{let o=(0,c.getPropertyTuple)(e)??[],a=[];for(let s of o){let n=X(s,
|
|
85
|
+
t,r);n&&a.push(n)}return a},Ge=(e,t)=>{let r=[];for(let{relations:o,schema:a}of t){
|
|
86
|
+
if(!o)continue;let s=a.properties;for(let n of o){let{sourceTable:i,sourceColumn:l,
|
|
87
|
+
targetColumn:V,targetAlias:Z}=n,J=t.find(({name:we})=>we===i)?.schema.properties;
|
|
88
|
+
s[V]||r.push(new d(V,e.file)),s[Z]&&r.push(new P(Z,e.file)),J||r.push(new j(i,e.
|
|
89
|
+
file)),J&&!J[l]&&r.push(new d(l,e.file))}}return r};var ve=e=>_(e)?e.name:null;var De=!1,Je=()=>{De||((0,je.registerTriggers)(),(0,Pe.registerTriggers)(),(0,Ee.createTrigger)(
|
|
90
|
+
"@ez4/database",{"metadata:getServices":Y,"metadata:getLinkedService":ve}),De=!0)};0&&(module.exports={IncompleteHandlerError,IncompleteServiceError,IncompleteStreamError,
|
|
91
|
+
IncompleteTableError,IncorrectIndexesTypeError,IncorrectRelationsTypeError,IncorrectSchemaTypeError,
|
|
92
|
+
IncorrectStreamTypeError,InvalidIndexReferenceError,InvalidIndexTypeError,InvalidIndexesTypeError,
|
|
93
|
+
InvalidRelationAliasError,InvalidRelationColumnError,InvalidRelationTableError,InvalidRelationTargetError,
|
|
94
|
+
InvalidRelationsTypeError,InvalidSchemaTypeError,InvalidStreamTypeError,ServiceType,
|
|
95
|
+
getDatabaseServices,getDatabaseTable,getTableSchema,isDatabaseService,registerTriggers});
|
package/dist/library.d.ts
CHANGED
|
@@ -5,9 +5,12 @@ export * from './metadata/schema.js';
|
|
|
5
5
|
export * from './errors/service.js';
|
|
6
6
|
export * from './errors/table.js';
|
|
7
7
|
export * from './errors/schema.js';
|
|
8
|
+
export * from './errors/relations.js';
|
|
8
9
|
export * from './errors/indexes.js';
|
|
9
10
|
export * from './errors/stream.js';
|
|
10
11
|
export * from './errors/handler.js';
|
|
11
12
|
export * from './types/service.js';
|
|
12
|
-
export * from './types/
|
|
13
|
+
export * from './types/relations.js';
|
|
14
|
+
export * from './types/indexes.js';
|
|
13
15
|
export * from './types/schema.js';
|
|
16
|
+
export * from './types/table.js';
|
package/dist/library.mjs
CHANGED
|
@@ -1,63 +1,89 @@
|
|
|
1
|
-
import{registerTriggers as
|
|
2
|
-
import{createTrigger as
|
|
3
|
-
getPropertyTuple as
|
|
4
|
-
super("
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
super(
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
1
|
+
import{registerTriggers as dr}from"@ez4/common/library";import{registerTriggers as yr}from"@ez4/schema/library";
|
|
2
|
+
import{createTrigger as xr}from"@ez4/project/library";import{getLinkedServiceList as ir,getLinkedVariableList as lr,getPropertyString as pr,
|
|
3
|
+
getPropertyTuple as mr,getModelMembers as cr}from"@ez4/common/library";import{isModelProperty as ur}from"@ez4/reflection";import{IncorrectTypeError as ie,InvalidTypeError as le,TypeError as y}from"@ez4/common/library";
|
|
4
|
+
var u=class extends le{constructor(o){super("Invalid table relations type",void 0,
|
|
5
|
+
"Database.Relations",o)}},b=class extends ie{constructor(r,t){super("Incorrect t\
|
|
6
|
+
able relations type",r,"Database.Relations",t);this.schemaType=r}},f=class extends y{constructor(r,t){
|
|
7
|
+
super(`Target ${r} must follow the pattern 'column@alias'.`,t);this.relationSource=
|
|
8
|
+
r}},T=class extends y{constructor(r,t){super(`Relation table ${r} don't exists.`,
|
|
9
|
+
t);this.relationTable=r}},m=class extends y{constructor(r,t){super(`Relation col\
|
|
10
|
+
umn ${r} don't exists.`,t);this.relationColumn=r}},d=class extends y{constructor(r,t){
|
|
11
|
+
super(`Relation alias ${r} can't override table columns.`,t);this.relationAlias=
|
|
12
|
+
r}};var R="@ez4/database",Mr=e=>e.type===R;import{IncompleteTypeError as pe}from"@ez4/common/library";var x=class extends pe{constructor(o,r){
|
|
13
|
+
super("Incomplete database service",o,r)}};import{hasHeritageType as p,isClassDeclaration as me,isModelDeclaration as ce}from"@ez4/common/library";
|
|
14
|
+
import{isTypeCallback as ue,isTypeFunction as be}from"@ez4/reflection";var g=e=>me(
|
|
15
|
+
e)&&p(e,"Database.Service"),z=e=>ce(e)&&p(e,"Database.Table"),C=e=>ue(e)||be(e),
|
|
16
|
+
H=e=>p(e,"Database.Relations"),N=e=>p(e,"Database.Indexes"),$=e=>p(e,"Database.S\
|
|
17
|
+
chema"),F=e=>p(e,"Database.Stream");import{getModelMembers as Ze,getObjectMembers as Le,getPropertyString as er}from"@ez4/common/library";
|
|
18
|
+
import{isModelProperty as rr,isTypeObject as tr,isTypeReference as or}from"@ez4/reflection";import{IncompleteTypeError as fe}from"@ez4/common/library";var S=class extends fe{constructor(o,r){
|
|
19
|
+
super("Incomplete database table",o,r)}};import{IncorrectTypeError as Te,InvalidTypeError as de,TypeError as V}from"@ez4/common/library";
|
|
20
|
+
var M=class extends de{constructor(o){super("Invalid table indexes type",void 0,
|
|
21
|
+
"Database.Indexes",o)}},h=class extends Te{constructor(r,t){super("Incorrect tab\
|
|
22
|
+
le indexes type",r,"Database.Indexes",t);this.schemaType=r}},I=class extends V{constructor(r,t){
|
|
23
|
+
super(`Invalid index type, ${r} must follow one of the Index options.`,t);this.indexName=
|
|
24
|
+
r}},v=class extends V{constructor(r,t){super(`Invalid index reference, ${r} must\
|
|
25
|
+
be valid column.`,t);this.indexName=r}};import{isModelDeclaration as ye,getModelMembers as xe,getObjectMembers as ge,getPropertyString as Se}from"@ez4/common/library";
|
|
26
|
+
import{isModelProperty as Me,isTypeObject as he,isTypeReference as Ie}from"@ez4/reflection";var _=(e,o,r,t)=>{if(!Ie(e))return q(e,o,t);let a=r[e.path];return a?q(a,o,t):null},
|
|
27
|
+
q=(e,o,r)=>he(e)?U(e,ge(e),r):ye(e)?H(e)?U(e,xe(e),r):(r.push(new b(e.name,e.file)),
|
|
28
|
+
null):(r.push(new u(o.file)),null),U=(e,o,r)=>{let t=[];for(let a of o){if(!Me(a)||
|
|
29
|
+
a.inherited)continue;let s=Se(a);if(!s)return r.push(new f(a.name,e.file)),null;
|
|
30
|
+
let[n,i]=a.name.split(":",2),[l,c]=s.split("@",2);t.push({foreign:!1,sourceTable:n,
|
|
31
|
+
sourceColumn:i,targetColumn:l,targetAlias:c})}return t};import{isModelDeclaration as De,getModelMembers as je,getObjectMembers as Pe,getPropertyString as Ee}from"@ez4/common/library";
|
|
32
|
+
import{isModelProperty as we,isTypeObject as Ae,isTypeReference as Oe}from"@ez4/reflection";var J=(e,o,r,t)=>{if(!Oe(e))return B(e,o,t);let a=r[e.path];return a?B(a,o,t):null},
|
|
33
|
+
B=(e,o,r)=>Ae(e)?G(e,Pe(e),r):De(e)?N(e)?G(e,je(e),r):(r.push(new h(e.name,e.file)),
|
|
34
|
+
null):(r.push(new M(o.file)),null),G=(e,o,r)=>{let t=[];for(let a of o){if(!we(a)||
|
|
35
|
+
a.inherited)continue;let s=a.name,n=Ee(a);switch(n){case"primary":case"secondary":case"\
|
|
36
|
+
unique":case"ttl":t.push({name:s,columns:s.split(":"),type:n});break;default:return r.
|
|
37
|
+
push(new I(s,e.file)),null}}return t};import{isTypeObject as ze,isTypeReference as Ce}from"@ez4/reflection";import{isModelDeclaration as He}from"@ez4/common/library";
|
|
38
|
+
import{getObjectSchema as K}from"@ez4/schema/library";import{IncorrectTypeError as Re,InvalidTypeError as ke}from"@ez4/common/library";
|
|
39
|
+
var D=class extends ke{constructor(o){super("Invalid table schema type",void 0,"\
|
|
40
|
+
Database.Schema",o)}},j=class extends Re{constructor(r,t){super("Incorrect table\
|
|
41
|
+
schema type",r,"Database.Schema",t);this.schemaType=r}};var W=(e,o,r,t)=>{if(!Ce(e))return Q(e,o,r,t);let a=r[e.path];return a?Q(a,o,r,t):
|
|
42
|
+
null},Q=(e,o,r,t)=>ze(e)?K(e,r):He(e)?$(e)?K(e,r):(t.push(new j(e.name,e.file)),
|
|
43
|
+
null):(t.push(new D(o.file)),null);import{getLinkedVariableList as Ue,getModelMembers as _e,getObjectMembers as Be,
|
|
44
|
+
getPropertyNumber as Ge,isModelDeclaration as Je}from"@ez4/common/library";import{
|
|
45
|
+
isModelProperty as Ke,isTypeObject as Qe,isTypeReference as We}from"@ez4/reflection";
|
|
46
|
+
import{isAnyNumber as Xe}from"@ez4/utils";import{IncompleteTypeError as Ne,IncorrectTypeError as $e,InvalidTypeError as Fe}from"@ez4/common/library";
|
|
47
|
+
var P=class extends Ne{constructor(o,r){super("Incomplete table stream",o,r)}},E=class extends Fe{constructor(o){
|
|
48
|
+
super("Invalid table stream type",void 0,"Database.Stream",o)}},w=class extends $e{constructor(r,t){
|
|
49
|
+
super("Incorrect table stream type",r,"Database.Stream",t);this.streamType=r}};import{IncompleteTypeError as Ve}from"@ez4/common/library";var A=class extends Ve{constructor(o,r){
|
|
50
|
+
super("Incomplete stream handler",o,r)}};var X=(e,o,r)=>{if(!C(e))return null;let t={},a=new Set(["name","file","change"]);
|
|
51
|
+
return e.description&&(t.description=e.description),(t.name=e.name)&&a.delete("n\
|
|
52
|
+
ame"),(t.file=e.file)&&a.delete("file"),e.parameters&&a.delete("change"),a.size===
|
|
53
|
+
0&&qe(t)?t:(r.push(new A([...a],e.file)),null)},qe=e=>!!e.name&&!!e.file;var L=(e,o,r,t)=>{if(!We(e))return Y(e,o,r,t);let a=r[e.path];return a?Y(a,o,r,t):
|
|
54
|
+
null},Ye=e=>!!e.handler,Y=(e,o,r,t)=>Qe(e)?Z(e,Be(e),r,t):Je(e)?F(e)?Z(e,_e(e),r,
|
|
55
|
+
t):(t.push(new w(e.name,e.file)),null):(t.push(new E(o.file)),null),Z=(e,o,r,t)=>{
|
|
56
|
+
let a={},s=new Set(["handler"]);for(let n of o)if(!(!Ke(n)||n.inherited))switch(n.
|
|
57
|
+
name){case"handler":a.handler=X(n.value,r,t);break;case"timeout":case"memory":{let i=Ge(
|
|
58
|
+
n);Xe(i)&&(a[n.name]=i);break}case"variables":a.variables=Ue(n,t);break}return Ye(
|
|
59
|
+
a)?a:(t.push(new P([...s],e.file)),null)};var te=(e,o,r)=>{if(!or(e))return ee(e,o,r);let t=o[e.path];return t?ee(t,o,r):null},
|
|
60
|
+
ar=e=>!!e.name&&!!e.schema&&!!e.indexes,ee=(e,o,r)=>z(e)?re(e,Ze(e),o,r):tr(e)?re(
|
|
61
|
+
e,Le(e),o,r):null,re=(e,o,r,t)=>{let a={},s=new Set(["name","schema","indexes"]);
|
|
62
|
+
for(let i of o)if(!(!rr(i)||i.inherited))switch(i.name){case"name":(a.name=er(i))&&
|
|
63
|
+
s.delete(i.name);break;case"relations":{let l=_(i.value,e,r,t);l&&(a.relations=l);
|
|
64
|
+
break}case"indexes":{(a.indexes=J(i.value,e,r,t))&&s.delete(i.name);break}case"s\
|
|
65
|
+
chema":{(a.schema=W(i.value,e,r,t))&&s.delete(i.name);break}case"stream":{a.stream=
|
|
66
|
+
L(i.value,e,r,t);break}}if(!ar(a))return t.push(new S([...s],e.file)),null;let n=sr(
|
|
67
|
+
e,a.indexes,a.schema);return n.length?(t.push(...n),null):(a.relations&&nr(a.relations,
|
|
68
|
+
a.indexes),a)},sr=(e,o,r)=>{let t=r.properties,a=[];for(let{name:s,columns:n}of o)
|
|
69
|
+
n.some(l=>!t[l])&&a.push(new v(s,e.file));return a},nr=(e,o)=>{for(let r of e)r.
|
|
70
|
+
foreign=!o.some(({name:t,type:a})=>a==="primary"&&t===r.targetColumn)};var oe=e=>{let o={},r=[];for(let t in e){let a=e[t];if(!g(a))continue;let s={type:R},
|
|
71
|
+
n=new Set(["engine","tables"]);s.name=a.name;for(let l of cr(a))if(!(!ur(l)||l.inherited))
|
|
72
|
+
switch(l.name){case"engine":{(s.engine=pr(l))&&n.delete(l.name);break}case"table\
|
|
73
|
+
s":(s.tables=fr(l,e,r))&&n.delete(l.name);break;case"variables":s.variables=lr(l,
|
|
74
|
+
r);break;case"services":s.services=ir(l,e,r);break}if(!br(s)){r.push(new x([...n],
|
|
75
|
+
a.file));continue}let i=Tr(a,s.tables);if(i.length){r.push(...i);continue}o[a.name]=
|
|
76
|
+
s}return{services:o,errors:r}},br=e=>!!e.name&&!!e.tables,fr=(e,o,r)=>{let t=mr(
|
|
77
|
+
e)??[],a=[];for(let s of t){let n=te(s,o,r);n&&a.push(n)}return a},Tr=(e,o)=>{let r=[];
|
|
78
|
+
for(let{relations:t,schema:a}of o){if(!t)continue;let s=a.properties;for(let n of t){
|
|
79
|
+
let{sourceTable:i,sourceColumn:l,targetColumn:c,targetAlias:k}=n,O=o.find(({name:ne})=>ne===
|
|
80
|
+
i)?.schema.properties;s[c]||r.push(new m(c,e.file)),s[k]&&r.push(new d(k,e.file)),
|
|
81
|
+
O||r.push(new T(i,e.file)),O&&!O[l]&&r.push(new m(l,e.file))}}return r};var ae=e=>g(e)?e.name:null;var se=!1,$t=()=>{se||(dr(),yr(),xr("@ez4/database",{"metadata:getServices":oe,"\
|
|
82
|
+
metadata:getLinkedService":ae}),se=!0)};export{A as IncompleteHandlerError,x as IncompleteServiceError,P as IncompleteStreamError,
|
|
83
|
+
S as IncompleteTableError,h as IncorrectIndexesTypeError,b as IncorrectRelationsTypeError,
|
|
84
|
+
j as IncorrectSchemaTypeError,w as IncorrectStreamTypeError,v as InvalidIndexReferenceError,
|
|
85
|
+
I as InvalidIndexTypeError,M as InvalidIndexesTypeError,d as InvalidRelationAliasError,
|
|
86
|
+
m as InvalidRelationColumnError,T as InvalidRelationTableError,f as InvalidRelationTargetError,
|
|
87
|
+
u as InvalidRelationsTypeError,D as InvalidSchemaTypeError,E as InvalidStreamTypeError,
|
|
88
|
+
R as ServiceType,oe as getDatabaseServices,te as getDatabaseTable,W as getTableSchema,
|
|
89
|
+
Mr as isDatabaseService,$t as registerTriggers};
|
package/dist/main.cjs
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
"use strict";var s=Object.defineProperty;var
|
|
2
|
-
typeof t=="object"||typeof t=="function")for(let
|
|
3
|
-
s(r,
|
|
4
|
-
|
|
1
|
+
"use strict";var s=Object.defineProperty;var i=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var T=Object.prototype.hasOwnProperty;var c=(r,t)=>{for(var a in t)s(r,a,{get:t[a],enumerable:!0})},y=(r,t,a,n)=>{if(t&&
|
|
2
|
+
typeof t=="object"||typeof t=="function")for(let e of d(t))!T.call(r,e)&&e!==a&&
|
|
3
|
+
s(r,e,{get:()=>t[e],enumerable:!(n=i(t,e))||n.enumerable});return r};var l=r=>y(s({},"__esModule",{value:!0}),r);var b={};c(b,{Database:()=>o,Index:()=>m,Order:()=>p,StreamType:()=>x});module.exports=
|
|
4
|
+
l(b);var x=(n=>(n.Insert="insert",n.Update="update",n.Delete="delete",n))(x||{});var o;(r=>{})(o||={});var m=(e=>(e.Primary="primary",e.Secondary="secondary",e.Unique="unique",e.TTL="\
|
|
5
|
+
ttl",e))(m||{});var p=(a=>(a.Asc="asc",a.Desc="desc",a))(p||{});0&&(module.exports={Database,Index,Order,StreamType});
|
package/dist/main.d.ts
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
export * from './services/client.js';
|
|
2
|
-
export * from './services/transaction.js';
|
|
3
|
-
export * from './services/query.js';
|
|
4
|
-
export * from './services/order.js';
|
|
5
|
-
export * from './services/indexes.js';
|
|
6
|
-
export * from './services/schemas.js';
|
|
7
1
|
export * from './services/streams.js';
|
|
8
|
-
export
|
|
2
|
+
export { Client } from './services/client.js';
|
|
3
|
+
export { Database } from './services/database.js';
|
|
4
|
+
export { Transaction } from './services/transaction.js';
|
|
5
|
+
export { Relations } from './services/relations.js';
|
|
6
|
+
export { Index } from './services/indexes.js';
|
|
7
|
+
export { Table } from './services/table.js';
|
|
8
|
+
export { Query } from './services/query.js';
|
|
9
|
+
export { Order } from './services/order.js';
|
package/dist/main.mjs
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
var
|
|
1
|
+
var o=(t=>(t.Insert="insert",t.Update="update",t.Delete="delete",t))(o||{});var a;(m=>{})(a||={});var n=(e=>(e.Primary="primary",e.Secondary="secondary",e.Unique="unique",e.TTL="\
|
|
2
|
+
ttl",e))(n||{});var s=(r=>(r.Asc="asc",r.Desc="desc",r))(s||{});export{a as Database,n as Index,s as Order,o as StreamType};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { AllType, SourceMap, TypeModel, TypeObject } from '@ez4/reflection';
|
|
2
|
-
import type {
|
|
2
|
+
import type { TableIndex } from '../types/indexes.js';
|
|
3
3
|
type TypeParent = TypeModel | TypeObject;
|
|
4
|
-
export declare const getTableIndexes: (type: AllType, parent: TypeParent, reflection: SourceMap, errorList: Error[]) =>
|
|
4
|
+
export declare const getTableIndexes: (type: AllType, parent: TypeParent, reflection: SourceMap, errorList: Error[]) => TableIndex[] | null;
|
|
5
5
|
export {};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import type { AllType, SourceMap, TypeModel, TypeObject } from '@ez4/reflection';
|
|
2
|
+
import type { TableRelation } from '../types/relations.js';
|
|
3
|
+
type TypeParent = TypeModel | TypeObject;
|
|
4
|
+
export declare const getTableRelations: (type: AllType, parent: TypeParent, reflection: SourceMap, errorList: Error[]) => TableRelation[] | null;
|
|
5
|
+
export {};
|
package/dist/metadata/utils.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ import type { AllType, TypeCallback, TypeClass, TypeFunction, TypeModel } from '
|
|
|
2
2
|
export declare const isDatabaseService: (type: AllType) => type is TypeClass;
|
|
3
3
|
export declare const isDatabaseTable: (type: AllType) => type is TypeModel;
|
|
4
4
|
export declare const isStreamHandler: (type: AllType) => type is TypeCallback | TypeFunction;
|
|
5
|
+
export declare const isTableRelations: (type: TypeModel) => boolean;
|
|
5
6
|
export declare const isTableIndexes: (type: TypeModel) => boolean;
|
|
6
7
|
export declare const isTableSchema: (type: TypeModel) => boolean;
|
|
7
8
|
export declare const isTableStream: (type: TypeModel) => boolean;
|
|
@@ -1,12 +1,10 @@
|
|
|
1
|
-
import type {
|
|
2
|
-
import type { TableSchemas } from './schemas.js';
|
|
3
|
-
import type { Database } from './database.js';
|
|
1
|
+
import type { TableClients } from './table.js';
|
|
4
2
|
import type { Transaction } from './transaction.js';
|
|
5
|
-
import type {
|
|
3
|
+
import type { Database } from './database.js';
|
|
6
4
|
/**
|
|
7
5
|
* Database client.
|
|
8
6
|
*/
|
|
9
|
-
export type Client<T extends Database.Service<any>> =
|
|
7
|
+
export type Client<T extends Database.Service<any>> = TableClients<T> & {
|
|
10
8
|
/**
|
|
11
9
|
* Prepare and execute the given query.
|
|
12
10
|
*
|
|
@@ -22,23 +20,3 @@ export type Client<T extends Database.Service<any>> = ClientTables<T> & {
|
|
|
22
20
|
*/
|
|
23
21
|
transaction<O extends Transaction.WriteOperations<T>>(operations: O): Promise<void>;
|
|
24
22
|
};
|
|
25
|
-
/**
|
|
26
|
-
* Client tables.
|
|
27
|
-
*/
|
|
28
|
-
export type ClientTables<T extends Database.Service<any>> = {
|
|
29
|
-
[P in keyof TableSchemas<T>]: TableSchemas<T>[P] extends Database.Schema ? Table<TableSchemas<T>[P], P extends keyof TableIndexes<T> ? TableIndexes<T>[P] extends Indexes ? TableIndexes<T>[P] : {} : {}> : never;
|
|
30
|
-
};
|
|
31
|
-
/**
|
|
32
|
-
* Client table.
|
|
33
|
-
*/
|
|
34
|
-
export interface Table<T extends Database.Schema, I extends Indexes> {
|
|
35
|
-
insertOne(query: Query.InsertOneInput<T>): Promise<Query.InsertOneResult>;
|
|
36
|
-
findOne<S extends Query.SelectInput<T>>(query: Query.FindOneInput<T, S, I>): Promise<Query.FindOneResult<T, S>>;
|
|
37
|
-
updateOne<S extends Query.SelectInput<T>>(query: Query.UpdateOneInput<T, S, I>): Promise<Query.UpdateOneResult<T, S>>;
|
|
38
|
-
upsertOne<S extends Query.SelectInput<T>>(query: Query.UpsertOneInput<T, S, I>): Promise<Query.UpsertOneResult<T, S>>;
|
|
39
|
-
deleteOne<S extends Query.SelectInput<T>>(query: Query.DeleteOneInput<T, S, I>): Promise<Query.DeleteOneResult<T, S>>;
|
|
40
|
-
insertMany(query: Query.InsertManyInput<T>): Promise<Query.InsertManyResult>;
|
|
41
|
-
findMany<S extends Query.SelectInput<T>>(query: Query.FindManyInput<T, S, I>): Promise<Query.FindManyResult<T, S>>;
|
|
42
|
-
updateMany<S extends Query.SelectInput<T>>(query: Query.UpdateManyInput<T, S>): Promise<Query.UpdateManyResult<T, S>>;
|
|
43
|
-
deleteMany<S extends Query.SelectInput<T>>(query: Query.DeleteManyInput<T, S>): Promise<Query.DeleteManyResult<T, S>>;
|
|
44
|
-
}
|
|
@@ -1,9 +1,15 @@
|
|
|
1
1
|
import type { Service } from '@ez4/common';
|
|
2
2
|
import type { LinkedVariables } from '@ez4/project/library';
|
|
3
3
|
import type { StreamChange } from './streams.js';
|
|
4
|
-
import type { TableTypes } from './
|
|
4
|
+
import type { TableTypes } from './table.js';
|
|
5
5
|
import type { Client } from './client.js';
|
|
6
6
|
import type { Index } from './indexes.js';
|
|
7
|
+
/**
|
|
8
|
+
* Given a database service `T`, it returns all its table.
|
|
9
|
+
*/
|
|
10
|
+
export type DatabaseTables<T> = T extends {
|
|
11
|
+
tables: infer U;
|
|
12
|
+
} ? U : [];
|
|
7
13
|
/**
|
|
8
14
|
* Provide all contracts for a self-managed database service.
|
|
9
15
|
*/
|
|
@@ -13,11 +19,16 @@ export declare namespace Database {
|
|
|
13
19
|
*/
|
|
14
20
|
interface Schema {
|
|
15
21
|
}
|
|
22
|
+
/**
|
|
23
|
+
* Table relations.
|
|
24
|
+
*/
|
|
25
|
+
interface Relations {
|
|
26
|
+
}
|
|
16
27
|
/**
|
|
17
28
|
* Table indexes.
|
|
18
29
|
*/
|
|
19
30
|
type Indexes<T extends Schema = Schema> = {
|
|
20
|
-
[P in
|
|
31
|
+
[P in keyof T]?: Index;
|
|
21
32
|
};
|
|
22
33
|
/**
|
|
23
34
|
* Table stream.
|
|
@@ -55,6 +66,10 @@ export declare namespace Database {
|
|
|
55
66
|
* Table schema.
|
|
56
67
|
*/
|
|
57
68
|
schema: T;
|
|
69
|
+
/**
|
|
70
|
+
* Table relations.
|
|
71
|
+
*/
|
|
72
|
+
relations?: Relations;
|
|
58
73
|
/**
|
|
59
74
|
* Table indexes.
|
|
60
75
|
*/
|
|
@@ -1,59 +1,46 @@
|
|
|
1
1
|
import type { ArrayRest, IsArrayEmpty } from '@ez4/utils';
|
|
2
|
-
import type { DatabaseTables } from './
|
|
3
|
-
import type { Database } from './database.js';
|
|
2
|
+
import type { Database, DatabaseTables } from './database.js';
|
|
4
3
|
/**
|
|
5
4
|
* All supported index types.
|
|
6
5
|
*/
|
|
7
6
|
export declare const enum Index {
|
|
8
7
|
Primary = "primary",
|
|
9
8
|
Secondary = "secondary",
|
|
9
|
+
Unique = "unique",
|
|
10
10
|
TTL = "ttl"
|
|
11
11
|
}
|
|
12
|
-
/**
|
|
13
|
-
* An object containing only indexes.
|
|
14
|
-
*/
|
|
15
|
-
export type Indexes = {
|
|
16
|
-
[name: string]: Index;
|
|
17
|
-
};
|
|
18
12
|
/**
|
|
19
13
|
* Given an index name `T`, it produces the decomposed index names.
|
|
20
14
|
*/
|
|
21
15
|
export type DecomposeIndexName<T> = T extends `${infer L}:${infer R}` ? L | DecomposeIndexName<R> : T;
|
|
22
16
|
/**
|
|
23
|
-
* Given an index object `T`, it produces
|
|
17
|
+
* Given an index object `T`, it produces an object containing only primary indexes.
|
|
24
18
|
*/
|
|
25
|
-
export type PrimaryIndexes<T> = {
|
|
26
|
-
[P in keyof T as T[P]
|
|
19
|
+
export type PrimaryIndexes<T extends Database.Indexes> = {
|
|
20
|
+
[P in keyof T as Index.Primary extends T[P] ? P : never]: T[P];
|
|
27
21
|
};
|
|
28
22
|
/**
|
|
29
|
-
* Given an index object `T`, it produces
|
|
23
|
+
* Given an index object `T`, it produces an object containing only secondary indexes.
|
|
30
24
|
*/
|
|
31
|
-
export type SecondaryIndexes<T> = {
|
|
32
|
-
[P in keyof T as T[P]
|
|
25
|
+
export type SecondaryIndexes<T extends Database.Indexes> = {
|
|
26
|
+
[P in keyof T as Index.Secondary | Index.Unique | Index.TTL extends T[P] ? P : never]: T[P];
|
|
33
27
|
};
|
|
34
28
|
/**
|
|
35
|
-
* Given a database service `T`, it produces an object
|
|
29
|
+
* Given a database service `T`, it produces an object with all tables containing indexes.
|
|
36
30
|
*/
|
|
37
|
-
export type
|
|
31
|
+
export type IndexedTables<T extends Database.Service<any>> = MergeIndexes<DatabaseTables<T>>;
|
|
38
32
|
/**
|
|
39
33
|
* Given a list of tables with indexes `T`, it produces another object containing all the
|
|
40
|
-
* table indexes
|
|
34
|
+
* table indexes.
|
|
41
35
|
*/
|
|
42
|
-
type MergeIndexes<T extends Database.Table[]> = IsArrayEmpty<T> extends
|
|
36
|
+
type MergeIndexes<T extends Database.Table[]> = IsArrayEmpty<T> extends false ? TableIndexes<T[0]> & MergeIndexes<ArrayRest<T>> : {};
|
|
43
37
|
/**
|
|
44
|
-
* Given a database table `T`, it produces
|
|
38
|
+
* Given a database table `T`, it produces an object containing all the table indexes.
|
|
45
39
|
*/
|
|
46
|
-
type
|
|
40
|
+
type TableIndexes<T> = T extends {
|
|
47
41
|
name: infer N;
|
|
48
42
|
indexes: infer I;
|
|
49
|
-
} ? N extends string ? {
|
|
50
|
-
[P in N]:
|
|
51
|
-
} : {} : {};
|
|
52
|
-
/**
|
|
53
|
-
* Given a union of indexes `U`, it produces another object containing the index type `T`
|
|
54
|
-
* for each index within the union.
|
|
55
|
-
*/
|
|
56
|
-
type IndexProperties<T extends Index, U extends string> = U extends never ? {} : {
|
|
57
|
-
[P in U]: T;
|
|
58
|
-
};
|
|
43
|
+
} ? N extends string ? I extends Database.Indexes ? {
|
|
44
|
+
[P in N]: I;
|
|
45
|
+
} : {} : {} : {};
|
|
59
46
|
export {};
|
package/dist/services/order.d.ts
CHANGED
package/dist/services/query.d.ts
CHANGED
|
@@ -1,43 +1,44 @@
|
|
|
1
|
-
import type {
|
|
2
|
-
import type {
|
|
1
|
+
import type { DecomposeIndexName, PrimaryIndexes } from './indexes.js';
|
|
2
|
+
import type { Relations } from './relations.js';
|
|
3
3
|
import type { Database } from './database.js';
|
|
4
4
|
import type { Order } from './order.js';
|
|
5
|
+
import type { AnyObject, PartialProperties, PartialObject, DeepPartial, FlatObject, IsObject } from '@ez4/utils';
|
|
5
6
|
/**
|
|
6
7
|
* Query builder types.
|
|
7
8
|
*/
|
|
8
9
|
export declare namespace Query {
|
|
9
|
-
type InsertOneInput<T extends Database.Schema> = {
|
|
10
|
-
data: T;
|
|
10
|
+
type InsertOneInput<T extends Database.Schema, I extends Database.Indexes<T>, R extends Relations> = {
|
|
11
|
+
data: T | (Omit<T, DecomposeIndexName<keyof I>> & R);
|
|
11
12
|
};
|
|
12
|
-
type UpdateOneInput<T extends Database.Schema, S extends Database.Schema, I extends Indexes> = {
|
|
13
|
+
type UpdateOneInput<T extends Database.Schema, S extends Database.Schema, I extends Database.Indexes<T>, R extends Relations> = {
|
|
13
14
|
select?: S;
|
|
14
|
-
data: DeepPartial<T
|
|
15
|
+
data: DeepPartial<T | FlatObject<Omit<T, DecomposeIndexName<keyof I>> & R>>;
|
|
15
16
|
where: WhereInput<T, I>;
|
|
16
17
|
};
|
|
17
|
-
type FindOneInput<T extends Database.Schema, S extends Database.Schema, I extends Indexes
|
|
18
|
+
type FindOneInput<T extends Database.Schema, S extends Database.Schema, I extends Database.Indexes<T>> = {
|
|
18
19
|
select: S;
|
|
19
20
|
where: WhereInput<T, I>;
|
|
20
21
|
};
|
|
21
|
-
type UpsertOneInput<T extends Database.Schema, S extends Database.Schema, I extends Indexes> = {
|
|
22
|
+
type UpsertOneInput<T extends Database.Schema, S extends Database.Schema, I extends Database.Indexes<T>, R extends Relations> = {
|
|
22
23
|
select?: S;
|
|
23
|
-
insert: T;
|
|
24
|
-
update: DeepPartial<T
|
|
24
|
+
insert: T | (Omit<T, DecomposeIndexName<keyof I>> & R);
|
|
25
|
+
update: DeepPartial<T | FlatObject<Omit<T, DecomposeIndexName<keyof I>> & R>>;
|
|
25
26
|
where: WhereInput<T, I>;
|
|
26
27
|
};
|
|
27
|
-
type DeleteOneInput<T extends Database.Schema, S extends Database.Schema, I extends Indexes
|
|
28
|
+
type DeleteOneInput<T extends Database.Schema, S extends Database.Schema, I extends Database.Indexes<T>> = {
|
|
28
29
|
select?: S;
|
|
29
30
|
where: WhereInput<T, I>;
|
|
30
31
|
};
|
|
31
32
|
type InsertManyInput<T extends Database.Schema> = {
|
|
32
33
|
data: T[];
|
|
33
34
|
};
|
|
34
|
-
type UpdateManyInput<T extends Database.Schema, S extends Database.Schema> = {
|
|
35
|
+
type UpdateManyInput<T extends Database.Schema, S extends Database.Schema, I extends Database.Indexes<T>, R extends Relations> = {
|
|
35
36
|
select?: S;
|
|
36
|
-
data: DeepPartial<T
|
|
37
|
+
data: DeepPartial<T | FlatObject<Omit<T, DecomposeIndexName<keyof I>> & R>>;
|
|
37
38
|
where?: WhereInput<T>;
|
|
38
39
|
limit?: number;
|
|
39
40
|
};
|
|
40
|
-
type FindManyInput<T extends Database.Schema, S extends Database.Schema, I extends Indexes
|
|
41
|
+
type FindManyInput<T extends Database.Schema, S extends Database.Schema, I extends Database.Indexes<T>> = {
|
|
41
42
|
select: S;
|
|
42
43
|
where?: WhereInput<T>;
|
|
43
44
|
order?: OrderInput<I>;
|
|
@@ -50,37 +51,37 @@ export declare namespace Query {
|
|
|
50
51
|
limit?: number;
|
|
51
52
|
};
|
|
52
53
|
type InsertOneResult = void;
|
|
53
|
-
type UpdateOneResult<T extends Database.Schema, S extends AnyObject> =
|
|
54
|
-
type FindOneResult<T extends Database.Schema, S extends AnyObject> = Record<T, S> | undefined;
|
|
55
|
-
type UpsertOneResult<T extends Database.Schema, S extends AnyObject> =
|
|
56
|
-
type DeleteOneResult<T extends Database.Schema, S extends AnyObject> =
|
|
54
|
+
type UpdateOneResult<T extends Database.Schema, S extends AnyObject, R extends Relations> = Record<T, S, R> | undefined;
|
|
55
|
+
type FindOneResult<T extends Database.Schema, S extends AnyObject, R extends Relations> = Record<T, S, R> | undefined;
|
|
56
|
+
type UpsertOneResult<T extends Database.Schema, S extends AnyObject, R extends Relations> = Record<T, S, R> | undefined;
|
|
57
|
+
type DeleteOneResult<T extends Database.Schema, S extends AnyObject, R extends Relations> = Record<T, S, R> | undefined;
|
|
57
58
|
type InsertManyResult = void;
|
|
58
|
-
type UpdateManyResult<T extends Database.Schema, S extends AnyObject> = Record<T, S>[];
|
|
59
|
-
type FindManyResult<T extends Database.Schema, S extends AnyObject> = {
|
|
60
|
-
records: Record<T, S>[];
|
|
59
|
+
type UpdateManyResult<T extends Database.Schema, S extends AnyObject, R extends Relations> = Record<T, S, R>[];
|
|
60
|
+
type FindManyResult<T extends Database.Schema, S extends AnyObject, R extends Relations> = {
|
|
61
|
+
records: Record<T, S, R>[];
|
|
61
62
|
cursor?: number | string;
|
|
62
63
|
};
|
|
63
|
-
type DeleteManyResult<T extends Database.Schema, S extends AnyObject> = Record<T, S>[];
|
|
64
|
-
type Record<T extends Database.Schema, S extends AnyObject> = PartialObject<T, S, false>;
|
|
65
|
-
type SelectInput<T extends Database.Schema> = PartialProperties<T>;
|
|
66
|
-
type OrderInput<I extends Indexes> = {
|
|
67
|
-
[P in keyof I]?: Order;
|
|
64
|
+
type DeleteManyResult<T extends Database.Schema, S extends AnyObject, R extends Relations> = Record<T, S, R>[];
|
|
65
|
+
type Record<T extends Database.Schema, S extends AnyObject, R extends Relations> = PartialObject<T & R, S, false>;
|
|
66
|
+
type SelectInput<T extends Database.Schema, R extends Relations> = PartialProperties<T & R>;
|
|
67
|
+
type OrderInput<I extends Database.Indexes> = {
|
|
68
|
+
[P in DecomposeIndexName<keyof I>]?: Order;
|
|
68
69
|
};
|
|
69
|
-
type WhereInput<T extends Database.Schema, I extends Indexes =
|
|
70
|
-
type WhereRequiredFields<T extends Database.Schema, I extends Indexes
|
|
71
|
-
[P in keyof PrimaryIndexes<I
|
|
70
|
+
type WhereInput<T extends Database.Schema, I extends Database.Indexes<T> = {}> = WhereFields<T, I> & WhereNot<T, I> & WhereAnd<T, I> & WhereOr<T, I>;
|
|
71
|
+
type WhereRequiredFields<T extends Database.Schema, I extends Database.Indexes<T>> = {
|
|
72
|
+
[P in DecomposeIndexName<keyof PrimaryIndexes<I>>]: P extends keyof T ? IsObject<T[P]> extends true ? WhereFields<NonNullable<T[P]>, I> : T[P] | WhereOperations<T[P]> : never;
|
|
72
73
|
};
|
|
73
|
-
type WhereOptionalFields<T extends Database.Schema, I extends Indexes
|
|
74
|
-
[P in Exclude<keyof T, I
|
|
74
|
+
type WhereOptionalFields<T extends Database.Schema, I extends Database.Indexes<T>> = {
|
|
75
|
+
[P in Exclude<keyof T, DecomposeIndexName<keyof PrimaryIndexes<I>>>]?: IsObject<T[P]> extends true ? WhereFields<NonNullable<T[P]>, I> : T[P] | WhereOperations<T[P]>;
|
|
75
76
|
};
|
|
76
|
-
type WhereFields<T extends Database.Schema, I extends Indexes
|
|
77
|
-
type WhereNot<T extends Database.Schema, I extends Indexes
|
|
77
|
+
type WhereFields<T extends Database.Schema, I extends Database.Indexes<T>> = WhereRequiredFields<T, I> & WhereOptionalFields<T, I>;
|
|
78
|
+
type WhereNot<T extends Database.Schema, I extends Database.Indexes<T>> = {
|
|
78
79
|
NOT?: WhereInput<T, I> | WhereAnd<T, I> | WhereOr<T, I>;
|
|
79
80
|
};
|
|
80
|
-
type WhereAnd<T extends Database.Schema, I extends Indexes
|
|
81
|
+
type WhereAnd<T extends Database.Schema, I extends Database.Indexes<T>> = {
|
|
81
82
|
AND?: (WhereInput<T, I> | WhereOr<T, I> | WhereNot<T, I>)[];
|
|
82
83
|
};
|
|
83
|
-
type WhereOr<T extends Database.Schema, I extends Indexes
|
|
84
|
+
type WhereOr<T extends Database.Schema, I extends Database.Indexes<T>> = {
|
|
84
85
|
OR?: (WhereInput<T, I> | WhereAnd<T, I> | WhereNot<T, I>)[];
|
|
85
86
|
};
|
|
86
87
|
type WhereOperations<T> = WhereNegate<T> | WhereEqual<T> | WhereGreaterThan<T> | WhereGreaterThanOrEqual<T> | WhereLessThan<T> | WhereLessThanOrEqual<T> | WhereIn<T> | WhereBetween<T> | WhereIsMissing | WhereIsNull | WhereStartsWith | WhereContains;
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import type { ArrayRest, IsArrayEmpty, PropertyType } from '@ez4/utils';
|
|
2
|
+
import type { IndexedTables, PrimaryIndexes } from './indexes.js';
|
|
3
|
+
import type { Database, DatabaseTables } from './database.js';
|
|
4
|
+
import type { TableSchemas } from './schemas.js';
|
|
5
|
+
/**
|
|
6
|
+
* Internal relation type.
|
|
7
|
+
*/
|
|
8
|
+
export type Relations = Record<string, unknown>;
|
|
9
|
+
/**
|
|
10
|
+
* Given a relation source name `T`, it produces the source table name.
|
|
11
|
+
*/
|
|
12
|
+
export type RelationSourceTable<T> = T extends `${infer U}:${string}` ? U : never;
|
|
13
|
+
/**
|
|
14
|
+
* Given a relation source name `T`, it produces the source column name.
|
|
15
|
+
*/
|
|
16
|
+
export type RelationSourceColumn<T> = T extends `${string}:${infer U}` ? U : never;
|
|
17
|
+
/**
|
|
18
|
+
* Given a relation target name `T`, it produces the target column name.
|
|
19
|
+
*/
|
|
20
|
+
export type RelationTargetColumn<T> = T extends `${infer U}@${string}` ? U : never;
|
|
21
|
+
/**
|
|
22
|
+
* Given a relation target name `T`, it produces the target alias name.
|
|
23
|
+
*/
|
|
24
|
+
export type RelationTargetAlias<T> = T extends `${string}@${infer U}` ? U : never;
|
|
25
|
+
/**
|
|
26
|
+
* Given a database service `T`, it produces an object with all relation tables.
|
|
27
|
+
*/
|
|
28
|
+
export type RelationTables<T extends Database.Service<any>> = MergeRelations<DatabaseTables<T>, TableSchemas<T>, IndexedTables<T>>;
|
|
29
|
+
/**
|
|
30
|
+
* Given a list of tables with relations `T`, it produces an object containing all the
|
|
31
|
+
* relation tables.
|
|
32
|
+
*/
|
|
33
|
+
type MergeRelations<T extends Database.Table[], S extends Record<string, Database.Schema>, I extends Record<string, Database.Indexes>> = IsArrayEmpty<T> extends false ? TableRelation<T[0], S, I> & MergeRelations<ArrayRest<T>, S, I> : {};
|
|
34
|
+
/**
|
|
35
|
+
* Given a database table `T`, it produces an object containing all its relations.
|
|
36
|
+
*/
|
|
37
|
+
type TableRelation<T, S extends Record<string, Database.Schema>, I extends Record<string, Database.Indexes>> = T extends {
|
|
38
|
+
name: infer N;
|
|
39
|
+
relations: infer R;
|
|
40
|
+
} ? N extends string ? R extends Relations ? {
|
|
41
|
+
[P in N]: RequiredRelationSchemas<PropertyType<N, S>, S, I, R> & OptionalRelationSchemas<PropertyType<N, S>, S, I, R>;
|
|
42
|
+
} : {} : {} : {};
|
|
43
|
+
/**
|
|
44
|
+
* Produce an object containing only required relation schemas.
|
|
45
|
+
*/
|
|
46
|
+
type RequiredRelationSchemas<T extends Database.Schema, S extends Record<string, Database.Schema>, I extends Record<string, Database.Indexes>, R extends Relations> = {
|
|
47
|
+
[C in keyof R as IsOptionalRelation<C, R[C], T, I> extends true ? never : RelationTargetAlias<R[C]>]: RelationSchema<C, S, I>;
|
|
48
|
+
};
|
|
49
|
+
/**
|
|
50
|
+
* Produce an object containing only optional relation schemas.
|
|
51
|
+
*/
|
|
52
|
+
type OptionalRelationSchemas<T extends Database.Schema, S extends Record<string, Database.Schema>, I extends Record<string, Database.Indexes>, R extends Relations> = {
|
|
53
|
+
[C in keyof R as IsOptionalRelation<C, R[C], T, I> extends true ? RelationTargetAlias<R[C]> : never]?: RelationSchema<C, S, I>;
|
|
54
|
+
};
|
|
55
|
+
/**
|
|
56
|
+
* Check whether a relation is optional or not.
|
|
57
|
+
*/
|
|
58
|
+
type IsOptionalRelation<C, V, S extends Database.Schema, I extends Record<string, Database.Indexes>> = RelationSourceColumn<C> extends keyof PrimaryIndexes<PropertyType<RelationSourceTable<C>, I>> ? undefined extends PropertyType<RelationTargetColumn<V>, S> ? true : false : true;
|
|
59
|
+
/**
|
|
60
|
+
* Produce a relation schema according to its indexation.
|
|
61
|
+
*/
|
|
62
|
+
type RelationSchema<C, S extends Record<string, Database.Schema>, I extends Record<string, Database.Indexes>> = RelationSourceColumn<C> extends keyof PrimaryIndexes<PropertyType<RelationSourceTable<C>, I>> ? PropertyType<RelationSourceTable<C>, S> : Omit<PropertyType<RelationSourceTable<C>, S>, RelationSourceColumn<C>>[];
|
|
63
|
+
export {};
|
|
@@ -1,22 +1,20 @@
|
|
|
1
1
|
import type { ArrayRest, IsArrayEmpty } from '@ez4/utils';
|
|
2
|
-
import type { DatabaseTables } from './
|
|
3
|
-
import type { Database } from './database.js';
|
|
2
|
+
import type { Database, DatabaseTables } from './database.js';
|
|
4
3
|
/**
|
|
5
4
|
* Given a database service `T`, it produces an object containing all tables with schemas.
|
|
6
5
|
*/
|
|
7
6
|
export type TableSchemas<T extends Database.Service<any>> = MergeTables<DatabaseTables<T>>;
|
|
8
7
|
/**
|
|
9
|
-
* Given a list of tables with schema `T`, it produces an object containing all schemas
|
|
10
|
-
* mapped by table name.
|
|
8
|
+
* Given a list of tables with schema `T`, it produces an object containing all schemas.
|
|
11
9
|
*/
|
|
12
|
-
type MergeTables<T extends Database.Table[]> = IsArrayEmpty<T> extends
|
|
10
|
+
type MergeTables<T extends Database.Table[]> = IsArrayEmpty<T> extends false ? TableSchema<T[0]> & MergeTables<ArrayRest<T>> : {};
|
|
13
11
|
/**
|
|
14
|
-
* Given a database table `T`, it produces an object containing the
|
|
12
|
+
* Given a database table `T`, it produces an object containing the table schema.
|
|
15
13
|
*/
|
|
16
14
|
type TableSchema<T> = T extends {
|
|
17
15
|
name: infer N;
|
|
18
16
|
schema: infer S;
|
|
19
|
-
} ? N extends string ? {
|
|
17
|
+
} ? N extends string ? S extends Database.Schema ? {
|
|
20
18
|
[P in N]: S;
|
|
21
|
-
} : {} : {};
|
|
19
|
+
} : {} : {} : {};
|
|
22
20
|
export {};
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
import type { AnyObject, ArrayRest, IsArrayEmpty, IsAny, PropertyExists } from '@ez4/utils';
|
|
2
|
+
import type { Relations, RelationTables } from './relations.js';
|
|
3
|
+
import type { IndexedTables } from './indexes.js';
|
|
4
|
+
import type { TableSchemas } from './schemas.js';
|
|
5
|
+
import type { Database } from './database.js';
|
|
6
|
+
import type { Query } from './query.js';
|
|
7
|
+
/**
|
|
8
|
+
* Given an array of schemas `T`, it returns an union of `Database.Table` for each schema.
|
|
9
|
+
*/
|
|
10
|
+
export type TableTypes<T extends Database.Schema[]> = IsAny<T> extends true ? any : IsArrayEmpty<T> extends true ? Database.Table<Database.Schema> : Database.Table<T[0]> | TableTypes<ArrayRest<T>>;
|
|
11
|
+
/**
|
|
12
|
+
* Given an indexed table `T` and a property `P`, it returns all the indexes corresponding
|
|
13
|
+
* to the given property.
|
|
14
|
+
*/
|
|
15
|
+
export type TableIndex<P, T extends AnyObject> = PropertyExists<P, T> extends true ? (T[P] extends Database.Indexes ? T[P] : {}) : {};
|
|
16
|
+
/**
|
|
17
|
+
* Given a table `T` and a property `P`, it returns all the relations corresponding
|
|
18
|
+
* to the given property.
|
|
19
|
+
*/
|
|
20
|
+
export type TableRelation<P, T extends AnyObject> = PropertyExists<P, T> extends true ? (T[P] extends Relations ? T[P] : {}) : {};
|
|
21
|
+
/**
|
|
22
|
+
* Given a database service `T`, it returns all table clients.
|
|
23
|
+
*/
|
|
24
|
+
export type TableClients<T extends Database.Service<any>> = {
|
|
25
|
+
[P in keyof TableSchemas<T>]: TableSchemas<T>[P] extends Database.Schema ? Table<TableSchemas<T>[P], TableIndex<P, IndexedTables<T>>, TableRelation<P, RelationTables<T>>> : never;
|
|
26
|
+
};
|
|
27
|
+
/**
|
|
28
|
+
* Table client.
|
|
29
|
+
*/
|
|
30
|
+
export interface Table<T extends Database.Schema, I extends Database.Indexes<T>, R extends Relations> {
|
|
31
|
+
/**
|
|
32
|
+
* Insert one record into the database.
|
|
33
|
+
*
|
|
34
|
+
* @param query Input query.
|
|
35
|
+
*/
|
|
36
|
+
insertOne(query: Query.InsertOneInput<T, I, R>): Promise<Query.InsertOneResult>;
|
|
37
|
+
/**
|
|
38
|
+
* Find one database record.
|
|
39
|
+
*
|
|
40
|
+
* @param query Input query.
|
|
41
|
+
*/
|
|
42
|
+
findOne<S extends Query.SelectInput<T, R>>(query: Query.FindOneInput<T, S, I>): Promise<Query.FindOneResult<T, S, R>>;
|
|
43
|
+
/**
|
|
44
|
+
* Update one database record.
|
|
45
|
+
*
|
|
46
|
+
* @param query Input query.
|
|
47
|
+
*/
|
|
48
|
+
updateOne<S extends Query.SelectInput<T, R>>(query: Query.UpdateOneInput<T, S, I, R>): Promise<Query.UpdateOneResult<T, S, R>>;
|
|
49
|
+
/**
|
|
50
|
+
* Try to insert a database record, and if it already exists, perform an update instead.
|
|
51
|
+
*
|
|
52
|
+
* @param query Input query.
|
|
53
|
+
*/
|
|
54
|
+
upsertOne<S extends Query.SelectInput<T, R>>(query: Query.UpsertOneInput<T, S, I, R>): Promise<Query.UpsertOneResult<T, S, R>>;
|
|
55
|
+
/**
|
|
56
|
+
* Delete one database record.
|
|
57
|
+
*
|
|
58
|
+
* @param query Input query.
|
|
59
|
+
*/
|
|
60
|
+
deleteOne<S extends Query.SelectInput<T, R>>(query: Query.DeleteOneInput<T, S, I>): Promise<Query.DeleteOneResult<T, S, R>>;
|
|
61
|
+
/**
|
|
62
|
+
* Insert multiple records into the database.
|
|
63
|
+
*
|
|
64
|
+
* @param query Input query.
|
|
65
|
+
*/
|
|
66
|
+
insertMany(query: Query.InsertManyInput<T>): Promise<Query.InsertManyResult>;
|
|
67
|
+
/**
|
|
68
|
+
* Find multiple database records.
|
|
69
|
+
*
|
|
70
|
+
* @param query Input query.
|
|
71
|
+
*/
|
|
72
|
+
findMany<S extends Query.SelectInput<T, R>>(query: Query.FindManyInput<T, S, I>): Promise<Query.FindManyResult<T, S, R>>;
|
|
73
|
+
/**
|
|
74
|
+
* Update multiple database records.
|
|
75
|
+
*
|
|
76
|
+
* @param query Input query.
|
|
77
|
+
*/
|
|
78
|
+
updateMany<S extends Query.SelectInput<T, R>>(query: Query.UpdateManyInput<T, S, I, R>): Promise<Query.UpdateManyResult<T, S, R>>;
|
|
79
|
+
/**
|
|
80
|
+
* Delete multiple database records.
|
|
81
|
+
*
|
|
82
|
+
* @param query Input query.
|
|
83
|
+
*/
|
|
84
|
+
deleteMany<S extends Query.SelectInput<T, R>>(query: Query.DeleteManyInput<T, S>): Promise<Query.DeleteManyResult<T, S, R>>;
|
|
85
|
+
}
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { Relations, RelationTables } from './relations.js';
|
|
2
|
+
import type { TableIndex, TableRelation } from './table.js';
|
|
3
|
+
import type { IndexedTables } from './indexes.js';
|
|
2
4
|
import type { TableSchemas } from './schemas.js';
|
|
3
5
|
import type { Database } from './database.js';
|
|
4
6
|
import type { Query } from './query.js';
|
|
@@ -11,17 +13,17 @@ export declare namespace Transaction {
|
|
|
11
13
|
*/
|
|
12
14
|
export type WriteOperations<T extends Database.Service<any>> = {
|
|
13
15
|
[P in keyof TableSchemas<T>]?: TableSchemas<T>[P] extends Database.Schema ? {
|
|
14
|
-
[alias: string]: InsertOperation<TableSchemas<T>[P]
|
|
16
|
+
[alias: string]: InsertOperation<TableSchemas<T>[P], TableIndex<P, IndexedTables<T>>, TableRelation<P, RelationTables<T>>> | UpdateOperation<TableSchemas<T>[P], TableIndex<P, IndexedTables<T>>, TableRelation<P, RelationTables<T>>> | DeleteOperation<TableSchemas<T>[P], TableIndex<P, IndexedTables<T>>, TableRelation<P, RelationTables<T>>>;
|
|
15
17
|
} : never;
|
|
16
18
|
};
|
|
17
|
-
type InsertOperation<T extends Database.Schema> = {
|
|
18
|
-
insert: Query.InsertOneInput<T>;
|
|
19
|
+
type InsertOperation<T extends Database.Schema, I extends Database.Indexes<T>, R extends Relations> = {
|
|
20
|
+
insert: Query.InsertOneInput<T, I, R>;
|
|
19
21
|
};
|
|
20
|
-
type UpdateOperation<T extends Database.Schema, I extends Indexes> = {
|
|
21
|
-
update: Omit<Query.UpdateOneInput<T, Query.SelectInput<T>, I>, 'select'>;
|
|
22
|
+
type UpdateOperation<T extends Database.Schema, I extends Database.Indexes<T>, R extends Relations> = {
|
|
23
|
+
update: Omit<Query.UpdateOneInput<T, Query.SelectInput<T, R>, I, R>, 'select'>;
|
|
22
24
|
};
|
|
23
|
-
type DeleteOperation<T extends Database.Schema, I extends Indexes> = {
|
|
24
|
-
delete: Omit<Query.DeleteOneInput<T, Query.SelectInput<T>, I>, 'select'>;
|
|
25
|
+
type DeleteOperation<T extends Database.Schema, I extends Database.Indexes<T>, R extends Relations> = {
|
|
26
|
+
delete: Omit<Query.DeleteOneInput<T, Query.SelectInput<T, R>, I>, 'select'>;
|
|
25
27
|
};
|
|
26
28
|
export {};
|
|
27
29
|
}
|
package/dist/types/indexes.d.ts
CHANGED
package/dist/types/table.d.ts
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
|
+
import type { TableRelation } from './relations.js';
|
|
2
|
+
import type { TableIndex } from './indexes.js';
|
|
1
3
|
import type { TableSchema } from './schema.js';
|
|
2
|
-
import type { TableIndexes } from './indexes.js';
|
|
3
4
|
import type { TableStream } from './stream.js';
|
|
4
5
|
export type DatabaseTable = {
|
|
5
6
|
name: string;
|
|
6
7
|
schema: TableSchema;
|
|
7
|
-
|
|
8
|
+
relations?: TableRelation[];
|
|
9
|
+
indexes: TableIndex[];
|
|
8
10
|
stream?: TableStream;
|
|
9
11
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ez4/database",
|
|
3
3
|
"description": "EZ4: Components to build database services",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.9.0",
|
|
5
5
|
"author": "Silas B.",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"type": "module",
|
|
@@ -42,12 +42,12 @@
|
|
|
42
42
|
"live:publish": "npm run test && npm publish --access public"
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
|
45
|
-
"@ez4/project": "^0.
|
|
45
|
+
"@ez4/project": "^0.9.0"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@ez4/common": "^0.
|
|
49
|
-
"@ez4/reflection": "^0.
|
|
50
|
-
"@ez4/schema": "^0.
|
|
51
|
-
"@ez4/utils": "^0.
|
|
48
|
+
"@ez4/common": "^0.9.0",
|
|
49
|
+
"@ez4/reflection": "^0.9.0",
|
|
50
|
+
"@ez4/schema": "^0.9.0",
|
|
51
|
+
"@ez4/utils": "^0.9.0"
|
|
52
52
|
}
|
|
53
53
|
}
|