@creopse/vue 0.0.23 → 0.0.25
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/index.cjs +11 -11
- package/dist/index.js +11 -11
- package/dist/index.mjs +2625 -2565
- package/dist/style.css +1 -1
- package/package.json +4 -2
- package/types/components/widgets/Image.vue.d.ts +1 -1
- package/types/composables/content.d.ts +0 -4
- package/types/composables/props.d.ts +3 -4
- package/types/core/props-manager.d.ts +4652 -4
- package/types/types/plugin.d.ts +7 -2
|
@@ -1,13 +1,4661 @@
|
|
|
1
|
-
|
|
1
|
+
import type { Props } from '@/types/plugin';
|
|
2
|
+
declare class PropsManager<T extends Props = Props> {
|
|
2
3
|
private state;
|
|
3
|
-
constructor(initialProps:
|
|
4
|
-
update(payload:
|
|
4
|
+
constructor(initialProps: T);
|
|
5
|
+
update(payload: T): void;
|
|
5
6
|
getState(): {
|
|
6
7
|
readonly props: {
|
|
7
8
|
readonly [x: string]: any;
|
|
9
|
+
readonly appLocale: string;
|
|
10
|
+
readonly appFallbackLocale: string;
|
|
11
|
+
readonly userData: any;
|
|
12
|
+
readonly isUserLoggedIn: boolean;
|
|
13
|
+
readonly pageData: {
|
|
14
|
+
readonly name: string;
|
|
15
|
+
readonly title: string;
|
|
16
|
+
readonly slug: string;
|
|
17
|
+
readonly content: string | null;
|
|
18
|
+
readonly sectionsOrder?: readonly string[] | null | undefined;
|
|
19
|
+
readonly sectionsDisabled?: readonly string[] | null | undefined;
|
|
20
|
+
readonly sections?: readonly {
|
|
21
|
+
readonly id?: number | undefined;
|
|
22
|
+
readonly name: string;
|
|
23
|
+
readonly title: string;
|
|
24
|
+
readonly slug: string;
|
|
25
|
+
readonly content?: string | null | undefined;
|
|
26
|
+
readonly dataStructure?: any | null;
|
|
27
|
+
readonly settingsStructure?: any | null;
|
|
28
|
+
readonly createdAt?: string | undefined;
|
|
29
|
+
readonly updatedAt?: string | undefined;
|
|
30
|
+
readonly pages?: readonly /*elided*/ any[] | undefined;
|
|
31
|
+
readonly pagesCount?: number | undefined;
|
|
32
|
+
readonly pivot?: {
|
|
33
|
+
readonly pageId?: number | undefined;
|
|
34
|
+
readonly sectionId?: number | undefined;
|
|
35
|
+
readonly dataSourceLinkId?: string | null | undefined;
|
|
36
|
+
readonly dataSourcePageId?: number | null | undefined;
|
|
37
|
+
readonly dataSourcePageTitle?: string | null | undefined;
|
|
38
|
+
readonly linkId?: string | null | undefined;
|
|
39
|
+
readonly data?: any;
|
|
40
|
+
readonly settings?: any;
|
|
41
|
+
readonly createdAt?: string | undefined;
|
|
42
|
+
readonly updatedAt?: string | undefined;
|
|
43
|
+
} | undefined;
|
|
44
|
+
}[] | undefined;
|
|
45
|
+
readonly id?: number | undefined;
|
|
46
|
+
readonly createdAt?: string | undefined;
|
|
47
|
+
readonly updatedAt?: string | undefined;
|
|
48
|
+
readonly pivot?: {
|
|
49
|
+
readonly pageId?: number | undefined;
|
|
50
|
+
readonly sectionId?: number | undefined;
|
|
51
|
+
readonly dataSourceLinkId?: string | null | undefined;
|
|
52
|
+
readonly dataSourcePageId?: number | null | undefined;
|
|
53
|
+
readonly dataSourcePageTitle?: string | null | undefined;
|
|
54
|
+
readonly linkId?: string | null | undefined;
|
|
55
|
+
readonly data?: any;
|
|
56
|
+
readonly settings?: any;
|
|
57
|
+
readonly createdAt?: string | undefined;
|
|
58
|
+
readonly updatedAt?: string | undefined;
|
|
59
|
+
} | undefined;
|
|
60
|
+
} | null;
|
|
61
|
+
readonly sectionData: {
|
|
62
|
+
readonly id?: number | undefined;
|
|
63
|
+
readonly name: string;
|
|
64
|
+
readonly title: string;
|
|
65
|
+
readonly slug: string;
|
|
66
|
+
readonly content?: string | null | undefined;
|
|
67
|
+
readonly dataStructure?: any | null;
|
|
68
|
+
readonly settingsStructure?: any | null;
|
|
69
|
+
readonly createdAt?: string | undefined;
|
|
70
|
+
readonly updatedAt?: string | undefined;
|
|
71
|
+
readonly pages?: readonly {
|
|
72
|
+
readonly name: string;
|
|
73
|
+
readonly title: string;
|
|
74
|
+
readonly slug: string;
|
|
75
|
+
readonly content: string | null;
|
|
76
|
+
readonly sectionsOrder?: readonly string[] | null | undefined;
|
|
77
|
+
readonly sectionsDisabled?: readonly string[] | null | undefined;
|
|
78
|
+
readonly sections?: readonly /*elided*/ any[] | undefined;
|
|
79
|
+
readonly id?: number | undefined;
|
|
80
|
+
readonly createdAt?: string | undefined;
|
|
81
|
+
readonly updatedAt?: string | undefined;
|
|
82
|
+
readonly pivot?: {
|
|
83
|
+
readonly pageId?: number | undefined;
|
|
84
|
+
readonly sectionId?: number | undefined;
|
|
85
|
+
readonly dataSourceLinkId?: string | null | undefined;
|
|
86
|
+
readonly dataSourcePageId?: number | null | undefined;
|
|
87
|
+
readonly dataSourcePageTitle?: string | null | undefined;
|
|
88
|
+
readonly linkId?: string | null | undefined;
|
|
89
|
+
readonly data?: any;
|
|
90
|
+
readonly settings?: any;
|
|
91
|
+
readonly createdAt?: string | undefined;
|
|
92
|
+
readonly updatedAt?: string | undefined;
|
|
93
|
+
} | undefined;
|
|
94
|
+
}[] | undefined;
|
|
95
|
+
readonly pagesCount?: number | undefined;
|
|
96
|
+
readonly pivot?: {
|
|
97
|
+
readonly pageId?: number | undefined;
|
|
98
|
+
readonly sectionId?: number | undefined;
|
|
99
|
+
readonly dataSourceLinkId?: string | null | undefined;
|
|
100
|
+
readonly dataSourcePageId?: number | null | undefined;
|
|
101
|
+
readonly dataSourcePageTitle?: string | null | undefined;
|
|
102
|
+
readonly linkId?: string | null | undefined;
|
|
103
|
+
readonly data?: any;
|
|
104
|
+
readonly settings?: any;
|
|
105
|
+
readonly createdAt?: string | undefined;
|
|
106
|
+
readonly updatedAt?: string | undefined;
|
|
107
|
+
} | undefined;
|
|
108
|
+
} | null;
|
|
109
|
+
readonly articles?: readonly {
|
|
110
|
+
readonly id?: number | undefined;
|
|
111
|
+
readonly foreignId?: number | null | undefined;
|
|
112
|
+
readonly authorId?: number | undefined;
|
|
113
|
+
readonly publisherId?: number | undefined;
|
|
114
|
+
readonly title: string;
|
|
115
|
+
readonly slug: string;
|
|
116
|
+
readonly summary?: string | null | undefined;
|
|
117
|
+
readonly content?: string | null | undefined;
|
|
118
|
+
readonly featuredImage?: string | null | undefined;
|
|
119
|
+
readonly featuredImageUrl?: string | null | undefined;
|
|
120
|
+
readonly foreignFeaturedImage?: string | null | undefined;
|
|
121
|
+
readonly legend?: string | null | undefined;
|
|
122
|
+
readonly allowComments: boolean;
|
|
123
|
+
readonly isHeadline: boolean;
|
|
124
|
+
readonly status: import("@creopse/utils").NewsArticleStatus;
|
|
125
|
+
readonly publishedAt?: string | null | undefined;
|
|
126
|
+
readonly deletedAt?: string | null | undefined;
|
|
127
|
+
readonly createdAt?: string | undefined;
|
|
128
|
+
readonly updatedAt?: string | undefined;
|
|
129
|
+
readonly author?: {
|
|
130
|
+
readonly id?: number | undefined;
|
|
131
|
+
readonly uid?: string | undefined;
|
|
132
|
+
readonly avatar: string;
|
|
133
|
+
readonly avatarUrl: string;
|
|
134
|
+
readonly fullname: string;
|
|
135
|
+
readonly lastname: string;
|
|
136
|
+
readonly firstname: string;
|
|
137
|
+
readonly email: string;
|
|
138
|
+
readonly emailVerifiedAt?: string | undefined;
|
|
139
|
+
readonly password: string;
|
|
140
|
+
readonly phone?: string | undefined;
|
|
141
|
+
readonly address?: string | undefined;
|
|
142
|
+
readonly location?: {
|
|
143
|
+
readonly lat: number;
|
|
144
|
+
readonly lng: number;
|
|
145
|
+
} | null | undefined;
|
|
146
|
+
readonly profileType: import("@creopse/utils").ProfileType | string;
|
|
147
|
+
readonly profileId: number;
|
|
148
|
+
readonly accountStatus: import("@creopse/utils").AccountStatus;
|
|
149
|
+
readonly preferences?: any;
|
|
150
|
+
readonly authType?: import("@creopse/utils").AuthType | undefined;
|
|
151
|
+
readonly lastLoggedInAt?: string | undefined;
|
|
152
|
+
readonly rememberToken?: string | undefined;
|
|
153
|
+
readonly deletedAt?: string | undefined;
|
|
154
|
+
readonly createdAt?: string | undefined;
|
|
155
|
+
readonly updatedAt?: string | undefined;
|
|
156
|
+
readonly permissions?: readonly {
|
|
157
|
+
readonly id?: number | undefined;
|
|
158
|
+
readonly name: string;
|
|
159
|
+
readonly displayName: string;
|
|
160
|
+
readonly description: string;
|
|
161
|
+
readonly createdAt?: string | undefined;
|
|
162
|
+
readonly updatedAt?: string | undefined;
|
|
163
|
+
}[] | undefined;
|
|
164
|
+
readonly profile?: import("@creopse/utils").AdminProfileModel | any;
|
|
165
|
+
readonly roles?: readonly {
|
|
166
|
+
readonly id?: number | undefined;
|
|
167
|
+
readonly name: string;
|
|
168
|
+
readonly displayName: string;
|
|
169
|
+
readonly description: string;
|
|
170
|
+
readonly permissions?: readonly {
|
|
171
|
+
readonly id?: number | undefined;
|
|
172
|
+
readonly name: string;
|
|
173
|
+
readonly displayName: string;
|
|
174
|
+
readonly description: string;
|
|
175
|
+
readonly createdAt?: string | undefined;
|
|
176
|
+
readonly updatedAt?: string | undefined;
|
|
177
|
+
}[] | undefined;
|
|
178
|
+
readonly createdAt?: string | undefined;
|
|
179
|
+
readonly updatedAt?: string | undefined;
|
|
180
|
+
}[] | undefined;
|
|
181
|
+
readonly sessions?: readonly {
|
|
182
|
+
readonly id?: number | undefined;
|
|
183
|
+
readonly userId?: number | undefined;
|
|
184
|
+
readonly ipAddress: string;
|
|
185
|
+
readonly userAgent: string;
|
|
186
|
+
readonly locationData?: {
|
|
187
|
+
readonly ip: string;
|
|
188
|
+
readonly iso?: string | undefined;
|
|
189
|
+
readonly city?: string | undefined;
|
|
190
|
+
readonly region?: string | undefined;
|
|
191
|
+
readonly source?: string | undefined;
|
|
192
|
+
readonly country?: string | undefined;
|
|
193
|
+
readonly currency?: string | undefined;
|
|
194
|
+
readonly latitude?: string | undefined;
|
|
195
|
+
readonly timezone?: string | undefined;
|
|
196
|
+
readonly continent?: string | undefined;
|
|
197
|
+
readonly longitude?: string | undefined;
|
|
198
|
+
} | undefined;
|
|
199
|
+
readonly lastActivity: string;
|
|
200
|
+
readonly createdAt?: string | undefined;
|
|
201
|
+
readonly updatedAt?: string | undefined;
|
|
202
|
+
readonly user?: /*elided*/ any | undefined;
|
|
203
|
+
}[] | undefined;
|
|
204
|
+
readonly devices?: readonly {
|
|
205
|
+
readonly id?: number | undefined;
|
|
206
|
+
readonly userId?: number | undefined;
|
|
207
|
+
readonly deviceId?: string | undefined;
|
|
208
|
+
readonly data?: any;
|
|
209
|
+
readonly isActive?: boolean | undefined;
|
|
210
|
+
readonly createdAt?: string | undefined;
|
|
211
|
+
readonly updatedAt?: string | undefined;
|
|
212
|
+
readonly user?: /*elided*/ any | undefined;
|
|
213
|
+
}[] | undefined;
|
|
214
|
+
readonly place?: {
|
|
215
|
+
readonly id?: number | undefined;
|
|
216
|
+
readonly userId?: number | undefined;
|
|
217
|
+
readonly country?: string | undefined;
|
|
218
|
+
readonly position?: string | undefined;
|
|
219
|
+
readonly locality?: string | undefined;
|
|
220
|
+
readonly administrativeArea?: string | undefined;
|
|
221
|
+
readonly postalCode?: string | undefined;
|
|
222
|
+
readonly name?: string | undefined;
|
|
223
|
+
readonly subAdministrativeArea?: string | undefined;
|
|
224
|
+
readonly isoCountryCode?: string | undefined;
|
|
225
|
+
readonly subLocality?: string | undefined;
|
|
226
|
+
readonly subThoroughfare?: string | undefined;
|
|
227
|
+
readonly thoroughfare?: string | undefined;
|
|
228
|
+
readonly street?: string | undefined;
|
|
229
|
+
readonly createdAt?: string | undefined;
|
|
230
|
+
readonly updatedAt?: string | undefined;
|
|
231
|
+
readonly user?: /*elided*/ any | undefined;
|
|
232
|
+
} | undefined;
|
|
233
|
+
} | undefined;
|
|
234
|
+
readonly publisher?: {
|
|
235
|
+
readonly id?: number | undefined;
|
|
236
|
+
readonly uid?: string | undefined;
|
|
237
|
+
readonly avatar: string;
|
|
238
|
+
readonly avatarUrl: string;
|
|
239
|
+
readonly fullname: string;
|
|
240
|
+
readonly lastname: string;
|
|
241
|
+
readonly firstname: string;
|
|
242
|
+
readonly email: string;
|
|
243
|
+
readonly emailVerifiedAt?: string | undefined;
|
|
244
|
+
readonly password: string;
|
|
245
|
+
readonly phone?: string | undefined;
|
|
246
|
+
readonly address?: string | undefined;
|
|
247
|
+
readonly location?: {
|
|
248
|
+
readonly lat: number;
|
|
249
|
+
readonly lng: number;
|
|
250
|
+
} | null | undefined;
|
|
251
|
+
readonly profileType: import("@creopse/utils").ProfileType | string;
|
|
252
|
+
readonly profileId: number;
|
|
253
|
+
readonly accountStatus: import("@creopse/utils").AccountStatus;
|
|
254
|
+
readonly preferences?: any;
|
|
255
|
+
readonly authType?: import("@creopse/utils").AuthType | undefined;
|
|
256
|
+
readonly lastLoggedInAt?: string | undefined;
|
|
257
|
+
readonly rememberToken?: string | undefined;
|
|
258
|
+
readonly deletedAt?: string | undefined;
|
|
259
|
+
readonly createdAt?: string | undefined;
|
|
260
|
+
readonly updatedAt?: string | undefined;
|
|
261
|
+
readonly permissions?: readonly {
|
|
262
|
+
readonly id?: number | undefined;
|
|
263
|
+
readonly name: string;
|
|
264
|
+
readonly displayName: string;
|
|
265
|
+
readonly description: string;
|
|
266
|
+
readonly createdAt?: string | undefined;
|
|
267
|
+
readonly updatedAt?: string | undefined;
|
|
268
|
+
}[] | undefined;
|
|
269
|
+
readonly profile?: import("@creopse/utils").AdminProfileModel | any;
|
|
270
|
+
readonly roles?: readonly {
|
|
271
|
+
readonly id?: number | undefined;
|
|
272
|
+
readonly name: string;
|
|
273
|
+
readonly displayName: string;
|
|
274
|
+
readonly description: string;
|
|
275
|
+
readonly permissions?: readonly {
|
|
276
|
+
readonly id?: number | undefined;
|
|
277
|
+
readonly name: string;
|
|
278
|
+
readonly displayName: string;
|
|
279
|
+
readonly description: string;
|
|
280
|
+
readonly createdAt?: string | undefined;
|
|
281
|
+
readonly updatedAt?: string | undefined;
|
|
282
|
+
}[] | undefined;
|
|
283
|
+
readonly createdAt?: string | undefined;
|
|
284
|
+
readonly updatedAt?: string | undefined;
|
|
285
|
+
}[] | undefined;
|
|
286
|
+
readonly sessions?: readonly {
|
|
287
|
+
readonly id?: number | undefined;
|
|
288
|
+
readonly userId?: number | undefined;
|
|
289
|
+
readonly ipAddress: string;
|
|
290
|
+
readonly userAgent: string;
|
|
291
|
+
readonly locationData?: {
|
|
292
|
+
readonly ip: string;
|
|
293
|
+
readonly iso?: string | undefined;
|
|
294
|
+
readonly city?: string | undefined;
|
|
295
|
+
readonly region?: string | undefined;
|
|
296
|
+
readonly source?: string | undefined;
|
|
297
|
+
readonly country?: string | undefined;
|
|
298
|
+
readonly currency?: string | undefined;
|
|
299
|
+
readonly latitude?: string | undefined;
|
|
300
|
+
readonly timezone?: string | undefined;
|
|
301
|
+
readonly continent?: string | undefined;
|
|
302
|
+
readonly longitude?: string | undefined;
|
|
303
|
+
} | undefined;
|
|
304
|
+
readonly lastActivity: string;
|
|
305
|
+
readonly createdAt?: string | undefined;
|
|
306
|
+
readonly updatedAt?: string | undefined;
|
|
307
|
+
readonly user?: /*elided*/ any | undefined;
|
|
308
|
+
}[] | undefined;
|
|
309
|
+
readonly devices?: readonly {
|
|
310
|
+
readonly id?: number | undefined;
|
|
311
|
+
readonly userId?: number | undefined;
|
|
312
|
+
readonly deviceId?: string | undefined;
|
|
313
|
+
readonly data?: any;
|
|
314
|
+
readonly isActive?: boolean | undefined;
|
|
315
|
+
readonly createdAt?: string | undefined;
|
|
316
|
+
readonly updatedAt?: string | undefined;
|
|
317
|
+
readonly user?: /*elided*/ any | undefined;
|
|
318
|
+
}[] | undefined;
|
|
319
|
+
readonly place?: {
|
|
320
|
+
readonly id?: number | undefined;
|
|
321
|
+
readonly userId?: number | undefined;
|
|
322
|
+
readonly country?: string | undefined;
|
|
323
|
+
readonly position?: string | undefined;
|
|
324
|
+
readonly locality?: string | undefined;
|
|
325
|
+
readonly administrativeArea?: string | undefined;
|
|
326
|
+
readonly postalCode?: string | undefined;
|
|
327
|
+
readonly name?: string | undefined;
|
|
328
|
+
readonly subAdministrativeArea?: string | undefined;
|
|
329
|
+
readonly isoCountryCode?: string | undefined;
|
|
330
|
+
readonly subLocality?: string | undefined;
|
|
331
|
+
readonly subThoroughfare?: string | undefined;
|
|
332
|
+
readonly thoroughfare?: string | undefined;
|
|
333
|
+
readonly street?: string | undefined;
|
|
334
|
+
readonly createdAt?: string | undefined;
|
|
335
|
+
readonly updatedAt?: string | undefined;
|
|
336
|
+
readonly user?: /*elided*/ any | undefined;
|
|
337
|
+
} | undefined;
|
|
338
|
+
} | undefined;
|
|
339
|
+
readonly categories?: readonly {
|
|
340
|
+
readonly id?: number | undefined;
|
|
341
|
+
readonly foreignId?: number | null | undefined;
|
|
342
|
+
readonly name: string;
|
|
343
|
+
readonly slug?: string | undefined;
|
|
344
|
+
readonly color?: string | undefined;
|
|
345
|
+
readonly description?: string | null | undefined;
|
|
346
|
+
readonly parentId?: number | null | undefined;
|
|
347
|
+
readonly position?: number | null | undefined;
|
|
348
|
+
readonly isActive: boolean;
|
|
349
|
+
readonly image?: string | null | undefined;
|
|
350
|
+
readonly imageUrl?: string | null | undefined;
|
|
351
|
+
readonly deletedAt?: string | null | undefined;
|
|
352
|
+
readonly createdAt?: string | undefined;
|
|
353
|
+
readonly updatedAt?: string | undefined;
|
|
354
|
+
readonly articles?: readonly /*elided*/ any[] | undefined;
|
|
355
|
+
readonly articlesCount?: number | undefined;
|
|
356
|
+
}[] | undefined;
|
|
357
|
+
readonly categoriesCount?: number | undefined;
|
|
358
|
+
readonly tags?: readonly {
|
|
359
|
+
readonly id?: number | undefined;
|
|
360
|
+
readonly foreignId?: number | null | undefined;
|
|
361
|
+
readonly name: string;
|
|
362
|
+
readonly description?: string | null | undefined;
|
|
363
|
+
readonly slug?: string | undefined;
|
|
364
|
+
readonly isActive: boolean;
|
|
365
|
+
readonly deletedAt?: string | null | undefined;
|
|
366
|
+
readonly createdAt?: string | undefined;
|
|
367
|
+
readonly updatedAt?: string | undefined;
|
|
368
|
+
readonly articles?: readonly /*elided*/ any[] | undefined;
|
|
369
|
+
readonly articlesCount?: number | undefined;
|
|
370
|
+
}[] | undefined;
|
|
371
|
+
readonly tagsCount?: number | undefined;
|
|
372
|
+
readonly comments?: readonly {
|
|
373
|
+
readonly id?: number | undefined;
|
|
374
|
+
readonly foreignId?: number | null | undefined;
|
|
375
|
+
readonly authorId?: number | null | undefined;
|
|
376
|
+
readonly articleId?: number | undefined;
|
|
377
|
+
readonly name?: string | null | undefined;
|
|
378
|
+
readonly content: string;
|
|
379
|
+
readonly email?: string | null | undefined;
|
|
380
|
+
readonly isActive: boolean;
|
|
381
|
+
readonly deletedAt?: string | null | undefined;
|
|
382
|
+
readonly createdAt?: string | undefined;
|
|
383
|
+
readonly updatedAt?: string | undefined;
|
|
384
|
+
readonly author?: {
|
|
385
|
+
readonly id?: number | undefined;
|
|
386
|
+
readonly uid?: string | undefined;
|
|
387
|
+
readonly avatar: string;
|
|
388
|
+
readonly avatarUrl: string;
|
|
389
|
+
readonly fullname: string;
|
|
390
|
+
readonly lastname: string;
|
|
391
|
+
readonly firstname: string;
|
|
392
|
+
readonly email: string;
|
|
393
|
+
readonly emailVerifiedAt?: string | undefined;
|
|
394
|
+
readonly password: string;
|
|
395
|
+
readonly phone?: string | undefined;
|
|
396
|
+
readonly address?: string | undefined;
|
|
397
|
+
readonly location?: {
|
|
398
|
+
readonly lat: number;
|
|
399
|
+
readonly lng: number;
|
|
400
|
+
} | null | undefined;
|
|
401
|
+
readonly profileType: import("@creopse/utils").ProfileType | string;
|
|
402
|
+
readonly profileId: number;
|
|
403
|
+
readonly accountStatus: import("@creopse/utils").AccountStatus;
|
|
404
|
+
readonly preferences?: any;
|
|
405
|
+
readonly authType?: import("@creopse/utils").AuthType | undefined;
|
|
406
|
+
readonly lastLoggedInAt?: string | undefined;
|
|
407
|
+
readonly rememberToken?: string | undefined;
|
|
408
|
+
readonly deletedAt?: string | undefined;
|
|
409
|
+
readonly createdAt?: string | undefined;
|
|
410
|
+
readonly updatedAt?: string | undefined;
|
|
411
|
+
readonly permissions?: readonly {
|
|
412
|
+
readonly id?: number | undefined;
|
|
413
|
+
readonly name: string;
|
|
414
|
+
readonly displayName: string;
|
|
415
|
+
readonly description: string;
|
|
416
|
+
readonly createdAt?: string | undefined;
|
|
417
|
+
readonly updatedAt?: string | undefined;
|
|
418
|
+
}[] | undefined;
|
|
419
|
+
readonly profile?: import("@creopse/utils").AdminProfileModel | any;
|
|
420
|
+
readonly roles?: readonly {
|
|
421
|
+
readonly id?: number | undefined;
|
|
422
|
+
readonly name: string;
|
|
423
|
+
readonly displayName: string;
|
|
424
|
+
readonly description: string;
|
|
425
|
+
readonly permissions?: readonly {
|
|
426
|
+
readonly id?: number | undefined;
|
|
427
|
+
readonly name: string;
|
|
428
|
+
readonly displayName: string;
|
|
429
|
+
readonly description: string;
|
|
430
|
+
readonly createdAt?: string | undefined;
|
|
431
|
+
readonly updatedAt?: string | undefined;
|
|
432
|
+
}[] | undefined;
|
|
433
|
+
readonly createdAt?: string | undefined;
|
|
434
|
+
readonly updatedAt?: string | undefined;
|
|
435
|
+
}[] | undefined;
|
|
436
|
+
readonly sessions?: readonly {
|
|
437
|
+
readonly id?: number | undefined;
|
|
438
|
+
readonly userId?: number | undefined;
|
|
439
|
+
readonly ipAddress: string;
|
|
440
|
+
readonly userAgent: string;
|
|
441
|
+
readonly locationData?: {
|
|
442
|
+
readonly ip: string;
|
|
443
|
+
readonly iso?: string | undefined;
|
|
444
|
+
readonly city?: string | undefined;
|
|
445
|
+
readonly region?: string | undefined;
|
|
446
|
+
readonly source?: string | undefined;
|
|
447
|
+
readonly country?: string | undefined;
|
|
448
|
+
readonly currency?: string | undefined;
|
|
449
|
+
readonly latitude?: string | undefined;
|
|
450
|
+
readonly timezone?: string | undefined;
|
|
451
|
+
readonly continent?: string | undefined;
|
|
452
|
+
readonly longitude?: string | undefined;
|
|
453
|
+
} | undefined;
|
|
454
|
+
readonly lastActivity: string;
|
|
455
|
+
readonly createdAt?: string | undefined;
|
|
456
|
+
readonly updatedAt?: string | undefined;
|
|
457
|
+
readonly user?: /*elided*/ any | undefined;
|
|
458
|
+
}[] | undefined;
|
|
459
|
+
readonly devices?: readonly {
|
|
460
|
+
readonly id?: number | undefined;
|
|
461
|
+
readonly userId?: number | undefined;
|
|
462
|
+
readonly deviceId?: string | undefined;
|
|
463
|
+
readonly data?: any;
|
|
464
|
+
readonly isActive?: boolean | undefined;
|
|
465
|
+
readonly createdAt?: string | undefined;
|
|
466
|
+
readonly updatedAt?: string | undefined;
|
|
467
|
+
readonly user?: /*elided*/ any | undefined;
|
|
468
|
+
}[] | undefined;
|
|
469
|
+
readonly place?: {
|
|
470
|
+
readonly id?: number | undefined;
|
|
471
|
+
readonly userId?: number | undefined;
|
|
472
|
+
readonly country?: string | undefined;
|
|
473
|
+
readonly position?: string | undefined;
|
|
474
|
+
readonly locality?: string | undefined;
|
|
475
|
+
readonly administrativeArea?: string | undefined;
|
|
476
|
+
readonly postalCode?: string | undefined;
|
|
477
|
+
readonly name?: string | undefined;
|
|
478
|
+
readonly subAdministrativeArea?: string | undefined;
|
|
479
|
+
readonly isoCountryCode?: string | undefined;
|
|
480
|
+
readonly subLocality?: string | undefined;
|
|
481
|
+
readonly subThoroughfare?: string | undefined;
|
|
482
|
+
readonly thoroughfare?: string | undefined;
|
|
483
|
+
readonly street?: string | undefined;
|
|
484
|
+
readonly createdAt?: string | undefined;
|
|
485
|
+
readonly updatedAt?: string | undefined;
|
|
486
|
+
readonly user?: /*elided*/ any | undefined;
|
|
487
|
+
} | undefined;
|
|
488
|
+
} | undefined;
|
|
489
|
+
readonly article?: /*elided*/ any | undefined;
|
|
490
|
+
}[] | undefined;
|
|
491
|
+
readonly commentsCount?: number | undefined;
|
|
492
|
+
}[] | undefined;
|
|
493
|
+
readonly paginatedArticles?: {
|
|
494
|
+
readonly data: readonly {
|
|
495
|
+
readonly id?: number | undefined;
|
|
496
|
+
readonly foreignId?: number | null | undefined;
|
|
497
|
+
readonly authorId?: number | undefined;
|
|
498
|
+
readonly publisherId?: number | undefined;
|
|
499
|
+
readonly title: string;
|
|
500
|
+
readonly slug: string;
|
|
501
|
+
readonly summary?: string | null | undefined;
|
|
502
|
+
readonly content?: string | null | undefined;
|
|
503
|
+
readonly featuredImage?: string | null | undefined;
|
|
504
|
+
readonly featuredImageUrl?: string | null | undefined;
|
|
505
|
+
readonly foreignFeaturedImage?: string | null | undefined;
|
|
506
|
+
readonly legend?: string | null | undefined;
|
|
507
|
+
readonly allowComments: boolean;
|
|
508
|
+
readonly isHeadline: boolean;
|
|
509
|
+
readonly status: import("@creopse/utils").NewsArticleStatus;
|
|
510
|
+
readonly publishedAt?: string | null | undefined;
|
|
511
|
+
readonly deletedAt?: string | null | undefined;
|
|
512
|
+
readonly createdAt?: string | undefined;
|
|
513
|
+
readonly updatedAt?: string | undefined;
|
|
514
|
+
readonly author?: {
|
|
515
|
+
readonly id?: number | undefined;
|
|
516
|
+
readonly uid?: string | undefined;
|
|
517
|
+
readonly avatar: string;
|
|
518
|
+
readonly avatarUrl: string;
|
|
519
|
+
readonly fullname: string;
|
|
520
|
+
readonly lastname: string;
|
|
521
|
+
readonly firstname: string;
|
|
522
|
+
readonly email: string;
|
|
523
|
+
readonly emailVerifiedAt?: string | undefined;
|
|
524
|
+
readonly password: string;
|
|
525
|
+
readonly phone?: string | undefined;
|
|
526
|
+
readonly address?: string | undefined;
|
|
527
|
+
readonly location?: {
|
|
528
|
+
readonly lat: number;
|
|
529
|
+
readonly lng: number;
|
|
530
|
+
} | null | undefined;
|
|
531
|
+
readonly profileType: import("@creopse/utils").ProfileType | string;
|
|
532
|
+
readonly profileId: number;
|
|
533
|
+
readonly accountStatus: import("@creopse/utils").AccountStatus;
|
|
534
|
+
readonly preferences?: any;
|
|
535
|
+
readonly authType?: import("@creopse/utils").AuthType | undefined;
|
|
536
|
+
readonly lastLoggedInAt?: string | undefined;
|
|
537
|
+
readonly rememberToken?: string | undefined;
|
|
538
|
+
readonly deletedAt?: string | undefined;
|
|
539
|
+
readonly createdAt?: string | undefined;
|
|
540
|
+
readonly updatedAt?: string | undefined;
|
|
541
|
+
readonly permissions?: readonly {
|
|
542
|
+
readonly id?: number | undefined;
|
|
543
|
+
readonly name: string;
|
|
544
|
+
readonly displayName: string;
|
|
545
|
+
readonly description: string;
|
|
546
|
+
readonly createdAt?: string | undefined;
|
|
547
|
+
readonly updatedAt?: string | undefined;
|
|
548
|
+
}[] | undefined;
|
|
549
|
+
readonly profile?: import("@creopse/utils").AdminProfileModel | any;
|
|
550
|
+
readonly roles?: readonly {
|
|
551
|
+
readonly id?: number | undefined;
|
|
552
|
+
readonly name: string;
|
|
553
|
+
readonly displayName: string;
|
|
554
|
+
readonly description: string;
|
|
555
|
+
readonly permissions?: readonly {
|
|
556
|
+
readonly id?: number | undefined;
|
|
557
|
+
readonly name: string;
|
|
558
|
+
readonly displayName: string;
|
|
559
|
+
readonly description: string;
|
|
560
|
+
readonly createdAt?: string | undefined;
|
|
561
|
+
readonly updatedAt?: string | undefined;
|
|
562
|
+
}[] | undefined;
|
|
563
|
+
readonly createdAt?: string | undefined;
|
|
564
|
+
readonly updatedAt?: string | undefined;
|
|
565
|
+
}[] | undefined;
|
|
566
|
+
readonly sessions?: readonly {
|
|
567
|
+
readonly id?: number | undefined;
|
|
568
|
+
readonly userId?: number | undefined;
|
|
569
|
+
readonly ipAddress: string;
|
|
570
|
+
readonly userAgent: string;
|
|
571
|
+
readonly locationData?: {
|
|
572
|
+
readonly ip: string;
|
|
573
|
+
readonly iso?: string | undefined;
|
|
574
|
+
readonly city?: string | undefined;
|
|
575
|
+
readonly region?: string | undefined;
|
|
576
|
+
readonly source?: string | undefined;
|
|
577
|
+
readonly country?: string | undefined;
|
|
578
|
+
readonly currency?: string | undefined;
|
|
579
|
+
readonly latitude?: string | undefined;
|
|
580
|
+
readonly timezone?: string | undefined;
|
|
581
|
+
readonly continent?: string | undefined;
|
|
582
|
+
readonly longitude?: string | undefined;
|
|
583
|
+
} | undefined;
|
|
584
|
+
readonly lastActivity: string;
|
|
585
|
+
readonly createdAt?: string | undefined;
|
|
586
|
+
readonly updatedAt?: string | undefined;
|
|
587
|
+
readonly user?: /*elided*/ any | undefined;
|
|
588
|
+
}[] | undefined;
|
|
589
|
+
readonly devices?: readonly {
|
|
590
|
+
readonly id?: number | undefined;
|
|
591
|
+
readonly userId?: number | undefined;
|
|
592
|
+
readonly deviceId?: string | undefined;
|
|
593
|
+
readonly data?: any;
|
|
594
|
+
readonly isActive?: boolean | undefined;
|
|
595
|
+
readonly createdAt?: string | undefined;
|
|
596
|
+
readonly updatedAt?: string | undefined;
|
|
597
|
+
readonly user?: /*elided*/ any | undefined;
|
|
598
|
+
}[] | undefined;
|
|
599
|
+
readonly place?: {
|
|
600
|
+
readonly id?: number | undefined;
|
|
601
|
+
readonly userId?: number | undefined;
|
|
602
|
+
readonly country?: string | undefined;
|
|
603
|
+
readonly position?: string | undefined;
|
|
604
|
+
readonly locality?: string | undefined;
|
|
605
|
+
readonly administrativeArea?: string | undefined;
|
|
606
|
+
readonly postalCode?: string | undefined;
|
|
607
|
+
readonly name?: string | undefined;
|
|
608
|
+
readonly subAdministrativeArea?: string | undefined;
|
|
609
|
+
readonly isoCountryCode?: string | undefined;
|
|
610
|
+
readonly subLocality?: string | undefined;
|
|
611
|
+
readonly subThoroughfare?: string | undefined;
|
|
612
|
+
readonly thoroughfare?: string | undefined;
|
|
613
|
+
readonly street?: string | undefined;
|
|
614
|
+
readonly createdAt?: string | undefined;
|
|
615
|
+
readonly updatedAt?: string | undefined;
|
|
616
|
+
readonly user?: /*elided*/ any | undefined;
|
|
617
|
+
} | undefined;
|
|
618
|
+
} | undefined;
|
|
619
|
+
readonly publisher?: {
|
|
620
|
+
readonly id?: number | undefined;
|
|
621
|
+
readonly uid?: string | undefined;
|
|
622
|
+
readonly avatar: string;
|
|
623
|
+
readonly avatarUrl: string;
|
|
624
|
+
readonly fullname: string;
|
|
625
|
+
readonly lastname: string;
|
|
626
|
+
readonly firstname: string;
|
|
627
|
+
readonly email: string;
|
|
628
|
+
readonly emailVerifiedAt?: string | undefined;
|
|
629
|
+
readonly password: string;
|
|
630
|
+
readonly phone?: string | undefined;
|
|
631
|
+
readonly address?: string | undefined;
|
|
632
|
+
readonly location?: {
|
|
633
|
+
readonly lat: number;
|
|
634
|
+
readonly lng: number;
|
|
635
|
+
} | null | undefined;
|
|
636
|
+
readonly profileType: import("@creopse/utils").ProfileType | string;
|
|
637
|
+
readonly profileId: number;
|
|
638
|
+
readonly accountStatus: import("@creopse/utils").AccountStatus;
|
|
639
|
+
readonly preferences?: any;
|
|
640
|
+
readonly authType?: import("@creopse/utils").AuthType | undefined;
|
|
641
|
+
readonly lastLoggedInAt?: string | undefined;
|
|
642
|
+
readonly rememberToken?: string | undefined;
|
|
643
|
+
readonly deletedAt?: string | undefined;
|
|
644
|
+
readonly createdAt?: string | undefined;
|
|
645
|
+
readonly updatedAt?: string | undefined;
|
|
646
|
+
readonly permissions?: readonly {
|
|
647
|
+
readonly id?: number | undefined;
|
|
648
|
+
readonly name: string;
|
|
649
|
+
readonly displayName: string;
|
|
650
|
+
readonly description: string;
|
|
651
|
+
readonly createdAt?: string | undefined;
|
|
652
|
+
readonly updatedAt?: string | undefined;
|
|
653
|
+
}[] | undefined;
|
|
654
|
+
readonly profile?: import("@creopse/utils").AdminProfileModel | any;
|
|
655
|
+
readonly roles?: readonly {
|
|
656
|
+
readonly id?: number | undefined;
|
|
657
|
+
readonly name: string;
|
|
658
|
+
readonly displayName: string;
|
|
659
|
+
readonly description: string;
|
|
660
|
+
readonly permissions?: readonly {
|
|
661
|
+
readonly id?: number | undefined;
|
|
662
|
+
readonly name: string;
|
|
663
|
+
readonly displayName: string;
|
|
664
|
+
readonly description: string;
|
|
665
|
+
readonly createdAt?: string | undefined;
|
|
666
|
+
readonly updatedAt?: string | undefined;
|
|
667
|
+
}[] | undefined;
|
|
668
|
+
readonly createdAt?: string | undefined;
|
|
669
|
+
readonly updatedAt?: string | undefined;
|
|
670
|
+
}[] | undefined;
|
|
671
|
+
readonly sessions?: readonly {
|
|
672
|
+
readonly id?: number | undefined;
|
|
673
|
+
readonly userId?: number | undefined;
|
|
674
|
+
readonly ipAddress: string;
|
|
675
|
+
readonly userAgent: string;
|
|
676
|
+
readonly locationData?: {
|
|
677
|
+
readonly ip: string;
|
|
678
|
+
readonly iso?: string | undefined;
|
|
679
|
+
readonly city?: string | undefined;
|
|
680
|
+
readonly region?: string | undefined;
|
|
681
|
+
readonly source?: string | undefined;
|
|
682
|
+
readonly country?: string | undefined;
|
|
683
|
+
readonly currency?: string | undefined;
|
|
684
|
+
readonly latitude?: string | undefined;
|
|
685
|
+
readonly timezone?: string | undefined;
|
|
686
|
+
readonly continent?: string | undefined;
|
|
687
|
+
readonly longitude?: string | undefined;
|
|
688
|
+
} | undefined;
|
|
689
|
+
readonly lastActivity: string;
|
|
690
|
+
readonly createdAt?: string | undefined;
|
|
691
|
+
readonly updatedAt?: string | undefined;
|
|
692
|
+
readonly user?: /*elided*/ any | undefined;
|
|
693
|
+
}[] | undefined;
|
|
694
|
+
readonly devices?: readonly {
|
|
695
|
+
readonly id?: number | undefined;
|
|
696
|
+
readonly userId?: number | undefined;
|
|
697
|
+
readonly deviceId?: string | undefined;
|
|
698
|
+
readonly data?: any;
|
|
699
|
+
readonly isActive?: boolean | undefined;
|
|
700
|
+
readonly createdAt?: string | undefined;
|
|
701
|
+
readonly updatedAt?: string | undefined;
|
|
702
|
+
readonly user?: /*elided*/ any | undefined;
|
|
703
|
+
}[] | undefined;
|
|
704
|
+
readonly place?: {
|
|
705
|
+
readonly id?: number | undefined;
|
|
706
|
+
readonly userId?: number | undefined;
|
|
707
|
+
readonly country?: string | undefined;
|
|
708
|
+
readonly position?: string | undefined;
|
|
709
|
+
readonly locality?: string | undefined;
|
|
710
|
+
readonly administrativeArea?: string | undefined;
|
|
711
|
+
readonly postalCode?: string | undefined;
|
|
712
|
+
readonly name?: string | undefined;
|
|
713
|
+
readonly subAdministrativeArea?: string | undefined;
|
|
714
|
+
readonly isoCountryCode?: string | undefined;
|
|
715
|
+
readonly subLocality?: string | undefined;
|
|
716
|
+
readonly subThoroughfare?: string | undefined;
|
|
717
|
+
readonly thoroughfare?: string | undefined;
|
|
718
|
+
readonly street?: string | undefined;
|
|
719
|
+
readonly createdAt?: string | undefined;
|
|
720
|
+
readonly updatedAt?: string | undefined;
|
|
721
|
+
readonly user?: /*elided*/ any | undefined;
|
|
722
|
+
} | undefined;
|
|
723
|
+
} | undefined;
|
|
724
|
+
readonly categories?: readonly {
|
|
725
|
+
readonly id?: number | undefined;
|
|
726
|
+
readonly foreignId?: number | null | undefined;
|
|
727
|
+
readonly name: string;
|
|
728
|
+
readonly slug?: string | undefined;
|
|
729
|
+
readonly color?: string | undefined;
|
|
730
|
+
readonly description?: string | null | undefined;
|
|
731
|
+
readonly parentId?: number | null | undefined;
|
|
732
|
+
readonly position?: number | null | undefined;
|
|
733
|
+
readonly isActive: boolean;
|
|
734
|
+
readonly image?: string | null | undefined;
|
|
735
|
+
readonly imageUrl?: string | null | undefined;
|
|
736
|
+
readonly deletedAt?: string | null | undefined;
|
|
737
|
+
readonly createdAt?: string | undefined;
|
|
738
|
+
readonly updatedAt?: string | undefined;
|
|
739
|
+
readonly articles?: readonly /*elided*/ any[] | undefined;
|
|
740
|
+
readonly articlesCount?: number | undefined;
|
|
741
|
+
}[] | undefined;
|
|
742
|
+
readonly categoriesCount?: number | undefined;
|
|
743
|
+
readonly tags?: readonly {
|
|
744
|
+
readonly id?: number | undefined;
|
|
745
|
+
readonly foreignId?: number | null | undefined;
|
|
746
|
+
readonly name: string;
|
|
747
|
+
readonly description?: string | null | undefined;
|
|
748
|
+
readonly slug?: string | undefined;
|
|
749
|
+
readonly isActive: boolean;
|
|
750
|
+
readonly deletedAt?: string | null | undefined;
|
|
751
|
+
readonly createdAt?: string | undefined;
|
|
752
|
+
readonly updatedAt?: string | undefined;
|
|
753
|
+
readonly articles?: readonly /*elided*/ any[] | undefined;
|
|
754
|
+
readonly articlesCount?: number | undefined;
|
|
755
|
+
}[] | undefined;
|
|
756
|
+
readonly tagsCount?: number | undefined;
|
|
757
|
+
readonly comments?: readonly {
|
|
758
|
+
readonly id?: number | undefined;
|
|
759
|
+
readonly foreignId?: number | null | undefined;
|
|
760
|
+
readonly authorId?: number | null | undefined;
|
|
761
|
+
readonly articleId?: number | undefined;
|
|
762
|
+
readonly name?: string | null | undefined;
|
|
763
|
+
readonly content: string;
|
|
764
|
+
readonly email?: string | null | undefined;
|
|
765
|
+
readonly isActive: boolean;
|
|
766
|
+
readonly deletedAt?: string | null | undefined;
|
|
767
|
+
readonly createdAt?: string | undefined;
|
|
768
|
+
readonly updatedAt?: string | undefined;
|
|
769
|
+
readonly author?: {
|
|
770
|
+
readonly id?: number | undefined;
|
|
771
|
+
readonly uid?: string | undefined;
|
|
772
|
+
readonly avatar: string;
|
|
773
|
+
readonly avatarUrl: string;
|
|
774
|
+
readonly fullname: string;
|
|
775
|
+
readonly lastname: string;
|
|
776
|
+
readonly firstname: string;
|
|
777
|
+
readonly email: string;
|
|
778
|
+
readonly emailVerifiedAt?: string | undefined;
|
|
779
|
+
readonly password: string;
|
|
780
|
+
readonly phone?: string | undefined;
|
|
781
|
+
readonly address?: string | undefined;
|
|
782
|
+
readonly location?: {
|
|
783
|
+
readonly lat: number;
|
|
784
|
+
readonly lng: number;
|
|
785
|
+
} | null | undefined;
|
|
786
|
+
readonly profileType: import("@creopse/utils").ProfileType | string;
|
|
787
|
+
readonly profileId: number;
|
|
788
|
+
readonly accountStatus: import("@creopse/utils").AccountStatus;
|
|
789
|
+
readonly preferences?: any;
|
|
790
|
+
readonly authType?: import("@creopse/utils").AuthType | undefined;
|
|
791
|
+
readonly lastLoggedInAt?: string | undefined;
|
|
792
|
+
readonly rememberToken?: string | undefined;
|
|
793
|
+
readonly deletedAt?: string | undefined;
|
|
794
|
+
readonly createdAt?: string | undefined;
|
|
795
|
+
readonly updatedAt?: string | undefined;
|
|
796
|
+
readonly permissions?: readonly {
|
|
797
|
+
readonly id?: number | undefined;
|
|
798
|
+
readonly name: string;
|
|
799
|
+
readonly displayName: string;
|
|
800
|
+
readonly description: string;
|
|
801
|
+
readonly createdAt?: string | undefined;
|
|
802
|
+
readonly updatedAt?: string | undefined;
|
|
803
|
+
}[] | undefined;
|
|
804
|
+
readonly profile?: import("@creopse/utils").AdminProfileModel | any;
|
|
805
|
+
readonly roles?: readonly {
|
|
806
|
+
readonly id?: number | undefined;
|
|
807
|
+
readonly name: string;
|
|
808
|
+
readonly displayName: string;
|
|
809
|
+
readonly description: string;
|
|
810
|
+
readonly permissions?: readonly {
|
|
811
|
+
readonly id?: number | undefined;
|
|
812
|
+
readonly name: string;
|
|
813
|
+
readonly displayName: string;
|
|
814
|
+
readonly description: string;
|
|
815
|
+
readonly createdAt?: string | undefined;
|
|
816
|
+
readonly updatedAt?: string | undefined;
|
|
817
|
+
}[] | undefined;
|
|
818
|
+
readonly createdAt?: string | undefined;
|
|
819
|
+
readonly updatedAt?: string | undefined;
|
|
820
|
+
}[] | undefined;
|
|
821
|
+
readonly sessions?: readonly {
|
|
822
|
+
readonly id?: number | undefined;
|
|
823
|
+
readonly userId?: number | undefined;
|
|
824
|
+
readonly ipAddress: string;
|
|
825
|
+
readonly userAgent: string;
|
|
826
|
+
readonly locationData?: {
|
|
827
|
+
readonly ip: string;
|
|
828
|
+
readonly iso?: string | undefined;
|
|
829
|
+
readonly city?: string | undefined;
|
|
830
|
+
readonly region?: string | undefined;
|
|
831
|
+
readonly source?: string | undefined;
|
|
832
|
+
readonly country?: string | undefined;
|
|
833
|
+
readonly currency?: string | undefined;
|
|
834
|
+
readonly latitude?: string | undefined;
|
|
835
|
+
readonly timezone?: string | undefined;
|
|
836
|
+
readonly continent?: string | undefined;
|
|
837
|
+
readonly longitude?: string | undefined;
|
|
838
|
+
} | undefined;
|
|
839
|
+
readonly lastActivity: string;
|
|
840
|
+
readonly createdAt?: string | undefined;
|
|
841
|
+
readonly updatedAt?: string | undefined;
|
|
842
|
+
readonly user?: /*elided*/ any | undefined;
|
|
843
|
+
}[] | undefined;
|
|
844
|
+
readonly devices?: readonly {
|
|
845
|
+
readonly id?: number | undefined;
|
|
846
|
+
readonly userId?: number | undefined;
|
|
847
|
+
readonly deviceId?: string | undefined;
|
|
848
|
+
readonly data?: any;
|
|
849
|
+
readonly isActive?: boolean | undefined;
|
|
850
|
+
readonly createdAt?: string | undefined;
|
|
851
|
+
readonly updatedAt?: string | undefined;
|
|
852
|
+
readonly user?: /*elided*/ any | undefined;
|
|
853
|
+
}[] | undefined;
|
|
854
|
+
readonly place?: {
|
|
855
|
+
readonly id?: number | undefined;
|
|
856
|
+
readonly userId?: number | undefined;
|
|
857
|
+
readonly country?: string | undefined;
|
|
858
|
+
readonly position?: string | undefined;
|
|
859
|
+
readonly locality?: string | undefined;
|
|
860
|
+
readonly administrativeArea?: string | undefined;
|
|
861
|
+
readonly postalCode?: string | undefined;
|
|
862
|
+
readonly name?: string | undefined;
|
|
863
|
+
readonly subAdministrativeArea?: string | undefined;
|
|
864
|
+
readonly isoCountryCode?: string | undefined;
|
|
865
|
+
readonly subLocality?: string | undefined;
|
|
866
|
+
readonly subThoroughfare?: string | undefined;
|
|
867
|
+
readonly thoroughfare?: string | undefined;
|
|
868
|
+
readonly street?: string | undefined;
|
|
869
|
+
readonly createdAt?: string | undefined;
|
|
870
|
+
readonly updatedAt?: string | undefined;
|
|
871
|
+
readonly user?: /*elided*/ any | undefined;
|
|
872
|
+
} | undefined;
|
|
873
|
+
} | undefined;
|
|
874
|
+
readonly article?: /*elided*/ any | undefined;
|
|
875
|
+
}[] | undefined;
|
|
876
|
+
readonly commentsCount?: number | undefined;
|
|
877
|
+
}[];
|
|
878
|
+
readonly meta: {
|
|
879
|
+
readonly current_page: number;
|
|
880
|
+
readonly from: number;
|
|
881
|
+
readonly last_page: number;
|
|
882
|
+
readonly links: readonly {
|
|
883
|
+
readonly url: string;
|
|
884
|
+
readonly label: string;
|
|
885
|
+
readonly active: boolean;
|
|
886
|
+
}[];
|
|
887
|
+
readonly path: string;
|
|
888
|
+
readonly per_page: number;
|
|
889
|
+
readonly to: number;
|
|
890
|
+
readonly total: number;
|
|
891
|
+
};
|
|
892
|
+
readonly links: {
|
|
893
|
+
readonly first: string;
|
|
894
|
+
readonly last: string;
|
|
895
|
+
readonly prev: string;
|
|
896
|
+
readonly next: string;
|
|
897
|
+
};
|
|
898
|
+
} | undefined;
|
|
899
|
+
readonly categories?: readonly {
|
|
900
|
+
readonly id?: number | undefined;
|
|
901
|
+
readonly foreignId?: number | null | undefined;
|
|
902
|
+
readonly name: string;
|
|
903
|
+
readonly slug?: string | undefined;
|
|
904
|
+
readonly color?: string | undefined;
|
|
905
|
+
readonly description?: string | null | undefined;
|
|
906
|
+
readonly parentId?: number | null | undefined;
|
|
907
|
+
readonly position?: number | null | undefined;
|
|
908
|
+
readonly isActive: boolean;
|
|
909
|
+
readonly image?: string | null | undefined;
|
|
910
|
+
readonly imageUrl?: string | null | undefined;
|
|
911
|
+
readonly deletedAt?: string | null | undefined;
|
|
912
|
+
readonly createdAt?: string | undefined;
|
|
913
|
+
readonly updatedAt?: string | undefined;
|
|
914
|
+
readonly articles?: readonly {
|
|
915
|
+
readonly id?: number | undefined;
|
|
916
|
+
readonly foreignId?: number | null | undefined;
|
|
917
|
+
readonly authorId?: number | undefined;
|
|
918
|
+
readonly publisherId?: number | undefined;
|
|
919
|
+
readonly title: string;
|
|
920
|
+
readonly slug: string;
|
|
921
|
+
readonly summary?: string | null | undefined;
|
|
922
|
+
readonly content?: string | null | undefined;
|
|
923
|
+
readonly featuredImage?: string | null | undefined;
|
|
924
|
+
readonly featuredImageUrl?: string | null | undefined;
|
|
925
|
+
readonly foreignFeaturedImage?: string | null | undefined;
|
|
926
|
+
readonly legend?: string | null | undefined;
|
|
927
|
+
readonly allowComments: boolean;
|
|
928
|
+
readonly isHeadline: boolean;
|
|
929
|
+
readonly status: import("@creopse/utils").NewsArticleStatus;
|
|
930
|
+
readonly publishedAt?: string | null | undefined;
|
|
931
|
+
readonly deletedAt?: string | null | undefined;
|
|
932
|
+
readonly createdAt?: string | undefined;
|
|
933
|
+
readonly updatedAt?: string | undefined;
|
|
934
|
+
readonly author?: {
|
|
935
|
+
readonly id?: number | undefined;
|
|
936
|
+
readonly uid?: string | undefined;
|
|
937
|
+
readonly avatar: string;
|
|
938
|
+
readonly avatarUrl: string;
|
|
939
|
+
readonly fullname: string;
|
|
940
|
+
readonly lastname: string;
|
|
941
|
+
readonly firstname: string;
|
|
942
|
+
readonly email: string;
|
|
943
|
+
readonly emailVerifiedAt?: string | undefined;
|
|
944
|
+
readonly password: string;
|
|
945
|
+
readonly phone?: string | undefined;
|
|
946
|
+
readonly address?: string | undefined;
|
|
947
|
+
readonly location?: {
|
|
948
|
+
readonly lat: number;
|
|
949
|
+
readonly lng: number;
|
|
950
|
+
} | null | undefined;
|
|
951
|
+
readonly profileType: import("@creopse/utils").ProfileType | string;
|
|
952
|
+
readonly profileId: number;
|
|
953
|
+
readonly accountStatus: import("@creopse/utils").AccountStatus;
|
|
954
|
+
readonly preferences?: any;
|
|
955
|
+
readonly authType?: import("@creopse/utils").AuthType | undefined;
|
|
956
|
+
readonly lastLoggedInAt?: string | undefined;
|
|
957
|
+
readonly rememberToken?: string | undefined;
|
|
958
|
+
readonly deletedAt?: string | undefined;
|
|
959
|
+
readonly createdAt?: string | undefined;
|
|
960
|
+
readonly updatedAt?: string | undefined;
|
|
961
|
+
readonly permissions?: readonly {
|
|
962
|
+
readonly id?: number | undefined;
|
|
963
|
+
readonly name: string;
|
|
964
|
+
readonly displayName: string;
|
|
965
|
+
readonly description: string;
|
|
966
|
+
readonly createdAt?: string | undefined;
|
|
967
|
+
readonly updatedAt?: string | undefined;
|
|
968
|
+
}[] | undefined;
|
|
969
|
+
readonly profile?: import("@creopse/utils").AdminProfileModel | any;
|
|
970
|
+
readonly roles?: readonly {
|
|
971
|
+
readonly id?: number | undefined;
|
|
972
|
+
readonly name: string;
|
|
973
|
+
readonly displayName: string;
|
|
974
|
+
readonly description: string;
|
|
975
|
+
readonly permissions?: readonly {
|
|
976
|
+
readonly id?: number | undefined;
|
|
977
|
+
readonly name: string;
|
|
978
|
+
readonly displayName: string;
|
|
979
|
+
readonly description: string;
|
|
980
|
+
readonly createdAt?: string | undefined;
|
|
981
|
+
readonly updatedAt?: string | undefined;
|
|
982
|
+
}[] | undefined;
|
|
983
|
+
readonly createdAt?: string | undefined;
|
|
984
|
+
readonly updatedAt?: string | undefined;
|
|
985
|
+
}[] | undefined;
|
|
986
|
+
readonly sessions?: readonly {
|
|
987
|
+
readonly id?: number | undefined;
|
|
988
|
+
readonly userId?: number | undefined;
|
|
989
|
+
readonly ipAddress: string;
|
|
990
|
+
readonly userAgent: string;
|
|
991
|
+
readonly locationData?: {
|
|
992
|
+
readonly ip: string;
|
|
993
|
+
readonly iso?: string | undefined;
|
|
994
|
+
readonly city?: string | undefined;
|
|
995
|
+
readonly region?: string | undefined;
|
|
996
|
+
readonly source?: string | undefined;
|
|
997
|
+
readonly country?: string | undefined;
|
|
998
|
+
readonly currency?: string | undefined;
|
|
999
|
+
readonly latitude?: string | undefined;
|
|
1000
|
+
readonly timezone?: string | undefined;
|
|
1001
|
+
readonly continent?: string | undefined;
|
|
1002
|
+
readonly longitude?: string | undefined;
|
|
1003
|
+
} | undefined;
|
|
1004
|
+
readonly lastActivity: string;
|
|
1005
|
+
readonly createdAt?: string | undefined;
|
|
1006
|
+
readonly updatedAt?: string | undefined;
|
|
1007
|
+
readonly user?: /*elided*/ any | undefined;
|
|
1008
|
+
}[] | undefined;
|
|
1009
|
+
readonly devices?: readonly {
|
|
1010
|
+
readonly id?: number | undefined;
|
|
1011
|
+
readonly userId?: number | undefined;
|
|
1012
|
+
readonly deviceId?: string | undefined;
|
|
1013
|
+
readonly data?: any;
|
|
1014
|
+
readonly isActive?: boolean | undefined;
|
|
1015
|
+
readonly createdAt?: string | undefined;
|
|
1016
|
+
readonly updatedAt?: string | undefined;
|
|
1017
|
+
readonly user?: /*elided*/ any | undefined;
|
|
1018
|
+
}[] | undefined;
|
|
1019
|
+
readonly place?: {
|
|
1020
|
+
readonly id?: number | undefined;
|
|
1021
|
+
readonly userId?: number | undefined;
|
|
1022
|
+
readonly country?: string | undefined;
|
|
1023
|
+
readonly position?: string | undefined;
|
|
1024
|
+
readonly locality?: string | undefined;
|
|
1025
|
+
readonly administrativeArea?: string | undefined;
|
|
1026
|
+
readonly postalCode?: string | undefined;
|
|
1027
|
+
readonly name?: string | undefined;
|
|
1028
|
+
readonly subAdministrativeArea?: string | undefined;
|
|
1029
|
+
readonly isoCountryCode?: string | undefined;
|
|
1030
|
+
readonly subLocality?: string | undefined;
|
|
1031
|
+
readonly subThoroughfare?: string | undefined;
|
|
1032
|
+
readonly thoroughfare?: string | undefined;
|
|
1033
|
+
readonly street?: string | undefined;
|
|
1034
|
+
readonly createdAt?: string | undefined;
|
|
1035
|
+
readonly updatedAt?: string | undefined;
|
|
1036
|
+
readonly user?: /*elided*/ any | undefined;
|
|
1037
|
+
} | undefined;
|
|
1038
|
+
} | undefined;
|
|
1039
|
+
readonly publisher?: {
|
|
1040
|
+
readonly id?: number | undefined;
|
|
1041
|
+
readonly uid?: string | undefined;
|
|
1042
|
+
readonly avatar: string;
|
|
1043
|
+
readonly avatarUrl: string;
|
|
1044
|
+
readonly fullname: string;
|
|
1045
|
+
readonly lastname: string;
|
|
1046
|
+
readonly firstname: string;
|
|
1047
|
+
readonly email: string;
|
|
1048
|
+
readonly emailVerifiedAt?: string | undefined;
|
|
1049
|
+
readonly password: string;
|
|
1050
|
+
readonly phone?: string | undefined;
|
|
1051
|
+
readonly address?: string | undefined;
|
|
1052
|
+
readonly location?: {
|
|
1053
|
+
readonly lat: number;
|
|
1054
|
+
readonly lng: number;
|
|
1055
|
+
} | null | undefined;
|
|
1056
|
+
readonly profileType: import("@creopse/utils").ProfileType | string;
|
|
1057
|
+
readonly profileId: number;
|
|
1058
|
+
readonly accountStatus: import("@creopse/utils").AccountStatus;
|
|
1059
|
+
readonly preferences?: any;
|
|
1060
|
+
readonly authType?: import("@creopse/utils").AuthType | undefined;
|
|
1061
|
+
readonly lastLoggedInAt?: string | undefined;
|
|
1062
|
+
readonly rememberToken?: string | undefined;
|
|
1063
|
+
readonly deletedAt?: string | undefined;
|
|
1064
|
+
readonly createdAt?: string | undefined;
|
|
1065
|
+
readonly updatedAt?: string | undefined;
|
|
1066
|
+
readonly permissions?: readonly {
|
|
1067
|
+
readonly id?: number | undefined;
|
|
1068
|
+
readonly name: string;
|
|
1069
|
+
readonly displayName: string;
|
|
1070
|
+
readonly description: string;
|
|
1071
|
+
readonly createdAt?: string | undefined;
|
|
1072
|
+
readonly updatedAt?: string | undefined;
|
|
1073
|
+
}[] | undefined;
|
|
1074
|
+
readonly profile?: import("@creopse/utils").AdminProfileModel | any;
|
|
1075
|
+
readonly roles?: readonly {
|
|
1076
|
+
readonly id?: number | undefined;
|
|
1077
|
+
readonly name: string;
|
|
1078
|
+
readonly displayName: string;
|
|
1079
|
+
readonly description: string;
|
|
1080
|
+
readonly permissions?: readonly {
|
|
1081
|
+
readonly id?: number | undefined;
|
|
1082
|
+
readonly name: string;
|
|
1083
|
+
readonly displayName: string;
|
|
1084
|
+
readonly description: string;
|
|
1085
|
+
readonly createdAt?: string | undefined;
|
|
1086
|
+
readonly updatedAt?: string | undefined;
|
|
1087
|
+
}[] | undefined;
|
|
1088
|
+
readonly createdAt?: string | undefined;
|
|
1089
|
+
readonly updatedAt?: string | undefined;
|
|
1090
|
+
}[] | undefined;
|
|
1091
|
+
readonly sessions?: readonly {
|
|
1092
|
+
readonly id?: number | undefined;
|
|
1093
|
+
readonly userId?: number | undefined;
|
|
1094
|
+
readonly ipAddress: string;
|
|
1095
|
+
readonly userAgent: string;
|
|
1096
|
+
readonly locationData?: {
|
|
1097
|
+
readonly ip: string;
|
|
1098
|
+
readonly iso?: string | undefined;
|
|
1099
|
+
readonly city?: string | undefined;
|
|
1100
|
+
readonly region?: string | undefined;
|
|
1101
|
+
readonly source?: string | undefined;
|
|
1102
|
+
readonly country?: string | undefined;
|
|
1103
|
+
readonly currency?: string | undefined;
|
|
1104
|
+
readonly latitude?: string | undefined;
|
|
1105
|
+
readonly timezone?: string | undefined;
|
|
1106
|
+
readonly continent?: string | undefined;
|
|
1107
|
+
readonly longitude?: string | undefined;
|
|
1108
|
+
} | undefined;
|
|
1109
|
+
readonly lastActivity: string;
|
|
1110
|
+
readonly createdAt?: string | undefined;
|
|
1111
|
+
readonly updatedAt?: string | undefined;
|
|
1112
|
+
readonly user?: /*elided*/ any | undefined;
|
|
1113
|
+
}[] | undefined;
|
|
1114
|
+
readonly devices?: readonly {
|
|
1115
|
+
readonly id?: number | undefined;
|
|
1116
|
+
readonly userId?: number | undefined;
|
|
1117
|
+
readonly deviceId?: string | undefined;
|
|
1118
|
+
readonly data?: any;
|
|
1119
|
+
readonly isActive?: boolean | undefined;
|
|
1120
|
+
readonly createdAt?: string | undefined;
|
|
1121
|
+
readonly updatedAt?: string | undefined;
|
|
1122
|
+
readonly user?: /*elided*/ any | undefined;
|
|
1123
|
+
}[] | undefined;
|
|
1124
|
+
readonly place?: {
|
|
1125
|
+
readonly id?: number | undefined;
|
|
1126
|
+
readonly userId?: number | undefined;
|
|
1127
|
+
readonly country?: string | undefined;
|
|
1128
|
+
readonly position?: string | undefined;
|
|
1129
|
+
readonly locality?: string | undefined;
|
|
1130
|
+
readonly administrativeArea?: string | undefined;
|
|
1131
|
+
readonly postalCode?: string | undefined;
|
|
1132
|
+
readonly name?: string | undefined;
|
|
1133
|
+
readonly subAdministrativeArea?: string | undefined;
|
|
1134
|
+
readonly isoCountryCode?: string | undefined;
|
|
1135
|
+
readonly subLocality?: string | undefined;
|
|
1136
|
+
readonly subThoroughfare?: string | undefined;
|
|
1137
|
+
readonly thoroughfare?: string | undefined;
|
|
1138
|
+
readonly street?: string | undefined;
|
|
1139
|
+
readonly createdAt?: string | undefined;
|
|
1140
|
+
readonly updatedAt?: string | undefined;
|
|
1141
|
+
readonly user?: /*elided*/ any | undefined;
|
|
1142
|
+
} | undefined;
|
|
1143
|
+
} | undefined;
|
|
1144
|
+
readonly categories?: readonly /*elided*/ any[] | undefined;
|
|
1145
|
+
readonly categoriesCount?: number | undefined;
|
|
1146
|
+
readonly tags?: readonly {
|
|
1147
|
+
readonly id?: number | undefined;
|
|
1148
|
+
readonly foreignId?: number | null | undefined;
|
|
1149
|
+
readonly name: string;
|
|
1150
|
+
readonly description?: string | null | undefined;
|
|
1151
|
+
readonly slug?: string | undefined;
|
|
1152
|
+
readonly isActive: boolean;
|
|
1153
|
+
readonly deletedAt?: string | null | undefined;
|
|
1154
|
+
readonly createdAt?: string | undefined;
|
|
1155
|
+
readonly updatedAt?: string | undefined;
|
|
1156
|
+
readonly articles?: readonly /*elided*/ any[] | undefined;
|
|
1157
|
+
readonly articlesCount?: number | undefined;
|
|
1158
|
+
}[] | undefined;
|
|
1159
|
+
readonly tagsCount?: number | undefined;
|
|
1160
|
+
readonly comments?: readonly {
|
|
1161
|
+
readonly id?: number | undefined;
|
|
1162
|
+
readonly foreignId?: number | null | undefined;
|
|
1163
|
+
readonly authorId?: number | null | undefined;
|
|
1164
|
+
readonly articleId?: number | undefined;
|
|
1165
|
+
readonly name?: string | null | undefined;
|
|
1166
|
+
readonly content: string;
|
|
1167
|
+
readonly email?: string | null | undefined;
|
|
1168
|
+
readonly isActive: boolean;
|
|
1169
|
+
readonly deletedAt?: string | null | undefined;
|
|
1170
|
+
readonly createdAt?: string | undefined;
|
|
1171
|
+
readonly updatedAt?: string | undefined;
|
|
1172
|
+
readonly author?: {
|
|
1173
|
+
readonly id?: number | undefined;
|
|
1174
|
+
readonly uid?: string | undefined;
|
|
1175
|
+
readonly avatar: string;
|
|
1176
|
+
readonly avatarUrl: string;
|
|
1177
|
+
readonly fullname: string;
|
|
1178
|
+
readonly lastname: string;
|
|
1179
|
+
readonly firstname: string;
|
|
1180
|
+
readonly email: string;
|
|
1181
|
+
readonly emailVerifiedAt?: string | undefined;
|
|
1182
|
+
readonly password: string;
|
|
1183
|
+
readonly phone?: string | undefined;
|
|
1184
|
+
readonly address?: string | undefined;
|
|
1185
|
+
readonly location?: {
|
|
1186
|
+
readonly lat: number;
|
|
1187
|
+
readonly lng: number;
|
|
1188
|
+
} | null | undefined;
|
|
1189
|
+
readonly profileType: import("@creopse/utils").ProfileType | string;
|
|
1190
|
+
readonly profileId: number;
|
|
1191
|
+
readonly accountStatus: import("@creopse/utils").AccountStatus;
|
|
1192
|
+
readonly preferences?: any;
|
|
1193
|
+
readonly authType?: import("@creopse/utils").AuthType | undefined;
|
|
1194
|
+
readonly lastLoggedInAt?: string | undefined;
|
|
1195
|
+
readonly rememberToken?: string | undefined;
|
|
1196
|
+
readonly deletedAt?: string | undefined;
|
|
1197
|
+
readonly createdAt?: string | undefined;
|
|
1198
|
+
readonly updatedAt?: string | undefined;
|
|
1199
|
+
readonly permissions?: readonly {
|
|
1200
|
+
readonly id?: number | undefined;
|
|
1201
|
+
readonly name: string;
|
|
1202
|
+
readonly displayName: string;
|
|
1203
|
+
readonly description: string;
|
|
1204
|
+
readonly createdAt?: string | undefined;
|
|
1205
|
+
readonly updatedAt?: string | undefined;
|
|
1206
|
+
}[] | undefined;
|
|
1207
|
+
readonly profile?: import("@creopse/utils").AdminProfileModel | any;
|
|
1208
|
+
readonly roles?: readonly {
|
|
1209
|
+
readonly id?: number | undefined;
|
|
1210
|
+
readonly name: string;
|
|
1211
|
+
readonly displayName: string;
|
|
1212
|
+
readonly description: string;
|
|
1213
|
+
readonly permissions?: readonly {
|
|
1214
|
+
readonly id?: number | undefined;
|
|
1215
|
+
readonly name: string;
|
|
1216
|
+
readonly displayName: string;
|
|
1217
|
+
readonly description: string;
|
|
1218
|
+
readonly createdAt?: string | undefined;
|
|
1219
|
+
readonly updatedAt?: string | undefined;
|
|
1220
|
+
}[] | undefined;
|
|
1221
|
+
readonly createdAt?: string | undefined;
|
|
1222
|
+
readonly updatedAt?: string | undefined;
|
|
1223
|
+
}[] | undefined;
|
|
1224
|
+
readonly sessions?: readonly {
|
|
1225
|
+
readonly id?: number | undefined;
|
|
1226
|
+
readonly userId?: number | undefined;
|
|
1227
|
+
readonly ipAddress: string;
|
|
1228
|
+
readonly userAgent: string;
|
|
1229
|
+
readonly locationData?: {
|
|
1230
|
+
readonly ip: string;
|
|
1231
|
+
readonly iso?: string | undefined;
|
|
1232
|
+
readonly city?: string | undefined;
|
|
1233
|
+
readonly region?: string | undefined;
|
|
1234
|
+
readonly source?: string | undefined;
|
|
1235
|
+
readonly country?: string | undefined;
|
|
1236
|
+
readonly currency?: string | undefined;
|
|
1237
|
+
readonly latitude?: string | undefined;
|
|
1238
|
+
readonly timezone?: string | undefined;
|
|
1239
|
+
readonly continent?: string | undefined;
|
|
1240
|
+
readonly longitude?: string | undefined;
|
|
1241
|
+
} | undefined;
|
|
1242
|
+
readonly lastActivity: string;
|
|
1243
|
+
readonly createdAt?: string | undefined;
|
|
1244
|
+
readonly updatedAt?: string | undefined;
|
|
1245
|
+
readonly user?: /*elided*/ any | undefined;
|
|
1246
|
+
}[] | undefined;
|
|
1247
|
+
readonly devices?: readonly {
|
|
1248
|
+
readonly id?: number | undefined;
|
|
1249
|
+
readonly userId?: number | undefined;
|
|
1250
|
+
readonly deviceId?: string | undefined;
|
|
1251
|
+
readonly data?: any;
|
|
1252
|
+
readonly isActive?: boolean | undefined;
|
|
1253
|
+
readonly createdAt?: string | undefined;
|
|
1254
|
+
readonly updatedAt?: string | undefined;
|
|
1255
|
+
readonly user?: /*elided*/ any | undefined;
|
|
1256
|
+
}[] | undefined;
|
|
1257
|
+
readonly place?: {
|
|
1258
|
+
readonly id?: number | undefined;
|
|
1259
|
+
readonly userId?: number | undefined;
|
|
1260
|
+
readonly country?: string | undefined;
|
|
1261
|
+
readonly position?: string | undefined;
|
|
1262
|
+
readonly locality?: string | undefined;
|
|
1263
|
+
readonly administrativeArea?: string | undefined;
|
|
1264
|
+
readonly postalCode?: string | undefined;
|
|
1265
|
+
readonly name?: string | undefined;
|
|
1266
|
+
readonly subAdministrativeArea?: string | undefined;
|
|
1267
|
+
readonly isoCountryCode?: string | undefined;
|
|
1268
|
+
readonly subLocality?: string | undefined;
|
|
1269
|
+
readonly subThoroughfare?: string | undefined;
|
|
1270
|
+
readonly thoroughfare?: string | undefined;
|
|
1271
|
+
readonly street?: string | undefined;
|
|
1272
|
+
readonly createdAt?: string | undefined;
|
|
1273
|
+
readonly updatedAt?: string | undefined;
|
|
1274
|
+
readonly user?: /*elided*/ any | undefined;
|
|
1275
|
+
} | undefined;
|
|
1276
|
+
} | undefined;
|
|
1277
|
+
readonly article?: /*elided*/ any | undefined;
|
|
1278
|
+
}[] | undefined;
|
|
1279
|
+
readonly commentsCount?: number | undefined;
|
|
1280
|
+
}[] | undefined;
|
|
1281
|
+
readonly articlesCount?: number | undefined;
|
|
1282
|
+
}[] | undefined;
|
|
1283
|
+
readonly tags?: readonly {
|
|
1284
|
+
readonly id?: number | undefined;
|
|
1285
|
+
readonly foreignId?: number | null | undefined;
|
|
1286
|
+
readonly name: string;
|
|
1287
|
+
readonly description?: string | null | undefined;
|
|
1288
|
+
readonly slug?: string | undefined;
|
|
1289
|
+
readonly isActive: boolean;
|
|
1290
|
+
readonly deletedAt?: string | null | undefined;
|
|
1291
|
+
readonly createdAt?: string | undefined;
|
|
1292
|
+
readonly updatedAt?: string | undefined;
|
|
1293
|
+
readonly articles?: readonly {
|
|
1294
|
+
readonly id?: number | undefined;
|
|
1295
|
+
readonly foreignId?: number | null | undefined;
|
|
1296
|
+
readonly authorId?: number | undefined;
|
|
1297
|
+
readonly publisherId?: number | undefined;
|
|
1298
|
+
readonly title: string;
|
|
1299
|
+
readonly slug: string;
|
|
1300
|
+
readonly summary?: string | null | undefined;
|
|
1301
|
+
readonly content?: string | null | undefined;
|
|
1302
|
+
readonly featuredImage?: string | null | undefined;
|
|
1303
|
+
readonly featuredImageUrl?: string | null | undefined;
|
|
1304
|
+
readonly foreignFeaturedImage?: string | null | undefined;
|
|
1305
|
+
readonly legend?: string | null | undefined;
|
|
1306
|
+
readonly allowComments: boolean;
|
|
1307
|
+
readonly isHeadline: boolean;
|
|
1308
|
+
readonly status: import("@creopse/utils").NewsArticleStatus;
|
|
1309
|
+
readonly publishedAt?: string | null | undefined;
|
|
1310
|
+
readonly deletedAt?: string | null | undefined;
|
|
1311
|
+
readonly createdAt?: string | undefined;
|
|
1312
|
+
readonly updatedAt?: string | undefined;
|
|
1313
|
+
readonly author?: {
|
|
1314
|
+
readonly id?: number | undefined;
|
|
1315
|
+
readonly uid?: string | undefined;
|
|
1316
|
+
readonly avatar: string;
|
|
1317
|
+
readonly avatarUrl: string;
|
|
1318
|
+
readonly fullname: string;
|
|
1319
|
+
readonly lastname: string;
|
|
1320
|
+
readonly firstname: string;
|
|
1321
|
+
readonly email: string;
|
|
1322
|
+
readonly emailVerifiedAt?: string | undefined;
|
|
1323
|
+
readonly password: string;
|
|
1324
|
+
readonly phone?: string | undefined;
|
|
1325
|
+
readonly address?: string | undefined;
|
|
1326
|
+
readonly location?: {
|
|
1327
|
+
readonly lat: number;
|
|
1328
|
+
readonly lng: number;
|
|
1329
|
+
} | null | undefined;
|
|
1330
|
+
readonly profileType: import("@creopse/utils").ProfileType | string;
|
|
1331
|
+
readonly profileId: number;
|
|
1332
|
+
readonly accountStatus: import("@creopse/utils").AccountStatus;
|
|
1333
|
+
readonly preferences?: any;
|
|
1334
|
+
readonly authType?: import("@creopse/utils").AuthType | undefined;
|
|
1335
|
+
readonly lastLoggedInAt?: string | undefined;
|
|
1336
|
+
readonly rememberToken?: string | undefined;
|
|
1337
|
+
readonly deletedAt?: string | undefined;
|
|
1338
|
+
readonly createdAt?: string | undefined;
|
|
1339
|
+
readonly updatedAt?: string | undefined;
|
|
1340
|
+
readonly permissions?: readonly {
|
|
1341
|
+
readonly id?: number | undefined;
|
|
1342
|
+
readonly name: string;
|
|
1343
|
+
readonly displayName: string;
|
|
1344
|
+
readonly description: string;
|
|
1345
|
+
readonly createdAt?: string | undefined;
|
|
1346
|
+
readonly updatedAt?: string | undefined;
|
|
1347
|
+
}[] | undefined;
|
|
1348
|
+
readonly profile?: import("@creopse/utils").AdminProfileModel | any;
|
|
1349
|
+
readonly roles?: readonly {
|
|
1350
|
+
readonly id?: number | undefined;
|
|
1351
|
+
readonly name: string;
|
|
1352
|
+
readonly displayName: string;
|
|
1353
|
+
readonly description: string;
|
|
1354
|
+
readonly permissions?: readonly {
|
|
1355
|
+
readonly id?: number | undefined;
|
|
1356
|
+
readonly name: string;
|
|
1357
|
+
readonly displayName: string;
|
|
1358
|
+
readonly description: string;
|
|
1359
|
+
readonly createdAt?: string | undefined;
|
|
1360
|
+
readonly updatedAt?: string | undefined;
|
|
1361
|
+
}[] | undefined;
|
|
1362
|
+
readonly createdAt?: string | undefined;
|
|
1363
|
+
readonly updatedAt?: string | undefined;
|
|
1364
|
+
}[] | undefined;
|
|
1365
|
+
readonly sessions?: readonly {
|
|
1366
|
+
readonly id?: number | undefined;
|
|
1367
|
+
readonly userId?: number | undefined;
|
|
1368
|
+
readonly ipAddress: string;
|
|
1369
|
+
readonly userAgent: string;
|
|
1370
|
+
readonly locationData?: {
|
|
1371
|
+
readonly ip: string;
|
|
1372
|
+
readonly iso?: string | undefined;
|
|
1373
|
+
readonly city?: string | undefined;
|
|
1374
|
+
readonly region?: string | undefined;
|
|
1375
|
+
readonly source?: string | undefined;
|
|
1376
|
+
readonly country?: string | undefined;
|
|
1377
|
+
readonly currency?: string | undefined;
|
|
1378
|
+
readonly latitude?: string | undefined;
|
|
1379
|
+
readonly timezone?: string | undefined;
|
|
1380
|
+
readonly continent?: string | undefined;
|
|
1381
|
+
readonly longitude?: string | undefined;
|
|
1382
|
+
} | undefined;
|
|
1383
|
+
readonly lastActivity: string;
|
|
1384
|
+
readonly createdAt?: string | undefined;
|
|
1385
|
+
readonly updatedAt?: string | undefined;
|
|
1386
|
+
readonly user?: /*elided*/ any | undefined;
|
|
1387
|
+
}[] | undefined;
|
|
1388
|
+
readonly devices?: readonly {
|
|
1389
|
+
readonly id?: number | undefined;
|
|
1390
|
+
readonly userId?: number | undefined;
|
|
1391
|
+
readonly deviceId?: string | undefined;
|
|
1392
|
+
readonly data?: any;
|
|
1393
|
+
readonly isActive?: boolean | undefined;
|
|
1394
|
+
readonly createdAt?: string | undefined;
|
|
1395
|
+
readonly updatedAt?: string | undefined;
|
|
1396
|
+
readonly user?: /*elided*/ any | undefined;
|
|
1397
|
+
}[] | undefined;
|
|
1398
|
+
readonly place?: {
|
|
1399
|
+
readonly id?: number | undefined;
|
|
1400
|
+
readonly userId?: number | undefined;
|
|
1401
|
+
readonly country?: string | undefined;
|
|
1402
|
+
readonly position?: string | undefined;
|
|
1403
|
+
readonly locality?: string | undefined;
|
|
1404
|
+
readonly administrativeArea?: string | undefined;
|
|
1405
|
+
readonly postalCode?: string | undefined;
|
|
1406
|
+
readonly name?: string | undefined;
|
|
1407
|
+
readonly subAdministrativeArea?: string | undefined;
|
|
1408
|
+
readonly isoCountryCode?: string | undefined;
|
|
1409
|
+
readonly subLocality?: string | undefined;
|
|
1410
|
+
readonly subThoroughfare?: string | undefined;
|
|
1411
|
+
readonly thoroughfare?: string | undefined;
|
|
1412
|
+
readonly street?: string | undefined;
|
|
1413
|
+
readonly createdAt?: string | undefined;
|
|
1414
|
+
readonly updatedAt?: string | undefined;
|
|
1415
|
+
readonly user?: /*elided*/ any | undefined;
|
|
1416
|
+
} | undefined;
|
|
1417
|
+
} | undefined;
|
|
1418
|
+
readonly publisher?: {
|
|
1419
|
+
readonly id?: number | undefined;
|
|
1420
|
+
readonly uid?: string | undefined;
|
|
1421
|
+
readonly avatar: string;
|
|
1422
|
+
readonly avatarUrl: string;
|
|
1423
|
+
readonly fullname: string;
|
|
1424
|
+
readonly lastname: string;
|
|
1425
|
+
readonly firstname: string;
|
|
1426
|
+
readonly email: string;
|
|
1427
|
+
readonly emailVerifiedAt?: string | undefined;
|
|
1428
|
+
readonly password: string;
|
|
1429
|
+
readonly phone?: string | undefined;
|
|
1430
|
+
readonly address?: string | undefined;
|
|
1431
|
+
readonly location?: {
|
|
1432
|
+
readonly lat: number;
|
|
1433
|
+
readonly lng: number;
|
|
1434
|
+
} | null | undefined;
|
|
1435
|
+
readonly profileType: import("@creopse/utils").ProfileType | string;
|
|
1436
|
+
readonly profileId: number;
|
|
1437
|
+
readonly accountStatus: import("@creopse/utils").AccountStatus;
|
|
1438
|
+
readonly preferences?: any;
|
|
1439
|
+
readonly authType?: import("@creopse/utils").AuthType | undefined;
|
|
1440
|
+
readonly lastLoggedInAt?: string | undefined;
|
|
1441
|
+
readonly rememberToken?: string | undefined;
|
|
1442
|
+
readonly deletedAt?: string | undefined;
|
|
1443
|
+
readonly createdAt?: string | undefined;
|
|
1444
|
+
readonly updatedAt?: string | undefined;
|
|
1445
|
+
readonly permissions?: readonly {
|
|
1446
|
+
readonly id?: number | undefined;
|
|
1447
|
+
readonly name: string;
|
|
1448
|
+
readonly displayName: string;
|
|
1449
|
+
readonly description: string;
|
|
1450
|
+
readonly createdAt?: string | undefined;
|
|
1451
|
+
readonly updatedAt?: string | undefined;
|
|
1452
|
+
}[] | undefined;
|
|
1453
|
+
readonly profile?: import("@creopse/utils").AdminProfileModel | any;
|
|
1454
|
+
readonly roles?: readonly {
|
|
1455
|
+
readonly id?: number | undefined;
|
|
1456
|
+
readonly name: string;
|
|
1457
|
+
readonly displayName: string;
|
|
1458
|
+
readonly description: string;
|
|
1459
|
+
readonly permissions?: readonly {
|
|
1460
|
+
readonly id?: number | undefined;
|
|
1461
|
+
readonly name: string;
|
|
1462
|
+
readonly displayName: string;
|
|
1463
|
+
readonly description: string;
|
|
1464
|
+
readonly createdAt?: string | undefined;
|
|
1465
|
+
readonly updatedAt?: string | undefined;
|
|
1466
|
+
}[] | undefined;
|
|
1467
|
+
readonly createdAt?: string | undefined;
|
|
1468
|
+
readonly updatedAt?: string | undefined;
|
|
1469
|
+
}[] | undefined;
|
|
1470
|
+
readonly sessions?: readonly {
|
|
1471
|
+
readonly id?: number | undefined;
|
|
1472
|
+
readonly userId?: number | undefined;
|
|
1473
|
+
readonly ipAddress: string;
|
|
1474
|
+
readonly userAgent: string;
|
|
1475
|
+
readonly locationData?: {
|
|
1476
|
+
readonly ip: string;
|
|
1477
|
+
readonly iso?: string | undefined;
|
|
1478
|
+
readonly city?: string | undefined;
|
|
1479
|
+
readonly region?: string | undefined;
|
|
1480
|
+
readonly source?: string | undefined;
|
|
1481
|
+
readonly country?: string | undefined;
|
|
1482
|
+
readonly currency?: string | undefined;
|
|
1483
|
+
readonly latitude?: string | undefined;
|
|
1484
|
+
readonly timezone?: string | undefined;
|
|
1485
|
+
readonly continent?: string | undefined;
|
|
1486
|
+
readonly longitude?: string | undefined;
|
|
1487
|
+
} | undefined;
|
|
1488
|
+
readonly lastActivity: string;
|
|
1489
|
+
readonly createdAt?: string | undefined;
|
|
1490
|
+
readonly updatedAt?: string | undefined;
|
|
1491
|
+
readonly user?: /*elided*/ any | undefined;
|
|
1492
|
+
}[] | undefined;
|
|
1493
|
+
readonly devices?: readonly {
|
|
1494
|
+
readonly id?: number | undefined;
|
|
1495
|
+
readonly userId?: number | undefined;
|
|
1496
|
+
readonly deviceId?: string | undefined;
|
|
1497
|
+
readonly data?: any;
|
|
1498
|
+
readonly isActive?: boolean | undefined;
|
|
1499
|
+
readonly createdAt?: string | undefined;
|
|
1500
|
+
readonly updatedAt?: string | undefined;
|
|
1501
|
+
readonly user?: /*elided*/ any | undefined;
|
|
1502
|
+
}[] | undefined;
|
|
1503
|
+
readonly place?: {
|
|
1504
|
+
readonly id?: number | undefined;
|
|
1505
|
+
readonly userId?: number | undefined;
|
|
1506
|
+
readonly country?: string | undefined;
|
|
1507
|
+
readonly position?: string | undefined;
|
|
1508
|
+
readonly locality?: string | undefined;
|
|
1509
|
+
readonly administrativeArea?: string | undefined;
|
|
1510
|
+
readonly postalCode?: string | undefined;
|
|
1511
|
+
readonly name?: string | undefined;
|
|
1512
|
+
readonly subAdministrativeArea?: string | undefined;
|
|
1513
|
+
readonly isoCountryCode?: string | undefined;
|
|
1514
|
+
readonly subLocality?: string | undefined;
|
|
1515
|
+
readonly subThoroughfare?: string | undefined;
|
|
1516
|
+
readonly thoroughfare?: string | undefined;
|
|
1517
|
+
readonly street?: string | undefined;
|
|
1518
|
+
readonly createdAt?: string | undefined;
|
|
1519
|
+
readonly updatedAt?: string | undefined;
|
|
1520
|
+
readonly user?: /*elided*/ any | undefined;
|
|
1521
|
+
} | undefined;
|
|
1522
|
+
} | undefined;
|
|
1523
|
+
readonly categories?: readonly {
|
|
1524
|
+
readonly id?: number | undefined;
|
|
1525
|
+
readonly foreignId?: number | null | undefined;
|
|
1526
|
+
readonly name: string;
|
|
1527
|
+
readonly slug?: string | undefined;
|
|
1528
|
+
readonly color?: string | undefined;
|
|
1529
|
+
readonly description?: string | null | undefined;
|
|
1530
|
+
readonly parentId?: number | null | undefined;
|
|
1531
|
+
readonly position?: number | null | undefined;
|
|
1532
|
+
readonly isActive: boolean;
|
|
1533
|
+
readonly image?: string | null | undefined;
|
|
1534
|
+
readonly imageUrl?: string | null | undefined;
|
|
1535
|
+
readonly deletedAt?: string | null | undefined;
|
|
1536
|
+
readonly createdAt?: string | undefined;
|
|
1537
|
+
readonly updatedAt?: string | undefined;
|
|
1538
|
+
readonly articles?: readonly /*elided*/ any[] | undefined;
|
|
1539
|
+
readonly articlesCount?: number | undefined;
|
|
1540
|
+
}[] | undefined;
|
|
1541
|
+
readonly categoriesCount?: number | undefined;
|
|
1542
|
+
readonly tags?: readonly /*elided*/ any[] | undefined;
|
|
1543
|
+
readonly tagsCount?: number | undefined;
|
|
1544
|
+
readonly comments?: readonly {
|
|
1545
|
+
readonly id?: number | undefined;
|
|
1546
|
+
readonly foreignId?: number | null | undefined;
|
|
1547
|
+
readonly authorId?: number | null | undefined;
|
|
1548
|
+
readonly articleId?: number | undefined;
|
|
1549
|
+
readonly name?: string | null | undefined;
|
|
1550
|
+
readonly content: string;
|
|
1551
|
+
readonly email?: string | null | undefined;
|
|
1552
|
+
readonly isActive: boolean;
|
|
1553
|
+
readonly deletedAt?: string | null | undefined;
|
|
1554
|
+
readonly createdAt?: string | undefined;
|
|
1555
|
+
readonly updatedAt?: string | undefined;
|
|
1556
|
+
readonly author?: {
|
|
1557
|
+
readonly id?: number | undefined;
|
|
1558
|
+
readonly uid?: string | undefined;
|
|
1559
|
+
readonly avatar: string;
|
|
1560
|
+
readonly avatarUrl: string;
|
|
1561
|
+
readonly fullname: string;
|
|
1562
|
+
readonly lastname: string;
|
|
1563
|
+
readonly firstname: string;
|
|
1564
|
+
readonly email: string;
|
|
1565
|
+
readonly emailVerifiedAt?: string | undefined;
|
|
1566
|
+
readonly password: string;
|
|
1567
|
+
readonly phone?: string | undefined;
|
|
1568
|
+
readonly address?: string | undefined;
|
|
1569
|
+
readonly location?: {
|
|
1570
|
+
readonly lat: number;
|
|
1571
|
+
readonly lng: number;
|
|
1572
|
+
} | null | undefined;
|
|
1573
|
+
readonly profileType: import("@creopse/utils").ProfileType | string;
|
|
1574
|
+
readonly profileId: number;
|
|
1575
|
+
readonly accountStatus: import("@creopse/utils").AccountStatus;
|
|
1576
|
+
readonly preferences?: any;
|
|
1577
|
+
readonly authType?: import("@creopse/utils").AuthType | undefined;
|
|
1578
|
+
readonly lastLoggedInAt?: string | undefined;
|
|
1579
|
+
readonly rememberToken?: string | undefined;
|
|
1580
|
+
readonly deletedAt?: string | undefined;
|
|
1581
|
+
readonly createdAt?: string | undefined;
|
|
1582
|
+
readonly updatedAt?: string | undefined;
|
|
1583
|
+
readonly permissions?: readonly {
|
|
1584
|
+
readonly id?: number | undefined;
|
|
1585
|
+
readonly name: string;
|
|
1586
|
+
readonly displayName: string;
|
|
1587
|
+
readonly description: string;
|
|
1588
|
+
readonly createdAt?: string | undefined;
|
|
1589
|
+
readonly updatedAt?: string | undefined;
|
|
1590
|
+
}[] | undefined;
|
|
1591
|
+
readonly profile?: import("@creopse/utils").AdminProfileModel | any;
|
|
1592
|
+
readonly roles?: readonly {
|
|
1593
|
+
readonly id?: number | undefined;
|
|
1594
|
+
readonly name: string;
|
|
1595
|
+
readonly displayName: string;
|
|
1596
|
+
readonly description: string;
|
|
1597
|
+
readonly permissions?: readonly {
|
|
1598
|
+
readonly id?: number | undefined;
|
|
1599
|
+
readonly name: string;
|
|
1600
|
+
readonly displayName: string;
|
|
1601
|
+
readonly description: string;
|
|
1602
|
+
readonly createdAt?: string | undefined;
|
|
1603
|
+
readonly updatedAt?: string | undefined;
|
|
1604
|
+
}[] | undefined;
|
|
1605
|
+
readonly createdAt?: string | undefined;
|
|
1606
|
+
readonly updatedAt?: string | undefined;
|
|
1607
|
+
}[] | undefined;
|
|
1608
|
+
readonly sessions?: readonly {
|
|
1609
|
+
readonly id?: number | undefined;
|
|
1610
|
+
readonly userId?: number | undefined;
|
|
1611
|
+
readonly ipAddress: string;
|
|
1612
|
+
readonly userAgent: string;
|
|
1613
|
+
readonly locationData?: {
|
|
1614
|
+
readonly ip: string;
|
|
1615
|
+
readonly iso?: string | undefined;
|
|
1616
|
+
readonly city?: string | undefined;
|
|
1617
|
+
readonly region?: string | undefined;
|
|
1618
|
+
readonly source?: string | undefined;
|
|
1619
|
+
readonly country?: string | undefined;
|
|
1620
|
+
readonly currency?: string | undefined;
|
|
1621
|
+
readonly latitude?: string | undefined;
|
|
1622
|
+
readonly timezone?: string | undefined;
|
|
1623
|
+
readonly continent?: string | undefined;
|
|
1624
|
+
readonly longitude?: string | undefined;
|
|
1625
|
+
} | undefined;
|
|
1626
|
+
readonly lastActivity: string;
|
|
1627
|
+
readonly createdAt?: string | undefined;
|
|
1628
|
+
readonly updatedAt?: string | undefined;
|
|
1629
|
+
readonly user?: /*elided*/ any | undefined;
|
|
1630
|
+
}[] | undefined;
|
|
1631
|
+
readonly devices?: readonly {
|
|
1632
|
+
readonly id?: number | undefined;
|
|
1633
|
+
readonly userId?: number | undefined;
|
|
1634
|
+
readonly deviceId?: string | undefined;
|
|
1635
|
+
readonly data?: any;
|
|
1636
|
+
readonly isActive?: boolean | undefined;
|
|
1637
|
+
readonly createdAt?: string | undefined;
|
|
1638
|
+
readonly updatedAt?: string | undefined;
|
|
1639
|
+
readonly user?: /*elided*/ any | undefined;
|
|
1640
|
+
}[] | undefined;
|
|
1641
|
+
readonly place?: {
|
|
1642
|
+
readonly id?: number | undefined;
|
|
1643
|
+
readonly userId?: number | undefined;
|
|
1644
|
+
readonly country?: string | undefined;
|
|
1645
|
+
readonly position?: string | undefined;
|
|
1646
|
+
readonly locality?: string | undefined;
|
|
1647
|
+
readonly administrativeArea?: string | undefined;
|
|
1648
|
+
readonly postalCode?: string | undefined;
|
|
1649
|
+
readonly name?: string | undefined;
|
|
1650
|
+
readonly subAdministrativeArea?: string | undefined;
|
|
1651
|
+
readonly isoCountryCode?: string | undefined;
|
|
1652
|
+
readonly subLocality?: string | undefined;
|
|
1653
|
+
readonly subThoroughfare?: string | undefined;
|
|
1654
|
+
readonly thoroughfare?: string | undefined;
|
|
1655
|
+
readonly street?: string | undefined;
|
|
1656
|
+
readonly createdAt?: string | undefined;
|
|
1657
|
+
readonly updatedAt?: string | undefined;
|
|
1658
|
+
readonly user?: /*elided*/ any | undefined;
|
|
1659
|
+
} | undefined;
|
|
1660
|
+
} | undefined;
|
|
1661
|
+
readonly article?: /*elided*/ any | undefined;
|
|
1662
|
+
}[] | undefined;
|
|
1663
|
+
readonly commentsCount?: number | undefined;
|
|
1664
|
+
}[] | undefined;
|
|
1665
|
+
readonly articlesCount?: number | undefined;
|
|
1666
|
+
}[] | undefined;
|
|
1667
|
+
readonly article?: {
|
|
1668
|
+
readonly id?: number | undefined;
|
|
1669
|
+
readonly foreignId?: number | null | undefined;
|
|
1670
|
+
readonly authorId?: number | undefined;
|
|
1671
|
+
readonly publisherId?: number | undefined;
|
|
1672
|
+
readonly title: string;
|
|
1673
|
+
readonly slug: string;
|
|
1674
|
+
readonly summary?: string | null | undefined;
|
|
1675
|
+
readonly content?: string | null | undefined;
|
|
1676
|
+
readonly featuredImage?: string | null | undefined;
|
|
1677
|
+
readonly featuredImageUrl?: string | null | undefined;
|
|
1678
|
+
readonly foreignFeaturedImage?: string | null | undefined;
|
|
1679
|
+
readonly legend?: string | null | undefined;
|
|
1680
|
+
readonly allowComments: boolean;
|
|
1681
|
+
readonly isHeadline: boolean;
|
|
1682
|
+
readonly status: import("@creopse/utils").NewsArticleStatus;
|
|
1683
|
+
readonly publishedAt?: string | null | undefined;
|
|
1684
|
+
readonly deletedAt?: string | null | undefined;
|
|
1685
|
+
readonly createdAt?: string | undefined;
|
|
1686
|
+
readonly updatedAt?: string | undefined;
|
|
1687
|
+
readonly author?: {
|
|
1688
|
+
readonly id?: number | undefined;
|
|
1689
|
+
readonly uid?: string | undefined;
|
|
1690
|
+
readonly avatar: string;
|
|
1691
|
+
readonly avatarUrl: string;
|
|
1692
|
+
readonly fullname: string;
|
|
1693
|
+
readonly lastname: string;
|
|
1694
|
+
readonly firstname: string;
|
|
1695
|
+
readonly email: string;
|
|
1696
|
+
readonly emailVerifiedAt?: string | undefined;
|
|
1697
|
+
readonly password: string;
|
|
1698
|
+
readonly phone?: string | undefined;
|
|
1699
|
+
readonly address?: string | undefined;
|
|
1700
|
+
readonly location?: {
|
|
1701
|
+
readonly lat: number;
|
|
1702
|
+
readonly lng: number;
|
|
1703
|
+
} | null | undefined;
|
|
1704
|
+
readonly profileType: import("@creopse/utils").ProfileType | string;
|
|
1705
|
+
readonly profileId: number;
|
|
1706
|
+
readonly accountStatus: import("@creopse/utils").AccountStatus;
|
|
1707
|
+
readonly preferences?: any;
|
|
1708
|
+
readonly authType?: import("@creopse/utils").AuthType | undefined;
|
|
1709
|
+
readonly lastLoggedInAt?: string | undefined;
|
|
1710
|
+
readonly rememberToken?: string | undefined;
|
|
1711
|
+
readonly deletedAt?: string | undefined;
|
|
1712
|
+
readonly createdAt?: string | undefined;
|
|
1713
|
+
readonly updatedAt?: string | undefined;
|
|
1714
|
+
readonly permissions?: readonly {
|
|
1715
|
+
readonly id?: number | undefined;
|
|
1716
|
+
readonly name: string;
|
|
1717
|
+
readonly displayName: string;
|
|
1718
|
+
readonly description: string;
|
|
1719
|
+
readonly createdAt?: string | undefined;
|
|
1720
|
+
readonly updatedAt?: string | undefined;
|
|
1721
|
+
}[] | undefined;
|
|
1722
|
+
readonly profile?: import("@creopse/utils").AdminProfileModel | any;
|
|
1723
|
+
readonly roles?: readonly {
|
|
1724
|
+
readonly id?: number | undefined;
|
|
1725
|
+
readonly name: string;
|
|
1726
|
+
readonly displayName: string;
|
|
1727
|
+
readonly description: string;
|
|
1728
|
+
readonly permissions?: readonly {
|
|
1729
|
+
readonly id?: number | undefined;
|
|
1730
|
+
readonly name: string;
|
|
1731
|
+
readonly displayName: string;
|
|
1732
|
+
readonly description: string;
|
|
1733
|
+
readonly createdAt?: string | undefined;
|
|
1734
|
+
readonly updatedAt?: string | undefined;
|
|
1735
|
+
}[] | undefined;
|
|
1736
|
+
readonly createdAt?: string | undefined;
|
|
1737
|
+
readonly updatedAt?: string | undefined;
|
|
1738
|
+
}[] | undefined;
|
|
1739
|
+
readonly sessions?: readonly {
|
|
1740
|
+
readonly id?: number | undefined;
|
|
1741
|
+
readonly userId?: number | undefined;
|
|
1742
|
+
readonly ipAddress: string;
|
|
1743
|
+
readonly userAgent: string;
|
|
1744
|
+
readonly locationData?: {
|
|
1745
|
+
readonly ip: string;
|
|
1746
|
+
readonly iso?: string | undefined;
|
|
1747
|
+
readonly city?: string | undefined;
|
|
1748
|
+
readonly region?: string | undefined;
|
|
1749
|
+
readonly source?: string | undefined;
|
|
1750
|
+
readonly country?: string | undefined;
|
|
1751
|
+
readonly currency?: string | undefined;
|
|
1752
|
+
readonly latitude?: string | undefined;
|
|
1753
|
+
readonly timezone?: string | undefined;
|
|
1754
|
+
readonly continent?: string | undefined;
|
|
1755
|
+
readonly longitude?: string | undefined;
|
|
1756
|
+
} | undefined;
|
|
1757
|
+
readonly lastActivity: string;
|
|
1758
|
+
readonly createdAt?: string | undefined;
|
|
1759
|
+
readonly updatedAt?: string | undefined;
|
|
1760
|
+
readonly user?: /*elided*/ any | undefined;
|
|
1761
|
+
}[] | undefined;
|
|
1762
|
+
readonly devices?: readonly {
|
|
1763
|
+
readonly id?: number | undefined;
|
|
1764
|
+
readonly userId?: number | undefined;
|
|
1765
|
+
readonly deviceId?: string | undefined;
|
|
1766
|
+
readonly data?: any;
|
|
1767
|
+
readonly isActive?: boolean | undefined;
|
|
1768
|
+
readonly createdAt?: string | undefined;
|
|
1769
|
+
readonly updatedAt?: string | undefined;
|
|
1770
|
+
readonly user?: /*elided*/ any | undefined;
|
|
1771
|
+
}[] | undefined;
|
|
1772
|
+
readonly place?: {
|
|
1773
|
+
readonly id?: number | undefined;
|
|
1774
|
+
readonly userId?: number | undefined;
|
|
1775
|
+
readonly country?: string | undefined;
|
|
1776
|
+
readonly position?: string | undefined;
|
|
1777
|
+
readonly locality?: string | undefined;
|
|
1778
|
+
readonly administrativeArea?: string | undefined;
|
|
1779
|
+
readonly postalCode?: string | undefined;
|
|
1780
|
+
readonly name?: string | undefined;
|
|
1781
|
+
readonly subAdministrativeArea?: string | undefined;
|
|
1782
|
+
readonly isoCountryCode?: string | undefined;
|
|
1783
|
+
readonly subLocality?: string | undefined;
|
|
1784
|
+
readonly subThoroughfare?: string | undefined;
|
|
1785
|
+
readonly thoroughfare?: string | undefined;
|
|
1786
|
+
readonly street?: string | undefined;
|
|
1787
|
+
readonly createdAt?: string | undefined;
|
|
1788
|
+
readonly updatedAt?: string | undefined;
|
|
1789
|
+
readonly user?: /*elided*/ any | undefined;
|
|
1790
|
+
} | undefined;
|
|
1791
|
+
} | undefined;
|
|
1792
|
+
readonly publisher?: {
|
|
1793
|
+
readonly id?: number | undefined;
|
|
1794
|
+
readonly uid?: string | undefined;
|
|
1795
|
+
readonly avatar: string;
|
|
1796
|
+
readonly avatarUrl: string;
|
|
1797
|
+
readonly fullname: string;
|
|
1798
|
+
readonly lastname: string;
|
|
1799
|
+
readonly firstname: string;
|
|
1800
|
+
readonly email: string;
|
|
1801
|
+
readonly emailVerifiedAt?: string | undefined;
|
|
1802
|
+
readonly password: string;
|
|
1803
|
+
readonly phone?: string | undefined;
|
|
1804
|
+
readonly address?: string | undefined;
|
|
1805
|
+
readonly location?: {
|
|
1806
|
+
readonly lat: number;
|
|
1807
|
+
readonly lng: number;
|
|
1808
|
+
} | null | undefined;
|
|
1809
|
+
readonly profileType: import("@creopse/utils").ProfileType | string;
|
|
1810
|
+
readonly profileId: number;
|
|
1811
|
+
readonly accountStatus: import("@creopse/utils").AccountStatus;
|
|
1812
|
+
readonly preferences?: any;
|
|
1813
|
+
readonly authType?: import("@creopse/utils").AuthType | undefined;
|
|
1814
|
+
readonly lastLoggedInAt?: string | undefined;
|
|
1815
|
+
readonly rememberToken?: string | undefined;
|
|
1816
|
+
readonly deletedAt?: string | undefined;
|
|
1817
|
+
readonly createdAt?: string | undefined;
|
|
1818
|
+
readonly updatedAt?: string | undefined;
|
|
1819
|
+
readonly permissions?: readonly {
|
|
1820
|
+
readonly id?: number | undefined;
|
|
1821
|
+
readonly name: string;
|
|
1822
|
+
readonly displayName: string;
|
|
1823
|
+
readonly description: string;
|
|
1824
|
+
readonly createdAt?: string | undefined;
|
|
1825
|
+
readonly updatedAt?: string | undefined;
|
|
1826
|
+
}[] | undefined;
|
|
1827
|
+
readonly profile?: import("@creopse/utils").AdminProfileModel | any;
|
|
1828
|
+
readonly roles?: readonly {
|
|
1829
|
+
readonly id?: number | undefined;
|
|
1830
|
+
readonly name: string;
|
|
1831
|
+
readonly displayName: string;
|
|
1832
|
+
readonly description: string;
|
|
1833
|
+
readonly permissions?: readonly {
|
|
1834
|
+
readonly id?: number | undefined;
|
|
1835
|
+
readonly name: string;
|
|
1836
|
+
readonly displayName: string;
|
|
1837
|
+
readonly description: string;
|
|
1838
|
+
readonly createdAt?: string | undefined;
|
|
1839
|
+
readonly updatedAt?: string | undefined;
|
|
1840
|
+
}[] | undefined;
|
|
1841
|
+
readonly createdAt?: string | undefined;
|
|
1842
|
+
readonly updatedAt?: string | undefined;
|
|
1843
|
+
}[] | undefined;
|
|
1844
|
+
readonly sessions?: readonly {
|
|
1845
|
+
readonly id?: number | undefined;
|
|
1846
|
+
readonly userId?: number | undefined;
|
|
1847
|
+
readonly ipAddress: string;
|
|
1848
|
+
readonly userAgent: string;
|
|
1849
|
+
readonly locationData?: {
|
|
1850
|
+
readonly ip: string;
|
|
1851
|
+
readonly iso?: string | undefined;
|
|
1852
|
+
readonly city?: string | undefined;
|
|
1853
|
+
readonly region?: string | undefined;
|
|
1854
|
+
readonly source?: string | undefined;
|
|
1855
|
+
readonly country?: string | undefined;
|
|
1856
|
+
readonly currency?: string | undefined;
|
|
1857
|
+
readonly latitude?: string | undefined;
|
|
1858
|
+
readonly timezone?: string | undefined;
|
|
1859
|
+
readonly continent?: string | undefined;
|
|
1860
|
+
readonly longitude?: string | undefined;
|
|
1861
|
+
} | undefined;
|
|
1862
|
+
readonly lastActivity: string;
|
|
1863
|
+
readonly createdAt?: string | undefined;
|
|
1864
|
+
readonly updatedAt?: string | undefined;
|
|
1865
|
+
readonly user?: /*elided*/ any | undefined;
|
|
1866
|
+
}[] | undefined;
|
|
1867
|
+
readonly devices?: readonly {
|
|
1868
|
+
readonly id?: number | undefined;
|
|
1869
|
+
readonly userId?: number | undefined;
|
|
1870
|
+
readonly deviceId?: string | undefined;
|
|
1871
|
+
readonly data?: any;
|
|
1872
|
+
readonly isActive?: boolean | undefined;
|
|
1873
|
+
readonly createdAt?: string | undefined;
|
|
1874
|
+
readonly updatedAt?: string | undefined;
|
|
1875
|
+
readonly user?: /*elided*/ any | undefined;
|
|
1876
|
+
}[] | undefined;
|
|
1877
|
+
readonly place?: {
|
|
1878
|
+
readonly id?: number | undefined;
|
|
1879
|
+
readonly userId?: number | undefined;
|
|
1880
|
+
readonly country?: string | undefined;
|
|
1881
|
+
readonly position?: string | undefined;
|
|
1882
|
+
readonly locality?: string | undefined;
|
|
1883
|
+
readonly administrativeArea?: string | undefined;
|
|
1884
|
+
readonly postalCode?: string | undefined;
|
|
1885
|
+
readonly name?: string | undefined;
|
|
1886
|
+
readonly subAdministrativeArea?: string | undefined;
|
|
1887
|
+
readonly isoCountryCode?: string | undefined;
|
|
1888
|
+
readonly subLocality?: string | undefined;
|
|
1889
|
+
readonly subThoroughfare?: string | undefined;
|
|
1890
|
+
readonly thoroughfare?: string | undefined;
|
|
1891
|
+
readonly street?: string | undefined;
|
|
1892
|
+
readonly createdAt?: string | undefined;
|
|
1893
|
+
readonly updatedAt?: string | undefined;
|
|
1894
|
+
readonly user?: /*elided*/ any | undefined;
|
|
1895
|
+
} | undefined;
|
|
1896
|
+
} | undefined;
|
|
1897
|
+
readonly categories?: readonly {
|
|
1898
|
+
readonly id?: number | undefined;
|
|
1899
|
+
readonly foreignId?: number | null | undefined;
|
|
1900
|
+
readonly name: string;
|
|
1901
|
+
readonly slug?: string | undefined;
|
|
1902
|
+
readonly color?: string | undefined;
|
|
1903
|
+
readonly description?: string | null | undefined;
|
|
1904
|
+
readonly parentId?: number | null | undefined;
|
|
1905
|
+
readonly position?: number | null | undefined;
|
|
1906
|
+
readonly isActive: boolean;
|
|
1907
|
+
readonly image?: string | null | undefined;
|
|
1908
|
+
readonly imageUrl?: string | null | undefined;
|
|
1909
|
+
readonly deletedAt?: string | null | undefined;
|
|
1910
|
+
readonly createdAt?: string | undefined;
|
|
1911
|
+
readonly updatedAt?: string | undefined;
|
|
1912
|
+
readonly articles?: readonly /*elided*/ any[] | undefined;
|
|
1913
|
+
readonly articlesCount?: number | undefined;
|
|
1914
|
+
}[] | undefined;
|
|
1915
|
+
readonly categoriesCount?: number | undefined;
|
|
1916
|
+
readonly tags?: readonly {
|
|
1917
|
+
readonly id?: number | undefined;
|
|
1918
|
+
readonly foreignId?: number | null | undefined;
|
|
1919
|
+
readonly name: string;
|
|
1920
|
+
readonly description?: string | null | undefined;
|
|
1921
|
+
readonly slug?: string | undefined;
|
|
1922
|
+
readonly isActive: boolean;
|
|
1923
|
+
readonly deletedAt?: string | null | undefined;
|
|
1924
|
+
readonly createdAt?: string | undefined;
|
|
1925
|
+
readonly updatedAt?: string | undefined;
|
|
1926
|
+
readonly articles?: readonly /*elided*/ any[] | undefined;
|
|
1927
|
+
readonly articlesCount?: number | undefined;
|
|
1928
|
+
}[] | undefined;
|
|
1929
|
+
readonly tagsCount?: number | undefined;
|
|
1930
|
+
readonly comments?: readonly {
|
|
1931
|
+
readonly id?: number | undefined;
|
|
1932
|
+
readonly foreignId?: number | null | undefined;
|
|
1933
|
+
readonly authorId?: number | null | undefined;
|
|
1934
|
+
readonly articleId?: number | undefined;
|
|
1935
|
+
readonly name?: string | null | undefined;
|
|
1936
|
+
readonly content: string;
|
|
1937
|
+
readonly email?: string | null | undefined;
|
|
1938
|
+
readonly isActive: boolean;
|
|
1939
|
+
readonly deletedAt?: string | null | undefined;
|
|
1940
|
+
readonly createdAt?: string | undefined;
|
|
1941
|
+
readonly updatedAt?: string | undefined;
|
|
1942
|
+
readonly author?: {
|
|
1943
|
+
readonly id?: number | undefined;
|
|
1944
|
+
readonly uid?: string | undefined;
|
|
1945
|
+
readonly avatar: string;
|
|
1946
|
+
readonly avatarUrl: string;
|
|
1947
|
+
readonly fullname: string;
|
|
1948
|
+
readonly lastname: string;
|
|
1949
|
+
readonly firstname: string;
|
|
1950
|
+
readonly email: string;
|
|
1951
|
+
readonly emailVerifiedAt?: string | undefined;
|
|
1952
|
+
readonly password: string;
|
|
1953
|
+
readonly phone?: string | undefined;
|
|
1954
|
+
readonly address?: string | undefined;
|
|
1955
|
+
readonly location?: {
|
|
1956
|
+
readonly lat: number;
|
|
1957
|
+
readonly lng: number;
|
|
1958
|
+
} | null | undefined;
|
|
1959
|
+
readonly profileType: import("@creopse/utils").ProfileType | string;
|
|
1960
|
+
readonly profileId: number;
|
|
1961
|
+
readonly accountStatus: import("@creopse/utils").AccountStatus;
|
|
1962
|
+
readonly preferences?: any;
|
|
1963
|
+
readonly authType?: import("@creopse/utils").AuthType | undefined;
|
|
1964
|
+
readonly lastLoggedInAt?: string | undefined;
|
|
1965
|
+
readonly rememberToken?: string | undefined;
|
|
1966
|
+
readonly deletedAt?: string | undefined;
|
|
1967
|
+
readonly createdAt?: string | undefined;
|
|
1968
|
+
readonly updatedAt?: string | undefined;
|
|
1969
|
+
readonly permissions?: readonly {
|
|
1970
|
+
readonly id?: number | undefined;
|
|
1971
|
+
readonly name: string;
|
|
1972
|
+
readonly displayName: string;
|
|
1973
|
+
readonly description: string;
|
|
1974
|
+
readonly createdAt?: string | undefined;
|
|
1975
|
+
readonly updatedAt?: string | undefined;
|
|
1976
|
+
}[] | undefined;
|
|
1977
|
+
readonly profile?: import("@creopse/utils").AdminProfileModel | any;
|
|
1978
|
+
readonly roles?: readonly {
|
|
1979
|
+
readonly id?: number | undefined;
|
|
1980
|
+
readonly name: string;
|
|
1981
|
+
readonly displayName: string;
|
|
1982
|
+
readonly description: string;
|
|
1983
|
+
readonly permissions?: readonly {
|
|
1984
|
+
readonly id?: number | undefined;
|
|
1985
|
+
readonly name: string;
|
|
1986
|
+
readonly displayName: string;
|
|
1987
|
+
readonly description: string;
|
|
1988
|
+
readonly createdAt?: string | undefined;
|
|
1989
|
+
readonly updatedAt?: string | undefined;
|
|
1990
|
+
}[] | undefined;
|
|
1991
|
+
readonly createdAt?: string | undefined;
|
|
1992
|
+
readonly updatedAt?: string | undefined;
|
|
1993
|
+
}[] | undefined;
|
|
1994
|
+
readonly sessions?: readonly {
|
|
1995
|
+
readonly id?: number | undefined;
|
|
1996
|
+
readonly userId?: number | undefined;
|
|
1997
|
+
readonly ipAddress: string;
|
|
1998
|
+
readonly userAgent: string;
|
|
1999
|
+
readonly locationData?: {
|
|
2000
|
+
readonly ip: string;
|
|
2001
|
+
readonly iso?: string | undefined;
|
|
2002
|
+
readonly city?: string | undefined;
|
|
2003
|
+
readonly region?: string | undefined;
|
|
2004
|
+
readonly source?: string | undefined;
|
|
2005
|
+
readonly country?: string | undefined;
|
|
2006
|
+
readonly currency?: string | undefined;
|
|
2007
|
+
readonly latitude?: string | undefined;
|
|
2008
|
+
readonly timezone?: string | undefined;
|
|
2009
|
+
readonly continent?: string | undefined;
|
|
2010
|
+
readonly longitude?: string | undefined;
|
|
2011
|
+
} | undefined;
|
|
2012
|
+
readonly lastActivity: string;
|
|
2013
|
+
readonly createdAt?: string | undefined;
|
|
2014
|
+
readonly updatedAt?: string | undefined;
|
|
2015
|
+
readonly user?: /*elided*/ any | undefined;
|
|
2016
|
+
}[] | undefined;
|
|
2017
|
+
readonly devices?: readonly {
|
|
2018
|
+
readonly id?: number | undefined;
|
|
2019
|
+
readonly userId?: number | undefined;
|
|
2020
|
+
readonly deviceId?: string | undefined;
|
|
2021
|
+
readonly data?: any;
|
|
2022
|
+
readonly isActive?: boolean | undefined;
|
|
2023
|
+
readonly createdAt?: string | undefined;
|
|
2024
|
+
readonly updatedAt?: string | undefined;
|
|
2025
|
+
readonly user?: /*elided*/ any | undefined;
|
|
2026
|
+
}[] | undefined;
|
|
2027
|
+
readonly place?: {
|
|
2028
|
+
readonly id?: number | undefined;
|
|
2029
|
+
readonly userId?: number | undefined;
|
|
2030
|
+
readonly country?: string | undefined;
|
|
2031
|
+
readonly position?: string | undefined;
|
|
2032
|
+
readonly locality?: string | undefined;
|
|
2033
|
+
readonly administrativeArea?: string | undefined;
|
|
2034
|
+
readonly postalCode?: string | undefined;
|
|
2035
|
+
readonly name?: string | undefined;
|
|
2036
|
+
readonly subAdministrativeArea?: string | undefined;
|
|
2037
|
+
readonly isoCountryCode?: string | undefined;
|
|
2038
|
+
readonly subLocality?: string | undefined;
|
|
2039
|
+
readonly subThoroughfare?: string | undefined;
|
|
2040
|
+
readonly thoroughfare?: string | undefined;
|
|
2041
|
+
readonly street?: string | undefined;
|
|
2042
|
+
readonly createdAt?: string | undefined;
|
|
2043
|
+
readonly updatedAt?: string | undefined;
|
|
2044
|
+
readonly user?: /*elided*/ any | undefined;
|
|
2045
|
+
} | undefined;
|
|
2046
|
+
} | undefined;
|
|
2047
|
+
readonly article?: /*elided*/ any | undefined;
|
|
2048
|
+
}[] | undefined;
|
|
2049
|
+
readonly commentsCount?: number | undefined;
|
|
2050
|
+
} | undefined;
|
|
2051
|
+
readonly category?: {
|
|
2052
|
+
readonly id?: number | undefined;
|
|
2053
|
+
readonly foreignId?: number | null | undefined;
|
|
2054
|
+
readonly name: string;
|
|
2055
|
+
readonly slug?: string | undefined;
|
|
2056
|
+
readonly color?: string | undefined;
|
|
2057
|
+
readonly description?: string | null | undefined;
|
|
2058
|
+
readonly parentId?: number | null | undefined;
|
|
2059
|
+
readonly position?: number | null | undefined;
|
|
2060
|
+
readonly isActive: boolean;
|
|
2061
|
+
readonly image?: string | null | undefined;
|
|
2062
|
+
readonly imageUrl?: string | null | undefined;
|
|
2063
|
+
readonly deletedAt?: string | null | undefined;
|
|
2064
|
+
readonly createdAt?: string | undefined;
|
|
2065
|
+
readonly updatedAt?: string | undefined;
|
|
2066
|
+
readonly articles?: readonly {
|
|
2067
|
+
readonly id?: number | undefined;
|
|
2068
|
+
readonly foreignId?: number | null | undefined;
|
|
2069
|
+
readonly authorId?: number | undefined;
|
|
2070
|
+
readonly publisherId?: number | undefined;
|
|
2071
|
+
readonly title: string;
|
|
2072
|
+
readonly slug: string;
|
|
2073
|
+
readonly summary?: string | null | undefined;
|
|
2074
|
+
readonly content?: string | null | undefined;
|
|
2075
|
+
readonly featuredImage?: string | null | undefined;
|
|
2076
|
+
readonly featuredImageUrl?: string | null | undefined;
|
|
2077
|
+
readonly foreignFeaturedImage?: string | null | undefined;
|
|
2078
|
+
readonly legend?: string | null | undefined;
|
|
2079
|
+
readonly allowComments: boolean;
|
|
2080
|
+
readonly isHeadline: boolean;
|
|
2081
|
+
readonly status: import("@creopse/utils").NewsArticleStatus;
|
|
2082
|
+
readonly publishedAt?: string | null | undefined;
|
|
2083
|
+
readonly deletedAt?: string | null | undefined;
|
|
2084
|
+
readonly createdAt?: string | undefined;
|
|
2085
|
+
readonly updatedAt?: string | undefined;
|
|
2086
|
+
readonly author?: {
|
|
2087
|
+
readonly id?: number | undefined;
|
|
2088
|
+
readonly uid?: string | undefined;
|
|
2089
|
+
readonly avatar: string;
|
|
2090
|
+
readonly avatarUrl: string;
|
|
2091
|
+
readonly fullname: string;
|
|
2092
|
+
readonly lastname: string;
|
|
2093
|
+
readonly firstname: string;
|
|
2094
|
+
readonly email: string;
|
|
2095
|
+
readonly emailVerifiedAt?: string | undefined;
|
|
2096
|
+
readonly password: string;
|
|
2097
|
+
readonly phone?: string | undefined;
|
|
2098
|
+
readonly address?: string | undefined;
|
|
2099
|
+
readonly location?: {
|
|
2100
|
+
readonly lat: number;
|
|
2101
|
+
readonly lng: number;
|
|
2102
|
+
} | null | undefined;
|
|
2103
|
+
readonly profileType: import("@creopse/utils").ProfileType | string;
|
|
2104
|
+
readonly profileId: number;
|
|
2105
|
+
readonly accountStatus: import("@creopse/utils").AccountStatus;
|
|
2106
|
+
readonly preferences?: any;
|
|
2107
|
+
readonly authType?: import("@creopse/utils").AuthType | undefined;
|
|
2108
|
+
readonly lastLoggedInAt?: string | undefined;
|
|
2109
|
+
readonly rememberToken?: string | undefined;
|
|
2110
|
+
readonly deletedAt?: string | undefined;
|
|
2111
|
+
readonly createdAt?: string | undefined;
|
|
2112
|
+
readonly updatedAt?: string | undefined;
|
|
2113
|
+
readonly permissions?: readonly {
|
|
2114
|
+
readonly id?: number | undefined;
|
|
2115
|
+
readonly name: string;
|
|
2116
|
+
readonly displayName: string;
|
|
2117
|
+
readonly description: string;
|
|
2118
|
+
readonly createdAt?: string | undefined;
|
|
2119
|
+
readonly updatedAt?: string | undefined;
|
|
2120
|
+
}[] | undefined;
|
|
2121
|
+
readonly profile?: import("@creopse/utils").AdminProfileModel | any;
|
|
2122
|
+
readonly roles?: readonly {
|
|
2123
|
+
readonly id?: number | undefined;
|
|
2124
|
+
readonly name: string;
|
|
2125
|
+
readonly displayName: string;
|
|
2126
|
+
readonly description: string;
|
|
2127
|
+
readonly permissions?: readonly {
|
|
2128
|
+
readonly id?: number | undefined;
|
|
2129
|
+
readonly name: string;
|
|
2130
|
+
readonly displayName: string;
|
|
2131
|
+
readonly description: string;
|
|
2132
|
+
readonly createdAt?: string | undefined;
|
|
2133
|
+
readonly updatedAt?: string | undefined;
|
|
2134
|
+
}[] | undefined;
|
|
2135
|
+
readonly createdAt?: string | undefined;
|
|
2136
|
+
readonly updatedAt?: string | undefined;
|
|
2137
|
+
}[] | undefined;
|
|
2138
|
+
readonly sessions?: readonly {
|
|
2139
|
+
readonly id?: number | undefined;
|
|
2140
|
+
readonly userId?: number | undefined;
|
|
2141
|
+
readonly ipAddress: string;
|
|
2142
|
+
readonly userAgent: string;
|
|
2143
|
+
readonly locationData?: {
|
|
2144
|
+
readonly ip: string;
|
|
2145
|
+
readonly iso?: string | undefined;
|
|
2146
|
+
readonly city?: string | undefined;
|
|
2147
|
+
readonly region?: string | undefined;
|
|
2148
|
+
readonly source?: string | undefined;
|
|
2149
|
+
readonly country?: string | undefined;
|
|
2150
|
+
readonly currency?: string | undefined;
|
|
2151
|
+
readonly latitude?: string | undefined;
|
|
2152
|
+
readonly timezone?: string | undefined;
|
|
2153
|
+
readonly continent?: string | undefined;
|
|
2154
|
+
readonly longitude?: string | undefined;
|
|
2155
|
+
} | undefined;
|
|
2156
|
+
readonly lastActivity: string;
|
|
2157
|
+
readonly createdAt?: string | undefined;
|
|
2158
|
+
readonly updatedAt?: string | undefined;
|
|
2159
|
+
readonly user?: /*elided*/ any | undefined;
|
|
2160
|
+
}[] | undefined;
|
|
2161
|
+
readonly devices?: readonly {
|
|
2162
|
+
readonly id?: number | undefined;
|
|
2163
|
+
readonly userId?: number | undefined;
|
|
2164
|
+
readonly deviceId?: string | undefined;
|
|
2165
|
+
readonly data?: any;
|
|
2166
|
+
readonly isActive?: boolean | undefined;
|
|
2167
|
+
readonly createdAt?: string | undefined;
|
|
2168
|
+
readonly updatedAt?: string | undefined;
|
|
2169
|
+
readonly user?: /*elided*/ any | undefined;
|
|
2170
|
+
}[] | undefined;
|
|
2171
|
+
readonly place?: {
|
|
2172
|
+
readonly id?: number | undefined;
|
|
2173
|
+
readonly userId?: number | undefined;
|
|
2174
|
+
readonly country?: string | undefined;
|
|
2175
|
+
readonly position?: string | undefined;
|
|
2176
|
+
readonly locality?: string | undefined;
|
|
2177
|
+
readonly administrativeArea?: string | undefined;
|
|
2178
|
+
readonly postalCode?: string | undefined;
|
|
2179
|
+
readonly name?: string | undefined;
|
|
2180
|
+
readonly subAdministrativeArea?: string | undefined;
|
|
2181
|
+
readonly isoCountryCode?: string | undefined;
|
|
2182
|
+
readonly subLocality?: string | undefined;
|
|
2183
|
+
readonly subThoroughfare?: string | undefined;
|
|
2184
|
+
readonly thoroughfare?: string | undefined;
|
|
2185
|
+
readonly street?: string | undefined;
|
|
2186
|
+
readonly createdAt?: string | undefined;
|
|
2187
|
+
readonly updatedAt?: string | undefined;
|
|
2188
|
+
readonly user?: /*elided*/ any | undefined;
|
|
2189
|
+
} | undefined;
|
|
2190
|
+
} | undefined;
|
|
2191
|
+
readonly publisher?: {
|
|
2192
|
+
readonly id?: number | undefined;
|
|
2193
|
+
readonly uid?: string | undefined;
|
|
2194
|
+
readonly avatar: string;
|
|
2195
|
+
readonly avatarUrl: string;
|
|
2196
|
+
readonly fullname: string;
|
|
2197
|
+
readonly lastname: string;
|
|
2198
|
+
readonly firstname: string;
|
|
2199
|
+
readonly email: string;
|
|
2200
|
+
readonly emailVerifiedAt?: string | undefined;
|
|
2201
|
+
readonly password: string;
|
|
2202
|
+
readonly phone?: string | undefined;
|
|
2203
|
+
readonly address?: string | undefined;
|
|
2204
|
+
readonly location?: {
|
|
2205
|
+
readonly lat: number;
|
|
2206
|
+
readonly lng: number;
|
|
2207
|
+
} | null | undefined;
|
|
2208
|
+
readonly profileType: import("@creopse/utils").ProfileType | string;
|
|
2209
|
+
readonly profileId: number;
|
|
2210
|
+
readonly accountStatus: import("@creopse/utils").AccountStatus;
|
|
2211
|
+
readonly preferences?: any;
|
|
2212
|
+
readonly authType?: import("@creopse/utils").AuthType | undefined;
|
|
2213
|
+
readonly lastLoggedInAt?: string | undefined;
|
|
2214
|
+
readonly rememberToken?: string | undefined;
|
|
2215
|
+
readonly deletedAt?: string | undefined;
|
|
2216
|
+
readonly createdAt?: string | undefined;
|
|
2217
|
+
readonly updatedAt?: string | undefined;
|
|
2218
|
+
readonly permissions?: readonly {
|
|
2219
|
+
readonly id?: number | undefined;
|
|
2220
|
+
readonly name: string;
|
|
2221
|
+
readonly displayName: string;
|
|
2222
|
+
readonly description: string;
|
|
2223
|
+
readonly createdAt?: string | undefined;
|
|
2224
|
+
readonly updatedAt?: string | undefined;
|
|
2225
|
+
}[] | undefined;
|
|
2226
|
+
readonly profile?: import("@creopse/utils").AdminProfileModel | any;
|
|
2227
|
+
readonly roles?: readonly {
|
|
2228
|
+
readonly id?: number | undefined;
|
|
2229
|
+
readonly name: string;
|
|
2230
|
+
readonly displayName: string;
|
|
2231
|
+
readonly description: string;
|
|
2232
|
+
readonly permissions?: readonly {
|
|
2233
|
+
readonly id?: number | undefined;
|
|
2234
|
+
readonly name: string;
|
|
2235
|
+
readonly displayName: string;
|
|
2236
|
+
readonly description: string;
|
|
2237
|
+
readonly createdAt?: string | undefined;
|
|
2238
|
+
readonly updatedAt?: string | undefined;
|
|
2239
|
+
}[] | undefined;
|
|
2240
|
+
readonly createdAt?: string | undefined;
|
|
2241
|
+
readonly updatedAt?: string | undefined;
|
|
2242
|
+
}[] | undefined;
|
|
2243
|
+
readonly sessions?: readonly {
|
|
2244
|
+
readonly id?: number | undefined;
|
|
2245
|
+
readonly userId?: number | undefined;
|
|
2246
|
+
readonly ipAddress: string;
|
|
2247
|
+
readonly userAgent: string;
|
|
2248
|
+
readonly locationData?: {
|
|
2249
|
+
readonly ip: string;
|
|
2250
|
+
readonly iso?: string | undefined;
|
|
2251
|
+
readonly city?: string | undefined;
|
|
2252
|
+
readonly region?: string | undefined;
|
|
2253
|
+
readonly source?: string | undefined;
|
|
2254
|
+
readonly country?: string | undefined;
|
|
2255
|
+
readonly currency?: string | undefined;
|
|
2256
|
+
readonly latitude?: string | undefined;
|
|
2257
|
+
readonly timezone?: string | undefined;
|
|
2258
|
+
readonly continent?: string | undefined;
|
|
2259
|
+
readonly longitude?: string | undefined;
|
|
2260
|
+
} | undefined;
|
|
2261
|
+
readonly lastActivity: string;
|
|
2262
|
+
readonly createdAt?: string | undefined;
|
|
2263
|
+
readonly updatedAt?: string | undefined;
|
|
2264
|
+
readonly user?: /*elided*/ any | undefined;
|
|
2265
|
+
}[] | undefined;
|
|
2266
|
+
readonly devices?: readonly {
|
|
2267
|
+
readonly id?: number | undefined;
|
|
2268
|
+
readonly userId?: number | undefined;
|
|
2269
|
+
readonly deviceId?: string | undefined;
|
|
2270
|
+
readonly data?: any;
|
|
2271
|
+
readonly isActive?: boolean | undefined;
|
|
2272
|
+
readonly createdAt?: string | undefined;
|
|
2273
|
+
readonly updatedAt?: string | undefined;
|
|
2274
|
+
readonly user?: /*elided*/ any | undefined;
|
|
2275
|
+
}[] | undefined;
|
|
2276
|
+
readonly place?: {
|
|
2277
|
+
readonly id?: number | undefined;
|
|
2278
|
+
readonly userId?: number | undefined;
|
|
2279
|
+
readonly country?: string | undefined;
|
|
2280
|
+
readonly position?: string | undefined;
|
|
2281
|
+
readonly locality?: string | undefined;
|
|
2282
|
+
readonly administrativeArea?: string | undefined;
|
|
2283
|
+
readonly postalCode?: string | undefined;
|
|
2284
|
+
readonly name?: string | undefined;
|
|
2285
|
+
readonly subAdministrativeArea?: string | undefined;
|
|
2286
|
+
readonly isoCountryCode?: string | undefined;
|
|
2287
|
+
readonly subLocality?: string | undefined;
|
|
2288
|
+
readonly subThoroughfare?: string | undefined;
|
|
2289
|
+
readonly thoroughfare?: string | undefined;
|
|
2290
|
+
readonly street?: string | undefined;
|
|
2291
|
+
readonly createdAt?: string | undefined;
|
|
2292
|
+
readonly updatedAt?: string | undefined;
|
|
2293
|
+
readonly user?: /*elided*/ any | undefined;
|
|
2294
|
+
} | undefined;
|
|
2295
|
+
} | undefined;
|
|
2296
|
+
readonly categories?: readonly /*elided*/ any[] | undefined;
|
|
2297
|
+
readonly categoriesCount?: number | undefined;
|
|
2298
|
+
readonly tags?: readonly {
|
|
2299
|
+
readonly id?: number | undefined;
|
|
2300
|
+
readonly foreignId?: number | null | undefined;
|
|
2301
|
+
readonly name: string;
|
|
2302
|
+
readonly description?: string | null | undefined;
|
|
2303
|
+
readonly slug?: string | undefined;
|
|
2304
|
+
readonly isActive: boolean;
|
|
2305
|
+
readonly deletedAt?: string | null | undefined;
|
|
2306
|
+
readonly createdAt?: string | undefined;
|
|
2307
|
+
readonly updatedAt?: string | undefined;
|
|
2308
|
+
readonly articles?: readonly /*elided*/ any[] | undefined;
|
|
2309
|
+
readonly articlesCount?: number | undefined;
|
|
2310
|
+
}[] | undefined;
|
|
2311
|
+
readonly tagsCount?: number | undefined;
|
|
2312
|
+
readonly comments?: readonly {
|
|
2313
|
+
readonly id?: number | undefined;
|
|
2314
|
+
readonly foreignId?: number | null | undefined;
|
|
2315
|
+
readonly authorId?: number | null | undefined;
|
|
2316
|
+
readonly articleId?: number | undefined;
|
|
2317
|
+
readonly name?: string | null | undefined;
|
|
2318
|
+
readonly content: string;
|
|
2319
|
+
readonly email?: string | null | undefined;
|
|
2320
|
+
readonly isActive: boolean;
|
|
2321
|
+
readonly deletedAt?: string | null | undefined;
|
|
2322
|
+
readonly createdAt?: string | undefined;
|
|
2323
|
+
readonly updatedAt?: string | undefined;
|
|
2324
|
+
readonly author?: {
|
|
2325
|
+
readonly id?: number | undefined;
|
|
2326
|
+
readonly uid?: string | undefined;
|
|
2327
|
+
readonly avatar: string;
|
|
2328
|
+
readonly avatarUrl: string;
|
|
2329
|
+
readonly fullname: string;
|
|
2330
|
+
readonly lastname: string;
|
|
2331
|
+
readonly firstname: string;
|
|
2332
|
+
readonly email: string;
|
|
2333
|
+
readonly emailVerifiedAt?: string | undefined;
|
|
2334
|
+
readonly password: string;
|
|
2335
|
+
readonly phone?: string | undefined;
|
|
2336
|
+
readonly address?: string | undefined;
|
|
2337
|
+
readonly location?: {
|
|
2338
|
+
readonly lat: number;
|
|
2339
|
+
readonly lng: number;
|
|
2340
|
+
} | null | undefined;
|
|
2341
|
+
readonly profileType: import("@creopse/utils").ProfileType | string;
|
|
2342
|
+
readonly profileId: number;
|
|
2343
|
+
readonly accountStatus: import("@creopse/utils").AccountStatus;
|
|
2344
|
+
readonly preferences?: any;
|
|
2345
|
+
readonly authType?: import("@creopse/utils").AuthType | undefined;
|
|
2346
|
+
readonly lastLoggedInAt?: string | undefined;
|
|
2347
|
+
readonly rememberToken?: string | undefined;
|
|
2348
|
+
readonly deletedAt?: string | undefined;
|
|
2349
|
+
readonly createdAt?: string | undefined;
|
|
2350
|
+
readonly updatedAt?: string | undefined;
|
|
2351
|
+
readonly permissions?: readonly {
|
|
2352
|
+
readonly id?: number | undefined;
|
|
2353
|
+
readonly name: string;
|
|
2354
|
+
readonly displayName: string;
|
|
2355
|
+
readonly description: string;
|
|
2356
|
+
readonly createdAt?: string | undefined;
|
|
2357
|
+
readonly updatedAt?: string | undefined;
|
|
2358
|
+
}[] | undefined;
|
|
2359
|
+
readonly profile?: import("@creopse/utils").AdminProfileModel | any;
|
|
2360
|
+
readonly roles?: readonly {
|
|
2361
|
+
readonly id?: number | undefined;
|
|
2362
|
+
readonly name: string;
|
|
2363
|
+
readonly displayName: string;
|
|
2364
|
+
readonly description: string;
|
|
2365
|
+
readonly permissions?: readonly {
|
|
2366
|
+
readonly id?: number | undefined;
|
|
2367
|
+
readonly name: string;
|
|
2368
|
+
readonly displayName: string;
|
|
2369
|
+
readonly description: string;
|
|
2370
|
+
readonly createdAt?: string | undefined;
|
|
2371
|
+
readonly updatedAt?: string | undefined;
|
|
2372
|
+
}[] | undefined;
|
|
2373
|
+
readonly createdAt?: string | undefined;
|
|
2374
|
+
readonly updatedAt?: string | undefined;
|
|
2375
|
+
}[] | undefined;
|
|
2376
|
+
readonly sessions?: readonly {
|
|
2377
|
+
readonly id?: number | undefined;
|
|
2378
|
+
readonly userId?: number | undefined;
|
|
2379
|
+
readonly ipAddress: string;
|
|
2380
|
+
readonly userAgent: string;
|
|
2381
|
+
readonly locationData?: {
|
|
2382
|
+
readonly ip: string;
|
|
2383
|
+
readonly iso?: string | undefined;
|
|
2384
|
+
readonly city?: string | undefined;
|
|
2385
|
+
readonly region?: string | undefined;
|
|
2386
|
+
readonly source?: string | undefined;
|
|
2387
|
+
readonly country?: string | undefined;
|
|
2388
|
+
readonly currency?: string | undefined;
|
|
2389
|
+
readonly latitude?: string | undefined;
|
|
2390
|
+
readonly timezone?: string | undefined;
|
|
2391
|
+
readonly continent?: string | undefined;
|
|
2392
|
+
readonly longitude?: string | undefined;
|
|
2393
|
+
} | undefined;
|
|
2394
|
+
readonly lastActivity: string;
|
|
2395
|
+
readonly createdAt?: string | undefined;
|
|
2396
|
+
readonly updatedAt?: string | undefined;
|
|
2397
|
+
readonly user?: /*elided*/ any | undefined;
|
|
2398
|
+
}[] | undefined;
|
|
2399
|
+
readonly devices?: readonly {
|
|
2400
|
+
readonly id?: number | undefined;
|
|
2401
|
+
readonly userId?: number | undefined;
|
|
2402
|
+
readonly deviceId?: string | undefined;
|
|
2403
|
+
readonly data?: any;
|
|
2404
|
+
readonly isActive?: boolean | undefined;
|
|
2405
|
+
readonly createdAt?: string | undefined;
|
|
2406
|
+
readonly updatedAt?: string | undefined;
|
|
2407
|
+
readonly user?: /*elided*/ any | undefined;
|
|
2408
|
+
}[] | undefined;
|
|
2409
|
+
readonly place?: {
|
|
2410
|
+
readonly id?: number | undefined;
|
|
2411
|
+
readonly userId?: number | undefined;
|
|
2412
|
+
readonly country?: string | undefined;
|
|
2413
|
+
readonly position?: string | undefined;
|
|
2414
|
+
readonly locality?: string | undefined;
|
|
2415
|
+
readonly administrativeArea?: string | undefined;
|
|
2416
|
+
readonly postalCode?: string | undefined;
|
|
2417
|
+
readonly name?: string | undefined;
|
|
2418
|
+
readonly subAdministrativeArea?: string | undefined;
|
|
2419
|
+
readonly isoCountryCode?: string | undefined;
|
|
2420
|
+
readonly subLocality?: string | undefined;
|
|
2421
|
+
readonly subThoroughfare?: string | undefined;
|
|
2422
|
+
readonly thoroughfare?: string | undefined;
|
|
2423
|
+
readonly street?: string | undefined;
|
|
2424
|
+
readonly createdAt?: string | undefined;
|
|
2425
|
+
readonly updatedAt?: string | undefined;
|
|
2426
|
+
readonly user?: /*elided*/ any | undefined;
|
|
2427
|
+
} | undefined;
|
|
2428
|
+
} | undefined;
|
|
2429
|
+
readonly article?: /*elided*/ any | undefined;
|
|
2430
|
+
}[] | undefined;
|
|
2431
|
+
readonly commentsCount?: number | undefined;
|
|
2432
|
+
}[] | undefined;
|
|
2433
|
+
readonly articlesCount?: number | undefined;
|
|
2434
|
+
} | undefined;
|
|
2435
|
+
readonly tag?: {
|
|
2436
|
+
readonly id?: number | undefined;
|
|
2437
|
+
readonly foreignId?: number | null | undefined;
|
|
2438
|
+
readonly name: string;
|
|
2439
|
+
readonly description?: string | null | undefined;
|
|
2440
|
+
readonly slug?: string | undefined;
|
|
2441
|
+
readonly isActive: boolean;
|
|
2442
|
+
readonly deletedAt?: string | null | undefined;
|
|
2443
|
+
readonly createdAt?: string | undefined;
|
|
2444
|
+
readonly updatedAt?: string | undefined;
|
|
2445
|
+
readonly articles?: readonly {
|
|
2446
|
+
readonly id?: number | undefined;
|
|
2447
|
+
readonly foreignId?: number | null | undefined;
|
|
2448
|
+
readonly authorId?: number | undefined;
|
|
2449
|
+
readonly publisherId?: number | undefined;
|
|
2450
|
+
readonly title: string;
|
|
2451
|
+
readonly slug: string;
|
|
2452
|
+
readonly summary?: string | null | undefined;
|
|
2453
|
+
readonly content?: string | null | undefined;
|
|
2454
|
+
readonly featuredImage?: string | null | undefined;
|
|
2455
|
+
readonly featuredImageUrl?: string | null | undefined;
|
|
2456
|
+
readonly foreignFeaturedImage?: string | null | undefined;
|
|
2457
|
+
readonly legend?: string | null | undefined;
|
|
2458
|
+
readonly allowComments: boolean;
|
|
2459
|
+
readonly isHeadline: boolean;
|
|
2460
|
+
readonly status: import("@creopse/utils").NewsArticleStatus;
|
|
2461
|
+
readonly publishedAt?: string | null | undefined;
|
|
2462
|
+
readonly deletedAt?: string | null | undefined;
|
|
2463
|
+
readonly createdAt?: string | undefined;
|
|
2464
|
+
readonly updatedAt?: string | undefined;
|
|
2465
|
+
readonly author?: {
|
|
2466
|
+
readonly id?: number | undefined;
|
|
2467
|
+
readonly uid?: string | undefined;
|
|
2468
|
+
readonly avatar: string;
|
|
2469
|
+
readonly avatarUrl: string;
|
|
2470
|
+
readonly fullname: string;
|
|
2471
|
+
readonly lastname: string;
|
|
2472
|
+
readonly firstname: string;
|
|
2473
|
+
readonly email: string;
|
|
2474
|
+
readonly emailVerifiedAt?: string | undefined;
|
|
2475
|
+
readonly password: string;
|
|
2476
|
+
readonly phone?: string | undefined;
|
|
2477
|
+
readonly address?: string | undefined;
|
|
2478
|
+
readonly location?: {
|
|
2479
|
+
readonly lat: number;
|
|
2480
|
+
readonly lng: number;
|
|
2481
|
+
} | null | undefined;
|
|
2482
|
+
readonly profileType: import("@creopse/utils").ProfileType | string;
|
|
2483
|
+
readonly profileId: number;
|
|
2484
|
+
readonly accountStatus: import("@creopse/utils").AccountStatus;
|
|
2485
|
+
readonly preferences?: any;
|
|
2486
|
+
readonly authType?: import("@creopse/utils").AuthType | undefined;
|
|
2487
|
+
readonly lastLoggedInAt?: string | undefined;
|
|
2488
|
+
readonly rememberToken?: string | undefined;
|
|
2489
|
+
readonly deletedAt?: string | undefined;
|
|
2490
|
+
readonly createdAt?: string | undefined;
|
|
2491
|
+
readonly updatedAt?: string | undefined;
|
|
2492
|
+
readonly permissions?: readonly {
|
|
2493
|
+
readonly id?: number | undefined;
|
|
2494
|
+
readonly name: string;
|
|
2495
|
+
readonly displayName: string;
|
|
2496
|
+
readonly description: string;
|
|
2497
|
+
readonly createdAt?: string | undefined;
|
|
2498
|
+
readonly updatedAt?: string | undefined;
|
|
2499
|
+
}[] | undefined;
|
|
2500
|
+
readonly profile?: import("@creopse/utils").AdminProfileModel | any;
|
|
2501
|
+
readonly roles?: readonly {
|
|
2502
|
+
readonly id?: number | undefined;
|
|
2503
|
+
readonly name: string;
|
|
2504
|
+
readonly displayName: string;
|
|
2505
|
+
readonly description: string;
|
|
2506
|
+
readonly permissions?: readonly {
|
|
2507
|
+
readonly id?: number | undefined;
|
|
2508
|
+
readonly name: string;
|
|
2509
|
+
readonly displayName: string;
|
|
2510
|
+
readonly description: string;
|
|
2511
|
+
readonly createdAt?: string | undefined;
|
|
2512
|
+
readonly updatedAt?: string | undefined;
|
|
2513
|
+
}[] | undefined;
|
|
2514
|
+
readonly createdAt?: string | undefined;
|
|
2515
|
+
readonly updatedAt?: string | undefined;
|
|
2516
|
+
}[] | undefined;
|
|
2517
|
+
readonly sessions?: readonly {
|
|
2518
|
+
readonly id?: number | undefined;
|
|
2519
|
+
readonly userId?: number | undefined;
|
|
2520
|
+
readonly ipAddress: string;
|
|
2521
|
+
readonly userAgent: string;
|
|
2522
|
+
readonly locationData?: {
|
|
2523
|
+
readonly ip: string;
|
|
2524
|
+
readonly iso?: string | undefined;
|
|
2525
|
+
readonly city?: string | undefined;
|
|
2526
|
+
readonly region?: string | undefined;
|
|
2527
|
+
readonly source?: string | undefined;
|
|
2528
|
+
readonly country?: string | undefined;
|
|
2529
|
+
readonly currency?: string | undefined;
|
|
2530
|
+
readonly latitude?: string | undefined;
|
|
2531
|
+
readonly timezone?: string | undefined;
|
|
2532
|
+
readonly continent?: string | undefined;
|
|
2533
|
+
readonly longitude?: string | undefined;
|
|
2534
|
+
} | undefined;
|
|
2535
|
+
readonly lastActivity: string;
|
|
2536
|
+
readonly createdAt?: string | undefined;
|
|
2537
|
+
readonly updatedAt?: string | undefined;
|
|
2538
|
+
readonly user?: /*elided*/ any | undefined;
|
|
2539
|
+
}[] | undefined;
|
|
2540
|
+
readonly devices?: readonly {
|
|
2541
|
+
readonly id?: number | undefined;
|
|
2542
|
+
readonly userId?: number | undefined;
|
|
2543
|
+
readonly deviceId?: string | undefined;
|
|
2544
|
+
readonly data?: any;
|
|
2545
|
+
readonly isActive?: boolean | undefined;
|
|
2546
|
+
readonly createdAt?: string | undefined;
|
|
2547
|
+
readonly updatedAt?: string | undefined;
|
|
2548
|
+
readonly user?: /*elided*/ any | undefined;
|
|
2549
|
+
}[] | undefined;
|
|
2550
|
+
readonly place?: {
|
|
2551
|
+
readonly id?: number | undefined;
|
|
2552
|
+
readonly userId?: number | undefined;
|
|
2553
|
+
readonly country?: string | undefined;
|
|
2554
|
+
readonly position?: string | undefined;
|
|
2555
|
+
readonly locality?: string | undefined;
|
|
2556
|
+
readonly administrativeArea?: string | undefined;
|
|
2557
|
+
readonly postalCode?: string | undefined;
|
|
2558
|
+
readonly name?: string | undefined;
|
|
2559
|
+
readonly subAdministrativeArea?: string | undefined;
|
|
2560
|
+
readonly isoCountryCode?: string | undefined;
|
|
2561
|
+
readonly subLocality?: string | undefined;
|
|
2562
|
+
readonly subThoroughfare?: string | undefined;
|
|
2563
|
+
readonly thoroughfare?: string | undefined;
|
|
2564
|
+
readonly street?: string | undefined;
|
|
2565
|
+
readonly createdAt?: string | undefined;
|
|
2566
|
+
readonly updatedAt?: string | undefined;
|
|
2567
|
+
readonly user?: /*elided*/ any | undefined;
|
|
2568
|
+
} | undefined;
|
|
2569
|
+
} | undefined;
|
|
2570
|
+
readonly publisher?: {
|
|
2571
|
+
readonly id?: number | undefined;
|
|
2572
|
+
readonly uid?: string | undefined;
|
|
2573
|
+
readonly avatar: string;
|
|
2574
|
+
readonly avatarUrl: string;
|
|
2575
|
+
readonly fullname: string;
|
|
2576
|
+
readonly lastname: string;
|
|
2577
|
+
readonly firstname: string;
|
|
2578
|
+
readonly email: string;
|
|
2579
|
+
readonly emailVerifiedAt?: string | undefined;
|
|
2580
|
+
readonly password: string;
|
|
2581
|
+
readonly phone?: string | undefined;
|
|
2582
|
+
readonly address?: string | undefined;
|
|
2583
|
+
readonly location?: {
|
|
2584
|
+
readonly lat: number;
|
|
2585
|
+
readonly lng: number;
|
|
2586
|
+
} | null | undefined;
|
|
2587
|
+
readonly profileType: import("@creopse/utils").ProfileType | string;
|
|
2588
|
+
readonly profileId: number;
|
|
2589
|
+
readonly accountStatus: import("@creopse/utils").AccountStatus;
|
|
2590
|
+
readonly preferences?: any;
|
|
2591
|
+
readonly authType?: import("@creopse/utils").AuthType | undefined;
|
|
2592
|
+
readonly lastLoggedInAt?: string | undefined;
|
|
2593
|
+
readonly rememberToken?: string | undefined;
|
|
2594
|
+
readonly deletedAt?: string | undefined;
|
|
2595
|
+
readonly createdAt?: string | undefined;
|
|
2596
|
+
readonly updatedAt?: string | undefined;
|
|
2597
|
+
readonly permissions?: readonly {
|
|
2598
|
+
readonly id?: number | undefined;
|
|
2599
|
+
readonly name: string;
|
|
2600
|
+
readonly displayName: string;
|
|
2601
|
+
readonly description: string;
|
|
2602
|
+
readonly createdAt?: string | undefined;
|
|
2603
|
+
readonly updatedAt?: string | undefined;
|
|
2604
|
+
}[] | undefined;
|
|
2605
|
+
readonly profile?: import("@creopse/utils").AdminProfileModel | any;
|
|
2606
|
+
readonly roles?: readonly {
|
|
2607
|
+
readonly id?: number | undefined;
|
|
2608
|
+
readonly name: string;
|
|
2609
|
+
readonly displayName: string;
|
|
2610
|
+
readonly description: string;
|
|
2611
|
+
readonly permissions?: readonly {
|
|
2612
|
+
readonly id?: number | undefined;
|
|
2613
|
+
readonly name: string;
|
|
2614
|
+
readonly displayName: string;
|
|
2615
|
+
readonly description: string;
|
|
2616
|
+
readonly createdAt?: string | undefined;
|
|
2617
|
+
readonly updatedAt?: string | undefined;
|
|
2618
|
+
}[] | undefined;
|
|
2619
|
+
readonly createdAt?: string | undefined;
|
|
2620
|
+
readonly updatedAt?: string | undefined;
|
|
2621
|
+
}[] | undefined;
|
|
2622
|
+
readonly sessions?: readonly {
|
|
2623
|
+
readonly id?: number | undefined;
|
|
2624
|
+
readonly userId?: number | undefined;
|
|
2625
|
+
readonly ipAddress: string;
|
|
2626
|
+
readonly userAgent: string;
|
|
2627
|
+
readonly locationData?: {
|
|
2628
|
+
readonly ip: string;
|
|
2629
|
+
readonly iso?: string | undefined;
|
|
2630
|
+
readonly city?: string | undefined;
|
|
2631
|
+
readonly region?: string | undefined;
|
|
2632
|
+
readonly source?: string | undefined;
|
|
2633
|
+
readonly country?: string | undefined;
|
|
2634
|
+
readonly currency?: string | undefined;
|
|
2635
|
+
readonly latitude?: string | undefined;
|
|
2636
|
+
readonly timezone?: string | undefined;
|
|
2637
|
+
readonly continent?: string | undefined;
|
|
2638
|
+
readonly longitude?: string | undefined;
|
|
2639
|
+
} | undefined;
|
|
2640
|
+
readonly lastActivity: string;
|
|
2641
|
+
readonly createdAt?: string | undefined;
|
|
2642
|
+
readonly updatedAt?: string | undefined;
|
|
2643
|
+
readonly user?: /*elided*/ any | undefined;
|
|
2644
|
+
}[] | undefined;
|
|
2645
|
+
readonly devices?: readonly {
|
|
2646
|
+
readonly id?: number | undefined;
|
|
2647
|
+
readonly userId?: number | undefined;
|
|
2648
|
+
readonly deviceId?: string | undefined;
|
|
2649
|
+
readonly data?: any;
|
|
2650
|
+
readonly isActive?: boolean | undefined;
|
|
2651
|
+
readonly createdAt?: string | undefined;
|
|
2652
|
+
readonly updatedAt?: string | undefined;
|
|
2653
|
+
readonly user?: /*elided*/ any | undefined;
|
|
2654
|
+
}[] | undefined;
|
|
2655
|
+
readonly place?: {
|
|
2656
|
+
readonly id?: number | undefined;
|
|
2657
|
+
readonly userId?: number | undefined;
|
|
2658
|
+
readonly country?: string | undefined;
|
|
2659
|
+
readonly position?: string | undefined;
|
|
2660
|
+
readonly locality?: string | undefined;
|
|
2661
|
+
readonly administrativeArea?: string | undefined;
|
|
2662
|
+
readonly postalCode?: string | undefined;
|
|
2663
|
+
readonly name?: string | undefined;
|
|
2664
|
+
readonly subAdministrativeArea?: string | undefined;
|
|
2665
|
+
readonly isoCountryCode?: string | undefined;
|
|
2666
|
+
readonly subLocality?: string | undefined;
|
|
2667
|
+
readonly subThoroughfare?: string | undefined;
|
|
2668
|
+
readonly thoroughfare?: string | undefined;
|
|
2669
|
+
readonly street?: string | undefined;
|
|
2670
|
+
readonly createdAt?: string | undefined;
|
|
2671
|
+
readonly updatedAt?: string | undefined;
|
|
2672
|
+
readonly user?: /*elided*/ any | undefined;
|
|
2673
|
+
} | undefined;
|
|
2674
|
+
} | undefined;
|
|
2675
|
+
readonly categories?: readonly {
|
|
2676
|
+
readonly id?: number | undefined;
|
|
2677
|
+
readonly foreignId?: number | null | undefined;
|
|
2678
|
+
readonly name: string;
|
|
2679
|
+
readonly slug?: string | undefined;
|
|
2680
|
+
readonly color?: string | undefined;
|
|
2681
|
+
readonly description?: string | null | undefined;
|
|
2682
|
+
readonly parentId?: number | null | undefined;
|
|
2683
|
+
readonly position?: number | null | undefined;
|
|
2684
|
+
readonly isActive: boolean;
|
|
2685
|
+
readonly image?: string | null | undefined;
|
|
2686
|
+
readonly imageUrl?: string | null | undefined;
|
|
2687
|
+
readonly deletedAt?: string | null | undefined;
|
|
2688
|
+
readonly createdAt?: string | undefined;
|
|
2689
|
+
readonly updatedAt?: string | undefined;
|
|
2690
|
+
readonly articles?: readonly /*elided*/ any[] | undefined;
|
|
2691
|
+
readonly articlesCount?: number | undefined;
|
|
2692
|
+
}[] | undefined;
|
|
2693
|
+
readonly categoriesCount?: number | undefined;
|
|
2694
|
+
readonly tags?: readonly /*elided*/ any[] | undefined;
|
|
2695
|
+
readonly tagsCount?: number | undefined;
|
|
2696
|
+
readonly comments?: readonly {
|
|
2697
|
+
readonly id?: number | undefined;
|
|
2698
|
+
readonly foreignId?: number | null | undefined;
|
|
2699
|
+
readonly authorId?: number | null | undefined;
|
|
2700
|
+
readonly articleId?: number | undefined;
|
|
2701
|
+
readonly name?: string | null | undefined;
|
|
2702
|
+
readonly content: string;
|
|
2703
|
+
readonly email?: string | null | undefined;
|
|
2704
|
+
readonly isActive: boolean;
|
|
2705
|
+
readonly deletedAt?: string | null | undefined;
|
|
2706
|
+
readonly createdAt?: string | undefined;
|
|
2707
|
+
readonly updatedAt?: string | undefined;
|
|
2708
|
+
readonly author?: {
|
|
2709
|
+
readonly id?: number | undefined;
|
|
2710
|
+
readonly uid?: string | undefined;
|
|
2711
|
+
readonly avatar: string;
|
|
2712
|
+
readonly avatarUrl: string;
|
|
2713
|
+
readonly fullname: string;
|
|
2714
|
+
readonly lastname: string;
|
|
2715
|
+
readonly firstname: string;
|
|
2716
|
+
readonly email: string;
|
|
2717
|
+
readonly emailVerifiedAt?: string | undefined;
|
|
2718
|
+
readonly password: string;
|
|
2719
|
+
readonly phone?: string | undefined;
|
|
2720
|
+
readonly address?: string | undefined;
|
|
2721
|
+
readonly location?: {
|
|
2722
|
+
readonly lat: number;
|
|
2723
|
+
readonly lng: number;
|
|
2724
|
+
} | null | undefined;
|
|
2725
|
+
readonly profileType: import("@creopse/utils").ProfileType | string;
|
|
2726
|
+
readonly profileId: number;
|
|
2727
|
+
readonly accountStatus: import("@creopse/utils").AccountStatus;
|
|
2728
|
+
readonly preferences?: any;
|
|
2729
|
+
readonly authType?: import("@creopse/utils").AuthType | undefined;
|
|
2730
|
+
readonly lastLoggedInAt?: string | undefined;
|
|
2731
|
+
readonly rememberToken?: string | undefined;
|
|
2732
|
+
readonly deletedAt?: string | undefined;
|
|
2733
|
+
readonly createdAt?: string | undefined;
|
|
2734
|
+
readonly updatedAt?: string | undefined;
|
|
2735
|
+
readonly permissions?: readonly {
|
|
2736
|
+
readonly id?: number | undefined;
|
|
2737
|
+
readonly name: string;
|
|
2738
|
+
readonly displayName: string;
|
|
2739
|
+
readonly description: string;
|
|
2740
|
+
readonly createdAt?: string | undefined;
|
|
2741
|
+
readonly updatedAt?: string | undefined;
|
|
2742
|
+
}[] | undefined;
|
|
2743
|
+
readonly profile?: import("@creopse/utils").AdminProfileModel | any;
|
|
2744
|
+
readonly roles?: readonly {
|
|
2745
|
+
readonly id?: number | undefined;
|
|
2746
|
+
readonly name: string;
|
|
2747
|
+
readonly displayName: string;
|
|
2748
|
+
readonly description: string;
|
|
2749
|
+
readonly permissions?: readonly {
|
|
2750
|
+
readonly id?: number | undefined;
|
|
2751
|
+
readonly name: string;
|
|
2752
|
+
readonly displayName: string;
|
|
2753
|
+
readonly description: string;
|
|
2754
|
+
readonly createdAt?: string | undefined;
|
|
2755
|
+
readonly updatedAt?: string | undefined;
|
|
2756
|
+
}[] | undefined;
|
|
2757
|
+
readonly createdAt?: string | undefined;
|
|
2758
|
+
readonly updatedAt?: string | undefined;
|
|
2759
|
+
}[] | undefined;
|
|
2760
|
+
readonly sessions?: readonly {
|
|
2761
|
+
readonly id?: number | undefined;
|
|
2762
|
+
readonly userId?: number | undefined;
|
|
2763
|
+
readonly ipAddress: string;
|
|
2764
|
+
readonly userAgent: string;
|
|
2765
|
+
readonly locationData?: {
|
|
2766
|
+
readonly ip: string;
|
|
2767
|
+
readonly iso?: string | undefined;
|
|
2768
|
+
readonly city?: string | undefined;
|
|
2769
|
+
readonly region?: string | undefined;
|
|
2770
|
+
readonly source?: string | undefined;
|
|
2771
|
+
readonly country?: string | undefined;
|
|
2772
|
+
readonly currency?: string | undefined;
|
|
2773
|
+
readonly latitude?: string | undefined;
|
|
2774
|
+
readonly timezone?: string | undefined;
|
|
2775
|
+
readonly continent?: string | undefined;
|
|
2776
|
+
readonly longitude?: string | undefined;
|
|
2777
|
+
} | undefined;
|
|
2778
|
+
readonly lastActivity: string;
|
|
2779
|
+
readonly createdAt?: string | undefined;
|
|
2780
|
+
readonly updatedAt?: string | undefined;
|
|
2781
|
+
readonly user?: /*elided*/ any | undefined;
|
|
2782
|
+
}[] | undefined;
|
|
2783
|
+
readonly devices?: readonly {
|
|
2784
|
+
readonly id?: number | undefined;
|
|
2785
|
+
readonly userId?: number | undefined;
|
|
2786
|
+
readonly deviceId?: string | undefined;
|
|
2787
|
+
readonly data?: any;
|
|
2788
|
+
readonly isActive?: boolean | undefined;
|
|
2789
|
+
readonly createdAt?: string | undefined;
|
|
2790
|
+
readonly updatedAt?: string | undefined;
|
|
2791
|
+
readonly user?: /*elided*/ any | undefined;
|
|
2792
|
+
}[] | undefined;
|
|
2793
|
+
readonly place?: {
|
|
2794
|
+
readonly id?: number | undefined;
|
|
2795
|
+
readonly userId?: number | undefined;
|
|
2796
|
+
readonly country?: string | undefined;
|
|
2797
|
+
readonly position?: string | undefined;
|
|
2798
|
+
readonly locality?: string | undefined;
|
|
2799
|
+
readonly administrativeArea?: string | undefined;
|
|
2800
|
+
readonly postalCode?: string | undefined;
|
|
2801
|
+
readonly name?: string | undefined;
|
|
2802
|
+
readonly subAdministrativeArea?: string | undefined;
|
|
2803
|
+
readonly isoCountryCode?: string | undefined;
|
|
2804
|
+
readonly subLocality?: string | undefined;
|
|
2805
|
+
readonly subThoroughfare?: string | undefined;
|
|
2806
|
+
readonly thoroughfare?: string | undefined;
|
|
2807
|
+
readonly street?: string | undefined;
|
|
2808
|
+
readonly createdAt?: string | undefined;
|
|
2809
|
+
readonly updatedAt?: string | undefined;
|
|
2810
|
+
readonly user?: /*elided*/ any | undefined;
|
|
2811
|
+
} | undefined;
|
|
2812
|
+
} | undefined;
|
|
2813
|
+
readonly article?: /*elided*/ any | undefined;
|
|
2814
|
+
}[] | undefined;
|
|
2815
|
+
readonly commentsCount?: number | undefined;
|
|
2816
|
+
}[] | undefined;
|
|
2817
|
+
readonly articlesCount?: number | undefined;
|
|
2818
|
+
} | undefined;
|
|
2819
|
+
readonly contentModelItem?: {
|
|
2820
|
+
readonly id?: number | undefined;
|
|
2821
|
+
readonly contentModelId?: number | undefined;
|
|
2822
|
+
readonly title: string;
|
|
2823
|
+
readonly contentModelData: any | null;
|
|
2824
|
+
readonly data?: {
|
|
2825
|
+
readonly [x: string]: any;
|
|
2826
|
+
} | null | undefined;
|
|
2827
|
+
readonly isActive: boolean;
|
|
2828
|
+
readonly createdByType?: import("@creopse/utils").ItemCreatorType | undefined;
|
|
2829
|
+
readonly createdBy?: number | undefined;
|
|
2830
|
+
readonly createdAt?: string | undefined;
|
|
2831
|
+
readonly updatedAt?: string | undefined;
|
|
2832
|
+
readonly createdByUser?: {
|
|
2833
|
+
readonly id?: number | undefined;
|
|
2834
|
+
readonly uid?: string | undefined;
|
|
2835
|
+
readonly avatar: string;
|
|
2836
|
+
readonly avatarUrl: string;
|
|
2837
|
+
readonly fullname: string;
|
|
2838
|
+
readonly lastname: string;
|
|
2839
|
+
readonly firstname: string;
|
|
2840
|
+
readonly email: string;
|
|
2841
|
+
readonly emailVerifiedAt?: string | undefined;
|
|
2842
|
+
readonly password: string;
|
|
2843
|
+
readonly phone?: string | undefined;
|
|
2844
|
+
readonly address?: string | undefined;
|
|
2845
|
+
readonly location?: {
|
|
2846
|
+
readonly lat: number;
|
|
2847
|
+
readonly lng: number;
|
|
2848
|
+
} | null | undefined;
|
|
2849
|
+
readonly profileType: import("@creopse/utils").ProfileType | string;
|
|
2850
|
+
readonly profileId: number;
|
|
2851
|
+
readonly accountStatus: import("@creopse/utils").AccountStatus;
|
|
2852
|
+
readonly preferences?: any;
|
|
2853
|
+
readonly authType?: import("@creopse/utils").AuthType | undefined;
|
|
2854
|
+
readonly lastLoggedInAt?: string | undefined;
|
|
2855
|
+
readonly rememberToken?: string | undefined;
|
|
2856
|
+
readonly deletedAt?: string | undefined;
|
|
2857
|
+
readonly createdAt?: string | undefined;
|
|
2858
|
+
readonly updatedAt?: string | undefined;
|
|
2859
|
+
readonly permissions?: readonly {
|
|
2860
|
+
readonly id?: number | undefined;
|
|
2861
|
+
readonly name: string;
|
|
2862
|
+
readonly displayName: string;
|
|
2863
|
+
readonly description: string;
|
|
2864
|
+
readonly createdAt?: string | undefined;
|
|
2865
|
+
readonly updatedAt?: string | undefined;
|
|
2866
|
+
}[] | undefined;
|
|
2867
|
+
readonly profile?: import("@creopse/utils").AdminProfileModel | any;
|
|
2868
|
+
readonly roles?: readonly {
|
|
2869
|
+
readonly id?: number | undefined;
|
|
2870
|
+
readonly name: string;
|
|
2871
|
+
readonly displayName: string;
|
|
2872
|
+
readonly description: string;
|
|
2873
|
+
readonly permissions?: readonly {
|
|
2874
|
+
readonly id?: number | undefined;
|
|
2875
|
+
readonly name: string;
|
|
2876
|
+
readonly displayName: string;
|
|
2877
|
+
readonly description: string;
|
|
2878
|
+
readonly createdAt?: string | undefined;
|
|
2879
|
+
readonly updatedAt?: string | undefined;
|
|
2880
|
+
}[] | undefined;
|
|
2881
|
+
readonly createdAt?: string | undefined;
|
|
2882
|
+
readonly updatedAt?: string | undefined;
|
|
2883
|
+
}[] | undefined;
|
|
2884
|
+
readonly sessions?: readonly {
|
|
2885
|
+
readonly id?: number | undefined;
|
|
2886
|
+
readonly userId?: number | undefined;
|
|
2887
|
+
readonly ipAddress: string;
|
|
2888
|
+
readonly userAgent: string;
|
|
2889
|
+
readonly locationData?: {
|
|
2890
|
+
readonly ip: string;
|
|
2891
|
+
readonly iso?: string | undefined;
|
|
2892
|
+
readonly city?: string | undefined;
|
|
2893
|
+
readonly region?: string | undefined;
|
|
2894
|
+
readonly source?: string | undefined;
|
|
2895
|
+
readonly country?: string | undefined;
|
|
2896
|
+
readonly currency?: string | undefined;
|
|
2897
|
+
readonly latitude?: string | undefined;
|
|
2898
|
+
readonly timezone?: string | undefined;
|
|
2899
|
+
readonly continent?: string | undefined;
|
|
2900
|
+
readonly longitude?: string | undefined;
|
|
2901
|
+
} | undefined;
|
|
2902
|
+
readonly lastActivity: string;
|
|
2903
|
+
readonly createdAt?: string | undefined;
|
|
2904
|
+
readonly updatedAt?: string | undefined;
|
|
2905
|
+
readonly user?: /*elided*/ any | undefined;
|
|
2906
|
+
}[] | undefined;
|
|
2907
|
+
readonly devices?: readonly {
|
|
2908
|
+
readonly id?: number | undefined;
|
|
2909
|
+
readonly userId?: number | undefined;
|
|
2910
|
+
readonly deviceId?: string | undefined;
|
|
2911
|
+
readonly data?: any;
|
|
2912
|
+
readonly isActive?: boolean | undefined;
|
|
2913
|
+
readonly createdAt?: string | undefined;
|
|
2914
|
+
readonly updatedAt?: string | undefined;
|
|
2915
|
+
readonly user?: /*elided*/ any | undefined;
|
|
2916
|
+
}[] | undefined;
|
|
2917
|
+
readonly place?: {
|
|
2918
|
+
readonly id?: number | undefined;
|
|
2919
|
+
readonly userId?: number | undefined;
|
|
2920
|
+
readonly country?: string | undefined;
|
|
2921
|
+
readonly position?: string | undefined;
|
|
2922
|
+
readonly locality?: string | undefined;
|
|
2923
|
+
readonly administrativeArea?: string | undefined;
|
|
2924
|
+
readonly postalCode?: string | undefined;
|
|
2925
|
+
readonly name?: string | undefined;
|
|
2926
|
+
readonly subAdministrativeArea?: string | undefined;
|
|
2927
|
+
readonly isoCountryCode?: string | undefined;
|
|
2928
|
+
readonly subLocality?: string | undefined;
|
|
2929
|
+
readonly subThoroughfare?: string | undefined;
|
|
2930
|
+
readonly thoroughfare?: string | undefined;
|
|
2931
|
+
readonly street?: string | undefined;
|
|
2932
|
+
readonly createdAt?: string | undefined;
|
|
2933
|
+
readonly updatedAt?: string | undefined;
|
|
2934
|
+
readonly user?: /*elided*/ any | undefined;
|
|
2935
|
+
} | undefined;
|
|
2936
|
+
} | undefined;
|
|
2937
|
+
readonly contentModel?: {
|
|
2938
|
+
readonly id?: number | undefined;
|
|
2939
|
+
readonly name: string;
|
|
2940
|
+
readonly title: string;
|
|
2941
|
+
readonly slug: string;
|
|
2942
|
+
readonly image?: string | null | undefined;
|
|
2943
|
+
readonly imageUrl?: string | null | undefined;
|
|
2944
|
+
readonly description?: string | null | undefined;
|
|
2945
|
+
readonly dataStructure?: any | null;
|
|
2946
|
+
readonly titleFieldName?: string | null | undefined;
|
|
2947
|
+
readonly intent: import("@creopse/utils").Intent;
|
|
2948
|
+
readonly accessScope: import("@creopse/utils").AccessScope;
|
|
2949
|
+
readonly hasPermalink?: boolean | undefined;
|
|
2950
|
+
readonly createdAt?: string | undefined;
|
|
2951
|
+
readonly updatedAt?: string | undefined;
|
|
2952
|
+
readonly items?: readonly /*elided*/ any[] | undefined;
|
|
2953
|
+
readonly itemsCount?: number | undefined;
|
|
2954
|
+
} | undefined;
|
|
2955
|
+
readonly relatedItems?: readonly /*elided*/ any[] | undefined;
|
|
2956
|
+
readonly relatedTo?: readonly /*elided*/ any[] | undefined;
|
|
2957
|
+
} | undefined;
|
|
2958
|
+
readonly appInformation: readonly {
|
|
2959
|
+
readonly id?: number | undefined;
|
|
2960
|
+
readonly key: string;
|
|
2961
|
+
readonly value: string;
|
|
2962
|
+
readonly createdAt?: string | undefined;
|
|
2963
|
+
readonly updatedAt?: string | undefined;
|
|
2964
|
+
}[];
|
|
2965
|
+
readonly adIdentifiers?: readonly {
|
|
2966
|
+
readonly id: string;
|
|
2967
|
+
readonly reusable: boolean;
|
|
2968
|
+
readonly contentType: import("@creopse/utils").AdContentType;
|
|
2969
|
+
readonly contentSize?: string | undefined;
|
|
2970
|
+
readonly params?: readonly string[] | undefined;
|
|
2971
|
+
readonly createdAt?: string | undefined;
|
|
2972
|
+
readonly updatedAt?: string | undefined;
|
|
2973
|
+
readonly ads?: readonly {
|
|
2974
|
+
readonly pid: string;
|
|
2975
|
+
readonly title: string;
|
|
2976
|
+
readonly display: boolean;
|
|
2977
|
+
readonly data: {
|
|
2978
|
+
readonly [x: string]: any;
|
|
2979
|
+
};
|
|
2980
|
+
readonly description: string | null;
|
|
2981
|
+
readonly content: string | null;
|
|
2982
|
+
readonly contentUrl?: string | null | undefined;
|
|
2983
|
+
readonly broadcastStart?: string | null | undefined;
|
|
2984
|
+
readonly broadcastEnd?: string | null | undefined;
|
|
2985
|
+
readonly id?: number | undefined;
|
|
2986
|
+
readonly createdAt?: string | undefined;
|
|
2987
|
+
readonly updatedAt?: string | undefined;
|
|
2988
|
+
readonly adIdentifier?: /*elided*/ any | undefined;
|
|
2989
|
+
}[] | undefined;
|
|
2990
|
+
readonly adsCount?: number | undefined;
|
|
2991
|
+
}[] | undefined;
|
|
2992
|
+
readonly contentModels?: readonly {
|
|
2993
|
+
readonly id?: number | undefined;
|
|
2994
|
+
readonly name: string;
|
|
2995
|
+
readonly title: string;
|
|
2996
|
+
readonly slug: string;
|
|
2997
|
+
readonly image?: string | null | undefined;
|
|
2998
|
+
readonly imageUrl?: string | null | undefined;
|
|
2999
|
+
readonly description?: string | null | undefined;
|
|
3000
|
+
readonly dataStructure?: any | null;
|
|
3001
|
+
readonly titleFieldName?: string | null | undefined;
|
|
3002
|
+
readonly intent: import("@creopse/utils").Intent;
|
|
3003
|
+
readonly accessScope: import("@creopse/utils").AccessScope;
|
|
3004
|
+
readonly hasPermalink?: boolean | undefined;
|
|
3005
|
+
readonly createdAt?: string | undefined;
|
|
3006
|
+
readonly updatedAt?: string | undefined;
|
|
3007
|
+
readonly items?: readonly {
|
|
3008
|
+
readonly id?: number | undefined;
|
|
3009
|
+
readonly contentModelId?: number | undefined;
|
|
3010
|
+
readonly title: string;
|
|
3011
|
+
readonly contentModelData: any | null;
|
|
3012
|
+
readonly data?: {
|
|
3013
|
+
readonly [x: string]: any;
|
|
3014
|
+
} | null | undefined;
|
|
3015
|
+
readonly isActive: boolean;
|
|
3016
|
+
readonly createdByType?: import("@creopse/utils").ItemCreatorType | undefined;
|
|
3017
|
+
readonly createdBy?: number | undefined;
|
|
3018
|
+
readonly createdAt?: string | undefined;
|
|
3019
|
+
readonly updatedAt?: string | undefined;
|
|
3020
|
+
readonly createdByUser?: {
|
|
3021
|
+
readonly id?: number | undefined;
|
|
3022
|
+
readonly uid?: string | undefined;
|
|
3023
|
+
readonly avatar: string;
|
|
3024
|
+
readonly avatarUrl: string;
|
|
3025
|
+
readonly fullname: string;
|
|
3026
|
+
readonly lastname: string;
|
|
3027
|
+
readonly firstname: string;
|
|
3028
|
+
readonly email: string;
|
|
3029
|
+
readonly emailVerifiedAt?: string | undefined;
|
|
3030
|
+
readonly password: string;
|
|
3031
|
+
readonly phone?: string | undefined;
|
|
3032
|
+
readonly address?: string | undefined;
|
|
3033
|
+
readonly location?: {
|
|
3034
|
+
readonly lat: number;
|
|
3035
|
+
readonly lng: number;
|
|
3036
|
+
} | null | undefined;
|
|
3037
|
+
readonly profileType: import("@creopse/utils").ProfileType | string;
|
|
3038
|
+
readonly profileId: number;
|
|
3039
|
+
readonly accountStatus: import("@creopse/utils").AccountStatus;
|
|
3040
|
+
readonly preferences?: any;
|
|
3041
|
+
readonly authType?: import("@creopse/utils").AuthType | undefined;
|
|
3042
|
+
readonly lastLoggedInAt?: string | undefined;
|
|
3043
|
+
readonly rememberToken?: string | undefined;
|
|
3044
|
+
readonly deletedAt?: string | undefined;
|
|
3045
|
+
readonly createdAt?: string | undefined;
|
|
3046
|
+
readonly updatedAt?: string | undefined;
|
|
3047
|
+
readonly permissions?: readonly {
|
|
3048
|
+
readonly id?: number | undefined;
|
|
3049
|
+
readonly name: string;
|
|
3050
|
+
readonly displayName: string;
|
|
3051
|
+
readonly description: string;
|
|
3052
|
+
readonly createdAt?: string | undefined;
|
|
3053
|
+
readonly updatedAt?: string | undefined;
|
|
3054
|
+
}[] | undefined;
|
|
3055
|
+
readonly profile?: import("@creopse/utils").AdminProfileModel | any;
|
|
3056
|
+
readonly roles?: readonly {
|
|
3057
|
+
readonly id?: number | undefined;
|
|
3058
|
+
readonly name: string;
|
|
3059
|
+
readonly displayName: string;
|
|
3060
|
+
readonly description: string;
|
|
3061
|
+
readonly permissions?: readonly {
|
|
3062
|
+
readonly id?: number | undefined;
|
|
3063
|
+
readonly name: string;
|
|
3064
|
+
readonly displayName: string;
|
|
3065
|
+
readonly description: string;
|
|
3066
|
+
readonly createdAt?: string | undefined;
|
|
3067
|
+
readonly updatedAt?: string | undefined;
|
|
3068
|
+
}[] | undefined;
|
|
3069
|
+
readonly createdAt?: string | undefined;
|
|
3070
|
+
readonly updatedAt?: string | undefined;
|
|
3071
|
+
}[] | undefined;
|
|
3072
|
+
readonly sessions?: readonly {
|
|
3073
|
+
readonly id?: number | undefined;
|
|
3074
|
+
readonly userId?: number | undefined;
|
|
3075
|
+
readonly ipAddress: string;
|
|
3076
|
+
readonly userAgent: string;
|
|
3077
|
+
readonly locationData?: {
|
|
3078
|
+
readonly ip: string;
|
|
3079
|
+
readonly iso?: string | undefined;
|
|
3080
|
+
readonly city?: string | undefined;
|
|
3081
|
+
readonly region?: string | undefined;
|
|
3082
|
+
readonly source?: string | undefined;
|
|
3083
|
+
readonly country?: string | undefined;
|
|
3084
|
+
readonly currency?: string | undefined;
|
|
3085
|
+
readonly latitude?: string | undefined;
|
|
3086
|
+
readonly timezone?: string | undefined;
|
|
3087
|
+
readonly continent?: string | undefined;
|
|
3088
|
+
readonly longitude?: string | undefined;
|
|
3089
|
+
} | undefined;
|
|
3090
|
+
readonly lastActivity: string;
|
|
3091
|
+
readonly createdAt?: string | undefined;
|
|
3092
|
+
readonly updatedAt?: string | undefined;
|
|
3093
|
+
readonly user?: /*elided*/ any | undefined;
|
|
3094
|
+
}[] | undefined;
|
|
3095
|
+
readonly devices?: readonly {
|
|
3096
|
+
readonly id?: number | undefined;
|
|
3097
|
+
readonly userId?: number | undefined;
|
|
3098
|
+
readonly deviceId?: string | undefined;
|
|
3099
|
+
readonly data?: any;
|
|
3100
|
+
readonly isActive?: boolean | undefined;
|
|
3101
|
+
readonly createdAt?: string | undefined;
|
|
3102
|
+
readonly updatedAt?: string | undefined;
|
|
3103
|
+
readonly user?: /*elided*/ any | undefined;
|
|
3104
|
+
}[] | undefined;
|
|
3105
|
+
readonly place?: {
|
|
3106
|
+
readonly id?: number | undefined;
|
|
3107
|
+
readonly userId?: number | undefined;
|
|
3108
|
+
readonly country?: string | undefined;
|
|
3109
|
+
readonly position?: string | undefined;
|
|
3110
|
+
readonly locality?: string | undefined;
|
|
3111
|
+
readonly administrativeArea?: string | undefined;
|
|
3112
|
+
readonly postalCode?: string | undefined;
|
|
3113
|
+
readonly name?: string | undefined;
|
|
3114
|
+
readonly subAdministrativeArea?: string | undefined;
|
|
3115
|
+
readonly isoCountryCode?: string | undefined;
|
|
3116
|
+
readonly subLocality?: string | undefined;
|
|
3117
|
+
readonly subThoroughfare?: string | undefined;
|
|
3118
|
+
readonly thoroughfare?: string | undefined;
|
|
3119
|
+
readonly street?: string | undefined;
|
|
3120
|
+
readonly createdAt?: string | undefined;
|
|
3121
|
+
readonly updatedAt?: string | undefined;
|
|
3122
|
+
readonly user?: /*elided*/ any | undefined;
|
|
3123
|
+
} | undefined;
|
|
3124
|
+
} | undefined;
|
|
3125
|
+
readonly contentModel?: /*elided*/ any | undefined;
|
|
3126
|
+
readonly relatedItems?: readonly /*elided*/ any[] | undefined;
|
|
3127
|
+
readonly relatedTo?: readonly /*elided*/ any[] | undefined;
|
|
3128
|
+
}[] | undefined;
|
|
3129
|
+
readonly itemsCount?: number | undefined;
|
|
3130
|
+
}[] | undefined;
|
|
3131
|
+
readonly menus?: readonly {
|
|
3132
|
+
readonly id?: number | undefined;
|
|
3133
|
+
readonly menuLocationId?: number | undefined;
|
|
3134
|
+
readonly name: string;
|
|
3135
|
+
readonly title: string;
|
|
3136
|
+
readonly description?: string | null | undefined;
|
|
3137
|
+
readonly createdAt?: string | undefined;
|
|
3138
|
+
readonly updatedAt?: string | undefined;
|
|
3139
|
+
readonly items?: readonly {
|
|
3140
|
+
readonly id?: number | undefined;
|
|
3141
|
+
readonly menuId?: number | undefined;
|
|
3142
|
+
readonly pageId?: number | undefined;
|
|
3143
|
+
readonly sectionKey?: string | undefined;
|
|
3144
|
+
readonly menuItemGroupId?: number | undefined;
|
|
3145
|
+
readonly title: string;
|
|
3146
|
+
readonly description?: string | null | undefined;
|
|
3147
|
+
readonly path?: string | null | undefined;
|
|
3148
|
+
readonly url?: string | null | undefined;
|
|
3149
|
+
readonly controller?: string | null | undefined;
|
|
3150
|
+
readonly parentId?: number | null | undefined;
|
|
3151
|
+
readonly position: number;
|
|
3152
|
+
readonly isActive: boolean;
|
|
3153
|
+
readonly isVisible: boolean;
|
|
3154
|
+
readonly color?: string | undefined;
|
|
3155
|
+
readonly icon?: string | undefined;
|
|
3156
|
+
readonly targetType: import("@creopse/utils").MenuItemTargetType;
|
|
3157
|
+
readonly contentType?: import("@creopse/utils").ContentType | undefined;
|
|
3158
|
+
readonly contentId?: number | undefined;
|
|
3159
|
+
readonly createdAt?: string | undefined;
|
|
3160
|
+
readonly updatedAt?: string | undefined;
|
|
3161
|
+
readonly menu?: /*elided*/ any | undefined;
|
|
3162
|
+
readonly page?: {
|
|
3163
|
+
readonly name: string;
|
|
3164
|
+
readonly title: string;
|
|
3165
|
+
readonly slug: string;
|
|
3166
|
+
readonly content: string | null;
|
|
3167
|
+
readonly sectionsOrder?: readonly string[] | null | undefined;
|
|
3168
|
+
readonly sectionsDisabled?: readonly string[] | null | undefined;
|
|
3169
|
+
readonly sections?: readonly {
|
|
3170
|
+
readonly id?: number | undefined;
|
|
3171
|
+
readonly name: string;
|
|
3172
|
+
readonly title: string;
|
|
3173
|
+
readonly slug: string;
|
|
3174
|
+
readonly content?: string | null | undefined;
|
|
3175
|
+
readonly dataStructure?: any | null;
|
|
3176
|
+
readonly settingsStructure?: any | null;
|
|
3177
|
+
readonly createdAt?: string | undefined;
|
|
3178
|
+
readonly updatedAt?: string | undefined;
|
|
3179
|
+
readonly pages?: readonly /*elided*/ any[] | undefined;
|
|
3180
|
+
readonly pagesCount?: number | undefined;
|
|
3181
|
+
readonly pivot?: {
|
|
3182
|
+
readonly pageId?: number | undefined;
|
|
3183
|
+
readonly sectionId?: number | undefined;
|
|
3184
|
+
readonly dataSourceLinkId?: string | null | undefined;
|
|
3185
|
+
readonly dataSourcePageId?: number | null | undefined;
|
|
3186
|
+
readonly dataSourcePageTitle?: string | null | undefined;
|
|
3187
|
+
readonly linkId?: string | null | undefined;
|
|
3188
|
+
readonly data?: any;
|
|
3189
|
+
readonly settings?: any;
|
|
3190
|
+
readonly createdAt?: string | undefined;
|
|
3191
|
+
readonly updatedAt?: string | undefined;
|
|
3192
|
+
} | undefined;
|
|
3193
|
+
}[] | undefined;
|
|
3194
|
+
readonly id?: number | undefined;
|
|
3195
|
+
readonly createdAt?: string | undefined;
|
|
3196
|
+
readonly updatedAt?: string | undefined;
|
|
3197
|
+
readonly pivot?: {
|
|
3198
|
+
readonly pageId?: number | undefined;
|
|
3199
|
+
readonly sectionId?: number | undefined;
|
|
3200
|
+
readonly dataSourceLinkId?: string | null | undefined;
|
|
3201
|
+
readonly dataSourcePageId?: number | null | undefined;
|
|
3202
|
+
readonly dataSourcePageTitle?: string | null | undefined;
|
|
3203
|
+
readonly linkId?: string | null | undefined;
|
|
3204
|
+
readonly data?: any;
|
|
3205
|
+
readonly settings?: any;
|
|
3206
|
+
readonly createdAt?: string | undefined;
|
|
3207
|
+
readonly updatedAt?: string | undefined;
|
|
3208
|
+
} | undefined;
|
|
3209
|
+
} | undefined;
|
|
3210
|
+
readonly section?: {
|
|
3211
|
+
readonly id?: number | undefined;
|
|
3212
|
+
readonly name: string;
|
|
3213
|
+
readonly title: string;
|
|
3214
|
+
readonly slug: string;
|
|
3215
|
+
readonly content?: string | null | undefined;
|
|
3216
|
+
readonly dataStructure?: any | null;
|
|
3217
|
+
readonly settingsStructure?: any | null;
|
|
3218
|
+
readonly createdAt?: string | undefined;
|
|
3219
|
+
readonly updatedAt?: string | undefined;
|
|
3220
|
+
readonly pages?: readonly {
|
|
3221
|
+
readonly name: string;
|
|
3222
|
+
readonly title: string;
|
|
3223
|
+
readonly slug: string;
|
|
3224
|
+
readonly content: string | null;
|
|
3225
|
+
readonly sectionsOrder?: readonly string[] | null | undefined;
|
|
3226
|
+
readonly sectionsDisabled?: readonly string[] | null | undefined;
|
|
3227
|
+
readonly sections?: readonly /*elided*/ any[] | undefined;
|
|
3228
|
+
readonly id?: number | undefined;
|
|
3229
|
+
readonly createdAt?: string | undefined;
|
|
3230
|
+
readonly updatedAt?: string | undefined;
|
|
3231
|
+
readonly pivot?: {
|
|
3232
|
+
readonly pageId?: number | undefined;
|
|
3233
|
+
readonly sectionId?: number | undefined;
|
|
3234
|
+
readonly dataSourceLinkId?: string | null | undefined;
|
|
3235
|
+
readonly dataSourcePageId?: number | null | undefined;
|
|
3236
|
+
readonly dataSourcePageTitle?: string | null | undefined;
|
|
3237
|
+
readonly linkId?: string | null | undefined;
|
|
3238
|
+
readonly data?: any;
|
|
3239
|
+
readonly settings?: any;
|
|
3240
|
+
readonly createdAt?: string | undefined;
|
|
3241
|
+
readonly updatedAt?: string | undefined;
|
|
3242
|
+
} | undefined;
|
|
3243
|
+
}[] | undefined;
|
|
3244
|
+
readonly pagesCount?: number | undefined;
|
|
3245
|
+
readonly pivot?: {
|
|
3246
|
+
readonly pageId?: number | undefined;
|
|
3247
|
+
readonly sectionId?: number | undefined;
|
|
3248
|
+
readonly dataSourceLinkId?: string | null | undefined;
|
|
3249
|
+
readonly dataSourcePageId?: number | null | undefined;
|
|
3250
|
+
readonly dataSourcePageTitle?: string | null | undefined;
|
|
3251
|
+
readonly linkId?: string | null | undefined;
|
|
3252
|
+
readonly data?: any;
|
|
3253
|
+
readonly settings?: any;
|
|
3254
|
+
readonly createdAt?: string | undefined;
|
|
3255
|
+
readonly updatedAt?: string | undefined;
|
|
3256
|
+
} | undefined;
|
|
3257
|
+
} | undefined;
|
|
3258
|
+
readonly group?: {
|
|
3259
|
+
readonly id?: number | undefined;
|
|
3260
|
+
readonly name: string;
|
|
3261
|
+
readonly description?: string | null | undefined;
|
|
3262
|
+
readonly createdAt?: string | undefined;
|
|
3263
|
+
readonly updatedAt?: string | undefined;
|
|
3264
|
+
} | undefined;
|
|
3265
|
+
readonly content?: {
|
|
3266
|
+
readonly id?: number | undefined;
|
|
3267
|
+
readonly foreignId?: number | null | undefined;
|
|
3268
|
+
readonly authorId?: number | undefined;
|
|
3269
|
+
readonly publisherId?: number | undefined;
|
|
3270
|
+
readonly title: string;
|
|
3271
|
+
readonly slug: string;
|
|
3272
|
+
readonly summary?: string | null | undefined;
|
|
3273
|
+
readonly content?: string | null | undefined;
|
|
3274
|
+
readonly featuredImage?: string | null | undefined;
|
|
3275
|
+
readonly featuredImageUrl?: string | null | undefined;
|
|
3276
|
+
readonly foreignFeaturedImage?: string | null | undefined;
|
|
3277
|
+
readonly legend?: string | null | undefined;
|
|
3278
|
+
readonly allowComments: boolean;
|
|
3279
|
+
readonly isHeadline: boolean;
|
|
3280
|
+
readonly status: import("@creopse/utils").NewsArticleStatus;
|
|
3281
|
+
readonly publishedAt?: string | null | undefined;
|
|
3282
|
+
readonly deletedAt?: string | null | undefined;
|
|
3283
|
+
readonly createdAt?: string | undefined;
|
|
3284
|
+
readonly updatedAt?: string | undefined;
|
|
3285
|
+
readonly author?: {
|
|
3286
|
+
readonly id?: number | undefined;
|
|
3287
|
+
readonly uid?: string | undefined;
|
|
3288
|
+
readonly avatar: string;
|
|
3289
|
+
readonly avatarUrl: string;
|
|
3290
|
+
readonly fullname: string;
|
|
3291
|
+
readonly lastname: string;
|
|
3292
|
+
readonly firstname: string;
|
|
3293
|
+
readonly email: string;
|
|
3294
|
+
readonly emailVerifiedAt?: string | undefined;
|
|
3295
|
+
readonly password: string;
|
|
3296
|
+
readonly phone?: string | undefined;
|
|
3297
|
+
readonly address?: string | undefined;
|
|
3298
|
+
readonly location?: {
|
|
3299
|
+
readonly lat: number;
|
|
3300
|
+
readonly lng: number;
|
|
3301
|
+
} | null | undefined;
|
|
3302
|
+
readonly profileType: import("@creopse/utils").ProfileType | string;
|
|
3303
|
+
readonly profileId: number;
|
|
3304
|
+
readonly accountStatus: import("@creopse/utils").AccountStatus;
|
|
3305
|
+
readonly preferences?: any;
|
|
3306
|
+
readonly authType?: import("@creopse/utils").AuthType | undefined;
|
|
3307
|
+
readonly lastLoggedInAt?: string | undefined;
|
|
3308
|
+
readonly rememberToken?: string | undefined;
|
|
3309
|
+
readonly deletedAt?: string | undefined;
|
|
3310
|
+
readonly createdAt?: string | undefined;
|
|
3311
|
+
readonly updatedAt?: string | undefined;
|
|
3312
|
+
readonly permissions?: readonly {
|
|
3313
|
+
readonly id?: number | undefined;
|
|
3314
|
+
readonly name: string;
|
|
3315
|
+
readonly displayName: string;
|
|
3316
|
+
readonly description: string;
|
|
3317
|
+
readonly createdAt?: string | undefined;
|
|
3318
|
+
readonly updatedAt?: string | undefined;
|
|
3319
|
+
}[] | undefined;
|
|
3320
|
+
readonly profile?: import("@creopse/utils").AdminProfileModel | any;
|
|
3321
|
+
readonly roles?: readonly {
|
|
3322
|
+
readonly id?: number | undefined;
|
|
3323
|
+
readonly name: string;
|
|
3324
|
+
readonly displayName: string;
|
|
3325
|
+
readonly description: string;
|
|
3326
|
+
readonly permissions?: readonly {
|
|
3327
|
+
readonly id?: number | undefined;
|
|
3328
|
+
readonly name: string;
|
|
3329
|
+
readonly displayName: string;
|
|
3330
|
+
readonly description: string;
|
|
3331
|
+
readonly createdAt?: string | undefined;
|
|
3332
|
+
readonly updatedAt?: string | undefined;
|
|
3333
|
+
}[] | undefined;
|
|
3334
|
+
readonly createdAt?: string | undefined;
|
|
3335
|
+
readonly updatedAt?: string | undefined;
|
|
3336
|
+
}[] | undefined;
|
|
3337
|
+
readonly sessions?: readonly {
|
|
3338
|
+
readonly id?: number | undefined;
|
|
3339
|
+
readonly userId?: number | undefined;
|
|
3340
|
+
readonly ipAddress: string;
|
|
3341
|
+
readonly userAgent: string;
|
|
3342
|
+
readonly locationData?: {
|
|
3343
|
+
readonly ip: string;
|
|
3344
|
+
readonly iso?: string | undefined;
|
|
3345
|
+
readonly city?: string | undefined;
|
|
3346
|
+
readonly region?: string | undefined;
|
|
3347
|
+
readonly source?: string | undefined;
|
|
3348
|
+
readonly country?: string | undefined;
|
|
3349
|
+
readonly currency?: string | undefined;
|
|
3350
|
+
readonly latitude?: string | undefined;
|
|
3351
|
+
readonly timezone?: string | undefined;
|
|
3352
|
+
readonly continent?: string | undefined;
|
|
3353
|
+
readonly longitude?: string | undefined;
|
|
3354
|
+
} | undefined;
|
|
3355
|
+
readonly lastActivity: string;
|
|
3356
|
+
readonly createdAt?: string | undefined;
|
|
3357
|
+
readonly updatedAt?: string | undefined;
|
|
3358
|
+
readonly user?: /*elided*/ any | undefined;
|
|
3359
|
+
}[] | undefined;
|
|
3360
|
+
readonly devices?: readonly {
|
|
3361
|
+
readonly id?: number | undefined;
|
|
3362
|
+
readonly userId?: number | undefined;
|
|
3363
|
+
readonly deviceId?: string | undefined;
|
|
3364
|
+
readonly data?: any;
|
|
3365
|
+
readonly isActive?: boolean | undefined;
|
|
3366
|
+
readonly createdAt?: string | undefined;
|
|
3367
|
+
readonly updatedAt?: string | undefined;
|
|
3368
|
+
readonly user?: /*elided*/ any | undefined;
|
|
3369
|
+
}[] | undefined;
|
|
3370
|
+
readonly place?: {
|
|
3371
|
+
readonly id?: number | undefined;
|
|
3372
|
+
readonly userId?: number | undefined;
|
|
3373
|
+
readonly country?: string | undefined;
|
|
3374
|
+
readonly position?: string | undefined;
|
|
3375
|
+
readonly locality?: string | undefined;
|
|
3376
|
+
readonly administrativeArea?: string | undefined;
|
|
3377
|
+
readonly postalCode?: string | undefined;
|
|
3378
|
+
readonly name?: string | undefined;
|
|
3379
|
+
readonly subAdministrativeArea?: string | undefined;
|
|
3380
|
+
readonly isoCountryCode?: string | undefined;
|
|
3381
|
+
readonly subLocality?: string | undefined;
|
|
3382
|
+
readonly subThoroughfare?: string | undefined;
|
|
3383
|
+
readonly thoroughfare?: string | undefined;
|
|
3384
|
+
readonly street?: string | undefined;
|
|
3385
|
+
readonly createdAt?: string | undefined;
|
|
3386
|
+
readonly updatedAt?: string | undefined;
|
|
3387
|
+
readonly user?: /*elided*/ any | undefined;
|
|
3388
|
+
} | undefined;
|
|
3389
|
+
} | undefined;
|
|
3390
|
+
readonly publisher?: {
|
|
3391
|
+
readonly id?: number | undefined;
|
|
3392
|
+
readonly uid?: string | undefined;
|
|
3393
|
+
readonly avatar: string;
|
|
3394
|
+
readonly avatarUrl: string;
|
|
3395
|
+
readonly fullname: string;
|
|
3396
|
+
readonly lastname: string;
|
|
3397
|
+
readonly firstname: string;
|
|
3398
|
+
readonly email: string;
|
|
3399
|
+
readonly emailVerifiedAt?: string | undefined;
|
|
3400
|
+
readonly password: string;
|
|
3401
|
+
readonly phone?: string | undefined;
|
|
3402
|
+
readonly address?: string | undefined;
|
|
3403
|
+
readonly location?: {
|
|
3404
|
+
readonly lat: number;
|
|
3405
|
+
readonly lng: number;
|
|
3406
|
+
} | null | undefined;
|
|
3407
|
+
readonly profileType: import("@creopse/utils").ProfileType | string;
|
|
3408
|
+
readonly profileId: number;
|
|
3409
|
+
readonly accountStatus: import("@creopse/utils").AccountStatus;
|
|
3410
|
+
readonly preferences?: any;
|
|
3411
|
+
readonly authType?: import("@creopse/utils").AuthType | undefined;
|
|
3412
|
+
readonly lastLoggedInAt?: string | undefined;
|
|
3413
|
+
readonly rememberToken?: string | undefined;
|
|
3414
|
+
readonly deletedAt?: string | undefined;
|
|
3415
|
+
readonly createdAt?: string | undefined;
|
|
3416
|
+
readonly updatedAt?: string | undefined;
|
|
3417
|
+
readonly permissions?: readonly {
|
|
3418
|
+
readonly id?: number | undefined;
|
|
3419
|
+
readonly name: string;
|
|
3420
|
+
readonly displayName: string;
|
|
3421
|
+
readonly description: string;
|
|
3422
|
+
readonly createdAt?: string | undefined;
|
|
3423
|
+
readonly updatedAt?: string | undefined;
|
|
3424
|
+
}[] | undefined;
|
|
3425
|
+
readonly profile?: import("@creopse/utils").AdminProfileModel | any;
|
|
3426
|
+
readonly roles?: readonly {
|
|
3427
|
+
readonly id?: number | undefined;
|
|
3428
|
+
readonly name: string;
|
|
3429
|
+
readonly displayName: string;
|
|
3430
|
+
readonly description: string;
|
|
3431
|
+
readonly permissions?: readonly {
|
|
3432
|
+
readonly id?: number | undefined;
|
|
3433
|
+
readonly name: string;
|
|
3434
|
+
readonly displayName: string;
|
|
3435
|
+
readonly description: string;
|
|
3436
|
+
readonly createdAt?: string | undefined;
|
|
3437
|
+
readonly updatedAt?: string | undefined;
|
|
3438
|
+
}[] | undefined;
|
|
3439
|
+
readonly createdAt?: string | undefined;
|
|
3440
|
+
readonly updatedAt?: string | undefined;
|
|
3441
|
+
}[] | undefined;
|
|
3442
|
+
readonly sessions?: readonly {
|
|
3443
|
+
readonly id?: number | undefined;
|
|
3444
|
+
readonly userId?: number | undefined;
|
|
3445
|
+
readonly ipAddress: string;
|
|
3446
|
+
readonly userAgent: string;
|
|
3447
|
+
readonly locationData?: {
|
|
3448
|
+
readonly ip: string;
|
|
3449
|
+
readonly iso?: string | undefined;
|
|
3450
|
+
readonly city?: string | undefined;
|
|
3451
|
+
readonly region?: string | undefined;
|
|
3452
|
+
readonly source?: string | undefined;
|
|
3453
|
+
readonly country?: string | undefined;
|
|
3454
|
+
readonly currency?: string | undefined;
|
|
3455
|
+
readonly latitude?: string | undefined;
|
|
3456
|
+
readonly timezone?: string | undefined;
|
|
3457
|
+
readonly continent?: string | undefined;
|
|
3458
|
+
readonly longitude?: string | undefined;
|
|
3459
|
+
} | undefined;
|
|
3460
|
+
readonly lastActivity: string;
|
|
3461
|
+
readonly createdAt?: string | undefined;
|
|
3462
|
+
readonly updatedAt?: string | undefined;
|
|
3463
|
+
readonly user?: /*elided*/ any | undefined;
|
|
3464
|
+
}[] | undefined;
|
|
3465
|
+
readonly devices?: readonly {
|
|
3466
|
+
readonly id?: number | undefined;
|
|
3467
|
+
readonly userId?: number | undefined;
|
|
3468
|
+
readonly deviceId?: string | undefined;
|
|
3469
|
+
readonly data?: any;
|
|
3470
|
+
readonly isActive?: boolean | undefined;
|
|
3471
|
+
readonly createdAt?: string | undefined;
|
|
3472
|
+
readonly updatedAt?: string | undefined;
|
|
3473
|
+
readonly user?: /*elided*/ any | undefined;
|
|
3474
|
+
}[] | undefined;
|
|
3475
|
+
readonly place?: {
|
|
3476
|
+
readonly id?: number | undefined;
|
|
3477
|
+
readonly userId?: number | undefined;
|
|
3478
|
+
readonly country?: string | undefined;
|
|
3479
|
+
readonly position?: string | undefined;
|
|
3480
|
+
readonly locality?: string | undefined;
|
|
3481
|
+
readonly administrativeArea?: string | undefined;
|
|
3482
|
+
readonly postalCode?: string | undefined;
|
|
3483
|
+
readonly name?: string | undefined;
|
|
3484
|
+
readonly subAdministrativeArea?: string | undefined;
|
|
3485
|
+
readonly isoCountryCode?: string | undefined;
|
|
3486
|
+
readonly subLocality?: string | undefined;
|
|
3487
|
+
readonly subThoroughfare?: string | undefined;
|
|
3488
|
+
readonly thoroughfare?: string | undefined;
|
|
3489
|
+
readonly street?: string | undefined;
|
|
3490
|
+
readonly createdAt?: string | undefined;
|
|
3491
|
+
readonly updatedAt?: string | undefined;
|
|
3492
|
+
readonly user?: /*elided*/ any | undefined;
|
|
3493
|
+
} | undefined;
|
|
3494
|
+
} | undefined;
|
|
3495
|
+
readonly categories?: readonly {
|
|
3496
|
+
readonly id?: number | undefined;
|
|
3497
|
+
readonly foreignId?: number | null | undefined;
|
|
3498
|
+
readonly name: string;
|
|
3499
|
+
readonly slug?: string | undefined;
|
|
3500
|
+
readonly color?: string | undefined;
|
|
3501
|
+
readonly description?: string | null | undefined;
|
|
3502
|
+
readonly parentId?: number | null | undefined;
|
|
3503
|
+
readonly position?: number | null | undefined;
|
|
3504
|
+
readonly isActive: boolean;
|
|
3505
|
+
readonly image?: string | null | undefined;
|
|
3506
|
+
readonly imageUrl?: string | null | undefined;
|
|
3507
|
+
readonly deletedAt?: string | null | undefined;
|
|
3508
|
+
readonly createdAt?: string | undefined;
|
|
3509
|
+
readonly updatedAt?: string | undefined;
|
|
3510
|
+
readonly articles?: readonly /*elided*/ any[] | undefined;
|
|
3511
|
+
readonly articlesCount?: number | undefined;
|
|
3512
|
+
}[] | undefined;
|
|
3513
|
+
readonly categoriesCount?: number | undefined;
|
|
3514
|
+
readonly tags?: readonly {
|
|
3515
|
+
readonly id?: number | undefined;
|
|
3516
|
+
readonly foreignId?: number | null | undefined;
|
|
3517
|
+
readonly name: string;
|
|
3518
|
+
readonly description?: string | null | undefined;
|
|
3519
|
+
readonly slug?: string | undefined;
|
|
3520
|
+
readonly isActive: boolean;
|
|
3521
|
+
readonly deletedAt?: string | null | undefined;
|
|
3522
|
+
readonly createdAt?: string | undefined;
|
|
3523
|
+
readonly updatedAt?: string | undefined;
|
|
3524
|
+
readonly articles?: readonly /*elided*/ any[] | undefined;
|
|
3525
|
+
readonly articlesCount?: number | undefined;
|
|
3526
|
+
}[] | undefined;
|
|
3527
|
+
readonly tagsCount?: number | undefined;
|
|
3528
|
+
readonly comments?: readonly {
|
|
3529
|
+
readonly id?: number | undefined;
|
|
3530
|
+
readonly foreignId?: number | null | undefined;
|
|
3531
|
+
readonly authorId?: number | null | undefined;
|
|
3532
|
+
readonly articleId?: number | undefined;
|
|
3533
|
+
readonly name?: string | null | undefined;
|
|
3534
|
+
readonly content: string;
|
|
3535
|
+
readonly email?: string | null | undefined;
|
|
3536
|
+
readonly isActive: boolean;
|
|
3537
|
+
readonly deletedAt?: string | null | undefined;
|
|
3538
|
+
readonly createdAt?: string | undefined;
|
|
3539
|
+
readonly updatedAt?: string | undefined;
|
|
3540
|
+
readonly author?: {
|
|
3541
|
+
readonly id?: number | undefined;
|
|
3542
|
+
readonly uid?: string | undefined;
|
|
3543
|
+
readonly avatar: string;
|
|
3544
|
+
readonly avatarUrl: string;
|
|
3545
|
+
readonly fullname: string;
|
|
3546
|
+
readonly lastname: string;
|
|
3547
|
+
readonly firstname: string;
|
|
3548
|
+
readonly email: string;
|
|
3549
|
+
readonly emailVerifiedAt?: string | undefined;
|
|
3550
|
+
readonly password: string;
|
|
3551
|
+
readonly phone?: string | undefined;
|
|
3552
|
+
readonly address?: string | undefined;
|
|
3553
|
+
readonly location?: {
|
|
3554
|
+
readonly lat: number;
|
|
3555
|
+
readonly lng: number;
|
|
3556
|
+
} | null | undefined;
|
|
3557
|
+
readonly profileType: import("@creopse/utils").ProfileType | string;
|
|
3558
|
+
readonly profileId: number;
|
|
3559
|
+
readonly accountStatus: import("@creopse/utils").AccountStatus;
|
|
3560
|
+
readonly preferences?: any;
|
|
3561
|
+
readonly authType?: import("@creopse/utils").AuthType | undefined;
|
|
3562
|
+
readonly lastLoggedInAt?: string | undefined;
|
|
3563
|
+
readonly rememberToken?: string | undefined;
|
|
3564
|
+
readonly deletedAt?: string | undefined;
|
|
3565
|
+
readonly createdAt?: string | undefined;
|
|
3566
|
+
readonly updatedAt?: string | undefined;
|
|
3567
|
+
readonly permissions?: readonly {
|
|
3568
|
+
readonly id?: number | undefined;
|
|
3569
|
+
readonly name: string;
|
|
3570
|
+
readonly displayName: string;
|
|
3571
|
+
readonly description: string;
|
|
3572
|
+
readonly createdAt?: string | undefined;
|
|
3573
|
+
readonly updatedAt?: string | undefined;
|
|
3574
|
+
}[] | undefined;
|
|
3575
|
+
readonly profile?: import("@creopse/utils").AdminProfileModel | any;
|
|
3576
|
+
readonly roles?: readonly {
|
|
3577
|
+
readonly id?: number | undefined;
|
|
3578
|
+
readonly name: string;
|
|
3579
|
+
readonly displayName: string;
|
|
3580
|
+
readonly description: string;
|
|
3581
|
+
readonly permissions?: readonly {
|
|
3582
|
+
readonly id?: number | undefined;
|
|
3583
|
+
readonly name: string;
|
|
3584
|
+
readonly displayName: string;
|
|
3585
|
+
readonly description: string;
|
|
3586
|
+
readonly createdAt?: string | undefined;
|
|
3587
|
+
readonly updatedAt?: string | undefined;
|
|
3588
|
+
}[] | undefined;
|
|
3589
|
+
readonly createdAt?: string | undefined;
|
|
3590
|
+
readonly updatedAt?: string | undefined;
|
|
3591
|
+
}[] | undefined;
|
|
3592
|
+
readonly sessions?: readonly {
|
|
3593
|
+
readonly id?: number | undefined;
|
|
3594
|
+
readonly userId?: number | undefined;
|
|
3595
|
+
readonly ipAddress: string;
|
|
3596
|
+
readonly userAgent: string;
|
|
3597
|
+
readonly locationData?: {
|
|
3598
|
+
readonly ip: string;
|
|
3599
|
+
readonly iso?: string | undefined;
|
|
3600
|
+
readonly city?: string | undefined;
|
|
3601
|
+
readonly region?: string | undefined;
|
|
3602
|
+
readonly source?: string | undefined;
|
|
3603
|
+
readonly country?: string | undefined;
|
|
3604
|
+
readonly currency?: string | undefined;
|
|
3605
|
+
readonly latitude?: string | undefined;
|
|
3606
|
+
readonly timezone?: string | undefined;
|
|
3607
|
+
readonly continent?: string | undefined;
|
|
3608
|
+
readonly longitude?: string | undefined;
|
|
3609
|
+
} | undefined;
|
|
3610
|
+
readonly lastActivity: string;
|
|
3611
|
+
readonly createdAt?: string | undefined;
|
|
3612
|
+
readonly updatedAt?: string | undefined;
|
|
3613
|
+
readonly user?: /*elided*/ any | undefined;
|
|
3614
|
+
}[] | undefined;
|
|
3615
|
+
readonly devices?: readonly {
|
|
3616
|
+
readonly id?: number | undefined;
|
|
3617
|
+
readonly userId?: number | undefined;
|
|
3618
|
+
readonly deviceId?: string | undefined;
|
|
3619
|
+
readonly data?: any;
|
|
3620
|
+
readonly isActive?: boolean | undefined;
|
|
3621
|
+
readonly createdAt?: string | undefined;
|
|
3622
|
+
readonly updatedAt?: string | undefined;
|
|
3623
|
+
readonly user?: /*elided*/ any | undefined;
|
|
3624
|
+
}[] | undefined;
|
|
3625
|
+
readonly place?: {
|
|
3626
|
+
readonly id?: number | undefined;
|
|
3627
|
+
readonly userId?: number | undefined;
|
|
3628
|
+
readonly country?: string | undefined;
|
|
3629
|
+
readonly position?: string | undefined;
|
|
3630
|
+
readonly locality?: string | undefined;
|
|
3631
|
+
readonly administrativeArea?: string | undefined;
|
|
3632
|
+
readonly postalCode?: string | undefined;
|
|
3633
|
+
readonly name?: string | undefined;
|
|
3634
|
+
readonly subAdministrativeArea?: string | undefined;
|
|
3635
|
+
readonly isoCountryCode?: string | undefined;
|
|
3636
|
+
readonly subLocality?: string | undefined;
|
|
3637
|
+
readonly subThoroughfare?: string | undefined;
|
|
3638
|
+
readonly thoroughfare?: string | undefined;
|
|
3639
|
+
readonly street?: string | undefined;
|
|
3640
|
+
readonly createdAt?: string | undefined;
|
|
3641
|
+
readonly updatedAt?: string | undefined;
|
|
3642
|
+
readonly user?: /*elided*/ any | undefined;
|
|
3643
|
+
} | undefined;
|
|
3644
|
+
} | undefined;
|
|
3645
|
+
readonly article?: /*elided*/ any | undefined;
|
|
3646
|
+
}[] | undefined;
|
|
3647
|
+
readonly commentsCount?: number | undefined;
|
|
3648
|
+
} | {
|
|
3649
|
+
readonly id?: number | undefined;
|
|
3650
|
+
readonly foreignId?: number | null | undefined;
|
|
3651
|
+
readonly name: string;
|
|
3652
|
+
readonly slug?: string | undefined;
|
|
3653
|
+
readonly color?: string | undefined;
|
|
3654
|
+
readonly description?: string | null | undefined;
|
|
3655
|
+
readonly parentId?: number | null | undefined;
|
|
3656
|
+
readonly position?: number | null | undefined;
|
|
3657
|
+
readonly isActive: boolean;
|
|
3658
|
+
readonly image?: string | null | undefined;
|
|
3659
|
+
readonly imageUrl?: string | null | undefined;
|
|
3660
|
+
readonly deletedAt?: string | null | undefined;
|
|
3661
|
+
readonly createdAt?: string | undefined;
|
|
3662
|
+
readonly updatedAt?: string | undefined;
|
|
3663
|
+
readonly articles?: readonly {
|
|
3664
|
+
readonly id?: number | undefined;
|
|
3665
|
+
readonly foreignId?: number | null | undefined;
|
|
3666
|
+
readonly authorId?: number | undefined;
|
|
3667
|
+
readonly publisherId?: number | undefined;
|
|
3668
|
+
readonly title: string;
|
|
3669
|
+
readonly slug: string;
|
|
3670
|
+
readonly summary?: string | null | undefined;
|
|
3671
|
+
readonly content?: string | null | undefined;
|
|
3672
|
+
readonly featuredImage?: string | null | undefined;
|
|
3673
|
+
readonly featuredImageUrl?: string | null | undefined;
|
|
3674
|
+
readonly foreignFeaturedImage?: string | null | undefined;
|
|
3675
|
+
readonly legend?: string | null | undefined;
|
|
3676
|
+
readonly allowComments: boolean;
|
|
3677
|
+
readonly isHeadline: boolean;
|
|
3678
|
+
readonly status: import("@creopse/utils").NewsArticleStatus;
|
|
3679
|
+
readonly publishedAt?: string | null | undefined;
|
|
3680
|
+
readonly deletedAt?: string | null | undefined;
|
|
3681
|
+
readonly createdAt?: string | undefined;
|
|
3682
|
+
readonly updatedAt?: string | undefined;
|
|
3683
|
+
readonly author?: {
|
|
3684
|
+
readonly id?: number | undefined;
|
|
3685
|
+
readonly uid?: string | undefined;
|
|
3686
|
+
readonly avatar: string;
|
|
3687
|
+
readonly avatarUrl: string;
|
|
3688
|
+
readonly fullname: string;
|
|
3689
|
+
readonly lastname: string;
|
|
3690
|
+
readonly firstname: string;
|
|
3691
|
+
readonly email: string;
|
|
3692
|
+
readonly emailVerifiedAt?: string | undefined;
|
|
3693
|
+
readonly password: string;
|
|
3694
|
+
readonly phone?: string | undefined;
|
|
3695
|
+
readonly address?: string | undefined;
|
|
3696
|
+
readonly location?: {
|
|
3697
|
+
readonly lat: number;
|
|
3698
|
+
readonly lng: number;
|
|
3699
|
+
} | null | undefined;
|
|
3700
|
+
readonly profileType: import("@creopse/utils").ProfileType | string;
|
|
3701
|
+
readonly profileId: number;
|
|
3702
|
+
readonly accountStatus: import("@creopse/utils").AccountStatus;
|
|
3703
|
+
readonly preferences?: any;
|
|
3704
|
+
readonly authType?: import("@creopse/utils").AuthType | undefined;
|
|
3705
|
+
readonly lastLoggedInAt?: string | undefined;
|
|
3706
|
+
readonly rememberToken?: string | undefined;
|
|
3707
|
+
readonly deletedAt?: string | undefined;
|
|
3708
|
+
readonly createdAt?: string | undefined;
|
|
3709
|
+
readonly updatedAt?: string | undefined;
|
|
3710
|
+
readonly permissions?: readonly {
|
|
3711
|
+
readonly id?: number | undefined;
|
|
3712
|
+
readonly name: string;
|
|
3713
|
+
readonly displayName: string;
|
|
3714
|
+
readonly description: string;
|
|
3715
|
+
readonly createdAt?: string | undefined;
|
|
3716
|
+
readonly updatedAt?: string | undefined;
|
|
3717
|
+
}[] | undefined;
|
|
3718
|
+
readonly profile?: import("@creopse/utils").AdminProfileModel | any;
|
|
3719
|
+
readonly roles?: readonly {
|
|
3720
|
+
readonly id?: number | undefined;
|
|
3721
|
+
readonly name: string;
|
|
3722
|
+
readonly displayName: string;
|
|
3723
|
+
readonly description: string;
|
|
3724
|
+
readonly permissions?: readonly {
|
|
3725
|
+
readonly id?: number | undefined;
|
|
3726
|
+
readonly name: string;
|
|
3727
|
+
readonly displayName: string;
|
|
3728
|
+
readonly description: string;
|
|
3729
|
+
readonly createdAt?: string | undefined;
|
|
3730
|
+
readonly updatedAt?: string | undefined;
|
|
3731
|
+
}[] | undefined;
|
|
3732
|
+
readonly createdAt?: string | undefined;
|
|
3733
|
+
readonly updatedAt?: string | undefined;
|
|
3734
|
+
}[] | undefined;
|
|
3735
|
+
readonly sessions?: readonly {
|
|
3736
|
+
readonly id?: number | undefined;
|
|
3737
|
+
readonly userId?: number | undefined;
|
|
3738
|
+
readonly ipAddress: string;
|
|
3739
|
+
readonly userAgent: string;
|
|
3740
|
+
readonly locationData?: {
|
|
3741
|
+
readonly ip: string;
|
|
3742
|
+
readonly iso?: string | undefined;
|
|
3743
|
+
readonly city?: string | undefined;
|
|
3744
|
+
readonly region?: string | undefined;
|
|
3745
|
+
readonly source?: string | undefined;
|
|
3746
|
+
readonly country?: string | undefined;
|
|
3747
|
+
readonly currency?: string | undefined;
|
|
3748
|
+
readonly latitude?: string | undefined;
|
|
3749
|
+
readonly timezone?: string | undefined;
|
|
3750
|
+
readonly continent?: string | undefined;
|
|
3751
|
+
readonly longitude?: string | undefined;
|
|
3752
|
+
} | undefined;
|
|
3753
|
+
readonly lastActivity: string;
|
|
3754
|
+
readonly createdAt?: string | undefined;
|
|
3755
|
+
readonly updatedAt?: string | undefined;
|
|
3756
|
+
readonly user?: /*elided*/ any | undefined;
|
|
3757
|
+
}[] | undefined;
|
|
3758
|
+
readonly devices?: readonly {
|
|
3759
|
+
readonly id?: number | undefined;
|
|
3760
|
+
readonly userId?: number | undefined;
|
|
3761
|
+
readonly deviceId?: string | undefined;
|
|
3762
|
+
readonly data?: any;
|
|
3763
|
+
readonly isActive?: boolean | undefined;
|
|
3764
|
+
readonly createdAt?: string | undefined;
|
|
3765
|
+
readonly updatedAt?: string | undefined;
|
|
3766
|
+
readonly user?: /*elided*/ any | undefined;
|
|
3767
|
+
}[] | undefined;
|
|
3768
|
+
readonly place?: {
|
|
3769
|
+
readonly id?: number | undefined;
|
|
3770
|
+
readonly userId?: number | undefined;
|
|
3771
|
+
readonly country?: string | undefined;
|
|
3772
|
+
readonly position?: string | undefined;
|
|
3773
|
+
readonly locality?: string | undefined;
|
|
3774
|
+
readonly administrativeArea?: string | undefined;
|
|
3775
|
+
readonly postalCode?: string | undefined;
|
|
3776
|
+
readonly name?: string | undefined;
|
|
3777
|
+
readonly subAdministrativeArea?: string | undefined;
|
|
3778
|
+
readonly isoCountryCode?: string | undefined;
|
|
3779
|
+
readonly subLocality?: string | undefined;
|
|
3780
|
+
readonly subThoroughfare?: string | undefined;
|
|
3781
|
+
readonly thoroughfare?: string | undefined;
|
|
3782
|
+
readonly street?: string | undefined;
|
|
3783
|
+
readonly createdAt?: string | undefined;
|
|
3784
|
+
readonly updatedAt?: string | undefined;
|
|
3785
|
+
readonly user?: /*elided*/ any | undefined;
|
|
3786
|
+
} | undefined;
|
|
3787
|
+
} | undefined;
|
|
3788
|
+
readonly publisher?: {
|
|
3789
|
+
readonly id?: number | undefined;
|
|
3790
|
+
readonly uid?: string | undefined;
|
|
3791
|
+
readonly avatar: string;
|
|
3792
|
+
readonly avatarUrl: string;
|
|
3793
|
+
readonly fullname: string;
|
|
3794
|
+
readonly lastname: string;
|
|
3795
|
+
readonly firstname: string;
|
|
3796
|
+
readonly email: string;
|
|
3797
|
+
readonly emailVerifiedAt?: string | undefined;
|
|
3798
|
+
readonly password: string;
|
|
3799
|
+
readonly phone?: string | undefined;
|
|
3800
|
+
readonly address?: string | undefined;
|
|
3801
|
+
readonly location?: {
|
|
3802
|
+
readonly lat: number;
|
|
3803
|
+
readonly lng: number;
|
|
3804
|
+
} | null | undefined;
|
|
3805
|
+
readonly profileType: import("@creopse/utils").ProfileType | string;
|
|
3806
|
+
readonly profileId: number;
|
|
3807
|
+
readonly accountStatus: import("@creopse/utils").AccountStatus;
|
|
3808
|
+
readonly preferences?: any;
|
|
3809
|
+
readonly authType?: import("@creopse/utils").AuthType | undefined;
|
|
3810
|
+
readonly lastLoggedInAt?: string | undefined;
|
|
3811
|
+
readonly rememberToken?: string | undefined;
|
|
3812
|
+
readonly deletedAt?: string | undefined;
|
|
3813
|
+
readonly createdAt?: string | undefined;
|
|
3814
|
+
readonly updatedAt?: string | undefined;
|
|
3815
|
+
readonly permissions?: readonly {
|
|
3816
|
+
readonly id?: number | undefined;
|
|
3817
|
+
readonly name: string;
|
|
3818
|
+
readonly displayName: string;
|
|
3819
|
+
readonly description: string;
|
|
3820
|
+
readonly createdAt?: string | undefined;
|
|
3821
|
+
readonly updatedAt?: string | undefined;
|
|
3822
|
+
}[] | undefined;
|
|
3823
|
+
readonly profile?: import("@creopse/utils").AdminProfileModel | any;
|
|
3824
|
+
readonly roles?: readonly {
|
|
3825
|
+
readonly id?: number | undefined;
|
|
3826
|
+
readonly name: string;
|
|
3827
|
+
readonly displayName: string;
|
|
3828
|
+
readonly description: string;
|
|
3829
|
+
readonly permissions?: readonly {
|
|
3830
|
+
readonly id?: number | undefined;
|
|
3831
|
+
readonly name: string;
|
|
3832
|
+
readonly displayName: string;
|
|
3833
|
+
readonly description: string;
|
|
3834
|
+
readonly createdAt?: string | undefined;
|
|
3835
|
+
readonly updatedAt?: string | undefined;
|
|
3836
|
+
}[] | undefined;
|
|
3837
|
+
readonly createdAt?: string | undefined;
|
|
3838
|
+
readonly updatedAt?: string | undefined;
|
|
3839
|
+
}[] | undefined;
|
|
3840
|
+
readonly sessions?: readonly {
|
|
3841
|
+
readonly id?: number | undefined;
|
|
3842
|
+
readonly userId?: number | undefined;
|
|
3843
|
+
readonly ipAddress: string;
|
|
3844
|
+
readonly userAgent: string;
|
|
3845
|
+
readonly locationData?: {
|
|
3846
|
+
readonly ip: string;
|
|
3847
|
+
readonly iso?: string | undefined;
|
|
3848
|
+
readonly city?: string | undefined;
|
|
3849
|
+
readonly region?: string | undefined;
|
|
3850
|
+
readonly source?: string | undefined;
|
|
3851
|
+
readonly country?: string | undefined;
|
|
3852
|
+
readonly currency?: string | undefined;
|
|
3853
|
+
readonly latitude?: string | undefined;
|
|
3854
|
+
readonly timezone?: string | undefined;
|
|
3855
|
+
readonly continent?: string | undefined;
|
|
3856
|
+
readonly longitude?: string | undefined;
|
|
3857
|
+
} | undefined;
|
|
3858
|
+
readonly lastActivity: string;
|
|
3859
|
+
readonly createdAt?: string | undefined;
|
|
3860
|
+
readonly updatedAt?: string | undefined;
|
|
3861
|
+
readonly user?: /*elided*/ any | undefined;
|
|
3862
|
+
}[] | undefined;
|
|
3863
|
+
readonly devices?: readonly {
|
|
3864
|
+
readonly id?: number | undefined;
|
|
3865
|
+
readonly userId?: number | undefined;
|
|
3866
|
+
readonly deviceId?: string | undefined;
|
|
3867
|
+
readonly data?: any;
|
|
3868
|
+
readonly isActive?: boolean | undefined;
|
|
3869
|
+
readonly createdAt?: string | undefined;
|
|
3870
|
+
readonly updatedAt?: string | undefined;
|
|
3871
|
+
readonly user?: /*elided*/ any | undefined;
|
|
3872
|
+
}[] | undefined;
|
|
3873
|
+
readonly place?: {
|
|
3874
|
+
readonly id?: number | undefined;
|
|
3875
|
+
readonly userId?: number | undefined;
|
|
3876
|
+
readonly country?: string | undefined;
|
|
3877
|
+
readonly position?: string | undefined;
|
|
3878
|
+
readonly locality?: string | undefined;
|
|
3879
|
+
readonly administrativeArea?: string | undefined;
|
|
3880
|
+
readonly postalCode?: string | undefined;
|
|
3881
|
+
readonly name?: string | undefined;
|
|
3882
|
+
readonly subAdministrativeArea?: string | undefined;
|
|
3883
|
+
readonly isoCountryCode?: string | undefined;
|
|
3884
|
+
readonly subLocality?: string | undefined;
|
|
3885
|
+
readonly subThoroughfare?: string | undefined;
|
|
3886
|
+
readonly thoroughfare?: string | undefined;
|
|
3887
|
+
readonly street?: string | undefined;
|
|
3888
|
+
readonly createdAt?: string | undefined;
|
|
3889
|
+
readonly updatedAt?: string | undefined;
|
|
3890
|
+
readonly user?: /*elided*/ any | undefined;
|
|
3891
|
+
} | undefined;
|
|
3892
|
+
} | undefined;
|
|
3893
|
+
readonly categories?: readonly /*elided*/ any[] | undefined;
|
|
3894
|
+
readonly categoriesCount?: number | undefined;
|
|
3895
|
+
readonly tags?: readonly {
|
|
3896
|
+
readonly id?: number | undefined;
|
|
3897
|
+
readonly foreignId?: number | null | undefined;
|
|
3898
|
+
readonly name: string;
|
|
3899
|
+
readonly description?: string | null | undefined;
|
|
3900
|
+
readonly slug?: string | undefined;
|
|
3901
|
+
readonly isActive: boolean;
|
|
3902
|
+
readonly deletedAt?: string | null | undefined;
|
|
3903
|
+
readonly createdAt?: string | undefined;
|
|
3904
|
+
readonly updatedAt?: string | undefined;
|
|
3905
|
+
readonly articles?: readonly /*elided*/ any[] | undefined;
|
|
3906
|
+
readonly articlesCount?: number | undefined;
|
|
3907
|
+
}[] | undefined;
|
|
3908
|
+
readonly tagsCount?: number | undefined;
|
|
3909
|
+
readonly comments?: readonly {
|
|
3910
|
+
readonly id?: number | undefined;
|
|
3911
|
+
readonly foreignId?: number | null | undefined;
|
|
3912
|
+
readonly authorId?: number | null | undefined;
|
|
3913
|
+
readonly articleId?: number | undefined;
|
|
3914
|
+
readonly name?: string | null | undefined;
|
|
3915
|
+
readonly content: string;
|
|
3916
|
+
readonly email?: string | null | undefined;
|
|
3917
|
+
readonly isActive: boolean;
|
|
3918
|
+
readonly deletedAt?: string | null | undefined;
|
|
3919
|
+
readonly createdAt?: string | undefined;
|
|
3920
|
+
readonly updatedAt?: string | undefined;
|
|
3921
|
+
readonly author?: {
|
|
3922
|
+
readonly id?: number | undefined;
|
|
3923
|
+
readonly uid?: string | undefined;
|
|
3924
|
+
readonly avatar: string;
|
|
3925
|
+
readonly avatarUrl: string;
|
|
3926
|
+
readonly fullname: string;
|
|
3927
|
+
readonly lastname: string;
|
|
3928
|
+
readonly firstname: string;
|
|
3929
|
+
readonly email: string;
|
|
3930
|
+
readonly emailVerifiedAt?: string | undefined;
|
|
3931
|
+
readonly password: string;
|
|
3932
|
+
readonly phone?: string | undefined;
|
|
3933
|
+
readonly address?: string | undefined;
|
|
3934
|
+
readonly location?: {
|
|
3935
|
+
readonly lat: number;
|
|
3936
|
+
readonly lng: number;
|
|
3937
|
+
} | null | undefined;
|
|
3938
|
+
readonly profileType: import("@creopse/utils").ProfileType | string;
|
|
3939
|
+
readonly profileId: number;
|
|
3940
|
+
readonly accountStatus: import("@creopse/utils").AccountStatus;
|
|
3941
|
+
readonly preferences?: any;
|
|
3942
|
+
readonly authType?: import("@creopse/utils").AuthType | undefined;
|
|
3943
|
+
readonly lastLoggedInAt?: string | undefined;
|
|
3944
|
+
readonly rememberToken?: string | undefined;
|
|
3945
|
+
readonly deletedAt?: string | undefined;
|
|
3946
|
+
readonly createdAt?: string | undefined;
|
|
3947
|
+
readonly updatedAt?: string | undefined;
|
|
3948
|
+
readonly permissions?: readonly {
|
|
3949
|
+
readonly id?: number | undefined;
|
|
3950
|
+
readonly name: string;
|
|
3951
|
+
readonly displayName: string;
|
|
3952
|
+
readonly description: string;
|
|
3953
|
+
readonly createdAt?: string | undefined;
|
|
3954
|
+
readonly updatedAt?: string | undefined;
|
|
3955
|
+
}[] | undefined;
|
|
3956
|
+
readonly profile?: import("@creopse/utils").AdminProfileModel | any;
|
|
3957
|
+
readonly roles?: readonly {
|
|
3958
|
+
readonly id?: number | undefined;
|
|
3959
|
+
readonly name: string;
|
|
3960
|
+
readonly displayName: string;
|
|
3961
|
+
readonly description: string;
|
|
3962
|
+
readonly permissions?: readonly {
|
|
3963
|
+
readonly id?: number | undefined;
|
|
3964
|
+
readonly name: string;
|
|
3965
|
+
readonly displayName: string;
|
|
3966
|
+
readonly description: string;
|
|
3967
|
+
readonly createdAt?: string | undefined;
|
|
3968
|
+
readonly updatedAt?: string | undefined;
|
|
3969
|
+
}[] | undefined;
|
|
3970
|
+
readonly createdAt?: string | undefined;
|
|
3971
|
+
readonly updatedAt?: string | undefined;
|
|
3972
|
+
}[] | undefined;
|
|
3973
|
+
readonly sessions?: readonly {
|
|
3974
|
+
readonly id?: number | undefined;
|
|
3975
|
+
readonly userId?: number | undefined;
|
|
3976
|
+
readonly ipAddress: string;
|
|
3977
|
+
readonly userAgent: string;
|
|
3978
|
+
readonly locationData?: {
|
|
3979
|
+
readonly ip: string;
|
|
3980
|
+
readonly iso?: string | undefined;
|
|
3981
|
+
readonly city?: string | undefined;
|
|
3982
|
+
readonly region?: string | undefined;
|
|
3983
|
+
readonly source?: string | undefined;
|
|
3984
|
+
readonly country?: string | undefined;
|
|
3985
|
+
readonly currency?: string | undefined;
|
|
3986
|
+
readonly latitude?: string | undefined;
|
|
3987
|
+
readonly timezone?: string | undefined;
|
|
3988
|
+
readonly continent?: string | undefined;
|
|
3989
|
+
readonly longitude?: string | undefined;
|
|
3990
|
+
} | undefined;
|
|
3991
|
+
readonly lastActivity: string;
|
|
3992
|
+
readonly createdAt?: string | undefined;
|
|
3993
|
+
readonly updatedAt?: string | undefined;
|
|
3994
|
+
readonly user?: /*elided*/ any | undefined;
|
|
3995
|
+
}[] | undefined;
|
|
3996
|
+
readonly devices?: readonly {
|
|
3997
|
+
readonly id?: number | undefined;
|
|
3998
|
+
readonly userId?: number | undefined;
|
|
3999
|
+
readonly deviceId?: string | undefined;
|
|
4000
|
+
readonly data?: any;
|
|
4001
|
+
readonly isActive?: boolean | undefined;
|
|
4002
|
+
readonly createdAt?: string | undefined;
|
|
4003
|
+
readonly updatedAt?: string | undefined;
|
|
4004
|
+
readonly user?: /*elided*/ any | undefined;
|
|
4005
|
+
}[] | undefined;
|
|
4006
|
+
readonly place?: {
|
|
4007
|
+
readonly id?: number | undefined;
|
|
4008
|
+
readonly userId?: number | undefined;
|
|
4009
|
+
readonly country?: string | undefined;
|
|
4010
|
+
readonly position?: string | undefined;
|
|
4011
|
+
readonly locality?: string | undefined;
|
|
4012
|
+
readonly administrativeArea?: string | undefined;
|
|
4013
|
+
readonly postalCode?: string | undefined;
|
|
4014
|
+
readonly name?: string | undefined;
|
|
4015
|
+
readonly subAdministrativeArea?: string | undefined;
|
|
4016
|
+
readonly isoCountryCode?: string | undefined;
|
|
4017
|
+
readonly subLocality?: string | undefined;
|
|
4018
|
+
readonly subThoroughfare?: string | undefined;
|
|
4019
|
+
readonly thoroughfare?: string | undefined;
|
|
4020
|
+
readonly street?: string | undefined;
|
|
4021
|
+
readonly createdAt?: string | undefined;
|
|
4022
|
+
readonly updatedAt?: string | undefined;
|
|
4023
|
+
readonly user?: /*elided*/ any | undefined;
|
|
4024
|
+
} | undefined;
|
|
4025
|
+
} | undefined;
|
|
4026
|
+
readonly article?: /*elided*/ any | undefined;
|
|
4027
|
+
}[] | undefined;
|
|
4028
|
+
readonly commentsCount?: number | undefined;
|
|
4029
|
+
}[] | undefined;
|
|
4030
|
+
readonly articlesCount?: number | undefined;
|
|
4031
|
+
} | {
|
|
4032
|
+
readonly id?: number | undefined;
|
|
4033
|
+
readonly foreignId?: number | null | undefined;
|
|
4034
|
+
readonly name: string;
|
|
4035
|
+
readonly description?: string | null | undefined;
|
|
4036
|
+
readonly slug?: string | undefined;
|
|
4037
|
+
readonly isActive: boolean;
|
|
4038
|
+
readonly deletedAt?: string | null | undefined;
|
|
4039
|
+
readonly createdAt?: string | undefined;
|
|
4040
|
+
readonly updatedAt?: string | undefined;
|
|
4041
|
+
readonly articles?: readonly {
|
|
4042
|
+
readonly id?: number | undefined;
|
|
4043
|
+
readonly foreignId?: number | null | undefined;
|
|
4044
|
+
readonly authorId?: number | undefined;
|
|
4045
|
+
readonly publisherId?: number | undefined;
|
|
4046
|
+
readonly title: string;
|
|
4047
|
+
readonly slug: string;
|
|
4048
|
+
readonly summary?: string | null | undefined;
|
|
4049
|
+
readonly content?: string | null | undefined;
|
|
4050
|
+
readonly featuredImage?: string | null | undefined;
|
|
4051
|
+
readonly featuredImageUrl?: string | null | undefined;
|
|
4052
|
+
readonly foreignFeaturedImage?: string | null | undefined;
|
|
4053
|
+
readonly legend?: string | null | undefined;
|
|
4054
|
+
readonly allowComments: boolean;
|
|
4055
|
+
readonly isHeadline: boolean;
|
|
4056
|
+
readonly status: import("@creopse/utils").NewsArticleStatus;
|
|
4057
|
+
readonly publishedAt?: string | null | undefined;
|
|
4058
|
+
readonly deletedAt?: string | null | undefined;
|
|
4059
|
+
readonly createdAt?: string | undefined;
|
|
4060
|
+
readonly updatedAt?: string | undefined;
|
|
4061
|
+
readonly author?: {
|
|
4062
|
+
readonly id?: number | undefined;
|
|
4063
|
+
readonly uid?: string | undefined;
|
|
4064
|
+
readonly avatar: string;
|
|
4065
|
+
readonly avatarUrl: string;
|
|
4066
|
+
readonly fullname: string;
|
|
4067
|
+
readonly lastname: string;
|
|
4068
|
+
readonly firstname: string;
|
|
4069
|
+
readonly email: string;
|
|
4070
|
+
readonly emailVerifiedAt?: string | undefined;
|
|
4071
|
+
readonly password: string;
|
|
4072
|
+
readonly phone?: string | undefined;
|
|
4073
|
+
readonly address?: string | undefined;
|
|
4074
|
+
readonly location?: {
|
|
4075
|
+
readonly lat: number;
|
|
4076
|
+
readonly lng: number;
|
|
4077
|
+
} | null | undefined;
|
|
4078
|
+
readonly profileType: import("@creopse/utils").ProfileType | string;
|
|
4079
|
+
readonly profileId: number;
|
|
4080
|
+
readonly accountStatus: import("@creopse/utils").AccountStatus;
|
|
4081
|
+
readonly preferences?: any;
|
|
4082
|
+
readonly authType?: import("@creopse/utils").AuthType | undefined;
|
|
4083
|
+
readonly lastLoggedInAt?: string | undefined;
|
|
4084
|
+
readonly rememberToken?: string | undefined;
|
|
4085
|
+
readonly deletedAt?: string | undefined;
|
|
4086
|
+
readonly createdAt?: string | undefined;
|
|
4087
|
+
readonly updatedAt?: string | undefined;
|
|
4088
|
+
readonly permissions?: readonly {
|
|
4089
|
+
readonly id?: number | undefined;
|
|
4090
|
+
readonly name: string;
|
|
4091
|
+
readonly displayName: string;
|
|
4092
|
+
readonly description: string;
|
|
4093
|
+
readonly createdAt?: string | undefined;
|
|
4094
|
+
readonly updatedAt?: string | undefined;
|
|
4095
|
+
}[] | undefined;
|
|
4096
|
+
readonly profile?: import("@creopse/utils").AdminProfileModel | any;
|
|
4097
|
+
readonly roles?: readonly {
|
|
4098
|
+
readonly id?: number | undefined;
|
|
4099
|
+
readonly name: string;
|
|
4100
|
+
readonly displayName: string;
|
|
4101
|
+
readonly description: string;
|
|
4102
|
+
readonly permissions?: readonly {
|
|
4103
|
+
readonly id?: number | undefined;
|
|
4104
|
+
readonly name: string;
|
|
4105
|
+
readonly displayName: string;
|
|
4106
|
+
readonly description: string;
|
|
4107
|
+
readonly createdAt?: string | undefined;
|
|
4108
|
+
readonly updatedAt?: string | undefined;
|
|
4109
|
+
}[] | undefined;
|
|
4110
|
+
readonly createdAt?: string | undefined;
|
|
4111
|
+
readonly updatedAt?: string | undefined;
|
|
4112
|
+
}[] | undefined;
|
|
4113
|
+
readonly sessions?: readonly {
|
|
4114
|
+
readonly id?: number | undefined;
|
|
4115
|
+
readonly userId?: number | undefined;
|
|
4116
|
+
readonly ipAddress: string;
|
|
4117
|
+
readonly userAgent: string;
|
|
4118
|
+
readonly locationData?: {
|
|
4119
|
+
readonly ip: string;
|
|
4120
|
+
readonly iso?: string | undefined;
|
|
4121
|
+
readonly city?: string | undefined;
|
|
4122
|
+
readonly region?: string | undefined;
|
|
4123
|
+
readonly source?: string | undefined;
|
|
4124
|
+
readonly country?: string | undefined;
|
|
4125
|
+
readonly currency?: string | undefined;
|
|
4126
|
+
readonly latitude?: string | undefined;
|
|
4127
|
+
readonly timezone?: string | undefined;
|
|
4128
|
+
readonly continent?: string | undefined;
|
|
4129
|
+
readonly longitude?: string | undefined;
|
|
4130
|
+
} | undefined;
|
|
4131
|
+
readonly lastActivity: string;
|
|
4132
|
+
readonly createdAt?: string | undefined;
|
|
4133
|
+
readonly updatedAt?: string | undefined;
|
|
4134
|
+
readonly user?: /*elided*/ any | undefined;
|
|
4135
|
+
}[] | undefined;
|
|
4136
|
+
readonly devices?: readonly {
|
|
4137
|
+
readonly id?: number | undefined;
|
|
4138
|
+
readonly userId?: number | undefined;
|
|
4139
|
+
readonly deviceId?: string | undefined;
|
|
4140
|
+
readonly data?: any;
|
|
4141
|
+
readonly isActive?: boolean | undefined;
|
|
4142
|
+
readonly createdAt?: string | undefined;
|
|
4143
|
+
readonly updatedAt?: string | undefined;
|
|
4144
|
+
readonly user?: /*elided*/ any | undefined;
|
|
4145
|
+
}[] | undefined;
|
|
4146
|
+
readonly place?: {
|
|
4147
|
+
readonly id?: number | undefined;
|
|
4148
|
+
readonly userId?: number | undefined;
|
|
4149
|
+
readonly country?: string | undefined;
|
|
4150
|
+
readonly position?: string | undefined;
|
|
4151
|
+
readonly locality?: string | undefined;
|
|
4152
|
+
readonly administrativeArea?: string | undefined;
|
|
4153
|
+
readonly postalCode?: string | undefined;
|
|
4154
|
+
readonly name?: string | undefined;
|
|
4155
|
+
readonly subAdministrativeArea?: string | undefined;
|
|
4156
|
+
readonly isoCountryCode?: string | undefined;
|
|
4157
|
+
readonly subLocality?: string | undefined;
|
|
4158
|
+
readonly subThoroughfare?: string | undefined;
|
|
4159
|
+
readonly thoroughfare?: string | undefined;
|
|
4160
|
+
readonly street?: string | undefined;
|
|
4161
|
+
readonly createdAt?: string | undefined;
|
|
4162
|
+
readonly updatedAt?: string | undefined;
|
|
4163
|
+
readonly user?: /*elided*/ any | undefined;
|
|
4164
|
+
} | undefined;
|
|
4165
|
+
} | undefined;
|
|
4166
|
+
readonly publisher?: {
|
|
4167
|
+
readonly id?: number | undefined;
|
|
4168
|
+
readonly uid?: string | undefined;
|
|
4169
|
+
readonly avatar: string;
|
|
4170
|
+
readonly avatarUrl: string;
|
|
4171
|
+
readonly fullname: string;
|
|
4172
|
+
readonly lastname: string;
|
|
4173
|
+
readonly firstname: string;
|
|
4174
|
+
readonly email: string;
|
|
4175
|
+
readonly emailVerifiedAt?: string | undefined;
|
|
4176
|
+
readonly password: string;
|
|
4177
|
+
readonly phone?: string | undefined;
|
|
4178
|
+
readonly address?: string | undefined;
|
|
4179
|
+
readonly location?: {
|
|
4180
|
+
readonly lat: number;
|
|
4181
|
+
readonly lng: number;
|
|
4182
|
+
} | null | undefined;
|
|
4183
|
+
readonly profileType: import("@creopse/utils").ProfileType | string;
|
|
4184
|
+
readonly profileId: number;
|
|
4185
|
+
readonly accountStatus: import("@creopse/utils").AccountStatus;
|
|
4186
|
+
readonly preferences?: any;
|
|
4187
|
+
readonly authType?: import("@creopse/utils").AuthType | undefined;
|
|
4188
|
+
readonly lastLoggedInAt?: string | undefined;
|
|
4189
|
+
readonly rememberToken?: string | undefined;
|
|
4190
|
+
readonly deletedAt?: string | undefined;
|
|
4191
|
+
readonly createdAt?: string | undefined;
|
|
4192
|
+
readonly updatedAt?: string | undefined;
|
|
4193
|
+
readonly permissions?: readonly {
|
|
4194
|
+
readonly id?: number | undefined;
|
|
4195
|
+
readonly name: string;
|
|
4196
|
+
readonly displayName: string;
|
|
4197
|
+
readonly description: string;
|
|
4198
|
+
readonly createdAt?: string | undefined;
|
|
4199
|
+
readonly updatedAt?: string | undefined;
|
|
4200
|
+
}[] | undefined;
|
|
4201
|
+
readonly profile?: import("@creopse/utils").AdminProfileModel | any;
|
|
4202
|
+
readonly roles?: readonly {
|
|
4203
|
+
readonly id?: number | undefined;
|
|
4204
|
+
readonly name: string;
|
|
4205
|
+
readonly displayName: string;
|
|
4206
|
+
readonly description: string;
|
|
4207
|
+
readonly permissions?: readonly {
|
|
4208
|
+
readonly id?: number | undefined;
|
|
4209
|
+
readonly name: string;
|
|
4210
|
+
readonly displayName: string;
|
|
4211
|
+
readonly description: string;
|
|
4212
|
+
readonly createdAt?: string | undefined;
|
|
4213
|
+
readonly updatedAt?: string | undefined;
|
|
4214
|
+
}[] | undefined;
|
|
4215
|
+
readonly createdAt?: string | undefined;
|
|
4216
|
+
readonly updatedAt?: string | undefined;
|
|
4217
|
+
}[] | undefined;
|
|
4218
|
+
readonly sessions?: readonly {
|
|
4219
|
+
readonly id?: number | undefined;
|
|
4220
|
+
readonly userId?: number | undefined;
|
|
4221
|
+
readonly ipAddress: string;
|
|
4222
|
+
readonly userAgent: string;
|
|
4223
|
+
readonly locationData?: {
|
|
4224
|
+
readonly ip: string;
|
|
4225
|
+
readonly iso?: string | undefined;
|
|
4226
|
+
readonly city?: string | undefined;
|
|
4227
|
+
readonly region?: string | undefined;
|
|
4228
|
+
readonly source?: string | undefined;
|
|
4229
|
+
readonly country?: string | undefined;
|
|
4230
|
+
readonly currency?: string | undefined;
|
|
4231
|
+
readonly latitude?: string | undefined;
|
|
4232
|
+
readonly timezone?: string | undefined;
|
|
4233
|
+
readonly continent?: string | undefined;
|
|
4234
|
+
readonly longitude?: string | undefined;
|
|
4235
|
+
} | undefined;
|
|
4236
|
+
readonly lastActivity: string;
|
|
4237
|
+
readonly createdAt?: string | undefined;
|
|
4238
|
+
readonly updatedAt?: string | undefined;
|
|
4239
|
+
readonly user?: /*elided*/ any | undefined;
|
|
4240
|
+
}[] | undefined;
|
|
4241
|
+
readonly devices?: readonly {
|
|
4242
|
+
readonly id?: number | undefined;
|
|
4243
|
+
readonly userId?: number | undefined;
|
|
4244
|
+
readonly deviceId?: string | undefined;
|
|
4245
|
+
readonly data?: any;
|
|
4246
|
+
readonly isActive?: boolean | undefined;
|
|
4247
|
+
readonly createdAt?: string | undefined;
|
|
4248
|
+
readonly updatedAt?: string | undefined;
|
|
4249
|
+
readonly user?: /*elided*/ any | undefined;
|
|
4250
|
+
}[] | undefined;
|
|
4251
|
+
readonly place?: {
|
|
4252
|
+
readonly id?: number | undefined;
|
|
4253
|
+
readonly userId?: number | undefined;
|
|
4254
|
+
readonly country?: string | undefined;
|
|
4255
|
+
readonly position?: string | undefined;
|
|
4256
|
+
readonly locality?: string | undefined;
|
|
4257
|
+
readonly administrativeArea?: string | undefined;
|
|
4258
|
+
readonly postalCode?: string | undefined;
|
|
4259
|
+
readonly name?: string | undefined;
|
|
4260
|
+
readonly subAdministrativeArea?: string | undefined;
|
|
4261
|
+
readonly isoCountryCode?: string | undefined;
|
|
4262
|
+
readonly subLocality?: string | undefined;
|
|
4263
|
+
readonly subThoroughfare?: string | undefined;
|
|
4264
|
+
readonly thoroughfare?: string | undefined;
|
|
4265
|
+
readonly street?: string | undefined;
|
|
4266
|
+
readonly createdAt?: string | undefined;
|
|
4267
|
+
readonly updatedAt?: string | undefined;
|
|
4268
|
+
readonly user?: /*elided*/ any | undefined;
|
|
4269
|
+
} | undefined;
|
|
4270
|
+
} | undefined;
|
|
4271
|
+
readonly categories?: readonly {
|
|
4272
|
+
readonly id?: number | undefined;
|
|
4273
|
+
readonly foreignId?: number | null | undefined;
|
|
4274
|
+
readonly name: string;
|
|
4275
|
+
readonly slug?: string | undefined;
|
|
4276
|
+
readonly color?: string | undefined;
|
|
4277
|
+
readonly description?: string | null | undefined;
|
|
4278
|
+
readonly parentId?: number | null | undefined;
|
|
4279
|
+
readonly position?: number | null | undefined;
|
|
4280
|
+
readonly isActive: boolean;
|
|
4281
|
+
readonly image?: string | null | undefined;
|
|
4282
|
+
readonly imageUrl?: string | null | undefined;
|
|
4283
|
+
readonly deletedAt?: string | null | undefined;
|
|
4284
|
+
readonly createdAt?: string | undefined;
|
|
4285
|
+
readonly updatedAt?: string | undefined;
|
|
4286
|
+
readonly articles?: readonly /*elided*/ any[] | undefined;
|
|
4287
|
+
readonly articlesCount?: number | undefined;
|
|
4288
|
+
}[] | undefined;
|
|
4289
|
+
readonly categoriesCount?: number | undefined;
|
|
4290
|
+
readonly tags?: readonly /*elided*/ any[] | undefined;
|
|
4291
|
+
readonly tagsCount?: number | undefined;
|
|
4292
|
+
readonly comments?: readonly {
|
|
4293
|
+
readonly id?: number | undefined;
|
|
4294
|
+
readonly foreignId?: number | null | undefined;
|
|
4295
|
+
readonly authorId?: number | null | undefined;
|
|
4296
|
+
readonly articleId?: number | undefined;
|
|
4297
|
+
readonly name?: string | null | undefined;
|
|
4298
|
+
readonly content: string;
|
|
4299
|
+
readonly email?: string | null | undefined;
|
|
4300
|
+
readonly isActive: boolean;
|
|
4301
|
+
readonly deletedAt?: string | null | undefined;
|
|
4302
|
+
readonly createdAt?: string | undefined;
|
|
4303
|
+
readonly updatedAt?: string | undefined;
|
|
4304
|
+
readonly author?: {
|
|
4305
|
+
readonly id?: number | undefined;
|
|
4306
|
+
readonly uid?: string | undefined;
|
|
4307
|
+
readonly avatar: string;
|
|
4308
|
+
readonly avatarUrl: string;
|
|
4309
|
+
readonly fullname: string;
|
|
4310
|
+
readonly lastname: string;
|
|
4311
|
+
readonly firstname: string;
|
|
4312
|
+
readonly email: string;
|
|
4313
|
+
readonly emailVerifiedAt?: string | undefined;
|
|
4314
|
+
readonly password: string;
|
|
4315
|
+
readonly phone?: string | undefined;
|
|
4316
|
+
readonly address?: string | undefined;
|
|
4317
|
+
readonly location?: {
|
|
4318
|
+
readonly lat: number;
|
|
4319
|
+
readonly lng: number;
|
|
4320
|
+
} | null | undefined;
|
|
4321
|
+
readonly profileType: import("@creopse/utils").ProfileType | string;
|
|
4322
|
+
readonly profileId: number;
|
|
4323
|
+
readonly accountStatus: import("@creopse/utils").AccountStatus;
|
|
4324
|
+
readonly preferences?: any;
|
|
4325
|
+
readonly authType?: import("@creopse/utils").AuthType | undefined;
|
|
4326
|
+
readonly lastLoggedInAt?: string | undefined;
|
|
4327
|
+
readonly rememberToken?: string | undefined;
|
|
4328
|
+
readonly deletedAt?: string | undefined;
|
|
4329
|
+
readonly createdAt?: string | undefined;
|
|
4330
|
+
readonly updatedAt?: string | undefined;
|
|
4331
|
+
readonly permissions?: readonly {
|
|
4332
|
+
readonly id?: number | undefined;
|
|
4333
|
+
readonly name: string;
|
|
4334
|
+
readonly displayName: string;
|
|
4335
|
+
readonly description: string;
|
|
4336
|
+
readonly createdAt?: string | undefined;
|
|
4337
|
+
readonly updatedAt?: string | undefined;
|
|
4338
|
+
}[] | undefined;
|
|
4339
|
+
readonly profile?: import("@creopse/utils").AdminProfileModel | any;
|
|
4340
|
+
readonly roles?: readonly {
|
|
4341
|
+
readonly id?: number | undefined;
|
|
4342
|
+
readonly name: string;
|
|
4343
|
+
readonly displayName: string;
|
|
4344
|
+
readonly description: string;
|
|
4345
|
+
readonly permissions?: readonly {
|
|
4346
|
+
readonly id?: number | undefined;
|
|
4347
|
+
readonly name: string;
|
|
4348
|
+
readonly displayName: string;
|
|
4349
|
+
readonly description: string;
|
|
4350
|
+
readonly createdAt?: string | undefined;
|
|
4351
|
+
readonly updatedAt?: string | undefined;
|
|
4352
|
+
}[] | undefined;
|
|
4353
|
+
readonly createdAt?: string | undefined;
|
|
4354
|
+
readonly updatedAt?: string | undefined;
|
|
4355
|
+
}[] | undefined;
|
|
4356
|
+
readonly sessions?: readonly {
|
|
4357
|
+
readonly id?: number | undefined;
|
|
4358
|
+
readonly userId?: number | undefined;
|
|
4359
|
+
readonly ipAddress: string;
|
|
4360
|
+
readonly userAgent: string;
|
|
4361
|
+
readonly locationData?: {
|
|
4362
|
+
readonly ip: string;
|
|
4363
|
+
readonly iso?: string | undefined;
|
|
4364
|
+
readonly city?: string | undefined;
|
|
4365
|
+
readonly region?: string | undefined;
|
|
4366
|
+
readonly source?: string | undefined;
|
|
4367
|
+
readonly country?: string | undefined;
|
|
4368
|
+
readonly currency?: string | undefined;
|
|
4369
|
+
readonly latitude?: string | undefined;
|
|
4370
|
+
readonly timezone?: string | undefined;
|
|
4371
|
+
readonly continent?: string | undefined;
|
|
4372
|
+
readonly longitude?: string | undefined;
|
|
4373
|
+
} | undefined;
|
|
4374
|
+
readonly lastActivity: string;
|
|
4375
|
+
readonly createdAt?: string | undefined;
|
|
4376
|
+
readonly updatedAt?: string | undefined;
|
|
4377
|
+
readonly user?: /*elided*/ any | undefined;
|
|
4378
|
+
}[] | undefined;
|
|
4379
|
+
readonly devices?: readonly {
|
|
4380
|
+
readonly id?: number | undefined;
|
|
4381
|
+
readonly userId?: number | undefined;
|
|
4382
|
+
readonly deviceId?: string | undefined;
|
|
4383
|
+
readonly data?: any;
|
|
4384
|
+
readonly isActive?: boolean | undefined;
|
|
4385
|
+
readonly createdAt?: string | undefined;
|
|
4386
|
+
readonly updatedAt?: string | undefined;
|
|
4387
|
+
readonly user?: /*elided*/ any | undefined;
|
|
4388
|
+
}[] | undefined;
|
|
4389
|
+
readonly place?: {
|
|
4390
|
+
readonly id?: number | undefined;
|
|
4391
|
+
readonly userId?: number | undefined;
|
|
4392
|
+
readonly country?: string | undefined;
|
|
4393
|
+
readonly position?: string | undefined;
|
|
4394
|
+
readonly locality?: string | undefined;
|
|
4395
|
+
readonly administrativeArea?: string | undefined;
|
|
4396
|
+
readonly postalCode?: string | undefined;
|
|
4397
|
+
readonly name?: string | undefined;
|
|
4398
|
+
readonly subAdministrativeArea?: string | undefined;
|
|
4399
|
+
readonly isoCountryCode?: string | undefined;
|
|
4400
|
+
readonly subLocality?: string | undefined;
|
|
4401
|
+
readonly subThoroughfare?: string | undefined;
|
|
4402
|
+
readonly thoroughfare?: string | undefined;
|
|
4403
|
+
readonly street?: string | undefined;
|
|
4404
|
+
readonly createdAt?: string | undefined;
|
|
4405
|
+
readonly updatedAt?: string | undefined;
|
|
4406
|
+
readonly user?: /*elided*/ any | undefined;
|
|
4407
|
+
} | undefined;
|
|
4408
|
+
} | undefined;
|
|
4409
|
+
readonly article?: /*elided*/ any | undefined;
|
|
4410
|
+
}[] | undefined;
|
|
4411
|
+
readonly commentsCount?: number | undefined;
|
|
4412
|
+
}[] | undefined;
|
|
4413
|
+
readonly articlesCount?: number | undefined;
|
|
4414
|
+
} | {
|
|
4415
|
+
readonly id?: number | undefined;
|
|
4416
|
+
readonly contentModelId?: number | undefined;
|
|
4417
|
+
readonly title: string;
|
|
4418
|
+
readonly contentModelData: any | null;
|
|
4419
|
+
readonly data?: {
|
|
4420
|
+
readonly [x: string]: any;
|
|
4421
|
+
} | null | undefined;
|
|
4422
|
+
readonly isActive: boolean;
|
|
4423
|
+
readonly createdByType?: import("@creopse/utils").ItemCreatorType | undefined;
|
|
4424
|
+
readonly createdBy?: number | undefined;
|
|
4425
|
+
readonly createdAt?: string | undefined;
|
|
4426
|
+
readonly updatedAt?: string | undefined;
|
|
4427
|
+
readonly createdByUser?: {
|
|
4428
|
+
readonly id?: number | undefined;
|
|
4429
|
+
readonly uid?: string | undefined;
|
|
4430
|
+
readonly avatar: string;
|
|
4431
|
+
readonly avatarUrl: string;
|
|
4432
|
+
readonly fullname: string;
|
|
4433
|
+
readonly lastname: string;
|
|
4434
|
+
readonly firstname: string;
|
|
4435
|
+
readonly email: string;
|
|
4436
|
+
readonly emailVerifiedAt?: string | undefined;
|
|
4437
|
+
readonly password: string;
|
|
4438
|
+
readonly phone?: string | undefined;
|
|
4439
|
+
readonly address?: string | undefined;
|
|
4440
|
+
readonly location?: {
|
|
4441
|
+
readonly lat: number;
|
|
4442
|
+
readonly lng: number;
|
|
4443
|
+
} | null | undefined;
|
|
4444
|
+
readonly profileType: import("@creopse/utils").ProfileType | string;
|
|
4445
|
+
readonly profileId: number;
|
|
4446
|
+
readonly accountStatus: import("@creopse/utils").AccountStatus;
|
|
4447
|
+
readonly preferences?: any;
|
|
4448
|
+
readonly authType?: import("@creopse/utils").AuthType | undefined;
|
|
4449
|
+
readonly lastLoggedInAt?: string | undefined;
|
|
4450
|
+
readonly rememberToken?: string | undefined;
|
|
4451
|
+
readonly deletedAt?: string | undefined;
|
|
4452
|
+
readonly createdAt?: string | undefined;
|
|
4453
|
+
readonly updatedAt?: string | undefined;
|
|
4454
|
+
readonly permissions?: readonly {
|
|
4455
|
+
readonly id?: number | undefined;
|
|
4456
|
+
readonly name: string;
|
|
4457
|
+
readonly displayName: string;
|
|
4458
|
+
readonly description: string;
|
|
4459
|
+
readonly createdAt?: string | undefined;
|
|
4460
|
+
readonly updatedAt?: string | undefined;
|
|
4461
|
+
}[] | undefined;
|
|
4462
|
+
readonly profile?: import("@creopse/utils").AdminProfileModel | any;
|
|
4463
|
+
readonly roles?: readonly {
|
|
4464
|
+
readonly id?: number | undefined;
|
|
4465
|
+
readonly name: string;
|
|
4466
|
+
readonly displayName: string;
|
|
4467
|
+
readonly description: string;
|
|
4468
|
+
readonly permissions?: readonly {
|
|
4469
|
+
readonly id?: number | undefined;
|
|
4470
|
+
readonly name: string;
|
|
4471
|
+
readonly displayName: string;
|
|
4472
|
+
readonly description: string;
|
|
4473
|
+
readonly createdAt?: string | undefined;
|
|
4474
|
+
readonly updatedAt?: string | undefined;
|
|
4475
|
+
}[] | undefined;
|
|
4476
|
+
readonly createdAt?: string | undefined;
|
|
4477
|
+
readonly updatedAt?: string | undefined;
|
|
4478
|
+
}[] | undefined;
|
|
4479
|
+
readonly sessions?: readonly {
|
|
4480
|
+
readonly id?: number | undefined;
|
|
4481
|
+
readonly userId?: number | undefined;
|
|
4482
|
+
readonly ipAddress: string;
|
|
4483
|
+
readonly userAgent: string;
|
|
4484
|
+
readonly locationData?: {
|
|
4485
|
+
readonly ip: string;
|
|
4486
|
+
readonly iso?: string | undefined;
|
|
4487
|
+
readonly city?: string | undefined;
|
|
4488
|
+
readonly region?: string | undefined;
|
|
4489
|
+
readonly source?: string | undefined;
|
|
4490
|
+
readonly country?: string | undefined;
|
|
4491
|
+
readonly currency?: string | undefined;
|
|
4492
|
+
readonly latitude?: string | undefined;
|
|
4493
|
+
readonly timezone?: string | undefined;
|
|
4494
|
+
readonly continent?: string | undefined;
|
|
4495
|
+
readonly longitude?: string | undefined;
|
|
4496
|
+
} | undefined;
|
|
4497
|
+
readonly lastActivity: string;
|
|
4498
|
+
readonly createdAt?: string | undefined;
|
|
4499
|
+
readonly updatedAt?: string | undefined;
|
|
4500
|
+
readonly user?: /*elided*/ any | undefined;
|
|
4501
|
+
}[] | undefined;
|
|
4502
|
+
readonly devices?: readonly {
|
|
4503
|
+
readonly id?: number | undefined;
|
|
4504
|
+
readonly userId?: number | undefined;
|
|
4505
|
+
readonly deviceId?: string | undefined;
|
|
4506
|
+
readonly data?: any;
|
|
4507
|
+
readonly isActive?: boolean | undefined;
|
|
4508
|
+
readonly createdAt?: string | undefined;
|
|
4509
|
+
readonly updatedAt?: string | undefined;
|
|
4510
|
+
readonly user?: /*elided*/ any | undefined;
|
|
4511
|
+
}[] | undefined;
|
|
4512
|
+
readonly place?: {
|
|
4513
|
+
readonly id?: number | undefined;
|
|
4514
|
+
readonly userId?: number | undefined;
|
|
4515
|
+
readonly country?: string | undefined;
|
|
4516
|
+
readonly position?: string | undefined;
|
|
4517
|
+
readonly locality?: string | undefined;
|
|
4518
|
+
readonly administrativeArea?: string | undefined;
|
|
4519
|
+
readonly postalCode?: string | undefined;
|
|
4520
|
+
readonly name?: string | undefined;
|
|
4521
|
+
readonly subAdministrativeArea?: string | undefined;
|
|
4522
|
+
readonly isoCountryCode?: string | undefined;
|
|
4523
|
+
readonly subLocality?: string | undefined;
|
|
4524
|
+
readonly subThoroughfare?: string | undefined;
|
|
4525
|
+
readonly thoroughfare?: string | undefined;
|
|
4526
|
+
readonly street?: string | undefined;
|
|
4527
|
+
readonly createdAt?: string | undefined;
|
|
4528
|
+
readonly updatedAt?: string | undefined;
|
|
4529
|
+
readonly user?: /*elided*/ any | undefined;
|
|
4530
|
+
} | undefined;
|
|
4531
|
+
} | undefined;
|
|
4532
|
+
readonly contentModel?: {
|
|
4533
|
+
readonly id?: number | undefined;
|
|
4534
|
+
readonly name: string;
|
|
4535
|
+
readonly title: string;
|
|
4536
|
+
readonly slug: string;
|
|
4537
|
+
readonly image?: string | null | undefined;
|
|
4538
|
+
readonly imageUrl?: string | null | undefined;
|
|
4539
|
+
readonly description?: string | null | undefined;
|
|
4540
|
+
readonly dataStructure?: any | null;
|
|
4541
|
+
readonly titleFieldName?: string | null | undefined;
|
|
4542
|
+
readonly intent: import("@creopse/utils").Intent;
|
|
4543
|
+
readonly accessScope: import("@creopse/utils").AccessScope;
|
|
4544
|
+
readonly hasPermalink?: boolean | undefined;
|
|
4545
|
+
readonly createdAt?: string | undefined;
|
|
4546
|
+
readonly updatedAt?: string | undefined;
|
|
4547
|
+
readonly items?: readonly /*elided*/ any[] | undefined;
|
|
4548
|
+
readonly itemsCount?: number | undefined;
|
|
4549
|
+
} | undefined;
|
|
4550
|
+
readonly relatedItems?: readonly /*elided*/ any[] | undefined;
|
|
4551
|
+
readonly relatedTo?: readonly /*elided*/ any[] | undefined;
|
|
4552
|
+
} | undefined;
|
|
4553
|
+
}[] | undefined;
|
|
4554
|
+
readonly itemsCount?: number | undefined;
|
|
4555
|
+
readonly location?: {
|
|
4556
|
+
readonly id?: number | undefined;
|
|
4557
|
+
readonly name: string;
|
|
4558
|
+
readonly description?: string | null | undefined;
|
|
4559
|
+
readonly createdAt?: string | undefined;
|
|
4560
|
+
readonly updatedAt?: string | undefined;
|
|
4561
|
+
} | undefined;
|
|
4562
|
+
}[] | undefined;
|
|
4563
|
+
readonly menuLocations?: readonly {
|
|
4564
|
+
readonly id?: number | undefined;
|
|
4565
|
+
readonly name: string;
|
|
4566
|
+
readonly description?: string | null | undefined;
|
|
4567
|
+
readonly createdAt?: string | undefined;
|
|
4568
|
+
readonly updatedAt?: string | undefined;
|
|
4569
|
+
}[] | undefined;
|
|
4570
|
+
readonly menuItemGroups?: readonly {
|
|
4571
|
+
readonly id?: number | undefined;
|
|
4572
|
+
readonly name: string;
|
|
4573
|
+
readonly description?: string | null | undefined;
|
|
4574
|
+
readonly createdAt?: string | undefined;
|
|
4575
|
+
readonly updatedAt?: string | undefined;
|
|
4576
|
+
}[] | undefined;
|
|
4577
|
+
readonly ads?: readonly {
|
|
4578
|
+
readonly pid: string;
|
|
4579
|
+
readonly title: string;
|
|
4580
|
+
readonly display: boolean;
|
|
4581
|
+
readonly data: {
|
|
4582
|
+
readonly [x: string]: any;
|
|
4583
|
+
};
|
|
4584
|
+
readonly description: string | null;
|
|
4585
|
+
readonly content: string | null;
|
|
4586
|
+
readonly contentUrl?: string | null | undefined;
|
|
4587
|
+
readonly broadcastStart?: string | null | undefined;
|
|
4588
|
+
readonly broadcastEnd?: string | null | undefined;
|
|
4589
|
+
readonly id?: number | undefined;
|
|
4590
|
+
readonly createdAt?: string | undefined;
|
|
4591
|
+
readonly updatedAt?: string | undefined;
|
|
4592
|
+
readonly adIdentifier?: {
|
|
4593
|
+
readonly id: string;
|
|
4594
|
+
readonly reusable: boolean;
|
|
4595
|
+
readonly contentType: import("@creopse/utils").AdContentType;
|
|
4596
|
+
readonly contentSize?: string | undefined;
|
|
4597
|
+
readonly params?: readonly string[] | undefined;
|
|
4598
|
+
readonly createdAt?: string | undefined;
|
|
4599
|
+
readonly updatedAt?: string | undefined;
|
|
4600
|
+
readonly ads?: readonly /*elided*/ any[] | undefined;
|
|
4601
|
+
readonly adsCount?: number | undefined;
|
|
4602
|
+
} | undefined;
|
|
4603
|
+
}[] | undefined;
|
|
4604
|
+
readonly query?: string | undefined;
|
|
4605
|
+
readonly data?: any;
|
|
4606
|
+
readonly youtubeChannelId?: string | undefined;
|
|
4607
|
+
readonly component: string;
|
|
4608
|
+
readonly props: {
|
|
4609
|
+
readonly [x: string]: Readonly<unknown>;
|
|
4610
|
+
readonly errors: {
|
|
4611
|
+
readonly [x: string]: string & import("@inertiajs/core").Errors;
|
|
4612
|
+
};
|
|
4613
|
+
readonly deferred?: {
|
|
4614
|
+
readonly [x: string]: readonly string[] | undefined;
|
|
4615
|
+
} | undefined;
|
|
4616
|
+
};
|
|
4617
|
+
readonly url: string;
|
|
4618
|
+
readonly version: string | null;
|
|
4619
|
+
readonly clearHistory: boolean;
|
|
4620
|
+
readonly encryptHistory: boolean;
|
|
4621
|
+
readonly deferredProps?: {
|
|
4622
|
+
readonly [x: string]: readonly string[];
|
|
4623
|
+
} | undefined;
|
|
4624
|
+
readonly mergeProps?: readonly string[] | undefined;
|
|
4625
|
+
readonly prependProps?: readonly string[] | undefined;
|
|
4626
|
+
readonly deepMergeProps?: readonly string[] | undefined;
|
|
4627
|
+
readonly matchPropsOn?: readonly string[] | undefined;
|
|
4628
|
+
readonly scrollProps?: {
|
|
4629
|
+
readonly [x: string]: {
|
|
4630
|
+
readonly pageName: string;
|
|
4631
|
+
readonly previousPage: number | string | null;
|
|
4632
|
+
readonly nextPage: number | string | null;
|
|
4633
|
+
readonly currentPage: number | string | null;
|
|
4634
|
+
readonly reset: boolean;
|
|
4635
|
+
};
|
|
4636
|
+
readonly [x: number]: {
|
|
4637
|
+
readonly pageName: string;
|
|
4638
|
+
readonly previousPage: number | string | null;
|
|
4639
|
+
readonly nextPage: number | string | null;
|
|
4640
|
+
readonly currentPage: number | string | null;
|
|
4641
|
+
readonly reset: boolean;
|
|
4642
|
+
};
|
|
4643
|
+
} | undefined;
|
|
4644
|
+
readonly onceProps?: {
|
|
4645
|
+
readonly [x: string]: {
|
|
4646
|
+
readonly prop: keyof import("@inertiajs/core").PageProps;
|
|
4647
|
+
readonly expiresAt?: number | null | undefined;
|
|
4648
|
+
};
|
|
4649
|
+
} | undefined;
|
|
4650
|
+
readonly rememberedState: {
|
|
4651
|
+
readonly [x: string]: Readonly<unknown>;
|
|
4652
|
+
};
|
|
4653
|
+
readonly errors: {
|
|
4654
|
+
readonly [x: string]: string & import("@inertiajs/core").Errors;
|
|
4655
|
+
};
|
|
8
4656
|
};
|
|
9
4657
|
};
|
|
10
|
-
sync(newProps:
|
|
4658
|
+
sync(newProps: T): void;
|
|
11
4659
|
private deepMerge;
|
|
12
4660
|
private isObject;
|
|
13
4661
|
}
|