@acequants/aegis-contracts 0.1.53 → 0.1.55

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.
@@ -23,37 +23,6 @@ export interface GrpcDtoPermission {
23
23
  export interface GrpcDtoPermissionsAdd {
24
24
  permissions: GrpcDtoPermission[];
25
25
  }
26
- /** ---- CLIENT TYPE ---- */
27
- export interface GrpcInputClientTypeSeed {
28
- name: string;
29
- }
30
- export interface GrpcInputClientTypesSeed {
31
- clientTypes: GrpcInputClientTypeSeed[];
32
- }
33
- export interface GrpcInputClientType {
34
- publicId: string;
35
- }
36
- export interface GrpcInputClientTypes {
37
- search?: string | undefined;
38
- page?: number | undefined;
39
- pageSize?: number | undefined;
40
- sortBy?: string | undefined;
41
- sortOrder?: string | undefined;
42
- }
43
- export interface GrpcDtoClientType {
44
- publicId: string;
45
- name: string;
46
- createdAt?: Timestamp | undefined;
47
- updatedAt?: Timestamp | undefined;
48
- deletedAt?: Timestamp | undefined;
49
- }
50
- export interface GrpcDtoClientTypesSeed {
51
- clientTypes: GrpcDtoClientType[];
52
- }
53
- export interface GrpcDtoClientTypes {
54
- items: GrpcDtoClientType[];
55
- meta?: GrpcDtoPagination | undefined;
56
- }
57
26
  /** ---- FEATURES ---- */
58
27
  export interface GrpcInputFeatureSeed {
59
28
  name: string;
@@ -107,65 +76,77 @@ export interface GrpcDtoFeaturePermission {
107
76
  export interface GrpcDtoFeaturePermissions {
108
77
  featurePermissions: GrpcDtoFeaturePermission[];
109
78
  }
110
- /** ---- CLIENT ---- */
111
- export interface GrpcInputClientCreate {
112
- clientTypePublicId: string;
113
- name: string;
114
- managerPublicId?: string | undefined;
115
- description?: string | undefined;
116
- }
117
- export interface GrpcInputClientUpdate {
118
- publicId: string;
119
- name?: string | undefined;
120
- description?: string | undefined;
121
- clientTypePublicId?: string | undefined;
122
- managerPublicId?: string | undefined;
123
- }
124
- export interface GrpcInputClientFeaturesAdd {
125
- publicId: string;
126
- featureIds: string[];
127
- }
128
- export interface GrpcInputClientFeaturesRemove {
129
- publicClientFeatureIds: string[];
130
- }
131
- export interface GrpcInputClient {
132
- publicId: string;
133
- }
134
- export interface GrpcInputClientFeatures {
135
- clientPublicId: string;
136
- }
137
- export interface GrpcInputClients {
138
- clientTypePublicId?: string | undefined;
139
- managerPublicId?: string | undefined;
140
- search?: string | undefined;
141
- page?: number | undefined;
142
- pageSize?: number | undefined;
143
- sortBy?: string | undefined;
144
- sortOrder?: string | undefined;
145
- }
146
- export interface GrpcDtoClient {
79
+ /** ---- GEO MESSAGES ---- */
80
+ export interface GrpcDtoGeoDivision {
147
81
  publicId: string;
82
+ /** Parent's public_id; empty string when this is a root division (level 0). */
83
+ parentPublicId: string;
84
+ /**
85
+ * Enum name as string (e.g. "COUNTRY", "REGION") — matches Prisma enum
86
+ * GEO_DIVISION. Kept as string so adding new levels doesn't require a
87
+ * proto bump on the subscriber.
88
+ */
89
+ type: string;
90
+ level: number;
91
+ code: string;
92
+ /** Immutable hierarchy path (e.g. "KE", "KE.47", "KE.47.001"). */
93
+ path: string;
148
94
  name: string;
149
- description?: string | undefined;
150
- clientType?: GrpcDtoClientType | undefined;
95
+ iso2: string;
96
+ iso3: string;
97
+ phoneCode: string;
98
+ isCapital: boolean;
99
+ isActive: boolean;
100
+ /**
101
+ * Optional centroid. Sent as wrapped/optional so 0,0 stays distinguishable
102
+ * from "no value". Using `optional` keyword (proto3 field presence).
103
+ */
104
+ lat?: number | undefined;
105
+ lng?: number | undefined;
106
+ /**
107
+ * JSON-encoded geometry (GeoJSON). Empty string when not set.
108
+ * Kept as string to avoid pulling in google.protobuf.Struct here and to
109
+ * stay lossless for arbitrary GeoJSON shapes.
110
+ */
111
+ geoJson: string;
112
+ /**
113
+ * Relation references by public_id. Mirrors the structure of aegis
114
+ * `GeoDivision.timezone` / `.currency` — subscribers can hold either
115
+ * an opaque string ref or layer their own mirror table on top. We
116
+ * ship public_ids (not internal ids) so the contract stays portable.
117
+ */
118
+ timezonePublicId: string;
119
+ currencyPublicId: string;
151
120
  createdAt?: Timestamp | undefined;
152
121
  updatedAt?: Timestamp | undefined;
153
122
  deletedAt?: Timestamp | undefined;
154
123
  }
155
- export interface GrpcDtoClients {
156
- items: GrpcDtoClient[];
157
- meta?: GrpcDtoPagination | undefined;
158
- }
159
- export interface GrpcDtoFeaturesAdd {
160
- features: GrpcDtoFeature[];
161
- }
162
- export interface GrpcDtoClientFeature {
163
- publicId: string;
164
- feature?: GrpcDtoFeature | undefined;
165
- client?: GrpcDtoClient | undefined;
166
- }
167
- export interface GrpcDtoClientFeatures {
168
- clientFeatures: GrpcDtoClientFeature[];
124
+ export interface GrpcDtoGeoDivisionsPage {
125
+ items: GrpcDtoGeoDivision[];
126
+ /** Empty string when there is no next page. */
127
+ nextCursor: string;
128
+ }
129
+ export interface GrpcDtoGeoDivisions {
130
+ items: GrpcDtoGeoDivision[];
131
+ }
132
+ /** ---- GEO INPUTS ---- */
133
+ export interface GrpcInputGeoDivisionsListAll {
134
+ /** Empty string means "from the beginning". */
135
+ cursor: string;
136
+ /** 0 means "use server default". Server clamps to its max. */
137
+ limit: number;
138
+ }
139
+ export interface GrpcInputGeoDivisionsGetByPublicIds {
140
+ publicIds: string[];
141
+ }
142
+ export interface GrpcInputGeoDivisionsListChangedSince {
143
+ /**
144
+ * Strict `>` comparison server-side. Subscriber should record its
145
+ * "last seen updated_at" and pass it back here unchanged.
146
+ */
147
+ since?: Timestamp | undefined;
148
+ cursor: string;
149
+ limit: number;
169
150
  }
170
151
  export declare const AEGIS_SYSTEM_V1_PACKAGE_NAME = "aegis.system.v1";
171
152
  export declare const GrpcDtoPagination: {
@@ -184,34 +165,6 @@ export declare const GrpcDtoPermissionsAdd: {
184
165
  encode(message: GrpcDtoPermissionsAdd, writer?: _m0.Writer): _m0.Writer;
185
166
  decode(input: _m0.Reader | Uint8Array, length?: number): GrpcDtoPermissionsAdd;
186
167
  };
187
- export declare const GrpcInputClientTypeSeed: {
188
- encode(message: GrpcInputClientTypeSeed, writer?: _m0.Writer): _m0.Writer;
189
- decode(input: _m0.Reader | Uint8Array, length?: number): GrpcInputClientTypeSeed;
190
- };
191
- export declare const GrpcInputClientTypesSeed: {
192
- encode(message: GrpcInputClientTypesSeed, writer?: _m0.Writer): _m0.Writer;
193
- decode(input: _m0.Reader | Uint8Array, length?: number): GrpcInputClientTypesSeed;
194
- };
195
- export declare const GrpcInputClientType: {
196
- encode(message: GrpcInputClientType, writer?: _m0.Writer): _m0.Writer;
197
- decode(input: _m0.Reader | Uint8Array, length?: number): GrpcInputClientType;
198
- };
199
- export declare const GrpcInputClientTypes: {
200
- encode(message: GrpcInputClientTypes, writer?: _m0.Writer): _m0.Writer;
201
- decode(input: _m0.Reader | Uint8Array, length?: number): GrpcInputClientTypes;
202
- };
203
- export declare const GrpcDtoClientType: {
204
- encode(message: GrpcDtoClientType, writer?: _m0.Writer): _m0.Writer;
205
- decode(input: _m0.Reader | Uint8Array, length?: number): GrpcDtoClientType;
206
- };
207
- export declare const GrpcDtoClientTypesSeed: {
208
- encode(message: GrpcDtoClientTypesSeed, writer?: _m0.Writer): _m0.Writer;
209
- decode(input: _m0.Reader | Uint8Array, length?: number): GrpcDtoClientTypesSeed;
210
- };
211
- export declare const GrpcDtoClientTypes: {
212
- encode(message: GrpcDtoClientTypes, writer?: _m0.Writer): _m0.Writer;
213
- decode(input: _m0.Reader | Uint8Array, length?: number): GrpcDtoClientTypes;
214
- };
215
168
  export declare const GrpcInputFeatureSeed: {
216
169
  encode(message: GrpcInputFeatureSeed, writer?: _m0.Writer): _m0.Writer;
217
170
  decode(input: _m0.Reader | Uint8Array, length?: number): GrpcInputFeatureSeed;
@@ -260,59 +213,31 @@ export declare const GrpcDtoFeaturePermissions: {
260
213
  encode(message: GrpcDtoFeaturePermissions, writer?: _m0.Writer): _m0.Writer;
261
214
  decode(input: _m0.Reader | Uint8Array, length?: number): GrpcDtoFeaturePermissions;
262
215
  };
263
- export declare const GrpcInputClientCreate: {
264
- encode(message: GrpcInputClientCreate, writer?: _m0.Writer): _m0.Writer;
265
- decode(input: _m0.Reader | Uint8Array, length?: number): GrpcInputClientCreate;
266
- };
267
- export declare const GrpcInputClientUpdate: {
268
- encode(message: GrpcInputClientUpdate, writer?: _m0.Writer): _m0.Writer;
269
- decode(input: _m0.Reader | Uint8Array, length?: number): GrpcInputClientUpdate;
270
- };
271
- export declare const GrpcInputClientFeaturesAdd: {
272
- encode(message: GrpcInputClientFeaturesAdd, writer?: _m0.Writer): _m0.Writer;
273
- decode(input: _m0.Reader | Uint8Array, length?: number): GrpcInputClientFeaturesAdd;
274
- };
275
- export declare const GrpcInputClientFeaturesRemove: {
276
- encode(message: GrpcInputClientFeaturesRemove, writer?: _m0.Writer): _m0.Writer;
277
- decode(input: _m0.Reader | Uint8Array, length?: number): GrpcInputClientFeaturesRemove;
278
- };
279
- export declare const GrpcInputClient: {
280
- encode(message: GrpcInputClient, writer?: _m0.Writer): _m0.Writer;
281
- decode(input: _m0.Reader | Uint8Array, length?: number): GrpcInputClient;
216
+ export declare const GrpcDtoGeoDivision: {
217
+ encode(message: GrpcDtoGeoDivision, writer?: _m0.Writer): _m0.Writer;
218
+ decode(input: _m0.Reader | Uint8Array, length?: number): GrpcDtoGeoDivision;
282
219
  };
283
- export declare const GrpcInputClientFeatures: {
284
- encode(message: GrpcInputClientFeatures, writer?: _m0.Writer): _m0.Writer;
285
- decode(input: _m0.Reader | Uint8Array, length?: number): GrpcInputClientFeatures;
220
+ export declare const GrpcDtoGeoDivisionsPage: {
221
+ encode(message: GrpcDtoGeoDivisionsPage, writer?: _m0.Writer): _m0.Writer;
222
+ decode(input: _m0.Reader | Uint8Array, length?: number): GrpcDtoGeoDivisionsPage;
286
223
  };
287
- export declare const GrpcInputClients: {
288
- encode(message: GrpcInputClients, writer?: _m0.Writer): _m0.Writer;
289
- decode(input: _m0.Reader | Uint8Array, length?: number): GrpcInputClients;
224
+ export declare const GrpcDtoGeoDivisions: {
225
+ encode(message: GrpcDtoGeoDivisions, writer?: _m0.Writer): _m0.Writer;
226
+ decode(input: _m0.Reader | Uint8Array, length?: number): GrpcDtoGeoDivisions;
290
227
  };
291
- export declare const GrpcDtoClient: {
292
- encode(message: GrpcDtoClient, writer?: _m0.Writer): _m0.Writer;
293
- decode(input: _m0.Reader | Uint8Array, length?: number): GrpcDtoClient;
228
+ export declare const GrpcInputGeoDivisionsListAll: {
229
+ encode(message: GrpcInputGeoDivisionsListAll, writer?: _m0.Writer): _m0.Writer;
230
+ decode(input: _m0.Reader | Uint8Array, length?: number): GrpcInputGeoDivisionsListAll;
294
231
  };
295
- export declare const GrpcDtoClients: {
296
- encode(message: GrpcDtoClients, writer?: _m0.Writer): _m0.Writer;
297
- decode(input: _m0.Reader | Uint8Array, length?: number): GrpcDtoClients;
232
+ export declare const GrpcInputGeoDivisionsGetByPublicIds: {
233
+ encode(message: GrpcInputGeoDivisionsGetByPublicIds, writer?: _m0.Writer): _m0.Writer;
234
+ decode(input: _m0.Reader | Uint8Array, length?: number): GrpcInputGeoDivisionsGetByPublicIds;
298
235
  };
299
- export declare const GrpcDtoFeaturesAdd: {
300
- encode(message: GrpcDtoFeaturesAdd, writer?: _m0.Writer): _m0.Writer;
301
- decode(input: _m0.Reader | Uint8Array, length?: number): GrpcDtoFeaturesAdd;
302
- };
303
- export declare const GrpcDtoClientFeature: {
304
- encode(message: GrpcDtoClientFeature, writer?: _m0.Writer): _m0.Writer;
305
- decode(input: _m0.Reader | Uint8Array, length?: number): GrpcDtoClientFeature;
306
- };
307
- export declare const GrpcDtoClientFeatures: {
308
- encode(message: GrpcDtoClientFeatures, writer?: _m0.Writer): _m0.Writer;
309
- decode(input: _m0.Reader | Uint8Array, length?: number): GrpcDtoClientFeatures;
236
+ export declare const GrpcInputGeoDivisionsListChangedSince: {
237
+ encode(message: GrpcInputGeoDivisionsListChangedSince, writer?: _m0.Writer): _m0.Writer;
238
+ decode(input: _m0.Reader | Uint8Array, length?: number): GrpcInputGeoDivisionsListChangedSince;
310
239
  };
311
240
  export interface SystemServiceClient {
312
- /** --- Client Types --- */
313
- clientTypesSeed(request: GrpcInputClientTypesSeed): Observable<GrpcDtoClientTypesSeed>;
314
- clientTypes(request: GrpcInputClientTypes): Observable<GrpcDtoClientTypes>;
315
- clientType(request: GrpcInputClientType): Observable<GrpcDtoClientType>;
316
241
  /** --- Features --- */
317
242
  featuresSeed(request: GrpcInputFeaturesSeed): Observable<GrpcDtoFeaturesSeed>;
318
243
  features(request: GrpcInputFeatures): Observable<GrpcDtoFeatures>;
@@ -320,20 +245,8 @@ export interface SystemServiceClient {
320
245
  featurePermissions(request: GrpcInputFeaturePermissions): Observable<GrpcDtoFeaturePermissions>;
321
246
  featurePermissionsAdd(request: GrpcInputFeaturePermissionsAdd): Observable<GrpcDtoPermissionsAdd>;
322
247
  featurePermissionsRemove(request: GrpcInputFeaturePermissionsRemove): Observable<GrpcDtoMessage>;
323
- /** --- Clients --- */
324
- clientCreate(request: GrpcInputClientCreate): Observable<GrpcDtoClient>;
325
- clientUpdate(request: GrpcInputClientUpdate): Observable<GrpcDtoClient>;
326
- clients(request: GrpcInputClients): Observable<GrpcDtoClients>;
327
- client(request: GrpcInputClient): Observable<GrpcDtoClient>;
328
- clientFeaturesAdd(request: GrpcInputClientFeaturesAdd): Observable<GrpcDtoFeaturesAdd>;
329
- clientFeaturesRemove(request: GrpcInputClientFeaturesRemove): Observable<GrpcDtoMessage>;
330
- clientFeatures(request: GrpcInputClientFeatures): Observable<GrpcDtoClientFeatures>;
331
248
  }
332
249
  export interface SystemServiceController {
333
- /** --- Client Types --- */
334
- clientTypesSeed(request: GrpcInputClientTypesSeed): Promise<GrpcDtoClientTypesSeed> | Observable<GrpcDtoClientTypesSeed> | GrpcDtoClientTypesSeed;
335
- clientTypes(request: GrpcInputClientTypes): Promise<GrpcDtoClientTypes> | Observable<GrpcDtoClientTypes> | GrpcDtoClientTypes;
336
- clientType(request: GrpcInputClientType): Promise<GrpcDtoClientType> | Observable<GrpcDtoClientType> | GrpcDtoClientType;
337
250
  /** --- Features --- */
338
251
  featuresSeed(request: GrpcInputFeaturesSeed): Promise<GrpcDtoFeaturesSeed> | Observable<GrpcDtoFeaturesSeed> | GrpcDtoFeaturesSeed;
339
252
  features(request: GrpcInputFeatures): Promise<GrpcDtoFeatures> | Observable<GrpcDtoFeatures> | GrpcDtoFeatures;
@@ -341,47 +254,11 @@ export interface SystemServiceController {
341
254
  featurePermissions(request: GrpcInputFeaturePermissions): Promise<GrpcDtoFeaturePermissions> | Observable<GrpcDtoFeaturePermissions> | GrpcDtoFeaturePermissions;
342
255
  featurePermissionsAdd(request: GrpcInputFeaturePermissionsAdd): Promise<GrpcDtoPermissionsAdd> | Observable<GrpcDtoPermissionsAdd> | GrpcDtoPermissionsAdd;
343
256
  featurePermissionsRemove(request: GrpcInputFeaturePermissionsRemove): Promise<GrpcDtoMessage> | Observable<GrpcDtoMessage> | GrpcDtoMessage;
344
- /** --- Clients --- */
345
- clientCreate(request: GrpcInputClientCreate): Promise<GrpcDtoClient> | Observable<GrpcDtoClient> | GrpcDtoClient;
346
- clientUpdate(request: GrpcInputClientUpdate): Promise<GrpcDtoClient> | Observable<GrpcDtoClient> | GrpcDtoClient;
347
- clients(request: GrpcInputClients): Promise<GrpcDtoClients> | Observable<GrpcDtoClients> | GrpcDtoClients;
348
- client(request: GrpcInputClient): Promise<GrpcDtoClient> | Observable<GrpcDtoClient> | GrpcDtoClient;
349
- clientFeaturesAdd(request: GrpcInputClientFeaturesAdd): Promise<GrpcDtoFeaturesAdd> | Observable<GrpcDtoFeaturesAdd> | GrpcDtoFeaturesAdd;
350
- clientFeaturesRemove(request: GrpcInputClientFeaturesRemove): Promise<GrpcDtoMessage> | Observable<GrpcDtoMessage> | GrpcDtoMessage;
351
- clientFeatures(request: GrpcInputClientFeatures): Promise<GrpcDtoClientFeatures> | Observable<GrpcDtoClientFeatures> | GrpcDtoClientFeatures;
352
257
  }
353
258
  export declare function SystemServiceControllerMethods(): (constructor: Function) => void;
354
259
  export declare const SYSTEM_SERVICE_NAME = "SystemService";
355
260
  export type SystemServiceService = typeof SystemServiceService;
356
261
  export declare const SystemServiceService: {
357
- /** --- Client Types --- */
358
- readonly clientTypesSeed: {
359
- readonly path: "/aegis.system.v1.SystemService/ClientTypesSeed";
360
- readonly requestStream: false;
361
- readonly responseStream: false;
362
- readonly requestSerialize: (value: GrpcInputClientTypesSeed) => Buffer<ArrayBuffer>;
363
- readonly requestDeserialize: (value: Buffer) => GrpcInputClientTypesSeed;
364
- readonly responseSerialize: (value: GrpcDtoClientTypesSeed) => Buffer<ArrayBuffer>;
365
- readonly responseDeserialize: (value: Buffer) => GrpcDtoClientTypesSeed;
366
- };
367
- readonly clientTypes: {
368
- readonly path: "/aegis.system.v1.SystemService/ClientTypes";
369
- readonly requestStream: false;
370
- readonly responseStream: false;
371
- readonly requestSerialize: (value: GrpcInputClientTypes) => Buffer<ArrayBuffer>;
372
- readonly requestDeserialize: (value: Buffer) => GrpcInputClientTypes;
373
- readonly responseSerialize: (value: GrpcDtoClientTypes) => Buffer<ArrayBuffer>;
374
- readonly responseDeserialize: (value: Buffer) => GrpcDtoClientTypes;
375
- };
376
- readonly clientType: {
377
- readonly path: "/aegis.system.v1.SystemService/ClientType";
378
- readonly requestStream: false;
379
- readonly responseStream: false;
380
- readonly requestSerialize: (value: GrpcInputClientType) => Buffer<ArrayBuffer>;
381
- readonly requestDeserialize: (value: Buffer) => GrpcInputClientType;
382
- readonly responseSerialize: (value: GrpcDtoClientType) => Buffer<ArrayBuffer>;
383
- readonly responseDeserialize: (value: Buffer) => GrpcDtoClientType;
384
- };
385
262
  /** --- Features --- */
386
263
  readonly featuresSeed: {
387
264
  readonly path: "/aegis.system.v1.SystemService/FeaturesSeed";
@@ -437,90 +314,88 @@ export declare const SystemServiceService: {
437
314
  readonly responseSerialize: (value: GrpcDtoMessage) => Buffer<ArrayBuffer>;
438
315
  readonly responseDeserialize: (value: Buffer) => GrpcDtoMessage;
439
316
  };
440
- /** --- Clients --- */
441
- readonly clientCreate: {
442
- readonly path: "/aegis.system.v1.SystemService/ClientCreate";
443
- readonly requestStream: false;
444
- readonly responseStream: false;
445
- readonly requestSerialize: (value: GrpcInputClientCreate) => Buffer<ArrayBuffer>;
446
- readonly requestDeserialize: (value: Buffer) => GrpcInputClientCreate;
447
- readonly responseSerialize: (value: GrpcDtoClient) => Buffer<ArrayBuffer>;
448
- readonly responseDeserialize: (value: Buffer) => GrpcDtoClient;
449
- };
450
- readonly clientUpdate: {
451
- readonly path: "/aegis.system.v1.SystemService/ClientUpdate";
452
- readonly requestStream: false;
453
- readonly responseStream: false;
454
- readonly requestSerialize: (value: GrpcInputClientUpdate) => Buffer<ArrayBuffer>;
455
- readonly requestDeserialize: (value: Buffer) => GrpcInputClientUpdate;
456
- readonly responseSerialize: (value: GrpcDtoClient) => Buffer<ArrayBuffer>;
457
- readonly responseDeserialize: (value: Buffer) => GrpcDtoClient;
458
- };
459
- readonly clients: {
460
- readonly path: "/aegis.system.v1.SystemService/Clients";
461
- readonly requestStream: false;
462
- readonly responseStream: false;
463
- readonly requestSerialize: (value: GrpcInputClients) => Buffer<ArrayBuffer>;
464
- readonly requestDeserialize: (value: Buffer) => GrpcInputClients;
465
- readonly responseSerialize: (value: GrpcDtoClients) => Buffer<ArrayBuffer>;
466
- readonly responseDeserialize: (value: Buffer) => GrpcDtoClients;
467
- };
468
- readonly client: {
469
- readonly path: "/aegis.system.v1.SystemService/Client";
470
- readonly requestStream: false;
471
- readonly responseStream: false;
472
- readonly requestSerialize: (value: GrpcInputClient) => Buffer<ArrayBuffer>;
473
- readonly requestDeserialize: (value: Buffer) => GrpcInputClient;
474
- readonly responseSerialize: (value: GrpcDtoClient) => Buffer<ArrayBuffer>;
475
- readonly responseDeserialize: (value: Buffer) => GrpcDtoClient;
476
- };
477
- readonly clientFeaturesAdd: {
478
- readonly path: "/aegis.system.v1.SystemService/ClientFeaturesAdd";
317
+ };
318
+ export interface SystemServiceServer extends UntypedServiceImplementation {
319
+ /** --- Features --- */
320
+ featuresSeed: handleUnaryCall<GrpcInputFeaturesSeed, GrpcDtoFeaturesSeed>;
321
+ features: handleUnaryCall<GrpcInputFeatures, GrpcDtoFeatures>;
322
+ feature: handleUnaryCall<GrpcInputFeature, GrpcDtoFeature>;
323
+ featurePermissions: handleUnaryCall<GrpcInputFeaturePermissions, GrpcDtoFeaturePermissions>;
324
+ featurePermissionsAdd: handleUnaryCall<GrpcInputFeaturePermissionsAdd, GrpcDtoPermissionsAdd>;
325
+ featurePermissionsRemove: handleUnaryCall<GrpcInputFeaturePermissionsRemove, GrpcDtoMessage>;
326
+ }
327
+ /** ---- GEO SERVICE ---- */
328
+ export interface GeoServiceClient {
329
+ /** Full sync (used on first mirror boot). Paged by public_id cursor. */
330
+ geoDivisionsListAll(request: GrpcInputGeoDivisionsListAll): Observable<GrpcDtoGeoDivisionsPage>;
331
+ /** Batch fetch by public_id (used by live Redis event consumers). */
332
+ geoDivisionsGetByPublicIds(request: GrpcInputGeoDivisionsGetByPublicIds): Observable<GrpcDtoGeoDivisions>;
333
+ /**
334
+ * Hourly safety-net reconciler. Catches anything the Redis publisher
335
+ * dropped due to restart races.
336
+ */
337
+ geoDivisionsListChangedSince(request: GrpcInputGeoDivisionsListChangedSince): Observable<GrpcDtoGeoDivisionsPage>;
338
+ }
339
+ /** ---- GEO SERVICE ---- */
340
+ export interface GeoServiceController {
341
+ /** Full sync (used on first mirror boot). Paged by public_id cursor. */
342
+ geoDivisionsListAll(request: GrpcInputGeoDivisionsListAll): Promise<GrpcDtoGeoDivisionsPage> | Observable<GrpcDtoGeoDivisionsPage> | GrpcDtoGeoDivisionsPage;
343
+ /** Batch fetch by public_id (used by live Redis event consumers). */
344
+ geoDivisionsGetByPublicIds(request: GrpcInputGeoDivisionsGetByPublicIds): Promise<GrpcDtoGeoDivisions> | Observable<GrpcDtoGeoDivisions> | GrpcDtoGeoDivisions;
345
+ /**
346
+ * Hourly safety-net reconciler. Catches anything the Redis publisher
347
+ * dropped due to restart races.
348
+ */
349
+ geoDivisionsListChangedSince(request: GrpcInputGeoDivisionsListChangedSince): Promise<GrpcDtoGeoDivisionsPage> | Observable<GrpcDtoGeoDivisionsPage> | GrpcDtoGeoDivisionsPage;
350
+ }
351
+ export declare function GeoServiceControllerMethods(): (constructor: Function) => void;
352
+ export declare const GEO_SERVICE_NAME = "GeoService";
353
+ /** ---- GEO SERVICE ---- */
354
+ export type GeoServiceService = typeof GeoServiceService;
355
+ export declare const GeoServiceService: {
356
+ /** Full sync (used on first mirror boot). Paged by public_id cursor. */
357
+ readonly geoDivisionsListAll: {
358
+ readonly path: "/aegis.system.v1.GeoService/GeoDivisionsListAll";
479
359
  readonly requestStream: false;
480
360
  readonly responseStream: false;
481
- readonly requestSerialize: (value: GrpcInputClientFeaturesAdd) => Buffer<ArrayBuffer>;
482
- readonly requestDeserialize: (value: Buffer) => GrpcInputClientFeaturesAdd;
483
- readonly responseSerialize: (value: GrpcDtoFeaturesAdd) => Buffer<ArrayBuffer>;
484
- readonly responseDeserialize: (value: Buffer) => GrpcDtoFeaturesAdd;
361
+ readonly requestSerialize: (value: GrpcInputGeoDivisionsListAll) => Buffer<ArrayBuffer>;
362
+ readonly requestDeserialize: (value: Buffer) => GrpcInputGeoDivisionsListAll;
363
+ readonly responseSerialize: (value: GrpcDtoGeoDivisionsPage) => Buffer<ArrayBuffer>;
364
+ readonly responseDeserialize: (value: Buffer) => GrpcDtoGeoDivisionsPage;
485
365
  };
486
- readonly clientFeaturesRemove: {
487
- readonly path: "/aegis.system.v1.SystemService/ClientFeaturesRemove";
366
+ /** Batch fetch by public_id (used by live Redis event consumers). */
367
+ readonly geoDivisionsGetByPublicIds: {
368
+ readonly path: "/aegis.system.v1.GeoService/GeoDivisionsGetByPublicIds";
488
369
  readonly requestStream: false;
489
370
  readonly responseStream: false;
490
- readonly requestSerialize: (value: GrpcInputClientFeaturesRemove) => Buffer<ArrayBuffer>;
491
- readonly requestDeserialize: (value: Buffer) => GrpcInputClientFeaturesRemove;
492
- readonly responseSerialize: (value: GrpcDtoMessage) => Buffer<ArrayBuffer>;
493
- readonly responseDeserialize: (value: Buffer) => GrpcDtoMessage;
371
+ readonly requestSerialize: (value: GrpcInputGeoDivisionsGetByPublicIds) => Buffer<ArrayBuffer>;
372
+ readonly requestDeserialize: (value: Buffer) => GrpcInputGeoDivisionsGetByPublicIds;
373
+ readonly responseSerialize: (value: GrpcDtoGeoDivisions) => Buffer<ArrayBuffer>;
374
+ readonly responseDeserialize: (value: Buffer) => GrpcDtoGeoDivisions;
494
375
  };
495
- readonly clientFeatures: {
496
- readonly path: "/aegis.system.v1.SystemService/ClientFeatures";
376
+ /**
377
+ * Hourly safety-net reconciler. Catches anything the Redis publisher
378
+ * dropped due to restart races.
379
+ */
380
+ readonly geoDivisionsListChangedSince: {
381
+ readonly path: "/aegis.system.v1.GeoService/GeoDivisionsListChangedSince";
497
382
  readonly requestStream: false;
498
383
  readonly responseStream: false;
499
- readonly requestSerialize: (value: GrpcInputClientFeatures) => Buffer<ArrayBuffer>;
500
- readonly requestDeserialize: (value: Buffer) => GrpcInputClientFeatures;
501
- readonly responseSerialize: (value: GrpcDtoClientFeatures) => Buffer<ArrayBuffer>;
502
- readonly responseDeserialize: (value: Buffer) => GrpcDtoClientFeatures;
384
+ readonly requestSerialize: (value: GrpcInputGeoDivisionsListChangedSince) => Buffer<ArrayBuffer>;
385
+ readonly requestDeserialize: (value: Buffer) => GrpcInputGeoDivisionsListChangedSince;
386
+ readonly responseSerialize: (value: GrpcDtoGeoDivisionsPage) => Buffer<ArrayBuffer>;
387
+ readonly responseDeserialize: (value: Buffer) => GrpcDtoGeoDivisionsPage;
503
388
  };
504
389
  };
505
- export interface SystemServiceServer extends UntypedServiceImplementation {
506
- /** --- Client Types --- */
507
- clientTypesSeed: handleUnaryCall<GrpcInputClientTypesSeed, GrpcDtoClientTypesSeed>;
508
- clientTypes: handleUnaryCall<GrpcInputClientTypes, GrpcDtoClientTypes>;
509
- clientType: handleUnaryCall<GrpcInputClientType, GrpcDtoClientType>;
510
- /** --- Features --- */
511
- featuresSeed: handleUnaryCall<GrpcInputFeaturesSeed, GrpcDtoFeaturesSeed>;
512
- features: handleUnaryCall<GrpcInputFeatures, GrpcDtoFeatures>;
513
- feature: handleUnaryCall<GrpcInputFeature, GrpcDtoFeature>;
514
- featurePermissions: handleUnaryCall<GrpcInputFeaturePermissions, GrpcDtoFeaturePermissions>;
515
- featurePermissionsAdd: handleUnaryCall<GrpcInputFeaturePermissionsAdd, GrpcDtoPermissionsAdd>;
516
- featurePermissionsRemove: handleUnaryCall<GrpcInputFeaturePermissionsRemove, GrpcDtoMessage>;
517
- /** --- Clients --- */
518
- clientCreate: handleUnaryCall<GrpcInputClientCreate, GrpcDtoClient>;
519
- clientUpdate: handleUnaryCall<GrpcInputClientUpdate, GrpcDtoClient>;
520
- clients: handleUnaryCall<GrpcInputClients, GrpcDtoClients>;
521
- client: handleUnaryCall<GrpcInputClient, GrpcDtoClient>;
522
- clientFeaturesAdd: handleUnaryCall<GrpcInputClientFeaturesAdd, GrpcDtoFeaturesAdd>;
523
- clientFeaturesRemove: handleUnaryCall<GrpcInputClientFeaturesRemove, GrpcDtoMessage>;
524
- clientFeatures: handleUnaryCall<GrpcInputClientFeatures, GrpcDtoClientFeatures>;
390
+ export interface GeoServiceServer extends UntypedServiceImplementation {
391
+ /** Full sync (used on first mirror boot). Paged by public_id cursor. */
392
+ geoDivisionsListAll: handleUnaryCall<GrpcInputGeoDivisionsListAll, GrpcDtoGeoDivisionsPage>;
393
+ /** Batch fetch by public_id (used by live Redis event consumers). */
394
+ geoDivisionsGetByPublicIds: handleUnaryCall<GrpcInputGeoDivisionsGetByPublicIds, GrpcDtoGeoDivisions>;
395
+ /**
396
+ * Hourly safety-net reconciler. Catches anything the Redis publisher
397
+ * dropped due to restart races.
398
+ */
399
+ geoDivisionsListChangedSince: handleUnaryCall<GrpcInputGeoDivisionsListChangedSince, GrpcDtoGeoDivisionsPage>;
525
400
  }
526
401
  //# sourceMappingURL=system.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"system.d.ts","sourceRoot":"","sources":["../../../../../src/gen/system/v1/system.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"system.d.ts","sourceRoot":"","sources":["../../../../../src/gen/system/v1/system.ts"],"names":[],"mappings":"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"}