@zkp2p/indexer-schema 0.1.1 → 0.1.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.
@@ -64,10 +64,14 @@ type Intent {
64
64
  fiatCurrency: String!
65
65
  conversionRate: BigInt!
66
66
  status: String! # SIGNALED | FULFILLED | PRUNED
67
- signalTimestamp: BigInt!
67
+
68
+ # Tx hashes and timestamps
68
69
  signalTxHash: String!
70
+ signalTimestamp: BigInt!
69
71
  fulfillTxHash: String
72
+ fulfillTimestamp: BigInt
70
73
  pruneTxHash: String
74
+ pruneTimestamp: BigInt
71
75
 
72
76
  # Association to payment method
73
77
  paymentMethodHash: String
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zkp2p/indexer-schema",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "ZKP2P Indexer GraphQL schema",
5
5
  "private": false,
6
6
  "publishConfig": {
@@ -18,11 +18,10 @@
18
18
  "dist/index.js",
19
19
  "README.md"
20
20
  ],
21
- "scripts": {
22
- "prepack": "node scripts/copy-schema.js",
23
- "pack:local": "npm pack"
24
- },
25
21
  "engines": {
26
22
  "node": ">=16"
23
+ },
24
+ "scripts": {
25
+ "pack:local": "npm pack"
27
26
  }
28
- }
27
+ }