@parity/truapi 0.3.0 → 0.3.1

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.
@@ -2873,18 +2873,18 @@ export type HostPaymentTopUpError =
2873
2873
  tag: "InvalidSource";
2874
2874
  value?: undefined;
2875
2875
  }
2876
- /** Catch-all. */
2876
+ /** Some coins were claimed but the total fell short of the requested amount. */
2877
2877
  | {
2878
- tag: "Unknown";
2878
+ tag: "PartialPayment";
2879
2879
  value: {
2880
- reason: string;
2880
+ credited: Balance;
2881
2881
  };
2882
2882
  }
2883
- /** Some coins were claimed but the total fell short of the requested amount. */
2883
+ /** Catch-all. */
2884
2884
  | {
2885
- tag: "PartialPayment";
2885
+ tag: "Unknown";
2886
2886
  value: {
2887
- credited: Balance;
2887
+ reason: string;
2888
2888
  };
2889
2889
  };
2890
2890
  export const HostPaymentTopUpError: Codec<HostPaymentTopUpError>;
@@ -3421,6 +3421,14 @@ export declare const services: ServiceInfo[];
3421
3421
  export declare const types: DataType[];
3422
3422
 
3423
3423
 
3424
+ // explorer/codegen/versions/0.3.1/services.d.ts
3425
+ export declare const services: ServiceInfo[];
3426
+
3427
+
3428
+ // explorer/codegen/versions/0.3.1/types.d.ts
3429
+ export declare const types: DataType[];
3430
+
3431
+
3424
3432
  // explorer/data-types.d.ts
3425
3433
  /** One named field or enum variant rendered on a \`DataType\`. */
3426
3434
  export interface DataTypeField {
@@ -3478,7 +3486,7 @@ export interface VersionEntry {
3478
3486
  * time. Mirrors the \`truapi\` crate version. Used by the explorer to render
3479
3487
  * the \`main\` selector label as \`main (x.y.z)\`.
3480
3488
  */
3481
- export declare const packageVersion = "0.3.0";
3489
+ export declare const packageVersion = "0.3.1";
3482
3490
  export declare const versions: VersionEntry[];
3483
3491
 
3484
3492
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parity/truapi",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "TrUAPI TypeScript transport, SCALE codecs, and generated API client",
5
5
  "license": "MIT",
6
6
  "author": "Parity Technologies <admin@parity.io>",