@tailor-platform/create-sdk 1.2.4 → 1.2.6
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/CHANGELOG.md +4 -0
- package/package.json +5 -5
- package/templates/hello-world/package.json +5 -5
- package/templates/inventory-management/README.md +4 -21
- package/templates/inventory-management/package.json +5 -5
- package/templates/multi-application/package.json +5 -5
- package/templates/testing/package.json +5 -5
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tailor-platform/create-sdk",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.6",
|
|
4
4
|
"description": "A CLI tool to quickly create a new Tailor Platform SDK project",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -26,11 +26,11 @@
|
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@eslint/js": "9.39.2",
|
|
29
|
-
"@types/node": "24.10.
|
|
29
|
+
"@types/node": "24.10.7",
|
|
30
30
|
"eslint": "9.39.2",
|
|
31
|
-
"eslint-plugin-oxlint": "1.
|
|
32
|
-
"oxlint": "1.
|
|
33
|
-
"tsdown": "0.
|
|
31
|
+
"eslint-plugin-oxlint": "1.38.0",
|
|
32
|
+
"oxlint": "1.38.0",
|
|
33
|
+
"tsdown": "0.19.0",
|
|
34
34
|
"typescript": "5.9.3",
|
|
35
35
|
"typescript-eslint": "8.52.0"
|
|
36
36
|
},
|
|
@@ -12,12 +12,12 @@
|
|
|
12
12
|
},
|
|
13
13
|
"devDependencies": {
|
|
14
14
|
"@eslint/js": "9.39.2",
|
|
15
|
-
"@tailor-platform/sdk": "1.2.
|
|
16
|
-
"@types/node": "24.10.
|
|
15
|
+
"@tailor-platform/sdk": "1.2.6",
|
|
16
|
+
"@types/node": "24.10.7",
|
|
17
17
|
"eslint": "9.39.2",
|
|
18
|
-
"eslint-plugin-oxlint": "1.
|
|
19
|
-
"oxfmt": "0.
|
|
20
|
-
"oxlint": "1.
|
|
18
|
+
"eslint-plugin-oxlint": "1.38.0",
|
|
19
|
+
"oxfmt": "0.23.0",
|
|
20
|
+
"oxlint": "1.38.0",
|
|
21
21
|
"oxlint-tsgolint": "0.11.0",
|
|
22
22
|
"typescript": "5.9.3",
|
|
23
23
|
"typescript-eslint": "8.52.0"
|
|
@@ -88,10 +88,7 @@ mutation createCategory {
|
|
|
88
88
|
```graphql
|
|
89
89
|
mutation createProduct {
|
|
90
90
|
createProduct(
|
|
91
|
-
input: {
|
|
92
|
-
name: "Ergonomic Office Chair"
|
|
93
|
-
categoryId: "f7c9a16a-d69c-4570-a6b9-571f97f728fd"
|
|
94
|
-
}
|
|
91
|
+
input: { name: "Ergonomic Office Chair", categoryId: "f7c9a16a-d69c-4570-a6b9-571f97f728fd" }
|
|
95
92
|
) {
|
|
96
93
|
id
|
|
97
94
|
name
|
|
@@ -115,9 +112,7 @@ mutation createContact {
|
|
|
115
112
|
id
|
|
116
113
|
name
|
|
117
114
|
}
|
|
118
|
-
b: createContact(
|
|
119
|
-
input: { name: "Jane Smith", email: "jane.smith@example.com" }
|
|
120
|
-
) {
|
|
115
|
+
b: createContact(input: { name: "Jane Smith", email: "jane.smith@example.com" }) {
|
|
121
116
|
id
|
|
122
117
|
name
|
|
123
118
|
}
|
|
@@ -148,13 +143,7 @@ mutation registerOrder {
|
|
|
148
143
|
orderDate: "2025-09-01T00:00:00Z"
|
|
149
144
|
contactId: "82596a87-d0b0-47d6-8535-e70e4600c3c1"
|
|
150
145
|
}
|
|
151
|
-
items: [
|
|
152
|
-
{
|
|
153
|
-
productId: "54ed76c5-30e5-4b36-a82f-3c03d6436323"
|
|
154
|
-
unitPrice: 200
|
|
155
|
-
quantity: 20
|
|
156
|
-
}
|
|
157
|
-
]
|
|
146
|
+
items: [{ productId: "54ed76c5-30e5-4b36-a82f-3c03d6436323", unitPrice: 200, quantity: 20 }]
|
|
158
147
|
}
|
|
159
148
|
) {
|
|
160
149
|
success
|
|
@@ -167,13 +156,7 @@ mutation registerOrder {
|
|
|
167
156
|
orderDate: "2025-10-01T00:00:00Z"
|
|
168
157
|
contactId: "87cfb619-b6a5-4ad6-9b62-7de15b8bd5b9"
|
|
169
158
|
}
|
|
170
|
-
items: [
|
|
171
|
-
{
|
|
172
|
-
productId: "54ed76c5-30e5-4b36-a82f-3c03d6436323"
|
|
173
|
-
unitPrice: 300
|
|
174
|
-
quantity: 15
|
|
175
|
-
}
|
|
176
|
-
]
|
|
159
|
+
items: [{ productId: "54ed76c5-30e5-4b36-a82f-3c03d6436323", unitPrice: 300, quantity: 15 }]
|
|
177
160
|
}
|
|
178
161
|
) {
|
|
179
162
|
success
|
|
@@ -18,12 +18,12 @@
|
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"@eslint/js": "9.39.2",
|
|
20
20
|
"@tailor-platform/function-types": "0.8.0",
|
|
21
|
-
"@tailor-platform/sdk": "1.2.
|
|
22
|
-
"@types/node": "24.10.
|
|
21
|
+
"@tailor-platform/sdk": "1.2.6",
|
|
22
|
+
"@types/node": "24.10.7",
|
|
23
23
|
"eslint": "9.39.2",
|
|
24
|
-
"eslint-plugin-oxlint": "1.
|
|
25
|
-
"oxfmt": "0.
|
|
26
|
-
"oxlint": "1.
|
|
24
|
+
"eslint-plugin-oxlint": "1.38.0",
|
|
25
|
+
"oxfmt": "0.23.0",
|
|
26
|
+
"oxlint": "1.38.0",
|
|
27
27
|
"oxlint-tsgolint": "0.11.0",
|
|
28
28
|
"typescript": "5.9.3",
|
|
29
29
|
"typescript-eslint": "8.52.0"
|
|
@@ -14,12 +14,12 @@
|
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
16
|
"@eslint/js": "9.39.2",
|
|
17
|
-
"@tailor-platform/sdk": "1.2.
|
|
18
|
-
"@types/node": "24.10.
|
|
17
|
+
"@tailor-platform/sdk": "1.2.6",
|
|
18
|
+
"@types/node": "24.10.7",
|
|
19
19
|
"eslint": "9.39.2",
|
|
20
|
-
"eslint-plugin-oxlint": "1.
|
|
21
|
-
"oxfmt": "0.
|
|
22
|
-
"oxlint": "1.
|
|
20
|
+
"eslint-plugin-oxlint": "1.38.0",
|
|
21
|
+
"oxfmt": "0.23.0",
|
|
22
|
+
"oxlint": "1.38.0",
|
|
23
23
|
"oxlint-tsgolint": "0.11.0",
|
|
24
24
|
"typescript": "5.9.3",
|
|
25
25
|
"typescript-eslint": "8.52.0"
|
|
@@ -21,13 +21,13 @@
|
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"@eslint/js": "9.39.2",
|
|
23
23
|
"@tailor-platform/function-types": "0.8.0",
|
|
24
|
-
"@tailor-platform/sdk": "1.2.
|
|
25
|
-
"@types/node": "24.10.
|
|
24
|
+
"@tailor-platform/sdk": "1.2.6",
|
|
25
|
+
"@types/node": "24.10.7",
|
|
26
26
|
"eslint": "9.39.2",
|
|
27
|
-
"eslint-plugin-oxlint": "1.
|
|
27
|
+
"eslint-plugin-oxlint": "1.38.0",
|
|
28
28
|
"graphql-request": "7.4.0",
|
|
29
|
-
"oxfmt": "0.
|
|
30
|
-
"oxlint": "1.
|
|
29
|
+
"oxfmt": "0.23.0",
|
|
30
|
+
"oxlint": "1.38.0",
|
|
31
31
|
"oxlint-tsgolint": "0.11.0",
|
|
32
32
|
"typescript": "5.9.3",
|
|
33
33
|
"typescript-eslint": "8.52.0",
|