@zkp2p/indexer-schema 0.1.1 → 0.1.3
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/dist/schema.graphql +6 -1
- package/package.json +5 -6
package/dist/schema.graphql
CHANGED
|
@@ -64,10 +64,15 @@ type Intent {
|
|
|
64
64
|
fiatCurrency: String!
|
|
65
65
|
conversionRate: BigInt!
|
|
66
66
|
status: String! # SIGNALED | FULFILLED | PRUNED
|
|
67
|
-
|
|
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
|
|
75
|
+
updatedAt: BigInt!
|
|
71
76
|
|
|
72
77
|
# Association to payment method
|
|
73
78
|
paymentMethodHash: String
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zkp2p/indexer-schema",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
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
|
+
}
|