@acequants/aegis-contracts 0.1.55 → 0.1.56

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,6 +23,37 @@ 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
+ }
26
57
  /** ---- FEATURES ---- */
27
58
  export interface GrpcInputFeatureSeed {
28
59
  name: string;
@@ -76,77 +107,65 @@ export interface GrpcDtoFeaturePermission {
76
107
  export interface GrpcDtoFeaturePermissions {
77
108
  featurePermissions: GrpcDtoFeaturePermission[];
78
109
  }
79
- /** ---- GEO MESSAGES ---- */
80
- export interface GrpcDtoGeoDivision {
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 {
81
147
  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;
94
148
  name: string;
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;
149
+ description?: string | undefined;
150
+ clientType?: GrpcDtoClientType | undefined;
120
151
  createdAt?: Timestamp | undefined;
121
152
  updatedAt?: Timestamp | undefined;
122
153
  deletedAt?: Timestamp | undefined;
123
154
  }
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;
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[];
150
169
  }
151
170
  export declare const AEGIS_SYSTEM_V1_PACKAGE_NAME = "aegis.system.v1";
152
171
  export declare const GrpcDtoPagination: {
@@ -165,6 +184,34 @@ export declare const GrpcDtoPermissionsAdd: {
165
184
  encode(message: GrpcDtoPermissionsAdd, writer?: _m0.Writer): _m0.Writer;
166
185
  decode(input: _m0.Reader | Uint8Array, length?: number): GrpcDtoPermissionsAdd;
167
186
  };
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
+ };
168
215
  export declare const GrpcInputFeatureSeed: {
169
216
  encode(message: GrpcInputFeatureSeed, writer?: _m0.Writer): _m0.Writer;
170
217
  decode(input: _m0.Reader | Uint8Array, length?: number): GrpcInputFeatureSeed;
@@ -213,31 +260,59 @@ export declare const GrpcDtoFeaturePermissions: {
213
260
  encode(message: GrpcDtoFeaturePermissions, writer?: _m0.Writer): _m0.Writer;
214
261
  decode(input: _m0.Reader | Uint8Array, length?: number): GrpcDtoFeaturePermissions;
215
262
  };
216
- export declare const GrpcDtoGeoDivision: {
217
- encode(message: GrpcDtoGeoDivision, writer?: _m0.Writer): _m0.Writer;
218
- decode(input: _m0.Reader | Uint8Array, length?: number): GrpcDtoGeoDivision;
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;
282
+ };
283
+ export declare const GrpcInputClientFeatures: {
284
+ encode(message: GrpcInputClientFeatures, writer?: _m0.Writer): _m0.Writer;
285
+ decode(input: _m0.Reader | Uint8Array, length?: number): GrpcInputClientFeatures;
219
286
  };
220
- export declare const GrpcDtoGeoDivisionsPage: {
221
- encode(message: GrpcDtoGeoDivisionsPage, writer?: _m0.Writer): _m0.Writer;
222
- decode(input: _m0.Reader | Uint8Array, length?: number): GrpcDtoGeoDivisionsPage;
287
+ export declare const GrpcInputClients: {
288
+ encode(message: GrpcInputClients, writer?: _m0.Writer): _m0.Writer;
289
+ decode(input: _m0.Reader | Uint8Array, length?: number): GrpcInputClients;
223
290
  };
224
- export declare const GrpcDtoGeoDivisions: {
225
- encode(message: GrpcDtoGeoDivisions, writer?: _m0.Writer): _m0.Writer;
226
- decode(input: _m0.Reader | Uint8Array, length?: number): GrpcDtoGeoDivisions;
291
+ export declare const GrpcDtoClient: {
292
+ encode(message: GrpcDtoClient, writer?: _m0.Writer): _m0.Writer;
293
+ decode(input: _m0.Reader | Uint8Array, length?: number): GrpcDtoClient;
227
294
  };
228
- export declare const GrpcInputGeoDivisionsListAll: {
229
- encode(message: GrpcInputGeoDivisionsListAll, writer?: _m0.Writer): _m0.Writer;
230
- decode(input: _m0.Reader | Uint8Array, length?: number): GrpcInputGeoDivisionsListAll;
295
+ export declare const GrpcDtoClients: {
296
+ encode(message: GrpcDtoClients, writer?: _m0.Writer): _m0.Writer;
297
+ decode(input: _m0.Reader | Uint8Array, length?: number): GrpcDtoClients;
231
298
  };
232
- export declare const GrpcInputGeoDivisionsGetByPublicIds: {
233
- encode(message: GrpcInputGeoDivisionsGetByPublicIds, writer?: _m0.Writer): _m0.Writer;
234
- decode(input: _m0.Reader | Uint8Array, length?: number): GrpcInputGeoDivisionsGetByPublicIds;
299
+ export declare const GrpcDtoFeaturesAdd: {
300
+ encode(message: GrpcDtoFeaturesAdd, writer?: _m0.Writer): _m0.Writer;
301
+ decode(input: _m0.Reader | Uint8Array, length?: number): GrpcDtoFeaturesAdd;
235
302
  };
236
- export declare const GrpcInputGeoDivisionsListChangedSince: {
237
- encode(message: GrpcInputGeoDivisionsListChangedSince, writer?: _m0.Writer): _m0.Writer;
238
- decode(input: _m0.Reader | Uint8Array, length?: number): GrpcInputGeoDivisionsListChangedSince;
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;
239
310
  };
240
311
  export interface SystemServiceClient {
312
+ /** --- Client Types --- */
313
+ clientTypesSeed(request: GrpcInputClientTypesSeed): Observable<GrpcDtoClientTypesSeed>;
314
+ clientTypes(request: GrpcInputClientTypes): Observable<GrpcDtoClientTypes>;
315
+ clientType(request: GrpcInputClientType): Observable<GrpcDtoClientType>;
241
316
  /** --- Features --- */
242
317
  featuresSeed(request: GrpcInputFeaturesSeed): Observable<GrpcDtoFeaturesSeed>;
243
318
  features(request: GrpcInputFeatures): Observable<GrpcDtoFeatures>;
@@ -245,8 +320,21 @@ export interface SystemServiceClient {
245
320
  featurePermissions(request: GrpcInputFeaturePermissions): Observable<GrpcDtoFeaturePermissions>;
246
321
  featurePermissionsAdd(request: GrpcInputFeaturePermissionsAdd): Observable<GrpcDtoPermissionsAdd>;
247
322
  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
+ clientToDelete(request: GrpcInputClientFeatures): Observable<GrpcDtoClientFeatures>;
248
332
  }
249
333
  export interface SystemServiceController {
334
+ /** --- Client Types --- */
335
+ clientTypesSeed(request: GrpcInputClientTypesSeed): Promise<GrpcDtoClientTypesSeed> | Observable<GrpcDtoClientTypesSeed> | GrpcDtoClientTypesSeed;
336
+ clientTypes(request: GrpcInputClientTypes): Promise<GrpcDtoClientTypes> | Observable<GrpcDtoClientTypes> | GrpcDtoClientTypes;
337
+ clientType(request: GrpcInputClientType): Promise<GrpcDtoClientType> | Observable<GrpcDtoClientType> | GrpcDtoClientType;
250
338
  /** --- Features --- */
251
339
  featuresSeed(request: GrpcInputFeaturesSeed): Promise<GrpcDtoFeaturesSeed> | Observable<GrpcDtoFeaturesSeed> | GrpcDtoFeaturesSeed;
252
340
  features(request: GrpcInputFeatures): Promise<GrpcDtoFeatures> | Observable<GrpcDtoFeatures> | GrpcDtoFeatures;
@@ -254,11 +342,48 @@ export interface SystemServiceController {
254
342
  featurePermissions(request: GrpcInputFeaturePermissions): Promise<GrpcDtoFeaturePermissions> | Observable<GrpcDtoFeaturePermissions> | GrpcDtoFeaturePermissions;
255
343
  featurePermissionsAdd(request: GrpcInputFeaturePermissionsAdd): Promise<GrpcDtoPermissionsAdd> | Observable<GrpcDtoPermissionsAdd> | GrpcDtoPermissionsAdd;
256
344
  featurePermissionsRemove(request: GrpcInputFeaturePermissionsRemove): Promise<GrpcDtoMessage> | Observable<GrpcDtoMessage> | GrpcDtoMessage;
345
+ /** --- Clients --- */
346
+ clientCreate(request: GrpcInputClientCreate): Promise<GrpcDtoClient> | Observable<GrpcDtoClient> | GrpcDtoClient;
347
+ clientUpdate(request: GrpcInputClientUpdate): Promise<GrpcDtoClient> | Observable<GrpcDtoClient> | GrpcDtoClient;
348
+ clients(request: GrpcInputClients): Promise<GrpcDtoClients> | Observable<GrpcDtoClients> | GrpcDtoClients;
349
+ client(request: GrpcInputClient): Promise<GrpcDtoClient> | Observable<GrpcDtoClient> | GrpcDtoClient;
350
+ clientFeaturesAdd(request: GrpcInputClientFeaturesAdd): Promise<GrpcDtoFeaturesAdd> | Observable<GrpcDtoFeaturesAdd> | GrpcDtoFeaturesAdd;
351
+ clientFeaturesRemove(request: GrpcInputClientFeaturesRemove): Promise<GrpcDtoMessage> | Observable<GrpcDtoMessage> | GrpcDtoMessage;
352
+ clientFeatures(request: GrpcInputClientFeatures): Promise<GrpcDtoClientFeatures> | Observable<GrpcDtoClientFeatures> | GrpcDtoClientFeatures;
353
+ clientToDelete(request: GrpcInputClientFeatures): Promise<GrpcDtoClientFeatures> | Observable<GrpcDtoClientFeatures> | GrpcDtoClientFeatures;
257
354
  }
258
355
  export declare function SystemServiceControllerMethods(): (constructor: Function) => void;
259
356
  export declare const SYSTEM_SERVICE_NAME = "SystemService";
260
357
  export type SystemServiceService = typeof SystemServiceService;
261
358
  export declare const SystemServiceService: {
359
+ /** --- Client Types --- */
360
+ readonly clientTypesSeed: {
361
+ readonly path: "/aegis.system.v1.SystemService/ClientTypesSeed";
362
+ readonly requestStream: false;
363
+ readonly responseStream: false;
364
+ readonly requestSerialize: (value: GrpcInputClientTypesSeed) => Buffer<ArrayBuffer>;
365
+ readonly requestDeserialize: (value: Buffer) => GrpcInputClientTypesSeed;
366
+ readonly responseSerialize: (value: GrpcDtoClientTypesSeed) => Buffer<ArrayBuffer>;
367
+ readonly responseDeserialize: (value: Buffer) => GrpcDtoClientTypesSeed;
368
+ };
369
+ readonly clientTypes: {
370
+ readonly path: "/aegis.system.v1.SystemService/ClientTypes";
371
+ readonly requestStream: false;
372
+ readonly responseStream: false;
373
+ readonly requestSerialize: (value: GrpcInputClientTypes) => Buffer<ArrayBuffer>;
374
+ readonly requestDeserialize: (value: Buffer) => GrpcInputClientTypes;
375
+ readonly responseSerialize: (value: GrpcDtoClientTypes) => Buffer<ArrayBuffer>;
376
+ readonly responseDeserialize: (value: Buffer) => GrpcDtoClientTypes;
377
+ };
378
+ readonly clientType: {
379
+ readonly path: "/aegis.system.v1.SystemService/ClientType";
380
+ readonly requestStream: false;
381
+ readonly responseStream: false;
382
+ readonly requestSerialize: (value: GrpcInputClientType) => Buffer<ArrayBuffer>;
383
+ readonly requestDeserialize: (value: Buffer) => GrpcInputClientType;
384
+ readonly responseSerialize: (value: GrpcDtoClientType) => Buffer<ArrayBuffer>;
385
+ readonly responseDeserialize: (value: Buffer) => GrpcDtoClientType;
386
+ };
262
387
  /** --- Features --- */
263
388
  readonly featuresSeed: {
264
389
  readonly path: "/aegis.system.v1.SystemService/FeaturesSeed";
@@ -314,88 +439,100 @@ export declare const SystemServiceService: {
314
439
  readonly responseSerialize: (value: GrpcDtoMessage) => Buffer<ArrayBuffer>;
315
440
  readonly responseDeserialize: (value: Buffer) => GrpcDtoMessage;
316
441
  };
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";
442
+ /** --- Clients --- */
443
+ readonly clientCreate: {
444
+ readonly path: "/aegis.system.v1.SystemService/ClientCreate";
445
+ readonly requestStream: false;
446
+ readonly responseStream: false;
447
+ readonly requestSerialize: (value: GrpcInputClientCreate) => Buffer<ArrayBuffer>;
448
+ readonly requestDeserialize: (value: Buffer) => GrpcInputClientCreate;
449
+ readonly responseSerialize: (value: GrpcDtoClient) => Buffer<ArrayBuffer>;
450
+ readonly responseDeserialize: (value: Buffer) => GrpcDtoClient;
451
+ };
452
+ readonly clientUpdate: {
453
+ readonly path: "/aegis.system.v1.SystemService/ClientUpdate";
454
+ readonly requestStream: false;
455
+ readonly responseStream: false;
456
+ readonly requestSerialize: (value: GrpcInputClientUpdate) => Buffer<ArrayBuffer>;
457
+ readonly requestDeserialize: (value: Buffer) => GrpcInputClientUpdate;
458
+ readonly responseSerialize: (value: GrpcDtoClient) => Buffer<ArrayBuffer>;
459
+ readonly responseDeserialize: (value: Buffer) => GrpcDtoClient;
460
+ };
461
+ readonly clients: {
462
+ readonly path: "/aegis.system.v1.SystemService/Clients";
463
+ readonly requestStream: false;
464
+ readonly responseStream: false;
465
+ readonly requestSerialize: (value: GrpcInputClients) => Buffer<ArrayBuffer>;
466
+ readonly requestDeserialize: (value: Buffer) => GrpcInputClients;
467
+ readonly responseSerialize: (value: GrpcDtoClients) => Buffer<ArrayBuffer>;
468
+ readonly responseDeserialize: (value: Buffer) => GrpcDtoClients;
469
+ };
470
+ readonly client: {
471
+ readonly path: "/aegis.system.v1.SystemService/Client";
472
+ readonly requestStream: false;
473
+ readonly responseStream: false;
474
+ readonly requestSerialize: (value: GrpcInputClient) => Buffer<ArrayBuffer>;
475
+ readonly requestDeserialize: (value: Buffer) => GrpcInputClient;
476
+ readonly responseSerialize: (value: GrpcDtoClient) => Buffer<ArrayBuffer>;
477
+ readonly responseDeserialize: (value: Buffer) => GrpcDtoClient;
478
+ };
479
+ readonly clientFeaturesAdd: {
480
+ readonly path: "/aegis.system.v1.SystemService/ClientFeaturesAdd";
359
481
  readonly requestStream: false;
360
482
  readonly responseStream: false;
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;
483
+ readonly requestSerialize: (value: GrpcInputClientFeaturesAdd) => Buffer<ArrayBuffer>;
484
+ readonly requestDeserialize: (value: Buffer) => GrpcInputClientFeaturesAdd;
485
+ readonly responseSerialize: (value: GrpcDtoFeaturesAdd) => Buffer<ArrayBuffer>;
486
+ readonly responseDeserialize: (value: Buffer) => GrpcDtoFeaturesAdd;
365
487
  };
366
- /** Batch fetch by public_id (used by live Redis event consumers). */
367
- readonly geoDivisionsGetByPublicIds: {
368
- readonly path: "/aegis.system.v1.GeoService/GeoDivisionsGetByPublicIds";
488
+ readonly clientFeaturesRemove: {
489
+ readonly path: "/aegis.system.v1.SystemService/ClientFeaturesRemove";
369
490
  readonly requestStream: false;
370
491
  readonly responseStream: false;
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;
492
+ readonly requestSerialize: (value: GrpcInputClientFeaturesRemove) => Buffer<ArrayBuffer>;
493
+ readonly requestDeserialize: (value: Buffer) => GrpcInputClientFeaturesRemove;
494
+ readonly responseSerialize: (value: GrpcDtoMessage) => Buffer<ArrayBuffer>;
495
+ readonly responseDeserialize: (value: Buffer) => GrpcDtoMessage;
375
496
  };
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
+ readonly clientFeatures: {
498
+ readonly path: "/aegis.system.v1.SystemService/ClientFeatures";
382
499
  readonly requestStream: false;
383
500
  readonly responseStream: false;
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;
501
+ readonly requestSerialize: (value: GrpcInputClientFeatures) => Buffer<ArrayBuffer>;
502
+ readonly requestDeserialize: (value: Buffer) => GrpcInputClientFeatures;
503
+ readonly responseSerialize: (value: GrpcDtoClientFeatures) => Buffer<ArrayBuffer>;
504
+ readonly responseDeserialize: (value: Buffer) => GrpcDtoClientFeatures;
505
+ };
506
+ readonly clientToDelete: {
507
+ readonly path: "/aegis.system.v1.SystemService/Client_TO_DELETE";
508
+ readonly requestStream: false;
509
+ readonly responseStream: false;
510
+ readonly requestSerialize: (value: GrpcInputClientFeatures) => Buffer<ArrayBuffer>;
511
+ readonly requestDeserialize: (value: Buffer) => GrpcInputClientFeatures;
512
+ readonly responseSerialize: (value: GrpcDtoClientFeatures) => Buffer<ArrayBuffer>;
513
+ readonly responseDeserialize: (value: Buffer) => GrpcDtoClientFeatures;
388
514
  };
389
515
  };
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>;
516
+ export interface SystemServiceServer extends UntypedServiceImplementation {
517
+ /** --- Client Types --- */
518
+ clientTypesSeed: handleUnaryCall<GrpcInputClientTypesSeed, GrpcDtoClientTypesSeed>;
519
+ clientTypes: handleUnaryCall<GrpcInputClientTypes, GrpcDtoClientTypes>;
520
+ clientType: handleUnaryCall<GrpcInputClientType, GrpcDtoClientType>;
521
+ /** --- Features --- */
522
+ featuresSeed: handleUnaryCall<GrpcInputFeaturesSeed, GrpcDtoFeaturesSeed>;
523
+ features: handleUnaryCall<GrpcInputFeatures, GrpcDtoFeatures>;
524
+ feature: handleUnaryCall<GrpcInputFeature, GrpcDtoFeature>;
525
+ featurePermissions: handleUnaryCall<GrpcInputFeaturePermissions, GrpcDtoFeaturePermissions>;
526
+ featurePermissionsAdd: handleUnaryCall<GrpcInputFeaturePermissionsAdd, GrpcDtoPermissionsAdd>;
527
+ featurePermissionsRemove: handleUnaryCall<GrpcInputFeaturePermissionsRemove, GrpcDtoMessage>;
528
+ /** --- Clients --- */
529
+ clientCreate: handleUnaryCall<GrpcInputClientCreate, GrpcDtoClient>;
530
+ clientUpdate: handleUnaryCall<GrpcInputClientUpdate, GrpcDtoClient>;
531
+ clients: handleUnaryCall<GrpcInputClients, GrpcDtoClients>;
532
+ client: handleUnaryCall<GrpcInputClient, GrpcDtoClient>;
533
+ clientFeaturesAdd: handleUnaryCall<GrpcInputClientFeaturesAdd, GrpcDtoFeaturesAdd>;
534
+ clientFeaturesRemove: handleUnaryCall<GrpcInputClientFeaturesRemove, GrpcDtoMessage>;
535
+ clientFeatures: handleUnaryCall<GrpcInputClientFeatures, GrpcDtoClientFeatures>;
536
+ clientToDelete: handleUnaryCall<GrpcInputClientFeatures, GrpcDtoClientFeatures>;
400
537
  }
401
538
  //# 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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"}