@blockscout/autoscout-types 1.11.0 → 1.11.1-alpha
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/v1/autoscout.d.ts +2 -0
- package/dist/v1/autoscout.ts +2 -0
- package/package.json +1 -1
package/dist/v1/autoscout.d.ts
CHANGED
|
@@ -423,6 +423,7 @@ export interface BillingInstanceItem {
|
|
|
423
423
|
deployment: BillingDeploymentStatus | undefined;
|
|
424
424
|
price_estimation: BillingPriceEstimation | undefined;
|
|
425
425
|
icon_url?: string | undefined;
|
|
426
|
+
server_size: string;
|
|
426
427
|
}
|
|
427
428
|
export interface BillingInstancesPrice {
|
|
428
429
|
total_items: number;
|
|
@@ -441,6 +442,7 @@ export interface BillingUsageByInstance {
|
|
|
441
442
|
storage_amount_usd: string;
|
|
442
443
|
plugins: BillingUsagePlugin[];
|
|
443
444
|
icon_url?: string | undefined;
|
|
445
|
+
server_size: string;
|
|
444
446
|
}
|
|
445
447
|
export interface BillingUsage {
|
|
446
448
|
period_start: string;
|
package/dist/v1/autoscout.ts
CHANGED
|
@@ -497,6 +497,7 @@ export interface BillingInstanceItem {
|
|
|
497
497
|
deployment: BillingDeploymentStatus | undefined;
|
|
498
498
|
price_estimation: BillingPriceEstimation | undefined;
|
|
499
499
|
icon_url?: string | undefined;
|
|
500
|
+
server_size: string;
|
|
500
501
|
}
|
|
501
502
|
|
|
502
503
|
export interface BillingInstancesPrice {
|
|
@@ -518,6 +519,7 @@ export interface BillingUsageByInstance {
|
|
|
518
519
|
storage_amount_usd: string;
|
|
519
520
|
plugins: BillingUsagePlugin[];
|
|
520
521
|
icon_url?: string | undefined;
|
|
522
|
+
server_size: string;
|
|
521
523
|
}
|
|
522
524
|
|
|
523
525
|
export interface BillingUsage {
|