@blockscout/autoscout-types 1.14.0-alpha.1 → 1.14.0-alpha.2
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 +11 -1
- package/dist/v1/autoscout.js +8 -2
- package/dist/v1/autoscout.ts +13 -2
- package/dist/v1/config.js +1 -1
- package/dist/v1/config.ts +1 -1
- package/dist/v1/config_schema.js +1 -1
- package/dist/v1/config_schema.ts +1 -1
- package/package.json +1 -1
package/dist/v1/autoscout.d.ts
CHANGED
|
@@ -56,6 +56,11 @@ export declare enum TeamRole {
|
|
|
56
56
|
EDITOR = "TEAM_ROLE_EDITOR",
|
|
57
57
|
VIEWER = "TEAM_ROLE_VIEWER"
|
|
58
58
|
}
|
|
59
|
+
export declare enum TeamMemberStatus {
|
|
60
|
+
UNSPECIFIED_TEAM_MEMBER_STATUS = "UNSPECIFIED_TEAM_MEMBER_STATUS",
|
|
61
|
+
ACTIVE = "TEAM_MEMBER_STATUS_ACTIVE",
|
|
62
|
+
PENDING = "TEAM_MEMBER_STATUS_PENDING"
|
|
63
|
+
}
|
|
59
64
|
export declare enum BillingProviderType {
|
|
60
65
|
UNSPECIFIED_BILLING_PROVIDER_TYPE = "UNSPECIFIED_BILLING_PROVIDER_TYPE",
|
|
61
66
|
STRIPE = "BILLING_PROVIDER_TYPE_STRIPE"
|
|
@@ -211,7 +216,12 @@ export interface Team {
|
|
|
211
216
|
export interface TeamMember {
|
|
212
217
|
email: string;
|
|
213
218
|
role: TeamRole;
|
|
214
|
-
joined_at
|
|
219
|
+
joined_at?: string | undefined;
|
|
220
|
+
name?: string | undefined;
|
|
221
|
+
avatar_url?: string | undefined;
|
|
222
|
+
status: TeamMemberStatus;
|
|
223
|
+
invite_id?: string | undefined;
|
|
224
|
+
invite_expires_at?: string | undefined;
|
|
215
225
|
}
|
|
216
226
|
export interface TeamInvite {
|
|
217
227
|
invite_id: string;
|
package/dist/v1/autoscout.js
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
3
3
|
// versions:
|
|
4
4
|
// protoc-gen-ts_proto v1.176.2
|
|
5
|
-
// protoc
|
|
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.TeamRole = exports.PluginEventType = exports.PluginStatus = exports.PluginVariant = exports.DepositType = exports.DepositStatus = exports.UpdateInstanceAction = exports.DeploymentStatus = void 0;
|
|
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;
|
|
9
9
|
var DeploymentStatus;
|
|
10
10
|
(function (DeploymentStatus) {
|
|
11
11
|
DeploymentStatus["NO_STATUS"] = "NO_STATUS";
|
|
@@ -70,6 +70,12 @@ var TeamRole;
|
|
|
70
70
|
TeamRole["EDITOR"] = "TEAM_ROLE_EDITOR";
|
|
71
71
|
TeamRole["VIEWER"] = "TEAM_ROLE_VIEWER";
|
|
72
72
|
})(TeamRole || (exports.TeamRole = TeamRole = {}));
|
|
73
|
+
var TeamMemberStatus;
|
|
74
|
+
(function (TeamMemberStatus) {
|
|
75
|
+
TeamMemberStatus["UNSPECIFIED_TEAM_MEMBER_STATUS"] = "UNSPECIFIED_TEAM_MEMBER_STATUS";
|
|
76
|
+
TeamMemberStatus["ACTIVE"] = "TEAM_MEMBER_STATUS_ACTIVE";
|
|
77
|
+
TeamMemberStatus["PENDING"] = "TEAM_MEMBER_STATUS_PENDING";
|
|
78
|
+
})(TeamMemberStatus || (exports.TeamMemberStatus = TeamMemberStatus = {}));
|
|
73
79
|
var BillingProviderType;
|
|
74
80
|
(function (BillingProviderType) {
|
|
75
81
|
BillingProviderType["UNSPECIFIED_BILLING_PROVIDER_TYPE"] = "UNSPECIFIED_BILLING_PROVIDER_TYPE";
|
package/dist/v1/autoscout.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
2
2
|
// versions:
|
|
3
3
|
// protoc-gen-ts_proto v1.176.2
|
|
4
|
-
// protoc
|
|
4
|
+
// protoc v4.23.4
|
|
5
5
|
// source: v1/autoscout.proto
|
|
6
6
|
|
|
7
7
|
/* eslint-disable */
|
|
@@ -72,6 +72,12 @@ export enum TeamRole {
|
|
|
72
72
|
VIEWER = "TEAM_ROLE_VIEWER",
|
|
73
73
|
}
|
|
74
74
|
|
|
75
|
+
export enum TeamMemberStatus {
|
|
76
|
+
UNSPECIFIED_TEAM_MEMBER_STATUS = "UNSPECIFIED_TEAM_MEMBER_STATUS",
|
|
77
|
+
ACTIVE = "TEAM_MEMBER_STATUS_ACTIVE",
|
|
78
|
+
PENDING = "TEAM_MEMBER_STATUS_PENDING",
|
|
79
|
+
}
|
|
80
|
+
|
|
75
81
|
export enum BillingProviderType {
|
|
76
82
|
UNSPECIFIED_BILLING_PROVIDER_TYPE = "UNSPECIFIED_BILLING_PROVIDER_TYPE",
|
|
77
83
|
STRIPE = "BILLING_PROVIDER_TYPE_STRIPE",
|
|
@@ -243,7 +249,12 @@ export interface Team {
|
|
|
243
249
|
export interface TeamMember {
|
|
244
250
|
email: string;
|
|
245
251
|
role: TeamRole;
|
|
246
|
-
joined_at
|
|
252
|
+
joined_at?: string | undefined;
|
|
253
|
+
name?: string | undefined;
|
|
254
|
+
avatar_url?: string | undefined;
|
|
255
|
+
status: TeamMemberStatus;
|
|
256
|
+
invite_id?: string | undefined;
|
|
257
|
+
invite_expires_at?: string | undefined;
|
|
247
258
|
}
|
|
248
259
|
|
|
249
260
|
export interface TeamInvite {
|
package/dist/v1/config.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
3
3
|
// versions:
|
|
4
4
|
// protoc-gen-ts_proto v1.176.2
|
|
5
|
-
// protoc
|
|
5
|
+
// protoc v4.23.4
|
|
6
6
|
// source: v1/config.proto
|
|
7
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
8
|
exports.UserOpsTraceClient = exports.IndexerBlockTransformer = exports.AdBannerProvider = exports.AdTextProvider = exports.Identicon = exports.ColorTheme = exports.NavigationLayout = exports.NodeType = exports.ChainType = void 0;
|
package/dist/v1/config.ts
CHANGED
package/dist/v1/config_schema.js
CHANGED
package/dist/v1/config_schema.ts
CHANGED