@komune-io/im-space-domain 0.15.0-alpha.2ff4be0
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.
|
@@ -0,0 +1,404 @@
|
|
|
1
|
+
export declare namespace f2.dsl.fnc {
|
|
2
|
+
interface F2Function<T, R> {
|
|
3
|
+
invoke(cmd: Array<T>): Promise<Array<R>>;
|
|
4
|
+
|
|
5
|
+
}
|
|
6
|
+
interface F2Supplier<R> {
|
|
7
|
+
invoke(): Promise<Array<R>>;
|
|
8
|
+
|
|
9
|
+
}
|
|
10
|
+
interface F2Consumer<T> {
|
|
11
|
+
invoke(cmd: Array<T>): Promise<void>;
|
|
12
|
+
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
export declare namespace f2.client {
|
|
16
|
+
interface F2Client {
|
|
17
|
+
supplier<RESPONSE>(route: string, responseTypeInfo: io.ktor.util.reflect.TypeInfo): f2.dsl.fnc.F2Supplier<RESPONSE>;
|
|
18
|
+
function<QUERY, RESPONSE>(route: string, queryTypeInfo: io.ktor.util.reflect.TypeInfo, responseTypeInfo: io.ktor.util.reflect.TypeInfo): f2.dsl.fnc.F2Function<QUERY, RESPONSE>;
|
|
19
|
+
consumer<QUERY>(route: string, queryTypeInfo: io.ktor.util.reflect.TypeInfo): f2.dsl.fnc.F2Consumer<QUERY>;
|
|
20
|
+
readonly type: f2.client.F2ClientType;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
export declare namespace f2.dsl.cqrs {
|
|
24
|
+
interface Command extends f2.dsl.cqrs.Message {
|
|
25
|
+
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
export declare namespace f2.dsl.cqrs {
|
|
29
|
+
interface Event extends f2.dsl.cqrs.Message {
|
|
30
|
+
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
export declare namespace f2.dsl.cqrs {
|
|
34
|
+
interface Message {
|
|
35
|
+
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
export declare namespace f2.dsl.cqrs {
|
|
39
|
+
interface Query extends f2.dsl.cqrs.Message {
|
|
40
|
+
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
export declare namespace f2.dsl.cqrs.error {
|
|
44
|
+
interface F2ErrorDTO {
|
|
45
|
+
readonly id?: string;
|
|
46
|
+
readonly timestamp: string;
|
|
47
|
+
readonly code: number;
|
|
48
|
+
readonly requestId?: string;
|
|
49
|
+
readonly message: string;
|
|
50
|
+
|
|
51
|
+
}
|
|
52
|
+
class F2Error implements f2.dsl.cqrs.error.F2ErrorDTO {
|
|
53
|
+
constructor(message: string, id?: string, timestamp?: string, code?: number, requestId?: string);
|
|
54
|
+
get message(): string;
|
|
55
|
+
get id(): Nullable<string>;
|
|
56
|
+
get timestamp(): string;
|
|
57
|
+
get code(): number;
|
|
58
|
+
get requestId(): Nullable<string>;
|
|
59
|
+
toString(): string;
|
|
60
|
+
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
export declare namespace f2.dsl.cqrs.exception {
|
|
64
|
+
class F2Exception /* extends kotlin.RuntimeException */ {
|
|
65
|
+
constructor(error: f2.dsl.cqrs.error.F2ErrorDTO, cause?: Error);
|
|
66
|
+
get error(): f2.dsl.cqrs.error.F2ErrorDTO;
|
|
67
|
+
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
export declare namespace f2.dsl.cqrs.filter {
|
|
71
|
+
interface Match<T> {
|
|
72
|
+
readonly negative: boolean;
|
|
73
|
+
map<R>(transform: (p0: T) => R): f2.dsl.cqrs.filter.Match<R>;
|
|
74
|
+
not(): f2.dsl.cqrs.filter.Match<T>;
|
|
75
|
+
and(match: f2.dsl.cqrs.filter.Match<T>): f2.dsl.cqrs.filter.Match<T>;
|
|
76
|
+
or(match: f2.dsl.cqrs.filter.Match<T>): f2.dsl.cqrs.filter.Match<T>;
|
|
77
|
+
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
export declare namespace f2.dsl.cqrs.filter {
|
|
81
|
+
interface SortDTO {
|
|
82
|
+
readonly property: string;
|
|
83
|
+
readonly ascending: boolean;
|
|
84
|
+
readonly nullsFirst?: boolean;
|
|
85
|
+
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
export declare namespace f2.dsl.cqrs.page {
|
|
89
|
+
interface PageDTO<OBJECT> {
|
|
90
|
+
readonly total: number;
|
|
91
|
+
readonly items: OBJECT[];
|
|
92
|
+
|
|
93
|
+
}
|
|
94
|
+
class Page<OBJECT> implements f2.dsl.cqrs.page.PageDTO<OBJECT> {
|
|
95
|
+
constructor(total: number, items: OBJECT[]);
|
|
96
|
+
get total(): number;
|
|
97
|
+
get items(): OBJECT[];
|
|
98
|
+
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
export declare namespace f2.dsl.cqrs.page {
|
|
102
|
+
interface PageQueryDTO extends f2.dsl.cqrs.Query {
|
|
103
|
+
readonly pagination?: f2.dsl.cqrs.page.OffsetPaginationDTO;
|
|
104
|
+
|
|
105
|
+
}
|
|
106
|
+
interface PageQueryResultDTO<OBJECT> extends f2.dsl.cqrs.Event, f2.dsl.cqrs.page.PageDTO<OBJECT> {
|
|
107
|
+
readonly total: number;
|
|
108
|
+
readonly items: OBJECT[];
|
|
109
|
+
readonly pagination?: f2.dsl.cqrs.page.OffsetPaginationDTO;
|
|
110
|
+
|
|
111
|
+
}
|
|
112
|
+
class PageQuery implements f2.dsl.cqrs.page.PageQueryDTO {
|
|
113
|
+
constructor(pagination?: f2.dsl.cqrs.page.OffsetPaginationDTO);
|
|
114
|
+
get pagination(): Nullable<f2.dsl.cqrs.page.OffsetPaginationDTO>;
|
|
115
|
+
|
|
116
|
+
}
|
|
117
|
+
class PageQueryResult<OBJECT> implements f2.dsl.cqrs.page.PageQueryResultDTO<OBJECT> {
|
|
118
|
+
constructor(pagination?: f2.dsl.cqrs.page.OffsetPagination, total: number, items: OBJECT[]);
|
|
119
|
+
get pagination(): Nullable<f2.dsl.cqrs.page.OffsetPagination>;
|
|
120
|
+
get total(): number;
|
|
121
|
+
get items(): OBJECT[];
|
|
122
|
+
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
export declare namespace f2.dsl.cqrs.page {
|
|
126
|
+
interface Pagination {
|
|
127
|
+
|
|
128
|
+
}
|
|
129
|
+
interface OffsetPaginationDTO extends f2.dsl.cqrs.page.Pagination {
|
|
130
|
+
readonly offset: number;
|
|
131
|
+
readonly limit: number;
|
|
132
|
+
|
|
133
|
+
}
|
|
134
|
+
interface PagePaginationDTO extends f2.dsl.cqrs.page.Pagination {
|
|
135
|
+
readonly page?: number;
|
|
136
|
+
readonly size?: number;
|
|
137
|
+
|
|
138
|
+
}
|
|
139
|
+
class OffsetPagination implements f2.dsl.cqrs.page.OffsetPaginationDTO {
|
|
140
|
+
constructor(offset: number, limit: number);
|
|
141
|
+
get offset(): number;
|
|
142
|
+
get limit(): number;
|
|
143
|
+
|
|
144
|
+
}
|
|
145
|
+
class PagePagination implements f2.dsl.cqrs.page.PagePaginationDTO {
|
|
146
|
+
constructor(page?: number, size?: number);
|
|
147
|
+
get page(): Nullable<number>;
|
|
148
|
+
get size(): Nullable<number>;
|
|
149
|
+
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
export declare namespace f2.client.ktor.http.plugin.model {
|
|
153
|
+
abstract class AuthRealm {
|
|
154
|
+
protected constructor(serverUrl: string, realmId: string, clientId: string, redirectUrl?: string);
|
|
155
|
+
get serverUrl(): string;
|
|
156
|
+
get realmId(): string;
|
|
157
|
+
get clientId(): string;
|
|
158
|
+
get redirectUrl(): Nullable<string>;
|
|
159
|
+
}
|
|
160
|
+
class AuthRealmPassword extends f2.client.ktor.http.plugin.model.AuthRealm {
|
|
161
|
+
constructor(serverUrl: string, realmId: string, redirectUrl: string, clientId: string, username: string, password: string);
|
|
162
|
+
get serverUrl(): string;
|
|
163
|
+
get realmId(): string;
|
|
164
|
+
get redirectUrl(): string;
|
|
165
|
+
get clientId(): string;
|
|
166
|
+
get username(): string;
|
|
167
|
+
get password(): string;
|
|
168
|
+
}
|
|
169
|
+
class AuthRealmClientSecret extends f2.client.ktor.http.plugin.model.AuthRealm {
|
|
170
|
+
constructor(serverUrl: string, realmId: string, clientId: string, redirectUrl?: string, clientSecret: string, isPublic?: boolean);
|
|
171
|
+
get serverUrl(): string;
|
|
172
|
+
get realmId(): string;
|
|
173
|
+
get clientId(): string;
|
|
174
|
+
get redirectUrl(): Nullable<string>;
|
|
175
|
+
get clientSecret(): string;
|
|
176
|
+
get isPublic(): boolean;
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
export declare namespace f2.client.ktor.http {
|
|
180
|
+
class HttpClientBuilder {
|
|
181
|
+
constructor(json?: kotlinx.serialization.json.Json);
|
|
182
|
+
build(urlBase: string): Promise<f2.client.F2Client/* f2.client.ktor.http.HttpF2Client */>;
|
|
183
|
+
static httpClient$default($this: f2.client.ktor.http.HttpClientBuilder, json?: kotlinx.serialization.json.Json): io.ktor.client.HttpClient;
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
export declare namespace f2.client.ktor.rsocket {
|
|
187
|
+
class RSocketF2Client implements f2.client.F2Client {
|
|
188
|
+
constructor(rSocketClient: f2.client.ktor.rsocket.RSocketClient);
|
|
189
|
+
get type(): f2.client.F2ClientType;
|
|
190
|
+
supplier<RESPONSE>(route: string, typeInfo: io.ktor.util.reflect.TypeInfo): f2.dsl.fnc.F2Supplier<RESPONSE>;
|
|
191
|
+
function<QUERY, RESPONSE>(route: string, queryTypeInfo: io.ktor.util.reflect.TypeInfo, responseTypeInfo: io.ktor.util.reflect.TypeInfo): f2.dsl.fnc.F2Function<QUERY, RESPONSE>;
|
|
192
|
+
consumer<QUERY>(route: string, queryTypeInfo: io.ktor.util.reflect.TypeInfo): f2.dsl.fnc.F2Consumer<QUERY>;
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
export declare namespace f2.client.ktor {
|
|
196
|
+
abstract class Protocol {
|
|
197
|
+
protected constructor();
|
|
198
|
+
}
|
|
199
|
+
const HTTP: {
|
|
200
|
+
} & f2.client.ktor.Protocol;
|
|
201
|
+
const HTTPS: {
|
|
202
|
+
} & f2.client.ktor.Protocol;
|
|
203
|
+
const WS: {
|
|
204
|
+
} & f2.client.ktor.Protocol;
|
|
205
|
+
const WSS: {
|
|
206
|
+
} & f2.client.ktor.Protocol;
|
|
207
|
+
const TCP: {
|
|
208
|
+
} & f2.client.ktor.Protocol;
|
|
209
|
+
}
|
|
210
|
+
export declare namespace io.komune.im.commons.auth {
|
|
211
|
+
interface AuthedUserDTO {
|
|
212
|
+
readonly id: string;
|
|
213
|
+
readonly identifier?: string;
|
|
214
|
+
readonly memberOf?: string;
|
|
215
|
+
readonly roles: Array<string>;
|
|
216
|
+
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
export declare namespace io.komune.im.commons.auth {
|
|
220
|
+
abstract class ImRole {
|
|
221
|
+
private constructor();
|
|
222
|
+
get identifier(): string;
|
|
223
|
+
static get ORCHESTRATOR(): io.komune.im.commons.auth.ImRole & {
|
|
224
|
+
get name(): "ORCHESTRATOR";
|
|
225
|
+
get ordinal(): 0;
|
|
226
|
+
};
|
|
227
|
+
static get ORCHESTRATOR_ADMIN(): io.komune.im.commons.auth.ImRole & {
|
|
228
|
+
get name(): "ORCHESTRATOR_ADMIN";
|
|
229
|
+
get ordinal(): 1;
|
|
230
|
+
};
|
|
231
|
+
static get ORCHESTRATOR_USER(): io.komune.im.commons.auth.ImRole & {
|
|
232
|
+
get name(): "ORCHESTRATOR_USER";
|
|
233
|
+
get ordinal(): 2;
|
|
234
|
+
};
|
|
235
|
+
static get IM_USER_READ(): io.komune.im.commons.auth.ImRole & {
|
|
236
|
+
get name(): "IM_USER_READ";
|
|
237
|
+
get ordinal(): 3;
|
|
238
|
+
};
|
|
239
|
+
static get IM_USER_WRITE(): io.komune.im.commons.auth.ImRole & {
|
|
240
|
+
get name(): "IM_USER_WRITE";
|
|
241
|
+
get ordinal(): 4;
|
|
242
|
+
};
|
|
243
|
+
static get IM_ORGANIZATION_READ(): io.komune.im.commons.auth.ImRole & {
|
|
244
|
+
get name(): "IM_ORGANIZATION_READ";
|
|
245
|
+
get ordinal(): 5;
|
|
246
|
+
};
|
|
247
|
+
static get IM_ORGANIZATION_WRITE(): io.komune.im.commons.auth.ImRole & {
|
|
248
|
+
get name(): "IM_ORGANIZATION_WRITE";
|
|
249
|
+
get ordinal(): 6;
|
|
250
|
+
};
|
|
251
|
+
static get IM_MY_ORGANIZATION_WRITE(): io.komune.im.commons.auth.ImRole & {
|
|
252
|
+
get name(): "IM_MY_ORGANIZATION_WRITE";
|
|
253
|
+
get ordinal(): 7;
|
|
254
|
+
};
|
|
255
|
+
static get IM_APIKEY_READ(): io.komune.im.commons.auth.ImRole & {
|
|
256
|
+
get name(): "IM_APIKEY_READ";
|
|
257
|
+
get ordinal(): 8;
|
|
258
|
+
};
|
|
259
|
+
static get IM_APIKEY_WRITE(): io.komune.im.commons.auth.ImRole & {
|
|
260
|
+
get name(): "IM_APIKEY_WRITE";
|
|
261
|
+
get ordinal(): 9;
|
|
262
|
+
};
|
|
263
|
+
static get IM_SPACE_READ(): io.komune.im.commons.auth.ImRole & {
|
|
264
|
+
get name(): "IM_SPACE_READ";
|
|
265
|
+
get ordinal(): 10;
|
|
266
|
+
};
|
|
267
|
+
static get IM_SPACE_WRITE(): io.komune.im.commons.auth.ImRole & {
|
|
268
|
+
get name(): "IM_SPACE_WRITE";
|
|
269
|
+
get ordinal(): 11;
|
|
270
|
+
};
|
|
271
|
+
static get IM_ROLE_READ(): io.komune.im.commons.auth.ImRole & {
|
|
272
|
+
get name(): "IM_ROLE_READ";
|
|
273
|
+
get ordinal(): 12;
|
|
274
|
+
};
|
|
275
|
+
static get IM_ROLE_WRITE(): io.komune.im.commons.auth.ImRole & {
|
|
276
|
+
get name(): "IM_ROLE_WRITE";
|
|
277
|
+
get ordinal(): 13;
|
|
278
|
+
};
|
|
279
|
+
static values(): Array<io.komune.im.commons.auth.ImRole>;
|
|
280
|
+
static valueOf(value: string): io.komune.im.commons.auth.ImRole;
|
|
281
|
+
get name(): "ORCHESTRATOR" | "ORCHESTRATOR_ADMIN" | "ORCHESTRATOR_USER" | "IM_USER_READ" | "IM_USER_WRITE" | "IM_ORGANIZATION_READ" | "IM_ORGANIZATION_WRITE" | "IM_MY_ORGANIZATION_WRITE" | "IM_APIKEY_READ" | "IM_APIKEY_WRITE" | "IM_SPACE_READ" | "IM_SPACE_WRITE" | "IM_ROLE_READ" | "IM_ROLE_WRITE";
|
|
282
|
+
get ordinal(): 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13;
|
|
283
|
+
}
|
|
284
|
+
}
|
|
285
|
+
export declare namespace io.komune.im.commons.exception {
|
|
286
|
+
const ExceptionCodes: {
|
|
287
|
+
privilegeWrongTarget(): number;
|
|
288
|
+
};
|
|
289
|
+
}
|
|
290
|
+
export declare namespace io.komune.im.commons.model {
|
|
291
|
+
interface AddressDTO {
|
|
292
|
+
readonly street: string;
|
|
293
|
+
readonly postalCode: string;
|
|
294
|
+
readonly city: string;
|
|
295
|
+
|
|
296
|
+
}
|
|
297
|
+
}
|
|
298
|
+
export declare namespace io.komune.im.commons.model {
|
|
299
|
+
abstract class AuthRealm {
|
|
300
|
+
protected constructor(serverUrl: string, realmId: string, clientId: string, redirectUrl?: string, space: string);
|
|
301
|
+
get serverUrl(): string;
|
|
302
|
+
get realmId(): string;
|
|
303
|
+
get clientId(): string;
|
|
304
|
+
get redirectUrl(): Nullable<string>;
|
|
305
|
+
get space(): string;
|
|
306
|
+
}
|
|
307
|
+
class AuthRealmPassword extends io.komune.im.commons.model.AuthRealm {
|
|
308
|
+
constructor(serverUrl: string, realmId: string, redirectUrl: string, clientId: string, username: string, password: string, space: string);
|
|
309
|
+
get serverUrl(): string;
|
|
310
|
+
get realmId(): string;
|
|
311
|
+
get redirectUrl(): string;
|
|
312
|
+
get clientId(): string;
|
|
313
|
+
get username(): string;
|
|
314
|
+
get password(): string;
|
|
315
|
+
get space(): string;
|
|
316
|
+
copy(serverUrl?: string, realmId?: string, redirectUrl?: string, clientId?: string, username?: string, password?: string, space?: string): io.komune.im.commons.model.AuthRealmPassword;
|
|
317
|
+
toString(): string;
|
|
318
|
+
hashCode(): number;
|
|
319
|
+
equals(other?: any): boolean;
|
|
320
|
+
}
|
|
321
|
+
class AuthRealmClientSecret extends io.komune.im.commons.model.AuthRealm {
|
|
322
|
+
constructor(serverUrl: string, realmId: string, clientId: string, redirectUrl?: string, clientSecret: string, space: string);
|
|
323
|
+
get serverUrl(): string;
|
|
324
|
+
get realmId(): string;
|
|
325
|
+
get clientId(): string;
|
|
326
|
+
get redirectUrl(): Nullable<string>;
|
|
327
|
+
get clientSecret(): string;
|
|
328
|
+
get space(): string;
|
|
329
|
+
copy(serverUrl?: string, realmId?: string, clientId?: string, redirectUrl?: string, clientSecret?: string, space?: string): io.komune.im.commons.model.AuthRealmClientSecret;
|
|
330
|
+
toString(): string;
|
|
331
|
+
hashCode(): number;
|
|
332
|
+
equals(other?: any): boolean;
|
|
333
|
+
}
|
|
334
|
+
}
|
|
335
|
+
export declare namespace io.komune.im.commons.http {
|
|
336
|
+
class ClientJs {
|
|
337
|
+
constructor();
|
|
338
|
+
protected doCall<T>(fnc: any /*Suspend functions are not supported*/): Promise<T>;
|
|
339
|
+
}
|
|
340
|
+
}
|
|
341
|
+
export declare namespace io.komune.im.f2.space.domain.command {
|
|
342
|
+
interface SpaceDefineCommandDTO extends f2.dsl.cqrs.Command {
|
|
343
|
+
readonly identifier: string;
|
|
344
|
+
readonly theme?: string;
|
|
345
|
+
readonly smtp?: any/* Nullable<Record<string, string>> */;
|
|
346
|
+
readonly locales?: any/* Nullable<string>[] */;
|
|
347
|
+
|
|
348
|
+
}
|
|
349
|
+
interface SpaceDefinedEventDTO extends f2.dsl.cqrs.Event {
|
|
350
|
+
readonly identifier: string;
|
|
351
|
+
|
|
352
|
+
}
|
|
353
|
+
}
|
|
354
|
+
export declare namespace io.komune.im.f2.space.domain.command {
|
|
355
|
+
interface SpaceDeleteCommandDTO extends f2.dsl.cqrs.Command {
|
|
356
|
+
readonly id: string;
|
|
357
|
+
|
|
358
|
+
}
|
|
359
|
+
interface SpaceDeletedEventDTO extends f2.dsl.cqrs.Event {
|
|
360
|
+
readonly id: string;
|
|
361
|
+
|
|
362
|
+
}
|
|
363
|
+
}
|
|
364
|
+
export declare namespace io.komune.im.f2.space.domain.model {
|
|
365
|
+
interface SpaceDTO {
|
|
366
|
+
readonly identifier?: string;
|
|
367
|
+
readonly smtp?: any/* Nullable<Record<string, string>> */;
|
|
368
|
+
readonly theme?: string;
|
|
369
|
+
readonly locales?: any/* Nullable<string>[] */;
|
|
370
|
+
|
|
371
|
+
}
|
|
372
|
+
}
|
|
373
|
+
export declare namespace io.komune.im.f2.space.domain.policies {
|
|
374
|
+
const SpacePolicies: {
|
|
375
|
+
canGet(authedUser: io.komune.im.commons.auth.AuthedUserDTO): boolean;
|
|
376
|
+
canPage(authedUser: io.komune.im.commons.auth.AuthedUserDTO): boolean;
|
|
377
|
+
canDefine(authedUser: io.komune.im.commons.auth.AuthedUserDTO): boolean;
|
|
378
|
+
canDelete(authedUser: io.komune.im.commons.auth.AuthedUserDTO, spaceIdentifier: string): boolean;
|
|
379
|
+
};
|
|
380
|
+
}
|
|
381
|
+
export declare namespace io.komune.im.f2.space.domain.query {
|
|
382
|
+
interface SpaceGetQueryDTO extends f2.dsl.cqrs.Query {
|
|
383
|
+
readonly id: string;
|
|
384
|
+
|
|
385
|
+
}
|
|
386
|
+
interface SpaceGetResultDTO extends f2.dsl.cqrs.Event {
|
|
387
|
+
readonly item?: io.komune.im.f2.space.domain.model.SpaceDTO;
|
|
388
|
+
|
|
389
|
+
}
|
|
390
|
+
}
|
|
391
|
+
export declare namespace io.komune.im.f2.space.domain.query {
|
|
392
|
+
interface SpacePageQueryDTO extends f2.dsl.cqrs.Query {
|
|
393
|
+
readonly search?: string;
|
|
394
|
+
readonly page?: number;
|
|
395
|
+
readonly size?: number;
|
|
396
|
+
|
|
397
|
+
}
|
|
398
|
+
interface SpacePageResultDTO extends f2.dsl.cqrs.page.PageDTO<io.komune.im.f2.space.domain.model.SpaceDTO> {
|
|
399
|
+
readonly total: number;
|
|
400
|
+
readonly items: io.komune.im.f2.space.domain.model.SpaceDTO[];
|
|
401
|
+
|
|
402
|
+
}
|
|
403
|
+
}
|
|
404
|
+
export as namespace io_komune_im_im_space_domain;
|