@puq/type 0.4.7 → 0.4.11

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.
@@ -1,4 +1,5 @@
1
1
  export type DeleteResult = {
2
2
  affected: number;
3
+ data?: Record<string, any>;
3
4
  };
4
5
  //# sourceMappingURL=delete-result.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"delete-result.d.ts","sourceRoot":"","sources":["../../../src/lib/dto/delete-result.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,YAAY,GAAG;IACzB,QAAQ,EAAE,MAAM,CAAC;CAClB,CAAC"}
1
+ {"version":3,"file":"delete-result.d.ts","sourceRoot":"","sources":["../../../src/lib/dto/delete-result.ts"],"names":[],"mappings":"AACA,MAAM,MAAM,YAAY,GAAG;IACzB,QAAQ,EAAE,MAAM,CAAC;IACjB,IAAI,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;CAC5B,CAAC"}
@@ -1,4 +1,5 @@
1
1
  export type UpdateResult = {
2
2
  affected: number;
3
+ data?: Record<string, any>;
3
4
  };
4
5
  //# sourceMappingURL=update-result.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"update-result.d.ts","sourceRoot":"","sources":["../../../src/lib/dto/update-result.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,YAAY,GAAG;IACzB,QAAQ,EAAE,MAAM,CAAC;CAClB,CAAC"}
1
+ {"version":3,"file":"update-result.d.ts","sourceRoot":"","sources":["../../../src/lib/dto/update-result.ts"],"names":[],"mappings":"AACA,MAAM,MAAM,YAAY,GAAG;IACzB,QAAQ,EAAE,MAAM,CAAC;IACjB,IAAI,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;CAC5B,CAAC"}
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@puq/type",
3
- "version": "0.4.7",
3
+ "version": "0.4.8",
4
4
  "license": "MIT",
5
5
  "publishConfig": {
6
6
  "access": "public",
package/package.json CHANGED
@@ -1,87 +1,87 @@
1
- {
2
- "name": "@puq/type",
3
- "version": "0.4.7",
4
- "license": "MIT",
5
- "publishConfig": {
6
- "access": "public",
7
- "tag": "latest"
8
- },
9
- "description": "Common model and utility types",
10
- "author": {
11
- "email": "robert.brightline@gmail.com",
12
- "name": "Robert Brightline",
13
- "url": "https://rbrightline.github.io"
14
- },
15
- "keywords": [
16
- "type",
17
- "model",
18
- "type-utility"
19
- ],
20
- "repository": {
21
- "directory": "libs/type",
22
- "url": "https://github.com/rbrightline/puq/tree/main",
23
- "type": "github"
24
- },
25
- "homepage": "https://rbrightline.github.io/puq/type",
26
- "bugs": {
27
- "email": "robert.brightline@gmail.com",
28
- "url": "https://rbrightline.github.io"
29
- },
30
- "categories": [
31
- "Other"
32
- ],
33
- "contributors": [
34
- {
35
- "email": "robert.brightline@gmail.com",
36
- "name": "Robert Brightline",
37
- "url": "https://rbrightline.github.io"
38
- }
39
- ],
40
- "funding": [
41
- "https://cash.app/$puqlib"
42
- ],
43
- "icon": "https://raw.githubusercontent.com/rbrightline/puq/refs/heads/main/libs/type/favicon.png",
44
- "type": "module",
45
- "main": "./dist/index.js",
46
- "module": "./dist/index.js",
47
- "types": "./dist/index.d.ts",
48
- "exports": {
49
- "./package.json": "./package.json",
50
- ".": {
51
- "types": "./dist/index.d.ts",
52
- "import": "./dist/index.js",
53
- "default": "./dist/index.js"
54
- }
55
- },
56
- "files": [
57
- "dist",
58
- "!**/*.tsbuildinfo"
59
- ],
60
- "nx": {
61
- "sourceRoot": "libs/type/src",
62
- "targets": {
63
- "build": {
64
- "executor": "@nx/js:swc",
65
- "outputs": [
66
- "{options.outputPath}"
67
- ],
68
- "options": {
69
- "outputPath": "libs/type/dist",
70
- "main": "libs/type/src/index.ts",
71
- "tsConfig": "libs/type/tsconfig.lib.json",
72
- "skipTypeCheck": false,
73
- "stripLeadingPaths": true
74
- },
75
- "dependsOn": [
76
- "lint"
77
- ]
78
- },
79
- "doc": {
80
- "command": "cd libs/type && npx compodoc -d ../../public/type -p tsconfig.lib.json -n type"
81
- }
82
- }
83
- },
84
- "dependencies": {
85
- "@swc/helpers": "^0.5.15"
86
- }
1
+ {
2
+ "name": "@puq/type",
3
+ "version": "0.4.11",
4
+ "license": "MIT",
5
+ "publishConfig": {
6
+ "access": "public",
7
+ "tag": "latest"
8
+ },
9
+ "description": "Common model and utility types",
10
+ "author": {
11
+ "email": "robert.brightline@gmail.com",
12
+ "name": "Robert Brightline",
13
+ "url": "https://rbrightline.github.io"
14
+ },
15
+ "keywords": [
16
+ "type",
17
+ "model",
18
+ "type-utility"
19
+ ],
20
+ "repository": {
21
+ "directory": "libs/type",
22
+ "url": "https://github.com/rbrightline/puq/tree/main",
23
+ "type": "github"
24
+ },
25
+ "homepage": "https://rbrightline.github.io/puq/type",
26
+ "bugs": {
27
+ "email": "robert.brightline@gmail.com",
28
+ "url": "https://rbrightline.github.io"
29
+ },
30
+ "categories": [
31
+ "Other"
32
+ ],
33
+ "contributors": [
34
+ {
35
+ "email": "robert.brightline@gmail.com",
36
+ "name": "Robert Brightline",
37
+ "url": "https://rbrightline.github.io"
38
+ }
39
+ ],
40
+ "funding": [
41
+ "https://cash.app/$puqlib"
42
+ ],
43
+ "icon": "https://raw.githubusercontent.com/rbrightline/puq/refs/heads/main/libs/type/favicon.png",
44
+ "type": "module",
45
+ "main": "./dist/index.js",
46
+ "module": "./dist/index.js",
47
+ "types": "./dist/index.d.ts",
48
+ "exports": {
49
+ "./package.json": "./package.json",
50
+ ".": {
51
+ "types": "./dist/index.d.ts",
52
+ "import": "./dist/index.js",
53
+ "default": "./dist/index.js"
54
+ }
55
+ },
56
+ "files": [
57
+ "dist",
58
+ "!**/*.tsbuildinfo"
59
+ ],
60
+ "nx": {
61
+ "sourceRoot": "libs/type/src",
62
+ "targets": {
63
+ "build": {
64
+ "executor": "@nx/js:swc",
65
+ "outputs": [
66
+ "{options.outputPath}"
67
+ ],
68
+ "options": {
69
+ "outputPath": "libs/type/dist",
70
+ "main": "libs/type/src/index.ts",
71
+ "tsConfig": "libs/type/tsconfig.lib.json",
72
+ "skipTypeCheck": false,
73
+ "stripLeadingPaths": true
74
+ },
75
+ "dependsOn": [
76
+ "lint"
77
+ ]
78
+ },
79
+ "doc": {
80
+ "command": "cd libs/type && npx compodoc -d ../../public/type -p tsconfig.lib.json -n type"
81
+ }
82
+ }
83
+ },
84
+ "dependencies": {
85
+ "@swc/helpers": "^0.5.15"
86
+ }
87
87
  }