@snapshot-labs/snapshot.js 0.12.33 → 0.12.35
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/snapshot.cjs.js +12 -1
- package/dist/snapshot.esm.js +12 -1
- package/dist/snapshot.min.js +2 -2
- package/dist/src/index.d.ts +11 -0
- package/dist/src/schemas/index.d.ts +11 -0
- package/package.json +1 -1
- package/src/networks.json +2 -2
- package/src/schemas/space.json +11 -0
package/dist/src/index.d.ts
CHANGED
|
@@ -108,6 +108,17 @@ declare const _default: {
|
|
|
108
108
|
maxLength: number;
|
|
109
109
|
format: string;
|
|
110
110
|
};
|
|
111
|
+
discussions: {
|
|
112
|
+
type: string;
|
|
113
|
+
format: string;
|
|
114
|
+
title: string;
|
|
115
|
+
maxLength: number;
|
|
116
|
+
};
|
|
117
|
+
discourseCategory: {
|
|
118
|
+
type: string;
|
|
119
|
+
minimum: number;
|
|
120
|
+
title: string;
|
|
121
|
+
};
|
|
111
122
|
strategies: {
|
|
112
123
|
type: string;
|
|
113
124
|
minItems: number;
|
|
@@ -104,6 +104,17 @@ declare const _default: {
|
|
|
104
104
|
maxLength: number;
|
|
105
105
|
format: string;
|
|
106
106
|
};
|
|
107
|
+
discussions: {
|
|
108
|
+
type: string;
|
|
109
|
+
format: string;
|
|
110
|
+
title: string;
|
|
111
|
+
maxLength: number;
|
|
112
|
+
};
|
|
113
|
+
discourseCategory: {
|
|
114
|
+
type: string;
|
|
115
|
+
minimum: number;
|
|
116
|
+
title: string;
|
|
117
|
+
};
|
|
107
118
|
strategies: {
|
|
108
119
|
type: string;
|
|
109
120
|
minItems: number;
|
package/package.json
CHANGED
package/src/networks.json
CHANGED
|
@@ -827,7 +827,7 @@
|
|
|
827
827
|
},
|
|
828
828
|
"1480": {
|
|
829
829
|
"key": "1480",
|
|
830
|
-
"name": "
|
|
830
|
+
"name": "Vana",
|
|
831
831
|
"shortName": "mainnet",
|
|
832
832
|
"chainId": 1480,
|
|
833
833
|
"network": "mainnet",
|
|
@@ -1723,4 +1723,4 @@
|
|
|
1723
1723
|
"start": 7521509,
|
|
1724
1724
|
"logo": "ipfs://QmNnGPr1CNvj12SSGzKARtUHv9FyEfE5nES73U4vBWQSJL"
|
|
1725
1725
|
}
|
|
1726
|
-
}
|
|
1726
|
+
}
|
package/src/schemas/space.json
CHANGED
|
@@ -107,6 +107,17 @@
|
|
|
107
107
|
"maxLength": 64,
|
|
108
108
|
"format": "domain"
|
|
109
109
|
},
|
|
110
|
+
"discussions": {
|
|
111
|
+
"type": "string",
|
|
112
|
+
"format": "uri",
|
|
113
|
+
"title": "Discussions link",
|
|
114
|
+
"maxLength": 256
|
|
115
|
+
},
|
|
116
|
+
"discourseCategory": {
|
|
117
|
+
"type": "integer",
|
|
118
|
+
"minimum": 1,
|
|
119
|
+
"title": "Discourse category"
|
|
120
|
+
},
|
|
110
121
|
"strategies": {
|
|
111
122
|
"type": "array",
|
|
112
123
|
"minItems": 1,
|