@kurrent/kurrentdb-client 1.1.0 → 1.2.0-alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (77) hide show
  1. package/dist/index.d.ts +1 -0
  2. package/dist/index.js +1 -0
  3. package/dist/index.js.map +1 -1
  4. package/dist/schemaRegistry/checkSchemaCompatibility.d.ts +12 -0
  5. package/dist/schemaRegistry/checkSchemaCompatibility.js +60 -0
  6. package/dist/schemaRegistry/checkSchemaCompatibility.js.map +1 -0
  7. package/dist/schemaRegistry/createSchema.d.ts +13 -0
  8. package/dist/schemaRegistry/createSchema.js +36 -0
  9. package/dist/schemaRegistry/createSchema.js.map +1 -0
  10. package/dist/schemaRegistry/deleteSchema.d.ts +11 -0
  11. package/dist/schemaRegistry/deleteSchema.js +23 -0
  12. package/dist/schemaRegistry/deleteSchema.js.map +1 -0
  13. package/dist/schemaRegistry/deleteSchemaVersions.d.ts +13 -0
  14. package/dist/schemaRegistry/deleteSchemaVersions.js +29 -0
  15. package/dist/schemaRegistry/deleteSchemaVersions.js.map +1 -0
  16. package/dist/schemaRegistry/getSchema.d.ts +12 -0
  17. package/dist/schemaRegistry/getSchema.js +28 -0
  18. package/dist/schemaRegistry/getSchema.js.map +1 -0
  19. package/dist/schemaRegistry/getSchemaVersion.d.ts +12 -0
  20. package/dist/schemaRegistry/getSchemaVersion.js +33 -0
  21. package/dist/schemaRegistry/getSchemaVersion.js.map +1 -0
  22. package/dist/schemaRegistry/getSchemaVersionById.d.ts +12 -0
  23. package/dist/schemaRegistry/getSchemaVersionById.js +28 -0
  24. package/dist/schemaRegistry/getSchemaVersionById.js.map +1 -0
  25. package/dist/schemaRegistry/index.d.ts +14 -0
  26. package/dist/schemaRegistry/index.js +35 -0
  27. package/dist/schemaRegistry/index.js.map +1 -0
  28. package/dist/schemaRegistry/listRegisteredSchemas.d.ts +11 -0
  29. package/dist/schemaRegistry/listRegisteredSchemas.js +41 -0
  30. package/dist/schemaRegistry/listRegisteredSchemas.js.map +1 -0
  31. package/dist/schemaRegistry/listSchemaVersions.d.ts +12 -0
  32. package/dist/schemaRegistry/listSchemaVersions.js +28 -0
  33. package/dist/schemaRegistry/listSchemaVersions.js.map +1 -0
  34. package/dist/schemaRegistry/listSchemas.d.ts +11 -0
  35. package/dist/schemaRegistry/listSchemas.js +35 -0
  36. package/dist/schemaRegistry/listSchemas.js.map +1 -0
  37. package/dist/schemaRegistry/lookupSchemaName.d.ts +12 -0
  38. package/dist/schemaRegistry/lookupSchemaName.js +23 -0
  39. package/dist/schemaRegistry/lookupSchemaName.js.map +1 -0
  40. package/dist/schemaRegistry/registerSchemaVersion.d.ts +13 -0
  41. package/dist/schemaRegistry/registerSchemaVersion.js +31 -0
  42. package/dist/schemaRegistry/registerSchemaVersion.js.map +1 -0
  43. package/dist/schemaRegistry/types.d.ts +347 -0
  44. package/dist/schemaRegistry/types.js +3 -0
  45. package/dist/schemaRegistry/types.js.map +1 -0
  46. package/dist/schemaRegistry/updateSchema.d.ts +11 -0
  47. package/dist/schemaRegistry/updateSchema.js +51 -0
  48. package/dist/schemaRegistry/updateSchema.js.map +1 -0
  49. package/dist/schemaRegistry/utils/index.d.ts +1 -0
  50. package/dist/schemaRegistry/utils/index.js +18 -0
  51. package/dist/schemaRegistry/utils/index.js.map +1 -0
  52. package/dist/schemaRegistry/utils/mappers.d.ts +24 -0
  53. package/dist/schemaRegistry/utils/mappers.js +198 -0
  54. package/dist/schemaRegistry/utils/mappers.js.map +1 -0
  55. package/generated/kurrentdb/protocols/v2/registry/errors_grpc_pb.js +1 -0
  56. package/generated/kurrentdb/protocols/v2/registry/errors_pb.d.ts +75 -0
  57. package/generated/kurrentdb/protocols/v2/registry/errors_pb.js +493 -0
  58. package/generated/kurrentdb/protocols/v2/registry/events_grpc_pb.js +1 -0
  59. package/generated/kurrentdb/protocols/v2/registry/events_pb.d.ts +255 -0
  60. package/generated/kurrentdb/protocols/v2/registry/events_pb.js +2057 -0
  61. package/generated/kurrentdb/protocols/v2/registry/groups_grpc_pb.js +1 -0
  62. package/generated/kurrentdb/protocols/v2/registry/groups_pb.d.ts +474 -0
  63. package/generated/kurrentdb/protocols/v2/registry/groups_pb.js +3593 -0
  64. package/generated/kurrentdb/protocols/v2/registry/schemas_grpc_pb.js +1 -0
  65. package/generated/kurrentdb/protocols/v2/registry/schemas_pb.d.ts +825 -0
  66. package/generated/kurrentdb/protocols/v2/registry/schemas_pb.js +6500 -0
  67. package/generated/kurrentdb/protocols/v2/registry/service_grpc_pb.d.ts +350 -0
  68. package/generated/kurrentdb/protocols/v2/registry/service_grpc_pb.js +654 -0
  69. package/generated/kurrentdb/protocols/v2/registry/service_pb.d.ts +10 -0
  70. package/generated/kurrentdb/protocols/v2/registry/service_pb.js +29 -0
  71. package/generated/kurrentdb/protocols/v2/registry/shared_grpc_pb.js +1 -0
  72. package/generated/kurrentdb/protocols/v2/registry/shared_pb.d.ts +26 -0
  73. package/generated/kurrentdb/protocols/v2/registry/shared_pb.js +51 -0
  74. package/generated/kurrentdb/protocols/v2/registry/validation_grpc_pb.js +1 -0
  75. package/generated/kurrentdb/protocols/v2/registry/validation_pb.d.ts +247 -0
  76. package/generated/kurrentdb/protocols/v2/registry/validation_pb.js +1789 -0
  77. package/package.json +1 -1
@@ -0,0 +1,350 @@
1
+ // package: kurrentdb.protocol.registry.v2
2
+ // file: kurrentdb/protocols/v2/registry/service.proto
3
+
4
+ /* tslint:disable */
5
+ /* eslint-disable */
6
+
7
+ import * as grpc from "@grpc/grpc-js";
8
+ import * as kurrentdb_protocols_v2_registry_service_pb from "../../../../kurrentdb/protocols/v2/registry/service_pb";
9
+ import * as kurrentdb_protocols_v2_registry_groups_pb from "../../../../kurrentdb/protocols/v2/registry/groups_pb";
10
+ import * as kurrentdb_protocols_v2_registry_schemas_pb from "../../../../kurrentdb/protocols/v2/registry/schemas_pb";
11
+ import * as kurrentdb_protocols_v2_registry_validation_pb from "../../../../kurrentdb/protocols/v2/registry/validation_pb";
12
+
13
+ interface ISchemaRegistryServiceService extends grpc.ServiceDefinition<grpc.UntypedServiceImplementation> {
14
+ createSchemaGroup: ISchemaRegistryServiceService_ICreateSchemaGroup;
15
+ updateSchemaGroup: ISchemaRegistryServiceService_IUpdateSchemaGroup;
16
+ deleteSchemaGroup: ISchemaRegistryServiceService_IDeleteSchemaGroup;
17
+ getSchemaGroup: ISchemaRegistryServiceService_IGetSchemaGroup;
18
+ listSchemaGroups: ISchemaRegistryServiceService_IListSchemaGroups;
19
+ createSchema: ISchemaRegistryServiceService_ICreateSchema;
20
+ updateSchema: ISchemaRegistryServiceService_IUpdateSchema;
21
+ deleteSchema: ISchemaRegistryServiceService_IDeleteSchema;
22
+ getSchema: ISchemaRegistryServiceService_IGetSchema;
23
+ listSchemas: ISchemaRegistryServiceService_IListSchemas;
24
+ lookupSchemaName: ISchemaRegistryServiceService_ILookupSchemaName;
25
+ registerSchemaVersion: ISchemaRegistryServiceService_IRegisterSchemaVersion;
26
+ deleteSchemaVersions: ISchemaRegistryServiceService_IDeleteSchemaVersions;
27
+ getSchemaVersion: ISchemaRegistryServiceService_IGetSchemaVersion;
28
+ getSchemaVersionById: ISchemaRegistryServiceService_IGetSchemaVersionById;
29
+ listSchemaVersions: ISchemaRegistryServiceService_IListSchemaVersions;
30
+ listRegisteredSchemas: ISchemaRegistryServiceService_IListRegisteredSchemas;
31
+ bulkRegisterSchemas: ISchemaRegistryServiceService_IBulkRegisterSchemas;
32
+ checkSchemaCompatibility: ISchemaRegistryServiceService_ICheckSchemaCompatibility;
33
+ }
34
+
35
+ interface ISchemaRegistryServiceService_ICreateSchemaGroup extends grpc.MethodDefinition<kurrentdb_protocols_v2_registry_groups_pb.CreateSchemaGroupRequest, kurrentdb_protocols_v2_registry_groups_pb.CreateSchemaGroupResponse> {
36
+ path: "/kurrentdb.protocol.registry.v2.SchemaRegistryService/CreateSchemaGroup";
37
+ requestStream: false;
38
+ responseStream: false;
39
+ requestSerialize: grpc.serialize<kurrentdb_protocols_v2_registry_groups_pb.CreateSchemaGroupRequest>;
40
+ requestDeserialize: grpc.deserialize<kurrentdb_protocols_v2_registry_groups_pb.CreateSchemaGroupRequest>;
41
+ responseSerialize: grpc.serialize<kurrentdb_protocols_v2_registry_groups_pb.CreateSchemaGroupResponse>;
42
+ responseDeserialize: grpc.deserialize<kurrentdb_protocols_v2_registry_groups_pb.CreateSchemaGroupResponse>;
43
+ }
44
+ interface ISchemaRegistryServiceService_IUpdateSchemaGroup extends grpc.MethodDefinition<kurrentdb_protocols_v2_registry_groups_pb.UpdateSchemaGroupRequest, kurrentdb_protocols_v2_registry_groups_pb.UpdateSchemaGroupResponse> {
45
+ path: "/kurrentdb.protocol.registry.v2.SchemaRegistryService/UpdateSchemaGroup";
46
+ requestStream: false;
47
+ responseStream: false;
48
+ requestSerialize: grpc.serialize<kurrentdb_protocols_v2_registry_groups_pb.UpdateSchemaGroupRequest>;
49
+ requestDeserialize: grpc.deserialize<kurrentdb_protocols_v2_registry_groups_pb.UpdateSchemaGroupRequest>;
50
+ responseSerialize: grpc.serialize<kurrentdb_protocols_v2_registry_groups_pb.UpdateSchemaGroupResponse>;
51
+ responseDeserialize: grpc.deserialize<kurrentdb_protocols_v2_registry_groups_pb.UpdateSchemaGroupResponse>;
52
+ }
53
+ interface ISchemaRegistryServiceService_IDeleteSchemaGroup extends grpc.MethodDefinition<kurrentdb_protocols_v2_registry_groups_pb.DeleteSchemaGroupRequest, kurrentdb_protocols_v2_registry_groups_pb.DeleteSchemaGroupResponse> {
54
+ path: "/kurrentdb.protocol.registry.v2.SchemaRegistryService/DeleteSchemaGroup";
55
+ requestStream: false;
56
+ responseStream: false;
57
+ requestSerialize: grpc.serialize<kurrentdb_protocols_v2_registry_groups_pb.DeleteSchemaGroupRequest>;
58
+ requestDeserialize: grpc.deserialize<kurrentdb_protocols_v2_registry_groups_pb.DeleteSchemaGroupRequest>;
59
+ responseSerialize: grpc.serialize<kurrentdb_protocols_v2_registry_groups_pb.DeleteSchemaGroupResponse>;
60
+ responseDeserialize: grpc.deserialize<kurrentdb_protocols_v2_registry_groups_pb.DeleteSchemaGroupResponse>;
61
+ }
62
+ interface ISchemaRegistryServiceService_IGetSchemaGroup extends grpc.MethodDefinition<kurrentdb_protocols_v2_registry_groups_pb.GetSchemaGroupRequest, kurrentdb_protocols_v2_registry_groups_pb.GetSchemaGroupResponse> {
63
+ path: "/kurrentdb.protocol.registry.v2.SchemaRegistryService/GetSchemaGroup";
64
+ requestStream: false;
65
+ responseStream: false;
66
+ requestSerialize: grpc.serialize<kurrentdb_protocols_v2_registry_groups_pb.GetSchemaGroupRequest>;
67
+ requestDeserialize: grpc.deserialize<kurrentdb_protocols_v2_registry_groups_pb.GetSchemaGroupRequest>;
68
+ responseSerialize: grpc.serialize<kurrentdb_protocols_v2_registry_groups_pb.GetSchemaGroupResponse>;
69
+ responseDeserialize: grpc.deserialize<kurrentdb_protocols_v2_registry_groups_pb.GetSchemaGroupResponse>;
70
+ }
71
+ interface ISchemaRegistryServiceService_IListSchemaGroups extends grpc.MethodDefinition<kurrentdb_protocols_v2_registry_groups_pb.ListSchemaGroupsRequest, kurrentdb_protocols_v2_registry_groups_pb.ListSchemaGroupsResponse> {
72
+ path: "/kurrentdb.protocol.registry.v2.SchemaRegistryService/ListSchemaGroups";
73
+ requestStream: false;
74
+ responseStream: false;
75
+ requestSerialize: grpc.serialize<kurrentdb_protocols_v2_registry_groups_pb.ListSchemaGroupsRequest>;
76
+ requestDeserialize: grpc.deserialize<kurrentdb_protocols_v2_registry_groups_pb.ListSchemaGroupsRequest>;
77
+ responseSerialize: grpc.serialize<kurrentdb_protocols_v2_registry_groups_pb.ListSchemaGroupsResponse>;
78
+ responseDeserialize: grpc.deserialize<kurrentdb_protocols_v2_registry_groups_pb.ListSchemaGroupsResponse>;
79
+ }
80
+ interface ISchemaRegistryServiceService_ICreateSchema extends grpc.MethodDefinition<kurrentdb_protocols_v2_registry_schemas_pb.CreateSchemaRequest, kurrentdb_protocols_v2_registry_schemas_pb.CreateSchemaResponse> {
81
+ path: "/kurrentdb.protocol.registry.v2.SchemaRegistryService/CreateSchema";
82
+ requestStream: false;
83
+ responseStream: false;
84
+ requestSerialize: grpc.serialize<kurrentdb_protocols_v2_registry_schemas_pb.CreateSchemaRequest>;
85
+ requestDeserialize: grpc.deserialize<kurrentdb_protocols_v2_registry_schemas_pb.CreateSchemaRequest>;
86
+ responseSerialize: grpc.serialize<kurrentdb_protocols_v2_registry_schemas_pb.CreateSchemaResponse>;
87
+ responseDeserialize: grpc.deserialize<kurrentdb_protocols_v2_registry_schemas_pb.CreateSchemaResponse>;
88
+ }
89
+ interface ISchemaRegistryServiceService_IUpdateSchema extends grpc.MethodDefinition<kurrentdb_protocols_v2_registry_schemas_pb.UpdateSchemaRequest, kurrentdb_protocols_v2_registry_schemas_pb.UpdateSchemaResponse> {
90
+ path: "/kurrentdb.protocol.registry.v2.SchemaRegistryService/UpdateSchema";
91
+ requestStream: false;
92
+ responseStream: false;
93
+ requestSerialize: grpc.serialize<kurrentdb_protocols_v2_registry_schemas_pb.UpdateSchemaRequest>;
94
+ requestDeserialize: grpc.deserialize<kurrentdb_protocols_v2_registry_schemas_pb.UpdateSchemaRequest>;
95
+ responseSerialize: grpc.serialize<kurrentdb_protocols_v2_registry_schemas_pb.UpdateSchemaResponse>;
96
+ responseDeserialize: grpc.deserialize<kurrentdb_protocols_v2_registry_schemas_pb.UpdateSchemaResponse>;
97
+ }
98
+ interface ISchemaRegistryServiceService_IDeleteSchema extends grpc.MethodDefinition<kurrentdb_protocols_v2_registry_schemas_pb.DeleteSchemaRequest, kurrentdb_protocols_v2_registry_schemas_pb.DeleteSchemaResponse> {
99
+ path: "/kurrentdb.protocol.registry.v2.SchemaRegistryService/DeleteSchema";
100
+ requestStream: false;
101
+ responseStream: false;
102
+ requestSerialize: grpc.serialize<kurrentdb_protocols_v2_registry_schemas_pb.DeleteSchemaRequest>;
103
+ requestDeserialize: grpc.deserialize<kurrentdb_protocols_v2_registry_schemas_pb.DeleteSchemaRequest>;
104
+ responseSerialize: grpc.serialize<kurrentdb_protocols_v2_registry_schemas_pb.DeleteSchemaResponse>;
105
+ responseDeserialize: grpc.deserialize<kurrentdb_protocols_v2_registry_schemas_pb.DeleteSchemaResponse>;
106
+ }
107
+ interface ISchemaRegistryServiceService_IGetSchema extends grpc.MethodDefinition<kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaRequest, kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaResponse> {
108
+ path: "/kurrentdb.protocol.registry.v2.SchemaRegistryService/GetSchema";
109
+ requestStream: false;
110
+ responseStream: false;
111
+ requestSerialize: grpc.serialize<kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaRequest>;
112
+ requestDeserialize: grpc.deserialize<kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaRequest>;
113
+ responseSerialize: grpc.serialize<kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaResponse>;
114
+ responseDeserialize: grpc.deserialize<kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaResponse>;
115
+ }
116
+ interface ISchemaRegistryServiceService_IListSchemas extends grpc.MethodDefinition<kurrentdb_protocols_v2_registry_schemas_pb.ListSchemasRequest, kurrentdb_protocols_v2_registry_schemas_pb.ListSchemasResponse> {
117
+ path: "/kurrentdb.protocol.registry.v2.SchemaRegistryService/ListSchemas";
118
+ requestStream: false;
119
+ responseStream: false;
120
+ requestSerialize: grpc.serialize<kurrentdb_protocols_v2_registry_schemas_pb.ListSchemasRequest>;
121
+ requestDeserialize: grpc.deserialize<kurrentdb_protocols_v2_registry_schemas_pb.ListSchemasRequest>;
122
+ responseSerialize: grpc.serialize<kurrentdb_protocols_v2_registry_schemas_pb.ListSchemasResponse>;
123
+ responseDeserialize: grpc.deserialize<kurrentdb_protocols_v2_registry_schemas_pb.ListSchemasResponse>;
124
+ }
125
+ interface ISchemaRegistryServiceService_ILookupSchemaName extends grpc.MethodDefinition<kurrentdb_protocols_v2_registry_schemas_pb.LookupSchemaNameRequest, kurrentdb_protocols_v2_registry_schemas_pb.LookupSchemaNameResponse> {
126
+ path: "/kurrentdb.protocol.registry.v2.SchemaRegistryService/LookupSchemaName";
127
+ requestStream: false;
128
+ responseStream: false;
129
+ requestSerialize: grpc.serialize<kurrentdb_protocols_v2_registry_schemas_pb.LookupSchemaNameRequest>;
130
+ requestDeserialize: grpc.deserialize<kurrentdb_protocols_v2_registry_schemas_pb.LookupSchemaNameRequest>;
131
+ responseSerialize: grpc.serialize<kurrentdb_protocols_v2_registry_schemas_pb.LookupSchemaNameResponse>;
132
+ responseDeserialize: grpc.deserialize<kurrentdb_protocols_v2_registry_schemas_pb.LookupSchemaNameResponse>;
133
+ }
134
+ interface ISchemaRegistryServiceService_IRegisterSchemaVersion extends grpc.MethodDefinition<kurrentdb_protocols_v2_registry_schemas_pb.RegisterSchemaVersionRequest, kurrentdb_protocols_v2_registry_schemas_pb.RegisterSchemaVersionResponse> {
135
+ path: "/kurrentdb.protocol.registry.v2.SchemaRegistryService/RegisterSchemaVersion";
136
+ requestStream: false;
137
+ responseStream: false;
138
+ requestSerialize: grpc.serialize<kurrentdb_protocols_v2_registry_schemas_pb.RegisterSchemaVersionRequest>;
139
+ requestDeserialize: grpc.deserialize<kurrentdb_protocols_v2_registry_schemas_pb.RegisterSchemaVersionRequest>;
140
+ responseSerialize: grpc.serialize<kurrentdb_protocols_v2_registry_schemas_pb.RegisterSchemaVersionResponse>;
141
+ responseDeserialize: grpc.deserialize<kurrentdb_protocols_v2_registry_schemas_pb.RegisterSchemaVersionResponse>;
142
+ }
143
+ interface ISchemaRegistryServiceService_IDeleteSchemaVersions extends grpc.MethodDefinition<kurrentdb_protocols_v2_registry_schemas_pb.DeleteSchemaVersionsRequest, kurrentdb_protocols_v2_registry_schemas_pb.DeleteSchemaVersionsResponse> {
144
+ path: "/kurrentdb.protocol.registry.v2.SchemaRegistryService/DeleteSchemaVersions";
145
+ requestStream: false;
146
+ responseStream: false;
147
+ requestSerialize: grpc.serialize<kurrentdb_protocols_v2_registry_schemas_pb.DeleteSchemaVersionsRequest>;
148
+ requestDeserialize: grpc.deserialize<kurrentdb_protocols_v2_registry_schemas_pb.DeleteSchemaVersionsRequest>;
149
+ responseSerialize: grpc.serialize<kurrentdb_protocols_v2_registry_schemas_pb.DeleteSchemaVersionsResponse>;
150
+ responseDeserialize: grpc.deserialize<kurrentdb_protocols_v2_registry_schemas_pb.DeleteSchemaVersionsResponse>;
151
+ }
152
+ interface ISchemaRegistryServiceService_IGetSchemaVersion extends grpc.MethodDefinition<kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaVersionRequest, kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaVersionResponse> {
153
+ path: "/kurrentdb.protocol.registry.v2.SchemaRegistryService/GetSchemaVersion";
154
+ requestStream: false;
155
+ responseStream: false;
156
+ requestSerialize: grpc.serialize<kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaVersionRequest>;
157
+ requestDeserialize: grpc.deserialize<kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaVersionRequest>;
158
+ responseSerialize: grpc.serialize<kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaVersionResponse>;
159
+ responseDeserialize: grpc.deserialize<kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaVersionResponse>;
160
+ }
161
+ interface ISchemaRegistryServiceService_IGetSchemaVersionById extends grpc.MethodDefinition<kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaVersionByIdRequest, kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaVersionByIdResponse> {
162
+ path: "/kurrentdb.protocol.registry.v2.SchemaRegistryService/GetSchemaVersionById";
163
+ requestStream: false;
164
+ responseStream: false;
165
+ requestSerialize: grpc.serialize<kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaVersionByIdRequest>;
166
+ requestDeserialize: grpc.deserialize<kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaVersionByIdRequest>;
167
+ responseSerialize: grpc.serialize<kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaVersionByIdResponse>;
168
+ responseDeserialize: grpc.deserialize<kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaVersionByIdResponse>;
169
+ }
170
+ interface ISchemaRegistryServiceService_IListSchemaVersions extends grpc.MethodDefinition<kurrentdb_protocols_v2_registry_schemas_pb.ListSchemaVersionsRequest, kurrentdb_protocols_v2_registry_schemas_pb.ListSchemaVersionsResponse> {
171
+ path: "/kurrentdb.protocol.registry.v2.SchemaRegistryService/ListSchemaVersions";
172
+ requestStream: false;
173
+ responseStream: false;
174
+ requestSerialize: grpc.serialize<kurrentdb_protocols_v2_registry_schemas_pb.ListSchemaVersionsRequest>;
175
+ requestDeserialize: grpc.deserialize<kurrentdb_protocols_v2_registry_schemas_pb.ListSchemaVersionsRequest>;
176
+ responseSerialize: grpc.serialize<kurrentdb_protocols_v2_registry_schemas_pb.ListSchemaVersionsResponse>;
177
+ responseDeserialize: grpc.deserialize<kurrentdb_protocols_v2_registry_schemas_pb.ListSchemaVersionsResponse>;
178
+ }
179
+ interface ISchemaRegistryServiceService_IListRegisteredSchemas extends grpc.MethodDefinition<kurrentdb_protocols_v2_registry_schemas_pb.ListRegisteredSchemasRequest, kurrentdb_protocols_v2_registry_schemas_pb.ListRegisteredSchemasResponse> {
180
+ path: "/kurrentdb.protocol.registry.v2.SchemaRegistryService/ListRegisteredSchemas";
181
+ requestStream: false;
182
+ responseStream: false;
183
+ requestSerialize: grpc.serialize<kurrentdb_protocols_v2_registry_schemas_pb.ListRegisteredSchemasRequest>;
184
+ requestDeserialize: grpc.deserialize<kurrentdb_protocols_v2_registry_schemas_pb.ListRegisteredSchemasRequest>;
185
+ responseSerialize: grpc.serialize<kurrentdb_protocols_v2_registry_schemas_pb.ListRegisteredSchemasResponse>;
186
+ responseDeserialize: grpc.deserialize<kurrentdb_protocols_v2_registry_schemas_pb.ListRegisteredSchemasResponse>;
187
+ }
188
+ interface ISchemaRegistryServiceService_IBulkRegisterSchemas extends grpc.MethodDefinition<kurrentdb_protocols_v2_registry_schemas_pb.BulkRegisterSchemasRequest, kurrentdb_protocols_v2_registry_schemas_pb.BulkRegisterSchemasResponse> {
189
+ path: "/kurrentdb.protocol.registry.v2.SchemaRegistryService/BulkRegisterSchemas";
190
+ requestStream: false;
191
+ responseStream: false;
192
+ requestSerialize: grpc.serialize<kurrentdb_protocols_v2_registry_schemas_pb.BulkRegisterSchemasRequest>;
193
+ requestDeserialize: grpc.deserialize<kurrentdb_protocols_v2_registry_schemas_pb.BulkRegisterSchemasRequest>;
194
+ responseSerialize: grpc.serialize<kurrentdb_protocols_v2_registry_schemas_pb.BulkRegisterSchemasResponse>;
195
+ responseDeserialize: grpc.deserialize<kurrentdb_protocols_v2_registry_schemas_pb.BulkRegisterSchemasResponse>;
196
+ }
197
+ interface ISchemaRegistryServiceService_ICheckSchemaCompatibility extends grpc.MethodDefinition<kurrentdb_protocols_v2_registry_validation_pb.CheckSchemaCompatibilityRequest, kurrentdb_protocols_v2_registry_validation_pb.CheckSchemaCompatibilityResponse> {
198
+ path: "/kurrentdb.protocol.registry.v2.SchemaRegistryService/CheckSchemaCompatibility";
199
+ requestStream: false;
200
+ responseStream: false;
201
+ requestSerialize: grpc.serialize<kurrentdb_protocols_v2_registry_validation_pb.CheckSchemaCompatibilityRequest>;
202
+ requestDeserialize: grpc.deserialize<kurrentdb_protocols_v2_registry_validation_pb.CheckSchemaCompatibilityRequest>;
203
+ responseSerialize: grpc.serialize<kurrentdb_protocols_v2_registry_validation_pb.CheckSchemaCompatibilityResponse>;
204
+ responseDeserialize: grpc.deserialize<kurrentdb_protocols_v2_registry_validation_pb.CheckSchemaCompatibilityResponse>;
205
+ }
206
+
207
+ export const SchemaRegistryServiceService: ISchemaRegistryServiceService;
208
+
209
+ export interface ISchemaRegistryServiceServer extends grpc.UntypedServiceImplementation {
210
+ createSchemaGroup: grpc.handleUnaryCall<kurrentdb_protocols_v2_registry_groups_pb.CreateSchemaGroupRequest, kurrentdb_protocols_v2_registry_groups_pb.CreateSchemaGroupResponse>;
211
+ updateSchemaGroup: grpc.handleUnaryCall<kurrentdb_protocols_v2_registry_groups_pb.UpdateSchemaGroupRequest, kurrentdb_protocols_v2_registry_groups_pb.UpdateSchemaGroupResponse>;
212
+ deleteSchemaGroup: grpc.handleUnaryCall<kurrentdb_protocols_v2_registry_groups_pb.DeleteSchemaGroupRequest, kurrentdb_protocols_v2_registry_groups_pb.DeleteSchemaGroupResponse>;
213
+ getSchemaGroup: grpc.handleUnaryCall<kurrentdb_protocols_v2_registry_groups_pb.GetSchemaGroupRequest, kurrentdb_protocols_v2_registry_groups_pb.GetSchemaGroupResponse>;
214
+ listSchemaGroups: grpc.handleUnaryCall<kurrentdb_protocols_v2_registry_groups_pb.ListSchemaGroupsRequest, kurrentdb_protocols_v2_registry_groups_pb.ListSchemaGroupsResponse>;
215
+ createSchema: grpc.handleUnaryCall<kurrentdb_protocols_v2_registry_schemas_pb.CreateSchemaRequest, kurrentdb_protocols_v2_registry_schemas_pb.CreateSchemaResponse>;
216
+ updateSchema: grpc.handleUnaryCall<kurrentdb_protocols_v2_registry_schemas_pb.UpdateSchemaRequest, kurrentdb_protocols_v2_registry_schemas_pb.UpdateSchemaResponse>;
217
+ deleteSchema: grpc.handleUnaryCall<kurrentdb_protocols_v2_registry_schemas_pb.DeleteSchemaRequest, kurrentdb_protocols_v2_registry_schemas_pb.DeleteSchemaResponse>;
218
+ getSchema: grpc.handleUnaryCall<kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaRequest, kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaResponse>;
219
+ listSchemas: grpc.handleUnaryCall<kurrentdb_protocols_v2_registry_schemas_pb.ListSchemasRequest, kurrentdb_protocols_v2_registry_schemas_pb.ListSchemasResponse>;
220
+ lookupSchemaName: grpc.handleUnaryCall<kurrentdb_protocols_v2_registry_schemas_pb.LookupSchemaNameRequest, kurrentdb_protocols_v2_registry_schemas_pb.LookupSchemaNameResponse>;
221
+ registerSchemaVersion: grpc.handleUnaryCall<kurrentdb_protocols_v2_registry_schemas_pb.RegisterSchemaVersionRequest, kurrentdb_protocols_v2_registry_schemas_pb.RegisterSchemaVersionResponse>;
222
+ deleteSchemaVersions: grpc.handleUnaryCall<kurrentdb_protocols_v2_registry_schemas_pb.DeleteSchemaVersionsRequest, kurrentdb_protocols_v2_registry_schemas_pb.DeleteSchemaVersionsResponse>;
223
+ getSchemaVersion: grpc.handleUnaryCall<kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaVersionRequest, kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaVersionResponse>;
224
+ getSchemaVersionById: grpc.handleUnaryCall<kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaVersionByIdRequest, kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaVersionByIdResponse>;
225
+ listSchemaVersions: grpc.handleUnaryCall<kurrentdb_protocols_v2_registry_schemas_pb.ListSchemaVersionsRequest, kurrentdb_protocols_v2_registry_schemas_pb.ListSchemaVersionsResponse>;
226
+ listRegisteredSchemas: grpc.handleUnaryCall<kurrentdb_protocols_v2_registry_schemas_pb.ListRegisteredSchemasRequest, kurrentdb_protocols_v2_registry_schemas_pb.ListRegisteredSchemasResponse>;
227
+ bulkRegisterSchemas: grpc.handleUnaryCall<kurrentdb_protocols_v2_registry_schemas_pb.BulkRegisterSchemasRequest, kurrentdb_protocols_v2_registry_schemas_pb.BulkRegisterSchemasResponse>;
228
+ checkSchemaCompatibility: grpc.handleUnaryCall<kurrentdb_protocols_v2_registry_validation_pb.CheckSchemaCompatibilityRequest, kurrentdb_protocols_v2_registry_validation_pb.CheckSchemaCompatibilityResponse>;
229
+ }
230
+
231
+ export interface ISchemaRegistryServiceClient {
232
+ createSchemaGroup(request: kurrentdb_protocols_v2_registry_groups_pb.CreateSchemaGroupRequest, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_groups_pb.CreateSchemaGroupResponse) => void): grpc.ClientUnaryCall;
233
+ createSchemaGroup(request: kurrentdb_protocols_v2_registry_groups_pb.CreateSchemaGroupRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_groups_pb.CreateSchemaGroupResponse) => void): grpc.ClientUnaryCall;
234
+ createSchemaGroup(request: kurrentdb_protocols_v2_registry_groups_pb.CreateSchemaGroupRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_groups_pb.CreateSchemaGroupResponse) => void): grpc.ClientUnaryCall;
235
+ updateSchemaGroup(request: kurrentdb_protocols_v2_registry_groups_pb.UpdateSchemaGroupRequest, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_groups_pb.UpdateSchemaGroupResponse) => void): grpc.ClientUnaryCall;
236
+ updateSchemaGroup(request: kurrentdb_protocols_v2_registry_groups_pb.UpdateSchemaGroupRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_groups_pb.UpdateSchemaGroupResponse) => void): grpc.ClientUnaryCall;
237
+ updateSchemaGroup(request: kurrentdb_protocols_v2_registry_groups_pb.UpdateSchemaGroupRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_groups_pb.UpdateSchemaGroupResponse) => void): grpc.ClientUnaryCall;
238
+ deleteSchemaGroup(request: kurrentdb_protocols_v2_registry_groups_pb.DeleteSchemaGroupRequest, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_groups_pb.DeleteSchemaGroupResponse) => void): grpc.ClientUnaryCall;
239
+ deleteSchemaGroup(request: kurrentdb_protocols_v2_registry_groups_pb.DeleteSchemaGroupRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_groups_pb.DeleteSchemaGroupResponse) => void): grpc.ClientUnaryCall;
240
+ deleteSchemaGroup(request: kurrentdb_protocols_v2_registry_groups_pb.DeleteSchemaGroupRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_groups_pb.DeleteSchemaGroupResponse) => void): grpc.ClientUnaryCall;
241
+ getSchemaGroup(request: kurrentdb_protocols_v2_registry_groups_pb.GetSchemaGroupRequest, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_groups_pb.GetSchemaGroupResponse) => void): grpc.ClientUnaryCall;
242
+ getSchemaGroup(request: kurrentdb_protocols_v2_registry_groups_pb.GetSchemaGroupRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_groups_pb.GetSchemaGroupResponse) => void): grpc.ClientUnaryCall;
243
+ getSchemaGroup(request: kurrentdb_protocols_v2_registry_groups_pb.GetSchemaGroupRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_groups_pb.GetSchemaGroupResponse) => void): grpc.ClientUnaryCall;
244
+ listSchemaGroups(request: kurrentdb_protocols_v2_registry_groups_pb.ListSchemaGroupsRequest, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_groups_pb.ListSchemaGroupsResponse) => void): grpc.ClientUnaryCall;
245
+ listSchemaGroups(request: kurrentdb_protocols_v2_registry_groups_pb.ListSchemaGroupsRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_groups_pb.ListSchemaGroupsResponse) => void): grpc.ClientUnaryCall;
246
+ listSchemaGroups(request: kurrentdb_protocols_v2_registry_groups_pb.ListSchemaGroupsRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_groups_pb.ListSchemaGroupsResponse) => void): grpc.ClientUnaryCall;
247
+ createSchema(request: kurrentdb_protocols_v2_registry_schemas_pb.CreateSchemaRequest, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.CreateSchemaResponse) => void): grpc.ClientUnaryCall;
248
+ createSchema(request: kurrentdb_protocols_v2_registry_schemas_pb.CreateSchemaRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.CreateSchemaResponse) => void): grpc.ClientUnaryCall;
249
+ createSchema(request: kurrentdb_protocols_v2_registry_schemas_pb.CreateSchemaRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.CreateSchemaResponse) => void): grpc.ClientUnaryCall;
250
+ updateSchema(request: kurrentdb_protocols_v2_registry_schemas_pb.UpdateSchemaRequest, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.UpdateSchemaResponse) => void): grpc.ClientUnaryCall;
251
+ updateSchema(request: kurrentdb_protocols_v2_registry_schemas_pb.UpdateSchemaRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.UpdateSchemaResponse) => void): grpc.ClientUnaryCall;
252
+ updateSchema(request: kurrentdb_protocols_v2_registry_schemas_pb.UpdateSchemaRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.UpdateSchemaResponse) => void): grpc.ClientUnaryCall;
253
+ deleteSchema(request: kurrentdb_protocols_v2_registry_schemas_pb.DeleteSchemaRequest, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.DeleteSchemaResponse) => void): grpc.ClientUnaryCall;
254
+ deleteSchema(request: kurrentdb_protocols_v2_registry_schemas_pb.DeleteSchemaRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.DeleteSchemaResponse) => void): grpc.ClientUnaryCall;
255
+ deleteSchema(request: kurrentdb_protocols_v2_registry_schemas_pb.DeleteSchemaRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.DeleteSchemaResponse) => void): grpc.ClientUnaryCall;
256
+ getSchema(request: kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaRequest, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaResponse) => void): grpc.ClientUnaryCall;
257
+ getSchema(request: kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaResponse) => void): grpc.ClientUnaryCall;
258
+ getSchema(request: kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaResponse) => void): grpc.ClientUnaryCall;
259
+ listSchemas(request: kurrentdb_protocols_v2_registry_schemas_pb.ListSchemasRequest, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.ListSchemasResponse) => void): grpc.ClientUnaryCall;
260
+ listSchemas(request: kurrentdb_protocols_v2_registry_schemas_pb.ListSchemasRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.ListSchemasResponse) => void): grpc.ClientUnaryCall;
261
+ listSchemas(request: kurrentdb_protocols_v2_registry_schemas_pb.ListSchemasRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.ListSchemasResponse) => void): grpc.ClientUnaryCall;
262
+ lookupSchemaName(request: kurrentdb_protocols_v2_registry_schemas_pb.LookupSchemaNameRequest, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.LookupSchemaNameResponse) => void): grpc.ClientUnaryCall;
263
+ lookupSchemaName(request: kurrentdb_protocols_v2_registry_schemas_pb.LookupSchemaNameRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.LookupSchemaNameResponse) => void): grpc.ClientUnaryCall;
264
+ lookupSchemaName(request: kurrentdb_protocols_v2_registry_schemas_pb.LookupSchemaNameRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.LookupSchemaNameResponse) => void): grpc.ClientUnaryCall;
265
+ registerSchemaVersion(request: kurrentdb_protocols_v2_registry_schemas_pb.RegisterSchemaVersionRequest, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.RegisterSchemaVersionResponse) => void): grpc.ClientUnaryCall;
266
+ registerSchemaVersion(request: kurrentdb_protocols_v2_registry_schemas_pb.RegisterSchemaVersionRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.RegisterSchemaVersionResponse) => void): grpc.ClientUnaryCall;
267
+ registerSchemaVersion(request: kurrentdb_protocols_v2_registry_schemas_pb.RegisterSchemaVersionRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.RegisterSchemaVersionResponse) => void): grpc.ClientUnaryCall;
268
+ deleteSchemaVersions(request: kurrentdb_protocols_v2_registry_schemas_pb.DeleteSchemaVersionsRequest, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.DeleteSchemaVersionsResponse) => void): grpc.ClientUnaryCall;
269
+ deleteSchemaVersions(request: kurrentdb_protocols_v2_registry_schemas_pb.DeleteSchemaVersionsRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.DeleteSchemaVersionsResponse) => void): grpc.ClientUnaryCall;
270
+ deleteSchemaVersions(request: kurrentdb_protocols_v2_registry_schemas_pb.DeleteSchemaVersionsRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.DeleteSchemaVersionsResponse) => void): grpc.ClientUnaryCall;
271
+ getSchemaVersion(request: kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaVersionRequest, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaVersionResponse) => void): grpc.ClientUnaryCall;
272
+ getSchemaVersion(request: kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaVersionRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaVersionResponse) => void): grpc.ClientUnaryCall;
273
+ getSchemaVersion(request: kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaVersionRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaVersionResponse) => void): grpc.ClientUnaryCall;
274
+ getSchemaVersionById(request: kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaVersionByIdRequest, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaVersionByIdResponse) => void): grpc.ClientUnaryCall;
275
+ getSchemaVersionById(request: kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaVersionByIdRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaVersionByIdResponse) => void): grpc.ClientUnaryCall;
276
+ getSchemaVersionById(request: kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaVersionByIdRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaVersionByIdResponse) => void): grpc.ClientUnaryCall;
277
+ listSchemaVersions(request: kurrentdb_protocols_v2_registry_schemas_pb.ListSchemaVersionsRequest, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.ListSchemaVersionsResponse) => void): grpc.ClientUnaryCall;
278
+ listSchemaVersions(request: kurrentdb_protocols_v2_registry_schemas_pb.ListSchemaVersionsRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.ListSchemaVersionsResponse) => void): grpc.ClientUnaryCall;
279
+ listSchemaVersions(request: kurrentdb_protocols_v2_registry_schemas_pb.ListSchemaVersionsRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.ListSchemaVersionsResponse) => void): grpc.ClientUnaryCall;
280
+ listRegisteredSchemas(request: kurrentdb_protocols_v2_registry_schemas_pb.ListRegisteredSchemasRequest, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.ListRegisteredSchemasResponse) => void): grpc.ClientUnaryCall;
281
+ listRegisteredSchemas(request: kurrentdb_protocols_v2_registry_schemas_pb.ListRegisteredSchemasRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.ListRegisteredSchemasResponse) => void): grpc.ClientUnaryCall;
282
+ listRegisteredSchemas(request: kurrentdb_protocols_v2_registry_schemas_pb.ListRegisteredSchemasRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.ListRegisteredSchemasResponse) => void): grpc.ClientUnaryCall;
283
+ bulkRegisterSchemas(request: kurrentdb_protocols_v2_registry_schemas_pb.BulkRegisterSchemasRequest, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.BulkRegisterSchemasResponse) => void): grpc.ClientUnaryCall;
284
+ bulkRegisterSchemas(request: kurrentdb_protocols_v2_registry_schemas_pb.BulkRegisterSchemasRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.BulkRegisterSchemasResponse) => void): grpc.ClientUnaryCall;
285
+ bulkRegisterSchemas(request: kurrentdb_protocols_v2_registry_schemas_pb.BulkRegisterSchemasRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.BulkRegisterSchemasResponse) => void): grpc.ClientUnaryCall;
286
+ checkSchemaCompatibility(request: kurrentdb_protocols_v2_registry_validation_pb.CheckSchemaCompatibilityRequest, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_validation_pb.CheckSchemaCompatibilityResponse) => void): grpc.ClientUnaryCall;
287
+ checkSchemaCompatibility(request: kurrentdb_protocols_v2_registry_validation_pb.CheckSchemaCompatibilityRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_validation_pb.CheckSchemaCompatibilityResponse) => void): grpc.ClientUnaryCall;
288
+ checkSchemaCompatibility(request: kurrentdb_protocols_v2_registry_validation_pb.CheckSchemaCompatibilityRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_validation_pb.CheckSchemaCompatibilityResponse) => void): grpc.ClientUnaryCall;
289
+ }
290
+
291
+ export class SchemaRegistryServiceClient extends grpc.Client implements ISchemaRegistryServiceClient {
292
+ constructor(address: string, credentials: grpc.ChannelCredentials, options?: Partial<grpc.ClientOptions>);
293
+ public createSchemaGroup(request: kurrentdb_protocols_v2_registry_groups_pb.CreateSchemaGroupRequest, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_groups_pb.CreateSchemaGroupResponse) => void): grpc.ClientUnaryCall;
294
+ public createSchemaGroup(request: kurrentdb_protocols_v2_registry_groups_pb.CreateSchemaGroupRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_groups_pb.CreateSchemaGroupResponse) => void): grpc.ClientUnaryCall;
295
+ public createSchemaGroup(request: kurrentdb_protocols_v2_registry_groups_pb.CreateSchemaGroupRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_groups_pb.CreateSchemaGroupResponse) => void): grpc.ClientUnaryCall;
296
+ public updateSchemaGroup(request: kurrentdb_protocols_v2_registry_groups_pb.UpdateSchemaGroupRequest, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_groups_pb.UpdateSchemaGroupResponse) => void): grpc.ClientUnaryCall;
297
+ public updateSchemaGroup(request: kurrentdb_protocols_v2_registry_groups_pb.UpdateSchemaGroupRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_groups_pb.UpdateSchemaGroupResponse) => void): grpc.ClientUnaryCall;
298
+ public updateSchemaGroup(request: kurrentdb_protocols_v2_registry_groups_pb.UpdateSchemaGroupRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_groups_pb.UpdateSchemaGroupResponse) => void): grpc.ClientUnaryCall;
299
+ public deleteSchemaGroup(request: kurrentdb_protocols_v2_registry_groups_pb.DeleteSchemaGroupRequest, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_groups_pb.DeleteSchemaGroupResponse) => void): grpc.ClientUnaryCall;
300
+ public deleteSchemaGroup(request: kurrentdb_protocols_v2_registry_groups_pb.DeleteSchemaGroupRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_groups_pb.DeleteSchemaGroupResponse) => void): grpc.ClientUnaryCall;
301
+ public deleteSchemaGroup(request: kurrentdb_protocols_v2_registry_groups_pb.DeleteSchemaGroupRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_groups_pb.DeleteSchemaGroupResponse) => void): grpc.ClientUnaryCall;
302
+ public getSchemaGroup(request: kurrentdb_protocols_v2_registry_groups_pb.GetSchemaGroupRequest, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_groups_pb.GetSchemaGroupResponse) => void): grpc.ClientUnaryCall;
303
+ public getSchemaGroup(request: kurrentdb_protocols_v2_registry_groups_pb.GetSchemaGroupRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_groups_pb.GetSchemaGroupResponse) => void): grpc.ClientUnaryCall;
304
+ public getSchemaGroup(request: kurrentdb_protocols_v2_registry_groups_pb.GetSchemaGroupRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_groups_pb.GetSchemaGroupResponse) => void): grpc.ClientUnaryCall;
305
+ public listSchemaGroups(request: kurrentdb_protocols_v2_registry_groups_pb.ListSchemaGroupsRequest, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_groups_pb.ListSchemaGroupsResponse) => void): grpc.ClientUnaryCall;
306
+ public listSchemaGroups(request: kurrentdb_protocols_v2_registry_groups_pb.ListSchemaGroupsRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_groups_pb.ListSchemaGroupsResponse) => void): grpc.ClientUnaryCall;
307
+ public listSchemaGroups(request: kurrentdb_protocols_v2_registry_groups_pb.ListSchemaGroupsRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_groups_pb.ListSchemaGroupsResponse) => void): grpc.ClientUnaryCall;
308
+ public createSchema(request: kurrentdb_protocols_v2_registry_schemas_pb.CreateSchemaRequest, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.CreateSchemaResponse) => void): grpc.ClientUnaryCall;
309
+ public createSchema(request: kurrentdb_protocols_v2_registry_schemas_pb.CreateSchemaRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.CreateSchemaResponse) => void): grpc.ClientUnaryCall;
310
+ public createSchema(request: kurrentdb_protocols_v2_registry_schemas_pb.CreateSchemaRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.CreateSchemaResponse) => void): grpc.ClientUnaryCall;
311
+ public updateSchema(request: kurrentdb_protocols_v2_registry_schemas_pb.UpdateSchemaRequest, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.UpdateSchemaResponse) => void): grpc.ClientUnaryCall;
312
+ public updateSchema(request: kurrentdb_protocols_v2_registry_schemas_pb.UpdateSchemaRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.UpdateSchemaResponse) => void): grpc.ClientUnaryCall;
313
+ public updateSchema(request: kurrentdb_protocols_v2_registry_schemas_pb.UpdateSchemaRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.UpdateSchemaResponse) => void): grpc.ClientUnaryCall;
314
+ public deleteSchema(request: kurrentdb_protocols_v2_registry_schemas_pb.DeleteSchemaRequest, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.DeleteSchemaResponse) => void): grpc.ClientUnaryCall;
315
+ public deleteSchema(request: kurrentdb_protocols_v2_registry_schemas_pb.DeleteSchemaRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.DeleteSchemaResponse) => void): grpc.ClientUnaryCall;
316
+ public deleteSchema(request: kurrentdb_protocols_v2_registry_schemas_pb.DeleteSchemaRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.DeleteSchemaResponse) => void): grpc.ClientUnaryCall;
317
+ public getSchema(request: kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaRequest, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaResponse) => void): grpc.ClientUnaryCall;
318
+ public getSchema(request: kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaResponse) => void): grpc.ClientUnaryCall;
319
+ public getSchema(request: kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaResponse) => void): grpc.ClientUnaryCall;
320
+ public listSchemas(request: kurrentdb_protocols_v2_registry_schemas_pb.ListSchemasRequest, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.ListSchemasResponse) => void): grpc.ClientUnaryCall;
321
+ public listSchemas(request: kurrentdb_protocols_v2_registry_schemas_pb.ListSchemasRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.ListSchemasResponse) => void): grpc.ClientUnaryCall;
322
+ public listSchemas(request: kurrentdb_protocols_v2_registry_schemas_pb.ListSchemasRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.ListSchemasResponse) => void): grpc.ClientUnaryCall;
323
+ public lookupSchemaName(request: kurrentdb_protocols_v2_registry_schemas_pb.LookupSchemaNameRequest, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.LookupSchemaNameResponse) => void): grpc.ClientUnaryCall;
324
+ public lookupSchemaName(request: kurrentdb_protocols_v2_registry_schemas_pb.LookupSchemaNameRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.LookupSchemaNameResponse) => void): grpc.ClientUnaryCall;
325
+ public lookupSchemaName(request: kurrentdb_protocols_v2_registry_schemas_pb.LookupSchemaNameRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.LookupSchemaNameResponse) => void): grpc.ClientUnaryCall;
326
+ public registerSchemaVersion(request: kurrentdb_protocols_v2_registry_schemas_pb.RegisterSchemaVersionRequest, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.RegisterSchemaVersionResponse) => void): grpc.ClientUnaryCall;
327
+ public registerSchemaVersion(request: kurrentdb_protocols_v2_registry_schemas_pb.RegisterSchemaVersionRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.RegisterSchemaVersionResponse) => void): grpc.ClientUnaryCall;
328
+ public registerSchemaVersion(request: kurrentdb_protocols_v2_registry_schemas_pb.RegisterSchemaVersionRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.RegisterSchemaVersionResponse) => void): grpc.ClientUnaryCall;
329
+ public deleteSchemaVersions(request: kurrentdb_protocols_v2_registry_schemas_pb.DeleteSchemaVersionsRequest, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.DeleteSchemaVersionsResponse) => void): grpc.ClientUnaryCall;
330
+ public deleteSchemaVersions(request: kurrentdb_protocols_v2_registry_schemas_pb.DeleteSchemaVersionsRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.DeleteSchemaVersionsResponse) => void): grpc.ClientUnaryCall;
331
+ public deleteSchemaVersions(request: kurrentdb_protocols_v2_registry_schemas_pb.DeleteSchemaVersionsRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.DeleteSchemaVersionsResponse) => void): grpc.ClientUnaryCall;
332
+ public getSchemaVersion(request: kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaVersionRequest, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaVersionResponse) => void): grpc.ClientUnaryCall;
333
+ public getSchemaVersion(request: kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaVersionRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaVersionResponse) => void): grpc.ClientUnaryCall;
334
+ public getSchemaVersion(request: kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaVersionRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaVersionResponse) => void): grpc.ClientUnaryCall;
335
+ public getSchemaVersionById(request: kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaVersionByIdRequest, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaVersionByIdResponse) => void): grpc.ClientUnaryCall;
336
+ public getSchemaVersionById(request: kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaVersionByIdRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaVersionByIdResponse) => void): grpc.ClientUnaryCall;
337
+ public getSchemaVersionById(request: kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaVersionByIdRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.GetSchemaVersionByIdResponse) => void): grpc.ClientUnaryCall;
338
+ public listSchemaVersions(request: kurrentdb_protocols_v2_registry_schemas_pb.ListSchemaVersionsRequest, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.ListSchemaVersionsResponse) => void): grpc.ClientUnaryCall;
339
+ public listSchemaVersions(request: kurrentdb_protocols_v2_registry_schemas_pb.ListSchemaVersionsRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.ListSchemaVersionsResponse) => void): grpc.ClientUnaryCall;
340
+ public listSchemaVersions(request: kurrentdb_protocols_v2_registry_schemas_pb.ListSchemaVersionsRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.ListSchemaVersionsResponse) => void): grpc.ClientUnaryCall;
341
+ public listRegisteredSchemas(request: kurrentdb_protocols_v2_registry_schemas_pb.ListRegisteredSchemasRequest, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.ListRegisteredSchemasResponse) => void): grpc.ClientUnaryCall;
342
+ public listRegisteredSchemas(request: kurrentdb_protocols_v2_registry_schemas_pb.ListRegisteredSchemasRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.ListRegisteredSchemasResponse) => void): grpc.ClientUnaryCall;
343
+ public listRegisteredSchemas(request: kurrentdb_protocols_v2_registry_schemas_pb.ListRegisteredSchemasRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.ListRegisteredSchemasResponse) => void): grpc.ClientUnaryCall;
344
+ public bulkRegisterSchemas(request: kurrentdb_protocols_v2_registry_schemas_pb.BulkRegisterSchemasRequest, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.BulkRegisterSchemasResponse) => void): grpc.ClientUnaryCall;
345
+ public bulkRegisterSchemas(request: kurrentdb_protocols_v2_registry_schemas_pb.BulkRegisterSchemasRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.BulkRegisterSchemasResponse) => void): grpc.ClientUnaryCall;
346
+ public bulkRegisterSchemas(request: kurrentdb_protocols_v2_registry_schemas_pb.BulkRegisterSchemasRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_schemas_pb.BulkRegisterSchemasResponse) => void): grpc.ClientUnaryCall;
347
+ public checkSchemaCompatibility(request: kurrentdb_protocols_v2_registry_validation_pb.CheckSchemaCompatibilityRequest, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_validation_pb.CheckSchemaCompatibilityResponse) => void): grpc.ClientUnaryCall;
348
+ public checkSchemaCompatibility(request: kurrentdb_protocols_v2_registry_validation_pb.CheckSchemaCompatibilityRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_validation_pb.CheckSchemaCompatibilityResponse) => void): grpc.ClientUnaryCall;
349
+ public checkSchemaCompatibility(request: kurrentdb_protocols_v2_registry_validation_pb.CheckSchemaCompatibilityRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: kurrentdb_protocols_v2_registry_validation_pb.CheckSchemaCompatibilityResponse) => void): grpc.ClientUnaryCall;
350
+ }