@xyo-network/diviner-payload-stats-model 4.1.2 → 4.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/neutral/index.d.ts +6 -30
- package/package.json +6 -6
package/dist/neutral/index.d.ts
CHANGED
|
@@ -1,30 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
type PayloadStatsDivinerConfigSchema = `${PayloadStatsDivinerSchema}.config`;
|
|
9
|
-
declare const PayloadStatsDivinerConfigSchema: PayloadStatsDivinerConfigSchema;
|
|
10
|
-
type PayloadStatsDivinerConfig<T extends Payload = Payload> = DivinerConfig<T & {
|
|
11
|
-
schema: PayloadStatsDivinerConfigSchema;
|
|
12
|
-
}>;
|
|
13
|
-
|
|
14
|
-
type PayloadStatsDivinerParams = DivinerParams<AnyConfigSchema<PayloadStatsDivinerConfig>>;
|
|
15
|
-
|
|
16
|
-
type PayloadStatsPayload = Payload<{
|
|
17
|
-
count: number;
|
|
18
|
-
schema: PayloadStatsDivinerSchema;
|
|
19
|
-
}>;
|
|
20
|
-
declare const isPayloadStatsPayload: (x?: Payload | null) => x is PayloadStatsPayload;
|
|
21
|
-
|
|
22
|
-
type PayloadStatsQuerySchema = `${PayloadStatsDivinerSchema}.query`;
|
|
23
|
-
declare const PayloadStatsQuerySchema: PayloadStatsQuerySchema;
|
|
24
|
-
type PayloadStatsQueryPayload = Query<{
|
|
25
|
-
schema: PayloadStatsQuerySchema;
|
|
26
|
-
}>;
|
|
27
|
-
declare const isPayloadStatsQueryPayload: (x?: Payload | null) => x is PayloadStatsQueryPayload;
|
|
28
|
-
|
|
29
|
-
export { PayloadStatsDivinerConfigSchema, PayloadStatsDivinerSchema, PayloadStatsQuerySchema, isPayloadStatsPayload, isPayloadStatsQueryPayload };
|
|
30
|
-
export type { PayloadStatsDivinerConfig, PayloadStatsDivinerParams, PayloadStatsPayload, PayloadStatsQueryPayload };
|
|
1
|
+
export * from './Config.ts';
|
|
2
|
+
export * from './Params.ts';
|
|
3
|
+
export * from './Payload.ts';
|
|
4
|
+
export * from './Query.ts';
|
|
5
|
+
export * from './Schema.ts';
|
|
6
|
+
//# sourceMappingURL=index.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/diviner-payload-stats-model",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.3",
|
|
4
4
|
"description": "Primary SDK for using XYO Protocol 2.0",
|
|
5
5
|
"homepage": "https://xyo.network",
|
|
6
6
|
"bugs": {
|
|
@@ -29,13 +29,13 @@
|
|
|
29
29
|
"module": "dist/neutral/index.mjs",
|
|
30
30
|
"types": "dist/neutral/index.d.ts",
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@xyo-network/diviner-model": "^4.1.
|
|
33
|
-
"@xyo-network/module-model": "^4.1.
|
|
34
|
-
"@xyo-network/payload-model": "^4.1.
|
|
32
|
+
"@xyo-network/diviner-model": "^4.1.3",
|
|
33
|
+
"@xyo-network/module-model": "^4.1.3",
|
|
34
|
+
"@xyo-network/payload-model": "^4.1.3"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@xylabs/ts-scripts-yarn3": "^7.0.0-rc.
|
|
38
|
-
"@xylabs/tsconfig": "^7.0.0-rc.
|
|
37
|
+
"@xylabs/ts-scripts-yarn3": "^7.0.0-rc.27",
|
|
38
|
+
"@xylabs/tsconfig": "^7.0.0-rc.27",
|
|
39
39
|
"typescript": "^5.8.3"
|
|
40
40
|
},
|
|
41
41
|
"publishConfig": {
|