@sentio/api 1.0.4-rc.5 → 1.0.4-rc.7
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/src/types.gen.d.ts +3 -2
- package/package.json +1 -1
- package/src/types.gen.ts +3 -2
package/dist/src/types.gen.d.ts
CHANGED
|
@@ -2389,7 +2389,6 @@ export declare namespace price_service {
|
|
|
2389
2389
|
};
|
|
2390
2390
|
type ExperimentalFlag = {
|
|
2391
2391
|
enablePythSource?: boolean;
|
|
2392
|
-
enablePricingLookForward?: boolean;
|
|
2393
2392
|
};
|
|
2394
2393
|
/**
|
|
2395
2394
|
* GetPriceResponse is the response for GetPrice.
|
|
@@ -2426,7 +2425,6 @@ export declare namespace price_service {
|
|
|
2426
2425
|
'coinId.address.chain'?: string;
|
|
2427
2426
|
source?: string;
|
|
2428
2427
|
'experimentalFlag.enablePythSource'?: boolean;
|
|
2429
|
-
'experimentalFlag.enablePricingLookForward'?: boolean;
|
|
2430
2428
|
};
|
|
2431
2429
|
url: '/api/v1/prices';
|
|
2432
2430
|
};
|
|
@@ -2572,6 +2570,9 @@ export declare namespace processor_service {
|
|
|
2572
2570
|
networkOverrides?: Array<NetworkOverride>;
|
|
2573
2571
|
driverVersion?: string;
|
|
2574
2572
|
numWorkers?: string;
|
|
2573
|
+
entitySchema?: string;
|
|
2574
|
+
snChainId?: string;
|
|
2575
|
+
snRequiredChains?: Array<string>;
|
|
2575
2576
|
};
|
|
2576
2577
|
type GetProcessorStatusResponseProcessorStatus = {
|
|
2577
2578
|
state?: GetProcessorStatusResponseProcessorStatusState;
|
package/package.json
CHANGED
package/src/types.gen.ts
CHANGED
|
@@ -2400,7 +2400,6 @@ export namespace price_service {
|
|
|
2400
2400
|
};
|
|
2401
2401
|
export type ExperimentalFlag = {
|
|
2402
2402
|
enablePythSource?: boolean;
|
|
2403
|
-
enablePricingLookForward?: boolean;
|
|
2404
2403
|
};
|
|
2405
2404
|
/**
|
|
2406
2405
|
* GetPriceResponse is the response for GetPrice.
|
|
@@ -2437,7 +2436,6 @@ export namespace price_service {
|
|
|
2437
2436
|
'coinId.address.chain'?: string;
|
|
2438
2437
|
source?: string;
|
|
2439
2438
|
'experimentalFlag.enablePythSource'?: boolean;
|
|
2440
|
-
'experimentalFlag.enablePricingLookForward'?: boolean;
|
|
2441
2439
|
};
|
|
2442
2440
|
url: '/api/v1/prices';
|
|
2443
2441
|
};
|
|
@@ -2584,6 +2582,9 @@ export namespace processor_service {
|
|
|
2584
2582
|
networkOverrides?: Array<NetworkOverride>;
|
|
2585
2583
|
driverVersion?: string;
|
|
2586
2584
|
numWorkers?: string;
|
|
2585
|
+
entitySchema?: string;
|
|
2586
|
+
snChainId?: string;
|
|
2587
|
+
snRequiredChains?: Array<string>;
|
|
2587
2588
|
};
|
|
2588
2589
|
export type GetProcessorStatusResponseProcessorStatus = {
|
|
2589
2590
|
state?: GetProcessorStatusResponseProcessorStatusState;
|