@blockscout/autoscout-types 1.13.1 → 1.14.0-alpha.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.
@@ -49,10 +49,16 @@ export declare enum PluginEventType {
49
49
  STATUS_CHANGE = "PLUGIN_EVENT_TYPE_STATUS_CHANGE",
50
50
  HEALTH_CHANGE = "PLUGIN_EVENT_TYPE_HEALTH_CHANGE"
51
51
  }
52
+ export declare enum TeamRole {
53
+ UNSPECIFIED_TEAM_ROLE = "UNSPECIFIED_TEAM_ROLE",
54
+ OWNER = "TEAM_ROLE_OWNER",
55
+ ADMIN = "TEAM_ROLE_ADMIN",
56
+ EDITOR = "TEAM_ROLE_EDITOR",
57
+ VIEWER = "TEAM_ROLE_VIEWER"
58
+ }
52
59
  export declare enum BillingProviderType {
53
60
  UNSPECIFIED_BILLING_PROVIDER_TYPE = "UNSPECIFIED_BILLING_PROVIDER_TYPE",
54
- STRIPE = "BILLING_PROVIDER_TYPE_STRIPE",
55
- DAIMO = "BILLING_PROVIDER_TYPE_DAIMO"
61
+ STRIPE = "BILLING_PROVIDER_TYPE_STRIPE"
56
62
  }
57
63
  export declare enum BillingSubscriptionStatus {
58
64
  UNSPECIFIED_BILLING_SUBSCRIPTION_STATUS = "UNSPECIFIED_BILLING_SUBSCRIPTION_STATUS",
@@ -84,6 +90,7 @@ export interface Instance {
84
90
  config: DeployConfig | undefined;
85
91
  config_state_hash: string;
86
92
  deployment: Deployment | undefined;
93
+ team_id: string;
87
94
  }
88
95
  export interface Deployment {
89
96
  deployment_id: string;
@@ -191,6 +198,24 @@ export interface PromotionEffect {
191
198
  reward_percentage?: string | undefined;
192
199
  reward_limit?: string | undefined;
193
200
  }
201
+ export interface Team {
202
+ team_id: string;
203
+ name: string;
204
+ created_at: string;
205
+ }
206
+ export interface TeamMember {
207
+ email: string;
208
+ role: TeamRole;
209
+ joined_at: string;
210
+ }
211
+ export interface TeamInvite {
212
+ invite_id: string;
213
+ invite_code: string;
214
+ created_at: string;
215
+ expires_at?: string | undefined;
216
+ max_uses?: number | undefined;
217
+ use_count: number;
218
+ }
194
219
  export interface PaginationResult {
195
220
  page: number;
196
221
  next_page?: number | undefined;
@@ -205,6 +230,8 @@ export interface CreateInstanceRequest {
205
230
  /** initial config */
206
231
  config: DeployConfig | undefined;
207
232
  skip_validation_for_fields: string[];
233
+ /** When unset, the user's default (oldest owned) team is used. */
234
+ team_id?: string | undefined;
208
235
  }
209
236
  export interface CreateInstanceResponse {
210
237
  instance_id: string;
@@ -278,6 +305,7 @@ export interface GetInstanceRequest {
278
305
  export interface ListInstancesRequest {
279
306
  page?: number | undefined;
280
307
  per_page?: number | undefined;
308
+ team_id?: string | undefined;
281
309
  }
282
310
  export interface ListInstancesResponse {
283
311
  items: Instance[];
@@ -387,8 +415,10 @@ export interface ListPluginLogsResponse {
387
415
  pagination: PaginationResult | undefined;
388
416
  }
389
417
  export interface GetProfileRequest {
418
+ team_id?: string | undefined;
390
419
  }
391
420
  export interface GetBillingRequest {
421
+ team_id?: string | undefined;
392
422
  }
393
423
  export interface PayAsYouGoEstimation {
394
424
  amount_usd: string;
@@ -507,6 +537,7 @@ export interface AcceptTermsOfServiceRequest {
507
537
  }
508
538
  export interface RegularPromocodeRequest {
509
539
  promocode: string;
540
+ team_id?: string | undefined;
510
541
  }
511
542
  export interface RegularPromocodeResponse {
512
543
  reward_amount: string;
@@ -534,46 +565,19 @@ export interface SearchUsersResponse {
534
565
  items: User[];
535
566
  pagination: PaginationResult | undefined;
536
567
  }
537
- export interface CreateCoinbaseDepositRequest {
538
- amount_cents: number;
539
- promocode?: string | undefined;
540
- }
541
- export interface CreateCoinbaseDepositResponse {
542
- id: string;
543
- url: string;
544
- }
545
- export interface GetCoinbaseDepositRequest {
546
- deposit_id: string;
547
- }
548
- export interface ListCoinbaseDepositsRequest {
549
- }
550
- export interface ListCoinbaseDepositsResponse {
551
- items: Deposit[];
552
- }
553
- export interface DeleteCoinbaseDepositRequest {
554
- deposit_id: string;
555
- }
556
- export interface DeleteCoinbaseDepositResponse {
557
- }
558
568
  export interface CreateStripeDepositRequest {
559
569
  amount_cents: number;
560
570
  promocode?: string | undefined;
571
+ team_id?: string | undefined;
561
572
  }
562
573
  export interface CreateStripeDepositResponse {
563
574
  id: string;
564
575
  url: string;
565
576
  }
566
- export interface CreateDaimoDepositRequest {
567
- amount_cents: number;
568
- promocode?: string | undefined;
569
- }
570
- export interface CreateDaimoDepositResponse {
571
- id: string;
572
- url: string;
573
- }
574
577
  export interface CreateRequestNetworkDepositRequest {
575
578
  amount_cents: number;
576
579
  promocode?: string | undefined;
580
+ team_id?: string | undefined;
577
581
  }
578
582
  export interface CreateRequestNetworkDepositResponse {
579
583
  id: string;
@@ -581,15 +585,18 @@ export interface CreateRequestNetworkDepositResponse {
581
585
  }
582
586
  export interface CreateStripeSubscriptionRequest {
583
587
  success_redirect_url: string;
588
+ team_id?: string | undefined;
584
589
  }
585
590
  export interface CreateStripeSubscriptionResponse {
586
591
  url: string;
587
592
  }
588
593
  export interface CancelStripeSubscriptionRequest {
594
+ team_id?: string | undefined;
589
595
  }
590
596
  export interface CancelStripeSubscriptionResponse {
591
597
  }
592
598
  export interface GetStripeSubscriptionStatusRequest {
599
+ team_id?: string | undefined;
593
600
  }
594
601
  export interface GetStripeSubscriptionStatusResponse {
595
602
  is_active: boolean;
@@ -598,6 +605,7 @@ export interface GetStripeSubscriptionStatusResponse {
598
605
  current_period_start?: string | undefined;
599
606
  }
600
607
  export interface GetStripeCustomerPortalRequest {
608
+ team_id?: string | undefined;
601
609
  }
602
610
  export interface GetStripeCustomerPortalResponse {
603
611
  customer_portal_url: string;
@@ -620,6 +628,67 @@ export interface PreviewDepositResponse {
620
628
  total_deposit_amount: string;
621
629
  promotion_effect?: PromotionEffect | undefined;
622
630
  }
631
+ export interface CreateTeamRequest {
632
+ name: string;
633
+ }
634
+ export interface GetTeamRequest {
635
+ team_id: string;
636
+ }
637
+ export interface ListTeamsRequest {
638
+ }
639
+ export interface ListTeamsResponse {
640
+ items: Team[];
641
+ }
642
+ export interface UpdateTeamRequest {
643
+ team_id: string;
644
+ name: string;
645
+ }
646
+ export interface DeleteTeamRequest {
647
+ team_id: string;
648
+ }
649
+ export interface DeleteTeamResponse {
650
+ }
651
+ export interface CreateTeamInviteRequest {
652
+ team_id: string;
653
+ max_uses?: number | undefined;
654
+ expires_in_hours?: number | undefined;
655
+ }
656
+ export interface ListTeamInvitesRequest {
657
+ team_id: string;
658
+ }
659
+ export interface ListTeamInvitesResponse {
660
+ items: TeamInvite[];
661
+ }
662
+ export interface DeleteTeamInviteRequest {
663
+ invite_id: string;
664
+ }
665
+ export interface DeleteTeamInviteResponse {
666
+ }
667
+ export interface JoinTeamRequest {
668
+ invite_code: string;
669
+ }
670
+ export interface LeaveTeamRequest {
671
+ team_id: string;
672
+ }
673
+ export interface LeaveTeamResponse {
674
+ }
675
+ export interface RemoveTeamMemberRequest {
676
+ team_id: string;
677
+ member_email: string;
678
+ }
679
+ export interface RemoveTeamMemberResponse {
680
+ }
681
+ export interface UpdateTeamMemberRoleRequest {
682
+ team_id: string;
683
+ member_email: string;
684
+ role: TeamRole;
685
+ }
686
+ export interface ListTeamMembersRequest {
687
+ team_id: string;
688
+ }
689
+ export interface ListTeamMembersResponse {
690
+ items: TeamMember[];
691
+ }
623
692
  export interface Autoscout {
624
693
  GetConfigSchema(request: GetConfigSchemaRequest): Promise<ConfigSchema>;
625
694
  /** Creating blockscout instance with config */
@@ -677,15 +746,23 @@ export interface Autoscout {
677
746
  SearchUsers(request: SearchUsersRequest): Promise<SearchUsersResponse>;
678
747
  ListDeposits(request: ListDepositsRequest): Promise<ListDepositsResponse>;
679
748
  PreviewDeposit(request: PreviewDepositRequest): Promise<PreviewDepositResponse>;
680
- CreateCoinbaseDeposit(request: CreateCoinbaseDepositRequest): Promise<CreateCoinbaseDepositResponse>;
681
- GetCoinbaseDeposit(request: GetCoinbaseDepositRequest): Promise<Deposit>;
682
- ListCoinbaseDeposits(request: ListCoinbaseDepositsRequest): Promise<ListCoinbaseDepositsResponse>;
683
- DeleteCoinbaseDeposit(request: DeleteCoinbaseDepositRequest): Promise<DeleteCoinbaseDepositResponse>;
684
- CreateDaimoDeposit(request: CreateDaimoDepositRequest): Promise<CreateDaimoDepositResponse>;
685
749
  CreateRequestNetworkDeposit(request: CreateRequestNetworkDepositRequest): Promise<CreateRequestNetworkDepositResponse>;
686
750
  CreateStripeDeposit(request: CreateStripeDepositRequest): Promise<CreateStripeDepositResponse>;
687
751
  CreateStripeSubscription(request: CreateStripeSubscriptionRequest): Promise<CreateStripeSubscriptionResponse>;
688
752
  CancelStripeSubscription(request: CancelStripeSubscriptionRequest): Promise<CancelStripeSubscriptionResponse>;
689
753
  GetStripeSubscriptionStatus(request: GetStripeSubscriptionStatusRequest): Promise<GetStripeSubscriptionStatusResponse>;
690
754
  GetStripeCustomerPortal(request: GetStripeCustomerPortalRequest): Promise<GetStripeCustomerPortalResponse>;
755
+ CreateTeam(request: CreateTeamRequest): Promise<Team>;
756
+ GetTeam(request: GetTeamRequest): Promise<Team>;
757
+ ListTeams(request: ListTeamsRequest): Promise<ListTeamsResponse>;
758
+ UpdateTeam(request: UpdateTeamRequest): Promise<Team>;
759
+ DeleteTeam(request: DeleteTeamRequest): Promise<DeleteTeamResponse>;
760
+ CreateTeamInvite(request: CreateTeamInviteRequest): Promise<TeamInvite>;
761
+ ListTeamInvites(request: ListTeamInvitesRequest): Promise<ListTeamInvitesResponse>;
762
+ DeleteTeamInvite(request: DeleteTeamInviteRequest): Promise<DeleteTeamInviteResponse>;
763
+ JoinTeam(request: JoinTeamRequest): Promise<Team>;
764
+ LeaveTeam(request: LeaveTeamRequest): Promise<LeaveTeamResponse>;
765
+ RemoveTeamMember(request: RemoveTeamMemberRequest): Promise<RemoveTeamMemberResponse>;
766
+ UpdateTeamMemberRole(request: UpdateTeamMemberRoleRequest): Promise<Team>;
767
+ ListTeamMembers(request: ListTeamMembersRequest): Promise<ListTeamMembersResponse>;
691
768
  }
@@ -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.PluginEventType = exports.PluginStatus = exports.PluginVariant = exports.DepositType = exports.DepositStatus = exports.UpdateInstanceAction = exports.DeploymentStatus = void 0;
8
+ exports.BillingSubscriptionStatus = exports.BillingProviderType = 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";
@@ -62,11 +62,18 @@ var PluginEventType;
62
62
  PluginEventType["STATUS_CHANGE"] = "PLUGIN_EVENT_TYPE_STATUS_CHANGE";
63
63
  PluginEventType["HEALTH_CHANGE"] = "PLUGIN_EVENT_TYPE_HEALTH_CHANGE";
64
64
  })(PluginEventType || (exports.PluginEventType = PluginEventType = {}));
65
+ var TeamRole;
66
+ (function (TeamRole) {
67
+ TeamRole["UNSPECIFIED_TEAM_ROLE"] = "UNSPECIFIED_TEAM_ROLE";
68
+ TeamRole["OWNER"] = "TEAM_ROLE_OWNER";
69
+ TeamRole["ADMIN"] = "TEAM_ROLE_ADMIN";
70
+ TeamRole["EDITOR"] = "TEAM_ROLE_EDITOR";
71
+ TeamRole["VIEWER"] = "TEAM_ROLE_VIEWER";
72
+ })(TeamRole || (exports.TeamRole = TeamRole = {}));
65
73
  var BillingProviderType;
66
74
  (function (BillingProviderType) {
67
75
  BillingProviderType["UNSPECIFIED_BILLING_PROVIDER_TYPE"] = "UNSPECIFIED_BILLING_PROVIDER_TYPE";
68
76
  BillingProviderType["STRIPE"] = "BILLING_PROVIDER_TYPE_STRIPE";
69
- BillingProviderType["DAIMO"] = "BILLING_PROVIDER_TYPE_DAIMO";
70
77
  })(BillingProviderType || (exports.BillingProviderType = BillingProviderType = {}));
71
78
  var BillingSubscriptionStatus;
72
79
  (function (BillingSubscriptionStatus) {
@@ -64,10 +64,17 @@ export enum PluginEventType {
64
64
  HEALTH_CHANGE = "PLUGIN_EVENT_TYPE_HEALTH_CHANGE",
65
65
  }
66
66
 
67
+ export enum TeamRole {
68
+ UNSPECIFIED_TEAM_ROLE = "UNSPECIFIED_TEAM_ROLE",
69
+ OWNER = "TEAM_ROLE_OWNER",
70
+ ADMIN = "TEAM_ROLE_ADMIN",
71
+ EDITOR = "TEAM_ROLE_EDITOR",
72
+ VIEWER = "TEAM_ROLE_VIEWER",
73
+ }
74
+
67
75
  export enum BillingProviderType {
68
76
  UNSPECIFIED_BILLING_PROVIDER_TYPE = "UNSPECIFIED_BILLING_PROVIDER_TYPE",
69
77
  STRIPE = "BILLING_PROVIDER_TYPE_STRIPE",
70
- DAIMO = "BILLING_PROVIDER_TYPE_DAIMO",
71
78
  }
72
79
 
73
80
  export enum BillingSubscriptionStatus {
@@ -101,6 +108,7 @@ export interface Instance {
101
108
  config: DeployConfig | undefined;
102
109
  config_state_hash: string;
103
110
  deployment: Deployment | undefined;
111
+ team_id: string;
104
112
  }
105
113
 
106
114
  export interface Deployment {
@@ -221,6 +229,27 @@ export interface PromotionEffect {
221
229
  reward_limit?: string | undefined;
222
230
  }
223
231
 
232
+ export interface Team {
233
+ team_id: string;
234
+ name: string;
235
+ created_at: string;
236
+ }
237
+
238
+ export interface TeamMember {
239
+ email: string;
240
+ role: TeamRole;
241
+ joined_at: string;
242
+ }
243
+
244
+ export interface TeamInvite {
245
+ invite_id: string;
246
+ invite_code: string;
247
+ created_at: string;
248
+ expires_at?: string | undefined;
249
+ max_uses?: number | undefined;
250
+ use_count: number;
251
+ }
252
+
224
253
  export interface PaginationResult {
225
254
  page: number;
226
255
  next_page?: number | undefined;
@@ -237,6 +266,8 @@ export interface CreateInstanceRequest {
237
266
  /** initial config */
238
267
  config: DeployConfig | undefined;
239
268
  skip_validation_for_fields: string[];
269
+ /** When unset, the user's default (oldest owned) team is used. */
270
+ team_id?: string | undefined;
240
271
  }
241
272
 
242
273
  export interface CreateInstanceResponse {
@@ -324,6 +355,7 @@ export interface GetInstanceRequest {
324
355
  export interface ListInstancesRequest {
325
356
  page?: number | undefined;
326
357
  per_page?: number | undefined;
358
+ team_id?: string | undefined;
327
359
  }
328
360
 
329
361
  export interface ListInstancesResponse {
@@ -455,9 +487,11 @@ export interface ListPluginLogsResponse {
455
487
  }
456
488
 
457
489
  export interface GetProfileRequest {
490
+ team_id?: string | undefined;
458
491
  }
459
492
 
460
493
  export interface GetBillingRequest {
494
+ team_id?: string | undefined;
461
495
  }
462
496
 
463
497
  export interface PayAsYouGoEstimation {
@@ -599,6 +633,7 @@ export interface AcceptTermsOfServiceRequest {
599
633
 
600
634
  export interface RegularPromocodeRequest {
601
635
  promocode: string;
636
+ team_id?: string | undefined;
602
637
  }
603
638
 
604
639
  export interface RegularPromocodeResponse {
@@ -632,37 +667,10 @@ export interface SearchUsersResponse {
632
667
  pagination: PaginationResult | undefined;
633
668
  }
634
669
 
635
- export interface CreateCoinbaseDepositRequest {
636
- amount_cents: number;
637
- promocode?: string | undefined;
638
- }
639
-
640
- export interface CreateCoinbaseDepositResponse {
641
- id: string;
642
- url: string;
643
- }
644
-
645
- export interface GetCoinbaseDepositRequest {
646
- deposit_id: string;
647
- }
648
-
649
- export interface ListCoinbaseDepositsRequest {
650
- }
651
-
652
- export interface ListCoinbaseDepositsResponse {
653
- items: Deposit[];
654
- }
655
-
656
- export interface DeleteCoinbaseDepositRequest {
657
- deposit_id: string;
658
- }
659
-
660
- export interface DeleteCoinbaseDepositResponse {
661
- }
662
-
663
670
  export interface CreateStripeDepositRequest {
664
671
  amount_cents: number;
665
672
  promocode?: string | undefined;
673
+ team_id?: string | undefined;
666
674
  }
667
675
 
668
676
  export interface CreateStripeDepositResponse {
@@ -670,19 +678,10 @@ export interface CreateStripeDepositResponse {
670
678
  url: string;
671
679
  }
672
680
 
673
- export interface CreateDaimoDepositRequest {
674
- amount_cents: number;
675
- promocode?: string | undefined;
676
- }
677
-
678
- export interface CreateDaimoDepositResponse {
679
- id: string;
680
- url: string;
681
- }
682
-
683
681
  export interface CreateRequestNetworkDepositRequest {
684
682
  amount_cents: number;
685
683
  promocode?: string | undefined;
684
+ team_id?: string | undefined;
686
685
  }
687
686
 
688
687
  export interface CreateRequestNetworkDepositResponse {
@@ -692,6 +691,7 @@ export interface CreateRequestNetworkDepositResponse {
692
691
 
693
692
  export interface CreateStripeSubscriptionRequest {
694
693
  success_redirect_url: string;
694
+ team_id?: string | undefined;
695
695
  }
696
696
 
697
697
  export interface CreateStripeSubscriptionResponse {
@@ -699,12 +699,14 @@ export interface CreateStripeSubscriptionResponse {
699
699
  }
700
700
 
701
701
  export interface CancelStripeSubscriptionRequest {
702
+ team_id?: string | undefined;
702
703
  }
703
704
 
704
705
  export interface CancelStripeSubscriptionResponse {
705
706
  }
706
707
 
707
708
  export interface GetStripeSubscriptionStatusRequest {
709
+ team_id?: string | undefined;
708
710
  }
709
711
 
710
712
  export interface GetStripeSubscriptionStatusResponse {
@@ -715,6 +717,7 @@ export interface GetStripeSubscriptionStatusResponse {
715
717
  }
716
718
 
717
719
  export interface GetStripeCustomerPortalRequest {
720
+ team_id?: string | undefined;
718
721
  }
719
722
 
720
723
  export interface GetStripeCustomerPortalResponse {
@@ -743,6 +746,87 @@ export interface PreviewDepositResponse {
743
746
  promotion_effect?: PromotionEffect | undefined;
744
747
  }
745
748
 
749
+ export interface CreateTeamRequest {
750
+ name: string;
751
+ }
752
+
753
+ export interface GetTeamRequest {
754
+ team_id: string;
755
+ }
756
+
757
+ export interface ListTeamsRequest {
758
+ }
759
+
760
+ export interface ListTeamsResponse {
761
+ items: Team[];
762
+ }
763
+
764
+ export interface UpdateTeamRequest {
765
+ team_id: string;
766
+ name: string;
767
+ }
768
+
769
+ export interface DeleteTeamRequest {
770
+ team_id: string;
771
+ }
772
+
773
+ export interface DeleteTeamResponse {
774
+ }
775
+
776
+ export interface CreateTeamInviteRequest {
777
+ team_id: string;
778
+ max_uses?: number | undefined;
779
+ expires_in_hours?: number | undefined;
780
+ }
781
+
782
+ export interface ListTeamInvitesRequest {
783
+ team_id: string;
784
+ }
785
+
786
+ export interface ListTeamInvitesResponse {
787
+ items: TeamInvite[];
788
+ }
789
+
790
+ export interface DeleteTeamInviteRequest {
791
+ invite_id: string;
792
+ }
793
+
794
+ export interface DeleteTeamInviteResponse {
795
+ }
796
+
797
+ export interface JoinTeamRequest {
798
+ invite_code: string;
799
+ }
800
+
801
+ export interface LeaveTeamRequest {
802
+ team_id: string;
803
+ }
804
+
805
+ export interface LeaveTeamResponse {
806
+ }
807
+
808
+ export interface RemoveTeamMemberRequest {
809
+ team_id: string;
810
+ member_email: string;
811
+ }
812
+
813
+ export interface RemoveTeamMemberResponse {
814
+ }
815
+
816
+ export interface UpdateTeamMemberRoleRequest {
817
+ team_id: string;
818
+ member_email: string;
819
+ role: TeamRole;
820
+ }
821
+
822
+ export interface ListTeamMembersRequest {
823
+ team_id: string;
824
+ }
825
+
826
+ export interface ListTeamMembersResponse {
827
+ items: TeamMember[];
828
+ }
829
+
746
830
  export interface Autoscout {
747
831
  GetConfigSchema(request: GetConfigSchemaRequest): Promise<ConfigSchema>;
748
832
  /** Creating blockscout instance with config */
@@ -802,11 +886,6 @@ export interface Autoscout {
802
886
  SearchUsers(request: SearchUsersRequest): Promise<SearchUsersResponse>;
803
887
  ListDeposits(request: ListDepositsRequest): Promise<ListDepositsResponse>;
804
888
  PreviewDeposit(request: PreviewDepositRequest): Promise<PreviewDepositResponse>;
805
- CreateCoinbaseDeposit(request: CreateCoinbaseDepositRequest): Promise<CreateCoinbaseDepositResponse>;
806
- GetCoinbaseDeposit(request: GetCoinbaseDepositRequest): Promise<Deposit>;
807
- ListCoinbaseDeposits(request: ListCoinbaseDepositsRequest): Promise<ListCoinbaseDepositsResponse>;
808
- DeleteCoinbaseDeposit(request: DeleteCoinbaseDepositRequest): Promise<DeleteCoinbaseDepositResponse>;
809
- CreateDaimoDeposit(request: CreateDaimoDepositRequest): Promise<CreateDaimoDepositResponse>;
810
889
  CreateRequestNetworkDeposit(
811
890
  request: CreateRequestNetworkDepositRequest,
812
891
  ): Promise<CreateRequestNetworkDepositResponse>;
@@ -817,4 +896,17 @@ export interface Autoscout {
817
896
  request: GetStripeSubscriptionStatusRequest,
818
897
  ): Promise<GetStripeSubscriptionStatusResponse>;
819
898
  GetStripeCustomerPortal(request: GetStripeCustomerPortalRequest): Promise<GetStripeCustomerPortalResponse>;
899
+ CreateTeam(request: CreateTeamRequest): Promise<Team>;
900
+ GetTeam(request: GetTeamRequest): Promise<Team>;
901
+ ListTeams(request: ListTeamsRequest): Promise<ListTeamsResponse>;
902
+ UpdateTeam(request: UpdateTeamRequest): Promise<Team>;
903
+ DeleteTeam(request: DeleteTeamRequest): Promise<DeleteTeamResponse>;
904
+ CreateTeamInvite(request: CreateTeamInviteRequest): Promise<TeamInvite>;
905
+ ListTeamInvites(request: ListTeamInvitesRequest): Promise<ListTeamInvitesResponse>;
906
+ DeleteTeamInvite(request: DeleteTeamInviteRequest): Promise<DeleteTeamInviteResponse>;
907
+ JoinTeam(request: JoinTeamRequest): Promise<Team>;
908
+ LeaveTeam(request: LeaveTeamRequest): Promise<LeaveTeamResponse>;
909
+ RemoveTeamMember(request: RemoveTeamMemberRequest): Promise<RemoveTeamMemberResponse>;
910
+ UpdateTeamMemberRole(request: UpdateTeamMemberRoleRequest): Promise<Team>;
911
+ ListTeamMembers(request: ListTeamMembersRequest): Promise<ListTeamMembersResponse>;
820
912
  }
@@ -369,4 +369,5 @@ export interface UserOpsEntrypointConfig {
369
369
  }
370
370
  export interface AdminServicePluginConfig {
371
371
  enabled: boolean;
372
+ initial_password?: string | undefined;
372
373
  }
package/dist/v1/config.ts CHANGED
@@ -517,4 +517,5 @@ export interface UserOpsEntrypointConfig {
517
517
 
518
518
  export interface AdminServicePluginConfig {
519
519
  enabled: boolean;
520
+ initial_password?: string | undefined;
520
521
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blockscout/autoscout-types",
3
- "version": "1.13.1",
3
+ "version": "1.14.0-alpha.0",
4
4
  "description": "TypeScript definitions for Autoscout microservice",
5
5
  "main": "./index.js",
6
6
  "types": "./index.d.ts",