@atscript/db-postgres 0.1.109 → 0.1.111
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/plugin.cjs +2 -0
- package/dist/plugin.mjs +2 -0
- package/package.json +8 -8
package/dist/plugin.cjs
CHANGED
|
@@ -17,6 +17,7 @@ const annotations = {
|
|
|
17
17
|
type: new _atscript_core.AnnotationSpec({
|
|
18
18
|
description: "Overrides the native PostgreSQL column type.\n\n```atscript\n@db.pg.type \"CITEXT\"\nname: string\n```",
|
|
19
19
|
nodeType: ["prop"],
|
|
20
|
+
passedWhenReferred: false,
|
|
20
21
|
multiple: false,
|
|
21
22
|
argument: {
|
|
22
23
|
name: "type",
|
|
@@ -37,6 +38,7 @@ const annotations = {
|
|
|
37
38
|
collate: new _atscript_core.AnnotationSpec({
|
|
38
39
|
description: "Specifies a native PostgreSQL collation (overrides portable `@db.column.collate`).\n\n```atscript\n@db.pg.collate \"tr-x-icu\"\nname: string\n```",
|
|
39
40
|
nodeType: ["interface", "prop"],
|
|
41
|
+
passedWhenReferred: false,
|
|
40
42
|
multiple: false,
|
|
41
43
|
argument: {
|
|
42
44
|
name: "collation",
|
package/dist/plugin.mjs
CHANGED
|
@@ -13,6 +13,7 @@ const annotations = {
|
|
|
13
13
|
type: new AnnotationSpec({
|
|
14
14
|
description: "Overrides the native PostgreSQL column type.\n\n```atscript\n@db.pg.type \"CITEXT\"\nname: string\n```",
|
|
15
15
|
nodeType: ["prop"],
|
|
16
|
+
passedWhenReferred: false,
|
|
16
17
|
multiple: false,
|
|
17
18
|
argument: {
|
|
18
19
|
name: "type",
|
|
@@ -33,6 +34,7 @@ const annotations = {
|
|
|
33
34
|
collate: new AnnotationSpec({
|
|
34
35
|
description: "Specifies a native PostgreSQL collation (overrides portable `@db.column.collate`).\n\n```atscript\n@db.pg.collate \"tr-x-icu\"\nname: string\n```",
|
|
35
36
|
nodeType: ["interface", "prop"],
|
|
37
|
+
passedWhenReferred: false,
|
|
36
38
|
multiple: false,
|
|
37
39
|
argument: {
|
|
38
40
|
name: "collation",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atscript/db-postgres",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.111",
|
|
4
4
|
"description": "PostgreSQL adapter for @atscript/db with pg (node-postgres) driver support.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"atscript",
|
|
@@ -43,20 +43,20 @@
|
|
|
43
43
|
"access": "public"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@atscript/core": "^0.1.
|
|
47
|
-
"@atscript/typescript": "^0.1.
|
|
46
|
+
"@atscript/core": "^0.1.79",
|
|
47
|
+
"@atscript/typescript": "^0.1.79",
|
|
48
48
|
"@types/pg": "^8.11.0",
|
|
49
49
|
"@uniqu/core": "^0.1.6",
|
|
50
50
|
"pg": "^8.13.0",
|
|
51
|
-
"unplugin-atscript": "^0.1.
|
|
51
|
+
"unplugin-atscript": "^0.1.79"
|
|
52
52
|
},
|
|
53
53
|
"peerDependencies": {
|
|
54
|
-
"@atscript/core": "^0.1.
|
|
55
|
-
"@atscript/typescript": "^0.1.
|
|
54
|
+
"@atscript/core": "^0.1.79",
|
|
55
|
+
"@atscript/typescript": "^0.1.79",
|
|
56
56
|
"@uniqu/core": "^0.1.6",
|
|
57
57
|
"pg": ">=8.0.0",
|
|
58
|
-
"@atscript/db": "^0.1.
|
|
59
|
-
"@atscript/db-sql-tools": "^0.1.
|
|
58
|
+
"@atscript/db": "^0.1.111",
|
|
59
|
+
"@atscript/db-sql-tools": "^0.1.111"
|
|
60
60
|
},
|
|
61
61
|
"peerDependenciesMeta": {
|
|
62
62
|
"pg": {
|