@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,2307 @@
1
+ // @generated by protobuf-ts 2.11.1
2
+ // @generated from protobuf file "raystack/frontier/v1beta1/frontier.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 { FrontierService } from "./frontier";
7
+ import type { CreateProspectPublicResponse } from "./frontier";
8
+ import type { CreateProspectPublicRequest } from "./frontier";
9
+ import type { BillingWebhookCallbackResponse } from "./frontier";
10
+ import type { BillingWebhookCallbackRequest } from "./frontier";
11
+ import type { GetUpcomingInvoiceResponse } from "./frontier";
12
+ import type { GetUpcomingInvoiceRequest } from "./frontier";
13
+ import type { ListInvoicesResponse } from "./frontier";
14
+ import type { ListInvoicesRequest } from "./frontier";
15
+ import type { TotalDebitedTransactionsResponse } from "./frontier";
16
+ import type { TotalDebitedTransactionsRequest } from "./frontier";
17
+ import type { ListBillingTransactionsResponse } from "./frontier";
18
+ import type { ListBillingTransactionsRequest } from "./frontier";
19
+ import type { CreateBillingUsageResponse } from "./frontier";
20
+ import type { CreateBillingUsageRequest } from "./frontier";
21
+ import type { CheckCreditEntitlementResponse } from "./frontier";
22
+ import type { CheckCreditEntitlementRequest } from "./frontier";
23
+ import type { CheckFeatureEntitlementResponse } from "./frontier";
24
+ import type { CheckFeatureEntitlementRequest } from "./frontier";
25
+ import type { GetCheckoutResponse } from "./frontier";
26
+ import type { GetCheckoutRequest } from "./frontier";
27
+ import type { ListCheckoutsResponse } from "./frontier";
28
+ import type { ListCheckoutsRequest } from "./frontier";
29
+ import type { CreateCheckoutResponse } from "./frontier";
30
+ import type { CreateCheckoutRequest } from "./frontier";
31
+ import type { UpdatePlanResponse } from "./frontier";
32
+ import type { UpdatePlanRequest } from "./frontier";
33
+ import type { GetPlanResponse } from "./frontier";
34
+ import type { GetPlanRequest } from "./frontier";
35
+ import type { ListPlansResponse } from "./frontier";
36
+ import type { ListPlansRequest } from "./frontier";
37
+ import type { CreatePlanResponse } from "./frontier";
38
+ import type { CreatePlanRequest } from "./frontier";
39
+ import type { ListFeaturesResponse } from "./frontier";
40
+ import type { ListFeaturesRequest } from "./frontier";
41
+ import type { UpdateFeatureResponse } from "./frontier";
42
+ import type { UpdateFeatureRequest } from "./frontier";
43
+ import type { GetFeatureResponse } from "./frontier";
44
+ import type { GetFeatureRequest } from "./frontier";
45
+ import type { CreateFeatureResponse } from "./frontier";
46
+ import type { CreateFeatureRequest } from "./frontier";
47
+ import type { UpdateProductResponse } from "./frontier";
48
+ import type { UpdateProductRequest } from "./frontier";
49
+ import type { ListProductsResponse } from "./frontier";
50
+ import type { ListProductsRequest } from "./frontier";
51
+ import type { GetProductResponse } from "./frontier";
52
+ import type { GetProductRequest } from "./frontier";
53
+ import type { CreateProductResponse } from "./frontier";
54
+ import type { CreateProductRequest } from "./frontier";
55
+ import type { UpdateSubscriptionResponse } from "./frontier";
56
+ import type { UpdateSubscriptionRequest } from "./frontier";
57
+ import type { ChangeSubscriptionResponse } from "./frontier";
58
+ import type { ChangeSubscriptionRequest } from "./frontier";
59
+ import type { ListSubscriptionsResponse } from "./frontier";
60
+ import type { ListSubscriptionsRequest } from "./frontier";
61
+ import type { CancelSubscriptionResponse } from "./frontier";
62
+ import type { CancelSubscriptionRequest } from "./frontier";
63
+ import type { GetSubscriptionResponse } from "./frontier";
64
+ import type { GetSubscriptionRequest } from "./frontier";
65
+ import type { HasTrialedResponse } from "./frontier";
66
+ import type { HasTrialedRequest } from "./frontier";
67
+ import type { GetBillingBalanceResponse } from "./frontier";
68
+ import type { GetBillingBalanceRequest } from "./frontier";
69
+ import type { DisableBillingAccountResponse } from "./frontier";
70
+ import type { DisableBillingAccountRequest } from "./frontier";
71
+ import type { EnableBillingAccountResponse } from "./frontier";
72
+ import type { EnableBillingAccountRequest } from "./frontier";
73
+ import type { DeleteBillingAccountResponse } from "./frontier";
74
+ import type { DeleteBillingAccountRequest } from "./frontier";
75
+ import type { ListBillingAccountsResponse } from "./frontier";
76
+ import type { ListBillingAccountsRequest } from "./frontier";
77
+ import type { RegisterBillingAccountResponse } from "./frontier";
78
+ import type { RegisterBillingAccountRequest } from "./frontier";
79
+ import type { UpdateBillingAccountResponse } from "./frontier";
80
+ import type { UpdateBillingAccountRequest } from "./frontier";
81
+ import type { GetBillingAccountResponse } from "./frontier";
82
+ import type { GetBillingAccountRequest } from "./frontier";
83
+ import type { CreateBillingAccountResponse } from "./frontier";
84
+ import type { CreateBillingAccountRequest } from "./frontier";
85
+ import type { ListCurrentUserPreferencesResponse } from "./frontier";
86
+ import type { ListCurrentUserPreferencesRequest } from "./frontier";
87
+ import type { CreateCurrentUserPreferencesResponse } from "./frontier";
88
+ import type { CreateCurrentUserPreferencesRequest } from "./frontier";
89
+ import type { ListUserPreferencesResponse } from "./frontier";
90
+ import type { ListUserPreferencesRequest } from "./frontier";
91
+ import type { CreateUserPreferencesResponse } from "./frontier";
92
+ import type { CreateUserPreferencesRequest } from "./frontier";
93
+ import type { ListGroupPreferencesResponse } from "./frontier";
94
+ import type { ListGroupPreferencesRequest } from "./frontier";
95
+ import type { CreateGroupPreferencesResponse } from "./frontier";
96
+ import type { CreateGroupPreferencesRequest } from "./frontier";
97
+ import type { ListProjectPreferencesResponse } from "./frontier";
98
+ import type { ListProjectPreferencesRequest } from "./frontier";
99
+ import type { CreateProjectPreferencesResponse } from "./frontier";
100
+ import type { CreateProjectPreferencesRequest } from "./frontier";
101
+ import type { ListOrganizationPreferencesResponse } from "./frontier";
102
+ import type { ListOrganizationPreferencesRequest } from "./frontier";
103
+ import type { CreateOrganizationPreferencesResponse } from "./frontier";
104
+ import type { CreateOrganizationPreferencesRequest } from "./frontier";
105
+ import type { DescribePreferencesResponse } from "./frontier";
106
+ import type { DescribePreferencesRequest } from "./frontier";
107
+ import type { GetOrganizationAuditLogResponse } from "./frontier";
108
+ import type { GetOrganizationAuditLogRequest } from "./frontier";
109
+ import type { CreateOrganizationAuditLogsResponse } from "./frontier";
110
+ import type { CreateOrganizationAuditLogsRequest } from "./frontier";
111
+ import type { ListOrganizationAuditLogsResponse } from "./frontier";
112
+ import type { ListOrganizationAuditLogsRequest } from "./frontier";
113
+ import type { DeleteMetaSchemaResponse } from "./frontier";
114
+ import type { DeleteMetaSchemaRequest } from "./frontier";
115
+ import type { UpdateMetaSchemaResponse } from "./frontier";
116
+ import type { UpdateMetaSchemaRequest } from "./frontier";
117
+ import type { GetMetaSchemaResponse } from "./frontier";
118
+ import type { GetMetaSchemaRequest } from "./frontier";
119
+ import type { CreateMetaSchemaResponse } from "./frontier";
120
+ import type { CreateMetaSchemaRequest } from "./frontier";
121
+ import type { ListMetaSchemasResponse } from "./frontier";
122
+ import type { ListMetaSchemasRequest } from "./frontier";
123
+ import type { AuthLogoutResponse } from "./frontier";
124
+ import type { AuthLogoutRequest } from "./frontier";
125
+ import type { AuthTokenResponse } from "./frontier";
126
+ import type { AuthTokenRequest } from "./frontier";
127
+ import type { AuthCallbackResponse } from "./frontier";
128
+ import type { AuthCallbackRequest } from "./frontier";
129
+ import type { AuthenticateResponse } from "./frontier";
130
+ import type { AuthenticateRequest } from "./frontier";
131
+ import type { ListAuthStrategiesResponse } from "./frontier";
132
+ import type { ListAuthStrategiesRequest } from "./frontier";
133
+ import type { GetJWKsResponse } from "./frontier";
134
+ import type { GetJWKsRequest } from "./frontier";
135
+ import type { BatchCheckPermissionResponse } from "./frontier";
136
+ import type { BatchCheckPermissionRequest } from "./frontier";
137
+ import type { CheckResourcePermissionResponse } from "./frontier";
138
+ import type { CheckResourcePermissionRequest } from "./frontier";
139
+ import type { DeleteProjectResourceResponse } from "./frontier";
140
+ import type { DeleteProjectResourceRequest } from "./frontier";
141
+ import type { UpdateProjectResourceResponse } from "./frontier";
142
+ import type { UpdateProjectResourceRequest } from "./frontier";
143
+ import type { GetProjectResourceResponse } from "./frontier";
144
+ import type { GetProjectResourceRequest } from "./frontier";
145
+ import type { CreateProjectResourceResponse } from "./frontier";
146
+ import type { CreateProjectResourceRequest } from "./frontier";
147
+ import type { ListProjectResourcesResponse } from "./frontier";
148
+ import type { ListProjectResourcesRequest } from "./frontier";
149
+ import type { GetNamespaceResponse } from "./frontier";
150
+ import type { GetNamespaceRequest } from "./frontier";
151
+ import type { ListNamespacesResponse } from "./frontier";
152
+ import type { ListNamespacesRequest } from "./frontier";
153
+ import type { GetPermissionResponse } from "./frontier";
154
+ import type { GetPermissionRequest } from "./frontier";
155
+ import type { ListPermissionsResponse } from "./frontier";
156
+ import type { ListPermissionsRequest } from "./frontier";
157
+ import type { DeleteRelationResponse } from "./frontier";
158
+ import type { DeleteRelationRequest } from "./frontier";
159
+ import type { GetRelationResponse } from "./frontier";
160
+ import type { GetRelationRequest } from "./frontier";
161
+ import type { CreateRelationResponse } from "./frontier";
162
+ import type { CreateRelationRequest } from "./frontier";
163
+ import type { CreatePolicyForProjectResponse } from "./frontier";
164
+ import type { CreatePolicyForProjectRequest } from "./frontier";
165
+ import type { DeletePolicyResponse } from "./frontier";
166
+ import type { DeletePolicyRequest } from "./frontier";
167
+ import type { UpdatePolicyResponse } from "./frontier";
168
+ import type { UpdatePolicyRequest } from "./frontier";
169
+ import type { ListPoliciesResponse } from "./frontier";
170
+ import type { ListPoliciesRequest } from "./frontier";
171
+ import type { GetPolicyResponse } from "./frontier";
172
+ import type { GetPolicyRequest } from "./frontier";
173
+ import type { CreatePolicyResponse } from "./frontier";
174
+ import type { CreatePolicyRequest } from "./frontier";
175
+ import type { DeleteProjectResponse } from "./frontier";
176
+ import type { DeleteProjectRequest } from "./frontier";
177
+ import type { DisableProjectResponse } from "./frontier";
178
+ import type { DisableProjectRequest } from "./frontier";
179
+ import type { EnableProjectResponse } from "./frontier";
180
+ import type { EnableProjectRequest } from "./frontier";
181
+ import type { ListProjectGroupsResponse } from "./frontier";
182
+ import type { ListProjectGroupsRequest } from "./frontier";
183
+ import type { ListProjectServiceUsersResponse } from "./frontier";
184
+ import type { ListProjectServiceUsersRequest } from "./frontier";
185
+ import type { ListProjectUsersResponse } from "./frontier";
186
+ import type { ListProjectUsersRequest } from "./frontier";
187
+ import type { ListProjectAdminsResponse } from "./frontier";
188
+ import type { ListProjectAdminsRequest } from "./frontier";
189
+ import type { UpdateProjectResponse } from "./frontier";
190
+ import type { UpdateProjectRequest } from "./frontier";
191
+ import type { GetProjectResponse } from "./frontier";
192
+ import type { GetProjectRequest } from "./frontier";
193
+ import type { CreateProjectResponse } from "./frontier";
194
+ import type { CreateProjectRequest } from "./frontier";
195
+ import type { DeleteOrganizationResponse } from "./frontier";
196
+ import type { DeleteOrganizationRequest } from "./frontier";
197
+ import type { DisableOrganizationResponse } from "./frontier";
198
+ import type { DisableOrganizationRequest } from "./frontier";
199
+ import type { EnableOrganizationResponse } from "./frontier";
200
+ import type { EnableOrganizationRequest } from "./frontier";
201
+ import type { JoinOrganizationResponse } from "./frontier";
202
+ import type { JoinOrganizationRequest } from "./frontier";
203
+ import type { VerifyOrganizationDomainResponse } from "./frontier";
204
+ import type { VerifyOrganizationDomainRequest } from "./frontier";
205
+ import type { GetOrganizationDomainResponse } from "./frontier";
206
+ import type { GetOrganizationDomainRequest } from "./frontier";
207
+ import type { DeleteOrganizationDomainResponse } from "./frontier";
208
+ import type { DeleteOrganizationDomainRequest } from "./frontier";
209
+ import type { CreateOrganizationDomainResponse } from "./frontier";
210
+ import type { CreateOrganizationDomainRequest } from "./frontier";
211
+ import type { ListOrganizationDomainsResponse } from "./frontier";
212
+ import type { ListOrganizationDomainsRequest } from "./frontier";
213
+ import type { DeleteOrganizationInvitationResponse } from "./frontier";
214
+ import type { DeleteOrganizationInvitationRequest } from "./frontier";
215
+ import type { AcceptOrganizationInvitationResponse } from "./frontier";
216
+ import type { AcceptOrganizationInvitationRequest } from "./frontier";
217
+ import type { GetOrganizationInvitationResponse } from "./frontier";
218
+ import type { GetOrganizationInvitationRequest } from "./frontier";
219
+ import type { CreateOrganizationInvitationResponse } from "./frontier";
220
+ import type { CreateOrganizationInvitationRequest } from "./frontier";
221
+ import type { ListOrganizationInvitationsResponse } from "./frontier";
222
+ import type { ListOrganizationInvitationsRequest } from "./frontier";
223
+ import type { ListOrganizationServiceUsersResponse } from "./frontier";
224
+ import type { ListOrganizationServiceUsersRequest } from "./frontier";
225
+ import type { GetOrganizationKycResponse } from "./frontier";
226
+ import type { GetOrganizationKycRequest } from "./frontier";
227
+ import type { RemoveOrganizationUserResponse } from "./frontier";
228
+ import type { RemoveOrganizationUserRequest } from "./frontier";
229
+ import type { AddOrganizationUsersResponse } from "./frontier";
230
+ import type { AddOrganizationUsersRequest } from "./frontier";
231
+ import type { ListOrganizationUsersResponse } from "./frontier";
232
+ import type { ListOrganizationUsersRequest } from "./frontier";
233
+ import type { ListOrganizationAdminsResponse } from "./frontier";
234
+ import type { ListOrganizationAdminsRequest } from "./frontier";
235
+ import type { ListOrganizationProjectsResponse } from "./frontier";
236
+ import type { ListOrganizationProjectsRequest } from "./frontier";
237
+ import type { UpdateOrganizationResponse } from "./frontier";
238
+ import type { UpdateOrganizationRequest } from "./frontier";
239
+ import type { GetOrganizationResponse } from "./frontier";
240
+ import type { GetOrganizationRequest } from "./frontier";
241
+ import type { CreateOrganizationResponse } from "./frontier";
242
+ import type { CreateOrganizationRequest } from "./frontier";
243
+ import type { ListOrganizationsResponse } from "./frontier";
244
+ import type { ListOrganizationsRequest } from "./frontier";
245
+ import type { DeleteOrganizationRoleResponse } from "./frontier";
246
+ import type { DeleteOrganizationRoleRequest } from "./frontier";
247
+ import type { UpdateOrganizationRoleResponse } from "./frontier";
248
+ import type { UpdateOrganizationRoleRequest } from "./frontier";
249
+ import type { GetOrganizationRoleResponse } from "./frontier";
250
+ import type { GetOrganizationRoleRequest } from "./frontier";
251
+ import type { CreateOrganizationRoleResponse } from "./frontier";
252
+ import type { CreateOrganizationRoleRequest } from "./frontier";
253
+ import type { ListOrganizationRolesResponse } from "./frontier";
254
+ import type { ListOrganizationRolesRequest } from "./frontier";
255
+ import type { ListRolesResponse } from "./frontier";
256
+ import type { ListRolesRequest } from "./frontier";
257
+ import type { DeleteGroupResponse } from "./frontier";
258
+ import type { DeleteGroupRequest } from "./frontier";
259
+ import type { DisableGroupResponse } from "./frontier";
260
+ import type { DisableGroupRequest } from "./frontier";
261
+ import type { EnableGroupResponse } from "./frontier";
262
+ import type { EnableGroupRequest } from "./frontier";
263
+ import type { RemoveGroupUserResponse } from "./frontier";
264
+ import type { RemoveGroupUserRequest } from "./frontier";
265
+ import type { AddGroupUsersResponse } from "./frontier";
266
+ import type { AddGroupUsersRequest } from "./frontier";
267
+ import type { ListGroupUsersResponse } from "./frontier";
268
+ import type { ListGroupUsersRequest } from "./frontier";
269
+ import type { UpdateGroupResponse } from "./frontier";
270
+ import type { UpdateGroupRequest } from "./frontier";
271
+ import type { GetGroupResponse } from "./frontier";
272
+ import type { GetGroupRequest } from "./frontier";
273
+ import type { CreateGroupResponse } from "./frontier";
274
+ import type { CreateGroupRequest } from "./frontier";
275
+ import type { ListOrganizationGroupsResponse } from "./frontier";
276
+ import type { ListOrganizationGroupsRequest } from "./frontier";
277
+ import type { ListServiceUserProjectsResponse } from "./frontier";
278
+ import type { ListServiceUserProjectsRequest } from "./frontier";
279
+ import type { DeleteServiceUserTokenResponse } from "./frontier";
280
+ import type { DeleteServiceUserTokenRequest } from "./frontier";
281
+ import type { ListServiceUserTokensResponse } from "./frontier";
282
+ import type { ListServiceUserTokensRequest } from "./frontier";
283
+ import type { CreateServiceUserTokenResponse } from "./frontier";
284
+ import type { CreateServiceUserTokenRequest } from "./frontier";
285
+ import type { DeleteServiceUserCredentialResponse } from "./frontier";
286
+ import type { DeleteServiceUserCredentialRequest } from "./frontier";
287
+ import type { ListServiceUserCredentialsResponse } from "./frontier";
288
+ import type { ListServiceUserCredentialsRequest } from "./frontier";
289
+ import type { CreateServiceUserCredentialResponse } from "./frontier";
290
+ import type { CreateServiceUserCredentialRequest } from "./frontier";
291
+ import type { DeleteServiceUserJWKResponse } from "./frontier";
292
+ import type { DeleteServiceUserJWKRequest } from "./frontier";
293
+ import type { GetServiceUserJWKResponse } from "./frontier";
294
+ import type { GetServiceUserJWKRequest } from "./frontier";
295
+ import type { ListServiceUserJWKsResponse } from "./frontier";
296
+ import type { ListServiceUserJWKsRequest } from "./frontier";
297
+ import type { CreateServiceUserJWKResponse } from "./frontier";
298
+ import type { CreateServiceUserJWKRequest } from "./frontier";
299
+ import type { DeleteServiceUserResponse } from "./frontier";
300
+ import type { DeleteServiceUserRequest } from "./frontier";
301
+ import type { GetServiceUserResponse } from "./frontier";
302
+ import type { GetServiceUserRequest } from "./frontier";
303
+ import type { CreateServiceUserResponse } from "./frontier";
304
+ import type { CreateServiceUserRequest } from "./frontier";
305
+ import type { ListServiceUsersResponse } from "./frontier";
306
+ import type { ListServiceUsersRequest } from "./frontier";
307
+ import type { ListCurrentUserInvitationsResponse } from "./frontier";
308
+ import type { ListCurrentUserInvitationsRequest } from "./frontier";
309
+ import type { ListUserInvitationsResponse } from "./frontier";
310
+ import type { ListUserInvitationsRequest } from "./frontier";
311
+ import type { ListProjectsByCurrentUserResponse } from "./frontier";
312
+ import type { ListProjectsByCurrentUserRequest } from "./frontier";
313
+ import type { ListProjectsByUserResponse } from "./frontier";
314
+ import type { ListProjectsByUserRequest } from "./frontier";
315
+ import type { ListOrganizationsByCurrentUserResponse } from "./frontier";
316
+ import type { ListOrganizationsByCurrentUserRequest } from "./frontier";
317
+ import type { ListOrganizationsByUserResponse } from "./frontier";
318
+ import type { ListOrganizationsByUserRequest } from "./frontier";
319
+ import type { DeleteUserResponse } from "./frontier";
320
+ import type { DeleteUserRequest } from "./frontier";
321
+ import type { DisableUserResponse } from "./frontier";
322
+ import type { DisableUserRequest } from "./frontier";
323
+ import type { EnableUserResponse } from "./frontier";
324
+ import type { EnableUserRequest } from "./frontier";
325
+ import type { UpdateCurrentUserResponse } from "./frontier";
326
+ import type { UpdateCurrentUserRequest } from "./frontier";
327
+ import type { UpdateUserResponse } from "./frontier";
328
+ import type { UpdateUserRequest } from "./frontier";
329
+ import type { GetCurrentUserResponse } from "./frontier";
330
+ import type { GetCurrentUserRequest } from "./frontier";
331
+ import type { ListCurrentUserGroupsResponse } from "./frontier";
332
+ import type { ListCurrentUserGroupsRequest } from "./frontier";
333
+ import type { ListUserGroupsResponse } from "./frontier";
334
+ import type { ListUserGroupsRequest } from "./frontier";
335
+ import type { GetUserResponse } from "./frontier";
336
+ import type { GetUserRequest } from "./frontier";
337
+ import type { CreateUserResponse } from "./frontier";
338
+ import type { CreateUserRequest } from "./frontier";
339
+ import { stackIntercept } from "@protobuf-ts/runtime-rpc";
340
+ import type { ListUsersResponse } from "./frontier";
341
+ import type { ListUsersRequest } from "./frontier";
342
+ import type { UnaryCall } from "@protobuf-ts/runtime-rpc";
343
+ import type { RpcOptions } from "@protobuf-ts/runtime-rpc";
344
+ /**
345
+ * @generated from protobuf service raystack.frontier.v1beta1.FrontierService
346
+ */
347
+ export interface IFrontierServiceClient {
348
+ /**
349
+ * Users
350
+ *
351
+ * @generated from protobuf rpc: ListUsers
352
+ */
353
+ listUsers(input: ListUsersRequest, options?: RpcOptions): UnaryCall<ListUsersRequest, ListUsersResponse>;
354
+ /**
355
+ * @generated from protobuf rpc: CreateUser
356
+ */
357
+ createUser(input: CreateUserRequest, options?: RpcOptions): UnaryCall<CreateUserRequest, CreateUserResponse>;
358
+ /**
359
+ * @generated from protobuf rpc: GetUser
360
+ */
361
+ getUser(input: GetUserRequest, options?: RpcOptions): UnaryCall<GetUserRequest, GetUserResponse>;
362
+ /**
363
+ * @generated from protobuf rpc: ListUserGroups
364
+ */
365
+ listUserGroups(input: ListUserGroupsRequest, options?: RpcOptions): UnaryCall<ListUserGroupsRequest, ListUserGroupsResponse>;
366
+ /**
367
+ * @generated from protobuf rpc: ListCurrentUserGroups
368
+ */
369
+ listCurrentUserGroups(input: ListCurrentUserGroupsRequest, options?: RpcOptions): UnaryCall<ListCurrentUserGroupsRequest, ListCurrentUserGroupsResponse>;
370
+ /**
371
+ * @generated from protobuf rpc: GetCurrentUser
372
+ */
373
+ getCurrentUser(input: GetCurrentUserRequest, options?: RpcOptions): UnaryCall<GetCurrentUserRequest, GetCurrentUserResponse>;
374
+ /**
375
+ * @generated from protobuf rpc: UpdateUser
376
+ */
377
+ updateUser(input: UpdateUserRequest, options?: RpcOptions): UnaryCall<UpdateUserRequest, UpdateUserResponse>;
378
+ /**
379
+ * @generated from protobuf rpc: UpdateCurrentUser
380
+ */
381
+ updateCurrentUser(input: UpdateCurrentUserRequest, options?: RpcOptions): UnaryCall<UpdateCurrentUserRequest, UpdateCurrentUserResponse>;
382
+ /**
383
+ * @generated from protobuf rpc: EnableUser
384
+ */
385
+ enableUser(input: EnableUserRequest, options?: RpcOptions): UnaryCall<EnableUserRequest, EnableUserResponse>;
386
+ /**
387
+ * @generated from protobuf rpc: DisableUser
388
+ */
389
+ disableUser(input: DisableUserRequest, options?: RpcOptions): UnaryCall<DisableUserRequest, DisableUserResponse>;
390
+ /**
391
+ * @generated from protobuf rpc: DeleteUser
392
+ */
393
+ deleteUser(input: DeleteUserRequest, options?: RpcOptions): UnaryCall<DeleteUserRequest, DeleteUserResponse>;
394
+ /**
395
+ * @generated from protobuf rpc: ListOrganizationsByUser
396
+ */
397
+ listOrganizationsByUser(input: ListOrganizationsByUserRequest, options?: RpcOptions): UnaryCall<ListOrganizationsByUserRequest, ListOrganizationsByUserResponse>;
398
+ /**
399
+ * @generated from protobuf rpc: ListOrganizationsByCurrentUser
400
+ */
401
+ listOrganizationsByCurrentUser(input: ListOrganizationsByCurrentUserRequest, options?: RpcOptions): UnaryCall<ListOrganizationsByCurrentUserRequest, ListOrganizationsByCurrentUserResponse>;
402
+ /**
403
+ * @generated from protobuf rpc: ListProjectsByUser
404
+ */
405
+ listProjectsByUser(input: ListProjectsByUserRequest, options?: RpcOptions): UnaryCall<ListProjectsByUserRequest, ListProjectsByUserResponse>;
406
+ /**
407
+ * @generated from protobuf rpc: ListProjectsByCurrentUser
408
+ */
409
+ listProjectsByCurrentUser(input: ListProjectsByCurrentUserRequest, options?: RpcOptions): UnaryCall<ListProjectsByCurrentUserRequest, ListProjectsByCurrentUserResponse>;
410
+ /**
411
+ * @generated from protobuf rpc: ListUserInvitations
412
+ */
413
+ listUserInvitations(input: ListUserInvitationsRequest, options?: RpcOptions): UnaryCall<ListUserInvitationsRequest, ListUserInvitationsResponse>;
414
+ /**
415
+ * @generated from protobuf rpc: ListCurrentUserInvitations
416
+ */
417
+ listCurrentUserInvitations(input: ListCurrentUserInvitationsRequest, options?: RpcOptions): UnaryCall<ListCurrentUserInvitationsRequest, ListCurrentUserInvitationsResponse>;
418
+ /**
419
+ * ServiceUser
420
+ *
421
+ * @generated from protobuf rpc: ListServiceUsers
422
+ */
423
+ listServiceUsers(input: ListServiceUsersRequest, options?: RpcOptions): UnaryCall<ListServiceUsersRequest, ListServiceUsersResponse>;
424
+ /**
425
+ * @generated from protobuf rpc: CreateServiceUser
426
+ */
427
+ createServiceUser(input: CreateServiceUserRequest, options?: RpcOptions): UnaryCall<CreateServiceUserRequest, CreateServiceUserResponse>;
428
+ /**
429
+ * @generated from protobuf rpc: GetServiceUser
430
+ */
431
+ getServiceUser(input: GetServiceUserRequest, options?: RpcOptions): UnaryCall<GetServiceUserRequest, GetServiceUserResponse>;
432
+ /**
433
+ * @generated from protobuf rpc: DeleteServiceUser
434
+ */
435
+ deleteServiceUser(input: DeleteServiceUserRequest, options?: RpcOptions): UnaryCall<DeleteServiceUserRequest, DeleteServiceUserResponse>;
436
+ /**
437
+ * @generated from protobuf rpc: CreateServiceUserJWK
438
+ */
439
+ createServiceUserJWK(input: CreateServiceUserJWKRequest, options?: RpcOptions): UnaryCall<CreateServiceUserJWKRequest, CreateServiceUserJWKResponse>;
440
+ /**
441
+ * @generated from protobuf rpc: ListServiceUserJWKs
442
+ */
443
+ listServiceUserJWKs(input: ListServiceUserJWKsRequest, options?: RpcOptions): UnaryCall<ListServiceUserJWKsRequest, ListServiceUserJWKsResponse>;
444
+ /**
445
+ * @generated from protobuf rpc: GetServiceUserJWK
446
+ */
447
+ getServiceUserJWK(input: GetServiceUserJWKRequest, options?: RpcOptions): UnaryCall<GetServiceUserJWKRequest, GetServiceUserJWKResponse>;
448
+ /**
449
+ * @generated from protobuf rpc: DeleteServiceUserJWK
450
+ */
451
+ deleteServiceUserJWK(input: DeleteServiceUserJWKRequest, options?: RpcOptions): UnaryCall<DeleteServiceUserJWKRequest, DeleteServiceUserJWKResponse>;
452
+ /**
453
+ * @generated from protobuf rpc: CreateServiceUserCredential
454
+ */
455
+ createServiceUserCredential(input: CreateServiceUserCredentialRequest, options?: RpcOptions): UnaryCall<CreateServiceUserCredentialRequest, CreateServiceUserCredentialResponse>;
456
+ /**
457
+ * @generated from protobuf rpc: ListServiceUserCredentials
458
+ */
459
+ listServiceUserCredentials(input: ListServiceUserCredentialsRequest, options?: RpcOptions): UnaryCall<ListServiceUserCredentialsRequest, ListServiceUserCredentialsResponse>;
460
+ /**
461
+ * @generated from protobuf rpc: DeleteServiceUserCredential
462
+ */
463
+ deleteServiceUserCredential(input: DeleteServiceUserCredentialRequest, options?: RpcOptions): UnaryCall<DeleteServiceUserCredentialRequest, DeleteServiceUserCredentialResponse>;
464
+ /**
465
+ * @generated from protobuf rpc: CreateServiceUserToken
466
+ */
467
+ createServiceUserToken(input: CreateServiceUserTokenRequest, options?: RpcOptions): UnaryCall<CreateServiceUserTokenRequest, CreateServiceUserTokenResponse>;
468
+ /**
469
+ * @generated from protobuf rpc: ListServiceUserTokens
470
+ */
471
+ listServiceUserTokens(input: ListServiceUserTokensRequest, options?: RpcOptions): UnaryCall<ListServiceUserTokensRequest, ListServiceUserTokensResponse>;
472
+ /**
473
+ * @generated from protobuf rpc: DeleteServiceUserToken
474
+ */
475
+ deleteServiceUserToken(input: DeleteServiceUserTokenRequest, options?: RpcOptions): UnaryCall<DeleteServiceUserTokenRequest, DeleteServiceUserTokenResponse>;
476
+ /**
477
+ * @generated from protobuf rpc: ListServiceUserProjects
478
+ */
479
+ listServiceUserProjects(input: ListServiceUserProjectsRequest, options?: RpcOptions): UnaryCall<ListServiceUserProjectsRequest, ListServiceUserProjectsResponse>;
480
+ /**
481
+ * Group
482
+ *
483
+ * @generated from protobuf rpc: ListOrganizationGroups
484
+ */
485
+ listOrganizationGroups(input: ListOrganizationGroupsRequest, options?: RpcOptions): UnaryCall<ListOrganizationGroupsRequest, ListOrganizationGroupsResponse>;
486
+ /**
487
+ * @generated from protobuf rpc: CreateGroup
488
+ */
489
+ createGroup(input: CreateGroupRequest, options?: RpcOptions): UnaryCall<CreateGroupRequest, CreateGroupResponse>;
490
+ /**
491
+ * @generated from protobuf rpc: GetGroup
492
+ */
493
+ getGroup(input: GetGroupRequest, options?: RpcOptions): UnaryCall<GetGroupRequest, GetGroupResponse>;
494
+ /**
495
+ * @generated from protobuf rpc: UpdateGroup
496
+ */
497
+ updateGroup(input: UpdateGroupRequest, options?: RpcOptions): UnaryCall<UpdateGroupRequest, UpdateGroupResponse>;
498
+ /**
499
+ * @generated from protobuf rpc: ListGroupUsers
500
+ */
501
+ listGroupUsers(input: ListGroupUsersRequest, options?: RpcOptions): UnaryCall<ListGroupUsersRequest, ListGroupUsersResponse>;
502
+ /**
503
+ * @generated from protobuf rpc: AddGroupUsers
504
+ */
505
+ addGroupUsers(input: AddGroupUsersRequest, options?: RpcOptions): UnaryCall<AddGroupUsersRequest, AddGroupUsersResponse>;
506
+ /**
507
+ * @generated from protobuf rpc: RemoveGroupUser
508
+ */
509
+ removeGroupUser(input: RemoveGroupUserRequest, options?: RpcOptions): UnaryCall<RemoveGroupUserRequest, RemoveGroupUserResponse>;
510
+ /**
511
+ * @generated from protobuf rpc: EnableGroup
512
+ */
513
+ enableGroup(input: EnableGroupRequest, options?: RpcOptions): UnaryCall<EnableGroupRequest, EnableGroupResponse>;
514
+ /**
515
+ * @generated from protobuf rpc: DisableGroup
516
+ */
517
+ disableGroup(input: DisableGroupRequest, options?: RpcOptions): UnaryCall<DisableGroupRequest, DisableGroupResponse>;
518
+ /**
519
+ * @generated from protobuf rpc: DeleteGroup
520
+ */
521
+ deleteGroup(input: DeleteGroupRequest, options?: RpcOptions): UnaryCall<DeleteGroupRequest, DeleteGroupResponse>;
522
+ /**
523
+ * Roles
524
+ *
525
+ * @generated from protobuf rpc: ListRoles
526
+ */
527
+ listRoles(input: ListRolesRequest, options?: RpcOptions): UnaryCall<ListRolesRequest, ListRolesResponse>;
528
+ /**
529
+ * @generated from protobuf rpc: ListOrganizationRoles
530
+ */
531
+ listOrganizationRoles(input: ListOrganizationRolesRequest, options?: RpcOptions): UnaryCall<ListOrganizationRolesRequest, ListOrganizationRolesResponse>;
532
+ /**
533
+ * @generated from protobuf rpc: CreateOrganizationRole
534
+ */
535
+ createOrganizationRole(input: CreateOrganizationRoleRequest, options?: RpcOptions): UnaryCall<CreateOrganizationRoleRequest, CreateOrganizationRoleResponse>;
536
+ /**
537
+ * @generated from protobuf rpc: GetOrganizationRole
538
+ */
539
+ getOrganizationRole(input: GetOrganizationRoleRequest, options?: RpcOptions): UnaryCall<GetOrganizationRoleRequest, GetOrganizationRoleResponse>;
540
+ /**
541
+ * @generated from protobuf rpc: UpdateOrganizationRole
542
+ */
543
+ updateOrganizationRole(input: UpdateOrganizationRoleRequest, options?: RpcOptions): UnaryCall<UpdateOrganizationRoleRequest, UpdateOrganizationRoleResponse>;
544
+ /**
545
+ * @generated from protobuf rpc: DeleteOrganizationRole
546
+ */
547
+ deleteOrganizationRole(input: DeleteOrganizationRoleRequest, options?: RpcOptions): UnaryCall<DeleteOrganizationRoleRequest, DeleteOrganizationRoleResponse>;
548
+ /**
549
+ * Organizations
550
+ *
551
+ * @generated from protobuf rpc: ListOrganizations
552
+ */
553
+ listOrganizations(input: ListOrganizationsRequest, options?: RpcOptions): UnaryCall<ListOrganizationsRequest, ListOrganizationsResponse>;
554
+ /**
555
+ * @generated from protobuf rpc: CreateOrganization
556
+ */
557
+ createOrganization(input: CreateOrganizationRequest, options?: RpcOptions): UnaryCall<CreateOrganizationRequest, CreateOrganizationResponse>;
558
+ /**
559
+ * @generated from protobuf rpc: GetOrganization
560
+ */
561
+ getOrganization(input: GetOrganizationRequest, options?: RpcOptions): UnaryCall<GetOrganizationRequest, GetOrganizationResponse>;
562
+ /**
563
+ * @generated from protobuf rpc: UpdateOrganization
564
+ */
565
+ updateOrganization(input: UpdateOrganizationRequest, options?: RpcOptions): UnaryCall<UpdateOrganizationRequest, UpdateOrganizationResponse>;
566
+ /**
567
+ * @generated from protobuf rpc: ListOrganizationProjects
568
+ */
569
+ listOrganizationProjects(input: ListOrganizationProjectsRequest, options?: RpcOptions): UnaryCall<ListOrganizationProjectsRequest, ListOrganizationProjectsResponse>;
570
+ /**
571
+ * @generated from protobuf rpc: ListOrganizationAdmins
572
+ */
573
+ listOrganizationAdmins(input: ListOrganizationAdminsRequest, options?: RpcOptions): UnaryCall<ListOrganizationAdminsRequest, ListOrganizationAdminsResponse>;
574
+ /**
575
+ * @generated from protobuf rpc: ListOrganizationUsers
576
+ */
577
+ listOrganizationUsers(input: ListOrganizationUsersRequest, options?: RpcOptions): UnaryCall<ListOrganizationUsersRequest, ListOrganizationUsersResponse>;
578
+ /**
579
+ * @generated from protobuf rpc: AddOrganizationUsers
580
+ */
581
+ addOrganizationUsers(input: AddOrganizationUsersRequest, options?: RpcOptions): UnaryCall<AddOrganizationUsersRequest, AddOrganizationUsersResponse>;
582
+ /**
583
+ * @generated from protobuf rpc: RemoveOrganizationUser
584
+ */
585
+ removeOrganizationUser(input: RemoveOrganizationUserRequest, options?: RpcOptions): UnaryCall<RemoveOrganizationUserRequest, RemoveOrganizationUserResponse>;
586
+ /**
587
+ * @generated from protobuf rpc: GetOrganizationKyc
588
+ */
589
+ getOrganizationKyc(input: GetOrganizationKycRequest, options?: RpcOptions): UnaryCall<GetOrganizationKycRequest, GetOrganizationKycResponse>;
590
+ /**
591
+ * Deprecated: use ListServiceUsers instead
592
+ *
593
+ * @generated from protobuf rpc: ListOrganizationServiceUsers
594
+ */
595
+ listOrganizationServiceUsers(input: ListOrganizationServiceUsersRequest, options?: RpcOptions): UnaryCall<ListOrganizationServiceUsersRequest, ListOrganizationServiceUsersResponse>;
596
+ /**
597
+ * @generated from protobuf rpc: ListOrganizationInvitations
598
+ */
599
+ listOrganizationInvitations(input: ListOrganizationInvitationsRequest, options?: RpcOptions): UnaryCall<ListOrganizationInvitationsRequest, ListOrganizationInvitationsResponse>;
600
+ /**
601
+ * @generated from protobuf rpc: CreateOrganizationInvitation
602
+ */
603
+ createOrganizationInvitation(input: CreateOrganizationInvitationRequest, options?: RpcOptions): UnaryCall<CreateOrganizationInvitationRequest, CreateOrganizationInvitationResponse>;
604
+ /**
605
+ * @generated from protobuf rpc: GetOrganizationInvitation
606
+ */
607
+ getOrganizationInvitation(input: GetOrganizationInvitationRequest, options?: RpcOptions): UnaryCall<GetOrganizationInvitationRequest, GetOrganizationInvitationResponse>;
608
+ /**
609
+ * @generated from protobuf rpc: AcceptOrganizationInvitation
610
+ */
611
+ acceptOrganizationInvitation(input: AcceptOrganizationInvitationRequest, options?: RpcOptions): UnaryCall<AcceptOrganizationInvitationRequest, AcceptOrganizationInvitationResponse>;
612
+ /**
613
+ * @generated from protobuf rpc: DeleteOrganizationInvitation
614
+ */
615
+ deleteOrganizationInvitation(input: DeleteOrganizationInvitationRequest, options?: RpcOptions): UnaryCall<DeleteOrganizationInvitationRequest, DeleteOrganizationInvitationResponse>;
616
+ /**
617
+ * @generated from protobuf rpc: ListOrganizationDomains
618
+ */
619
+ listOrganizationDomains(input: ListOrganizationDomainsRequest, options?: RpcOptions): UnaryCall<ListOrganizationDomainsRequest, ListOrganizationDomainsResponse>;
620
+ /**
621
+ * @generated from protobuf rpc: CreateOrganizationDomain
622
+ */
623
+ createOrganizationDomain(input: CreateOrganizationDomainRequest, options?: RpcOptions): UnaryCall<CreateOrganizationDomainRequest, CreateOrganizationDomainResponse>;
624
+ /**
625
+ * @generated from protobuf rpc: DeleteOrganizationDomain
626
+ */
627
+ deleteOrganizationDomain(input: DeleteOrganizationDomainRequest, options?: RpcOptions): UnaryCall<DeleteOrganizationDomainRequest, DeleteOrganizationDomainResponse>;
628
+ /**
629
+ * @generated from protobuf rpc: GetOrganizationDomain
630
+ */
631
+ getOrganizationDomain(input: GetOrganizationDomainRequest, options?: RpcOptions): UnaryCall<GetOrganizationDomainRequest, GetOrganizationDomainResponse>;
632
+ /**
633
+ * @generated from protobuf rpc: VerifyOrganizationDomain
634
+ */
635
+ verifyOrganizationDomain(input: VerifyOrganizationDomainRequest, options?: RpcOptions): UnaryCall<VerifyOrganizationDomainRequest, VerifyOrganizationDomainResponse>;
636
+ /**
637
+ * @generated from protobuf rpc: JoinOrganization
638
+ */
639
+ joinOrganization(input: JoinOrganizationRequest, options?: RpcOptions): UnaryCall<JoinOrganizationRequest, JoinOrganizationResponse>;
640
+ /**
641
+ * @generated from protobuf rpc: EnableOrganization
642
+ */
643
+ enableOrganization(input: EnableOrganizationRequest, options?: RpcOptions): UnaryCall<EnableOrganizationRequest, EnableOrganizationResponse>;
644
+ /**
645
+ * @generated from protobuf rpc: DisableOrganization
646
+ */
647
+ disableOrganization(input: DisableOrganizationRequest, options?: RpcOptions): UnaryCall<DisableOrganizationRequest, DisableOrganizationResponse>;
648
+ /**
649
+ * @generated from protobuf rpc: DeleteOrganization
650
+ */
651
+ deleteOrganization(input: DeleteOrganizationRequest, options?: RpcOptions): UnaryCall<DeleteOrganizationRequest, DeleteOrganizationResponse>;
652
+ /**
653
+ * Projects
654
+ *
655
+ * @generated from protobuf rpc: CreateProject
656
+ */
657
+ createProject(input: CreateProjectRequest, options?: RpcOptions): UnaryCall<CreateProjectRequest, CreateProjectResponse>;
658
+ /**
659
+ * @generated from protobuf rpc: GetProject
660
+ */
661
+ getProject(input: GetProjectRequest, options?: RpcOptions): UnaryCall<GetProjectRequest, GetProjectResponse>;
662
+ /**
663
+ * @generated from protobuf rpc: UpdateProject
664
+ */
665
+ updateProject(input: UpdateProjectRequest, options?: RpcOptions): UnaryCall<UpdateProjectRequest, UpdateProjectResponse>;
666
+ /**
667
+ * @generated from protobuf rpc: ListProjectAdmins
668
+ */
669
+ listProjectAdmins(input: ListProjectAdminsRequest, options?: RpcOptions): UnaryCall<ListProjectAdminsRequest, ListProjectAdminsResponse>;
670
+ /**
671
+ * @generated from protobuf rpc: ListProjectUsers
672
+ */
673
+ listProjectUsers(input: ListProjectUsersRequest, options?: RpcOptions): UnaryCall<ListProjectUsersRequest, ListProjectUsersResponse>;
674
+ /**
675
+ * @generated from protobuf rpc: ListProjectServiceUsers
676
+ */
677
+ listProjectServiceUsers(input: ListProjectServiceUsersRequest, options?: RpcOptions): UnaryCall<ListProjectServiceUsersRequest, ListProjectServiceUsersResponse>;
678
+ /**
679
+ * @generated from protobuf rpc: ListProjectGroups
680
+ */
681
+ listProjectGroups(input: ListProjectGroupsRequest, options?: RpcOptions): UnaryCall<ListProjectGroupsRequest, ListProjectGroupsResponse>;
682
+ /**
683
+ * @generated from protobuf rpc: EnableProject
684
+ */
685
+ enableProject(input: EnableProjectRequest, options?: RpcOptions): UnaryCall<EnableProjectRequest, EnableProjectResponse>;
686
+ /**
687
+ * @generated from protobuf rpc: DisableProject
688
+ */
689
+ disableProject(input: DisableProjectRequest, options?: RpcOptions): UnaryCall<DisableProjectRequest, DisableProjectResponse>;
690
+ /**
691
+ * @generated from protobuf rpc: DeleteProject
692
+ */
693
+ deleteProject(input: DeleteProjectRequest, options?: RpcOptions): UnaryCall<DeleteProjectRequest, DeleteProjectResponse>;
694
+ /**
695
+ * Policies
696
+ *
697
+ * @generated from protobuf rpc: CreatePolicy
698
+ */
699
+ createPolicy(input: CreatePolicyRequest, options?: RpcOptions): UnaryCall<CreatePolicyRequest, CreatePolicyResponse>;
700
+ /**
701
+ * @generated from protobuf rpc: GetPolicy
702
+ */
703
+ getPolicy(input: GetPolicyRequest, options?: RpcOptions): UnaryCall<GetPolicyRequest, GetPolicyResponse>;
704
+ /**
705
+ * @generated from protobuf rpc: ListPolicies
706
+ */
707
+ listPolicies(input: ListPoliciesRequest, options?: RpcOptions): UnaryCall<ListPoliciesRequest, ListPoliciesResponse>;
708
+ /**
709
+ * @generated from protobuf rpc: UpdatePolicy
710
+ */
711
+ updatePolicy(input: UpdatePolicyRequest, options?: RpcOptions): UnaryCall<UpdatePolicyRequest, UpdatePolicyResponse>;
712
+ /**
713
+ * @generated from protobuf rpc: DeletePolicy
714
+ */
715
+ deletePolicy(input: DeletePolicyRequest, options?: RpcOptions): UnaryCall<DeletePolicyRequest, DeletePolicyResponse>;
716
+ /**
717
+ * @generated from protobuf rpc: CreatePolicyForProject
718
+ */
719
+ createPolicyForProject(input: CreatePolicyForProjectRequest, options?: RpcOptions): UnaryCall<CreatePolicyForProjectRequest, CreatePolicyForProjectResponse>;
720
+ /**
721
+ * Relations
722
+ *
723
+ * @generated from protobuf rpc: CreateRelation
724
+ */
725
+ createRelation(input: CreateRelationRequest, options?: RpcOptions): UnaryCall<CreateRelationRequest, CreateRelationResponse>;
726
+ /**
727
+ * @generated from protobuf rpc: GetRelation
728
+ */
729
+ getRelation(input: GetRelationRequest, options?: RpcOptions): UnaryCall<GetRelationRequest, GetRelationResponse>;
730
+ /**
731
+ * @generated from protobuf rpc: DeleteRelation
732
+ */
733
+ deleteRelation(input: DeleteRelationRequest, options?: RpcOptions): UnaryCall<DeleteRelationRequest, DeleteRelationResponse>;
734
+ /**
735
+ * Permissions
736
+ *
737
+ * @generated from protobuf rpc: ListPermissions
738
+ */
739
+ listPermissions(input: ListPermissionsRequest, options?: RpcOptions): UnaryCall<ListPermissionsRequest, ListPermissionsResponse>;
740
+ /**
741
+ * @generated from protobuf rpc: GetPermission
742
+ */
743
+ getPermission(input: GetPermissionRequest, options?: RpcOptions): UnaryCall<GetPermissionRequest, GetPermissionResponse>;
744
+ /**
745
+ * Namespaces
746
+ *
747
+ * @generated from protobuf rpc: ListNamespaces
748
+ */
749
+ listNamespaces(input: ListNamespacesRequest, options?: RpcOptions): UnaryCall<ListNamespacesRequest, ListNamespacesResponse>;
750
+ /**
751
+ * @generated from protobuf rpc: GetNamespace
752
+ */
753
+ getNamespace(input: GetNamespaceRequest, options?: RpcOptions): UnaryCall<GetNamespaceRequest, GetNamespaceResponse>;
754
+ /**
755
+ * Resources
756
+ *
757
+ * @generated from protobuf rpc: ListProjectResources
758
+ */
759
+ listProjectResources(input: ListProjectResourcesRequest, options?: RpcOptions): UnaryCall<ListProjectResourcesRequest, ListProjectResourcesResponse>;
760
+ /**
761
+ * @generated from protobuf rpc: CreateProjectResource
762
+ */
763
+ createProjectResource(input: CreateProjectResourceRequest, options?: RpcOptions): UnaryCall<CreateProjectResourceRequest, CreateProjectResourceResponse>;
764
+ /**
765
+ * @generated from protobuf rpc: GetProjectResource
766
+ */
767
+ getProjectResource(input: GetProjectResourceRequest, options?: RpcOptions): UnaryCall<GetProjectResourceRequest, GetProjectResourceResponse>;
768
+ /**
769
+ * @generated from protobuf rpc: UpdateProjectResource
770
+ */
771
+ updateProjectResource(input: UpdateProjectResourceRequest, options?: RpcOptions): UnaryCall<UpdateProjectResourceRequest, UpdateProjectResourceResponse>;
772
+ /**
773
+ * @generated from protobuf rpc: DeleteProjectResource
774
+ */
775
+ deleteProjectResource(input: DeleteProjectResourceRequest, options?: RpcOptions): UnaryCall<DeleteProjectResourceRequest, DeleteProjectResourceResponse>;
776
+ /**
777
+ * Authz
778
+ *
779
+ * @generated from protobuf rpc: CheckResourcePermission
780
+ */
781
+ checkResourcePermission(input: CheckResourcePermissionRequest, options?: RpcOptions): UnaryCall<CheckResourcePermissionRequest, CheckResourcePermissionResponse>;
782
+ /**
783
+ * @generated from protobuf rpc: BatchCheckPermission
784
+ */
785
+ batchCheckPermission(input: BatchCheckPermissionRequest, options?: RpcOptions): UnaryCall<BatchCheckPermissionRequest, BatchCheckPermissionResponse>;
786
+ /**
787
+ * Authn
788
+ *
789
+ * @generated from protobuf rpc: GetJWKs
790
+ */
791
+ getJWKs(input: GetJWKsRequest, options?: RpcOptions): UnaryCall<GetJWKsRequest, GetJWKsResponse>;
792
+ /**
793
+ * @generated from protobuf rpc: ListAuthStrategies
794
+ */
795
+ listAuthStrategies(input: ListAuthStrategiesRequest, options?: RpcOptions): UnaryCall<ListAuthStrategiesRequest, ListAuthStrategiesResponse>;
796
+ /**
797
+ * @generated from protobuf rpc: Authenticate
798
+ */
799
+ authenticate(input: AuthenticateRequest, options?: RpcOptions): UnaryCall<AuthenticateRequest, AuthenticateResponse>;
800
+ /**
801
+ * @generated from protobuf rpc: AuthCallback
802
+ */
803
+ authCallback(input: AuthCallbackRequest, options?: RpcOptions): UnaryCall<AuthCallbackRequest, AuthCallbackResponse>;
804
+ /**
805
+ * @generated from protobuf rpc: AuthToken
806
+ */
807
+ authToken(input: AuthTokenRequest, options?: RpcOptions): UnaryCall<AuthTokenRequest, AuthTokenResponse>;
808
+ /**
809
+ * @generated from protobuf rpc: AuthLogout
810
+ */
811
+ authLogout(input: AuthLogoutRequest, options?: RpcOptions): UnaryCall<AuthLogoutRequest, AuthLogoutResponse>;
812
+ /**
813
+ * MetaSchemas
814
+ *
815
+ * @generated from protobuf rpc: ListMetaSchemas
816
+ */
817
+ listMetaSchemas(input: ListMetaSchemasRequest, options?: RpcOptions): UnaryCall<ListMetaSchemasRequest, ListMetaSchemasResponse>;
818
+ /**
819
+ * @generated from protobuf rpc: CreateMetaSchema
820
+ */
821
+ createMetaSchema(input: CreateMetaSchemaRequest, options?: RpcOptions): UnaryCall<CreateMetaSchemaRequest, CreateMetaSchemaResponse>;
822
+ /**
823
+ * @generated from protobuf rpc: GetMetaSchema
824
+ */
825
+ getMetaSchema(input: GetMetaSchemaRequest, options?: RpcOptions): UnaryCall<GetMetaSchemaRequest, GetMetaSchemaResponse>;
826
+ /**
827
+ * @generated from protobuf rpc: UpdateMetaSchema
828
+ */
829
+ updateMetaSchema(input: UpdateMetaSchemaRequest, options?: RpcOptions): UnaryCall<UpdateMetaSchemaRequest, UpdateMetaSchemaResponse>;
830
+ /**
831
+ * @generated from protobuf rpc: DeleteMetaSchema
832
+ */
833
+ deleteMetaSchema(input: DeleteMetaSchemaRequest, options?: RpcOptions): UnaryCall<DeleteMetaSchemaRequest, DeleteMetaSchemaResponse>;
834
+ /**
835
+ * Audit logs
836
+ *
837
+ * @generated from protobuf rpc: ListOrganizationAuditLogs
838
+ */
839
+ listOrganizationAuditLogs(input: ListOrganizationAuditLogsRequest, options?: RpcOptions): UnaryCall<ListOrganizationAuditLogsRequest, ListOrganizationAuditLogsResponse>;
840
+ /**
841
+ * @generated from protobuf rpc: CreateOrganizationAuditLogs
842
+ */
843
+ createOrganizationAuditLogs(input: CreateOrganizationAuditLogsRequest, options?: RpcOptions): UnaryCall<CreateOrganizationAuditLogsRequest, CreateOrganizationAuditLogsResponse>;
844
+ /**
845
+ * @generated from protobuf rpc: GetOrganizationAuditLog
846
+ */
847
+ getOrganizationAuditLog(input: GetOrganizationAuditLogRequest, options?: RpcOptions): UnaryCall<GetOrganizationAuditLogRequest, GetOrganizationAuditLogResponse>;
848
+ // Preferences
849
+
850
+ /**
851
+ * DescribePreferences list down all the supported preferences of entities
852
+ *
853
+ * @generated from protobuf rpc: DescribePreferences
854
+ */
855
+ describePreferences(input: DescribePreferencesRequest, options?: RpcOptions): UnaryCall<DescribePreferencesRequest, DescribePreferencesResponse>;
856
+ /**
857
+ * @generated from protobuf rpc: CreateOrganizationPreferences
858
+ */
859
+ createOrganizationPreferences(input: CreateOrganizationPreferencesRequest, options?: RpcOptions): UnaryCall<CreateOrganizationPreferencesRequest, CreateOrganizationPreferencesResponse>;
860
+ /**
861
+ * @generated from protobuf rpc: ListOrganizationPreferences
862
+ */
863
+ listOrganizationPreferences(input: ListOrganizationPreferencesRequest, options?: RpcOptions): UnaryCall<ListOrganizationPreferencesRequest, ListOrganizationPreferencesResponse>;
864
+ /**
865
+ * @generated from protobuf rpc: CreateProjectPreferences
866
+ */
867
+ createProjectPreferences(input: CreateProjectPreferencesRequest, options?: RpcOptions): UnaryCall<CreateProjectPreferencesRequest, CreateProjectPreferencesResponse>;
868
+ /**
869
+ * @generated from protobuf rpc: ListProjectPreferences
870
+ */
871
+ listProjectPreferences(input: ListProjectPreferencesRequest, options?: RpcOptions): UnaryCall<ListProjectPreferencesRequest, ListProjectPreferencesResponse>;
872
+ /**
873
+ * @generated from protobuf rpc: CreateGroupPreferences
874
+ */
875
+ createGroupPreferences(input: CreateGroupPreferencesRequest, options?: RpcOptions): UnaryCall<CreateGroupPreferencesRequest, CreateGroupPreferencesResponse>;
876
+ /**
877
+ * @generated from protobuf rpc: ListGroupPreferences
878
+ */
879
+ listGroupPreferences(input: ListGroupPreferencesRequest, options?: RpcOptions): UnaryCall<ListGroupPreferencesRequest, ListGroupPreferencesResponse>;
880
+ /**
881
+ * @generated from protobuf rpc: CreateUserPreferences
882
+ */
883
+ createUserPreferences(input: CreateUserPreferencesRequest, options?: RpcOptions): UnaryCall<CreateUserPreferencesRequest, CreateUserPreferencesResponse>;
884
+ /**
885
+ * @generated from protobuf rpc: ListUserPreferences
886
+ */
887
+ listUserPreferences(input: ListUserPreferencesRequest, options?: RpcOptions): UnaryCall<ListUserPreferencesRequest, ListUserPreferencesResponse>;
888
+ /**
889
+ * @generated from protobuf rpc: CreateCurrentUserPreferences
890
+ */
891
+ createCurrentUserPreferences(input: CreateCurrentUserPreferencesRequest, options?: RpcOptions): UnaryCall<CreateCurrentUserPreferencesRequest, CreateCurrentUserPreferencesResponse>;
892
+ /**
893
+ * @generated from protobuf rpc: ListCurrentUserPreferences
894
+ */
895
+ listCurrentUserPreferences(input: ListCurrentUserPreferencesRequest, options?: RpcOptions): UnaryCall<ListCurrentUserPreferencesRequest, ListCurrentUserPreferencesResponse>;
896
+ /**
897
+ * Billing account
898
+ *
899
+ * @generated from protobuf rpc: CreateBillingAccount
900
+ */
901
+ createBillingAccount(input: CreateBillingAccountRequest, options?: RpcOptions): UnaryCall<CreateBillingAccountRequest, CreateBillingAccountResponse>;
902
+ /**
903
+ * @generated from protobuf rpc: GetBillingAccount
904
+ */
905
+ getBillingAccount(input: GetBillingAccountRequest, options?: RpcOptions): UnaryCall<GetBillingAccountRequest, GetBillingAccountResponse>;
906
+ /**
907
+ * @generated from protobuf rpc: UpdateBillingAccount
908
+ */
909
+ updateBillingAccount(input: UpdateBillingAccountRequest, options?: RpcOptions): UnaryCall<UpdateBillingAccountRequest, UpdateBillingAccountResponse>;
910
+ /**
911
+ * @generated from protobuf rpc: RegisterBillingAccount
912
+ */
913
+ registerBillingAccount(input: RegisterBillingAccountRequest, options?: RpcOptions): UnaryCall<RegisterBillingAccountRequest, RegisterBillingAccountResponse>;
914
+ /**
915
+ * @generated from protobuf rpc: ListBillingAccounts
916
+ */
917
+ listBillingAccounts(input: ListBillingAccountsRequest, options?: RpcOptions): UnaryCall<ListBillingAccountsRequest, ListBillingAccountsResponse>;
918
+ /**
919
+ * @generated from protobuf rpc: DeleteBillingAccount
920
+ */
921
+ deleteBillingAccount(input: DeleteBillingAccountRequest, options?: RpcOptions): UnaryCall<DeleteBillingAccountRequest, DeleteBillingAccountResponse>;
922
+ /**
923
+ * @generated from protobuf rpc: EnableBillingAccount
924
+ */
925
+ enableBillingAccount(input: EnableBillingAccountRequest, options?: RpcOptions): UnaryCall<EnableBillingAccountRequest, EnableBillingAccountResponse>;
926
+ /**
927
+ * @generated from protobuf rpc: DisableBillingAccount
928
+ */
929
+ disableBillingAccount(input: DisableBillingAccountRequest, options?: RpcOptions): UnaryCall<DisableBillingAccountRequest, DisableBillingAccountResponse>;
930
+ /**
931
+ * @generated from protobuf rpc: GetBillingBalance
932
+ */
933
+ getBillingBalance(input: GetBillingBalanceRequest, options?: RpcOptions): UnaryCall<GetBillingBalanceRequest, GetBillingBalanceResponse>;
934
+ /**
935
+ * @generated from protobuf rpc: HasTrialed
936
+ */
937
+ hasTrialed(input: HasTrialedRequest, options?: RpcOptions): UnaryCall<HasTrialedRequest, HasTrialedResponse>;
938
+ /**
939
+ * Subscriptions
940
+ *
941
+ * @generated from protobuf rpc: GetSubscription
942
+ */
943
+ getSubscription(input: GetSubscriptionRequest, options?: RpcOptions): UnaryCall<GetSubscriptionRequest, GetSubscriptionResponse>;
944
+ /**
945
+ * @generated from protobuf rpc: CancelSubscription
946
+ */
947
+ cancelSubscription(input: CancelSubscriptionRequest, options?: RpcOptions): UnaryCall<CancelSubscriptionRequest, CancelSubscriptionResponse>;
948
+ /**
949
+ * @generated from protobuf rpc: ListSubscriptions
950
+ */
951
+ listSubscriptions(input: ListSubscriptionsRequest, options?: RpcOptions): UnaryCall<ListSubscriptionsRequest, ListSubscriptionsResponse>;
952
+ /**
953
+ * @generated from protobuf rpc: ChangeSubscription
954
+ */
955
+ changeSubscription(input: ChangeSubscriptionRequest, options?: RpcOptions): UnaryCall<ChangeSubscriptionRequest, ChangeSubscriptionResponse>;
956
+ /**
957
+ * @generated from protobuf rpc: UpdateSubscription
958
+ */
959
+ updateSubscription(input: UpdateSubscriptionRequest, options?: RpcOptions): UnaryCall<UpdateSubscriptionRequest, UpdateSubscriptionResponse>;
960
+ /**
961
+ * Billing Product
962
+ *
963
+ * @generated from protobuf rpc: CreateProduct
964
+ */
965
+ createProduct(input: CreateProductRequest, options?: RpcOptions): UnaryCall<CreateProductRequest, CreateProductResponse>;
966
+ /**
967
+ * @generated from protobuf rpc: GetProduct
968
+ */
969
+ getProduct(input: GetProductRequest, options?: RpcOptions): UnaryCall<GetProductRequest, GetProductResponse>;
970
+ /**
971
+ * @generated from protobuf rpc: ListProducts
972
+ */
973
+ listProducts(input: ListProductsRequest, options?: RpcOptions): UnaryCall<ListProductsRequest, ListProductsResponse>;
974
+ /**
975
+ * @generated from protobuf rpc: UpdateProduct
976
+ */
977
+ updateProduct(input: UpdateProductRequest, options?: RpcOptions): UnaryCall<UpdateProductRequest, UpdateProductResponse>;
978
+ /**
979
+ * @generated from protobuf rpc: CreateFeature
980
+ */
981
+ createFeature(input: CreateFeatureRequest, options?: RpcOptions): UnaryCall<CreateFeatureRequest, CreateFeatureResponse>;
982
+ /**
983
+ * @generated from protobuf rpc: GetFeature
984
+ */
985
+ getFeature(input: GetFeatureRequest, options?: RpcOptions): UnaryCall<GetFeatureRequest, GetFeatureResponse>;
986
+ /**
987
+ * @generated from protobuf rpc: UpdateFeature
988
+ */
989
+ updateFeature(input: UpdateFeatureRequest, options?: RpcOptions): UnaryCall<UpdateFeatureRequest, UpdateFeatureResponse>;
990
+ /**
991
+ * @generated from protobuf rpc: ListFeatures
992
+ */
993
+ listFeatures(input: ListFeaturesRequest, options?: RpcOptions): UnaryCall<ListFeaturesRequest, ListFeaturesResponse>;
994
+ /**
995
+ * Plans
996
+ *
997
+ * @generated from protobuf rpc: CreatePlan
998
+ */
999
+ createPlan(input: CreatePlanRequest, options?: RpcOptions): UnaryCall<CreatePlanRequest, CreatePlanResponse>;
1000
+ /**
1001
+ * @generated from protobuf rpc: ListPlans
1002
+ */
1003
+ listPlans(input: ListPlansRequest, options?: RpcOptions): UnaryCall<ListPlansRequest, ListPlansResponse>;
1004
+ /**
1005
+ * @generated from protobuf rpc: GetPlan
1006
+ */
1007
+ getPlan(input: GetPlanRequest, options?: RpcOptions): UnaryCall<GetPlanRequest, GetPlanResponse>;
1008
+ /**
1009
+ * @generated from protobuf rpc: UpdatePlan
1010
+ */
1011
+ updatePlan(input: UpdatePlanRequest, options?: RpcOptions): UnaryCall<UpdatePlanRequest, UpdatePlanResponse>;
1012
+ /**
1013
+ * Checkout
1014
+ *
1015
+ * @generated from protobuf rpc: CreateCheckout
1016
+ */
1017
+ createCheckout(input: CreateCheckoutRequest, options?: RpcOptions): UnaryCall<CreateCheckoutRequest, CreateCheckoutResponse>;
1018
+ /**
1019
+ * @generated from protobuf rpc: ListCheckouts
1020
+ */
1021
+ listCheckouts(input: ListCheckoutsRequest, options?: RpcOptions): UnaryCall<ListCheckoutsRequest, ListCheckoutsResponse>;
1022
+ /**
1023
+ * @generated from protobuf rpc: GetCheckout
1024
+ */
1025
+ getCheckout(input: GetCheckoutRequest, options?: RpcOptions): UnaryCall<GetCheckoutRequest, GetCheckoutResponse>;
1026
+ /**
1027
+ * Billing Entitlements
1028
+ *
1029
+ * @generated from protobuf rpc: CheckFeatureEntitlement
1030
+ */
1031
+ checkFeatureEntitlement(input: CheckFeatureEntitlementRequest, options?: RpcOptions): UnaryCall<CheckFeatureEntitlementRequest, CheckFeatureEntitlementResponse>;
1032
+ /**
1033
+ * @generated from protobuf rpc: CheckCreditEntitlement
1034
+ */
1035
+ checkCreditEntitlement(input: CheckCreditEntitlementRequest, options?: RpcOptions): UnaryCall<CheckCreditEntitlementRequest, CheckCreditEntitlementResponse>;
1036
+ /**
1037
+ * Transactions
1038
+ *
1039
+ * @generated from protobuf rpc: CreateBillingUsage
1040
+ */
1041
+ createBillingUsage(input: CreateBillingUsageRequest, options?: RpcOptions): UnaryCall<CreateBillingUsageRequest, CreateBillingUsageResponse>;
1042
+ /**
1043
+ * @generated from protobuf rpc: ListBillingTransactions
1044
+ */
1045
+ listBillingTransactions(input: ListBillingTransactionsRequest, options?: RpcOptions): UnaryCall<ListBillingTransactionsRequest, ListBillingTransactionsResponse>;
1046
+ /**
1047
+ * @generated from protobuf rpc: TotalDebitedTransactions
1048
+ */
1049
+ totalDebitedTransactions(input: TotalDebitedTransactionsRequest, options?: RpcOptions): UnaryCall<TotalDebitedTransactionsRequest, TotalDebitedTransactionsResponse>;
1050
+ /**
1051
+ * Invoice
1052
+ *
1053
+ * @generated from protobuf rpc: ListInvoices
1054
+ */
1055
+ listInvoices(input: ListInvoicesRequest, options?: RpcOptions): UnaryCall<ListInvoicesRequest, ListInvoicesResponse>;
1056
+ /**
1057
+ * @generated from protobuf rpc: GetUpcomingInvoice
1058
+ */
1059
+ getUpcomingInvoice(input: GetUpcomingInvoiceRequest, options?: RpcOptions): UnaryCall<GetUpcomingInvoiceRequest, GetUpcomingInvoiceResponse>;
1060
+ /**
1061
+ * Incoming Webhooks
1062
+ *
1063
+ * @generated from protobuf rpc: BillingWebhookCallback
1064
+ */
1065
+ billingWebhookCallback(input: BillingWebhookCallbackRequest, options?: RpcOptions): UnaryCall<BillingWebhookCallbackRequest, BillingWebhookCallbackResponse>;
1066
+ /**
1067
+ * Prospects
1068
+ *
1069
+ * @generated from protobuf rpc: CreateProspectPublic
1070
+ */
1071
+ createProspectPublic(input: CreateProspectPublicRequest, options?: RpcOptions): UnaryCall<CreateProspectPublicRequest, CreateProspectPublicResponse>;
1072
+ }
1073
+ /**
1074
+ * @generated from protobuf service raystack.frontier.v1beta1.FrontierService
1075
+ */
1076
+ export class FrontierServiceClient implements IFrontierServiceClient, ServiceInfo {
1077
+ typeName = FrontierService.typeName;
1078
+ methods = FrontierService.methods;
1079
+ options = FrontierService.options;
1080
+ constructor(private readonly _transport: RpcTransport) {
1081
+ }
1082
+ /**
1083
+ * Users
1084
+ *
1085
+ * @generated from protobuf rpc: ListUsers
1086
+ */
1087
+ listUsers(input: ListUsersRequest, options?: RpcOptions): UnaryCall<ListUsersRequest, ListUsersResponse> {
1088
+ const method = this.methods[0], opt = this._transport.mergeOptions(options);
1089
+ return stackIntercept<ListUsersRequest, ListUsersResponse>("unary", this._transport, method, opt, input);
1090
+ }
1091
+ /**
1092
+ * @generated from protobuf rpc: CreateUser
1093
+ */
1094
+ createUser(input: CreateUserRequest, options?: RpcOptions): UnaryCall<CreateUserRequest, CreateUserResponse> {
1095
+ const method = this.methods[1], opt = this._transport.mergeOptions(options);
1096
+ return stackIntercept<CreateUserRequest, CreateUserResponse>("unary", this._transport, method, opt, input);
1097
+ }
1098
+ /**
1099
+ * @generated from protobuf rpc: GetUser
1100
+ */
1101
+ getUser(input: GetUserRequest, options?: RpcOptions): UnaryCall<GetUserRequest, GetUserResponse> {
1102
+ const method = this.methods[2], opt = this._transport.mergeOptions(options);
1103
+ return stackIntercept<GetUserRequest, GetUserResponse>("unary", this._transport, method, opt, input);
1104
+ }
1105
+ /**
1106
+ * @generated from protobuf rpc: ListUserGroups
1107
+ */
1108
+ listUserGroups(input: ListUserGroupsRequest, options?: RpcOptions): UnaryCall<ListUserGroupsRequest, ListUserGroupsResponse> {
1109
+ const method = this.methods[3], opt = this._transport.mergeOptions(options);
1110
+ return stackIntercept<ListUserGroupsRequest, ListUserGroupsResponse>("unary", this._transport, method, opt, input);
1111
+ }
1112
+ /**
1113
+ * @generated from protobuf rpc: ListCurrentUserGroups
1114
+ */
1115
+ listCurrentUserGroups(input: ListCurrentUserGroupsRequest, options?: RpcOptions): UnaryCall<ListCurrentUserGroupsRequest, ListCurrentUserGroupsResponse> {
1116
+ const method = this.methods[4], opt = this._transport.mergeOptions(options);
1117
+ return stackIntercept<ListCurrentUserGroupsRequest, ListCurrentUserGroupsResponse>("unary", this._transport, method, opt, input);
1118
+ }
1119
+ /**
1120
+ * @generated from protobuf rpc: GetCurrentUser
1121
+ */
1122
+ getCurrentUser(input: GetCurrentUserRequest, options?: RpcOptions): UnaryCall<GetCurrentUserRequest, GetCurrentUserResponse> {
1123
+ const method = this.methods[5], opt = this._transport.mergeOptions(options);
1124
+ return stackIntercept<GetCurrentUserRequest, GetCurrentUserResponse>("unary", this._transport, method, opt, input);
1125
+ }
1126
+ /**
1127
+ * @generated from protobuf rpc: UpdateUser
1128
+ */
1129
+ updateUser(input: UpdateUserRequest, options?: RpcOptions): UnaryCall<UpdateUserRequest, UpdateUserResponse> {
1130
+ const method = this.methods[6], opt = this._transport.mergeOptions(options);
1131
+ return stackIntercept<UpdateUserRequest, UpdateUserResponse>("unary", this._transport, method, opt, input);
1132
+ }
1133
+ /**
1134
+ * @generated from protobuf rpc: UpdateCurrentUser
1135
+ */
1136
+ updateCurrentUser(input: UpdateCurrentUserRequest, options?: RpcOptions): UnaryCall<UpdateCurrentUserRequest, UpdateCurrentUserResponse> {
1137
+ const method = this.methods[7], opt = this._transport.mergeOptions(options);
1138
+ return stackIntercept<UpdateCurrentUserRequest, UpdateCurrentUserResponse>("unary", this._transport, method, opt, input);
1139
+ }
1140
+ /**
1141
+ * @generated from protobuf rpc: EnableUser
1142
+ */
1143
+ enableUser(input: EnableUserRequest, options?: RpcOptions): UnaryCall<EnableUserRequest, EnableUserResponse> {
1144
+ const method = this.methods[8], opt = this._transport.mergeOptions(options);
1145
+ return stackIntercept<EnableUserRequest, EnableUserResponse>("unary", this._transport, method, opt, input);
1146
+ }
1147
+ /**
1148
+ * @generated from protobuf rpc: DisableUser
1149
+ */
1150
+ disableUser(input: DisableUserRequest, options?: RpcOptions): UnaryCall<DisableUserRequest, DisableUserResponse> {
1151
+ const method = this.methods[9], opt = this._transport.mergeOptions(options);
1152
+ return stackIntercept<DisableUserRequest, DisableUserResponse>("unary", this._transport, method, opt, input);
1153
+ }
1154
+ /**
1155
+ * @generated from protobuf rpc: DeleteUser
1156
+ */
1157
+ deleteUser(input: DeleteUserRequest, options?: RpcOptions): UnaryCall<DeleteUserRequest, DeleteUserResponse> {
1158
+ const method = this.methods[10], opt = this._transport.mergeOptions(options);
1159
+ return stackIntercept<DeleteUserRequest, DeleteUserResponse>("unary", this._transport, method, opt, input);
1160
+ }
1161
+ /**
1162
+ * @generated from protobuf rpc: ListOrganizationsByUser
1163
+ */
1164
+ listOrganizationsByUser(input: ListOrganizationsByUserRequest, options?: RpcOptions): UnaryCall<ListOrganizationsByUserRequest, ListOrganizationsByUserResponse> {
1165
+ const method = this.methods[11], opt = this._transport.mergeOptions(options);
1166
+ return stackIntercept<ListOrganizationsByUserRequest, ListOrganizationsByUserResponse>("unary", this._transport, method, opt, input);
1167
+ }
1168
+ /**
1169
+ * @generated from protobuf rpc: ListOrganizationsByCurrentUser
1170
+ */
1171
+ listOrganizationsByCurrentUser(input: ListOrganizationsByCurrentUserRequest, options?: RpcOptions): UnaryCall<ListOrganizationsByCurrentUserRequest, ListOrganizationsByCurrentUserResponse> {
1172
+ const method = this.methods[12], opt = this._transport.mergeOptions(options);
1173
+ return stackIntercept<ListOrganizationsByCurrentUserRequest, ListOrganizationsByCurrentUserResponse>("unary", this._transport, method, opt, input);
1174
+ }
1175
+ /**
1176
+ * @generated from protobuf rpc: ListProjectsByUser
1177
+ */
1178
+ listProjectsByUser(input: ListProjectsByUserRequest, options?: RpcOptions): UnaryCall<ListProjectsByUserRequest, ListProjectsByUserResponse> {
1179
+ const method = this.methods[13], opt = this._transport.mergeOptions(options);
1180
+ return stackIntercept<ListProjectsByUserRequest, ListProjectsByUserResponse>("unary", this._transport, method, opt, input);
1181
+ }
1182
+ /**
1183
+ * @generated from protobuf rpc: ListProjectsByCurrentUser
1184
+ */
1185
+ listProjectsByCurrentUser(input: ListProjectsByCurrentUserRequest, options?: RpcOptions): UnaryCall<ListProjectsByCurrentUserRequest, ListProjectsByCurrentUserResponse> {
1186
+ const method = this.methods[14], opt = this._transport.mergeOptions(options);
1187
+ return stackIntercept<ListProjectsByCurrentUserRequest, ListProjectsByCurrentUserResponse>("unary", this._transport, method, opt, input);
1188
+ }
1189
+ /**
1190
+ * @generated from protobuf rpc: ListUserInvitations
1191
+ */
1192
+ listUserInvitations(input: ListUserInvitationsRequest, options?: RpcOptions): UnaryCall<ListUserInvitationsRequest, ListUserInvitationsResponse> {
1193
+ const method = this.methods[15], opt = this._transport.mergeOptions(options);
1194
+ return stackIntercept<ListUserInvitationsRequest, ListUserInvitationsResponse>("unary", this._transport, method, opt, input);
1195
+ }
1196
+ /**
1197
+ * @generated from protobuf rpc: ListCurrentUserInvitations
1198
+ */
1199
+ listCurrentUserInvitations(input: ListCurrentUserInvitationsRequest, options?: RpcOptions): UnaryCall<ListCurrentUserInvitationsRequest, ListCurrentUserInvitationsResponse> {
1200
+ const method = this.methods[16], opt = this._transport.mergeOptions(options);
1201
+ return stackIntercept<ListCurrentUserInvitationsRequest, ListCurrentUserInvitationsResponse>("unary", this._transport, method, opt, input);
1202
+ }
1203
+ /**
1204
+ * ServiceUser
1205
+ *
1206
+ * @generated from protobuf rpc: ListServiceUsers
1207
+ */
1208
+ listServiceUsers(input: ListServiceUsersRequest, options?: RpcOptions): UnaryCall<ListServiceUsersRequest, ListServiceUsersResponse> {
1209
+ const method = this.methods[17], opt = this._transport.mergeOptions(options);
1210
+ return stackIntercept<ListServiceUsersRequest, ListServiceUsersResponse>("unary", this._transport, method, opt, input);
1211
+ }
1212
+ /**
1213
+ * @generated from protobuf rpc: CreateServiceUser
1214
+ */
1215
+ createServiceUser(input: CreateServiceUserRequest, options?: RpcOptions): UnaryCall<CreateServiceUserRequest, CreateServiceUserResponse> {
1216
+ const method = this.methods[18], opt = this._transport.mergeOptions(options);
1217
+ return stackIntercept<CreateServiceUserRequest, CreateServiceUserResponse>("unary", this._transport, method, opt, input);
1218
+ }
1219
+ /**
1220
+ * @generated from protobuf rpc: GetServiceUser
1221
+ */
1222
+ getServiceUser(input: GetServiceUserRequest, options?: RpcOptions): UnaryCall<GetServiceUserRequest, GetServiceUserResponse> {
1223
+ const method = this.methods[19], opt = this._transport.mergeOptions(options);
1224
+ return stackIntercept<GetServiceUserRequest, GetServiceUserResponse>("unary", this._transport, method, opt, input);
1225
+ }
1226
+ /**
1227
+ * @generated from protobuf rpc: DeleteServiceUser
1228
+ */
1229
+ deleteServiceUser(input: DeleteServiceUserRequest, options?: RpcOptions): UnaryCall<DeleteServiceUserRequest, DeleteServiceUserResponse> {
1230
+ const method = this.methods[20], opt = this._transport.mergeOptions(options);
1231
+ return stackIntercept<DeleteServiceUserRequest, DeleteServiceUserResponse>("unary", this._transport, method, opt, input);
1232
+ }
1233
+ /**
1234
+ * @generated from protobuf rpc: CreateServiceUserJWK
1235
+ */
1236
+ createServiceUserJWK(input: CreateServiceUserJWKRequest, options?: RpcOptions): UnaryCall<CreateServiceUserJWKRequest, CreateServiceUserJWKResponse> {
1237
+ const method = this.methods[21], opt = this._transport.mergeOptions(options);
1238
+ return stackIntercept<CreateServiceUserJWKRequest, CreateServiceUserJWKResponse>("unary", this._transport, method, opt, input);
1239
+ }
1240
+ /**
1241
+ * @generated from protobuf rpc: ListServiceUserJWKs
1242
+ */
1243
+ listServiceUserJWKs(input: ListServiceUserJWKsRequest, options?: RpcOptions): UnaryCall<ListServiceUserJWKsRequest, ListServiceUserJWKsResponse> {
1244
+ const method = this.methods[22], opt = this._transport.mergeOptions(options);
1245
+ return stackIntercept<ListServiceUserJWKsRequest, ListServiceUserJWKsResponse>("unary", this._transport, method, opt, input);
1246
+ }
1247
+ /**
1248
+ * @generated from protobuf rpc: GetServiceUserJWK
1249
+ */
1250
+ getServiceUserJWK(input: GetServiceUserJWKRequest, options?: RpcOptions): UnaryCall<GetServiceUserJWKRequest, GetServiceUserJWKResponse> {
1251
+ const method = this.methods[23], opt = this._transport.mergeOptions(options);
1252
+ return stackIntercept<GetServiceUserJWKRequest, GetServiceUserJWKResponse>("unary", this._transport, method, opt, input);
1253
+ }
1254
+ /**
1255
+ * @generated from protobuf rpc: DeleteServiceUserJWK
1256
+ */
1257
+ deleteServiceUserJWK(input: DeleteServiceUserJWKRequest, options?: RpcOptions): UnaryCall<DeleteServiceUserJWKRequest, DeleteServiceUserJWKResponse> {
1258
+ const method = this.methods[24], opt = this._transport.mergeOptions(options);
1259
+ return stackIntercept<DeleteServiceUserJWKRequest, DeleteServiceUserJWKResponse>("unary", this._transport, method, opt, input);
1260
+ }
1261
+ /**
1262
+ * @generated from protobuf rpc: CreateServiceUserCredential
1263
+ */
1264
+ createServiceUserCredential(input: CreateServiceUserCredentialRequest, options?: RpcOptions): UnaryCall<CreateServiceUserCredentialRequest, CreateServiceUserCredentialResponse> {
1265
+ const method = this.methods[25], opt = this._transport.mergeOptions(options);
1266
+ return stackIntercept<CreateServiceUserCredentialRequest, CreateServiceUserCredentialResponse>("unary", this._transport, method, opt, input);
1267
+ }
1268
+ /**
1269
+ * @generated from protobuf rpc: ListServiceUserCredentials
1270
+ */
1271
+ listServiceUserCredentials(input: ListServiceUserCredentialsRequest, options?: RpcOptions): UnaryCall<ListServiceUserCredentialsRequest, ListServiceUserCredentialsResponse> {
1272
+ const method = this.methods[26], opt = this._transport.mergeOptions(options);
1273
+ return stackIntercept<ListServiceUserCredentialsRequest, ListServiceUserCredentialsResponse>("unary", this._transport, method, opt, input);
1274
+ }
1275
+ /**
1276
+ * @generated from protobuf rpc: DeleteServiceUserCredential
1277
+ */
1278
+ deleteServiceUserCredential(input: DeleteServiceUserCredentialRequest, options?: RpcOptions): UnaryCall<DeleteServiceUserCredentialRequest, DeleteServiceUserCredentialResponse> {
1279
+ const method = this.methods[27], opt = this._transport.mergeOptions(options);
1280
+ return stackIntercept<DeleteServiceUserCredentialRequest, DeleteServiceUserCredentialResponse>("unary", this._transport, method, opt, input);
1281
+ }
1282
+ /**
1283
+ * @generated from protobuf rpc: CreateServiceUserToken
1284
+ */
1285
+ createServiceUserToken(input: CreateServiceUserTokenRequest, options?: RpcOptions): UnaryCall<CreateServiceUserTokenRequest, CreateServiceUserTokenResponse> {
1286
+ const method = this.methods[28], opt = this._transport.mergeOptions(options);
1287
+ return stackIntercept<CreateServiceUserTokenRequest, CreateServiceUserTokenResponse>("unary", this._transport, method, opt, input);
1288
+ }
1289
+ /**
1290
+ * @generated from protobuf rpc: ListServiceUserTokens
1291
+ */
1292
+ listServiceUserTokens(input: ListServiceUserTokensRequest, options?: RpcOptions): UnaryCall<ListServiceUserTokensRequest, ListServiceUserTokensResponse> {
1293
+ const method = this.methods[29], opt = this._transport.mergeOptions(options);
1294
+ return stackIntercept<ListServiceUserTokensRequest, ListServiceUserTokensResponse>("unary", this._transport, method, opt, input);
1295
+ }
1296
+ /**
1297
+ * @generated from protobuf rpc: DeleteServiceUserToken
1298
+ */
1299
+ deleteServiceUserToken(input: DeleteServiceUserTokenRequest, options?: RpcOptions): UnaryCall<DeleteServiceUserTokenRequest, DeleteServiceUserTokenResponse> {
1300
+ const method = this.methods[30], opt = this._transport.mergeOptions(options);
1301
+ return stackIntercept<DeleteServiceUserTokenRequest, DeleteServiceUserTokenResponse>("unary", this._transport, method, opt, input);
1302
+ }
1303
+ /**
1304
+ * @generated from protobuf rpc: ListServiceUserProjects
1305
+ */
1306
+ listServiceUserProjects(input: ListServiceUserProjectsRequest, options?: RpcOptions): UnaryCall<ListServiceUserProjectsRequest, ListServiceUserProjectsResponse> {
1307
+ const method = this.methods[31], opt = this._transport.mergeOptions(options);
1308
+ return stackIntercept<ListServiceUserProjectsRequest, ListServiceUserProjectsResponse>("unary", this._transport, method, opt, input);
1309
+ }
1310
+ /**
1311
+ * Group
1312
+ *
1313
+ * @generated from protobuf rpc: ListOrganizationGroups
1314
+ */
1315
+ listOrganizationGroups(input: ListOrganizationGroupsRequest, options?: RpcOptions): UnaryCall<ListOrganizationGroupsRequest, ListOrganizationGroupsResponse> {
1316
+ const method = this.methods[32], opt = this._transport.mergeOptions(options);
1317
+ return stackIntercept<ListOrganizationGroupsRequest, ListOrganizationGroupsResponse>("unary", this._transport, method, opt, input);
1318
+ }
1319
+ /**
1320
+ * @generated from protobuf rpc: CreateGroup
1321
+ */
1322
+ createGroup(input: CreateGroupRequest, options?: RpcOptions): UnaryCall<CreateGroupRequest, CreateGroupResponse> {
1323
+ const method = this.methods[33], opt = this._transport.mergeOptions(options);
1324
+ return stackIntercept<CreateGroupRequest, CreateGroupResponse>("unary", this._transport, method, opt, input);
1325
+ }
1326
+ /**
1327
+ * @generated from protobuf rpc: GetGroup
1328
+ */
1329
+ getGroup(input: GetGroupRequest, options?: RpcOptions): UnaryCall<GetGroupRequest, GetGroupResponse> {
1330
+ const method = this.methods[34], opt = this._transport.mergeOptions(options);
1331
+ return stackIntercept<GetGroupRequest, GetGroupResponse>("unary", this._transport, method, opt, input);
1332
+ }
1333
+ /**
1334
+ * @generated from protobuf rpc: UpdateGroup
1335
+ */
1336
+ updateGroup(input: UpdateGroupRequest, options?: RpcOptions): UnaryCall<UpdateGroupRequest, UpdateGroupResponse> {
1337
+ const method = this.methods[35], opt = this._transport.mergeOptions(options);
1338
+ return stackIntercept<UpdateGroupRequest, UpdateGroupResponse>("unary", this._transport, method, opt, input);
1339
+ }
1340
+ /**
1341
+ * @generated from protobuf rpc: ListGroupUsers
1342
+ */
1343
+ listGroupUsers(input: ListGroupUsersRequest, options?: RpcOptions): UnaryCall<ListGroupUsersRequest, ListGroupUsersResponse> {
1344
+ const method = this.methods[36], opt = this._transport.mergeOptions(options);
1345
+ return stackIntercept<ListGroupUsersRequest, ListGroupUsersResponse>("unary", this._transport, method, opt, input);
1346
+ }
1347
+ /**
1348
+ * @generated from protobuf rpc: AddGroupUsers
1349
+ */
1350
+ addGroupUsers(input: AddGroupUsersRequest, options?: RpcOptions): UnaryCall<AddGroupUsersRequest, AddGroupUsersResponse> {
1351
+ const method = this.methods[37], opt = this._transport.mergeOptions(options);
1352
+ return stackIntercept<AddGroupUsersRequest, AddGroupUsersResponse>("unary", this._transport, method, opt, input);
1353
+ }
1354
+ /**
1355
+ * @generated from protobuf rpc: RemoveGroupUser
1356
+ */
1357
+ removeGroupUser(input: RemoveGroupUserRequest, options?: RpcOptions): UnaryCall<RemoveGroupUserRequest, RemoveGroupUserResponse> {
1358
+ const method = this.methods[38], opt = this._transport.mergeOptions(options);
1359
+ return stackIntercept<RemoveGroupUserRequest, RemoveGroupUserResponse>("unary", this._transport, method, opt, input);
1360
+ }
1361
+ /**
1362
+ * @generated from protobuf rpc: EnableGroup
1363
+ */
1364
+ enableGroup(input: EnableGroupRequest, options?: RpcOptions): UnaryCall<EnableGroupRequest, EnableGroupResponse> {
1365
+ const method = this.methods[39], opt = this._transport.mergeOptions(options);
1366
+ return stackIntercept<EnableGroupRequest, EnableGroupResponse>("unary", this._transport, method, opt, input);
1367
+ }
1368
+ /**
1369
+ * @generated from protobuf rpc: DisableGroup
1370
+ */
1371
+ disableGroup(input: DisableGroupRequest, options?: RpcOptions): UnaryCall<DisableGroupRequest, DisableGroupResponse> {
1372
+ const method = this.methods[40], opt = this._transport.mergeOptions(options);
1373
+ return stackIntercept<DisableGroupRequest, DisableGroupResponse>("unary", this._transport, method, opt, input);
1374
+ }
1375
+ /**
1376
+ * @generated from protobuf rpc: DeleteGroup
1377
+ */
1378
+ deleteGroup(input: DeleteGroupRequest, options?: RpcOptions): UnaryCall<DeleteGroupRequest, DeleteGroupResponse> {
1379
+ const method = this.methods[41], opt = this._transport.mergeOptions(options);
1380
+ return stackIntercept<DeleteGroupRequest, DeleteGroupResponse>("unary", this._transport, method, opt, input);
1381
+ }
1382
+ /**
1383
+ * Roles
1384
+ *
1385
+ * @generated from protobuf rpc: ListRoles
1386
+ */
1387
+ listRoles(input: ListRolesRequest, options?: RpcOptions): UnaryCall<ListRolesRequest, ListRolesResponse> {
1388
+ const method = this.methods[42], opt = this._transport.mergeOptions(options);
1389
+ return stackIntercept<ListRolesRequest, ListRolesResponse>("unary", this._transport, method, opt, input);
1390
+ }
1391
+ /**
1392
+ * @generated from protobuf rpc: ListOrganizationRoles
1393
+ */
1394
+ listOrganizationRoles(input: ListOrganizationRolesRequest, options?: RpcOptions): UnaryCall<ListOrganizationRolesRequest, ListOrganizationRolesResponse> {
1395
+ const method = this.methods[43], opt = this._transport.mergeOptions(options);
1396
+ return stackIntercept<ListOrganizationRolesRequest, ListOrganizationRolesResponse>("unary", this._transport, method, opt, input);
1397
+ }
1398
+ /**
1399
+ * @generated from protobuf rpc: CreateOrganizationRole
1400
+ */
1401
+ createOrganizationRole(input: CreateOrganizationRoleRequest, options?: RpcOptions): UnaryCall<CreateOrganizationRoleRequest, CreateOrganizationRoleResponse> {
1402
+ const method = this.methods[44], opt = this._transport.mergeOptions(options);
1403
+ return stackIntercept<CreateOrganizationRoleRequest, CreateOrganizationRoleResponse>("unary", this._transport, method, opt, input);
1404
+ }
1405
+ /**
1406
+ * @generated from protobuf rpc: GetOrganizationRole
1407
+ */
1408
+ getOrganizationRole(input: GetOrganizationRoleRequest, options?: RpcOptions): UnaryCall<GetOrganizationRoleRequest, GetOrganizationRoleResponse> {
1409
+ const method = this.methods[45], opt = this._transport.mergeOptions(options);
1410
+ return stackIntercept<GetOrganizationRoleRequest, GetOrganizationRoleResponse>("unary", this._transport, method, opt, input);
1411
+ }
1412
+ /**
1413
+ * @generated from protobuf rpc: UpdateOrganizationRole
1414
+ */
1415
+ updateOrganizationRole(input: UpdateOrganizationRoleRequest, options?: RpcOptions): UnaryCall<UpdateOrganizationRoleRequest, UpdateOrganizationRoleResponse> {
1416
+ const method = this.methods[46], opt = this._transport.mergeOptions(options);
1417
+ return stackIntercept<UpdateOrganizationRoleRequest, UpdateOrganizationRoleResponse>("unary", this._transport, method, opt, input);
1418
+ }
1419
+ /**
1420
+ * @generated from protobuf rpc: DeleteOrganizationRole
1421
+ */
1422
+ deleteOrganizationRole(input: DeleteOrganizationRoleRequest, options?: RpcOptions): UnaryCall<DeleteOrganizationRoleRequest, DeleteOrganizationRoleResponse> {
1423
+ const method = this.methods[47], opt = this._transport.mergeOptions(options);
1424
+ return stackIntercept<DeleteOrganizationRoleRequest, DeleteOrganizationRoleResponse>("unary", this._transport, method, opt, input);
1425
+ }
1426
+ /**
1427
+ * Organizations
1428
+ *
1429
+ * @generated from protobuf rpc: ListOrganizations
1430
+ */
1431
+ listOrganizations(input: ListOrganizationsRequest, options?: RpcOptions): UnaryCall<ListOrganizationsRequest, ListOrganizationsResponse> {
1432
+ const method = this.methods[48], opt = this._transport.mergeOptions(options);
1433
+ return stackIntercept<ListOrganizationsRequest, ListOrganizationsResponse>("unary", this._transport, method, opt, input);
1434
+ }
1435
+ /**
1436
+ * @generated from protobuf rpc: CreateOrganization
1437
+ */
1438
+ createOrganization(input: CreateOrganizationRequest, options?: RpcOptions): UnaryCall<CreateOrganizationRequest, CreateOrganizationResponse> {
1439
+ const method = this.methods[49], opt = this._transport.mergeOptions(options);
1440
+ return stackIntercept<CreateOrganizationRequest, CreateOrganizationResponse>("unary", this._transport, method, opt, input);
1441
+ }
1442
+ /**
1443
+ * @generated from protobuf rpc: GetOrganization
1444
+ */
1445
+ getOrganization(input: GetOrganizationRequest, options?: RpcOptions): UnaryCall<GetOrganizationRequest, GetOrganizationResponse> {
1446
+ const method = this.methods[50], opt = this._transport.mergeOptions(options);
1447
+ return stackIntercept<GetOrganizationRequest, GetOrganizationResponse>("unary", this._transport, method, opt, input);
1448
+ }
1449
+ /**
1450
+ * @generated from protobuf rpc: UpdateOrganization
1451
+ */
1452
+ updateOrganization(input: UpdateOrganizationRequest, options?: RpcOptions): UnaryCall<UpdateOrganizationRequest, UpdateOrganizationResponse> {
1453
+ const method = this.methods[51], opt = this._transport.mergeOptions(options);
1454
+ return stackIntercept<UpdateOrganizationRequest, UpdateOrganizationResponse>("unary", this._transport, method, opt, input);
1455
+ }
1456
+ /**
1457
+ * @generated from protobuf rpc: ListOrganizationProjects
1458
+ */
1459
+ listOrganizationProjects(input: ListOrganizationProjectsRequest, options?: RpcOptions): UnaryCall<ListOrganizationProjectsRequest, ListOrganizationProjectsResponse> {
1460
+ const method = this.methods[52], opt = this._transport.mergeOptions(options);
1461
+ return stackIntercept<ListOrganizationProjectsRequest, ListOrganizationProjectsResponse>("unary", this._transport, method, opt, input);
1462
+ }
1463
+ /**
1464
+ * @generated from protobuf rpc: ListOrganizationAdmins
1465
+ */
1466
+ listOrganizationAdmins(input: ListOrganizationAdminsRequest, options?: RpcOptions): UnaryCall<ListOrganizationAdminsRequest, ListOrganizationAdminsResponse> {
1467
+ const method = this.methods[53], opt = this._transport.mergeOptions(options);
1468
+ return stackIntercept<ListOrganizationAdminsRequest, ListOrganizationAdminsResponse>("unary", this._transport, method, opt, input);
1469
+ }
1470
+ /**
1471
+ * @generated from protobuf rpc: ListOrganizationUsers
1472
+ */
1473
+ listOrganizationUsers(input: ListOrganizationUsersRequest, options?: RpcOptions): UnaryCall<ListOrganizationUsersRequest, ListOrganizationUsersResponse> {
1474
+ const method = this.methods[54], opt = this._transport.mergeOptions(options);
1475
+ return stackIntercept<ListOrganizationUsersRequest, ListOrganizationUsersResponse>("unary", this._transport, method, opt, input);
1476
+ }
1477
+ /**
1478
+ * @generated from protobuf rpc: AddOrganizationUsers
1479
+ */
1480
+ addOrganizationUsers(input: AddOrganizationUsersRequest, options?: RpcOptions): UnaryCall<AddOrganizationUsersRequest, AddOrganizationUsersResponse> {
1481
+ const method = this.methods[55], opt = this._transport.mergeOptions(options);
1482
+ return stackIntercept<AddOrganizationUsersRequest, AddOrganizationUsersResponse>("unary", this._transport, method, opt, input);
1483
+ }
1484
+ /**
1485
+ * @generated from protobuf rpc: RemoveOrganizationUser
1486
+ */
1487
+ removeOrganizationUser(input: RemoveOrganizationUserRequest, options?: RpcOptions): UnaryCall<RemoveOrganizationUserRequest, RemoveOrganizationUserResponse> {
1488
+ const method = this.methods[56], opt = this._transport.mergeOptions(options);
1489
+ return stackIntercept<RemoveOrganizationUserRequest, RemoveOrganizationUserResponse>("unary", this._transport, method, opt, input);
1490
+ }
1491
+ /**
1492
+ * @generated from protobuf rpc: GetOrganizationKyc
1493
+ */
1494
+ getOrganizationKyc(input: GetOrganizationKycRequest, options?: RpcOptions): UnaryCall<GetOrganizationKycRequest, GetOrganizationKycResponse> {
1495
+ const method = this.methods[57], opt = this._transport.mergeOptions(options);
1496
+ return stackIntercept<GetOrganizationKycRequest, GetOrganizationKycResponse>("unary", this._transport, method, opt, input);
1497
+ }
1498
+ /**
1499
+ * Deprecated: use ListServiceUsers instead
1500
+ *
1501
+ * @generated from protobuf rpc: ListOrganizationServiceUsers
1502
+ */
1503
+ listOrganizationServiceUsers(input: ListOrganizationServiceUsersRequest, options?: RpcOptions): UnaryCall<ListOrganizationServiceUsersRequest, ListOrganizationServiceUsersResponse> {
1504
+ const method = this.methods[58], opt = this._transport.mergeOptions(options);
1505
+ return stackIntercept<ListOrganizationServiceUsersRequest, ListOrganizationServiceUsersResponse>("unary", this._transport, method, opt, input);
1506
+ }
1507
+ /**
1508
+ * @generated from protobuf rpc: ListOrganizationInvitations
1509
+ */
1510
+ listOrganizationInvitations(input: ListOrganizationInvitationsRequest, options?: RpcOptions): UnaryCall<ListOrganizationInvitationsRequest, ListOrganizationInvitationsResponse> {
1511
+ const method = this.methods[59], opt = this._transport.mergeOptions(options);
1512
+ return stackIntercept<ListOrganizationInvitationsRequest, ListOrganizationInvitationsResponse>("unary", this._transport, method, opt, input);
1513
+ }
1514
+ /**
1515
+ * @generated from protobuf rpc: CreateOrganizationInvitation
1516
+ */
1517
+ createOrganizationInvitation(input: CreateOrganizationInvitationRequest, options?: RpcOptions): UnaryCall<CreateOrganizationInvitationRequest, CreateOrganizationInvitationResponse> {
1518
+ const method = this.methods[60], opt = this._transport.mergeOptions(options);
1519
+ return stackIntercept<CreateOrganizationInvitationRequest, CreateOrganizationInvitationResponse>("unary", this._transport, method, opt, input);
1520
+ }
1521
+ /**
1522
+ * @generated from protobuf rpc: GetOrganizationInvitation
1523
+ */
1524
+ getOrganizationInvitation(input: GetOrganizationInvitationRequest, options?: RpcOptions): UnaryCall<GetOrganizationInvitationRequest, GetOrganizationInvitationResponse> {
1525
+ const method = this.methods[61], opt = this._transport.mergeOptions(options);
1526
+ return stackIntercept<GetOrganizationInvitationRequest, GetOrganizationInvitationResponse>("unary", this._transport, method, opt, input);
1527
+ }
1528
+ /**
1529
+ * @generated from protobuf rpc: AcceptOrganizationInvitation
1530
+ */
1531
+ acceptOrganizationInvitation(input: AcceptOrganizationInvitationRequest, options?: RpcOptions): UnaryCall<AcceptOrganizationInvitationRequest, AcceptOrganizationInvitationResponse> {
1532
+ const method = this.methods[62], opt = this._transport.mergeOptions(options);
1533
+ return stackIntercept<AcceptOrganizationInvitationRequest, AcceptOrganizationInvitationResponse>("unary", this._transport, method, opt, input);
1534
+ }
1535
+ /**
1536
+ * @generated from protobuf rpc: DeleteOrganizationInvitation
1537
+ */
1538
+ deleteOrganizationInvitation(input: DeleteOrganizationInvitationRequest, options?: RpcOptions): UnaryCall<DeleteOrganizationInvitationRequest, DeleteOrganizationInvitationResponse> {
1539
+ const method = this.methods[63], opt = this._transport.mergeOptions(options);
1540
+ return stackIntercept<DeleteOrganizationInvitationRequest, DeleteOrganizationInvitationResponse>("unary", this._transport, method, opt, input);
1541
+ }
1542
+ /**
1543
+ * @generated from protobuf rpc: ListOrganizationDomains
1544
+ */
1545
+ listOrganizationDomains(input: ListOrganizationDomainsRequest, options?: RpcOptions): UnaryCall<ListOrganizationDomainsRequest, ListOrganizationDomainsResponse> {
1546
+ const method = this.methods[64], opt = this._transport.mergeOptions(options);
1547
+ return stackIntercept<ListOrganizationDomainsRequest, ListOrganizationDomainsResponse>("unary", this._transport, method, opt, input);
1548
+ }
1549
+ /**
1550
+ * @generated from protobuf rpc: CreateOrganizationDomain
1551
+ */
1552
+ createOrganizationDomain(input: CreateOrganizationDomainRequest, options?: RpcOptions): UnaryCall<CreateOrganizationDomainRequest, CreateOrganizationDomainResponse> {
1553
+ const method = this.methods[65], opt = this._transport.mergeOptions(options);
1554
+ return stackIntercept<CreateOrganizationDomainRequest, CreateOrganizationDomainResponse>("unary", this._transport, method, opt, input);
1555
+ }
1556
+ /**
1557
+ * @generated from protobuf rpc: DeleteOrganizationDomain
1558
+ */
1559
+ deleteOrganizationDomain(input: DeleteOrganizationDomainRequest, options?: RpcOptions): UnaryCall<DeleteOrganizationDomainRequest, DeleteOrganizationDomainResponse> {
1560
+ const method = this.methods[66], opt = this._transport.mergeOptions(options);
1561
+ return stackIntercept<DeleteOrganizationDomainRequest, DeleteOrganizationDomainResponse>("unary", this._transport, method, opt, input);
1562
+ }
1563
+ /**
1564
+ * @generated from protobuf rpc: GetOrganizationDomain
1565
+ */
1566
+ getOrganizationDomain(input: GetOrganizationDomainRequest, options?: RpcOptions): UnaryCall<GetOrganizationDomainRequest, GetOrganizationDomainResponse> {
1567
+ const method = this.methods[67], opt = this._transport.mergeOptions(options);
1568
+ return stackIntercept<GetOrganizationDomainRequest, GetOrganizationDomainResponse>("unary", this._transport, method, opt, input);
1569
+ }
1570
+ /**
1571
+ * @generated from protobuf rpc: VerifyOrganizationDomain
1572
+ */
1573
+ verifyOrganizationDomain(input: VerifyOrganizationDomainRequest, options?: RpcOptions): UnaryCall<VerifyOrganizationDomainRequest, VerifyOrganizationDomainResponse> {
1574
+ const method = this.methods[68], opt = this._transport.mergeOptions(options);
1575
+ return stackIntercept<VerifyOrganizationDomainRequest, VerifyOrganizationDomainResponse>("unary", this._transport, method, opt, input);
1576
+ }
1577
+ /**
1578
+ * @generated from protobuf rpc: JoinOrganization
1579
+ */
1580
+ joinOrganization(input: JoinOrganizationRequest, options?: RpcOptions): UnaryCall<JoinOrganizationRequest, JoinOrganizationResponse> {
1581
+ const method = this.methods[69], opt = this._transport.mergeOptions(options);
1582
+ return stackIntercept<JoinOrganizationRequest, JoinOrganizationResponse>("unary", this._transport, method, opt, input);
1583
+ }
1584
+ /**
1585
+ * @generated from protobuf rpc: EnableOrganization
1586
+ */
1587
+ enableOrganization(input: EnableOrganizationRequest, options?: RpcOptions): UnaryCall<EnableOrganizationRequest, EnableOrganizationResponse> {
1588
+ const method = this.methods[70], opt = this._transport.mergeOptions(options);
1589
+ return stackIntercept<EnableOrganizationRequest, EnableOrganizationResponse>("unary", this._transport, method, opt, input);
1590
+ }
1591
+ /**
1592
+ * @generated from protobuf rpc: DisableOrganization
1593
+ */
1594
+ disableOrganization(input: DisableOrganizationRequest, options?: RpcOptions): UnaryCall<DisableOrganizationRequest, DisableOrganizationResponse> {
1595
+ const method = this.methods[71], opt = this._transport.mergeOptions(options);
1596
+ return stackIntercept<DisableOrganizationRequest, DisableOrganizationResponse>("unary", this._transport, method, opt, input);
1597
+ }
1598
+ /**
1599
+ * @generated from protobuf rpc: DeleteOrganization
1600
+ */
1601
+ deleteOrganization(input: DeleteOrganizationRequest, options?: RpcOptions): UnaryCall<DeleteOrganizationRequest, DeleteOrganizationResponse> {
1602
+ const method = this.methods[72], opt = this._transport.mergeOptions(options);
1603
+ return stackIntercept<DeleteOrganizationRequest, DeleteOrganizationResponse>("unary", this._transport, method, opt, input);
1604
+ }
1605
+ /**
1606
+ * Projects
1607
+ *
1608
+ * @generated from protobuf rpc: CreateProject
1609
+ */
1610
+ createProject(input: CreateProjectRequest, options?: RpcOptions): UnaryCall<CreateProjectRequest, CreateProjectResponse> {
1611
+ const method = this.methods[73], opt = this._transport.mergeOptions(options);
1612
+ return stackIntercept<CreateProjectRequest, CreateProjectResponse>("unary", this._transport, method, opt, input);
1613
+ }
1614
+ /**
1615
+ * @generated from protobuf rpc: GetProject
1616
+ */
1617
+ getProject(input: GetProjectRequest, options?: RpcOptions): UnaryCall<GetProjectRequest, GetProjectResponse> {
1618
+ const method = this.methods[74], opt = this._transport.mergeOptions(options);
1619
+ return stackIntercept<GetProjectRequest, GetProjectResponse>("unary", this._transport, method, opt, input);
1620
+ }
1621
+ /**
1622
+ * @generated from protobuf rpc: UpdateProject
1623
+ */
1624
+ updateProject(input: UpdateProjectRequest, options?: RpcOptions): UnaryCall<UpdateProjectRequest, UpdateProjectResponse> {
1625
+ const method = this.methods[75], opt = this._transport.mergeOptions(options);
1626
+ return stackIntercept<UpdateProjectRequest, UpdateProjectResponse>("unary", this._transport, method, opt, input);
1627
+ }
1628
+ /**
1629
+ * @generated from protobuf rpc: ListProjectAdmins
1630
+ */
1631
+ listProjectAdmins(input: ListProjectAdminsRequest, options?: RpcOptions): UnaryCall<ListProjectAdminsRequest, ListProjectAdminsResponse> {
1632
+ const method = this.methods[76], opt = this._transport.mergeOptions(options);
1633
+ return stackIntercept<ListProjectAdminsRequest, ListProjectAdminsResponse>("unary", this._transport, method, opt, input);
1634
+ }
1635
+ /**
1636
+ * @generated from protobuf rpc: ListProjectUsers
1637
+ */
1638
+ listProjectUsers(input: ListProjectUsersRequest, options?: RpcOptions): UnaryCall<ListProjectUsersRequest, ListProjectUsersResponse> {
1639
+ const method = this.methods[77], opt = this._transport.mergeOptions(options);
1640
+ return stackIntercept<ListProjectUsersRequest, ListProjectUsersResponse>("unary", this._transport, method, opt, input);
1641
+ }
1642
+ /**
1643
+ * @generated from protobuf rpc: ListProjectServiceUsers
1644
+ */
1645
+ listProjectServiceUsers(input: ListProjectServiceUsersRequest, options?: RpcOptions): UnaryCall<ListProjectServiceUsersRequest, ListProjectServiceUsersResponse> {
1646
+ const method = this.methods[78], opt = this._transport.mergeOptions(options);
1647
+ return stackIntercept<ListProjectServiceUsersRequest, ListProjectServiceUsersResponse>("unary", this._transport, method, opt, input);
1648
+ }
1649
+ /**
1650
+ * @generated from protobuf rpc: ListProjectGroups
1651
+ */
1652
+ listProjectGroups(input: ListProjectGroupsRequest, options?: RpcOptions): UnaryCall<ListProjectGroupsRequest, ListProjectGroupsResponse> {
1653
+ const method = this.methods[79], opt = this._transport.mergeOptions(options);
1654
+ return stackIntercept<ListProjectGroupsRequest, ListProjectGroupsResponse>("unary", this._transport, method, opt, input);
1655
+ }
1656
+ /**
1657
+ * @generated from protobuf rpc: EnableProject
1658
+ */
1659
+ enableProject(input: EnableProjectRequest, options?: RpcOptions): UnaryCall<EnableProjectRequest, EnableProjectResponse> {
1660
+ const method = this.methods[80], opt = this._transport.mergeOptions(options);
1661
+ return stackIntercept<EnableProjectRequest, EnableProjectResponse>("unary", this._transport, method, opt, input);
1662
+ }
1663
+ /**
1664
+ * @generated from protobuf rpc: DisableProject
1665
+ */
1666
+ disableProject(input: DisableProjectRequest, options?: RpcOptions): UnaryCall<DisableProjectRequest, DisableProjectResponse> {
1667
+ const method = this.methods[81], opt = this._transport.mergeOptions(options);
1668
+ return stackIntercept<DisableProjectRequest, DisableProjectResponse>("unary", this._transport, method, opt, input);
1669
+ }
1670
+ /**
1671
+ * @generated from protobuf rpc: DeleteProject
1672
+ */
1673
+ deleteProject(input: DeleteProjectRequest, options?: RpcOptions): UnaryCall<DeleteProjectRequest, DeleteProjectResponse> {
1674
+ const method = this.methods[82], opt = this._transport.mergeOptions(options);
1675
+ return stackIntercept<DeleteProjectRequest, DeleteProjectResponse>("unary", this._transport, method, opt, input);
1676
+ }
1677
+ /**
1678
+ * Policies
1679
+ *
1680
+ * @generated from protobuf rpc: CreatePolicy
1681
+ */
1682
+ createPolicy(input: CreatePolicyRequest, options?: RpcOptions): UnaryCall<CreatePolicyRequest, CreatePolicyResponse> {
1683
+ const method = this.methods[83], opt = this._transport.mergeOptions(options);
1684
+ return stackIntercept<CreatePolicyRequest, CreatePolicyResponse>("unary", this._transport, method, opt, input);
1685
+ }
1686
+ /**
1687
+ * @generated from protobuf rpc: GetPolicy
1688
+ */
1689
+ getPolicy(input: GetPolicyRequest, options?: RpcOptions): UnaryCall<GetPolicyRequest, GetPolicyResponse> {
1690
+ const method = this.methods[84], opt = this._transport.mergeOptions(options);
1691
+ return stackIntercept<GetPolicyRequest, GetPolicyResponse>("unary", this._transport, method, opt, input);
1692
+ }
1693
+ /**
1694
+ * @generated from protobuf rpc: ListPolicies
1695
+ */
1696
+ listPolicies(input: ListPoliciesRequest, options?: RpcOptions): UnaryCall<ListPoliciesRequest, ListPoliciesResponse> {
1697
+ const method = this.methods[85], opt = this._transport.mergeOptions(options);
1698
+ return stackIntercept<ListPoliciesRequest, ListPoliciesResponse>("unary", this._transport, method, opt, input);
1699
+ }
1700
+ /**
1701
+ * @generated from protobuf rpc: UpdatePolicy
1702
+ */
1703
+ updatePolicy(input: UpdatePolicyRequest, options?: RpcOptions): UnaryCall<UpdatePolicyRequest, UpdatePolicyResponse> {
1704
+ const method = this.methods[86], opt = this._transport.mergeOptions(options);
1705
+ return stackIntercept<UpdatePolicyRequest, UpdatePolicyResponse>("unary", this._transport, method, opt, input);
1706
+ }
1707
+ /**
1708
+ * @generated from protobuf rpc: DeletePolicy
1709
+ */
1710
+ deletePolicy(input: DeletePolicyRequest, options?: RpcOptions): UnaryCall<DeletePolicyRequest, DeletePolicyResponse> {
1711
+ const method = this.methods[87], opt = this._transport.mergeOptions(options);
1712
+ return stackIntercept<DeletePolicyRequest, DeletePolicyResponse>("unary", this._transport, method, opt, input);
1713
+ }
1714
+ /**
1715
+ * @generated from protobuf rpc: CreatePolicyForProject
1716
+ */
1717
+ createPolicyForProject(input: CreatePolicyForProjectRequest, options?: RpcOptions): UnaryCall<CreatePolicyForProjectRequest, CreatePolicyForProjectResponse> {
1718
+ const method = this.methods[88], opt = this._transport.mergeOptions(options);
1719
+ return stackIntercept<CreatePolicyForProjectRequest, CreatePolicyForProjectResponse>("unary", this._transport, method, opt, input);
1720
+ }
1721
+ /**
1722
+ * Relations
1723
+ *
1724
+ * @generated from protobuf rpc: CreateRelation
1725
+ */
1726
+ createRelation(input: CreateRelationRequest, options?: RpcOptions): UnaryCall<CreateRelationRequest, CreateRelationResponse> {
1727
+ const method = this.methods[89], opt = this._transport.mergeOptions(options);
1728
+ return stackIntercept<CreateRelationRequest, CreateRelationResponse>("unary", this._transport, method, opt, input);
1729
+ }
1730
+ /**
1731
+ * @generated from protobuf rpc: GetRelation
1732
+ */
1733
+ getRelation(input: GetRelationRequest, options?: RpcOptions): UnaryCall<GetRelationRequest, GetRelationResponse> {
1734
+ const method = this.methods[90], opt = this._transport.mergeOptions(options);
1735
+ return stackIntercept<GetRelationRequest, GetRelationResponse>("unary", this._transport, method, opt, input);
1736
+ }
1737
+ /**
1738
+ * @generated from protobuf rpc: DeleteRelation
1739
+ */
1740
+ deleteRelation(input: DeleteRelationRequest, options?: RpcOptions): UnaryCall<DeleteRelationRequest, DeleteRelationResponse> {
1741
+ const method = this.methods[91], opt = this._transport.mergeOptions(options);
1742
+ return stackIntercept<DeleteRelationRequest, DeleteRelationResponse>("unary", this._transport, method, opt, input);
1743
+ }
1744
+ /**
1745
+ * Permissions
1746
+ *
1747
+ * @generated from protobuf rpc: ListPermissions
1748
+ */
1749
+ listPermissions(input: ListPermissionsRequest, options?: RpcOptions): UnaryCall<ListPermissionsRequest, ListPermissionsResponse> {
1750
+ const method = this.methods[92], opt = this._transport.mergeOptions(options);
1751
+ return stackIntercept<ListPermissionsRequest, ListPermissionsResponse>("unary", this._transport, method, opt, input);
1752
+ }
1753
+ /**
1754
+ * @generated from protobuf rpc: GetPermission
1755
+ */
1756
+ getPermission(input: GetPermissionRequest, options?: RpcOptions): UnaryCall<GetPermissionRequest, GetPermissionResponse> {
1757
+ const method = this.methods[93], opt = this._transport.mergeOptions(options);
1758
+ return stackIntercept<GetPermissionRequest, GetPermissionResponse>("unary", this._transport, method, opt, input);
1759
+ }
1760
+ /**
1761
+ * Namespaces
1762
+ *
1763
+ * @generated from protobuf rpc: ListNamespaces
1764
+ */
1765
+ listNamespaces(input: ListNamespacesRequest, options?: RpcOptions): UnaryCall<ListNamespacesRequest, ListNamespacesResponse> {
1766
+ const method = this.methods[94], opt = this._transport.mergeOptions(options);
1767
+ return stackIntercept<ListNamespacesRequest, ListNamespacesResponse>("unary", this._transport, method, opt, input);
1768
+ }
1769
+ /**
1770
+ * @generated from protobuf rpc: GetNamespace
1771
+ */
1772
+ getNamespace(input: GetNamespaceRequest, options?: RpcOptions): UnaryCall<GetNamespaceRequest, GetNamespaceResponse> {
1773
+ const method = this.methods[95], opt = this._transport.mergeOptions(options);
1774
+ return stackIntercept<GetNamespaceRequest, GetNamespaceResponse>("unary", this._transport, method, opt, input);
1775
+ }
1776
+ /**
1777
+ * Resources
1778
+ *
1779
+ * @generated from protobuf rpc: ListProjectResources
1780
+ */
1781
+ listProjectResources(input: ListProjectResourcesRequest, options?: RpcOptions): UnaryCall<ListProjectResourcesRequest, ListProjectResourcesResponse> {
1782
+ const method = this.methods[96], opt = this._transport.mergeOptions(options);
1783
+ return stackIntercept<ListProjectResourcesRequest, ListProjectResourcesResponse>("unary", this._transport, method, opt, input);
1784
+ }
1785
+ /**
1786
+ * @generated from protobuf rpc: CreateProjectResource
1787
+ */
1788
+ createProjectResource(input: CreateProjectResourceRequest, options?: RpcOptions): UnaryCall<CreateProjectResourceRequest, CreateProjectResourceResponse> {
1789
+ const method = this.methods[97], opt = this._transport.mergeOptions(options);
1790
+ return stackIntercept<CreateProjectResourceRequest, CreateProjectResourceResponse>("unary", this._transport, method, opt, input);
1791
+ }
1792
+ /**
1793
+ * @generated from protobuf rpc: GetProjectResource
1794
+ */
1795
+ getProjectResource(input: GetProjectResourceRequest, options?: RpcOptions): UnaryCall<GetProjectResourceRequest, GetProjectResourceResponse> {
1796
+ const method = this.methods[98], opt = this._transport.mergeOptions(options);
1797
+ return stackIntercept<GetProjectResourceRequest, GetProjectResourceResponse>("unary", this._transport, method, opt, input);
1798
+ }
1799
+ /**
1800
+ * @generated from protobuf rpc: UpdateProjectResource
1801
+ */
1802
+ updateProjectResource(input: UpdateProjectResourceRequest, options?: RpcOptions): UnaryCall<UpdateProjectResourceRequest, UpdateProjectResourceResponse> {
1803
+ const method = this.methods[99], opt = this._transport.mergeOptions(options);
1804
+ return stackIntercept<UpdateProjectResourceRequest, UpdateProjectResourceResponse>("unary", this._transport, method, opt, input);
1805
+ }
1806
+ /**
1807
+ * @generated from protobuf rpc: DeleteProjectResource
1808
+ */
1809
+ deleteProjectResource(input: DeleteProjectResourceRequest, options?: RpcOptions): UnaryCall<DeleteProjectResourceRequest, DeleteProjectResourceResponse> {
1810
+ const method = this.methods[100], opt = this._transport.mergeOptions(options);
1811
+ return stackIntercept<DeleteProjectResourceRequest, DeleteProjectResourceResponse>("unary", this._transport, method, opt, input);
1812
+ }
1813
+ /**
1814
+ * Authz
1815
+ *
1816
+ * @generated from protobuf rpc: CheckResourcePermission
1817
+ */
1818
+ checkResourcePermission(input: CheckResourcePermissionRequest, options?: RpcOptions): UnaryCall<CheckResourcePermissionRequest, CheckResourcePermissionResponse> {
1819
+ const method = this.methods[101], opt = this._transport.mergeOptions(options);
1820
+ return stackIntercept<CheckResourcePermissionRequest, CheckResourcePermissionResponse>("unary", this._transport, method, opt, input);
1821
+ }
1822
+ /**
1823
+ * @generated from protobuf rpc: BatchCheckPermission
1824
+ */
1825
+ batchCheckPermission(input: BatchCheckPermissionRequest, options?: RpcOptions): UnaryCall<BatchCheckPermissionRequest, BatchCheckPermissionResponse> {
1826
+ const method = this.methods[102], opt = this._transport.mergeOptions(options);
1827
+ return stackIntercept<BatchCheckPermissionRequest, BatchCheckPermissionResponse>("unary", this._transport, method, opt, input);
1828
+ }
1829
+ /**
1830
+ * Authn
1831
+ *
1832
+ * @generated from protobuf rpc: GetJWKs
1833
+ */
1834
+ getJWKs(input: GetJWKsRequest, options?: RpcOptions): UnaryCall<GetJWKsRequest, GetJWKsResponse> {
1835
+ const method = this.methods[103], opt = this._transport.mergeOptions(options);
1836
+ return stackIntercept<GetJWKsRequest, GetJWKsResponse>("unary", this._transport, method, opt, input);
1837
+ }
1838
+ /**
1839
+ * @generated from protobuf rpc: ListAuthStrategies
1840
+ */
1841
+ listAuthStrategies(input: ListAuthStrategiesRequest, options?: RpcOptions): UnaryCall<ListAuthStrategiesRequest, ListAuthStrategiesResponse> {
1842
+ const method = this.methods[104], opt = this._transport.mergeOptions(options);
1843
+ return stackIntercept<ListAuthStrategiesRequest, ListAuthStrategiesResponse>("unary", this._transport, method, opt, input);
1844
+ }
1845
+ /**
1846
+ * @generated from protobuf rpc: Authenticate
1847
+ */
1848
+ authenticate(input: AuthenticateRequest, options?: RpcOptions): UnaryCall<AuthenticateRequest, AuthenticateResponse> {
1849
+ const method = this.methods[105], opt = this._transport.mergeOptions(options);
1850
+ return stackIntercept<AuthenticateRequest, AuthenticateResponse>("unary", this._transport, method, opt, input);
1851
+ }
1852
+ /**
1853
+ * @generated from protobuf rpc: AuthCallback
1854
+ */
1855
+ authCallback(input: AuthCallbackRequest, options?: RpcOptions): UnaryCall<AuthCallbackRequest, AuthCallbackResponse> {
1856
+ const method = this.methods[106], opt = this._transport.mergeOptions(options);
1857
+ return stackIntercept<AuthCallbackRequest, AuthCallbackResponse>("unary", this._transport, method, opt, input);
1858
+ }
1859
+ /**
1860
+ * @generated from protobuf rpc: AuthToken
1861
+ */
1862
+ authToken(input: AuthTokenRequest, options?: RpcOptions): UnaryCall<AuthTokenRequest, AuthTokenResponse> {
1863
+ const method = this.methods[107], opt = this._transport.mergeOptions(options);
1864
+ return stackIntercept<AuthTokenRequest, AuthTokenResponse>("unary", this._transport, method, opt, input);
1865
+ }
1866
+ /**
1867
+ * @generated from protobuf rpc: AuthLogout
1868
+ */
1869
+ authLogout(input: AuthLogoutRequest, options?: RpcOptions): UnaryCall<AuthLogoutRequest, AuthLogoutResponse> {
1870
+ const method = this.methods[108], opt = this._transport.mergeOptions(options);
1871
+ return stackIntercept<AuthLogoutRequest, AuthLogoutResponse>("unary", this._transport, method, opt, input);
1872
+ }
1873
+ /**
1874
+ * MetaSchemas
1875
+ *
1876
+ * @generated from protobuf rpc: ListMetaSchemas
1877
+ */
1878
+ listMetaSchemas(input: ListMetaSchemasRequest, options?: RpcOptions): UnaryCall<ListMetaSchemasRequest, ListMetaSchemasResponse> {
1879
+ const method = this.methods[109], opt = this._transport.mergeOptions(options);
1880
+ return stackIntercept<ListMetaSchemasRequest, ListMetaSchemasResponse>("unary", this._transport, method, opt, input);
1881
+ }
1882
+ /**
1883
+ * @generated from protobuf rpc: CreateMetaSchema
1884
+ */
1885
+ createMetaSchema(input: CreateMetaSchemaRequest, options?: RpcOptions): UnaryCall<CreateMetaSchemaRequest, CreateMetaSchemaResponse> {
1886
+ const method = this.methods[110], opt = this._transport.mergeOptions(options);
1887
+ return stackIntercept<CreateMetaSchemaRequest, CreateMetaSchemaResponse>("unary", this._transport, method, opt, input);
1888
+ }
1889
+ /**
1890
+ * @generated from protobuf rpc: GetMetaSchema
1891
+ */
1892
+ getMetaSchema(input: GetMetaSchemaRequest, options?: RpcOptions): UnaryCall<GetMetaSchemaRequest, GetMetaSchemaResponse> {
1893
+ const method = this.methods[111], opt = this._transport.mergeOptions(options);
1894
+ return stackIntercept<GetMetaSchemaRequest, GetMetaSchemaResponse>("unary", this._transport, method, opt, input);
1895
+ }
1896
+ /**
1897
+ * @generated from protobuf rpc: UpdateMetaSchema
1898
+ */
1899
+ updateMetaSchema(input: UpdateMetaSchemaRequest, options?: RpcOptions): UnaryCall<UpdateMetaSchemaRequest, UpdateMetaSchemaResponse> {
1900
+ const method = this.methods[112], opt = this._transport.mergeOptions(options);
1901
+ return stackIntercept<UpdateMetaSchemaRequest, UpdateMetaSchemaResponse>("unary", this._transport, method, opt, input);
1902
+ }
1903
+ /**
1904
+ * @generated from protobuf rpc: DeleteMetaSchema
1905
+ */
1906
+ deleteMetaSchema(input: DeleteMetaSchemaRequest, options?: RpcOptions): UnaryCall<DeleteMetaSchemaRequest, DeleteMetaSchemaResponse> {
1907
+ const method = this.methods[113], opt = this._transport.mergeOptions(options);
1908
+ return stackIntercept<DeleteMetaSchemaRequest, DeleteMetaSchemaResponse>("unary", this._transport, method, opt, input);
1909
+ }
1910
+ /**
1911
+ * Audit logs
1912
+ *
1913
+ * @generated from protobuf rpc: ListOrganizationAuditLogs
1914
+ */
1915
+ listOrganizationAuditLogs(input: ListOrganizationAuditLogsRequest, options?: RpcOptions): UnaryCall<ListOrganizationAuditLogsRequest, ListOrganizationAuditLogsResponse> {
1916
+ const method = this.methods[114], opt = this._transport.mergeOptions(options);
1917
+ return stackIntercept<ListOrganizationAuditLogsRequest, ListOrganizationAuditLogsResponse>("unary", this._transport, method, opt, input);
1918
+ }
1919
+ /**
1920
+ * @generated from protobuf rpc: CreateOrganizationAuditLogs
1921
+ */
1922
+ createOrganizationAuditLogs(input: CreateOrganizationAuditLogsRequest, options?: RpcOptions): UnaryCall<CreateOrganizationAuditLogsRequest, CreateOrganizationAuditLogsResponse> {
1923
+ const method = this.methods[115], opt = this._transport.mergeOptions(options);
1924
+ return stackIntercept<CreateOrganizationAuditLogsRequest, CreateOrganizationAuditLogsResponse>("unary", this._transport, method, opt, input);
1925
+ }
1926
+ /**
1927
+ * @generated from protobuf rpc: GetOrganizationAuditLog
1928
+ */
1929
+ getOrganizationAuditLog(input: GetOrganizationAuditLogRequest, options?: RpcOptions): UnaryCall<GetOrganizationAuditLogRequest, GetOrganizationAuditLogResponse> {
1930
+ const method = this.methods[116], opt = this._transport.mergeOptions(options);
1931
+ return stackIntercept<GetOrganizationAuditLogRequest, GetOrganizationAuditLogResponse>("unary", this._transport, method, opt, input);
1932
+ }
1933
+ // Preferences
1934
+
1935
+ /**
1936
+ * DescribePreferences list down all the supported preferences of entities
1937
+ *
1938
+ * @generated from protobuf rpc: DescribePreferences
1939
+ */
1940
+ describePreferences(input: DescribePreferencesRequest, options?: RpcOptions): UnaryCall<DescribePreferencesRequest, DescribePreferencesResponse> {
1941
+ const method = this.methods[117], opt = this._transport.mergeOptions(options);
1942
+ return stackIntercept<DescribePreferencesRequest, DescribePreferencesResponse>("unary", this._transport, method, opt, input);
1943
+ }
1944
+ /**
1945
+ * @generated from protobuf rpc: CreateOrganizationPreferences
1946
+ */
1947
+ createOrganizationPreferences(input: CreateOrganizationPreferencesRequest, options?: RpcOptions): UnaryCall<CreateOrganizationPreferencesRequest, CreateOrganizationPreferencesResponse> {
1948
+ const method = this.methods[118], opt = this._transport.mergeOptions(options);
1949
+ return stackIntercept<CreateOrganizationPreferencesRequest, CreateOrganizationPreferencesResponse>("unary", this._transport, method, opt, input);
1950
+ }
1951
+ /**
1952
+ * @generated from protobuf rpc: ListOrganizationPreferences
1953
+ */
1954
+ listOrganizationPreferences(input: ListOrganizationPreferencesRequest, options?: RpcOptions): UnaryCall<ListOrganizationPreferencesRequest, ListOrganizationPreferencesResponse> {
1955
+ const method = this.methods[119], opt = this._transport.mergeOptions(options);
1956
+ return stackIntercept<ListOrganizationPreferencesRequest, ListOrganizationPreferencesResponse>("unary", this._transport, method, opt, input);
1957
+ }
1958
+ /**
1959
+ * @generated from protobuf rpc: CreateProjectPreferences
1960
+ */
1961
+ createProjectPreferences(input: CreateProjectPreferencesRequest, options?: RpcOptions): UnaryCall<CreateProjectPreferencesRequest, CreateProjectPreferencesResponse> {
1962
+ const method = this.methods[120], opt = this._transport.mergeOptions(options);
1963
+ return stackIntercept<CreateProjectPreferencesRequest, CreateProjectPreferencesResponse>("unary", this._transport, method, opt, input);
1964
+ }
1965
+ /**
1966
+ * @generated from protobuf rpc: ListProjectPreferences
1967
+ */
1968
+ listProjectPreferences(input: ListProjectPreferencesRequest, options?: RpcOptions): UnaryCall<ListProjectPreferencesRequest, ListProjectPreferencesResponse> {
1969
+ const method = this.methods[121], opt = this._transport.mergeOptions(options);
1970
+ return stackIntercept<ListProjectPreferencesRequest, ListProjectPreferencesResponse>("unary", this._transport, method, opt, input);
1971
+ }
1972
+ /**
1973
+ * @generated from protobuf rpc: CreateGroupPreferences
1974
+ */
1975
+ createGroupPreferences(input: CreateGroupPreferencesRequest, options?: RpcOptions): UnaryCall<CreateGroupPreferencesRequest, CreateGroupPreferencesResponse> {
1976
+ const method = this.methods[122], opt = this._transport.mergeOptions(options);
1977
+ return stackIntercept<CreateGroupPreferencesRequest, CreateGroupPreferencesResponse>("unary", this._transport, method, opt, input);
1978
+ }
1979
+ /**
1980
+ * @generated from protobuf rpc: ListGroupPreferences
1981
+ */
1982
+ listGroupPreferences(input: ListGroupPreferencesRequest, options?: RpcOptions): UnaryCall<ListGroupPreferencesRequest, ListGroupPreferencesResponse> {
1983
+ const method = this.methods[123], opt = this._transport.mergeOptions(options);
1984
+ return stackIntercept<ListGroupPreferencesRequest, ListGroupPreferencesResponse>("unary", this._transport, method, opt, input);
1985
+ }
1986
+ /**
1987
+ * @generated from protobuf rpc: CreateUserPreferences
1988
+ */
1989
+ createUserPreferences(input: CreateUserPreferencesRequest, options?: RpcOptions): UnaryCall<CreateUserPreferencesRequest, CreateUserPreferencesResponse> {
1990
+ const method = this.methods[124], opt = this._transport.mergeOptions(options);
1991
+ return stackIntercept<CreateUserPreferencesRequest, CreateUserPreferencesResponse>("unary", this._transport, method, opt, input);
1992
+ }
1993
+ /**
1994
+ * @generated from protobuf rpc: ListUserPreferences
1995
+ */
1996
+ listUserPreferences(input: ListUserPreferencesRequest, options?: RpcOptions): UnaryCall<ListUserPreferencesRequest, ListUserPreferencesResponse> {
1997
+ const method = this.methods[125], opt = this._transport.mergeOptions(options);
1998
+ return stackIntercept<ListUserPreferencesRequest, ListUserPreferencesResponse>("unary", this._transport, method, opt, input);
1999
+ }
2000
+ /**
2001
+ * @generated from protobuf rpc: CreateCurrentUserPreferences
2002
+ */
2003
+ createCurrentUserPreferences(input: CreateCurrentUserPreferencesRequest, options?: RpcOptions): UnaryCall<CreateCurrentUserPreferencesRequest, CreateCurrentUserPreferencesResponse> {
2004
+ const method = this.methods[126], opt = this._transport.mergeOptions(options);
2005
+ return stackIntercept<CreateCurrentUserPreferencesRequest, CreateCurrentUserPreferencesResponse>("unary", this._transport, method, opt, input);
2006
+ }
2007
+ /**
2008
+ * @generated from protobuf rpc: ListCurrentUserPreferences
2009
+ */
2010
+ listCurrentUserPreferences(input: ListCurrentUserPreferencesRequest, options?: RpcOptions): UnaryCall<ListCurrentUserPreferencesRequest, ListCurrentUserPreferencesResponse> {
2011
+ const method = this.methods[127], opt = this._transport.mergeOptions(options);
2012
+ return stackIntercept<ListCurrentUserPreferencesRequest, ListCurrentUserPreferencesResponse>("unary", this._transport, method, opt, input);
2013
+ }
2014
+ /**
2015
+ * Billing account
2016
+ *
2017
+ * @generated from protobuf rpc: CreateBillingAccount
2018
+ */
2019
+ createBillingAccount(input: CreateBillingAccountRequest, options?: RpcOptions): UnaryCall<CreateBillingAccountRequest, CreateBillingAccountResponse> {
2020
+ const method = this.methods[128], opt = this._transport.mergeOptions(options);
2021
+ return stackIntercept<CreateBillingAccountRequest, CreateBillingAccountResponse>("unary", this._transport, method, opt, input);
2022
+ }
2023
+ /**
2024
+ * @generated from protobuf rpc: GetBillingAccount
2025
+ */
2026
+ getBillingAccount(input: GetBillingAccountRequest, options?: RpcOptions): UnaryCall<GetBillingAccountRequest, GetBillingAccountResponse> {
2027
+ const method = this.methods[129], opt = this._transport.mergeOptions(options);
2028
+ return stackIntercept<GetBillingAccountRequest, GetBillingAccountResponse>("unary", this._transport, method, opt, input);
2029
+ }
2030
+ /**
2031
+ * @generated from protobuf rpc: UpdateBillingAccount
2032
+ */
2033
+ updateBillingAccount(input: UpdateBillingAccountRequest, options?: RpcOptions): UnaryCall<UpdateBillingAccountRequest, UpdateBillingAccountResponse> {
2034
+ const method = this.methods[130], opt = this._transport.mergeOptions(options);
2035
+ return stackIntercept<UpdateBillingAccountRequest, UpdateBillingAccountResponse>("unary", this._transport, method, opt, input);
2036
+ }
2037
+ /**
2038
+ * @generated from protobuf rpc: RegisterBillingAccount
2039
+ */
2040
+ registerBillingAccount(input: RegisterBillingAccountRequest, options?: RpcOptions): UnaryCall<RegisterBillingAccountRequest, RegisterBillingAccountResponse> {
2041
+ const method = this.methods[131], opt = this._transport.mergeOptions(options);
2042
+ return stackIntercept<RegisterBillingAccountRequest, RegisterBillingAccountResponse>("unary", this._transport, method, opt, input);
2043
+ }
2044
+ /**
2045
+ * @generated from protobuf rpc: ListBillingAccounts
2046
+ */
2047
+ listBillingAccounts(input: ListBillingAccountsRequest, options?: RpcOptions): UnaryCall<ListBillingAccountsRequest, ListBillingAccountsResponse> {
2048
+ const method = this.methods[132], opt = this._transport.mergeOptions(options);
2049
+ return stackIntercept<ListBillingAccountsRequest, ListBillingAccountsResponse>("unary", this._transport, method, opt, input);
2050
+ }
2051
+ /**
2052
+ * @generated from protobuf rpc: DeleteBillingAccount
2053
+ */
2054
+ deleteBillingAccount(input: DeleteBillingAccountRequest, options?: RpcOptions): UnaryCall<DeleteBillingAccountRequest, DeleteBillingAccountResponse> {
2055
+ const method = this.methods[133], opt = this._transport.mergeOptions(options);
2056
+ return stackIntercept<DeleteBillingAccountRequest, DeleteBillingAccountResponse>("unary", this._transport, method, opt, input);
2057
+ }
2058
+ /**
2059
+ * @generated from protobuf rpc: EnableBillingAccount
2060
+ */
2061
+ enableBillingAccount(input: EnableBillingAccountRequest, options?: RpcOptions): UnaryCall<EnableBillingAccountRequest, EnableBillingAccountResponse> {
2062
+ const method = this.methods[134], opt = this._transport.mergeOptions(options);
2063
+ return stackIntercept<EnableBillingAccountRequest, EnableBillingAccountResponse>("unary", this._transport, method, opt, input);
2064
+ }
2065
+ /**
2066
+ * @generated from protobuf rpc: DisableBillingAccount
2067
+ */
2068
+ disableBillingAccount(input: DisableBillingAccountRequest, options?: RpcOptions): UnaryCall<DisableBillingAccountRequest, DisableBillingAccountResponse> {
2069
+ const method = this.methods[135], opt = this._transport.mergeOptions(options);
2070
+ return stackIntercept<DisableBillingAccountRequest, DisableBillingAccountResponse>("unary", this._transport, method, opt, input);
2071
+ }
2072
+ /**
2073
+ * @generated from protobuf rpc: GetBillingBalance
2074
+ */
2075
+ getBillingBalance(input: GetBillingBalanceRequest, options?: RpcOptions): UnaryCall<GetBillingBalanceRequest, GetBillingBalanceResponse> {
2076
+ const method = this.methods[136], opt = this._transport.mergeOptions(options);
2077
+ return stackIntercept<GetBillingBalanceRequest, GetBillingBalanceResponse>("unary", this._transport, method, opt, input);
2078
+ }
2079
+ /**
2080
+ * @generated from protobuf rpc: HasTrialed
2081
+ */
2082
+ hasTrialed(input: HasTrialedRequest, options?: RpcOptions): UnaryCall<HasTrialedRequest, HasTrialedResponse> {
2083
+ const method = this.methods[137], opt = this._transport.mergeOptions(options);
2084
+ return stackIntercept<HasTrialedRequest, HasTrialedResponse>("unary", this._transport, method, opt, input);
2085
+ }
2086
+ /**
2087
+ * Subscriptions
2088
+ *
2089
+ * @generated from protobuf rpc: GetSubscription
2090
+ */
2091
+ getSubscription(input: GetSubscriptionRequest, options?: RpcOptions): UnaryCall<GetSubscriptionRequest, GetSubscriptionResponse> {
2092
+ const method = this.methods[138], opt = this._transport.mergeOptions(options);
2093
+ return stackIntercept<GetSubscriptionRequest, GetSubscriptionResponse>("unary", this._transport, method, opt, input);
2094
+ }
2095
+ /**
2096
+ * @generated from protobuf rpc: CancelSubscription
2097
+ */
2098
+ cancelSubscription(input: CancelSubscriptionRequest, options?: RpcOptions): UnaryCall<CancelSubscriptionRequest, CancelSubscriptionResponse> {
2099
+ const method = this.methods[139], opt = this._transport.mergeOptions(options);
2100
+ return stackIntercept<CancelSubscriptionRequest, CancelSubscriptionResponse>("unary", this._transport, method, opt, input);
2101
+ }
2102
+ /**
2103
+ * @generated from protobuf rpc: ListSubscriptions
2104
+ */
2105
+ listSubscriptions(input: ListSubscriptionsRequest, options?: RpcOptions): UnaryCall<ListSubscriptionsRequest, ListSubscriptionsResponse> {
2106
+ const method = this.methods[140], opt = this._transport.mergeOptions(options);
2107
+ return stackIntercept<ListSubscriptionsRequest, ListSubscriptionsResponse>("unary", this._transport, method, opt, input);
2108
+ }
2109
+ /**
2110
+ * @generated from protobuf rpc: ChangeSubscription
2111
+ */
2112
+ changeSubscription(input: ChangeSubscriptionRequest, options?: RpcOptions): UnaryCall<ChangeSubscriptionRequest, ChangeSubscriptionResponse> {
2113
+ const method = this.methods[141], opt = this._transport.mergeOptions(options);
2114
+ return stackIntercept<ChangeSubscriptionRequest, ChangeSubscriptionResponse>("unary", this._transport, method, opt, input);
2115
+ }
2116
+ /**
2117
+ * @generated from protobuf rpc: UpdateSubscription
2118
+ */
2119
+ updateSubscription(input: UpdateSubscriptionRequest, options?: RpcOptions): UnaryCall<UpdateSubscriptionRequest, UpdateSubscriptionResponse> {
2120
+ const method = this.methods[142], opt = this._transport.mergeOptions(options);
2121
+ return stackIntercept<UpdateSubscriptionRequest, UpdateSubscriptionResponse>("unary", this._transport, method, opt, input);
2122
+ }
2123
+ /**
2124
+ * Billing Product
2125
+ *
2126
+ * @generated from protobuf rpc: CreateProduct
2127
+ */
2128
+ createProduct(input: CreateProductRequest, options?: RpcOptions): UnaryCall<CreateProductRequest, CreateProductResponse> {
2129
+ const method = this.methods[143], opt = this._transport.mergeOptions(options);
2130
+ return stackIntercept<CreateProductRequest, CreateProductResponse>("unary", this._transport, method, opt, input);
2131
+ }
2132
+ /**
2133
+ * @generated from protobuf rpc: GetProduct
2134
+ */
2135
+ getProduct(input: GetProductRequest, options?: RpcOptions): UnaryCall<GetProductRequest, GetProductResponse> {
2136
+ const method = this.methods[144], opt = this._transport.mergeOptions(options);
2137
+ return stackIntercept<GetProductRequest, GetProductResponse>("unary", this._transport, method, opt, input);
2138
+ }
2139
+ /**
2140
+ * @generated from protobuf rpc: ListProducts
2141
+ */
2142
+ listProducts(input: ListProductsRequest, options?: RpcOptions): UnaryCall<ListProductsRequest, ListProductsResponse> {
2143
+ const method = this.methods[145], opt = this._transport.mergeOptions(options);
2144
+ return stackIntercept<ListProductsRequest, ListProductsResponse>("unary", this._transport, method, opt, input);
2145
+ }
2146
+ /**
2147
+ * @generated from protobuf rpc: UpdateProduct
2148
+ */
2149
+ updateProduct(input: UpdateProductRequest, options?: RpcOptions): UnaryCall<UpdateProductRequest, UpdateProductResponse> {
2150
+ const method = this.methods[146], opt = this._transport.mergeOptions(options);
2151
+ return stackIntercept<UpdateProductRequest, UpdateProductResponse>("unary", this._transport, method, opt, input);
2152
+ }
2153
+ /**
2154
+ * @generated from protobuf rpc: CreateFeature
2155
+ */
2156
+ createFeature(input: CreateFeatureRequest, options?: RpcOptions): UnaryCall<CreateFeatureRequest, CreateFeatureResponse> {
2157
+ const method = this.methods[147], opt = this._transport.mergeOptions(options);
2158
+ return stackIntercept<CreateFeatureRequest, CreateFeatureResponse>("unary", this._transport, method, opt, input);
2159
+ }
2160
+ /**
2161
+ * @generated from protobuf rpc: GetFeature
2162
+ */
2163
+ getFeature(input: GetFeatureRequest, options?: RpcOptions): UnaryCall<GetFeatureRequest, GetFeatureResponse> {
2164
+ const method = this.methods[148], opt = this._transport.mergeOptions(options);
2165
+ return stackIntercept<GetFeatureRequest, GetFeatureResponse>("unary", this._transport, method, opt, input);
2166
+ }
2167
+ /**
2168
+ * @generated from protobuf rpc: UpdateFeature
2169
+ */
2170
+ updateFeature(input: UpdateFeatureRequest, options?: RpcOptions): UnaryCall<UpdateFeatureRequest, UpdateFeatureResponse> {
2171
+ const method = this.methods[149], opt = this._transport.mergeOptions(options);
2172
+ return stackIntercept<UpdateFeatureRequest, UpdateFeatureResponse>("unary", this._transport, method, opt, input);
2173
+ }
2174
+ /**
2175
+ * @generated from protobuf rpc: ListFeatures
2176
+ */
2177
+ listFeatures(input: ListFeaturesRequest, options?: RpcOptions): UnaryCall<ListFeaturesRequest, ListFeaturesResponse> {
2178
+ const method = this.methods[150], opt = this._transport.mergeOptions(options);
2179
+ return stackIntercept<ListFeaturesRequest, ListFeaturesResponse>("unary", this._transport, method, opt, input);
2180
+ }
2181
+ /**
2182
+ * Plans
2183
+ *
2184
+ * @generated from protobuf rpc: CreatePlan
2185
+ */
2186
+ createPlan(input: CreatePlanRequest, options?: RpcOptions): UnaryCall<CreatePlanRequest, CreatePlanResponse> {
2187
+ const method = this.methods[151], opt = this._transport.mergeOptions(options);
2188
+ return stackIntercept<CreatePlanRequest, CreatePlanResponse>("unary", this._transport, method, opt, input);
2189
+ }
2190
+ /**
2191
+ * @generated from protobuf rpc: ListPlans
2192
+ */
2193
+ listPlans(input: ListPlansRequest, options?: RpcOptions): UnaryCall<ListPlansRequest, ListPlansResponse> {
2194
+ const method = this.methods[152], opt = this._transport.mergeOptions(options);
2195
+ return stackIntercept<ListPlansRequest, ListPlansResponse>("unary", this._transport, method, opt, input);
2196
+ }
2197
+ /**
2198
+ * @generated from protobuf rpc: GetPlan
2199
+ */
2200
+ getPlan(input: GetPlanRequest, options?: RpcOptions): UnaryCall<GetPlanRequest, GetPlanResponse> {
2201
+ const method = this.methods[153], opt = this._transport.mergeOptions(options);
2202
+ return stackIntercept<GetPlanRequest, GetPlanResponse>("unary", this._transport, method, opt, input);
2203
+ }
2204
+ /**
2205
+ * @generated from protobuf rpc: UpdatePlan
2206
+ */
2207
+ updatePlan(input: UpdatePlanRequest, options?: RpcOptions): UnaryCall<UpdatePlanRequest, UpdatePlanResponse> {
2208
+ const method = this.methods[154], opt = this._transport.mergeOptions(options);
2209
+ return stackIntercept<UpdatePlanRequest, UpdatePlanResponse>("unary", this._transport, method, opt, input);
2210
+ }
2211
+ /**
2212
+ * Checkout
2213
+ *
2214
+ * @generated from protobuf rpc: CreateCheckout
2215
+ */
2216
+ createCheckout(input: CreateCheckoutRequest, options?: RpcOptions): UnaryCall<CreateCheckoutRequest, CreateCheckoutResponse> {
2217
+ const method = this.methods[155], opt = this._transport.mergeOptions(options);
2218
+ return stackIntercept<CreateCheckoutRequest, CreateCheckoutResponse>("unary", this._transport, method, opt, input);
2219
+ }
2220
+ /**
2221
+ * @generated from protobuf rpc: ListCheckouts
2222
+ */
2223
+ listCheckouts(input: ListCheckoutsRequest, options?: RpcOptions): UnaryCall<ListCheckoutsRequest, ListCheckoutsResponse> {
2224
+ const method = this.methods[156], opt = this._transport.mergeOptions(options);
2225
+ return stackIntercept<ListCheckoutsRequest, ListCheckoutsResponse>("unary", this._transport, method, opt, input);
2226
+ }
2227
+ /**
2228
+ * @generated from protobuf rpc: GetCheckout
2229
+ */
2230
+ getCheckout(input: GetCheckoutRequest, options?: RpcOptions): UnaryCall<GetCheckoutRequest, GetCheckoutResponse> {
2231
+ const method = this.methods[157], opt = this._transport.mergeOptions(options);
2232
+ return stackIntercept<GetCheckoutRequest, GetCheckoutResponse>("unary", this._transport, method, opt, input);
2233
+ }
2234
+ /**
2235
+ * Billing Entitlements
2236
+ *
2237
+ * @generated from protobuf rpc: CheckFeatureEntitlement
2238
+ */
2239
+ checkFeatureEntitlement(input: CheckFeatureEntitlementRequest, options?: RpcOptions): UnaryCall<CheckFeatureEntitlementRequest, CheckFeatureEntitlementResponse> {
2240
+ const method = this.methods[158], opt = this._transport.mergeOptions(options);
2241
+ return stackIntercept<CheckFeatureEntitlementRequest, CheckFeatureEntitlementResponse>("unary", this._transport, method, opt, input);
2242
+ }
2243
+ /**
2244
+ * @generated from protobuf rpc: CheckCreditEntitlement
2245
+ */
2246
+ checkCreditEntitlement(input: CheckCreditEntitlementRequest, options?: RpcOptions): UnaryCall<CheckCreditEntitlementRequest, CheckCreditEntitlementResponse> {
2247
+ const method = this.methods[159], opt = this._transport.mergeOptions(options);
2248
+ return stackIntercept<CheckCreditEntitlementRequest, CheckCreditEntitlementResponse>("unary", this._transport, method, opt, input);
2249
+ }
2250
+ /**
2251
+ * Transactions
2252
+ *
2253
+ * @generated from protobuf rpc: CreateBillingUsage
2254
+ */
2255
+ createBillingUsage(input: CreateBillingUsageRequest, options?: RpcOptions): UnaryCall<CreateBillingUsageRequest, CreateBillingUsageResponse> {
2256
+ const method = this.methods[160], opt = this._transport.mergeOptions(options);
2257
+ return stackIntercept<CreateBillingUsageRequest, CreateBillingUsageResponse>("unary", this._transport, method, opt, input);
2258
+ }
2259
+ /**
2260
+ * @generated from protobuf rpc: ListBillingTransactions
2261
+ */
2262
+ listBillingTransactions(input: ListBillingTransactionsRequest, options?: RpcOptions): UnaryCall<ListBillingTransactionsRequest, ListBillingTransactionsResponse> {
2263
+ const method = this.methods[161], opt = this._transport.mergeOptions(options);
2264
+ return stackIntercept<ListBillingTransactionsRequest, ListBillingTransactionsResponse>("unary", this._transport, method, opt, input);
2265
+ }
2266
+ /**
2267
+ * @generated from protobuf rpc: TotalDebitedTransactions
2268
+ */
2269
+ totalDebitedTransactions(input: TotalDebitedTransactionsRequest, options?: RpcOptions): UnaryCall<TotalDebitedTransactionsRequest, TotalDebitedTransactionsResponse> {
2270
+ const method = this.methods[162], opt = this._transport.mergeOptions(options);
2271
+ return stackIntercept<TotalDebitedTransactionsRequest, TotalDebitedTransactionsResponse>("unary", this._transport, method, opt, input);
2272
+ }
2273
+ /**
2274
+ * Invoice
2275
+ *
2276
+ * @generated from protobuf rpc: ListInvoices
2277
+ */
2278
+ listInvoices(input: ListInvoicesRequest, options?: RpcOptions): UnaryCall<ListInvoicesRequest, ListInvoicesResponse> {
2279
+ const method = this.methods[163], opt = this._transport.mergeOptions(options);
2280
+ return stackIntercept<ListInvoicesRequest, ListInvoicesResponse>("unary", this._transport, method, opt, input);
2281
+ }
2282
+ /**
2283
+ * @generated from protobuf rpc: GetUpcomingInvoice
2284
+ */
2285
+ getUpcomingInvoice(input: GetUpcomingInvoiceRequest, options?: RpcOptions): UnaryCall<GetUpcomingInvoiceRequest, GetUpcomingInvoiceResponse> {
2286
+ const method = this.methods[164], opt = this._transport.mergeOptions(options);
2287
+ return stackIntercept<GetUpcomingInvoiceRequest, GetUpcomingInvoiceResponse>("unary", this._transport, method, opt, input);
2288
+ }
2289
+ /**
2290
+ * Incoming Webhooks
2291
+ *
2292
+ * @generated from protobuf rpc: BillingWebhookCallback
2293
+ */
2294
+ billingWebhookCallback(input: BillingWebhookCallbackRequest, options?: RpcOptions): UnaryCall<BillingWebhookCallbackRequest, BillingWebhookCallbackResponse> {
2295
+ const method = this.methods[165], opt = this._transport.mergeOptions(options);
2296
+ return stackIntercept<BillingWebhookCallbackRequest, BillingWebhookCallbackResponse>("unary", this._transport, method, opt, input);
2297
+ }
2298
+ /**
2299
+ * Prospects
2300
+ *
2301
+ * @generated from protobuf rpc: CreateProspectPublic
2302
+ */
2303
+ createProspectPublic(input: CreateProspectPublicRequest, options?: RpcOptions): UnaryCall<CreateProspectPublicRequest, CreateProspectPublicResponse> {
2304
+ const method = this.methods[166], opt = this._transport.mergeOptions(options);
2305
+ return stackIntercept<CreateProspectPublicRequest, CreateProspectPublicResponse>("unary", this._transport, method, opt, input);
2306
+ }
2307
+ }