@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,62 @@
1
+ // @generated by protoc-gen-connect-es v1.6.1 with parameter "target=ts"
2
+ // @generated from file raystack/entropy/v1beta1/module.proto (package raystack.entropy.v1beta1, syntax proto3)
3
+ /* eslint-disable */
4
+ // @ts-nocheck
5
+
6
+ import { CreateModuleRequest, CreateModuleResponse, DeleteModuleRequest, DeleteModuleResponse, GetModuleRequest, GetModuleResponse, ListModulesRequest, ListModulesResponse, UpdateModuleRequest, UpdateModuleResponse } from "./module_pb.js";
7
+ import { MethodKind } from "@bufbuild/protobuf";
8
+
9
+ /**
10
+ * @generated from service raystack.entropy.v1beta1.ModuleService
11
+ */
12
+ export const ModuleService = {
13
+ typeName: "raystack.entropy.v1beta1.ModuleService",
14
+ methods: {
15
+ /**
16
+ * @generated from rpc raystack.entropy.v1beta1.ModuleService.ListModules
17
+ */
18
+ listModules: {
19
+ name: "ListModules",
20
+ I: ListModulesRequest,
21
+ O: ListModulesResponse,
22
+ kind: MethodKind.Unary,
23
+ },
24
+ /**
25
+ * @generated from rpc raystack.entropy.v1beta1.ModuleService.GetModule
26
+ */
27
+ getModule: {
28
+ name: "GetModule",
29
+ I: GetModuleRequest,
30
+ O: GetModuleResponse,
31
+ kind: MethodKind.Unary,
32
+ },
33
+ /**
34
+ * @generated from rpc raystack.entropy.v1beta1.ModuleService.CreateModule
35
+ */
36
+ createModule: {
37
+ name: "CreateModule",
38
+ I: CreateModuleRequest,
39
+ O: CreateModuleResponse,
40
+ kind: MethodKind.Unary,
41
+ },
42
+ /**
43
+ * @generated from rpc raystack.entropy.v1beta1.ModuleService.UpdateModule
44
+ */
45
+ updateModule: {
46
+ name: "UpdateModule",
47
+ I: UpdateModuleRequest,
48
+ O: UpdateModuleResponse,
49
+ kind: MethodKind.Unary,
50
+ },
51
+ /**
52
+ * @generated from rpc raystack.entropy.v1beta1.ModuleService.DeleteModule
53
+ */
54
+ deleteModule: {
55
+ name: "DeleteModule",
56
+ I: DeleteModuleRequest,
57
+ O: DeleteModuleResponse,
58
+ kind: MethodKind.Unary,
59
+ },
60
+ }
61
+ } as const;
62
+
@@ -0,0 +1,445 @@
1
+ // @generated by protoc-gen-es v1.10.1 with parameter "target=ts,import_extension=none"
2
+ // @generated from file raystack/entropy/v1beta1/module.proto (package raystack.entropy.v1beta1, syntax proto3)
3
+ /* eslint-disable */
4
+ // @ts-nocheck
5
+
6
+ import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf";
7
+ import { Message, proto3, Timestamp, Value } from "@bufbuild/protobuf";
8
+
9
+ /**
10
+ * @generated from message raystack.entropy.v1beta1.Module
11
+ */
12
+ export class Module extends Message<Module> {
13
+ /**
14
+ * @generated from field: string urn = 1;
15
+ */
16
+ urn = "";
17
+
18
+ /**
19
+ * @generated from field: string name = 2;
20
+ */
21
+ name = "";
22
+
23
+ /**
24
+ * @generated from field: string project = 3;
25
+ */
26
+ project = "";
27
+
28
+ /**
29
+ * @generated from field: google.protobuf.Timestamp created_at = 4;
30
+ */
31
+ createdAt?: Timestamp;
32
+
33
+ /**
34
+ * @generated from field: google.protobuf.Timestamp updated_at = 5;
35
+ */
36
+ updatedAt?: Timestamp;
37
+
38
+ /**
39
+ * @generated from field: google.protobuf.Value configs = 7;
40
+ */
41
+ configs?: Value;
42
+
43
+ constructor(data?: PartialMessage<Module>) {
44
+ super();
45
+ proto3.util.initPartial(data, this);
46
+ }
47
+
48
+ static readonly runtime: typeof proto3 = proto3;
49
+ static readonly typeName = "raystack.entropy.v1beta1.Module";
50
+ static readonly fields: FieldList = proto3.util.newFieldList(() => [
51
+ { no: 1, name: "urn", kind: "scalar", T: 9 /* ScalarType.STRING */ },
52
+ { no: 2, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
53
+ { no: 3, name: "project", kind: "scalar", T: 9 /* ScalarType.STRING */ },
54
+ { no: 4, name: "created_at", kind: "message", T: Timestamp },
55
+ { no: 5, name: "updated_at", kind: "message", T: Timestamp },
56
+ { no: 7, name: "configs", kind: "message", T: Value },
57
+ ]);
58
+
59
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Module {
60
+ return new Module().fromBinary(bytes, options);
61
+ }
62
+
63
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Module {
64
+ return new Module().fromJson(jsonValue, options);
65
+ }
66
+
67
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Module {
68
+ return new Module().fromJsonString(jsonString, options);
69
+ }
70
+
71
+ static equals(a: Module | PlainMessage<Module> | undefined, b: Module | PlainMessage<Module> | undefined): boolean {
72
+ return proto3.util.equals(Module, a, b);
73
+ }
74
+ }
75
+
76
+ /**
77
+ * @generated from message raystack.entropy.v1beta1.ListModulesRequest
78
+ */
79
+ export class ListModulesRequest extends Message<ListModulesRequest> {
80
+ /**
81
+ * @generated from field: string project = 1;
82
+ */
83
+ project = "";
84
+
85
+ constructor(data?: PartialMessage<ListModulesRequest>) {
86
+ super();
87
+ proto3.util.initPartial(data, this);
88
+ }
89
+
90
+ static readonly runtime: typeof proto3 = proto3;
91
+ static readonly typeName = "raystack.entropy.v1beta1.ListModulesRequest";
92
+ static readonly fields: FieldList = proto3.util.newFieldList(() => [
93
+ { no: 1, name: "project", kind: "scalar", T: 9 /* ScalarType.STRING */ },
94
+ ]);
95
+
96
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListModulesRequest {
97
+ return new ListModulesRequest().fromBinary(bytes, options);
98
+ }
99
+
100
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListModulesRequest {
101
+ return new ListModulesRequest().fromJson(jsonValue, options);
102
+ }
103
+
104
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListModulesRequest {
105
+ return new ListModulesRequest().fromJsonString(jsonString, options);
106
+ }
107
+
108
+ static equals(a: ListModulesRequest | PlainMessage<ListModulesRequest> | undefined, b: ListModulesRequest | PlainMessage<ListModulesRequest> | undefined): boolean {
109
+ return proto3.util.equals(ListModulesRequest, a, b);
110
+ }
111
+ }
112
+
113
+ /**
114
+ * @generated from message raystack.entropy.v1beta1.ListModulesResponse
115
+ */
116
+ export class ListModulesResponse extends Message<ListModulesResponse> {
117
+ /**
118
+ * @generated from field: repeated raystack.entropy.v1beta1.Module modules = 1;
119
+ */
120
+ modules: Module[] = [];
121
+
122
+ constructor(data?: PartialMessage<ListModulesResponse>) {
123
+ super();
124
+ proto3.util.initPartial(data, this);
125
+ }
126
+
127
+ static readonly runtime: typeof proto3 = proto3;
128
+ static readonly typeName = "raystack.entropy.v1beta1.ListModulesResponse";
129
+ static readonly fields: FieldList = proto3.util.newFieldList(() => [
130
+ { no: 1, name: "modules", kind: "message", T: Module, repeated: true },
131
+ ]);
132
+
133
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListModulesResponse {
134
+ return new ListModulesResponse().fromBinary(bytes, options);
135
+ }
136
+
137
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListModulesResponse {
138
+ return new ListModulesResponse().fromJson(jsonValue, options);
139
+ }
140
+
141
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListModulesResponse {
142
+ return new ListModulesResponse().fromJsonString(jsonString, options);
143
+ }
144
+
145
+ static equals(a: ListModulesResponse | PlainMessage<ListModulesResponse> | undefined, b: ListModulesResponse | PlainMessage<ListModulesResponse> | undefined): boolean {
146
+ return proto3.util.equals(ListModulesResponse, a, b);
147
+ }
148
+ }
149
+
150
+ /**
151
+ * @generated from message raystack.entropy.v1beta1.GetModuleRequest
152
+ */
153
+ export class GetModuleRequest extends Message<GetModuleRequest> {
154
+ /**
155
+ * @generated from field: string urn = 1;
156
+ */
157
+ urn = "";
158
+
159
+ constructor(data?: PartialMessage<GetModuleRequest>) {
160
+ super();
161
+ proto3.util.initPartial(data, this);
162
+ }
163
+
164
+ static readonly runtime: typeof proto3 = proto3;
165
+ static readonly typeName = "raystack.entropy.v1beta1.GetModuleRequest";
166
+ static readonly fields: FieldList = proto3.util.newFieldList(() => [
167
+ { no: 1, name: "urn", kind: "scalar", T: 9 /* ScalarType.STRING */ },
168
+ ]);
169
+
170
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetModuleRequest {
171
+ return new GetModuleRequest().fromBinary(bytes, options);
172
+ }
173
+
174
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetModuleRequest {
175
+ return new GetModuleRequest().fromJson(jsonValue, options);
176
+ }
177
+
178
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetModuleRequest {
179
+ return new GetModuleRequest().fromJsonString(jsonString, options);
180
+ }
181
+
182
+ static equals(a: GetModuleRequest | PlainMessage<GetModuleRequest> | undefined, b: GetModuleRequest | PlainMessage<GetModuleRequest> | undefined): boolean {
183
+ return proto3.util.equals(GetModuleRequest, a, b);
184
+ }
185
+ }
186
+
187
+ /**
188
+ * @generated from message raystack.entropy.v1beta1.GetModuleResponse
189
+ */
190
+ export class GetModuleResponse extends Message<GetModuleResponse> {
191
+ /**
192
+ * @generated from field: raystack.entropy.v1beta1.Module module = 1;
193
+ */
194
+ module?: Module;
195
+
196
+ constructor(data?: PartialMessage<GetModuleResponse>) {
197
+ super();
198
+ proto3.util.initPartial(data, this);
199
+ }
200
+
201
+ static readonly runtime: typeof proto3 = proto3;
202
+ static readonly typeName = "raystack.entropy.v1beta1.GetModuleResponse";
203
+ static readonly fields: FieldList = proto3.util.newFieldList(() => [
204
+ { no: 1, name: "module", kind: "message", T: Module },
205
+ ]);
206
+
207
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetModuleResponse {
208
+ return new GetModuleResponse().fromBinary(bytes, options);
209
+ }
210
+
211
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetModuleResponse {
212
+ return new GetModuleResponse().fromJson(jsonValue, options);
213
+ }
214
+
215
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetModuleResponse {
216
+ return new GetModuleResponse().fromJsonString(jsonString, options);
217
+ }
218
+
219
+ static equals(a: GetModuleResponse | PlainMessage<GetModuleResponse> | undefined, b: GetModuleResponse | PlainMessage<GetModuleResponse> | undefined): boolean {
220
+ return proto3.util.equals(GetModuleResponse, a, b);
221
+ }
222
+ }
223
+
224
+ /**
225
+ * @generated from message raystack.entropy.v1beta1.CreateModuleRequest
226
+ */
227
+ export class CreateModuleRequest extends Message<CreateModuleRequest> {
228
+ /**
229
+ * @generated from field: raystack.entropy.v1beta1.Module module = 1;
230
+ */
231
+ module?: Module;
232
+
233
+ constructor(data?: PartialMessage<CreateModuleRequest>) {
234
+ super();
235
+ proto3.util.initPartial(data, this);
236
+ }
237
+
238
+ static readonly runtime: typeof proto3 = proto3;
239
+ static readonly typeName = "raystack.entropy.v1beta1.CreateModuleRequest";
240
+ static readonly fields: FieldList = proto3.util.newFieldList(() => [
241
+ { no: 1, name: "module", kind: "message", T: Module },
242
+ ]);
243
+
244
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CreateModuleRequest {
245
+ return new CreateModuleRequest().fromBinary(bytes, options);
246
+ }
247
+
248
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CreateModuleRequest {
249
+ return new CreateModuleRequest().fromJson(jsonValue, options);
250
+ }
251
+
252
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CreateModuleRequest {
253
+ return new CreateModuleRequest().fromJsonString(jsonString, options);
254
+ }
255
+
256
+ static equals(a: CreateModuleRequest | PlainMessage<CreateModuleRequest> | undefined, b: CreateModuleRequest | PlainMessage<CreateModuleRequest> | undefined): boolean {
257
+ return proto3.util.equals(CreateModuleRequest, a, b);
258
+ }
259
+ }
260
+
261
+ /**
262
+ * @generated from message raystack.entropy.v1beta1.CreateModuleResponse
263
+ */
264
+ export class CreateModuleResponse extends Message<CreateModuleResponse> {
265
+ /**
266
+ * @generated from field: raystack.entropy.v1beta1.Module module = 1;
267
+ */
268
+ module?: Module;
269
+
270
+ constructor(data?: PartialMessage<CreateModuleResponse>) {
271
+ super();
272
+ proto3.util.initPartial(data, this);
273
+ }
274
+
275
+ static readonly runtime: typeof proto3 = proto3;
276
+ static readonly typeName = "raystack.entropy.v1beta1.CreateModuleResponse";
277
+ static readonly fields: FieldList = proto3.util.newFieldList(() => [
278
+ { no: 1, name: "module", kind: "message", T: Module },
279
+ ]);
280
+
281
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CreateModuleResponse {
282
+ return new CreateModuleResponse().fromBinary(bytes, options);
283
+ }
284
+
285
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CreateModuleResponse {
286
+ return new CreateModuleResponse().fromJson(jsonValue, options);
287
+ }
288
+
289
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CreateModuleResponse {
290
+ return new CreateModuleResponse().fromJsonString(jsonString, options);
291
+ }
292
+
293
+ static equals(a: CreateModuleResponse | PlainMessage<CreateModuleResponse> | undefined, b: CreateModuleResponse | PlainMessage<CreateModuleResponse> | undefined): boolean {
294
+ return proto3.util.equals(CreateModuleResponse, a, b);
295
+ }
296
+ }
297
+
298
+ /**
299
+ * @generated from message raystack.entropy.v1beta1.UpdateModuleRequest
300
+ */
301
+ export class UpdateModuleRequest extends Message<UpdateModuleRequest> {
302
+ /**
303
+ * @generated from field: string urn = 1;
304
+ */
305
+ urn = "";
306
+
307
+ /**
308
+ * @generated from field: google.protobuf.Value configs = 3;
309
+ */
310
+ configs?: Value;
311
+
312
+ constructor(data?: PartialMessage<UpdateModuleRequest>) {
313
+ super();
314
+ proto3.util.initPartial(data, this);
315
+ }
316
+
317
+ static readonly runtime: typeof proto3 = proto3;
318
+ static readonly typeName = "raystack.entropy.v1beta1.UpdateModuleRequest";
319
+ static readonly fields: FieldList = proto3.util.newFieldList(() => [
320
+ { no: 1, name: "urn", kind: "scalar", T: 9 /* ScalarType.STRING */ },
321
+ { no: 3, name: "configs", kind: "message", T: Value },
322
+ ]);
323
+
324
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UpdateModuleRequest {
325
+ return new UpdateModuleRequest().fromBinary(bytes, options);
326
+ }
327
+
328
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UpdateModuleRequest {
329
+ return new UpdateModuleRequest().fromJson(jsonValue, options);
330
+ }
331
+
332
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UpdateModuleRequest {
333
+ return new UpdateModuleRequest().fromJsonString(jsonString, options);
334
+ }
335
+
336
+ static equals(a: UpdateModuleRequest | PlainMessage<UpdateModuleRequest> | undefined, b: UpdateModuleRequest | PlainMessage<UpdateModuleRequest> | undefined): boolean {
337
+ return proto3.util.equals(UpdateModuleRequest, a, b);
338
+ }
339
+ }
340
+
341
+ /**
342
+ * @generated from message raystack.entropy.v1beta1.UpdateModuleResponse
343
+ */
344
+ export class UpdateModuleResponse extends Message<UpdateModuleResponse> {
345
+ /**
346
+ * @generated from field: raystack.entropy.v1beta1.Module module = 1;
347
+ */
348
+ module?: Module;
349
+
350
+ constructor(data?: PartialMessage<UpdateModuleResponse>) {
351
+ super();
352
+ proto3.util.initPartial(data, this);
353
+ }
354
+
355
+ static readonly runtime: typeof proto3 = proto3;
356
+ static readonly typeName = "raystack.entropy.v1beta1.UpdateModuleResponse";
357
+ static readonly fields: FieldList = proto3.util.newFieldList(() => [
358
+ { no: 1, name: "module", kind: "message", T: Module },
359
+ ]);
360
+
361
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UpdateModuleResponse {
362
+ return new UpdateModuleResponse().fromBinary(bytes, options);
363
+ }
364
+
365
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UpdateModuleResponse {
366
+ return new UpdateModuleResponse().fromJson(jsonValue, options);
367
+ }
368
+
369
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UpdateModuleResponse {
370
+ return new UpdateModuleResponse().fromJsonString(jsonString, options);
371
+ }
372
+
373
+ static equals(a: UpdateModuleResponse | PlainMessage<UpdateModuleResponse> | undefined, b: UpdateModuleResponse | PlainMessage<UpdateModuleResponse> | undefined): boolean {
374
+ return proto3.util.equals(UpdateModuleResponse, a, b);
375
+ }
376
+ }
377
+
378
+ /**
379
+ * @generated from message raystack.entropy.v1beta1.DeleteModuleRequest
380
+ */
381
+ export class DeleteModuleRequest extends Message<DeleteModuleRequest> {
382
+ /**
383
+ * @generated from field: string urn = 1;
384
+ */
385
+ urn = "";
386
+
387
+ constructor(data?: PartialMessage<DeleteModuleRequest>) {
388
+ super();
389
+ proto3.util.initPartial(data, this);
390
+ }
391
+
392
+ static readonly runtime: typeof proto3 = proto3;
393
+ static readonly typeName = "raystack.entropy.v1beta1.DeleteModuleRequest";
394
+ static readonly fields: FieldList = proto3.util.newFieldList(() => [
395
+ { no: 1, name: "urn", kind: "scalar", T: 9 /* ScalarType.STRING */ },
396
+ ]);
397
+
398
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeleteModuleRequest {
399
+ return new DeleteModuleRequest().fromBinary(bytes, options);
400
+ }
401
+
402
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeleteModuleRequest {
403
+ return new DeleteModuleRequest().fromJson(jsonValue, options);
404
+ }
405
+
406
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeleteModuleRequest {
407
+ return new DeleteModuleRequest().fromJsonString(jsonString, options);
408
+ }
409
+
410
+ static equals(a: DeleteModuleRequest | PlainMessage<DeleteModuleRequest> | undefined, b: DeleteModuleRequest | PlainMessage<DeleteModuleRequest> | undefined): boolean {
411
+ return proto3.util.equals(DeleteModuleRequest, a, b);
412
+ }
413
+ }
414
+
415
+ /**
416
+ * @generated from message raystack.entropy.v1beta1.DeleteModuleResponse
417
+ */
418
+ export class DeleteModuleResponse extends Message<DeleteModuleResponse> {
419
+ constructor(data?: PartialMessage<DeleteModuleResponse>) {
420
+ super();
421
+ proto3.util.initPartial(data, this);
422
+ }
423
+
424
+ static readonly runtime: typeof proto3 = proto3;
425
+ static readonly typeName = "raystack.entropy.v1beta1.DeleteModuleResponse";
426
+ static readonly fields: FieldList = proto3.util.newFieldList(() => [
427
+ ]);
428
+
429
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeleteModuleResponse {
430
+ return new DeleteModuleResponse().fromBinary(bytes, options);
431
+ }
432
+
433
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeleteModuleResponse {
434
+ return new DeleteModuleResponse().fromJson(jsonValue, options);
435
+ }
436
+
437
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeleteModuleResponse {
438
+ return new DeleteModuleResponse().fromJsonString(jsonString, options);
439
+ }
440
+
441
+ static equals(a: DeleteModuleResponse | PlainMessage<DeleteModuleResponse> | undefined, b: DeleteModuleResponse | PlainMessage<DeleteModuleResponse> | undefined): boolean {
442
+ return proto3.util.equals(DeleteModuleResponse, a, b);
443
+ }
444
+ }
445
+
@@ -0,0 +1,105 @@
1
+ // @generated by protoc-gen-connect-query v1.4.2 with parameter "target=ts"
2
+ // @generated from file raystack/entropy/v1beta1/resource.proto (package raystack.entropy.v1beta1, syntax proto3)
3
+ /* eslint-disable */
4
+ // @ts-nocheck
5
+
6
+ import { MethodKind } from "@bufbuild/protobuf";
7
+ import { ApplyActionRequest, ApplyActionResponse, CreateResourceRequest, CreateResourceResponse, DeleteResourceRequest, DeleteResourceResponse, GetResourceRequest, GetResourceResponse, GetResourceRevisionsRequest, GetResourceRevisionsResponse, ListResourcesRequest, ListResourcesResponse, UpdateResourceRequest, UpdateResourceResponse } from "./resource_pb.js";
8
+
9
+ /**
10
+ * @generated from rpc raystack.entropy.v1beta1.ResourceService.ListResources
11
+ */
12
+ export const listResources = {
13
+ localName: "listResources",
14
+ name: "ListResources",
15
+ kind: MethodKind.Unary,
16
+ I: ListResourcesRequest,
17
+ O: ListResourcesResponse,
18
+ service: {
19
+ typeName: "raystack.entropy.v1beta1.ResourceService"
20
+ }
21
+ } as const;
22
+
23
+ /**
24
+ * @generated from rpc raystack.entropy.v1beta1.ResourceService.GetResource
25
+ */
26
+ export const getResource = {
27
+ localName: "getResource",
28
+ name: "GetResource",
29
+ kind: MethodKind.Unary,
30
+ I: GetResourceRequest,
31
+ O: GetResourceResponse,
32
+ service: {
33
+ typeName: "raystack.entropy.v1beta1.ResourceService"
34
+ }
35
+ } as const;
36
+
37
+ /**
38
+ * @generated from rpc raystack.entropy.v1beta1.ResourceService.CreateResource
39
+ */
40
+ export const createResource = {
41
+ localName: "createResource",
42
+ name: "CreateResource",
43
+ kind: MethodKind.Unary,
44
+ I: CreateResourceRequest,
45
+ O: CreateResourceResponse,
46
+ service: {
47
+ typeName: "raystack.entropy.v1beta1.ResourceService"
48
+ }
49
+ } as const;
50
+
51
+ /**
52
+ * @generated from rpc raystack.entropy.v1beta1.ResourceService.UpdateResource
53
+ */
54
+ export const updateResource = {
55
+ localName: "updateResource",
56
+ name: "UpdateResource",
57
+ kind: MethodKind.Unary,
58
+ I: UpdateResourceRequest,
59
+ O: UpdateResourceResponse,
60
+ service: {
61
+ typeName: "raystack.entropy.v1beta1.ResourceService"
62
+ }
63
+ } as const;
64
+
65
+ /**
66
+ * @generated from rpc raystack.entropy.v1beta1.ResourceService.DeleteResource
67
+ */
68
+ export const deleteResource = {
69
+ localName: "deleteResource",
70
+ name: "DeleteResource",
71
+ kind: MethodKind.Unary,
72
+ I: DeleteResourceRequest,
73
+ O: DeleteResourceResponse,
74
+ service: {
75
+ typeName: "raystack.entropy.v1beta1.ResourceService"
76
+ }
77
+ } as const;
78
+
79
+ /**
80
+ * @generated from rpc raystack.entropy.v1beta1.ResourceService.ApplyAction
81
+ */
82
+ export const applyAction = {
83
+ localName: "applyAction",
84
+ name: "ApplyAction",
85
+ kind: MethodKind.Unary,
86
+ I: ApplyActionRequest,
87
+ O: ApplyActionResponse,
88
+ service: {
89
+ typeName: "raystack.entropy.v1beta1.ResourceService"
90
+ }
91
+ } as const;
92
+
93
+ /**
94
+ * @generated from rpc raystack.entropy.v1beta1.ResourceService.GetResourceRevisions
95
+ */
96
+ export const getResourceRevisions = {
97
+ localName: "getResourceRevisions",
98
+ name: "GetResourceRevisions",
99
+ kind: MethodKind.Unary,
100
+ I: GetResourceRevisionsRequest,
101
+ O: GetResourceRevisionsResponse,
102
+ service: {
103
+ typeName: "raystack.entropy.v1beta1.ResourceService"
104
+ }
105
+ } as const;