@arch-cadre/sample-module 0.0.1 → 1.0.2
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 +26 -20
- package/locales/pl/global.json +11 -0
- package/manifest.json +1 -1
- package/package.json +8 -8
package/dist/schema.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ export declare const sampleTable: import("drizzle-orm/pg-core").PgTableWithColum
|
|
|
2
2
|
name: "sample";
|
|
3
3
|
schema: undefined;
|
|
4
4
|
columns: {
|
|
5
|
-
id: import("drizzle-orm/pg-core").
|
|
5
|
+
id: import("drizzle-orm/pg-core").PgColumn<{
|
|
6
6
|
name: string;
|
|
7
7
|
tableName: "sample";
|
|
8
8
|
dataType: "string";
|
|
@@ -10,14 +10,15 @@ export declare const sampleTable: import("drizzle-orm/pg-core").PgTableWithColum
|
|
|
10
10
|
driverParam: string;
|
|
11
11
|
notNull: true;
|
|
12
12
|
hasDefault: true;
|
|
13
|
-
isPrimaryKey:
|
|
13
|
+
isPrimaryKey: true;
|
|
14
14
|
isAutoincrement: false;
|
|
15
|
-
hasRuntimeDefault:
|
|
16
|
-
enumValues:
|
|
15
|
+
hasRuntimeDefault: true;
|
|
16
|
+
enumValues: [string, ...string[]];
|
|
17
|
+
baseColumn: never;
|
|
17
18
|
identity: undefined;
|
|
18
19
|
generated: undefined;
|
|
19
|
-
}>;
|
|
20
|
-
userId: import("drizzle-orm/pg-core").
|
|
20
|
+
}, {}>;
|
|
21
|
+
userId: import("drizzle-orm/pg-core").PgColumn<{
|
|
21
22
|
name: string;
|
|
22
23
|
tableName: "sample";
|
|
23
24
|
dataType: "string";
|
|
@@ -28,11 +29,12 @@ export declare const sampleTable: import("drizzle-orm/pg-core").PgTableWithColum
|
|
|
28
29
|
isPrimaryKey: false;
|
|
29
30
|
isAutoincrement: false;
|
|
30
31
|
hasRuntimeDefault: false;
|
|
31
|
-
enumValues:
|
|
32
|
+
enumValues: [string, ...string[]];
|
|
33
|
+
baseColumn: never;
|
|
32
34
|
identity: undefined;
|
|
33
35
|
generated: undefined;
|
|
34
|
-
}>;
|
|
35
|
-
createdAt: import("drizzle-orm/pg-core").
|
|
36
|
+
}, {}>;
|
|
37
|
+
createdAt: import("drizzle-orm/pg-core").PgColumn<{
|
|
36
38
|
name: string;
|
|
37
39
|
tableName: "sample";
|
|
38
40
|
dataType: "object date";
|
|
@@ -44,9 +46,10 @@ export declare const sampleTable: import("drizzle-orm/pg-core").PgTableWithColum
|
|
|
44
46
|
isAutoincrement: false;
|
|
45
47
|
hasRuntimeDefault: false;
|
|
46
48
|
enumValues: undefined;
|
|
49
|
+
baseColumn: never;
|
|
47
50
|
identity: undefined;
|
|
48
51
|
generated: undefined;
|
|
49
|
-
}>;
|
|
52
|
+
}, {}>;
|
|
50
53
|
};
|
|
51
54
|
dialect: "pg";
|
|
52
55
|
}>;
|
|
@@ -55,7 +58,7 @@ export declare const sampleSchema: {
|
|
|
55
58
|
name: "sample";
|
|
56
59
|
schema: undefined;
|
|
57
60
|
columns: {
|
|
58
|
-
id: import("drizzle-orm/pg-core").
|
|
61
|
+
id: import("drizzle-orm/pg-core").PgColumn<{
|
|
59
62
|
name: string;
|
|
60
63
|
tableName: "sample";
|
|
61
64
|
dataType: "string";
|
|
@@ -63,14 +66,15 @@ export declare const sampleSchema: {
|
|
|
63
66
|
driverParam: string;
|
|
64
67
|
notNull: true;
|
|
65
68
|
hasDefault: true;
|
|
66
|
-
isPrimaryKey:
|
|
69
|
+
isPrimaryKey: true;
|
|
67
70
|
isAutoincrement: false;
|
|
68
|
-
hasRuntimeDefault:
|
|
69
|
-
enumValues:
|
|
71
|
+
hasRuntimeDefault: true;
|
|
72
|
+
enumValues: [string, ...string[]];
|
|
73
|
+
baseColumn: never;
|
|
70
74
|
identity: undefined;
|
|
71
75
|
generated: undefined;
|
|
72
|
-
}>;
|
|
73
|
-
userId: import("drizzle-orm/pg-core").
|
|
76
|
+
}, {}>;
|
|
77
|
+
userId: import("drizzle-orm/pg-core").PgColumn<{
|
|
74
78
|
name: string;
|
|
75
79
|
tableName: "sample";
|
|
76
80
|
dataType: "string";
|
|
@@ -81,11 +85,12 @@ export declare const sampleSchema: {
|
|
|
81
85
|
isPrimaryKey: false;
|
|
82
86
|
isAutoincrement: false;
|
|
83
87
|
hasRuntimeDefault: false;
|
|
84
|
-
enumValues:
|
|
88
|
+
enumValues: [string, ...string[]];
|
|
89
|
+
baseColumn: never;
|
|
85
90
|
identity: undefined;
|
|
86
91
|
generated: undefined;
|
|
87
|
-
}>;
|
|
88
|
-
createdAt: import("drizzle-orm/pg-core").
|
|
92
|
+
}, {}>;
|
|
93
|
+
createdAt: import("drizzle-orm/pg-core").PgColumn<{
|
|
89
94
|
name: string;
|
|
90
95
|
tableName: "sample";
|
|
91
96
|
dataType: "object date";
|
|
@@ -97,9 +102,10 @@ export declare const sampleSchema: {
|
|
|
97
102
|
isAutoincrement: false;
|
|
98
103
|
hasRuntimeDefault: false;
|
|
99
104
|
enumValues: undefined;
|
|
105
|
+
baseColumn: never;
|
|
100
106
|
identity: undefined;
|
|
101
107
|
generated: undefined;
|
|
102
|
-
}>;
|
|
108
|
+
}, {}>;
|
|
103
109
|
};
|
|
104
110
|
dialect: "pg";
|
|
105
111
|
}>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Settings saved successfully": "Ustawienia zostały zapisane pomyślnie",
|
|
3
|
+
"Failed to save settings": "Nie udało się zapisać ustawień",
|
|
4
|
+
"Loading Sample Settings...": "Ładowanie przykładowych ustawień...",
|
|
5
|
+
"Sample Settings": "Przykładowe ustawienia",
|
|
6
|
+
"Configure your Sample Configuration.": "Skonfiguruj swoją przykładową konfigurację.",
|
|
7
|
+
"Default Var": "Domyślna zmienna",
|
|
8
|
+
"Save Configuration": "Zapisz konfigurację",
|
|
9
|
+
"General": "Ogólny",
|
|
10
|
+
"Sample Configuration": "Przykładowa konfiguracja"
|
|
11
|
+
}
|
package/manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arch-cadre/sample-module",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Sample module for Kryo framework",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -26,16 +26,16 @@
|
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@hookform/resolvers": "^3.10.0",
|
|
29
|
-
"@arch-cadre/ui": "^0.0.
|
|
30
|
-
"@arch-cadre/modules": "^0.0.
|
|
29
|
+
"@arch-cadre/ui": "^0.0.17",
|
|
30
|
+
"@arch-cadre/modules": "^0.0.17",
|
|
31
31
|
"lucide-react": "^0.475.0",
|
|
32
32
|
"react-hook-form": "^7.54.2",
|
|
33
|
-
"drizzle-orm": "1.0.0-beta.
|
|
33
|
+
"drizzle-orm": "1.0.0-beta.6-4414a19",
|
|
34
34
|
"sonner": "^2.0.7",
|
|
35
35
|
"zod": "^3.24.1"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"@arch-cadre/core": "^0.0.
|
|
38
|
+
"@arch-cadre/core": "^0.0.17",
|
|
39
39
|
"@types/react": "^19",
|
|
40
40
|
"next": "16.1.1",
|
|
41
41
|
"react": "^19.0.0",
|
|
@@ -43,9 +43,9 @@
|
|
|
43
43
|
"unbuild": "^3.6.1"
|
|
44
44
|
},
|
|
45
45
|
"peerDependencies": {
|
|
46
|
-
"@arch-cadre/core": "^0.0.
|
|
47
|
-
"@arch-cadre/intl": "^0.0.
|
|
48
|
-
"@arch-cadre/ui": "^0.0.
|
|
46
|
+
"@arch-cadre/core": "^0.0.17",
|
|
47
|
+
"@arch-cadre/intl": "^0.0.17",
|
|
48
|
+
"@arch-cadre/ui": "^0.0.17",
|
|
49
49
|
"next": ">=13.0.0",
|
|
50
50
|
"react": "^19.0.0"
|
|
51
51
|
},
|