@raystack/proton 0.1.0-ce225175aa066e6f296bc489293bb83ed0edcef6

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.
Files changed (197) hide show
  1. package/google/api/annotations_pb.ts +33 -0
  2. package/google/api/field_behavior.ts +95 -0
  3. package/google/api/field_behavior_pb.ts +139 -0
  4. package/google/api/http.ts +695 -0
  5. package/google/api/http_pb.ts +547 -0
  6. package/google/api/httpbody.ts +159 -0
  7. package/google/api/httpbody_pb.ts +122 -0
  8. package/google/protobuf/any.ts +322 -0
  9. package/google/protobuf/descriptor.ts +3475 -0
  10. package/google/protobuf/duration.ts +231 -0
  11. package/google/protobuf/struct.ts +484 -0
  12. package/google/protobuf/timestamp.ts +290 -0
  13. package/google/protobuf/wrappers.ts +752 -0
  14. package/package.json +47 -0
  15. package/protoc-gen-openapiv2/options/annotations_pb.ts +78 -0
  16. package/protoc-gen-openapiv2/options/openapiv2.ts +3110 -0
  17. package/protoc-gen-openapiv2/options/openapiv2_pb.ts +1995 -0
  18. package/raystack/assets/index.ts +29 -0
  19. package/raystack/assets/v1beta1/bucket.ts +362 -0
  20. package/raystack/assets/v1beta1/bucket_pb.ts +233 -0
  21. package/raystack/assets/v1beta1/dashboard.ts +426 -0
  22. package/raystack/assets/v1beta1/dashboard_pb.ts +275 -0
  23. package/raystack/assets/v1beta1/event.ts +105 -0
  24. package/raystack/assets/v1beta1/event_pb.ts +70 -0
  25. package/raystack/assets/v1beta1/group.ts +223 -0
  26. package/raystack/assets/v1beta1/group_pb.ts +149 -0
  27. package/raystack/assets/v1beta1/job.ts +147 -0
  28. package/raystack/assets/v1beta1/job_pb.ts +100 -0
  29. package/raystack/assets/v1beta1/lineage.ts +90 -0
  30. package/raystack/assets/v1beta1/lineage_pb.ts +61 -0
  31. package/raystack/assets/v1beta1/ownership.ts +179 -0
  32. package/raystack/assets/v1beta1/ownership_pb.ts +119 -0
  33. package/raystack/assets/v1beta1/preview.ts +87 -0
  34. package/raystack/assets/v1beta1/preview_pb.ts +58 -0
  35. package/raystack/assets/v1beta1/properties.ts +116 -0
  36. package/raystack/assets/v1beta1/properties_pb.ts +63 -0
  37. package/raystack/assets/v1beta1/resource.ts +149 -0
  38. package/raystack/assets/v1beta1/resource_pb.ts +96 -0
  39. package/raystack/assets/v1beta1/schema.ts +421 -0
  40. package/raystack/assets/v1beta1/schema_pb.ts +262 -0
  41. package/raystack/assets/v1beta1/table.ts +408 -0
  42. package/raystack/assets/v1beta1/table_pb.ts +266 -0
  43. package/raystack/assets/v1beta1/timestamp.ts +158 -0
  44. package/raystack/assets/v1beta1/timestamp_pb.ts +107 -0
  45. package/raystack/assets/v1beta1/topic.ts +253 -0
  46. package/raystack/assets/v1beta1/topic_pb.ts +171 -0
  47. package/raystack/assets/v1beta1/user.ts +451 -0
  48. package/raystack/assets/v1beta1/user_pb.ts +292 -0
  49. package/raystack/assets/v1beta2/application.ts +125 -0
  50. package/raystack/assets/v1beta2/application_pb.ts +79 -0
  51. package/raystack/assets/v1beta2/asset.ts +269 -0
  52. package/raystack/assets/v1beta2/asset_pb.ts +157 -0
  53. package/raystack/assets/v1beta2/bucket.ts +341 -0
  54. package/raystack/assets/v1beta2/bucket_pb.ts +215 -0
  55. package/raystack/assets/v1beta2/common.ts +392 -0
  56. package/raystack/assets/v1beta2/common_pb.ts +258 -0
  57. package/raystack/assets/v1beta2/dashboard.ts +393 -0
  58. package/raystack/assets/v1beta2/dashboard_pb.ts +247 -0
  59. package/raystack/assets/v1beta2/experiment.ts +274 -0
  60. package/raystack/assets/v1beta2/experiment_pb.ts +180 -0
  61. package/raystack/assets/v1beta2/feature_table.ts +387 -0
  62. package/raystack/assets/v1beta2/feature_table_pb.ts +237 -0
  63. package/raystack/assets/v1beta2/group.ts +178 -0
  64. package/raystack/assets/v1beta2/group_pb.ts +118 -0
  65. package/raystack/assets/v1beta2/job.ts +99 -0
  66. package/raystack/assets/v1beta2/job_pb.ts +65 -0
  67. package/raystack/assets/v1beta2/metric.ts +163 -0
  68. package/raystack/assets/v1beta2/metric_pb.ts +105 -0
  69. package/raystack/assets/v1beta2/model.ts +519 -0
  70. package/raystack/assets/v1beta2/model_pb.ts +322 -0
  71. package/raystack/assets/v1beta2/table.ts +663 -0
  72. package/raystack/assets/v1beta2/table_pb.ts +409 -0
  73. package/raystack/assets/v1beta2/topic.ts +275 -0
  74. package/raystack/assets/v1beta2/topic_pb.ts +181 -0
  75. package/raystack/assets/v1beta2/user.ts +433 -0
  76. package/raystack/assets/v1beta2/user_pb.ts +277 -0
  77. package/raystack/common/index.ts +3 -0
  78. package/raystack/common/v1/service-CommonService_connectquery.ts +21 -0
  79. package/raystack/common/v1/service.client.ts +37 -0
  80. package/raystack/common/v1/service.ts +245 -0
  81. package/raystack/common/v1/service_connect.ts +26 -0
  82. package/raystack/common/v1/service_pb.ts +149 -0
  83. package/raystack/compass/index.ts +3 -0
  84. package/raystack/compass/v1beta1/service-CompassService_connectquery.ts +605 -0
  85. package/raystack/compass/v1beta1/service.client.ts +594 -0
  86. package/raystack/compass/v1beta1/service.ts +8169 -0
  87. package/raystack/compass/v1beta1/service_connect.ts +407 -0
  88. package/raystack/compass/v1beta1/service_pb.ts +4975 -0
  89. package/raystack/entropy/index.ts +6 -0
  90. package/raystack/entropy/v1beta1/module-ModuleService_connectquery.ts +77 -0
  91. package/raystack/entropy/v1beta1/module.client.ts +89 -0
  92. package/raystack/entropy/v1beta1/module.ts +692 -0
  93. package/raystack/entropy/v1beta1/module_connect.ts +62 -0
  94. package/raystack/entropy/v1beta1/module_pb.ts +445 -0
  95. package/raystack/entropy/v1beta1/resource-ResourceService_connectquery.ts +105 -0
  96. package/raystack/entropy/v1beta1/resource.client.ts +129 -0
  97. package/raystack/entropy/v1beta1/resource.ts +1817 -0
  98. package/raystack/entropy/v1beta1/resource_connect.ts +89 -0
  99. package/raystack/entropy/v1beta1/resource_pb.ts +1092 -0
  100. package/raystack/frontier/index.ts +7 -0
  101. package/raystack/frontier/v1beta1/admin-AdminService_connectquery.ts +756 -0
  102. package/raystack/frontier/v1beta1/admin.client.ts +849 -0
  103. package/raystack/frontier/v1beta1/admin.ts +9007 -0
  104. package/raystack/frontier/v1beta1/admin_connect.ts +573 -0
  105. package/raystack/frontier/v1beta1/admin_pb.ts +5615 -0
  106. package/raystack/frontier/v1beta1/frontier-FrontierService_connectquery.ts +2399 -0
  107. package/raystack/frontier/v1beta1/frontier.client.ts +2307 -0
  108. package/raystack/frontier/v1beta1/frontier.ts +23706 -0
  109. package/raystack/frontier/v1beta1/frontier_connect.ts +1574 -0
  110. package/raystack/frontier/v1beta1/frontier_pb.ts +15258 -0
  111. package/raystack/frontier/v1beta1/models.ts +7433 -0
  112. package/raystack/frontier/v1beta1/models_pb.ts +4345 -0
  113. package/raystack/guardian/index.ts +3 -0
  114. package/raystack/guardian/v1beta1/guardian-GuardianService_connectquery.ts +569 -0
  115. package/raystack/guardian/v1beta1/guardian.client.ts +552 -0
  116. package/raystack/guardian/v1beta1/guardian.ts +9688 -0
  117. package/raystack/guardian/v1beta1/guardian_connect.ts +381 -0
  118. package/raystack/guardian/v1beta1/guardian_pb.ts +5858 -0
  119. package/raystack/optimus/core/v1beta1/backup-BackupService_connectquery.ts +49 -0
  120. package/raystack/optimus/core/v1beta1/backup.client.ts +63 -0
  121. package/raystack/optimus/core/v1beta1/backup.ts +708 -0
  122. package/raystack/optimus/core/v1beta1/backup_connect.ts +44 -0
  123. package/raystack/optimus/core/v1beta1/backup_pb.ts +406 -0
  124. package/raystack/optimus/core/v1beta1/job_run-JobRunService_connectquery.ts +71 -0
  125. package/raystack/optimus/core/v1beta1/job_run.client.ts +96 -0
  126. package/raystack/optimus/core/v1beta1/job_run.ts +1008 -0
  127. package/raystack/optimus/core/v1beta1/job_run_connect.ts +63 -0
  128. package/raystack/optimus/core/v1beta1/job_run_pb.ts +612 -0
  129. package/raystack/optimus/core/v1beta1/job_spec-JobSpecificationService_connectquery.ts +249 -0
  130. package/raystack/optimus/core/v1beta1/job_spec.client.ts +363 -0
  131. package/raystack/optimus/core/v1beta1/job_spec.ts +5134 -0
  132. package/raystack/optimus/core/v1beta1/job_spec_connect.ts +233 -0
  133. package/raystack/optimus/core/v1beta1/job_spec_pb.ts +3196 -0
  134. package/raystack/optimus/core/v1beta1/namespace-NamespaceService_connectquery.ts +55 -0
  135. package/raystack/optimus/core/v1beta1/namespace.client.ts +75 -0
  136. package/raystack/optimus/core/v1beta1/namespace.ts +477 -0
  137. package/raystack/optimus/core/v1beta1/namespace_connect.ts +50 -0
  138. package/raystack/optimus/core/v1beta1/namespace_pb.ts +291 -0
  139. package/raystack/optimus/core/v1beta1/project-ProjectService_connectquery.ts +55 -0
  140. package/raystack/optimus/core/v1beta1/project.client.ts +75 -0
  141. package/raystack/optimus/core/v1beta1/project.ts +520 -0
  142. package/raystack/optimus/core/v1beta1/project_connect.ts +50 -0
  143. package/raystack/optimus/core/v1beta1/project_pb.ts +322 -0
  144. package/raystack/optimus/core/v1beta1/replay-ReplayService_connectquery.ts +63 -0
  145. package/raystack/optimus/core/v1beta1/replay.client.ts +76 -0
  146. package/raystack/optimus/core/v1beta1/replay.ts +881 -0
  147. package/raystack/optimus/core/v1beta1/replay_connect.ts +53 -0
  148. package/raystack/optimus/core/v1beta1/replay_pb.ts +522 -0
  149. package/raystack/optimus/core/v1beta1/resource-ResourceService_connectquery.ts +104 -0
  150. package/raystack/optimus/core/v1beta1/resource.client.ts +148 -0
  151. package/raystack/optimus/core/v1beta1/resource.ts +1329 -0
  152. package/raystack/optimus/core/v1beta1/resource_connect.ts +96 -0
  153. package/raystack/optimus/core/v1beta1/resource_pb.ts +791 -0
  154. package/raystack/optimus/core/v1beta1/runtime-RuntimeService_connectquery.ts +23 -0
  155. package/raystack/optimus/core/v1beta1/runtime.client.ts +45 -0
  156. package/raystack/optimus/core/v1beta1/runtime.ts +131 -0
  157. package/raystack/optimus/core/v1beta1/runtime_connect.ts +30 -0
  158. package/raystack/optimus/core/v1beta1/runtime_pb.ts +82 -0
  159. package/raystack/optimus/core/v1beta1/secret-SecretService_connectquery.ts +71 -0
  160. package/raystack/optimus/core/v1beta1/secret.client.ts +92 -0
  161. package/raystack/optimus/core/v1beta1/secret.ts +619 -0
  162. package/raystack/optimus/core/v1beta1/secret_connect.ts +61 -0
  163. package/raystack/optimus/core/v1beta1/secret_pb.ts +393 -0
  164. package/raystack/optimus/core/v1beta1/status.ts +113 -0
  165. package/raystack/optimus/core/v1beta1/status_pb.ts +101 -0
  166. package/raystack/optimus/integration/v1beta1/event.ts +531 -0
  167. package/raystack/optimus/integration/v1beta1/event_pb.ts +362 -0
  168. package/raystack/optimus/plugins/v1beta1/dependency_resolver-DependencyResolverModService_connectquery.ts +72 -0
  169. package/raystack/optimus/plugins/v1beta1/dependency_resolver.client.ts +100 -0
  170. package/raystack/optimus/plugins/v1beta1/dependency_resolver.ts +950 -0
  171. package/raystack/optimus/plugins/v1beta1/dependency_resolver_connect.ts +65 -0
  172. package/raystack/optimus/plugins/v1beta1/dependency_resolver_pb.ts +604 -0
  173. package/raystack/predator/index.ts +2 -0
  174. package/raystack/predator/v1beta1/metrics_log.ts +457 -0
  175. package/raystack/predator/v1beta1/metrics_log_pb.ts +277 -0
  176. package/raystack/predator/v1beta1/result_log.ts +390 -0
  177. package/raystack/predator/v1beta1/result_log_pb.ts +235 -0
  178. package/raystack/raccoon/index.ts +3 -0
  179. package/raystack/raccoon/v1beta1/raccoon-EventService_connectquery.ts +21 -0
  180. package/raystack/raccoon/v1beta1/raccoon.client.ts +37 -0
  181. package/raystack/raccoon/v1beta1/raccoon.ts +442 -0
  182. package/raystack/raccoon/v1beta1/raccoon_connect.ts +26 -0
  183. package/raystack/raccoon/v1beta1/raccoon_pb.ts +324 -0
  184. package/raystack/siren/index.ts +3 -0
  185. package/raystack/siren/v1beta1/siren-SirenService_connectquery.ts +497 -0
  186. package/raystack/siren/v1beta1/siren.client.ts +479 -0
  187. package/raystack/siren/v1beta1/siren.ts +6507 -0
  188. package/raystack/siren/v1beta1/siren_connect.ts +332 -0
  189. package/raystack/siren/v1beta1/siren_pb.ts +3853 -0
  190. package/raystack/stencil/index.ts +3 -0
  191. package/raystack/stencil/v1beta1/stencil-StencilService_connectquery.ts +231 -0
  192. package/raystack/stencil/v1beta1/stencil.client.ts +232 -0
  193. package/raystack/stencil/v1beta1/stencil.ts +2716 -0
  194. package/raystack/stencil/v1beta1/stencil_connect.ts +161 -0
  195. package/raystack/stencil/v1beta1/stencil_pb.ts +1729 -0
  196. package/validate/validate.ts +4130 -0
  197. package/validate/validate_pb.ts +2621 -0
@@ -0,0 +1,849 @@
1
+ // @generated by protobuf-ts 2.11.1
2
+ // @generated from protobuf file "raystack/frontier/v1beta1/admin.proto" (package "raystack.frontier.v1beta1", syntax proto3)
3
+ // tslint:disable
4
+ import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
5
+ import type { ServiceInfo } from "@protobuf-ts/runtime-rpc";
6
+ import { AdminService } from "./admin";
7
+ import type { SearchInvoicesResponse } from "./admin";
8
+ import type { SearchInvoicesRequest } from "./admin";
9
+ import type { DeleteProspectResponse } from "./admin";
10
+ import type { DeleteProspectRequest } from "./admin";
11
+ import type { UpdateProspectResponse } from "./admin";
12
+ import type { UpdateProspectRequest } from "./admin";
13
+ import type { GetProspectResponse } from "./admin";
14
+ import type { GetProspectRequest } from "./admin";
15
+ import type { ListProspectsResponse } from "./admin";
16
+ import type { ListProspectsRequest } from "./admin";
17
+ import type { CreateProspectResponse } from "./admin";
18
+ import type { CreateProspectRequest } from "./admin";
19
+ import type { UpdateBillingAccountDetailsResponse } from "./admin";
20
+ import type { UpdateBillingAccountDetailsRequest } from "./admin";
21
+ import type { GetBillingAccountDetailsResponse } from "./admin";
22
+ import type { GetBillingAccountDetailsRequest } from "./admin";
23
+ import type { UpdateBillingAccountLimitsResponse } from "./admin";
24
+ import type { UpdateBillingAccountLimitsRequest } from "./admin";
25
+ import type { ListWebhooksResponse } from "./admin";
26
+ import type { ListWebhooksRequest } from "./admin";
27
+ import type { DeleteWebhookResponse } from "./admin";
28
+ import type { DeleteWebhookRequest } from "./admin";
29
+ import type { UpdateWebhookResponse } from "./admin";
30
+ import type { UpdateWebhookRequest } from "./admin";
31
+ import type { CreateWebhookResponse } from "./admin";
32
+ import type { CreateWebhookRequest } from "./admin";
33
+ import type { RevertBillingUsageResponse } from "./admin";
34
+ import type { RevertBillingUsageRequest } from "./admin";
35
+ import type { ListAllBillingAccountsResponse } from "./admin";
36
+ import type { ListAllBillingAccountsRequest } from "./admin";
37
+ import type { GenerateInvoicesResponse } from "./admin";
38
+ import type { GenerateInvoicesRequest } from "./admin";
39
+ import type { ListAllInvoicesResponse } from "./admin";
40
+ import type { ListAllInvoicesRequest } from "./admin";
41
+ import type { DelegatedCheckoutResponse } from "./admin";
42
+ import type { DelegatedCheckoutRequest } from "./admin";
43
+ import type { RemovePlatformUserResponse } from "./admin";
44
+ import type { RemovePlatformUserRequest } from "./admin";
45
+ import type { ListPlatformUsersResponse } from "./admin";
46
+ import type { ListPlatformUsersRequest } from "./admin";
47
+ import type { AddPlatformUserResponse } from "./admin";
48
+ import type { AddPlatformUserRequest } from "./admin";
49
+ import type { CheckFederatedResourcePermissionResponse } from "./admin";
50
+ import type { CheckFederatedResourcePermissionRequest } from "./admin";
51
+ import type { CreatePreferencesResponse } from "./admin";
52
+ import type { CreatePreferencesRequest } from "./admin";
53
+ import type { ListPreferencesResponse } from "./admin";
54
+ import type { ListPreferencesRequest } from "./admin";
55
+ import type { DeletePermissionResponse } from "./admin";
56
+ import type { DeletePermissionRequest } from "./admin";
57
+ import type { UpdatePermissionResponse } from "./admin";
58
+ import type { UpdatePermissionRequest } from "./admin";
59
+ import type { CreatePermissionResponse } from "./admin";
60
+ import type { CreatePermissionRequest } from "./admin";
61
+ import type { DeleteRoleResponse } from "./admin";
62
+ import type { DeleteRoleRequest } from "./admin";
63
+ import type { UpdateRoleResponse } from "./admin";
64
+ import type { UpdateRoleRequest } from "./admin";
65
+ import type { CreateRoleResponse } from "./admin";
66
+ import type { CreateRoleRequest } from "./admin";
67
+ import type { ListResourcesResponse } from "./admin";
68
+ import type { ListResourcesRequest } from "./admin";
69
+ import type { ListRelationsResponse } from "./admin";
70
+ import type { ListRelationsRequest } from "./admin";
71
+ import type { ListProjectsResponse } from "./admin";
72
+ import type { ListProjectsRequest } from "./admin";
73
+ import type { ListOrganizationsKycResponse } from "./admin";
74
+ import type { ListOrganizationsKycRequest } from "./admin";
75
+ import type { SetOrganizationKycResponse } from "./admin";
76
+ import type { SetOrganizationKycRequest } from "./admin";
77
+ import type { SearchUserProjectsResponse } from "./admin";
78
+ import type { SearchUserProjectsRequest } from "./admin";
79
+ import type { SearchUserOrganizationsResponse } from "./admin";
80
+ import type { SearchUserOrganizationsRequest } from "./admin";
81
+ import type { SearchUsersResponse } from "./admin";
82
+ import type { SearchUsersRequest } from "./admin";
83
+ import type { ExportUsersRequest } from "./admin";
84
+ import type { ExportOrganizationTokensRequest } from "./admin";
85
+ import type { ExportOrganizationProjectsRequest } from "./admin";
86
+ import type { ExportOrganizationUsersRequest } from "./admin";
87
+ import type { HttpBody } from "../../../google/api/httpbody";
88
+ import type { ExportOrganizationsRequest } from "./models";
89
+ import type { ServerStreamingCall } from "@protobuf-ts/runtime-rpc";
90
+ import type { SearchOrganizationServiceUsersResponse } from "./admin";
91
+ import type { SearchOrganizationServiceUsersRequest } from "./admin";
92
+ import type { SearchOrganizationServiceUserCredentialsResponse } from "./admin";
93
+ import type { SearchOrganizationServiceUserCredentialsRequest } from "./admin";
94
+ import type { SearchOrganizationTokensResponse } from "./admin";
95
+ import type { SearchOrganizationTokensRequest } from "./admin";
96
+ import type { SearchOrganizationInvoicesResponse } from "./admin";
97
+ import type { SearchOrganizationInvoicesRequest } from "./admin";
98
+ import type { SearchOrganizationProjectsResponse } from "./admin";
99
+ import type { SearchOrganizationProjectsRequest } from "./admin";
100
+ import type { SearchProjectUsersResponse } from "./admin";
101
+ import type { SearchProjectUsersRequest } from "./admin";
102
+ import type { SearchOrganizationUsersResponse } from "./admin";
103
+ import type { SearchOrganizationUsersRequest } from "./admin";
104
+ import type { SearchOrganizationsResponse } from "./admin";
105
+ import type { SearchOrganizationsRequest } from "./admin";
106
+ import type { AdminCreateOrganizationResponse } from "./admin";
107
+ import type { AdminCreateOrganizationRequest } from "./admin";
108
+ import type { ListAllOrganizationsResponse } from "./admin";
109
+ import type { ListAllOrganizationsRequest } from "./admin";
110
+ import type { ListGroupsResponse } from "./admin";
111
+ import type { ListGroupsRequest } from "./admin";
112
+ import type { ListAllServiceUsersResponse } from "./admin";
113
+ import type { ListAllServiceUsersRequest } from "./admin";
114
+ import { stackIntercept } from "@protobuf-ts/runtime-rpc";
115
+ import type { ListAllUsersResponse } from "./admin";
116
+ import type { ListAllUsersRequest } from "./admin";
117
+ import type { UnaryCall } from "@protobuf-ts/runtime-rpc";
118
+ import type { RpcOptions } from "@protobuf-ts/runtime-rpc";
119
+ /**
120
+ * @generated from protobuf service raystack.frontier.v1beta1.AdminService
121
+ */
122
+ export interface IAdminServiceClient {
123
+ /**
124
+ * Users
125
+ *
126
+ * @generated from protobuf rpc: ListAllUsers
127
+ */
128
+ listAllUsers(input: ListAllUsersRequest, options?: RpcOptions): UnaryCall<ListAllUsersRequest, ListAllUsersResponse>;
129
+ /**
130
+ * @generated from protobuf rpc: ListAllServiceUsers
131
+ */
132
+ listAllServiceUsers(input: ListAllServiceUsersRequest, options?: RpcOptions): UnaryCall<ListAllServiceUsersRequest, ListAllServiceUsersResponse>;
133
+ /**
134
+ * Group
135
+ *
136
+ * @generated from protobuf rpc: ListGroups
137
+ */
138
+ listGroups(input: ListGroupsRequest, options?: RpcOptions): UnaryCall<ListGroupsRequest, ListGroupsResponse>;
139
+ /**
140
+ * Organizations
141
+ *
142
+ * @generated from protobuf rpc: ListAllOrganizations
143
+ */
144
+ listAllOrganizations(input: ListAllOrganizationsRequest, options?: RpcOptions): UnaryCall<ListAllOrganizationsRequest, ListAllOrganizationsResponse>;
145
+ /**
146
+ * @generated from protobuf rpc: AdminCreateOrganization
147
+ */
148
+ adminCreateOrganization(input: AdminCreateOrganizationRequest, options?: RpcOptions): UnaryCall<AdminCreateOrganizationRequest, AdminCreateOrganizationResponse>;
149
+ /**
150
+ * @generated from protobuf rpc: SearchOrganizations
151
+ */
152
+ searchOrganizations(input: SearchOrganizationsRequest, options?: RpcOptions): UnaryCall<SearchOrganizationsRequest, SearchOrganizationsResponse>;
153
+ /**
154
+ * @generated from protobuf rpc: SearchOrganizationUsers
155
+ */
156
+ searchOrganizationUsers(input: SearchOrganizationUsersRequest, options?: RpcOptions): UnaryCall<SearchOrganizationUsersRequest, SearchOrganizationUsersResponse>;
157
+ /**
158
+ * @generated from protobuf rpc: SearchProjectUsers
159
+ */
160
+ searchProjectUsers(input: SearchProjectUsersRequest, options?: RpcOptions): UnaryCall<SearchProjectUsersRequest, SearchProjectUsersResponse>;
161
+ /**
162
+ * @generated from protobuf rpc: SearchOrganizationProjects
163
+ */
164
+ searchOrganizationProjects(input: SearchOrganizationProjectsRequest, options?: RpcOptions): UnaryCall<SearchOrganizationProjectsRequest, SearchOrganizationProjectsResponse>;
165
+ /**
166
+ * @generated from protobuf rpc: SearchOrganizationInvoices
167
+ */
168
+ searchOrganizationInvoices(input: SearchOrganizationInvoicesRequest, options?: RpcOptions): UnaryCall<SearchOrganizationInvoicesRequest, SearchOrganizationInvoicesResponse>;
169
+ /**
170
+ * @generated from protobuf rpc: SearchOrganizationTokens
171
+ */
172
+ searchOrganizationTokens(input: SearchOrganizationTokensRequest, options?: RpcOptions): UnaryCall<SearchOrganizationTokensRequest, SearchOrganizationTokensResponse>;
173
+ /**
174
+ * @generated from protobuf rpc: SearchOrganizationServiceUserCredentials
175
+ */
176
+ searchOrganizationServiceUserCredentials(input: SearchOrganizationServiceUserCredentialsRequest, options?: RpcOptions): UnaryCall<SearchOrganizationServiceUserCredentialsRequest, SearchOrganizationServiceUserCredentialsResponse>;
177
+ /**
178
+ * @generated from protobuf rpc: SearchOrganizationServiceUsers
179
+ */
180
+ searchOrganizationServiceUsers(input: SearchOrganizationServiceUsersRequest, options?: RpcOptions): UnaryCall<SearchOrganizationServiceUsersRequest, SearchOrganizationServiceUsersResponse>;
181
+ /**
182
+ * buf:lint:ignore RPC_RESPONSE_STANDARD_NAME
183
+ * buf:lint:ignore RPC_REQUEST_RESPONSE_UNIQUE
184
+ *
185
+ * @generated from protobuf rpc: ExportOrganizations
186
+ */
187
+ exportOrganizations(input: ExportOrganizationsRequest, options?: RpcOptions): ServerStreamingCall<ExportOrganizationsRequest, HttpBody>;
188
+ /**
189
+ * buf:lint:ignore RPC_RESPONSE_STANDARD_NAME
190
+ * buf:lint:ignore RPC_REQUEST_RESPONSE_UNIQUE
191
+ *
192
+ * @generated from protobuf rpc: ExportOrganizationUsers
193
+ */
194
+ exportOrganizationUsers(input: ExportOrganizationUsersRequest, options?: RpcOptions): ServerStreamingCall<ExportOrganizationUsersRequest, HttpBody>;
195
+ /**
196
+ * buf:lint:ignore RPC_RESPONSE_STANDARD_NAME
197
+ * buf:lint:ignore RPC_REQUEST_RESPONSE_UNIQUE
198
+ *
199
+ * @generated from protobuf rpc: ExportOrganizationProjects
200
+ */
201
+ exportOrganizationProjects(input: ExportOrganizationProjectsRequest, options?: RpcOptions): ServerStreamingCall<ExportOrganizationProjectsRequest, HttpBody>;
202
+ /**
203
+ * buf:lint:ignore RPC_RESPONSE_STANDARD_NAME
204
+ * buf:lint:ignore RPC_REQUEST_RESPONSE_UNIQUE
205
+ *
206
+ * @generated from protobuf rpc: ExportOrganizationTokens
207
+ */
208
+ exportOrganizationTokens(input: ExportOrganizationTokensRequest, options?: RpcOptions): ServerStreamingCall<ExportOrganizationTokensRequest, HttpBody>;
209
+ /**
210
+ * buf:lint:ignore RPC_RESPONSE_STANDARD_NAME
211
+ * buf:lint:ignore RPC_REQUEST_RESPONSE_UNIQUE
212
+ *
213
+ * @generated from protobuf rpc: ExportUsers
214
+ */
215
+ exportUsers(input: ExportUsersRequest, options?: RpcOptions): ServerStreamingCall<ExportUsersRequest, HttpBody>;
216
+ /**
217
+ * @generated from protobuf rpc: SearchUsers
218
+ */
219
+ searchUsers(input: SearchUsersRequest, options?: RpcOptions): UnaryCall<SearchUsersRequest, SearchUsersResponse>;
220
+ /**
221
+ * @generated from protobuf rpc: SearchUserOrganizations
222
+ */
223
+ searchUserOrganizations(input: SearchUserOrganizationsRequest, options?: RpcOptions): UnaryCall<SearchUserOrganizationsRequest, SearchUserOrganizationsResponse>;
224
+ /**
225
+ * @generated from protobuf rpc: SearchUserProjects
226
+ */
227
+ searchUserProjects(input: SearchUserProjectsRequest, options?: RpcOptions): UnaryCall<SearchUserProjectsRequest, SearchUserProjectsResponse>;
228
+ /**
229
+ * @generated from protobuf rpc: SetOrganizationKyc
230
+ */
231
+ setOrganizationKyc(input: SetOrganizationKycRequest, options?: RpcOptions): UnaryCall<SetOrganizationKycRequest, SetOrganizationKycResponse>;
232
+ /**
233
+ * @generated from protobuf rpc: ListOrganizationsKyc
234
+ */
235
+ listOrganizationsKyc(input: ListOrganizationsKycRequest, options?: RpcOptions): UnaryCall<ListOrganizationsKycRequest, ListOrganizationsKycResponse>;
236
+ /**
237
+ * Projects
238
+ *
239
+ * @generated from protobuf rpc: ListProjects
240
+ */
241
+ listProjects(input: ListProjectsRequest, options?: RpcOptions): UnaryCall<ListProjectsRequest, ListProjectsResponse>;
242
+ /**
243
+ * Relations
244
+ *
245
+ * @generated from protobuf rpc: ListRelations
246
+ */
247
+ listRelations(input: ListRelationsRequest, options?: RpcOptions): UnaryCall<ListRelationsRequest, ListRelationsResponse>;
248
+ /**
249
+ * Resources
250
+ *
251
+ * @generated from protobuf rpc: ListResources
252
+ */
253
+ listResources(input: ListResourcesRequest, options?: RpcOptions): UnaryCall<ListResourcesRequest, ListResourcesResponse>;
254
+ /**
255
+ * Roles
256
+ *
257
+ * @generated from protobuf rpc: CreateRole
258
+ */
259
+ createRole(input: CreateRoleRequest, options?: RpcOptions): UnaryCall<CreateRoleRequest, CreateRoleResponse>;
260
+ /**
261
+ * @generated from protobuf rpc: UpdateRole
262
+ */
263
+ updateRole(input: UpdateRoleRequest, options?: RpcOptions): UnaryCall<UpdateRoleRequest, UpdateRoleResponse>;
264
+ /**
265
+ * @generated from protobuf rpc: DeleteRole
266
+ */
267
+ deleteRole(input: DeleteRoleRequest, options?: RpcOptions): UnaryCall<DeleteRoleRequest, DeleteRoleResponse>;
268
+ /**
269
+ * Permissions
270
+ *
271
+ * @generated from protobuf rpc: CreatePermission
272
+ */
273
+ createPermission(input: CreatePermissionRequest, options?: RpcOptions): UnaryCall<CreatePermissionRequest, CreatePermissionResponse>;
274
+ /**
275
+ * @generated from protobuf rpc: UpdatePermission
276
+ */
277
+ updatePermission(input: UpdatePermissionRequest, options?: RpcOptions): UnaryCall<UpdatePermissionRequest, UpdatePermissionResponse>;
278
+ /**
279
+ * @generated from protobuf rpc: DeletePermission
280
+ */
281
+ deletePermission(input: DeletePermissionRequest, options?: RpcOptions): UnaryCall<DeletePermissionRequest, DeletePermissionResponse>;
282
+ /**
283
+ * Preferences
284
+ *
285
+ * @generated from protobuf rpc: ListPreferences
286
+ */
287
+ listPreferences(input: ListPreferencesRequest, options?: RpcOptions): UnaryCall<ListPreferencesRequest, ListPreferencesResponse>;
288
+ /**
289
+ * @generated from protobuf rpc: CreatePreferences
290
+ */
291
+ createPreferences(input: CreatePreferencesRequest, options?: RpcOptions): UnaryCall<CreatePreferencesRequest, CreatePreferencesResponse>;
292
+ /**
293
+ * Check
294
+ *
295
+ * @generated from protobuf rpc: CheckFederatedResourcePermission
296
+ */
297
+ checkFederatedResourcePermission(input: CheckFederatedResourcePermissionRequest, options?: RpcOptions): UnaryCall<CheckFederatedResourcePermissionRequest, CheckFederatedResourcePermissionResponse>;
298
+ /**
299
+ * Platform
300
+ *
301
+ * @generated from protobuf rpc: AddPlatformUser
302
+ */
303
+ addPlatformUser(input: AddPlatformUserRequest, options?: RpcOptions): UnaryCall<AddPlatformUserRequest, AddPlatformUserResponse>;
304
+ /**
305
+ * @generated from protobuf rpc: ListPlatformUsers
306
+ */
307
+ listPlatformUsers(input: ListPlatformUsersRequest, options?: RpcOptions): UnaryCall<ListPlatformUsersRequest, ListPlatformUsersResponse>;
308
+ /**
309
+ * @generated from protobuf rpc: RemovePlatformUser
310
+ */
311
+ removePlatformUser(input: RemovePlatformUserRequest, options?: RpcOptions): UnaryCall<RemovePlatformUserRequest, RemovePlatformUserResponse>;
312
+ /**
313
+ * Checkout
314
+ *
315
+ * @generated from protobuf rpc: DelegatedCheckout
316
+ */
317
+ delegatedCheckout(input: DelegatedCheckoutRequest, options?: RpcOptions): UnaryCall<DelegatedCheckoutRequest, DelegatedCheckoutResponse>;
318
+ /**
319
+ * @generated from protobuf rpc: ListAllInvoices
320
+ */
321
+ listAllInvoices(input: ListAllInvoicesRequest, options?: RpcOptions): UnaryCall<ListAllInvoicesRequest, ListAllInvoicesResponse>;
322
+ /**
323
+ * @generated from protobuf rpc: GenerateInvoices
324
+ */
325
+ generateInvoices(input: GenerateInvoicesRequest, options?: RpcOptions): UnaryCall<GenerateInvoicesRequest, GenerateInvoicesResponse>;
326
+ /**
327
+ * @generated from protobuf rpc: ListAllBillingAccounts
328
+ */
329
+ listAllBillingAccounts(input: ListAllBillingAccountsRequest, options?: RpcOptions): UnaryCall<ListAllBillingAccountsRequest, ListAllBillingAccountsResponse>;
330
+ /**
331
+ * Usage
332
+ *
333
+ * @generated from protobuf rpc: RevertBillingUsage
334
+ */
335
+ revertBillingUsage(input: RevertBillingUsageRequest, options?: RpcOptions): UnaryCall<RevertBillingUsageRequest, RevertBillingUsageResponse>;
336
+ /**
337
+ * Webhooks
338
+ *
339
+ * @generated from protobuf rpc: CreateWebhook
340
+ */
341
+ createWebhook(input: CreateWebhookRequest, options?: RpcOptions): UnaryCall<CreateWebhookRequest, CreateWebhookResponse>;
342
+ /**
343
+ * @generated from protobuf rpc: UpdateWebhook
344
+ */
345
+ updateWebhook(input: UpdateWebhookRequest, options?: RpcOptions): UnaryCall<UpdateWebhookRequest, UpdateWebhookResponse>;
346
+ /**
347
+ * @generated from protobuf rpc: DeleteWebhook
348
+ */
349
+ deleteWebhook(input: DeleteWebhookRequest, options?: RpcOptions): UnaryCall<DeleteWebhookRequest, DeleteWebhookResponse>;
350
+ /**
351
+ * @generated from protobuf rpc: ListWebhooks
352
+ */
353
+ listWebhooks(input: ListWebhooksRequest, options?: RpcOptions): UnaryCall<ListWebhooksRequest, ListWebhooksResponse>;
354
+ /**
355
+ * Billing Account
356
+ *
357
+ * @deprecated
358
+ * @generated from protobuf rpc: UpdateBillingAccountLimits
359
+ */
360
+ updateBillingAccountLimits(input: UpdateBillingAccountLimitsRequest, options?: RpcOptions): UnaryCall<UpdateBillingAccountLimitsRequest, UpdateBillingAccountLimitsResponse>;
361
+ /**
362
+ * GetBillingAccountDetails returns the billing account details that can be updated via UpdateBillingAccountDetails
363
+ *
364
+ * @generated from protobuf rpc: GetBillingAccountDetails
365
+ */
366
+ getBillingAccountDetails(input: GetBillingAccountDetailsRequest, options?: RpcOptions): UnaryCall<GetBillingAccountDetailsRequest, GetBillingAccountDetailsResponse>;
367
+ /**
368
+ * @generated from protobuf rpc: UpdateBillingAccountDetails
369
+ */
370
+ updateBillingAccountDetails(input: UpdateBillingAccountDetailsRequest, options?: RpcOptions): UnaryCall<UpdateBillingAccountDetailsRequest, UpdateBillingAccountDetailsResponse>;
371
+ /**
372
+ * Prospects
373
+ *
374
+ * @generated from protobuf rpc: CreateProspect
375
+ */
376
+ createProspect(input: CreateProspectRequest, options?: RpcOptions): UnaryCall<CreateProspectRequest, CreateProspectResponse>;
377
+ /**
378
+ * @generated from protobuf rpc: ListProspects
379
+ */
380
+ listProspects(input: ListProspectsRequest, options?: RpcOptions): UnaryCall<ListProspectsRequest, ListProspectsResponse>;
381
+ /**
382
+ * @generated from protobuf rpc: GetProspect
383
+ */
384
+ getProspect(input: GetProspectRequest, options?: RpcOptions): UnaryCall<GetProspectRequest, GetProspectResponse>;
385
+ /**
386
+ * @generated from protobuf rpc: UpdateProspect
387
+ */
388
+ updateProspect(input: UpdateProspectRequest, options?: RpcOptions): UnaryCall<UpdateProspectRequest, UpdateProspectResponse>;
389
+ /**
390
+ * @generated from protobuf rpc: DeleteProspect
391
+ */
392
+ deleteProspect(input: DeleteProspectRequest, options?: RpcOptions): UnaryCall<DeleteProspectRequest, DeleteProspectResponse>;
393
+ /**
394
+ * @generated from protobuf rpc: SearchInvoices
395
+ */
396
+ searchInvoices(input: SearchInvoicesRequest, options?: RpcOptions): UnaryCall<SearchInvoicesRequest, SearchInvoicesResponse>;
397
+ }
398
+ /**
399
+ * @generated from protobuf service raystack.frontier.v1beta1.AdminService
400
+ */
401
+ export class AdminServiceClient implements IAdminServiceClient, ServiceInfo {
402
+ typeName = AdminService.typeName;
403
+ methods = AdminService.methods;
404
+ options = AdminService.options;
405
+ constructor(private readonly _transport: RpcTransport) {
406
+ }
407
+ /**
408
+ * Users
409
+ *
410
+ * @generated from protobuf rpc: ListAllUsers
411
+ */
412
+ listAllUsers(input: ListAllUsersRequest, options?: RpcOptions): UnaryCall<ListAllUsersRequest, ListAllUsersResponse> {
413
+ const method = this.methods[0], opt = this._transport.mergeOptions(options);
414
+ return stackIntercept<ListAllUsersRequest, ListAllUsersResponse>("unary", this._transport, method, opt, input);
415
+ }
416
+ /**
417
+ * @generated from protobuf rpc: ListAllServiceUsers
418
+ */
419
+ listAllServiceUsers(input: ListAllServiceUsersRequest, options?: RpcOptions): UnaryCall<ListAllServiceUsersRequest, ListAllServiceUsersResponse> {
420
+ const method = this.methods[1], opt = this._transport.mergeOptions(options);
421
+ return stackIntercept<ListAllServiceUsersRequest, ListAllServiceUsersResponse>("unary", this._transport, method, opt, input);
422
+ }
423
+ /**
424
+ * Group
425
+ *
426
+ * @generated from protobuf rpc: ListGroups
427
+ */
428
+ listGroups(input: ListGroupsRequest, options?: RpcOptions): UnaryCall<ListGroupsRequest, ListGroupsResponse> {
429
+ const method = this.methods[2], opt = this._transport.mergeOptions(options);
430
+ return stackIntercept<ListGroupsRequest, ListGroupsResponse>("unary", this._transport, method, opt, input);
431
+ }
432
+ /**
433
+ * Organizations
434
+ *
435
+ * @generated from protobuf rpc: ListAllOrganizations
436
+ */
437
+ listAllOrganizations(input: ListAllOrganizationsRequest, options?: RpcOptions): UnaryCall<ListAllOrganizationsRequest, ListAllOrganizationsResponse> {
438
+ const method = this.methods[3], opt = this._transport.mergeOptions(options);
439
+ return stackIntercept<ListAllOrganizationsRequest, ListAllOrganizationsResponse>("unary", this._transport, method, opt, input);
440
+ }
441
+ /**
442
+ * @generated from protobuf rpc: AdminCreateOrganization
443
+ */
444
+ adminCreateOrganization(input: AdminCreateOrganizationRequest, options?: RpcOptions): UnaryCall<AdminCreateOrganizationRequest, AdminCreateOrganizationResponse> {
445
+ const method = this.methods[4], opt = this._transport.mergeOptions(options);
446
+ return stackIntercept<AdminCreateOrganizationRequest, AdminCreateOrganizationResponse>("unary", this._transport, method, opt, input);
447
+ }
448
+ /**
449
+ * @generated from protobuf rpc: SearchOrganizations
450
+ */
451
+ searchOrganizations(input: SearchOrganizationsRequest, options?: RpcOptions): UnaryCall<SearchOrganizationsRequest, SearchOrganizationsResponse> {
452
+ const method = this.methods[5], opt = this._transport.mergeOptions(options);
453
+ return stackIntercept<SearchOrganizationsRequest, SearchOrganizationsResponse>("unary", this._transport, method, opt, input);
454
+ }
455
+ /**
456
+ * @generated from protobuf rpc: SearchOrganizationUsers
457
+ */
458
+ searchOrganizationUsers(input: SearchOrganizationUsersRequest, options?: RpcOptions): UnaryCall<SearchOrganizationUsersRequest, SearchOrganizationUsersResponse> {
459
+ const method = this.methods[6], opt = this._transport.mergeOptions(options);
460
+ return stackIntercept<SearchOrganizationUsersRequest, SearchOrganizationUsersResponse>("unary", this._transport, method, opt, input);
461
+ }
462
+ /**
463
+ * @generated from protobuf rpc: SearchProjectUsers
464
+ */
465
+ searchProjectUsers(input: SearchProjectUsersRequest, options?: RpcOptions): UnaryCall<SearchProjectUsersRequest, SearchProjectUsersResponse> {
466
+ const method = this.methods[7], opt = this._transport.mergeOptions(options);
467
+ return stackIntercept<SearchProjectUsersRequest, SearchProjectUsersResponse>("unary", this._transport, method, opt, input);
468
+ }
469
+ /**
470
+ * @generated from protobuf rpc: SearchOrganizationProjects
471
+ */
472
+ searchOrganizationProjects(input: SearchOrganizationProjectsRequest, options?: RpcOptions): UnaryCall<SearchOrganizationProjectsRequest, SearchOrganizationProjectsResponse> {
473
+ const method = this.methods[8], opt = this._transport.mergeOptions(options);
474
+ return stackIntercept<SearchOrganizationProjectsRequest, SearchOrganizationProjectsResponse>("unary", this._transport, method, opt, input);
475
+ }
476
+ /**
477
+ * @generated from protobuf rpc: SearchOrganizationInvoices
478
+ */
479
+ searchOrganizationInvoices(input: SearchOrganizationInvoicesRequest, options?: RpcOptions): UnaryCall<SearchOrganizationInvoicesRequest, SearchOrganizationInvoicesResponse> {
480
+ const method = this.methods[9], opt = this._transport.mergeOptions(options);
481
+ return stackIntercept<SearchOrganizationInvoicesRequest, SearchOrganizationInvoicesResponse>("unary", this._transport, method, opt, input);
482
+ }
483
+ /**
484
+ * @generated from protobuf rpc: SearchOrganizationTokens
485
+ */
486
+ searchOrganizationTokens(input: SearchOrganizationTokensRequest, options?: RpcOptions): UnaryCall<SearchOrganizationTokensRequest, SearchOrganizationTokensResponse> {
487
+ const method = this.methods[10], opt = this._transport.mergeOptions(options);
488
+ return stackIntercept<SearchOrganizationTokensRequest, SearchOrganizationTokensResponse>("unary", this._transport, method, opt, input);
489
+ }
490
+ /**
491
+ * @generated from protobuf rpc: SearchOrganizationServiceUserCredentials
492
+ */
493
+ searchOrganizationServiceUserCredentials(input: SearchOrganizationServiceUserCredentialsRequest, options?: RpcOptions): UnaryCall<SearchOrganizationServiceUserCredentialsRequest, SearchOrganizationServiceUserCredentialsResponse> {
494
+ const method = this.methods[11], opt = this._transport.mergeOptions(options);
495
+ return stackIntercept<SearchOrganizationServiceUserCredentialsRequest, SearchOrganizationServiceUserCredentialsResponse>("unary", this._transport, method, opt, input);
496
+ }
497
+ /**
498
+ * @generated from protobuf rpc: SearchOrganizationServiceUsers
499
+ */
500
+ searchOrganizationServiceUsers(input: SearchOrganizationServiceUsersRequest, options?: RpcOptions): UnaryCall<SearchOrganizationServiceUsersRequest, SearchOrganizationServiceUsersResponse> {
501
+ const method = this.methods[12], opt = this._transport.mergeOptions(options);
502
+ return stackIntercept<SearchOrganizationServiceUsersRequest, SearchOrganizationServiceUsersResponse>("unary", this._transport, method, opt, input);
503
+ }
504
+ /**
505
+ * buf:lint:ignore RPC_RESPONSE_STANDARD_NAME
506
+ * buf:lint:ignore RPC_REQUEST_RESPONSE_UNIQUE
507
+ *
508
+ * @generated from protobuf rpc: ExportOrganizations
509
+ */
510
+ exportOrganizations(input: ExportOrganizationsRequest, options?: RpcOptions): ServerStreamingCall<ExportOrganizationsRequest, HttpBody> {
511
+ const method = this.methods[13], opt = this._transport.mergeOptions(options);
512
+ return stackIntercept<ExportOrganizationsRequest, HttpBody>("serverStreaming", this._transport, method, opt, input);
513
+ }
514
+ /**
515
+ * buf:lint:ignore RPC_RESPONSE_STANDARD_NAME
516
+ * buf:lint:ignore RPC_REQUEST_RESPONSE_UNIQUE
517
+ *
518
+ * @generated from protobuf rpc: ExportOrganizationUsers
519
+ */
520
+ exportOrganizationUsers(input: ExportOrganizationUsersRequest, options?: RpcOptions): ServerStreamingCall<ExportOrganizationUsersRequest, HttpBody> {
521
+ const method = this.methods[14], opt = this._transport.mergeOptions(options);
522
+ return stackIntercept<ExportOrganizationUsersRequest, HttpBody>("serverStreaming", this._transport, method, opt, input);
523
+ }
524
+ /**
525
+ * buf:lint:ignore RPC_RESPONSE_STANDARD_NAME
526
+ * buf:lint:ignore RPC_REQUEST_RESPONSE_UNIQUE
527
+ *
528
+ * @generated from protobuf rpc: ExportOrganizationProjects
529
+ */
530
+ exportOrganizationProjects(input: ExportOrganizationProjectsRequest, options?: RpcOptions): ServerStreamingCall<ExportOrganizationProjectsRequest, HttpBody> {
531
+ const method = this.methods[15], opt = this._transport.mergeOptions(options);
532
+ return stackIntercept<ExportOrganizationProjectsRequest, HttpBody>("serverStreaming", this._transport, method, opt, input);
533
+ }
534
+ /**
535
+ * buf:lint:ignore RPC_RESPONSE_STANDARD_NAME
536
+ * buf:lint:ignore RPC_REQUEST_RESPONSE_UNIQUE
537
+ *
538
+ * @generated from protobuf rpc: ExportOrganizationTokens
539
+ */
540
+ exportOrganizationTokens(input: ExportOrganizationTokensRequest, options?: RpcOptions): ServerStreamingCall<ExportOrganizationTokensRequest, HttpBody> {
541
+ const method = this.methods[16], opt = this._transport.mergeOptions(options);
542
+ return stackIntercept<ExportOrganizationTokensRequest, HttpBody>("serverStreaming", this._transport, method, opt, input);
543
+ }
544
+ /**
545
+ * buf:lint:ignore RPC_RESPONSE_STANDARD_NAME
546
+ * buf:lint:ignore RPC_REQUEST_RESPONSE_UNIQUE
547
+ *
548
+ * @generated from protobuf rpc: ExportUsers
549
+ */
550
+ exportUsers(input: ExportUsersRequest, options?: RpcOptions): ServerStreamingCall<ExportUsersRequest, HttpBody> {
551
+ const method = this.methods[17], opt = this._transport.mergeOptions(options);
552
+ return stackIntercept<ExportUsersRequest, HttpBody>("serverStreaming", this._transport, method, opt, input);
553
+ }
554
+ /**
555
+ * @generated from protobuf rpc: SearchUsers
556
+ */
557
+ searchUsers(input: SearchUsersRequest, options?: RpcOptions): UnaryCall<SearchUsersRequest, SearchUsersResponse> {
558
+ const method = this.methods[18], opt = this._transport.mergeOptions(options);
559
+ return stackIntercept<SearchUsersRequest, SearchUsersResponse>("unary", this._transport, method, opt, input);
560
+ }
561
+ /**
562
+ * @generated from protobuf rpc: SearchUserOrganizations
563
+ */
564
+ searchUserOrganizations(input: SearchUserOrganizationsRequest, options?: RpcOptions): UnaryCall<SearchUserOrganizationsRequest, SearchUserOrganizationsResponse> {
565
+ const method = this.methods[19], opt = this._transport.mergeOptions(options);
566
+ return stackIntercept<SearchUserOrganizationsRequest, SearchUserOrganizationsResponse>("unary", this._transport, method, opt, input);
567
+ }
568
+ /**
569
+ * @generated from protobuf rpc: SearchUserProjects
570
+ */
571
+ searchUserProjects(input: SearchUserProjectsRequest, options?: RpcOptions): UnaryCall<SearchUserProjectsRequest, SearchUserProjectsResponse> {
572
+ const method = this.methods[20], opt = this._transport.mergeOptions(options);
573
+ return stackIntercept<SearchUserProjectsRequest, SearchUserProjectsResponse>("unary", this._transport, method, opt, input);
574
+ }
575
+ /**
576
+ * @generated from protobuf rpc: SetOrganizationKyc
577
+ */
578
+ setOrganizationKyc(input: SetOrganizationKycRequest, options?: RpcOptions): UnaryCall<SetOrganizationKycRequest, SetOrganizationKycResponse> {
579
+ const method = this.methods[21], opt = this._transport.mergeOptions(options);
580
+ return stackIntercept<SetOrganizationKycRequest, SetOrganizationKycResponse>("unary", this._transport, method, opt, input);
581
+ }
582
+ /**
583
+ * @generated from protobuf rpc: ListOrganizationsKyc
584
+ */
585
+ listOrganizationsKyc(input: ListOrganizationsKycRequest, options?: RpcOptions): UnaryCall<ListOrganizationsKycRequest, ListOrganizationsKycResponse> {
586
+ const method = this.methods[22], opt = this._transport.mergeOptions(options);
587
+ return stackIntercept<ListOrganizationsKycRequest, ListOrganizationsKycResponse>("unary", this._transport, method, opt, input);
588
+ }
589
+ /**
590
+ * Projects
591
+ *
592
+ * @generated from protobuf rpc: ListProjects
593
+ */
594
+ listProjects(input: ListProjectsRequest, options?: RpcOptions): UnaryCall<ListProjectsRequest, ListProjectsResponse> {
595
+ const method = this.methods[23], opt = this._transport.mergeOptions(options);
596
+ return stackIntercept<ListProjectsRequest, ListProjectsResponse>("unary", this._transport, method, opt, input);
597
+ }
598
+ /**
599
+ * Relations
600
+ *
601
+ * @generated from protobuf rpc: ListRelations
602
+ */
603
+ listRelations(input: ListRelationsRequest, options?: RpcOptions): UnaryCall<ListRelationsRequest, ListRelationsResponse> {
604
+ const method = this.methods[24], opt = this._transport.mergeOptions(options);
605
+ return stackIntercept<ListRelationsRequest, ListRelationsResponse>("unary", this._transport, method, opt, input);
606
+ }
607
+ /**
608
+ * Resources
609
+ *
610
+ * @generated from protobuf rpc: ListResources
611
+ */
612
+ listResources(input: ListResourcesRequest, options?: RpcOptions): UnaryCall<ListResourcesRequest, ListResourcesResponse> {
613
+ const method = this.methods[25], opt = this._transport.mergeOptions(options);
614
+ return stackIntercept<ListResourcesRequest, ListResourcesResponse>("unary", this._transport, method, opt, input);
615
+ }
616
+ /**
617
+ * Roles
618
+ *
619
+ * @generated from protobuf rpc: CreateRole
620
+ */
621
+ createRole(input: CreateRoleRequest, options?: RpcOptions): UnaryCall<CreateRoleRequest, CreateRoleResponse> {
622
+ const method = this.methods[26], opt = this._transport.mergeOptions(options);
623
+ return stackIntercept<CreateRoleRequest, CreateRoleResponse>("unary", this._transport, method, opt, input);
624
+ }
625
+ /**
626
+ * @generated from protobuf rpc: UpdateRole
627
+ */
628
+ updateRole(input: UpdateRoleRequest, options?: RpcOptions): UnaryCall<UpdateRoleRequest, UpdateRoleResponse> {
629
+ const method = this.methods[27], opt = this._transport.mergeOptions(options);
630
+ return stackIntercept<UpdateRoleRequest, UpdateRoleResponse>("unary", this._transport, method, opt, input);
631
+ }
632
+ /**
633
+ * @generated from protobuf rpc: DeleteRole
634
+ */
635
+ deleteRole(input: DeleteRoleRequest, options?: RpcOptions): UnaryCall<DeleteRoleRequest, DeleteRoleResponse> {
636
+ const method = this.methods[28], opt = this._transport.mergeOptions(options);
637
+ return stackIntercept<DeleteRoleRequest, DeleteRoleResponse>("unary", this._transport, method, opt, input);
638
+ }
639
+ /**
640
+ * Permissions
641
+ *
642
+ * @generated from protobuf rpc: CreatePermission
643
+ */
644
+ createPermission(input: CreatePermissionRequest, options?: RpcOptions): UnaryCall<CreatePermissionRequest, CreatePermissionResponse> {
645
+ const method = this.methods[29], opt = this._transport.mergeOptions(options);
646
+ return stackIntercept<CreatePermissionRequest, CreatePermissionResponse>("unary", this._transport, method, opt, input);
647
+ }
648
+ /**
649
+ * @generated from protobuf rpc: UpdatePermission
650
+ */
651
+ updatePermission(input: UpdatePermissionRequest, options?: RpcOptions): UnaryCall<UpdatePermissionRequest, UpdatePermissionResponse> {
652
+ const method = this.methods[30], opt = this._transport.mergeOptions(options);
653
+ return stackIntercept<UpdatePermissionRequest, UpdatePermissionResponse>("unary", this._transport, method, opt, input);
654
+ }
655
+ /**
656
+ * @generated from protobuf rpc: DeletePermission
657
+ */
658
+ deletePermission(input: DeletePermissionRequest, options?: RpcOptions): UnaryCall<DeletePermissionRequest, DeletePermissionResponse> {
659
+ const method = this.methods[31], opt = this._transport.mergeOptions(options);
660
+ return stackIntercept<DeletePermissionRequest, DeletePermissionResponse>("unary", this._transport, method, opt, input);
661
+ }
662
+ /**
663
+ * Preferences
664
+ *
665
+ * @generated from protobuf rpc: ListPreferences
666
+ */
667
+ listPreferences(input: ListPreferencesRequest, options?: RpcOptions): UnaryCall<ListPreferencesRequest, ListPreferencesResponse> {
668
+ const method = this.methods[32], opt = this._transport.mergeOptions(options);
669
+ return stackIntercept<ListPreferencesRequest, ListPreferencesResponse>("unary", this._transport, method, opt, input);
670
+ }
671
+ /**
672
+ * @generated from protobuf rpc: CreatePreferences
673
+ */
674
+ createPreferences(input: CreatePreferencesRequest, options?: RpcOptions): UnaryCall<CreatePreferencesRequest, CreatePreferencesResponse> {
675
+ const method = this.methods[33], opt = this._transport.mergeOptions(options);
676
+ return stackIntercept<CreatePreferencesRequest, CreatePreferencesResponse>("unary", this._transport, method, opt, input);
677
+ }
678
+ /**
679
+ * Check
680
+ *
681
+ * @generated from protobuf rpc: CheckFederatedResourcePermission
682
+ */
683
+ checkFederatedResourcePermission(input: CheckFederatedResourcePermissionRequest, options?: RpcOptions): UnaryCall<CheckFederatedResourcePermissionRequest, CheckFederatedResourcePermissionResponse> {
684
+ const method = this.methods[34], opt = this._transport.mergeOptions(options);
685
+ return stackIntercept<CheckFederatedResourcePermissionRequest, CheckFederatedResourcePermissionResponse>("unary", this._transport, method, opt, input);
686
+ }
687
+ /**
688
+ * Platform
689
+ *
690
+ * @generated from protobuf rpc: AddPlatformUser
691
+ */
692
+ addPlatformUser(input: AddPlatformUserRequest, options?: RpcOptions): UnaryCall<AddPlatformUserRequest, AddPlatformUserResponse> {
693
+ const method = this.methods[35], opt = this._transport.mergeOptions(options);
694
+ return stackIntercept<AddPlatformUserRequest, AddPlatformUserResponse>("unary", this._transport, method, opt, input);
695
+ }
696
+ /**
697
+ * @generated from protobuf rpc: ListPlatformUsers
698
+ */
699
+ listPlatformUsers(input: ListPlatformUsersRequest, options?: RpcOptions): UnaryCall<ListPlatformUsersRequest, ListPlatformUsersResponse> {
700
+ const method = this.methods[36], opt = this._transport.mergeOptions(options);
701
+ return stackIntercept<ListPlatformUsersRequest, ListPlatformUsersResponse>("unary", this._transport, method, opt, input);
702
+ }
703
+ /**
704
+ * @generated from protobuf rpc: RemovePlatformUser
705
+ */
706
+ removePlatformUser(input: RemovePlatformUserRequest, options?: RpcOptions): UnaryCall<RemovePlatformUserRequest, RemovePlatformUserResponse> {
707
+ const method = this.methods[37], opt = this._transport.mergeOptions(options);
708
+ return stackIntercept<RemovePlatformUserRequest, RemovePlatformUserResponse>("unary", this._transport, method, opt, input);
709
+ }
710
+ /**
711
+ * Checkout
712
+ *
713
+ * @generated from protobuf rpc: DelegatedCheckout
714
+ */
715
+ delegatedCheckout(input: DelegatedCheckoutRequest, options?: RpcOptions): UnaryCall<DelegatedCheckoutRequest, DelegatedCheckoutResponse> {
716
+ const method = this.methods[38], opt = this._transport.mergeOptions(options);
717
+ return stackIntercept<DelegatedCheckoutRequest, DelegatedCheckoutResponse>("unary", this._transport, method, opt, input);
718
+ }
719
+ /**
720
+ * @generated from protobuf rpc: ListAllInvoices
721
+ */
722
+ listAllInvoices(input: ListAllInvoicesRequest, options?: RpcOptions): UnaryCall<ListAllInvoicesRequest, ListAllInvoicesResponse> {
723
+ const method = this.methods[39], opt = this._transport.mergeOptions(options);
724
+ return stackIntercept<ListAllInvoicesRequest, ListAllInvoicesResponse>("unary", this._transport, method, opt, input);
725
+ }
726
+ /**
727
+ * @generated from protobuf rpc: GenerateInvoices
728
+ */
729
+ generateInvoices(input: GenerateInvoicesRequest, options?: RpcOptions): UnaryCall<GenerateInvoicesRequest, GenerateInvoicesResponse> {
730
+ const method = this.methods[40], opt = this._transport.mergeOptions(options);
731
+ return stackIntercept<GenerateInvoicesRequest, GenerateInvoicesResponse>("unary", this._transport, method, opt, input);
732
+ }
733
+ /**
734
+ * @generated from protobuf rpc: ListAllBillingAccounts
735
+ */
736
+ listAllBillingAccounts(input: ListAllBillingAccountsRequest, options?: RpcOptions): UnaryCall<ListAllBillingAccountsRequest, ListAllBillingAccountsResponse> {
737
+ const method = this.methods[41], opt = this._transport.mergeOptions(options);
738
+ return stackIntercept<ListAllBillingAccountsRequest, ListAllBillingAccountsResponse>("unary", this._transport, method, opt, input);
739
+ }
740
+ /**
741
+ * Usage
742
+ *
743
+ * @generated from protobuf rpc: RevertBillingUsage
744
+ */
745
+ revertBillingUsage(input: RevertBillingUsageRequest, options?: RpcOptions): UnaryCall<RevertBillingUsageRequest, RevertBillingUsageResponse> {
746
+ const method = this.methods[42], opt = this._transport.mergeOptions(options);
747
+ return stackIntercept<RevertBillingUsageRequest, RevertBillingUsageResponse>("unary", this._transport, method, opt, input);
748
+ }
749
+ /**
750
+ * Webhooks
751
+ *
752
+ * @generated from protobuf rpc: CreateWebhook
753
+ */
754
+ createWebhook(input: CreateWebhookRequest, options?: RpcOptions): UnaryCall<CreateWebhookRequest, CreateWebhookResponse> {
755
+ const method = this.methods[43], opt = this._transport.mergeOptions(options);
756
+ return stackIntercept<CreateWebhookRequest, CreateWebhookResponse>("unary", this._transport, method, opt, input);
757
+ }
758
+ /**
759
+ * @generated from protobuf rpc: UpdateWebhook
760
+ */
761
+ updateWebhook(input: UpdateWebhookRequest, options?: RpcOptions): UnaryCall<UpdateWebhookRequest, UpdateWebhookResponse> {
762
+ const method = this.methods[44], opt = this._transport.mergeOptions(options);
763
+ return stackIntercept<UpdateWebhookRequest, UpdateWebhookResponse>("unary", this._transport, method, opt, input);
764
+ }
765
+ /**
766
+ * @generated from protobuf rpc: DeleteWebhook
767
+ */
768
+ deleteWebhook(input: DeleteWebhookRequest, options?: RpcOptions): UnaryCall<DeleteWebhookRequest, DeleteWebhookResponse> {
769
+ const method = this.methods[45], opt = this._transport.mergeOptions(options);
770
+ return stackIntercept<DeleteWebhookRequest, DeleteWebhookResponse>("unary", this._transport, method, opt, input);
771
+ }
772
+ /**
773
+ * @generated from protobuf rpc: ListWebhooks
774
+ */
775
+ listWebhooks(input: ListWebhooksRequest, options?: RpcOptions): UnaryCall<ListWebhooksRequest, ListWebhooksResponse> {
776
+ const method = this.methods[46], opt = this._transport.mergeOptions(options);
777
+ return stackIntercept<ListWebhooksRequest, ListWebhooksResponse>("unary", this._transport, method, opt, input);
778
+ }
779
+ /**
780
+ * Billing Account
781
+ *
782
+ * @deprecated
783
+ * @generated from protobuf rpc: UpdateBillingAccountLimits
784
+ */
785
+ updateBillingAccountLimits(input: UpdateBillingAccountLimitsRequest, options?: RpcOptions): UnaryCall<UpdateBillingAccountLimitsRequest, UpdateBillingAccountLimitsResponse> {
786
+ const method = this.methods[47], opt = this._transport.mergeOptions(options);
787
+ return stackIntercept<UpdateBillingAccountLimitsRequest, UpdateBillingAccountLimitsResponse>("unary", this._transport, method, opt, input);
788
+ }
789
+ /**
790
+ * GetBillingAccountDetails returns the billing account details that can be updated via UpdateBillingAccountDetails
791
+ *
792
+ * @generated from protobuf rpc: GetBillingAccountDetails
793
+ */
794
+ getBillingAccountDetails(input: GetBillingAccountDetailsRequest, options?: RpcOptions): UnaryCall<GetBillingAccountDetailsRequest, GetBillingAccountDetailsResponse> {
795
+ const method = this.methods[48], opt = this._transport.mergeOptions(options);
796
+ return stackIntercept<GetBillingAccountDetailsRequest, GetBillingAccountDetailsResponse>("unary", this._transport, method, opt, input);
797
+ }
798
+ /**
799
+ * @generated from protobuf rpc: UpdateBillingAccountDetails
800
+ */
801
+ updateBillingAccountDetails(input: UpdateBillingAccountDetailsRequest, options?: RpcOptions): UnaryCall<UpdateBillingAccountDetailsRequest, UpdateBillingAccountDetailsResponse> {
802
+ const method = this.methods[49], opt = this._transport.mergeOptions(options);
803
+ return stackIntercept<UpdateBillingAccountDetailsRequest, UpdateBillingAccountDetailsResponse>("unary", this._transport, method, opt, input);
804
+ }
805
+ /**
806
+ * Prospects
807
+ *
808
+ * @generated from protobuf rpc: CreateProspect
809
+ */
810
+ createProspect(input: CreateProspectRequest, options?: RpcOptions): UnaryCall<CreateProspectRequest, CreateProspectResponse> {
811
+ const method = this.methods[50], opt = this._transport.mergeOptions(options);
812
+ return stackIntercept<CreateProspectRequest, CreateProspectResponse>("unary", this._transport, method, opt, input);
813
+ }
814
+ /**
815
+ * @generated from protobuf rpc: ListProspects
816
+ */
817
+ listProspects(input: ListProspectsRequest, options?: RpcOptions): UnaryCall<ListProspectsRequest, ListProspectsResponse> {
818
+ const method = this.methods[51], opt = this._transport.mergeOptions(options);
819
+ return stackIntercept<ListProspectsRequest, ListProspectsResponse>("unary", this._transport, method, opt, input);
820
+ }
821
+ /**
822
+ * @generated from protobuf rpc: GetProspect
823
+ */
824
+ getProspect(input: GetProspectRequest, options?: RpcOptions): UnaryCall<GetProspectRequest, GetProspectResponse> {
825
+ const method = this.methods[52], opt = this._transport.mergeOptions(options);
826
+ return stackIntercept<GetProspectRequest, GetProspectResponse>("unary", this._transport, method, opt, input);
827
+ }
828
+ /**
829
+ * @generated from protobuf rpc: UpdateProspect
830
+ */
831
+ updateProspect(input: UpdateProspectRequest, options?: RpcOptions): UnaryCall<UpdateProspectRequest, UpdateProspectResponse> {
832
+ const method = this.methods[53], opt = this._transport.mergeOptions(options);
833
+ return stackIntercept<UpdateProspectRequest, UpdateProspectResponse>("unary", this._transport, method, opt, input);
834
+ }
835
+ /**
836
+ * @generated from protobuf rpc: DeleteProspect
837
+ */
838
+ deleteProspect(input: DeleteProspectRequest, options?: RpcOptions): UnaryCall<DeleteProspectRequest, DeleteProspectResponse> {
839
+ const method = this.methods[54], opt = this._transport.mergeOptions(options);
840
+ return stackIntercept<DeleteProspectRequest, DeleteProspectResponse>("unary", this._transport, method, opt, input);
841
+ }
842
+ /**
843
+ * @generated from protobuf rpc: SearchInvoices
844
+ */
845
+ searchInvoices(input: SearchInvoicesRequest, options?: RpcOptions): UnaryCall<SearchInvoicesRequest, SearchInvoicesResponse> {
846
+ const method = this.methods[55], opt = this._transport.mergeOptions(options);
847
+ return stackIntercept<SearchInvoicesRequest, SearchInvoicesResponse>("unary", this._transport, method, opt, input);
848
+ }
849
+ }