@aeriajs/common 0.0.14 → 0.0.15
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/schema.d.ts +2 -2
- package/dist/schema.js +2 -2
- package/dist/schema.mjs +6 -2
- package/package.json +2 -2
package/dist/schema.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ export declare const leftSchema: <const TObject extends Property>(object: TObjec
|
|
|
4
4
|
type: "object";
|
|
5
5
|
properties: {
|
|
6
6
|
_tag: {
|
|
7
|
-
|
|
7
|
+
enum: string[];
|
|
8
8
|
};
|
|
9
9
|
value: Property;
|
|
10
10
|
};
|
|
@@ -13,7 +13,7 @@ export declare const rightSchema: <const TObject extends Property>(object: TObje
|
|
|
13
13
|
type: "object";
|
|
14
14
|
properties: {
|
|
15
15
|
_tag: {
|
|
16
|
-
|
|
16
|
+
enum: string[];
|
|
17
17
|
};
|
|
18
18
|
value: Property;
|
|
19
19
|
};
|
package/dist/schema.js
CHANGED
|
@@ -53,7 +53,7 @@ const leftSchema = (object) => {
|
|
|
53
53
|
type: 'object',
|
|
54
54
|
properties: {
|
|
55
55
|
_tag: {
|
|
56
|
-
|
|
56
|
+
enum: ['Left'],
|
|
57
57
|
},
|
|
58
58
|
value: object,
|
|
59
59
|
},
|
|
@@ -65,7 +65,7 @@ const rightSchema = (object) => {
|
|
|
65
65
|
type: 'object',
|
|
66
66
|
properties: {
|
|
67
67
|
_tag: {
|
|
68
|
-
|
|
68
|
+
enum: ['Right'],
|
|
69
69
|
},
|
|
70
70
|
value: object,
|
|
71
71
|
},
|
package/dist/schema.mjs
CHANGED
|
@@ -53,7 +53,9 @@ export var leftSchema = function(object) {
|
|
|
53
53
|
type: "object",
|
|
54
54
|
properties: {
|
|
55
55
|
_tag: {
|
|
56
|
-
|
|
56
|
+
enum: [
|
|
57
|
+
"Left"
|
|
58
|
+
]
|
|
57
59
|
},
|
|
58
60
|
value: object
|
|
59
61
|
}
|
|
@@ -64,7 +66,9 @@ export var rightSchema = function(object) {
|
|
|
64
66
|
type: "object",
|
|
65
67
|
properties: {
|
|
66
68
|
_tag: {
|
|
67
|
-
|
|
69
|
+
enum: [
|
|
70
|
+
"Right"
|
|
71
|
+
]
|
|
68
72
|
},
|
|
69
73
|
value: object
|
|
70
74
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aeriajs/common",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.15",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
}
|
|
28
28
|
},
|
|
29
29
|
"peerDependencies": {
|
|
30
|
-
"@aeriajs/types": "^0.0.
|
|
30
|
+
"@aeriajs/types": "^0.0.14",
|
|
31
31
|
"bson": "^5.4.0"
|
|
32
32
|
},
|
|
33
33
|
"scripts": {
|