@blockscout/autoscout-types 1.14.0-alpha.3 → 1.14.0
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 +6 -0
- package/dist/v1/autoscout.js +7 -1
- package/dist/v1/autoscout.ts +7 -0
- package/package.json +1 -1
package/dist/v1/autoscout.d.ts
CHANGED
|
@@ -72,6 +72,11 @@ export declare enum BillingSubscriptionStatus {
|
|
|
72
72
|
CANCELED = "BILLING_SUBSCRIPTION_STATUS_CANCELED",
|
|
73
73
|
UNCONFIRMED = "BILLING_SUBSCRIPTION_STATUS_UNCONFIRMED"
|
|
74
74
|
}
|
|
75
|
+
export declare enum RequestNetworkChain {
|
|
76
|
+
UNSPECIFIED = "REQUEST_NETWORK_CHAIN_UNSPECIFIED",
|
|
77
|
+
EVM = "REQUEST_NETWORK_CHAIN_EVM",
|
|
78
|
+
TRON = "REQUEST_NETWORK_CHAIN_TRON"
|
|
79
|
+
}
|
|
75
80
|
export interface HealthStatus {
|
|
76
81
|
ok: boolean;
|
|
77
82
|
last_check: string;
|
|
@@ -596,6 +601,7 @@ export interface CreateRequestNetworkDepositRequest {
|
|
|
596
601
|
amount_cents: number;
|
|
597
602
|
promocode?: string | undefined;
|
|
598
603
|
team_id?: string | undefined;
|
|
604
|
+
chain: RequestNetworkChain;
|
|
599
605
|
}
|
|
600
606
|
export interface CreateRequestNetworkDepositResponse {
|
|
601
607
|
id: string;
|
package/dist/v1/autoscout.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
// protoc v4.23.4
|
|
6
6
|
// source: v1/autoscout.proto
|
|
7
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
-
exports.BillingSubscriptionStatus = exports.BillingProviderType = exports.TeamMemberStatus = exports.TeamRole = exports.PluginEventType = exports.PluginStatus = exports.PluginVariant = exports.DepositType = exports.DepositStatus = exports.UpdateInstanceAction = exports.DeploymentStatus = void 0;
|
|
8
|
+
exports.RequestNetworkChain = exports.BillingSubscriptionStatus = exports.BillingProviderType = exports.TeamMemberStatus = exports.TeamRole = exports.PluginEventType = exports.PluginStatus = exports.PluginVariant = exports.DepositType = exports.DepositStatus = exports.UpdateInstanceAction = exports.DeploymentStatus = void 0;
|
|
9
9
|
var DeploymentStatus;
|
|
10
10
|
(function (DeploymentStatus) {
|
|
11
11
|
DeploymentStatus["NO_STATUS"] = "NO_STATUS";
|
|
@@ -89,3 +89,9 @@ var BillingSubscriptionStatus;
|
|
|
89
89
|
BillingSubscriptionStatus["CANCELED"] = "BILLING_SUBSCRIPTION_STATUS_CANCELED";
|
|
90
90
|
BillingSubscriptionStatus["UNCONFIRMED"] = "BILLING_SUBSCRIPTION_STATUS_UNCONFIRMED";
|
|
91
91
|
})(BillingSubscriptionStatus || (exports.BillingSubscriptionStatus = BillingSubscriptionStatus = {}));
|
|
92
|
+
var RequestNetworkChain;
|
|
93
|
+
(function (RequestNetworkChain) {
|
|
94
|
+
RequestNetworkChain["UNSPECIFIED"] = "REQUEST_NETWORK_CHAIN_UNSPECIFIED";
|
|
95
|
+
RequestNetworkChain["EVM"] = "REQUEST_NETWORK_CHAIN_EVM";
|
|
96
|
+
RequestNetworkChain["TRON"] = "REQUEST_NETWORK_CHAIN_TRON";
|
|
97
|
+
})(RequestNetworkChain || (exports.RequestNetworkChain = RequestNetworkChain = {}));
|
package/dist/v1/autoscout.ts
CHANGED
|
@@ -91,6 +91,12 @@ export enum BillingSubscriptionStatus {
|
|
|
91
91
|
UNCONFIRMED = "BILLING_SUBSCRIPTION_STATUS_UNCONFIRMED",
|
|
92
92
|
}
|
|
93
93
|
|
|
94
|
+
export enum RequestNetworkChain {
|
|
95
|
+
UNSPECIFIED = "REQUEST_NETWORK_CHAIN_UNSPECIFIED",
|
|
96
|
+
EVM = "REQUEST_NETWORK_CHAIN_EVM",
|
|
97
|
+
TRON = "REQUEST_NETWORK_CHAIN_TRON",
|
|
98
|
+
}
|
|
99
|
+
|
|
94
100
|
export interface HealthStatus {
|
|
95
101
|
ok: boolean;
|
|
96
102
|
last_check: string;
|
|
@@ -702,6 +708,7 @@ export interface CreateRequestNetworkDepositRequest {
|
|
|
702
708
|
amount_cents: number;
|
|
703
709
|
promocode?: string | undefined;
|
|
704
710
|
team_id?: string | undefined;
|
|
711
|
+
chain: RequestNetworkChain;
|
|
705
712
|
}
|
|
706
713
|
|
|
707
714
|
export interface CreateRequestNetworkDepositResponse {
|