@tailor-platform/create-sdk 0.8.2 → 0.8.4

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 CHANGED
@@ -1,5 +1,13 @@
1
1
  # @tailor-platform/create-sdk
2
2
 
3
+ ## 0.8.4
4
+
5
+ ### Patch Changes
6
+
7
+ - [#19](https://github.com/tailor-platform/sdk/pull/19) [`58e3486`](https://github.com/tailor-platform/sdk/commit/58e34866f5af9027c05d80f9164ffba8b1d1ff55) Thanks [@toiroakr](https://github.com/toiroakr)! - chore: remove unused Serial type and track utility type usage in Kysely generator
8
+
9
+ ## 0.8.3
10
+
3
11
  ## 0.8.2
4
12
 
5
13
  ## 0.8.1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tailor-platform/create-sdk",
3
- "version": "0.8.2",
3
+ "version": "0.8.4",
4
4
  "description": "A CLI tool to quickly create a new Tailor Platform SDK project",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -12,7 +12,7 @@
12
12
  },
13
13
  "devDependencies": {
14
14
  "@eslint/js": "9.39.1",
15
- "@tailor-platform/sdk": "0.8.2",
15
+ "@tailor-platform/sdk": "0.8.4",
16
16
  "@types/node": "22.19.0",
17
17
  "eslint": "9.39.1",
18
18
  "prettier": "3.6.2",
@@ -18,7 +18,7 @@
18
18
  "devDependencies": {
19
19
  "@eslint/js": "9.39.1",
20
20
  "@tailor-platform/function-types": "0.7.2",
21
- "@tailor-platform/sdk": "0.8.2",
21
+ "@tailor-platform/sdk": "0.8.4",
22
22
  "@types/node": "22.19.0",
23
23
  "eslint": "9.39.1",
24
24
  "prettier": "3.6.2",
@@ -5,7 +5,6 @@ type Timestamp = ColumnType<Date, Date | string, Date | string>;
5
5
  type Generated<T> = T extends ColumnType<infer S, infer I, infer U>
6
6
  ? ColumnType<S, I | undefined, U>
7
7
  : ColumnType<T, T | undefined, T>;
8
- type Serial<T = string | number> = ColumnType<T, never, never>;
9
8
 
10
9
  export interface Namespace {
11
10
  "main-db": {
@@ -21,7 +21,7 @@
21
21
  "devDependencies": {
22
22
  "@eslint/js": "9.39.1",
23
23
  "@tailor-platform/function-types": "0.7.2",
24
- "@tailor-platform/sdk": "0.8.2",
24
+ "@tailor-platform/sdk": "0.8.4",
25
25
  "@types/node": "22.19.0",
26
26
  "eslint": "9.39.1",
27
27
  "graphql-request": "7.3.1",
@@ -5,7 +5,6 @@ type Timestamp = ColumnType<Date, Date | string, Date | string>;
5
5
  type Generated<T> = T extends ColumnType<infer S, infer I, infer U>
6
6
  ? ColumnType<S, I | undefined, U>
7
7
  : ColumnType<T, T | undefined, T>;
8
- type Serial<T = string | number> = ColumnType<T, never, never>;
9
8
 
10
9
  export interface Namespace {
11
10
  "main-db": {