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
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AppShell.d.ts","sourceRoot":"","sources":["../../../../../src/app/shell/AppShell.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,YAAY,EAAsB,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"AppShell.d.ts","sourceRoot":"","sources":["../../../../../src/app/shell/AppShell.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,YAAY,EAAsB,MAAM,OAAO,CAAC;AAoC9D;;;;GAIG;AACH,eAAO,MAAM,QAAQ,QAAO,YA2E3B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"use-bottom-nav-items.d.ts","sourceRoot":"","sources":["../../../../../src/app/shell/use-bottom-nav-items.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,gBAAgB,EAAE,MAAM,YAAY,CAAC;AAOnD,eAAO,MAAM,iBAAiB,QAAO,SAAS,gBAAgB,EAyC7D,CAAC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { type MotionValue } from 'motion/react';
|
|
2
|
+
interface ShellMotion {
|
|
3
|
+
readonly bg1X: MotionValue<number>;
|
|
4
|
+
readonly bg1Y: MotionValue<number>;
|
|
5
|
+
readonly bg2X: MotionValue<number>;
|
|
6
|
+
readonly bg2Y: MotionValue<number>;
|
|
7
|
+
readonly handleMouseMove: (event: React.MouseEvent<HTMLDivElement>) => void;
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Drives the two parallax background blobs that follow the mouse in the AppShell.
|
|
11
|
+
* Extracted to keep AppShell under the 80-line function budget.
|
|
12
|
+
*/
|
|
13
|
+
export declare const useShellMotion: () => ShellMotion;
|
|
14
|
+
export {};
|
|
15
|
+
//# sourceMappingURL=use-shell-motion.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"use-shell-motion.d.ts","sourceRoot":"","sources":["../../../../../src/app/shell/use-shell-motion.ts"],"names":[],"mappings":"AAAA,OAAO,EAA2C,KAAK,WAAW,EAAE,MAAM,cAAc,CAAC;AAEzF,UAAU,WAAW;IACnB,QAAQ,CAAC,IAAI,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;IACnC,QAAQ,CAAC,IAAI,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;IACnC,QAAQ,CAAC,IAAI,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;IACnC,QAAQ,CAAC,IAAI,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;IACnC,QAAQ,CAAC,eAAe,EAAE,CAAC,KAAK,EAAE,KAAK,CAAC,UAAU,CAAC,cAAc,CAAC,KAAK,IAAI,CAAC;CAC7E;AAED;;;GAGG;AACH,eAAO,MAAM,cAAc,QAAO,WAqBjC,CAAC"}
|
|
@@ -259,8 +259,8 @@ export declare const ChatMessageSchema: z.ZodObject<{
|
|
|
259
259
|
deletedForEveryone: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
260
260
|
}, "strip", z.ZodTypeAny, {
|
|
261
261
|
id: string;
|
|
262
|
-
text: string;
|
|
263
262
|
time: string;
|
|
263
|
+
text: string;
|
|
264
264
|
kind: number;
|
|
265
265
|
authorName: string;
|
|
266
266
|
authorInitials: string;
|
|
@@ -287,8 +287,8 @@ export declare const ChatMessageSchema: z.ZodObject<{
|
|
|
287
287
|
editedAt: string | null;
|
|
288
288
|
}, {
|
|
289
289
|
id: string;
|
|
290
|
-
text: string;
|
|
291
290
|
time: string;
|
|
291
|
+
text: string;
|
|
292
292
|
kind: number;
|
|
293
293
|
authorName: string;
|
|
294
294
|
authorInitials: string;
|
|
@@ -877,8 +877,8 @@ export declare const ChatMessageListSchema: z.ZodArray<z.ZodObject<{
|
|
|
877
877
|
deletedForEveryone: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
878
878
|
}, "strip", z.ZodTypeAny, {
|
|
879
879
|
id: string;
|
|
880
|
-
text: string;
|
|
881
880
|
time: string;
|
|
881
|
+
text: string;
|
|
882
882
|
kind: number;
|
|
883
883
|
authorName: string;
|
|
884
884
|
authorInitials: string;
|
|
@@ -905,8 +905,8 @@ export declare const ChatMessageListSchema: z.ZodArray<z.ZodObject<{
|
|
|
905
905
|
editedAt: string | null;
|
|
906
906
|
}, {
|
|
907
907
|
id: string;
|
|
908
|
-
text: string;
|
|
909
908
|
time: string;
|
|
909
|
+
text: string;
|
|
910
910
|
kind: number;
|
|
911
911
|
authorName: string;
|
|
912
912
|
authorInitials: string;
|
|
@@ -24,8 +24,8 @@ export declare const FeedCommentDtoSchema: z.ZodObject<{
|
|
|
24
24
|
time: z.ZodString;
|
|
25
25
|
}, "strip", z.ZodTypeAny, {
|
|
26
26
|
id: string;
|
|
27
|
-
text: string;
|
|
28
27
|
time: string;
|
|
28
|
+
text: string;
|
|
29
29
|
authorName: string;
|
|
30
30
|
authorInitials: string;
|
|
31
31
|
authorColor: string;
|
|
@@ -33,8 +33,8 @@ export declare const FeedCommentDtoSchema: z.ZodObject<{
|
|
|
33
33
|
createdAt: string;
|
|
34
34
|
}, {
|
|
35
35
|
id: string;
|
|
36
|
-
text: string;
|
|
37
36
|
time: string;
|
|
37
|
+
text: string;
|
|
38
38
|
authorName: string;
|
|
39
39
|
authorInitials: string;
|
|
40
40
|
authorColor: string;
|
|
@@ -86,8 +86,8 @@ export declare const FeedPostDtoSchema: z.ZodObject<{
|
|
|
86
86
|
time: z.ZodString;
|
|
87
87
|
}, "strip", z.ZodTypeAny, {
|
|
88
88
|
id: string;
|
|
89
|
-
text: string;
|
|
90
89
|
time: string;
|
|
90
|
+
text: string;
|
|
91
91
|
authorName: string;
|
|
92
92
|
authorInitials: string;
|
|
93
93
|
authorColor: string;
|
|
@@ -95,8 +95,8 @@ export declare const FeedPostDtoSchema: z.ZodObject<{
|
|
|
95
95
|
createdAt: string;
|
|
96
96
|
}, {
|
|
97
97
|
id: string;
|
|
98
|
-
text: string;
|
|
99
98
|
time: string;
|
|
99
|
+
text: string;
|
|
100
100
|
authorName: string;
|
|
101
101
|
authorInitials: string;
|
|
102
102
|
authorColor: string;
|
|
@@ -160,8 +160,8 @@ export declare const FeedPostDtoSchema: z.ZodObject<{
|
|
|
160
160
|
time: z.ZodString;
|
|
161
161
|
}, "strip", z.ZodTypeAny, {
|
|
162
162
|
id: string;
|
|
163
|
-
text: string;
|
|
164
163
|
time: string;
|
|
164
|
+
text: string;
|
|
165
165
|
authorName: string;
|
|
166
166
|
authorInitials: string;
|
|
167
167
|
authorColor: string;
|
|
@@ -169,8 +169,8 @@ export declare const FeedPostDtoSchema: z.ZodObject<{
|
|
|
169
169
|
createdAt: string;
|
|
170
170
|
}, {
|
|
171
171
|
id: string;
|
|
172
|
-
text: string;
|
|
173
172
|
time: string;
|
|
173
|
+
text: string;
|
|
174
174
|
authorName: string;
|
|
175
175
|
authorInitials: string;
|
|
176
176
|
authorColor: string;
|
|
@@ -234,8 +234,8 @@ export declare const FeedPostDtoSchema: z.ZodObject<{
|
|
|
234
234
|
time: z.ZodString;
|
|
235
235
|
}, "strip", z.ZodTypeAny, {
|
|
236
236
|
id: string;
|
|
237
|
-
text: string;
|
|
238
237
|
time: string;
|
|
238
|
+
text: string;
|
|
239
239
|
authorName: string;
|
|
240
240
|
authorInitials: string;
|
|
241
241
|
authorColor: string;
|
|
@@ -243,8 +243,8 @@ export declare const FeedPostDtoSchema: z.ZodObject<{
|
|
|
243
243
|
createdAt: string;
|
|
244
244
|
}, {
|
|
245
245
|
id: string;
|
|
246
|
-
text: string;
|
|
247
246
|
time: string;
|
|
247
|
+
text: string;
|
|
248
248
|
authorName: string;
|
|
249
249
|
authorInitials: string;
|
|
250
250
|
authorColor: string;
|
|
@@ -310,8 +310,8 @@ export declare const FeedPostListSchema: z.ZodArray<z.ZodObject<{
|
|
|
310
310
|
time: z.ZodString;
|
|
311
311
|
}, "strip", z.ZodTypeAny, {
|
|
312
312
|
id: string;
|
|
313
|
-
text: string;
|
|
314
313
|
time: string;
|
|
314
|
+
text: string;
|
|
315
315
|
authorName: string;
|
|
316
316
|
authorInitials: string;
|
|
317
317
|
authorColor: string;
|
|
@@ -319,8 +319,8 @@ export declare const FeedPostListSchema: z.ZodArray<z.ZodObject<{
|
|
|
319
319
|
createdAt: string;
|
|
320
320
|
}, {
|
|
321
321
|
id: string;
|
|
322
|
-
text: string;
|
|
323
322
|
time: string;
|
|
323
|
+
text: string;
|
|
324
324
|
authorName: string;
|
|
325
325
|
authorInitials: string;
|
|
326
326
|
authorColor: string;
|
|
@@ -384,8 +384,8 @@ export declare const FeedPostListSchema: z.ZodArray<z.ZodObject<{
|
|
|
384
384
|
time: z.ZodString;
|
|
385
385
|
}, "strip", z.ZodTypeAny, {
|
|
386
386
|
id: string;
|
|
387
|
-
text: string;
|
|
388
387
|
time: string;
|
|
388
|
+
text: string;
|
|
389
389
|
authorName: string;
|
|
390
390
|
authorInitials: string;
|
|
391
391
|
authorColor: string;
|
|
@@ -393,8 +393,8 @@ export declare const FeedPostListSchema: z.ZodArray<z.ZodObject<{
|
|
|
393
393
|
createdAt: string;
|
|
394
394
|
}, {
|
|
395
395
|
id: string;
|
|
396
|
-
text: string;
|
|
397
396
|
time: string;
|
|
397
|
+
text: string;
|
|
398
398
|
authorName: string;
|
|
399
399
|
authorInitials: string;
|
|
400
400
|
authorColor: string;
|
|
@@ -458,8 +458,8 @@ export declare const FeedPostListSchema: z.ZodArray<z.ZodObject<{
|
|
|
458
458
|
time: z.ZodString;
|
|
459
459
|
}, "strip", z.ZodTypeAny, {
|
|
460
460
|
id: string;
|
|
461
|
-
text: string;
|
|
462
461
|
time: string;
|
|
462
|
+
text: string;
|
|
463
463
|
authorName: string;
|
|
464
464
|
authorInitials: string;
|
|
465
465
|
authorColor: string;
|
|
@@ -467,8 +467,8 @@ export declare const FeedPostListSchema: z.ZodArray<z.ZodObject<{
|
|
|
467
467
|
createdAt: string;
|
|
468
468
|
}, {
|
|
469
469
|
id: string;
|
|
470
|
-
text: string;
|
|
471
470
|
time: string;
|
|
471
|
+
text: string;
|
|
472
472
|
authorName: string;
|
|
473
473
|
authorInitials: string;
|
|
474
474
|
authorColor: string;
|
|
@@ -535,8 +535,8 @@ export declare const FeedPagedPostListSchema: z.ZodObject<{
|
|
|
535
535
|
time: z.ZodString;
|
|
536
536
|
}, "strip", z.ZodTypeAny, {
|
|
537
537
|
id: string;
|
|
538
|
-
text: string;
|
|
539
538
|
time: string;
|
|
539
|
+
text: string;
|
|
540
540
|
authorName: string;
|
|
541
541
|
authorInitials: string;
|
|
542
542
|
authorColor: string;
|
|
@@ -544,8 +544,8 @@ export declare const FeedPagedPostListSchema: z.ZodObject<{
|
|
|
544
544
|
createdAt: string;
|
|
545
545
|
}, {
|
|
546
546
|
id: string;
|
|
547
|
-
text: string;
|
|
548
547
|
time: string;
|
|
548
|
+
text: string;
|
|
549
549
|
authorName: string;
|
|
550
550
|
authorInitials: string;
|
|
551
551
|
authorColor: string;
|
|
@@ -609,8 +609,8 @@ export declare const FeedPagedPostListSchema: z.ZodObject<{
|
|
|
609
609
|
time: z.ZodString;
|
|
610
610
|
}, "strip", z.ZodTypeAny, {
|
|
611
611
|
id: string;
|
|
612
|
-
text: string;
|
|
613
612
|
time: string;
|
|
613
|
+
text: string;
|
|
614
614
|
authorName: string;
|
|
615
615
|
authorInitials: string;
|
|
616
616
|
authorColor: string;
|
|
@@ -618,8 +618,8 @@ export declare const FeedPagedPostListSchema: z.ZodObject<{
|
|
|
618
618
|
createdAt: string;
|
|
619
619
|
}, {
|
|
620
620
|
id: string;
|
|
621
|
-
text: string;
|
|
622
621
|
time: string;
|
|
622
|
+
text: string;
|
|
623
623
|
authorName: string;
|
|
624
624
|
authorInitials: string;
|
|
625
625
|
authorColor: string;
|
|
@@ -683,8 +683,8 @@ export declare const FeedPagedPostListSchema: z.ZodObject<{
|
|
|
683
683
|
time: z.ZodString;
|
|
684
684
|
}, "strip", z.ZodTypeAny, {
|
|
685
685
|
id: string;
|
|
686
|
-
text: string;
|
|
687
686
|
time: string;
|
|
687
|
+
text: string;
|
|
688
688
|
authorName: string;
|
|
689
689
|
authorInitials: string;
|
|
690
690
|
authorColor: string;
|
|
@@ -692,8 +692,8 @@ export declare const FeedPagedPostListSchema: z.ZodObject<{
|
|
|
692
692
|
createdAt: string;
|
|
693
693
|
}, {
|
|
694
694
|
id: string;
|
|
695
|
-
text: string;
|
|
696
695
|
time: string;
|
|
696
|
+
text: string;
|
|
697
697
|
authorName: string;
|
|
698
698
|
authorInitials: string;
|
|
699
699
|
authorColor: string;
|
|
@@ -759,8 +759,8 @@ export declare const FeedPagedPostListSchema: z.ZodObject<{
|
|
|
759
759
|
time: z.ZodString;
|
|
760
760
|
}, "strip", z.ZodTypeAny, {
|
|
761
761
|
id: string;
|
|
762
|
-
text: string;
|
|
763
762
|
time: string;
|
|
763
|
+
text: string;
|
|
764
764
|
authorName: string;
|
|
765
765
|
authorInitials: string;
|
|
766
766
|
authorColor: string;
|
|
@@ -768,8 +768,8 @@ export declare const FeedPagedPostListSchema: z.ZodObject<{
|
|
|
768
768
|
createdAt: string;
|
|
769
769
|
}, {
|
|
770
770
|
id: string;
|
|
771
|
-
text: string;
|
|
772
771
|
time: string;
|
|
772
|
+
text: string;
|
|
773
773
|
authorName: string;
|
|
774
774
|
authorInitials: string;
|
|
775
775
|
authorColor: string;
|
|
@@ -836,8 +836,8 @@ export declare const FeedPagedPostListSchema: z.ZodObject<{
|
|
|
836
836
|
time: z.ZodString;
|
|
837
837
|
}, "strip", z.ZodTypeAny, {
|
|
838
838
|
id: string;
|
|
839
|
-
text: string;
|
|
840
839
|
time: string;
|
|
840
|
+
text: string;
|
|
841
841
|
authorName: string;
|
|
842
842
|
authorInitials: string;
|
|
843
843
|
authorColor: string;
|
|
@@ -845,8 +845,8 @@ export declare const FeedPagedPostListSchema: z.ZodObject<{
|
|
|
845
845
|
createdAt: string;
|
|
846
846
|
}, {
|
|
847
847
|
id: string;
|
|
848
|
-
text: string;
|
|
849
848
|
time: string;
|
|
849
|
+
text: string;
|
|
850
850
|
authorName: string;
|
|
851
851
|
authorInitials: string;
|
|
852
852
|
authorColor: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FeedPromotionsRail.d.ts","sourceRoot":"","sources":["../../../../../../src/features/feed/presentation/FeedPromotionsRail.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,YAAY,
|
|
1
|
+
{"version":3,"file":"FeedPromotionsRail.d.ts","sourceRoot":"","sources":["../../../../../../src/features/feed/presentation/FeedPromotionsRail.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,YAAY,EAA+B,MAAM,OAAO,CAAC;AAwNvE,kGAAkG;AAClG,eAAO,MAAM,kBAAkB,QAAO,YA4DrC,CAAC"}
|