uapp-communication-sdk 1.0.0-dev.57 → 1.0.0-dev.59
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/communication-sdk.cjs +14 -14
- package/communication-sdk.js +13891 -13733
- package/communication-sdk.standalone.js +160 -160
- package/package.json +1 -1
- package/types/app/shell/AppShell.d.ts.map +1 -1
- package/types/app/shell/use-bottom-nav-items.d.ts +3 -0
- package/types/app/shell/use-bottom-nav-items.d.ts.map +1 -0
- package/types/app/shell/use-shell-motion.d.ts +15 -0
- package/types/app/shell/use-shell-motion.d.ts.map +1 -0
- package/types/features/chat/infrastructure/dto/chat-dtos.d.ts +4 -4
- package/types/features/feed/infrastructure/dto/feed-dtos.d.ts +24 -24
- package/types/features/feed/presentation/FeedPromotionsRail.d.ts.map +1 -1
- package/types/features/schedule/infrastructure/dto/schedule-dtos.d.ts +104 -104
- package/types/features/settings/infrastructure/dto/group-category-dtos.d.ts +18 -18
- package/types/features/settings/infrastructure/dto/org-settings/org-settings-dtos.d.ts +114 -114
- package/types/features/settings/infrastructure/dto/promotions/promotion-dtos.d.ts +8 -8
- package/types/features/settings/infrastructure/dto/settings/settings-dtos.d.ts +18 -18
- package/types/features/settings/infrastructure/settings-gateway-errors.d.ts.map +1 -1
- package/types/features/settings/presentation/GroupCategoriesPage.d.ts.map +1 -1
- package/types/sdk/SdkProviders.d.ts.map +1 -1
- package/types/sdk/runtime/sdk-composition-root.d.ts +2 -0
- package/types/sdk/runtime/sdk-composition-root.d.ts.map +1 -1
- package/types/shared/ui/BottomNavigation/BottomNavBar.d.ts +14 -0
- package/types/shared/ui/BottomNavigation/BottomNavBar.d.ts.map +1 -0
- package/types/shared/ui/index.d.ts +1 -0
- package/types/shared/ui/index.d.ts.map +1 -1
|
@@ -11,16 +11,16 @@ export declare const CategoryFieldDtoSchema: z.ZodObject<{
|
|
|
11
11
|
type: number;
|
|
12
12
|
key: string;
|
|
13
13
|
label: string;
|
|
14
|
+
icon: string;
|
|
14
15
|
visible: boolean;
|
|
15
16
|
source: string;
|
|
16
|
-
icon: string;
|
|
17
17
|
}, {
|
|
18
18
|
type: number;
|
|
19
19
|
key: string;
|
|
20
20
|
label: string;
|
|
21
|
+
icon: string;
|
|
21
22
|
visible: boolean;
|
|
22
23
|
source: string;
|
|
23
|
-
icon: string;
|
|
24
24
|
}>;
|
|
25
25
|
/** A group category as returned by the backend (`FullAuditedEntityDto` audit fields are ignored). */
|
|
26
26
|
export declare const GroupCategoryDtoSchema: z.ZodObject<{
|
|
@@ -42,16 +42,16 @@ export declare const GroupCategoryDtoSchema: z.ZodObject<{
|
|
|
42
42
|
type: number;
|
|
43
43
|
key: string;
|
|
44
44
|
label: string;
|
|
45
|
+
icon: string;
|
|
45
46
|
visible: boolean;
|
|
46
47
|
source: string;
|
|
47
|
-
icon: string;
|
|
48
48
|
}, {
|
|
49
49
|
type: number;
|
|
50
50
|
key: string;
|
|
51
51
|
label: string;
|
|
52
|
+
icon: string;
|
|
52
53
|
visible: boolean;
|
|
53
54
|
source: string;
|
|
54
|
-
icon: string;
|
|
55
55
|
}>, "many">;
|
|
56
56
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
57
57
|
id: z.ZodString;
|
|
@@ -72,16 +72,16 @@ export declare const GroupCategoryDtoSchema: z.ZodObject<{
|
|
|
72
72
|
type: number;
|
|
73
73
|
key: string;
|
|
74
74
|
label: string;
|
|
75
|
+
icon: string;
|
|
75
76
|
visible: boolean;
|
|
76
77
|
source: string;
|
|
77
|
-
icon: string;
|
|
78
78
|
}, {
|
|
79
79
|
type: number;
|
|
80
80
|
key: string;
|
|
81
81
|
label: string;
|
|
82
|
+
icon: string;
|
|
82
83
|
visible: boolean;
|
|
83
84
|
source: string;
|
|
84
|
-
icon: string;
|
|
85
85
|
}>, "many">;
|
|
86
86
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
87
87
|
id: z.ZodString;
|
|
@@ -102,16 +102,16 @@ export declare const GroupCategoryDtoSchema: z.ZodObject<{
|
|
|
102
102
|
type: number;
|
|
103
103
|
key: string;
|
|
104
104
|
label: string;
|
|
105
|
+
icon: string;
|
|
105
106
|
visible: boolean;
|
|
106
107
|
source: string;
|
|
107
|
-
icon: string;
|
|
108
108
|
}, {
|
|
109
109
|
type: number;
|
|
110
110
|
key: string;
|
|
111
111
|
label: string;
|
|
112
|
+
icon: string;
|
|
112
113
|
visible: boolean;
|
|
113
114
|
source: string;
|
|
114
|
-
icon: string;
|
|
115
115
|
}>, "many">;
|
|
116
116
|
}, z.ZodTypeAny, "passthrough">>;
|
|
117
117
|
export declare const GroupCategoryPagedListSchema: z.ZodObject<{
|
|
@@ -134,16 +134,16 @@ export declare const GroupCategoryPagedListSchema: z.ZodObject<{
|
|
|
134
134
|
type: number;
|
|
135
135
|
key: string;
|
|
136
136
|
label: string;
|
|
137
|
+
icon: string;
|
|
137
138
|
visible: boolean;
|
|
138
139
|
source: string;
|
|
139
|
-
icon: string;
|
|
140
140
|
}, {
|
|
141
141
|
type: number;
|
|
142
142
|
key: string;
|
|
143
143
|
label: string;
|
|
144
|
+
icon: string;
|
|
144
145
|
visible: boolean;
|
|
145
146
|
source: string;
|
|
146
|
-
icon: string;
|
|
147
147
|
}>, "many">;
|
|
148
148
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
149
149
|
id: z.ZodString;
|
|
@@ -164,16 +164,16 @@ export declare const GroupCategoryPagedListSchema: z.ZodObject<{
|
|
|
164
164
|
type: number;
|
|
165
165
|
key: string;
|
|
166
166
|
label: string;
|
|
167
|
+
icon: string;
|
|
167
168
|
visible: boolean;
|
|
168
169
|
source: string;
|
|
169
|
-
icon: string;
|
|
170
170
|
}, {
|
|
171
171
|
type: number;
|
|
172
172
|
key: string;
|
|
173
173
|
label: string;
|
|
174
|
+
icon: string;
|
|
174
175
|
visible: boolean;
|
|
175
176
|
source: string;
|
|
176
|
-
icon: string;
|
|
177
177
|
}>, "many">;
|
|
178
178
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
179
179
|
id: z.ZodString;
|
|
@@ -194,16 +194,16 @@ export declare const GroupCategoryPagedListSchema: z.ZodObject<{
|
|
|
194
194
|
type: number;
|
|
195
195
|
key: string;
|
|
196
196
|
label: string;
|
|
197
|
+
icon: string;
|
|
197
198
|
visible: boolean;
|
|
198
199
|
source: string;
|
|
199
|
-
icon: string;
|
|
200
200
|
}, {
|
|
201
201
|
type: number;
|
|
202
202
|
key: string;
|
|
203
203
|
label: string;
|
|
204
|
+
icon: string;
|
|
204
205
|
visible: boolean;
|
|
205
206
|
source: string;
|
|
206
|
-
icon: string;
|
|
207
207
|
}>, "many">;
|
|
208
208
|
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
209
209
|
totalCount: z.ZodNumber;
|
|
@@ -227,16 +227,16 @@ export declare const GroupCategoryPagedListSchema: z.ZodObject<{
|
|
|
227
227
|
type: number;
|
|
228
228
|
key: string;
|
|
229
229
|
label: string;
|
|
230
|
+
icon: string;
|
|
230
231
|
visible: boolean;
|
|
231
232
|
source: string;
|
|
232
|
-
icon: string;
|
|
233
233
|
}, {
|
|
234
234
|
type: number;
|
|
235
235
|
key: string;
|
|
236
236
|
label: string;
|
|
237
|
+
icon: string;
|
|
237
238
|
visible: boolean;
|
|
238
239
|
source: string;
|
|
239
|
-
icon: string;
|
|
240
240
|
}>, "many">;
|
|
241
241
|
}, z.ZodTypeAny, "passthrough">[];
|
|
242
242
|
totalCount: number;
|
|
@@ -260,16 +260,16 @@ export declare const GroupCategoryPagedListSchema: z.ZodObject<{
|
|
|
260
260
|
type: number;
|
|
261
261
|
key: string;
|
|
262
262
|
label: string;
|
|
263
|
+
icon: string;
|
|
263
264
|
visible: boolean;
|
|
264
265
|
source: string;
|
|
265
|
-
icon: string;
|
|
266
266
|
}, {
|
|
267
267
|
type: number;
|
|
268
268
|
key: string;
|
|
269
269
|
label: string;
|
|
270
|
+
icon: string;
|
|
270
271
|
visible: boolean;
|
|
271
272
|
source: string;
|
|
272
|
-
icon: string;
|
|
273
273
|
}>, "many">;
|
|
274
274
|
}, z.ZodTypeAny, "passthrough">[];
|
|
275
275
|
totalCount: number;
|