@temboplus/afloat 0.2.1-beta.5 → 0.2.1-beta.7

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.
@@ -39,7 +39,7 @@ export declare const CompanyMembershipJSONSchema: z.ZodObject<{
39
39
  role: z.ZodOptional<z.ZodObject<{
40
40
  id: z.ZodString;
41
41
  name: z.ZodString;
42
- description: z.ZodOptional<z.ZodString>;
42
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
43
43
  access: z.ZodArray<z.ZodString, "many">;
44
44
  createdAt: z.ZodString;
45
45
  updatedAt: z.ZodString;
@@ -51,7 +51,7 @@ export declare const CompanyMembershipJSONSchema: z.ZodObject<{
51
51
  _version: string;
52
52
  updatedAt: string;
53
53
  access: string[];
54
- description?: string | undefined;
54
+ description?: string | null | undefined;
55
55
  }, {
56
56
  name: string;
57
57
  createdAt: string;
@@ -59,7 +59,7 @@ export declare const CompanyMembershipJSONSchema: z.ZodObject<{
59
59
  updatedAt: string;
60
60
  access: string[];
61
61
  _version?: string | undefined;
62
- description?: string | undefined;
62
+ description?: string | null | undefined;
63
63
  }>>;
64
64
  _version: z.ZodDefault<z.ZodOptional<z.ZodString>>;
65
65
  }, "strip", z.ZodTypeAny, {
@@ -82,7 +82,7 @@ export declare const CompanyMembershipJSONSchema: z.ZodObject<{
82
82
  _version: string;
83
83
  updatedAt: string;
84
84
  access: string[];
85
- description?: string | undefined;
85
+ description?: string | null | undefined;
86
86
  } | undefined;
87
87
  }, {
88
88
  companyProfile: {
@@ -104,7 +104,7 @@ export declare const CompanyMembershipJSONSchema: z.ZodObject<{
104
104
  updatedAt: string;
105
105
  access: string[];
106
106
  _version?: string | undefined;
107
- description?: string | undefined;
107
+ description?: string | null | undefined;
108
108
  } | undefined;
109
109
  }>;
110
110
  export type CompanyMembershipJSON = z.infer<typeof CompanyMembershipJSONSchema>;
@@ -85,7 +85,7 @@ export declare const UserJSONSchema: z.ZodObject<{
85
85
  role: z.ZodOptional<z.ZodObject<{
86
86
  id: z.ZodString;
87
87
  name: z.ZodString;
88
- description: z.ZodOptional<z.ZodString>;
88
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
89
89
  access: z.ZodArray<z.ZodString, "many">;
90
90
  createdAt: z.ZodString;
91
91
  updatedAt: z.ZodString;
@@ -97,7 +97,7 @@ export declare const UserJSONSchema: z.ZodObject<{
97
97
  _version: string;
98
98
  updatedAt: string;
99
99
  access: string[];
100
- description?: string | undefined;
100
+ description?: string | null | undefined;
101
101
  }, {
102
102
  name: string;
103
103
  createdAt: string;
@@ -105,7 +105,7 @@ export declare const UserJSONSchema: z.ZodObject<{
105
105
  updatedAt: string;
106
106
  access: string[];
107
107
  _version?: string | undefined;
108
- description?: string | undefined;
108
+ description?: string | null | undefined;
109
109
  }>>;
110
110
  _version: z.ZodDefault<z.ZodOptional<z.ZodString>>;
111
111
  }, "strip", z.ZodTypeAny, {
@@ -143,7 +143,7 @@ export declare const UserJSONSchema: z.ZodObject<{
143
143
  _version: string;
144
144
  updatedAt: string;
145
145
  access: string[];
146
- description?: string | undefined;
146
+ description?: string | null | undefined;
147
147
  } | undefined;
148
148
  }, {
149
149
  companyProfile: {
@@ -180,7 +180,7 @@ export declare const UserJSONSchema: z.ZodObject<{
180
180
  updatedAt: string;
181
181
  access: string[];
182
182
  _version?: string | undefined;
183
- description?: string | undefined;
183
+ description?: string | null | undefined;
184
184
  } | undefined;
185
185
  }>;
186
186
  /**
@@ -6,7 +6,7 @@ import { RoleDTO } from "./team-member.dtos.js";
6
6
  export declare const RoleJSONSchema: z.ZodObject<{
7
7
  id: z.ZodString;
8
8
  name: z.ZodString;
9
- description: z.ZodOptional<z.ZodString>;
9
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10
10
  access: z.ZodArray<z.ZodString, "many">;
11
11
  createdAt: z.ZodString;
12
12
  updatedAt: z.ZodString;
@@ -18,7 +18,7 @@ export declare const RoleJSONSchema: z.ZodObject<{
18
18
  _version: string;
19
19
  updatedAt: string;
20
20
  access: string[];
21
- description?: string | undefined;
21
+ description?: string | null | undefined;
22
22
  }, {
23
23
  name: string;
24
24
  createdAt: string;
@@ -26,7 +26,7 @@ export declare const RoleJSONSchema: z.ZodObject<{
26
26
  updatedAt: string;
27
27
  access: string[];
28
28
  _version?: string | undefined;
29
- description?: string | undefined;
29
+ description?: string | null | undefined;
30
30
  }>;
31
31
  /**
32
32
  * Infer the RoleJSON type from the schema
@@ -35,7 +35,7 @@ export type RoleJSON = z.infer<typeof RoleJSONSchema>;
35
35
  export declare class Role {
36
36
  readonly id: string;
37
37
  readonly name: string;
38
- readonly description?: string;
38
+ readonly description?: string | null;
39
39
  readonly permissions: ReadonlySet<string>;
40
40
  readonly createdAt: Date;
41
41
  readonly updatedAt: Date;
@@ -59,7 +59,7 @@ export declare const teamManagementContract: {
59
59
  role: z.ZodOptional<z.ZodObject<{
60
60
  id: z.ZodString;
61
61
  name: z.ZodString;
62
- description: z.ZodOptional<z.ZodString>;
62
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
63
63
  access: z.ZodArray<z.ZodString, "many">;
64
64
  createdAt: z.ZodString;
65
65
  updatedAt: z.ZodString;
@@ -69,14 +69,14 @@ export declare const teamManagementContract: {
69
69
  id: string;
70
70
  updatedAt: string;
71
71
  access: string[];
72
- description?: string | undefined;
72
+ description?: string | null | undefined;
73
73
  }, {
74
74
  name: string;
75
75
  createdAt: string;
76
76
  id: string;
77
77
  updatedAt: string;
78
78
  access: string[];
79
- description?: string | undefined;
79
+ description?: string | null | undefined;
80
80
  }>>;
81
81
  createdAt: z.ZodString;
82
82
  updatedAt: z.ZodString;
@@ -98,7 +98,7 @@ export declare const teamManagementContract: {
98
98
  id: string;
99
99
  updatedAt: string;
100
100
  access: string[];
101
- description?: string | undefined;
101
+ description?: string | null | undefined;
102
102
  } | undefined;
103
103
  }, {
104
104
  type: string;
@@ -118,7 +118,7 @@ export declare const teamManagementContract: {
118
118
  id: string;
119
119
  updatedAt: string;
120
120
  access: string[];
121
- description?: string | undefined;
121
+ description?: string | null | undefined;
122
122
  } | undefined;
123
123
  }>, "many">;
124
124
  401: z.ZodObject<{
@@ -203,7 +203,7 @@ export declare const teamManagementContract: {
203
203
  role: z.ZodOptional<z.ZodObject<{
204
204
  id: z.ZodString;
205
205
  name: z.ZodString;
206
- description: z.ZodOptional<z.ZodString>;
206
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
207
207
  access: z.ZodArray<z.ZodString, "many">;
208
208
  createdAt: z.ZodString;
209
209
  updatedAt: z.ZodString;
@@ -213,14 +213,14 @@ export declare const teamManagementContract: {
213
213
  id: string;
214
214
  updatedAt: string;
215
215
  access: string[];
216
- description?: string | undefined;
216
+ description?: string | null | undefined;
217
217
  }, {
218
218
  name: string;
219
219
  createdAt: string;
220
220
  id: string;
221
221
  updatedAt: string;
222
222
  access: string[];
223
- description?: string | undefined;
223
+ description?: string | null | undefined;
224
224
  }>>;
225
225
  createdAt: z.ZodString;
226
226
  updatedAt: z.ZodString;
@@ -242,7 +242,7 @@ export declare const teamManagementContract: {
242
242
  id: string;
243
243
  updatedAt: string;
244
244
  access: string[];
245
- description?: string | undefined;
245
+ description?: string | null | undefined;
246
246
  } | undefined;
247
247
  }, {
248
248
  type: string;
@@ -262,7 +262,7 @@ export declare const teamManagementContract: {
262
262
  id: string;
263
263
  updatedAt: string;
264
264
  access: string[];
265
- description?: string | undefined;
265
+ description?: string | null | undefined;
266
266
  } | undefined;
267
267
  }>;
268
268
  401: z.ZodObject<{
@@ -428,7 +428,7 @@ export declare const teamManagementContract: {
428
428
  role: z.ZodOptional<z.ZodObject<{
429
429
  id: z.ZodString;
430
430
  name: z.ZodString;
431
- description: z.ZodOptional<z.ZodString>;
431
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
432
432
  access: z.ZodArray<z.ZodString, "many">;
433
433
  createdAt: z.ZodString;
434
434
  updatedAt: z.ZodString;
@@ -438,14 +438,14 @@ export declare const teamManagementContract: {
438
438
  id: string;
439
439
  updatedAt: string;
440
440
  access: string[];
441
- description?: string | undefined;
441
+ description?: string | null | undefined;
442
442
  }, {
443
443
  name: string;
444
444
  createdAt: string;
445
445
  id: string;
446
446
  updatedAt: string;
447
447
  access: string[];
448
- description?: string | undefined;
448
+ description?: string | null | undefined;
449
449
  }>>;
450
450
  createdAt: z.ZodString;
451
451
  updatedAt: z.ZodString;
@@ -467,7 +467,7 @@ export declare const teamManagementContract: {
467
467
  id: string;
468
468
  updatedAt: string;
469
469
  access: string[];
470
- description?: string | undefined;
470
+ description?: string | null | undefined;
471
471
  } | undefined;
472
472
  }, {
473
473
  type: string;
@@ -487,7 +487,7 @@ export declare const teamManagementContract: {
487
487
  id: string;
488
488
  updatedAt: string;
489
489
  access: string[];
490
- description?: string | undefined;
490
+ description?: string | null | undefined;
491
491
  } | undefined;
492
492
  }>;
493
493
  400: z.ZodObject<{
@@ -550,7 +550,7 @@ export declare const teamManagementContract: {
550
550
  role: z.ZodOptional<z.ZodObject<{
551
551
  id: z.ZodString;
552
552
  name: z.ZodString;
553
- description: z.ZodOptional<z.ZodString>;
553
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
554
554
  access: z.ZodArray<z.ZodString, "many">;
555
555
  createdAt: z.ZodString;
556
556
  updatedAt: z.ZodString;
@@ -560,14 +560,14 @@ export declare const teamManagementContract: {
560
560
  id: string;
561
561
  updatedAt: string;
562
562
  access: string[];
563
- description?: string | undefined;
563
+ description?: string | null | undefined;
564
564
  }, {
565
565
  name: string;
566
566
  createdAt: string;
567
567
  id: string;
568
568
  updatedAt: string;
569
569
  access: string[];
570
- description?: string | undefined;
570
+ description?: string | null | undefined;
571
571
  }>>;
572
572
  createdAt: z.ZodString;
573
573
  updatedAt: z.ZodString;
@@ -589,7 +589,7 @@ export declare const teamManagementContract: {
589
589
  id: string;
590
590
  updatedAt: string;
591
591
  access: string[];
592
- description?: string | undefined;
592
+ description?: string | null | undefined;
593
593
  } | undefined;
594
594
  }, {
595
595
  type: string;
@@ -609,7 +609,7 @@ export declare const teamManagementContract: {
609
609
  id: string;
610
610
  updatedAt: string;
611
611
  access: string[];
612
- description?: string | undefined;
612
+ description?: string | null | undefined;
613
613
  } | undefined;
614
614
  }>;
615
615
  401: z.ZodObject<{
@@ -662,7 +662,7 @@ export declare const teamManagementContract: {
662
662
  role: z.ZodOptional<z.ZodObject<{
663
663
  id: z.ZodString;
664
664
  name: z.ZodString;
665
- description: z.ZodOptional<z.ZodString>;
665
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
666
666
  access: z.ZodArray<z.ZodString, "many">;
667
667
  createdAt: z.ZodString;
668
668
  updatedAt: z.ZodString;
@@ -672,14 +672,14 @@ export declare const teamManagementContract: {
672
672
  id: string;
673
673
  updatedAt: string;
674
674
  access: string[];
675
- description?: string | undefined;
675
+ description?: string | null | undefined;
676
676
  }, {
677
677
  name: string;
678
678
  createdAt: string;
679
679
  id: string;
680
680
  updatedAt: string;
681
681
  access: string[];
682
- description?: string | undefined;
682
+ description?: string | null | undefined;
683
683
  }>>;
684
684
  createdAt: z.ZodString;
685
685
  updatedAt: z.ZodString;
@@ -701,7 +701,7 @@ export declare const teamManagementContract: {
701
701
  id: string;
702
702
  updatedAt: string;
703
703
  access: string[];
704
- description?: string | undefined;
704
+ description?: string | null | undefined;
705
705
  } | undefined;
706
706
  }, {
707
707
  type: string;
@@ -721,7 +721,7 @@ export declare const teamManagementContract: {
721
721
  id: string;
722
722
  updatedAt: string;
723
723
  access: string[];
724
- description?: string | undefined;
724
+ description?: string | null | undefined;
725
725
  } | undefined;
726
726
  }>;
727
727
  401: z.ZodObject<{
@@ -816,7 +816,7 @@ export declare const teamManagementContract: {
816
816
  200: z.ZodArray<z.ZodObject<{
817
817
  id: z.ZodString;
818
818
  name: z.ZodString;
819
- description: z.ZodOptional<z.ZodString>;
819
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
820
820
  access: z.ZodArray<z.ZodString, "many">;
821
821
  createdAt: z.ZodString;
822
822
  updatedAt: z.ZodString;
@@ -826,14 +826,14 @@ export declare const teamManagementContract: {
826
826
  id: string;
827
827
  updatedAt: string;
828
828
  access: string[];
829
- description?: string | undefined;
829
+ description?: string | null | undefined;
830
830
  }, {
831
831
  name: string;
832
832
  createdAt: string;
833
833
  id: string;
834
834
  updatedAt: string;
835
835
  access: string[];
836
- description?: string | undefined;
836
+ description?: string | null | undefined;
837
837
  }>, "many">;
838
838
  401: z.ZodObject<{
839
839
  message: z.ZodOptional<z.ZodString>;
@@ -867,7 +867,7 @@ export declare const teamManagementContract: {
867
867
  200: z.ZodObject<{
868
868
  id: z.ZodString;
869
869
  name: z.ZodString;
870
- description: z.ZodOptional<z.ZodString>;
870
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
871
871
  access: z.ZodArray<z.ZodString, "many">;
872
872
  createdAt: z.ZodString;
873
873
  updatedAt: z.ZodString;
@@ -877,14 +877,14 @@ export declare const teamManagementContract: {
877
877
  id: string;
878
878
  updatedAt: string;
879
879
  access: string[];
880
- description?: string | undefined;
880
+ description?: string | null | undefined;
881
881
  }, {
882
882
  name: string;
883
883
  createdAt: string;
884
884
  id: string;
885
885
  updatedAt: string;
886
886
  access: string[];
887
- description?: string | undefined;
887
+ description?: string | null | undefined;
888
888
  }>;
889
889
  401: z.ZodObject<{
890
890
  message: z.ZodOptional<z.ZodString>;
@@ -7,7 +7,7 @@ export declare const TeamManagementDTOSchemas: {
7
7
  role: z.ZodObject<{
8
8
  id: z.ZodString;
9
9
  name: z.ZodString;
10
- description: z.ZodOptional<z.ZodString>;
10
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11
11
  access: z.ZodArray<z.ZodString, "many">;
12
12
  createdAt: z.ZodString;
13
13
  updatedAt: z.ZodString;
@@ -17,14 +17,14 @@ export declare const TeamManagementDTOSchemas: {
17
17
  id: string;
18
18
  updatedAt: string;
19
19
  access: string[];
20
- description?: string | undefined;
20
+ description?: string | null | undefined;
21
21
  }, {
22
22
  name: string;
23
23
  createdAt: string;
24
24
  id: string;
25
25
  updatedAt: string;
26
26
  access: string[];
27
- description?: string | undefined;
27
+ description?: string | null | undefined;
28
28
  }>;
29
29
  teamMember: z.ZodObject<{
30
30
  id: z.ZodString;
@@ -39,7 +39,7 @@ export declare const TeamManagementDTOSchemas: {
39
39
  role: z.ZodOptional<z.ZodObject<{
40
40
  id: z.ZodString;
41
41
  name: z.ZodString;
42
- description: z.ZodOptional<z.ZodString>;
42
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
43
43
  access: z.ZodArray<z.ZodString, "many">;
44
44
  createdAt: z.ZodString;
45
45
  updatedAt: z.ZodString;
@@ -49,14 +49,14 @@ export declare const TeamManagementDTOSchemas: {
49
49
  id: string;
50
50
  updatedAt: string;
51
51
  access: string[];
52
- description?: string | undefined;
52
+ description?: string | null | undefined;
53
53
  }, {
54
54
  name: string;
55
55
  createdAt: string;
56
56
  id: string;
57
57
  updatedAt: string;
58
58
  access: string[];
59
- description?: string | undefined;
59
+ description?: string | null | undefined;
60
60
  }>>;
61
61
  createdAt: z.ZodString;
62
62
  updatedAt: z.ZodString;
@@ -78,7 +78,7 @@ export declare const TeamManagementDTOSchemas: {
78
78
  id: string;
79
79
  updatedAt: string;
80
80
  access: string[];
81
- description?: string | undefined;
81
+ description?: string | null | undefined;
82
82
  } | undefined;
83
83
  }, {
84
84
  type: string;
@@ -98,7 +98,7 @@ export declare const TeamManagementDTOSchemas: {
98
98
  id: string;
99
99
  updatedAt: string;
100
100
  access: string[];
101
- description?: string | undefined;
101
+ description?: string | null | undefined;
102
102
  } | undefined;
103
103
  }>;
104
104
  teamMemberQueryParams: z.ZodObject<{
@@ -31,7 +31,7 @@ export declare const TeamMemberJSONSchema: z.ZodObject<{
31
31
  role: z.ZodOptional<z.ZodObject<{
32
32
  id: z.ZodString;
33
33
  name: z.ZodString;
34
- description: z.ZodOptional<z.ZodString>;
34
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
35
35
  access: z.ZodArray<z.ZodString, "many">;
36
36
  createdAt: z.ZodString;
37
37
  updatedAt: z.ZodString;
@@ -43,7 +43,7 @@ export declare const TeamMemberJSONSchema: z.ZodObject<{
43
43
  _version: string;
44
44
  updatedAt: string;
45
45
  access: string[];
46
- description?: string | undefined;
46
+ description?: string | null | undefined;
47
47
  }, {
48
48
  name: string;
49
49
  createdAt: string;
@@ -51,7 +51,7 @@ export declare const TeamMemberJSONSchema: z.ZodObject<{
51
51
  updatedAt: string;
52
52
  access: string[];
53
53
  _version?: string | undefined;
54
- description?: string | undefined;
54
+ description?: string | null | undefined;
55
55
  }>>;
56
56
  createdAt: z.ZodString;
57
57
  updatedAt: z.ZodString;
@@ -76,7 +76,7 @@ export declare const TeamMemberJSONSchema: z.ZodObject<{
76
76
  _version: string;
77
77
  updatedAt: string;
78
78
  access: string[];
79
- description?: string | undefined;
79
+ description?: string | null | undefined;
80
80
  } | undefined;
81
81
  }, {
82
82
  type: string;
@@ -98,7 +98,7 @@ export declare const TeamMemberJSONSchema: z.ZodObject<{
98
98
  updatedAt: string;
99
99
  access: string[];
100
100
  _version?: string | undefined;
101
- description?: string | undefined;
101
+ description?: string | null | undefined;
102
102
  } | undefined;
103
103
  }>;
104
104
  export type TeamMemberJSON = z.infer<typeof TeamMemberJSONSchema>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@temboplus/afloat",
3
- "version": "0.2.1-beta.5",
3
+ "version": "0.2.1-beta.7",
4
4
  "description": "A foundational library for Temboplus-Afloat projects.",
5
5
  "main": "./dist/index.cjs.js",
6
6
  "module": "./dist/index.esm.js",