@acequants/aegis-contracts 0.1.55 → 0.1.57
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.
- package/dist/src/gen/system/v1/system.d.ts +622 -153
- package/dist/src/gen/system/v1/system.d.ts.map +1 -1
- package/dist/src/gen/system/v1/system.js +2195 -295
- package/package.json +35 -35
- package/proto/system/v1/system.proto +257 -98
|
@@ -3,6 +3,162 @@ import _m0 from "protobufjs/minimal";
|
|
|
3
3
|
import { Observable } from "rxjs";
|
|
4
4
|
import { Timestamp } from "../../google/protobuf/timestamp";
|
|
5
5
|
export declare const protobufPackage = "aegis.system.v1";
|
|
6
|
+
export interface GrpcInputGeoSync {
|
|
7
|
+
/**
|
|
8
|
+
* Opaque cursor — for delta tables this is an ISO8601 string of
|
|
9
|
+
* the last seen `updated_at`; for bridge tables it is the last
|
|
10
|
+
* seen integer `id` rendered as decimal. Empty string = from start.
|
|
11
|
+
*/
|
|
12
|
+
cursor: string;
|
|
13
|
+
/** Server clamps to [100, 2000]; 0 / unset → 500. */
|
|
14
|
+
pageSize: number;
|
|
15
|
+
}
|
|
16
|
+
export interface GrpcDtoGeoTimezone {
|
|
17
|
+
publicId: string;
|
|
18
|
+
iana: string;
|
|
19
|
+
updatedAt?: Timestamp | undefined;
|
|
20
|
+
/** nullable */
|
|
21
|
+
deletedAt?: Timestamp | undefined;
|
|
22
|
+
}
|
|
23
|
+
export interface GrpcDtoGeoCurrency {
|
|
24
|
+
publicId: string;
|
|
25
|
+
code: string;
|
|
26
|
+
name: string;
|
|
27
|
+
/** nullable, empty = unset */
|
|
28
|
+
symbol: string;
|
|
29
|
+
isBase: boolean;
|
|
30
|
+
isActive: boolean;
|
|
31
|
+
/** Decimal serialised as string */
|
|
32
|
+
exchangeRate: string;
|
|
33
|
+
updatedAt?: Timestamp | undefined;
|
|
34
|
+
/** nullable */
|
|
35
|
+
deletedAt?: Timestamp | undefined;
|
|
36
|
+
}
|
|
37
|
+
export interface GrpcDtoGeoLanguage {
|
|
38
|
+
publicId: string;
|
|
39
|
+
/** LANGUAGE enum as string */
|
|
40
|
+
iso6391: string;
|
|
41
|
+
/** nullable */
|
|
42
|
+
iso6392: string;
|
|
43
|
+
name: string;
|
|
44
|
+
isActive: boolean;
|
|
45
|
+
updatedAt?: Timestamp | undefined;
|
|
46
|
+
/** nullable */
|
|
47
|
+
deletedAt?: Timestamp | undefined;
|
|
48
|
+
}
|
|
49
|
+
export interface GrpcDtoGeoLocale {
|
|
50
|
+
publicId: string;
|
|
51
|
+
languagePublicId: string;
|
|
52
|
+
code: string;
|
|
53
|
+
name: string;
|
|
54
|
+
/** GeoLocale has no deletedAt in aegis schema. */
|
|
55
|
+
updatedAt?: Timestamp | undefined;
|
|
56
|
+
}
|
|
57
|
+
export interface GrpcDtoGeoDivision {
|
|
58
|
+
publicId: string;
|
|
59
|
+
/** nullable */
|
|
60
|
+
timezonePublicId: string;
|
|
61
|
+
/** nullable */
|
|
62
|
+
currencyPublicId: string;
|
|
63
|
+
/** nullable */
|
|
64
|
+
parentPublicId: string;
|
|
65
|
+
/** GEO_DIVISION enum as string */
|
|
66
|
+
type: string;
|
|
67
|
+
level: number;
|
|
68
|
+
/** nullable */
|
|
69
|
+
code: string;
|
|
70
|
+
path: string;
|
|
71
|
+
/** nullable */
|
|
72
|
+
iso2: string;
|
|
73
|
+
/** nullable */
|
|
74
|
+
iso3: string;
|
|
75
|
+
name: string;
|
|
76
|
+
/** nullable */
|
|
77
|
+
phoneCode: string;
|
|
78
|
+
isCapital: boolean;
|
|
79
|
+
isActive: boolean;
|
|
80
|
+
/** nullable -> 0 when unset */
|
|
81
|
+
lat: number;
|
|
82
|
+
/** nullable -> 0 when unset */
|
|
83
|
+
lng: number;
|
|
84
|
+
hasLat: boolean;
|
|
85
|
+
hasLng: boolean;
|
|
86
|
+
/** JSON.stringify(geoJson) or empty */
|
|
87
|
+
geoJson: string;
|
|
88
|
+
updatedAt?: Timestamp | undefined;
|
|
89
|
+
/** nullable */
|
|
90
|
+
deletedAt?: Timestamp | undefined;
|
|
91
|
+
}
|
|
92
|
+
export interface GrpcDtoGeoCountryMeta {
|
|
93
|
+
publicId: string;
|
|
94
|
+
divisionPublicId: string;
|
|
95
|
+
/** GeoCountryMeta has no deletedAt in aegis schema. */
|
|
96
|
+
updatedAt?: Timestamp | undefined;
|
|
97
|
+
}
|
|
98
|
+
export interface GrpcDtoGeoCountryTimezone {
|
|
99
|
+
publicId: string;
|
|
100
|
+
countryMetaPublicId: string;
|
|
101
|
+
timezonePublicId: string;
|
|
102
|
+
isPrimary: boolean;
|
|
103
|
+
}
|
|
104
|
+
export interface GrpcDtoGeoCountryCurrency {
|
|
105
|
+
publicId: string;
|
|
106
|
+
countryMetaPublicId: string;
|
|
107
|
+
currencyPublicId: string;
|
|
108
|
+
isPrimary: boolean;
|
|
109
|
+
}
|
|
110
|
+
export interface GrpcDtoGeoCountryLanguage {
|
|
111
|
+
publicId: string;
|
|
112
|
+
countryMetaPublicId: string;
|
|
113
|
+
languagePublicId: string;
|
|
114
|
+
isOfficial: boolean;
|
|
115
|
+
isNational: boolean;
|
|
116
|
+
}
|
|
117
|
+
export interface GrpcDtoGeoTimezonesSync {
|
|
118
|
+
items: GrpcDtoGeoTimezone[];
|
|
119
|
+
nextCursor: string;
|
|
120
|
+
hasMore: boolean;
|
|
121
|
+
}
|
|
122
|
+
export interface GrpcDtoGeoCurrenciesSync {
|
|
123
|
+
items: GrpcDtoGeoCurrency[];
|
|
124
|
+
nextCursor: string;
|
|
125
|
+
hasMore: boolean;
|
|
126
|
+
}
|
|
127
|
+
export interface GrpcDtoGeoLanguagesSync {
|
|
128
|
+
items: GrpcDtoGeoLanguage[];
|
|
129
|
+
nextCursor: string;
|
|
130
|
+
hasMore: boolean;
|
|
131
|
+
}
|
|
132
|
+
export interface GrpcDtoGeoLocalesSync {
|
|
133
|
+
items: GrpcDtoGeoLocale[];
|
|
134
|
+
nextCursor: string;
|
|
135
|
+
hasMore: boolean;
|
|
136
|
+
}
|
|
137
|
+
export interface GrpcDtoGeoDivisionsSync {
|
|
138
|
+
items: GrpcDtoGeoDivision[];
|
|
139
|
+
nextCursor: string;
|
|
140
|
+
hasMore: boolean;
|
|
141
|
+
}
|
|
142
|
+
export interface GrpcDtoGeoCountryMetasSync {
|
|
143
|
+
items: GrpcDtoGeoCountryMeta[];
|
|
144
|
+
nextCursor: string;
|
|
145
|
+
hasMore: boolean;
|
|
146
|
+
}
|
|
147
|
+
export interface GrpcDtoGeoCountryTimezonesSync {
|
|
148
|
+
items: GrpcDtoGeoCountryTimezone[];
|
|
149
|
+
nextCursor: string;
|
|
150
|
+
hasMore: boolean;
|
|
151
|
+
}
|
|
152
|
+
export interface GrpcDtoGeoCountryCurrenciesSync {
|
|
153
|
+
items: GrpcDtoGeoCountryCurrency[];
|
|
154
|
+
nextCursor: string;
|
|
155
|
+
hasMore: boolean;
|
|
156
|
+
}
|
|
157
|
+
export interface GrpcDtoGeoCountryLanguagesSync {
|
|
158
|
+
items: GrpcDtoGeoCountryLanguage[];
|
|
159
|
+
nextCursor: string;
|
|
160
|
+
hasMore: boolean;
|
|
161
|
+
}
|
|
6
162
|
export interface GrpcDtoPagination {
|
|
7
163
|
totalItems: number;
|
|
8
164
|
totalPages: number;
|
|
@@ -23,6 +179,37 @@ export interface GrpcDtoPermission {
|
|
|
23
179
|
export interface GrpcDtoPermissionsAdd {
|
|
24
180
|
permissions: GrpcDtoPermission[];
|
|
25
181
|
}
|
|
182
|
+
/** ---- CLIENT TYPE ---- */
|
|
183
|
+
export interface GrpcInputClientTypeSeed {
|
|
184
|
+
name: string;
|
|
185
|
+
}
|
|
186
|
+
export interface GrpcInputClientTypesSeed {
|
|
187
|
+
clientTypes: GrpcInputClientTypeSeed[];
|
|
188
|
+
}
|
|
189
|
+
export interface GrpcInputClientType {
|
|
190
|
+
publicId: string;
|
|
191
|
+
}
|
|
192
|
+
export interface GrpcInputClientTypes {
|
|
193
|
+
search?: string | undefined;
|
|
194
|
+
page?: number | undefined;
|
|
195
|
+
pageSize?: number | undefined;
|
|
196
|
+
sortBy?: string | undefined;
|
|
197
|
+
sortOrder?: string | undefined;
|
|
198
|
+
}
|
|
199
|
+
export interface GrpcDtoClientType {
|
|
200
|
+
publicId: string;
|
|
201
|
+
name: string;
|
|
202
|
+
createdAt?: Timestamp | undefined;
|
|
203
|
+
updatedAt?: Timestamp | undefined;
|
|
204
|
+
deletedAt?: Timestamp | undefined;
|
|
205
|
+
}
|
|
206
|
+
export interface GrpcDtoClientTypesSeed {
|
|
207
|
+
clientTypes: GrpcDtoClientType[];
|
|
208
|
+
}
|
|
209
|
+
export interface GrpcDtoClientTypes {
|
|
210
|
+
items: GrpcDtoClientType[];
|
|
211
|
+
meta?: GrpcDtoPagination | undefined;
|
|
212
|
+
}
|
|
26
213
|
/** ---- FEATURES ---- */
|
|
27
214
|
export interface GrpcInputFeatureSeed {
|
|
28
215
|
name: string;
|
|
@@ -76,79 +263,143 @@ export interface GrpcDtoFeaturePermission {
|
|
|
76
263
|
export interface GrpcDtoFeaturePermissions {
|
|
77
264
|
featurePermissions: GrpcDtoFeaturePermission[];
|
|
78
265
|
}
|
|
79
|
-
/** ----
|
|
80
|
-
export interface
|
|
266
|
+
/** ---- CLIENT ---- */
|
|
267
|
+
export interface GrpcInputClientCreate {
|
|
268
|
+
clientTypePublicId: string;
|
|
269
|
+
name: string;
|
|
270
|
+
managerPublicId?: string | undefined;
|
|
271
|
+
description?: string | undefined;
|
|
272
|
+
}
|
|
273
|
+
export interface GrpcInputClientUpdate {
|
|
274
|
+
publicId: string;
|
|
275
|
+
name?: string | undefined;
|
|
276
|
+
description?: string | undefined;
|
|
277
|
+
clientTypePublicId?: string | undefined;
|
|
278
|
+
managerPublicId?: string | undefined;
|
|
279
|
+
}
|
|
280
|
+
export interface GrpcInputClientFeaturesAdd {
|
|
281
|
+
publicId: string;
|
|
282
|
+
featureIds: string[];
|
|
283
|
+
}
|
|
284
|
+
export interface GrpcInputClientFeaturesRemove {
|
|
285
|
+
publicClientFeatureIds: string[];
|
|
286
|
+
}
|
|
287
|
+
export interface GrpcInputClient {
|
|
288
|
+
publicId: string;
|
|
289
|
+
}
|
|
290
|
+
export interface GrpcInputClientFeatures {
|
|
291
|
+
clientPublicId: string;
|
|
292
|
+
}
|
|
293
|
+
export interface GrpcInputClients {
|
|
294
|
+
clientTypePublicId?: string | undefined;
|
|
295
|
+
managerPublicId?: string | undefined;
|
|
296
|
+
search?: string | undefined;
|
|
297
|
+
page?: number | undefined;
|
|
298
|
+
pageSize?: number | undefined;
|
|
299
|
+
sortBy?: string | undefined;
|
|
300
|
+
sortOrder?: string | undefined;
|
|
301
|
+
}
|
|
302
|
+
export interface GrpcDtoClient {
|
|
81
303
|
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
304
|
name: string;
|
|
95
|
-
|
|
96
|
-
|
|
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;
|
|
305
|
+
description?: string | undefined;
|
|
306
|
+
clientType?: GrpcDtoClientType | undefined;
|
|
120
307
|
createdAt?: Timestamp | undefined;
|
|
121
308
|
updatedAt?: Timestamp | undefined;
|
|
122
309
|
deletedAt?: Timestamp | undefined;
|
|
123
310
|
}
|
|
124
|
-
export interface
|
|
125
|
-
items:
|
|
126
|
-
|
|
127
|
-
nextCursor: string;
|
|
128
|
-
}
|
|
129
|
-
export interface GrpcDtoGeoDivisions {
|
|
130
|
-
items: GrpcDtoGeoDivision[];
|
|
311
|
+
export interface GrpcDtoClients {
|
|
312
|
+
items: GrpcDtoClient[];
|
|
313
|
+
meta?: GrpcDtoPagination | undefined;
|
|
131
314
|
}
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
/** Empty string means "from the beginning". */
|
|
135
|
-
cursor: string;
|
|
136
|
-
/** 0 means "use server default". Server clamps to its max. */
|
|
137
|
-
limit: number;
|
|
315
|
+
export interface GrpcDtoFeaturesAdd {
|
|
316
|
+
features: GrpcDtoFeature[];
|
|
138
317
|
}
|
|
139
|
-
export interface
|
|
140
|
-
|
|
318
|
+
export interface GrpcDtoClientFeature {
|
|
319
|
+
publicId: string;
|
|
320
|
+
feature?: GrpcDtoFeature | undefined;
|
|
321
|
+
client?: GrpcDtoClient | undefined;
|
|
141
322
|
}
|
|
142
|
-
export interface
|
|
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;
|
|
323
|
+
export interface GrpcDtoClientFeatures {
|
|
324
|
+
clientFeatures: GrpcDtoClientFeature[];
|
|
150
325
|
}
|
|
151
326
|
export declare const AEGIS_SYSTEM_V1_PACKAGE_NAME = "aegis.system.v1";
|
|
327
|
+
export declare const GrpcInputGeoSync: {
|
|
328
|
+
encode(message: GrpcInputGeoSync, writer?: _m0.Writer): _m0.Writer;
|
|
329
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): GrpcInputGeoSync;
|
|
330
|
+
};
|
|
331
|
+
export declare const GrpcDtoGeoTimezone: {
|
|
332
|
+
encode(message: GrpcDtoGeoTimezone, writer?: _m0.Writer): _m0.Writer;
|
|
333
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): GrpcDtoGeoTimezone;
|
|
334
|
+
};
|
|
335
|
+
export declare const GrpcDtoGeoCurrency: {
|
|
336
|
+
encode(message: GrpcDtoGeoCurrency, writer?: _m0.Writer): _m0.Writer;
|
|
337
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): GrpcDtoGeoCurrency;
|
|
338
|
+
};
|
|
339
|
+
export declare const GrpcDtoGeoLanguage: {
|
|
340
|
+
encode(message: GrpcDtoGeoLanguage, writer?: _m0.Writer): _m0.Writer;
|
|
341
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): GrpcDtoGeoLanguage;
|
|
342
|
+
};
|
|
343
|
+
export declare const GrpcDtoGeoLocale: {
|
|
344
|
+
encode(message: GrpcDtoGeoLocale, writer?: _m0.Writer): _m0.Writer;
|
|
345
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): GrpcDtoGeoLocale;
|
|
346
|
+
};
|
|
347
|
+
export declare const GrpcDtoGeoDivision: {
|
|
348
|
+
encode(message: GrpcDtoGeoDivision, writer?: _m0.Writer): _m0.Writer;
|
|
349
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): GrpcDtoGeoDivision;
|
|
350
|
+
};
|
|
351
|
+
export declare const GrpcDtoGeoCountryMeta: {
|
|
352
|
+
encode(message: GrpcDtoGeoCountryMeta, writer?: _m0.Writer): _m0.Writer;
|
|
353
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): GrpcDtoGeoCountryMeta;
|
|
354
|
+
};
|
|
355
|
+
export declare const GrpcDtoGeoCountryTimezone: {
|
|
356
|
+
encode(message: GrpcDtoGeoCountryTimezone, writer?: _m0.Writer): _m0.Writer;
|
|
357
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): GrpcDtoGeoCountryTimezone;
|
|
358
|
+
};
|
|
359
|
+
export declare const GrpcDtoGeoCountryCurrency: {
|
|
360
|
+
encode(message: GrpcDtoGeoCountryCurrency, writer?: _m0.Writer): _m0.Writer;
|
|
361
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): GrpcDtoGeoCountryCurrency;
|
|
362
|
+
};
|
|
363
|
+
export declare const GrpcDtoGeoCountryLanguage: {
|
|
364
|
+
encode(message: GrpcDtoGeoCountryLanguage, writer?: _m0.Writer): _m0.Writer;
|
|
365
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): GrpcDtoGeoCountryLanguage;
|
|
366
|
+
};
|
|
367
|
+
export declare const GrpcDtoGeoTimezonesSync: {
|
|
368
|
+
encode(message: GrpcDtoGeoTimezonesSync, writer?: _m0.Writer): _m0.Writer;
|
|
369
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): GrpcDtoGeoTimezonesSync;
|
|
370
|
+
};
|
|
371
|
+
export declare const GrpcDtoGeoCurrenciesSync: {
|
|
372
|
+
encode(message: GrpcDtoGeoCurrenciesSync, writer?: _m0.Writer): _m0.Writer;
|
|
373
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): GrpcDtoGeoCurrenciesSync;
|
|
374
|
+
};
|
|
375
|
+
export declare const GrpcDtoGeoLanguagesSync: {
|
|
376
|
+
encode(message: GrpcDtoGeoLanguagesSync, writer?: _m0.Writer): _m0.Writer;
|
|
377
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): GrpcDtoGeoLanguagesSync;
|
|
378
|
+
};
|
|
379
|
+
export declare const GrpcDtoGeoLocalesSync: {
|
|
380
|
+
encode(message: GrpcDtoGeoLocalesSync, writer?: _m0.Writer): _m0.Writer;
|
|
381
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): GrpcDtoGeoLocalesSync;
|
|
382
|
+
};
|
|
383
|
+
export declare const GrpcDtoGeoDivisionsSync: {
|
|
384
|
+
encode(message: GrpcDtoGeoDivisionsSync, writer?: _m0.Writer): _m0.Writer;
|
|
385
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): GrpcDtoGeoDivisionsSync;
|
|
386
|
+
};
|
|
387
|
+
export declare const GrpcDtoGeoCountryMetasSync: {
|
|
388
|
+
encode(message: GrpcDtoGeoCountryMetasSync, writer?: _m0.Writer): _m0.Writer;
|
|
389
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): GrpcDtoGeoCountryMetasSync;
|
|
390
|
+
};
|
|
391
|
+
export declare const GrpcDtoGeoCountryTimezonesSync: {
|
|
392
|
+
encode(message: GrpcDtoGeoCountryTimezonesSync, writer?: _m0.Writer): _m0.Writer;
|
|
393
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): GrpcDtoGeoCountryTimezonesSync;
|
|
394
|
+
};
|
|
395
|
+
export declare const GrpcDtoGeoCountryCurrenciesSync: {
|
|
396
|
+
encode(message: GrpcDtoGeoCountryCurrenciesSync, writer?: _m0.Writer): _m0.Writer;
|
|
397
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): GrpcDtoGeoCountryCurrenciesSync;
|
|
398
|
+
};
|
|
399
|
+
export declare const GrpcDtoGeoCountryLanguagesSync: {
|
|
400
|
+
encode(message: GrpcDtoGeoCountryLanguagesSync, writer?: _m0.Writer): _m0.Writer;
|
|
401
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): GrpcDtoGeoCountryLanguagesSync;
|
|
402
|
+
};
|
|
152
403
|
export declare const GrpcDtoPagination: {
|
|
153
404
|
encode(message: GrpcDtoPagination, writer?: _m0.Writer): _m0.Writer;
|
|
154
405
|
decode(input: _m0.Reader | Uint8Array, length?: number): GrpcDtoPagination;
|
|
@@ -165,6 +416,34 @@ export declare const GrpcDtoPermissionsAdd: {
|
|
|
165
416
|
encode(message: GrpcDtoPermissionsAdd, writer?: _m0.Writer): _m0.Writer;
|
|
166
417
|
decode(input: _m0.Reader | Uint8Array, length?: number): GrpcDtoPermissionsAdd;
|
|
167
418
|
};
|
|
419
|
+
export declare const GrpcInputClientTypeSeed: {
|
|
420
|
+
encode(message: GrpcInputClientTypeSeed, writer?: _m0.Writer): _m0.Writer;
|
|
421
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): GrpcInputClientTypeSeed;
|
|
422
|
+
};
|
|
423
|
+
export declare const GrpcInputClientTypesSeed: {
|
|
424
|
+
encode(message: GrpcInputClientTypesSeed, writer?: _m0.Writer): _m0.Writer;
|
|
425
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): GrpcInputClientTypesSeed;
|
|
426
|
+
};
|
|
427
|
+
export declare const GrpcInputClientType: {
|
|
428
|
+
encode(message: GrpcInputClientType, writer?: _m0.Writer): _m0.Writer;
|
|
429
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): GrpcInputClientType;
|
|
430
|
+
};
|
|
431
|
+
export declare const GrpcInputClientTypes: {
|
|
432
|
+
encode(message: GrpcInputClientTypes, writer?: _m0.Writer): _m0.Writer;
|
|
433
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): GrpcInputClientTypes;
|
|
434
|
+
};
|
|
435
|
+
export declare const GrpcDtoClientType: {
|
|
436
|
+
encode(message: GrpcDtoClientType, writer?: _m0.Writer): _m0.Writer;
|
|
437
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): GrpcDtoClientType;
|
|
438
|
+
};
|
|
439
|
+
export declare const GrpcDtoClientTypesSeed: {
|
|
440
|
+
encode(message: GrpcDtoClientTypesSeed, writer?: _m0.Writer): _m0.Writer;
|
|
441
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): GrpcDtoClientTypesSeed;
|
|
442
|
+
};
|
|
443
|
+
export declare const GrpcDtoClientTypes: {
|
|
444
|
+
encode(message: GrpcDtoClientTypes, writer?: _m0.Writer): _m0.Writer;
|
|
445
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): GrpcDtoClientTypes;
|
|
446
|
+
};
|
|
168
447
|
export declare const GrpcInputFeatureSeed: {
|
|
169
448
|
encode(message: GrpcInputFeatureSeed, writer?: _m0.Writer): _m0.Writer;
|
|
170
449
|
decode(input: _m0.Reader | Uint8Array, length?: number): GrpcInputFeatureSeed;
|
|
@@ -213,31 +492,59 @@ export declare const GrpcDtoFeaturePermissions: {
|
|
|
213
492
|
encode(message: GrpcDtoFeaturePermissions, writer?: _m0.Writer): _m0.Writer;
|
|
214
493
|
decode(input: _m0.Reader | Uint8Array, length?: number): GrpcDtoFeaturePermissions;
|
|
215
494
|
};
|
|
216
|
-
export declare const
|
|
217
|
-
encode(message:
|
|
218
|
-
decode(input: _m0.Reader | Uint8Array, length?: number):
|
|
495
|
+
export declare const GrpcInputClientCreate: {
|
|
496
|
+
encode(message: GrpcInputClientCreate, writer?: _m0.Writer): _m0.Writer;
|
|
497
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): GrpcInputClientCreate;
|
|
498
|
+
};
|
|
499
|
+
export declare const GrpcInputClientUpdate: {
|
|
500
|
+
encode(message: GrpcInputClientUpdate, writer?: _m0.Writer): _m0.Writer;
|
|
501
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): GrpcInputClientUpdate;
|
|
219
502
|
};
|
|
220
|
-
export declare const
|
|
221
|
-
encode(message:
|
|
222
|
-
decode(input: _m0.Reader | Uint8Array, length?: number):
|
|
503
|
+
export declare const GrpcInputClientFeaturesAdd: {
|
|
504
|
+
encode(message: GrpcInputClientFeaturesAdd, writer?: _m0.Writer): _m0.Writer;
|
|
505
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): GrpcInputClientFeaturesAdd;
|
|
223
506
|
};
|
|
224
|
-
export declare const
|
|
225
|
-
encode(message:
|
|
226
|
-
decode(input: _m0.Reader | Uint8Array, length?: number):
|
|
507
|
+
export declare const GrpcInputClientFeaturesRemove: {
|
|
508
|
+
encode(message: GrpcInputClientFeaturesRemove, writer?: _m0.Writer): _m0.Writer;
|
|
509
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): GrpcInputClientFeaturesRemove;
|
|
227
510
|
};
|
|
228
|
-
export declare const
|
|
229
|
-
encode(message:
|
|
230
|
-
decode(input: _m0.Reader | Uint8Array, length?: number):
|
|
511
|
+
export declare const GrpcInputClient: {
|
|
512
|
+
encode(message: GrpcInputClient, writer?: _m0.Writer): _m0.Writer;
|
|
513
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): GrpcInputClient;
|
|
231
514
|
};
|
|
232
|
-
export declare const
|
|
233
|
-
encode(message:
|
|
234
|
-
decode(input: _m0.Reader | Uint8Array, length?: number):
|
|
515
|
+
export declare const GrpcInputClientFeatures: {
|
|
516
|
+
encode(message: GrpcInputClientFeatures, writer?: _m0.Writer): _m0.Writer;
|
|
517
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): GrpcInputClientFeatures;
|
|
235
518
|
};
|
|
236
|
-
export declare const
|
|
237
|
-
encode(message:
|
|
238
|
-
decode(input: _m0.Reader | Uint8Array, length?: number):
|
|
519
|
+
export declare const GrpcInputClients: {
|
|
520
|
+
encode(message: GrpcInputClients, writer?: _m0.Writer): _m0.Writer;
|
|
521
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): GrpcInputClients;
|
|
522
|
+
};
|
|
523
|
+
export declare const GrpcDtoClient: {
|
|
524
|
+
encode(message: GrpcDtoClient, writer?: _m0.Writer): _m0.Writer;
|
|
525
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): GrpcDtoClient;
|
|
526
|
+
};
|
|
527
|
+
export declare const GrpcDtoClients: {
|
|
528
|
+
encode(message: GrpcDtoClients, writer?: _m0.Writer): _m0.Writer;
|
|
529
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): GrpcDtoClients;
|
|
530
|
+
};
|
|
531
|
+
export declare const GrpcDtoFeaturesAdd: {
|
|
532
|
+
encode(message: GrpcDtoFeaturesAdd, writer?: _m0.Writer): _m0.Writer;
|
|
533
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): GrpcDtoFeaturesAdd;
|
|
534
|
+
};
|
|
535
|
+
export declare const GrpcDtoClientFeature: {
|
|
536
|
+
encode(message: GrpcDtoClientFeature, writer?: _m0.Writer): _m0.Writer;
|
|
537
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): GrpcDtoClientFeature;
|
|
538
|
+
};
|
|
539
|
+
export declare const GrpcDtoClientFeatures: {
|
|
540
|
+
encode(message: GrpcDtoClientFeatures, writer?: _m0.Writer): _m0.Writer;
|
|
541
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): GrpcDtoClientFeatures;
|
|
239
542
|
};
|
|
240
543
|
export interface SystemServiceClient {
|
|
544
|
+
/** --- Client Types --- */
|
|
545
|
+
clientTypesSeed(request: GrpcInputClientTypesSeed): Observable<GrpcDtoClientTypesSeed>;
|
|
546
|
+
clientTypes(request: GrpcInputClientTypes): Observable<GrpcDtoClientTypes>;
|
|
547
|
+
clientType(request: GrpcInputClientType): Observable<GrpcDtoClientType>;
|
|
241
548
|
/** --- Features --- */
|
|
242
549
|
featuresSeed(request: GrpcInputFeaturesSeed): Observable<GrpcDtoFeaturesSeed>;
|
|
243
550
|
features(request: GrpcInputFeatures): Observable<GrpcDtoFeatures>;
|
|
@@ -245,8 +552,30 @@ export interface SystemServiceClient {
|
|
|
245
552
|
featurePermissions(request: GrpcInputFeaturePermissions): Observable<GrpcDtoFeaturePermissions>;
|
|
246
553
|
featurePermissionsAdd(request: GrpcInputFeaturePermissionsAdd): Observable<GrpcDtoPermissionsAdd>;
|
|
247
554
|
featurePermissionsRemove(request: GrpcInputFeaturePermissionsRemove): Observable<GrpcDtoMessage>;
|
|
555
|
+
/** --- Clients --- */
|
|
556
|
+
clientCreate(request: GrpcInputClientCreate): Observable<GrpcDtoClient>;
|
|
557
|
+
clientUpdate(request: GrpcInputClientUpdate): Observable<GrpcDtoClient>;
|
|
558
|
+
clients(request: GrpcInputClients): Observable<GrpcDtoClients>;
|
|
559
|
+
client(request: GrpcInputClient): Observable<GrpcDtoClient>;
|
|
560
|
+
clientFeaturesAdd(request: GrpcInputClientFeaturesAdd): Observable<GrpcDtoFeaturesAdd>;
|
|
561
|
+
clientFeaturesRemove(request: GrpcInputClientFeaturesRemove): Observable<GrpcDtoMessage>;
|
|
562
|
+
clientFeatures(request: GrpcInputClientFeatures): Observable<GrpcDtoClientFeatures>;
|
|
563
|
+
/** --- Geo delta sync (hourly pull from gtms mirror) --- */
|
|
564
|
+
geoTimezonesSync(request: GrpcInputGeoSync): Observable<GrpcDtoGeoTimezonesSync>;
|
|
565
|
+
geoCurrenciesSync(request: GrpcInputGeoSync): Observable<GrpcDtoGeoCurrenciesSync>;
|
|
566
|
+
geoLanguagesSync(request: GrpcInputGeoSync): Observable<GrpcDtoGeoLanguagesSync>;
|
|
567
|
+
geoLocalesSync(request: GrpcInputGeoSync): Observable<GrpcDtoGeoLocalesSync>;
|
|
568
|
+
geoDivisionsSync(request: GrpcInputGeoSync): Observable<GrpcDtoGeoDivisionsSync>;
|
|
569
|
+
geoCountryMetasSync(request: GrpcInputGeoSync): Observable<GrpcDtoGeoCountryMetasSync>;
|
|
570
|
+
geoCountryTimezonesSync(request: GrpcInputGeoSync): Observable<GrpcDtoGeoCountryTimezonesSync>;
|
|
571
|
+
geoCountryCurrenciesSync(request: GrpcInputGeoSync): Observable<GrpcDtoGeoCountryCurrenciesSync>;
|
|
572
|
+
geoCountryLanguagesSync(request: GrpcInputGeoSync): Observable<GrpcDtoGeoCountryLanguagesSync>;
|
|
248
573
|
}
|
|
249
574
|
export interface SystemServiceController {
|
|
575
|
+
/** --- Client Types --- */
|
|
576
|
+
clientTypesSeed(request: GrpcInputClientTypesSeed): Promise<GrpcDtoClientTypesSeed> | Observable<GrpcDtoClientTypesSeed> | GrpcDtoClientTypesSeed;
|
|
577
|
+
clientTypes(request: GrpcInputClientTypes): Promise<GrpcDtoClientTypes> | Observable<GrpcDtoClientTypes> | GrpcDtoClientTypes;
|
|
578
|
+
clientType(request: GrpcInputClientType): Promise<GrpcDtoClientType> | Observable<GrpcDtoClientType> | GrpcDtoClientType;
|
|
250
579
|
/** --- Features --- */
|
|
251
580
|
featuresSeed(request: GrpcInputFeaturesSeed): Promise<GrpcDtoFeaturesSeed> | Observable<GrpcDtoFeaturesSeed> | GrpcDtoFeaturesSeed;
|
|
252
581
|
features(request: GrpcInputFeatures): Promise<GrpcDtoFeatures> | Observable<GrpcDtoFeatures> | GrpcDtoFeatures;
|
|
@@ -254,11 +583,57 @@ export interface SystemServiceController {
|
|
|
254
583
|
featurePermissions(request: GrpcInputFeaturePermissions): Promise<GrpcDtoFeaturePermissions> | Observable<GrpcDtoFeaturePermissions> | GrpcDtoFeaturePermissions;
|
|
255
584
|
featurePermissionsAdd(request: GrpcInputFeaturePermissionsAdd): Promise<GrpcDtoPermissionsAdd> | Observable<GrpcDtoPermissionsAdd> | GrpcDtoPermissionsAdd;
|
|
256
585
|
featurePermissionsRemove(request: GrpcInputFeaturePermissionsRemove): Promise<GrpcDtoMessage> | Observable<GrpcDtoMessage> | GrpcDtoMessage;
|
|
586
|
+
/** --- Clients --- */
|
|
587
|
+
clientCreate(request: GrpcInputClientCreate): Promise<GrpcDtoClient> | Observable<GrpcDtoClient> | GrpcDtoClient;
|
|
588
|
+
clientUpdate(request: GrpcInputClientUpdate): Promise<GrpcDtoClient> | Observable<GrpcDtoClient> | GrpcDtoClient;
|
|
589
|
+
clients(request: GrpcInputClients): Promise<GrpcDtoClients> | Observable<GrpcDtoClients> | GrpcDtoClients;
|
|
590
|
+
client(request: GrpcInputClient): Promise<GrpcDtoClient> | Observable<GrpcDtoClient> | GrpcDtoClient;
|
|
591
|
+
clientFeaturesAdd(request: GrpcInputClientFeaturesAdd): Promise<GrpcDtoFeaturesAdd> | Observable<GrpcDtoFeaturesAdd> | GrpcDtoFeaturesAdd;
|
|
592
|
+
clientFeaturesRemove(request: GrpcInputClientFeaturesRemove): Promise<GrpcDtoMessage> | Observable<GrpcDtoMessage> | GrpcDtoMessage;
|
|
593
|
+
clientFeatures(request: GrpcInputClientFeatures): Promise<GrpcDtoClientFeatures> | Observable<GrpcDtoClientFeatures> | GrpcDtoClientFeatures;
|
|
594
|
+
/** --- Geo delta sync (hourly pull from gtms mirror) --- */
|
|
595
|
+
geoTimezonesSync(request: GrpcInputGeoSync): Promise<GrpcDtoGeoTimezonesSync> | Observable<GrpcDtoGeoTimezonesSync> | GrpcDtoGeoTimezonesSync;
|
|
596
|
+
geoCurrenciesSync(request: GrpcInputGeoSync): Promise<GrpcDtoGeoCurrenciesSync> | Observable<GrpcDtoGeoCurrenciesSync> | GrpcDtoGeoCurrenciesSync;
|
|
597
|
+
geoLanguagesSync(request: GrpcInputGeoSync): Promise<GrpcDtoGeoLanguagesSync> | Observable<GrpcDtoGeoLanguagesSync> | GrpcDtoGeoLanguagesSync;
|
|
598
|
+
geoLocalesSync(request: GrpcInputGeoSync): Promise<GrpcDtoGeoLocalesSync> | Observable<GrpcDtoGeoLocalesSync> | GrpcDtoGeoLocalesSync;
|
|
599
|
+
geoDivisionsSync(request: GrpcInputGeoSync): Promise<GrpcDtoGeoDivisionsSync> | Observable<GrpcDtoGeoDivisionsSync> | GrpcDtoGeoDivisionsSync;
|
|
600
|
+
geoCountryMetasSync(request: GrpcInputGeoSync): Promise<GrpcDtoGeoCountryMetasSync> | Observable<GrpcDtoGeoCountryMetasSync> | GrpcDtoGeoCountryMetasSync;
|
|
601
|
+
geoCountryTimezonesSync(request: GrpcInputGeoSync): Promise<GrpcDtoGeoCountryTimezonesSync> | Observable<GrpcDtoGeoCountryTimezonesSync> | GrpcDtoGeoCountryTimezonesSync;
|
|
602
|
+
geoCountryCurrenciesSync(request: GrpcInputGeoSync): Promise<GrpcDtoGeoCountryCurrenciesSync> | Observable<GrpcDtoGeoCountryCurrenciesSync> | GrpcDtoGeoCountryCurrenciesSync;
|
|
603
|
+
geoCountryLanguagesSync(request: GrpcInputGeoSync): Promise<GrpcDtoGeoCountryLanguagesSync> | Observable<GrpcDtoGeoCountryLanguagesSync> | GrpcDtoGeoCountryLanguagesSync;
|
|
257
604
|
}
|
|
258
605
|
export declare function SystemServiceControllerMethods(): (constructor: Function) => void;
|
|
259
606
|
export declare const SYSTEM_SERVICE_NAME = "SystemService";
|
|
260
607
|
export type SystemServiceService = typeof SystemServiceService;
|
|
261
608
|
export declare const SystemServiceService: {
|
|
609
|
+
/** --- Client Types --- */
|
|
610
|
+
readonly clientTypesSeed: {
|
|
611
|
+
readonly path: "/aegis.system.v1.SystemService/ClientTypesSeed";
|
|
612
|
+
readonly requestStream: false;
|
|
613
|
+
readonly responseStream: false;
|
|
614
|
+
readonly requestSerialize: (value: GrpcInputClientTypesSeed) => Buffer<ArrayBuffer>;
|
|
615
|
+
readonly requestDeserialize: (value: Buffer) => GrpcInputClientTypesSeed;
|
|
616
|
+
readonly responseSerialize: (value: GrpcDtoClientTypesSeed) => Buffer<ArrayBuffer>;
|
|
617
|
+
readonly responseDeserialize: (value: Buffer) => GrpcDtoClientTypesSeed;
|
|
618
|
+
};
|
|
619
|
+
readonly clientTypes: {
|
|
620
|
+
readonly path: "/aegis.system.v1.SystemService/ClientTypes";
|
|
621
|
+
readonly requestStream: false;
|
|
622
|
+
readonly responseStream: false;
|
|
623
|
+
readonly requestSerialize: (value: GrpcInputClientTypes) => Buffer<ArrayBuffer>;
|
|
624
|
+
readonly requestDeserialize: (value: Buffer) => GrpcInputClientTypes;
|
|
625
|
+
readonly responseSerialize: (value: GrpcDtoClientTypes) => Buffer<ArrayBuffer>;
|
|
626
|
+
readonly responseDeserialize: (value: Buffer) => GrpcDtoClientTypes;
|
|
627
|
+
};
|
|
628
|
+
readonly clientType: {
|
|
629
|
+
readonly path: "/aegis.system.v1.SystemService/ClientType";
|
|
630
|
+
readonly requestStream: false;
|
|
631
|
+
readonly responseStream: false;
|
|
632
|
+
readonly requestSerialize: (value: GrpcInputClientType) => Buffer<ArrayBuffer>;
|
|
633
|
+
readonly requestDeserialize: (value: Buffer) => GrpcInputClientType;
|
|
634
|
+
readonly responseSerialize: (value: GrpcDtoClientType) => Buffer<ArrayBuffer>;
|
|
635
|
+
readonly responseDeserialize: (value: Buffer) => GrpcDtoClientType;
|
|
636
|
+
};
|
|
262
637
|
/** --- Features --- */
|
|
263
638
|
readonly featuresSeed: {
|
|
264
639
|
readonly path: "/aegis.system.v1.SystemService/FeaturesSeed";
|
|
@@ -314,88 +689,182 @@ export declare const SystemServiceService: {
|
|
|
314
689
|
readonly responseSerialize: (value: GrpcDtoMessage) => Buffer<ArrayBuffer>;
|
|
315
690
|
readonly responseDeserialize: (value: Buffer) => GrpcDtoMessage;
|
|
316
691
|
};
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
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";
|
|
692
|
+
/** --- Clients --- */
|
|
693
|
+
readonly clientCreate: {
|
|
694
|
+
readonly path: "/aegis.system.v1.SystemService/ClientCreate";
|
|
359
695
|
readonly requestStream: false;
|
|
360
696
|
readonly responseStream: false;
|
|
361
|
-
readonly requestSerialize: (value:
|
|
362
|
-
readonly requestDeserialize: (value: Buffer) =>
|
|
363
|
-
readonly responseSerialize: (value:
|
|
364
|
-
readonly responseDeserialize: (value: Buffer) =>
|
|
697
|
+
readonly requestSerialize: (value: GrpcInputClientCreate) => Buffer<ArrayBuffer>;
|
|
698
|
+
readonly requestDeserialize: (value: Buffer) => GrpcInputClientCreate;
|
|
699
|
+
readonly responseSerialize: (value: GrpcDtoClient) => Buffer<ArrayBuffer>;
|
|
700
|
+
readonly responseDeserialize: (value: Buffer) => GrpcDtoClient;
|
|
365
701
|
};
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
readonly path: "/aegis.system.v1.GeoService/GeoDivisionsGetByPublicIds";
|
|
702
|
+
readonly clientUpdate: {
|
|
703
|
+
readonly path: "/aegis.system.v1.SystemService/ClientUpdate";
|
|
369
704
|
readonly requestStream: false;
|
|
370
705
|
readonly responseStream: false;
|
|
371
|
-
readonly requestSerialize: (value:
|
|
372
|
-
readonly requestDeserialize: (value: Buffer) =>
|
|
373
|
-
readonly responseSerialize: (value:
|
|
374
|
-
readonly responseDeserialize: (value: Buffer) =>
|
|
706
|
+
readonly requestSerialize: (value: GrpcInputClientUpdate) => Buffer<ArrayBuffer>;
|
|
707
|
+
readonly requestDeserialize: (value: Buffer) => GrpcInputClientUpdate;
|
|
708
|
+
readonly responseSerialize: (value: GrpcDtoClient) => Buffer<ArrayBuffer>;
|
|
709
|
+
readonly responseDeserialize: (value: Buffer) => GrpcDtoClient;
|
|
375
710
|
};
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
readonly
|
|
711
|
+
readonly clients: {
|
|
712
|
+
readonly path: "/aegis.system.v1.SystemService/Clients";
|
|
713
|
+
readonly requestStream: false;
|
|
714
|
+
readonly responseStream: false;
|
|
715
|
+
readonly requestSerialize: (value: GrpcInputClients) => Buffer<ArrayBuffer>;
|
|
716
|
+
readonly requestDeserialize: (value: Buffer) => GrpcInputClients;
|
|
717
|
+
readonly responseSerialize: (value: GrpcDtoClients) => Buffer<ArrayBuffer>;
|
|
718
|
+
readonly responseDeserialize: (value: Buffer) => GrpcDtoClients;
|
|
719
|
+
};
|
|
720
|
+
readonly client: {
|
|
721
|
+
readonly path: "/aegis.system.v1.SystemService/Client";
|
|
382
722
|
readonly requestStream: false;
|
|
383
723
|
readonly responseStream: false;
|
|
384
|
-
readonly requestSerialize: (value:
|
|
385
|
-
readonly requestDeserialize: (value: Buffer) =>
|
|
386
|
-
readonly responseSerialize: (value:
|
|
387
|
-
readonly responseDeserialize: (value: Buffer) =>
|
|
724
|
+
readonly requestSerialize: (value: GrpcInputClient) => Buffer<ArrayBuffer>;
|
|
725
|
+
readonly requestDeserialize: (value: Buffer) => GrpcInputClient;
|
|
726
|
+
readonly responseSerialize: (value: GrpcDtoClient) => Buffer<ArrayBuffer>;
|
|
727
|
+
readonly responseDeserialize: (value: Buffer) => GrpcDtoClient;
|
|
728
|
+
};
|
|
729
|
+
readonly clientFeaturesAdd: {
|
|
730
|
+
readonly path: "/aegis.system.v1.SystemService/ClientFeaturesAdd";
|
|
731
|
+
readonly requestStream: false;
|
|
732
|
+
readonly responseStream: false;
|
|
733
|
+
readonly requestSerialize: (value: GrpcInputClientFeaturesAdd) => Buffer<ArrayBuffer>;
|
|
734
|
+
readonly requestDeserialize: (value: Buffer) => GrpcInputClientFeaturesAdd;
|
|
735
|
+
readonly responseSerialize: (value: GrpcDtoFeaturesAdd) => Buffer<ArrayBuffer>;
|
|
736
|
+
readonly responseDeserialize: (value: Buffer) => GrpcDtoFeaturesAdd;
|
|
737
|
+
};
|
|
738
|
+
readonly clientFeaturesRemove: {
|
|
739
|
+
readonly path: "/aegis.system.v1.SystemService/ClientFeaturesRemove";
|
|
740
|
+
readonly requestStream: false;
|
|
741
|
+
readonly responseStream: false;
|
|
742
|
+
readonly requestSerialize: (value: GrpcInputClientFeaturesRemove) => Buffer<ArrayBuffer>;
|
|
743
|
+
readonly requestDeserialize: (value: Buffer) => GrpcInputClientFeaturesRemove;
|
|
744
|
+
readonly responseSerialize: (value: GrpcDtoMessage) => Buffer<ArrayBuffer>;
|
|
745
|
+
readonly responseDeserialize: (value: Buffer) => GrpcDtoMessage;
|
|
746
|
+
};
|
|
747
|
+
readonly clientFeatures: {
|
|
748
|
+
readonly path: "/aegis.system.v1.SystemService/ClientFeatures";
|
|
749
|
+
readonly requestStream: false;
|
|
750
|
+
readonly responseStream: false;
|
|
751
|
+
readonly requestSerialize: (value: GrpcInputClientFeatures) => Buffer<ArrayBuffer>;
|
|
752
|
+
readonly requestDeserialize: (value: Buffer) => GrpcInputClientFeatures;
|
|
753
|
+
readonly responseSerialize: (value: GrpcDtoClientFeatures) => Buffer<ArrayBuffer>;
|
|
754
|
+
readonly responseDeserialize: (value: Buffer) => GrpcDtoClientFeatures;
|
|
755
|
+
};
|
|
756
|
+
/** --- Geo delta sync (hourly pull from gtms mirror) --- */
|
|
757
|
+
readonly geoTimezonesSync: {
|
|
758
|
+
readonly path: "/aegis.system.v1.SystemService/GeoTimezonesSync";
|
|
759
|
+
readonly requestStream: false;
|
|
760
|
+
readonly responseStream: false;
|
|
761
|
+
readonly requestSerialize: (value: GrpcInputGeoSync) => Buffer<ArrayBuffer>;
|
|
762
|
+
readonly requestDeserialize: (value: Buffer) => GrpcInputGeoSync;
|
|
763
|
+
readonly responseSerialize: (value: GrpcDtoGeoTimezonesSync) => Buffer<ArrayBuffer>;
|
|
764
|
+
readonly responseDeserialize: (value: Buffer) => GrpcDtoGeoTimezonesSync;
|
|
765
|
+
};
|
|
766
|
+
readonly geoCurrenciesSync: {
|
|
767
|
+
readonly path: "/aegis.system.v1.SystemService/GeoCurrenciesSync";
|
|
768
|
+
readonly requestStream: false;
|
|
769
|
+
readonly responseStream: false;
|
|
770
|
+
readonly requestSerialize: (value: GrpcInputGeoSync) => Buffer<ArrayBuffer>;
|
|
771
|
+
readonly requestDeserialize: (value: Buffer) => GrpcInputGeoSync;
|
|
772
|
+
readonly responseSerialize: (value: GrpcDtoGeoCurrenciesSync) => Buffer<ArrayBuffer>;
|
|
773
|
+
readonly responseDeserialize: (value: Buffer) => GrpcDtoGeoCurrenciesSync;
|
|
774
|
+
};
|
|
775
|
+
readonly geoLanguagesSync: {
|
|
776
|
+
readonly path: "/aegis.system.v1.SystemService/GeoLanguagesSync";
|
|
777
|
+
readonly requestStream: false;
|
|
778
|
+
readonly responseStream: false;
|
|
779
|
+
readonly requestSerialize: (value: GrpcInputGeoSync) => Buffer<ArrayBuffer>;
|
|
780
|
+
readonly requestDeserialize: (value: Buffer) => GrpcInputGeoSync;
|
|
781
|
+
readonly responseSerialize: (value: GrpcDtoGeoLanguagesSync) => Buffer<ArrayBuffer>;
|
|
782
|
+
readonly responseDeserialize: (value: Buffer) => GrpcDtoGeoLanguagesSync;
|
|
783
|
+
};
|
|
784
|
+
readonly geoLocalesSync: {
|
|
785
|
+
readonly path: "/aegis.system.v1.SystemService/GeoLocalesSync";
|
|
786
|
+
readonly requestStream: false;
|
|
787
|
+
readonly responseStream: false;
|
|
788
|
+
readonly requestSerialize: (value: GrpcInputGeoSync) => Buffer<ArrayBuffer>;
|
|
789
|
+
readonly requestDeserialize: (value: Buffer) => GrpcInputGeoSync;
|
|
790
|
+
readonly responseSerialize: (value: GrpcDtoGeoLocalesSync) => Buffer<ArrayBuffer>;
|
|
791
|
+
readonly responseDeserialize: (value: Buffer) => GrpcDtoGeoLocalesSync;
|
|
792
|
+
};
|
|
793
|
+
readonly geoDivisionsSync: {
|
|
794
|
+
readonly path: "/aegis.system.v1.SystemService/GeoDivisionsSync";
|
|
795
|
+
readonly requestStream: false;
|
|
796
|
+
readonly responseStream: false;
|
|
797
|
+
readonly requestSerialize: (value: GrpcInputGeoSync) => Buffer<ArrayBuffer>;
|
|
798
|
+
readonly requestDeserialize: (value: Buffer) => GrpcInputGeoSync;
|
|
799
|
+
readonly responseSerialize: (value: GrpcDtoGeoDivisionsSync) => Buffer<ArrayBuffer>;
|
|
800
|
+
readonly responseDeserialize: (value: Buffer) => GrpcDtoGeoDivisionsSync;
|
|
801
|
+
};
|
|
802
|
+
readonly geoCountryMetasSync: {
|
|
803
|
+
readonly path: "/aegis.system.v1.SystemService/GeoCountryMetasSync";
|
|
804
|
+
readonly requestStream: false;
|
|
805
|
+
readonly responseStream: false;
|
|
806
|
+
readonly requestSerialize: (value: GrpcInputGeoSync) => Buffer<ArrayBuffer>;
|
|
807
|
+
readonly requestDeserialize: (value: Buffer) => GrpcInputGeoSync;
|
|
808
|
+
readonly responseSerialize: (value: GrpcDtoGeoCountryMetasSync) => Buffer<ArrayBuffer>;
|
|
809
|
+
readonly responseDeserialize: (value: Buffer) => GrpcDtoGeoCountryMetasSync;
|
|
810
|
+
};
|
|
811
|
+
readonly geoCountryTimezonesSync: {
|
|
812
|
+
readonly path: "/aegis.system.v1.SystemService/GeoCountryTimezonesSync";
|
|
813
|
+
readonly requestStream: false;
|
|
814
|
+
readonly responseStream: false;
|
|
815
|
+
readonly requestSerialize: (value: GrpcInputGeoSync) => Buffer<ArrayBuffer>;
|
|
816
|
+
readonly requestDeserialize: (value: Buffer) => GrpcInputGeoSync;
|
|
817
|
+
readonly responseSerialize: (value: GrpcDtoGeoCountryTimezonesSync) => Buffer<ArrayBuffer>;
|
|
818
|
+
readonly responseDeserialize: (value: Buffer) => GrpcDtoGeoCountryTimezonesSync;
|
|
819
|
+
};
|
|
820
|
+
readonly geoCountryCurrenciesSync: {
|
|
821
|
+
readonly path: "/aegis.system.v1.SystemService/GeoCountryCurrenciesSync";
|
|
822
|
+
readonly requestStream: false;
|
|
823
|
+
readonly responseStream: false;
|
|
824
|
+
readonly requestSerialize: (value: GrpcInputGeoSync) => Buffer<ArrayBuffer>;
|
|
825
|
+
readonly requestDeserialize: (value: Buffer) => GrpcInputGeoSync;
|
|
826
|
+
readonly responseSerialize: (value: GrpcDtoGeoCountryCurrenciesSync) => Buffer<ArrayBuffer>;
|
|
827
|
+
readonly responseDeserialize: (value: Buffer) => GrpcDtoGeoCountryCurrenciesSync;
|
|
828
|
+
};
|
|
829
|
+
readonly geoCountryLanguagesSync: {
|
|
830
|
+
readonly path: "/aegis.system.v1.SystemService/GeoCountryLanguagesSync";
|
|
831
|
+
readonly requestStream: false;
|
|
832
|
+
readonly responseStream: false;
|
|
833
|
+
readonly requestSerialize: (value: GrpcInputGeoSync) => Buffer<ArrayBuffer>;
|
|
834
|
+
readonly requestDeserialize: (value: Buffer) => GrpcInputGeoSync;
|
|
835
|
+
readonly responseSerialize: (value: GrpcDtoGeoCountryLanguagesSync) => Buffer<ArrayBuffer>;
|
|
836
|
+
readonly responseDeserialize: (value: Buffer) => GrpcDtoGeoCountryLanguagesSync;
|
|
388
837
|
};
|
|
389
838
|
};
|
|
390
|
-
export interface
|
|
391
|
-
/**
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
/**
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
839
|
+
export interface SystemServiceServer extends UntypedServiceImplementation {
|
|
840
|
+
/** --- Client Types --- */
|
|
841
|
+
clientTypesSeed: handleUnaryCall<GrpcInputClientTypesSeed, GrpcDtoClientTypesSeed>;
|
|
842
|
+
clientTypes: handleUnaryCall<GrpcInputClientTypes, GrpcDtoClientTypes>;
|
|
843
|
+
clientType: handleUnaryCall<GrpcInputClientType, GrpcDtoClientType>;
|
|
844
|
+
/** --- Features --- */
|
|
845
|
+
featuresSeed: handleUnaryCall<GrpcInputFeaturesSeed, GrpcDtoFeaturesSeed>;
|
|
846
|
+
features: handleUnaryCall<GrpcInputFeatures, GrpcDtoFeatures>;
|
|
847
|
+
feature: handleUnaryCall<GrpcInputFeature, GrpcDtoFeature>;
|
|
848
|
+
featurePermissions: handleUnaryCall<GrpcInputFeaturePermissions, GrpcDtoFeaturePermissions>;
|
|
849
|
+
featurePermissionsAdd: handleUnaryCall<GrpcInputFeaturePermissionsAdd, GrpcDtoPermissionsAdd>;
|
|
850
|
+
featurePermissionsRemove: handleUnaryCall<GrpcInputFeaturePermissionsRemove, GrpcDtoMessage>;
|
|
851
|
+
/** --- Clients --- */
|
|
852
|
+
clientCreate: handleUnaryCall<GrpcInputClientCreate, GrpcDtoClient>;
|
|
853
|
+
clientUpdate: handleUnaryCall<GrpcInputClientUpdate, GrpcDtoClient>;
|
|
854
|
+
clients: handleUnaryCall<GrpcInputClients, GrpcDtoClients>;
|
|
855
|
+
client: handleUnaryCall<GrpcInputClient, GrpcDtoClient>;
|
|
856
|
+
clientFeaturesAdd: handleUnaryCall<GrpcInputClientFeaturesAdd, GrpcDtoFeaturesAdd>;
|
|
857
|
+
clientFeaturesRemove: handleUnaryCall<GrpcInputClientFeaturesRemove, GrpcDtoMessage>;
|
|
858
|
+
clientFeatures: handleUnaryCall<GrpcInputClientFeatures, GrpcDtoClientFeatures>;
|
|
859
|
+
/** --- Geo delta sync (hourly pull from gtms mirror) --- */
|
|
860
|
+
geoTimezonesSync: handleUnaryCall<GrpcInputGeoSync, GrpcDtoGeoTimezonesSync>;
|
|
861
|
+
geoCurrenciesSync: handleUnaryCall<GrpcInputGeoSync, GrpcDtoGeoCurrenciesSync>;
|
|
862
|
+
geoLanguagesSync: handleUnaryCall<GrpcInputGeoSync, GrpcDtoGeoLanguagesSync>;
|
|
863
|
+
geoLocalesSync: handleUnaryCall<GrpcInputGeoSync, GrpcDtoGeoLocalesSync>;
|
|
864
|
+
geoDivisionsSync: handleUnaryCall<GrpcInputGeoSync, GrpcDtoGeoDivisionsSync>;
|
|
865
|
+
geoCountryMetasSync: handleUnaryCall<GrpcInputGeoSync, GrpcDtoGeoCountryMetasSync>;
|
|
866
|
+
geoCountryTimezonesSync: handleUnaryCall<GrpcInputGeoSync, GrpcDtoGeoCountryTimezonesSync>;
|
|
867
|
+
geoCountryCurrenciesSync: handleUnaryCall<GrpcInputGeoSync, GrpcDtoGeoCountryCurrenciesSync>;
|
|
868
|
+
geoCountryLanguagesSync: handleUnaryCall<GrpcInputGeoSync, GrpcDtoGeoCountryLanguagesSync>;
|
|
400
869
|
}
|
|
401
870
|
//# sourceMappingURL=system.d.ts.map
|