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