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