@0xtorch/csv 0.0.59 → 0.0.60
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/.DS_Store +0 -0
- package/_cjs/parseRowsToActions/parse.js +1 -1
- package/_cjs/parseRowsToActions/parse.js.map +1 -1
- package/_cjs/schemas/parser.js +1 -0
- package/_cjs/schemas/parser.js.map +1 -1
- package/_esm/parseRowsToActions/parse.js +1 -1
- package/_esm/parseRowsToActions/parse.js.map +1 -1
- package/_esm/schemas/parser.js +2 -1
- package/_esm/schemas/parser.js.map +1 -1
- package/_types/schemas/format.d.ts +9 -0
- package/_types/schemas/format.d.ts.map +1 -1
- package/_types/schemas/parser.d.ts +12 -0
- package/_types/schemas/parser.d.ts.map +1 -1
- package/package.json +2 -2
- package/parseRowsToActions/parse.ts +1 -1
- package/schemas/parser.ts +2 -0
- package/tests/.DS_Store +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@0xtorch/csv",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.60",
|
|
4
4
|
"description": "Cryptorch CSV extension",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cryptorch",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
],
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@0xtorch/big-decimal": "^0.0.13",
|
|
38
|
-
"@0xtorch/core": "^0.0.
|
|
38
|
+
"@0xtorch/core": "^0.0.61",
|
|
39
39
|
"encoding-japanese": "^2.1.0",
|
|
40
40
|
"papaparse": "^5.4.1",
|
|
41
41
|
"xlsx": "^0.18.5",
|
package/schemas/parser.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
actionCrossTypeUnionSchema,
|
|
3
|
+
actionEvidenceUnionSchema,
|
|
3
4
|
actionTypeUnionSchema,
|
|
4
5
|
} from '@0xtorch/core'
|
|
5
6
|
import { z } from 'zod'
|
|
@@ -193,6 +194,7 @@ export const transferComponentSchema = z.object({
|
|
|
193
194
|
const generatorSchema = z.object({
|
|
194
195
|
type: actionTypeUnionSchema,
|
|
195
196
|
source: allValueSchema,
|
|
197
|
+
evidence: actionEvidenceUnionSchema.optional(),
|
|
196
198
|
timestamp: cellValueSchema,
|
|
197
199
|
comment: allValueSchema.optional(),
|
|
198
200
|
app: allValueSchema.optional(),
|
package/tests/.DS_Store
ADDED
|
Binary file
|