@seal-protocol/backendjs 0.0.37 → 0.0.41

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.
@@ -2,6 +2,7 @@ export * from './protobuf-any';
2
2
  export * from './rpc-status';
3
3
  export * from './seal-cancel-order-request';
4
4
  export * from './seal-chain';
5
+ export * from './seal-chain-health';
5
6
  export * from './seal-chain-sync-state';
6
7
  export * from './seal-chains-order-by';
7
8
  export * from './seal-chains-order-by-property';
@@ -18,6 +18,7 @@ __exportStar(require("./protobuf-any"), exports);
18
18
  __exportStar(require("./rpc-status"), exports);
19
19
  __exportStar(require("./seal-cancel-order-request"), exports);
20
20
  __exportStar(require("./seal-chain"), exports);
21
+ __exportStar(require("./seal-chain-health"), exports);
21
22
  __exportStar(require("./seal-chain-sync-state"), exports);
22
23
  __exportStar(require("./seal-chains-order-by"), exports);
23
24
  __exportStar(require("./seal-chains-order-by-property"), exports);
@@ -0,0 +1,42 @@
1
+ /**
2
+ * seal/seal.proto
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: version not set
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface SealChainHealth
16
+ */
17
+ export interface SealChainHealth {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof SealChainHealth
22
+ */
23
+ 'indexerBlockDifference'?: string;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof SealChainHealth
28
+ */
29
+ 'backendBlockDifference'?: string;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof SealChainHealth
34
+ */
35
+ 'estimatedSyncDurationSeconds'?: string;
36
+ /**
37
+ *
38
+ * @type {string}
39
+ * @memberof SealChainHealth
40
+ */
41
+ 'estimatedSyncDurationDuration'?: string;
42
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * seal/seal.proto
6
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+ *
8
+ * The version of the OpenAPI document: version not set
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -9,12 +9,19 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import type { SealChainHealth } from './seal-chain-health';
12
13
  /**
13
14
  *
14
15
  * @export
15
16
  * @interface SealGetHealthCheckResponse
16
17
  */
17
18
  export interface SealGetHealthCheckResponse {
19
+ /**
20
+ *
21
+ * @type {Array<SealChainHealth>}
22
+ * @memberof SealGetHealthCheckResponse
23
+ */
24
+ 'chainHealth'?: Array<SealChainHealth>;
18
25
  /**
19
26
  *
20
27
  * @type {string}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seal-protocol/backendjs",
3
- "version": "v0.0.37",
3
+ "version": "0.0.41",
4
4
  "description": "Javascript SDK for Seal Backend",
5
5
  "author": "amin <amin@refractedlabs.com>",
6
6
  "homepage": "https://github.com/seal-protocol/backend/tree/main/ts-client#readme",