@forklaunch/implementation-iam-base 0.1.14 → 0.1.16

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.
@@ -28,8 +28,12 @@ export declare const PermissionSchema: ({
28
28
  id: import('zod').ZodString;
29
29
  slug: import('zod').ZodString;
30
30
  extraFields: import('zod').ZodOptional<import('zod').ZodUnknown>;
31
- createdAt: import('zod').ZodOptional<import('zod').ZodDate>;
32
- updatedAt: import('zod').ZodOptional<import('zod').ZodDate>;
31
+ createdAt: import('zod').ZodOptional<
32
+ import('zod').ZodEffects<import('zod').ZodDate, Date, unknown>
33
+ >;
34
+ updatedAt: import('zod').ZodOptional<
35
+ import('zod').ZodEffects<import('zod').ZodDate, Date, unknown>
36
+ >;
33
37
  };
34
38
  export declare const BasePermissionServiceSchemas: (options: {
35
39
  uuidId: boolean;
@@ -56,8 +60,12 @@ export declare const BasePermissionServiceSchemas: (options: {
56
60
  id: import('zod').ZodString;
57
61
  slug: import('zod').ZodString;
58
62
  extraFields: import('zod').ZodOptional<import('zod').ZodUnknown>;
59
- createdAt: import('zod').ZodOptional<import('zod').ZodDate>;
60
- updatedAt: import('zod').ZodOptional<import('zod').ZodDate>;
63
+ createdAt: import('zod').ZodOptional<
64
+ import('zod').ZodEffects<import('zod').ZodDate, Date, unknown>
65
+ >;
66
+ updatedAt: import('zod').ZodOptional<
67
+ import('zod').ZodEffects<import('zod').ZodDate, Date, unknown>
68
+ >;
61
69
  };
62
70
  };
63
71
  //# sourceMappingURL=permission.schema.d.ts.map
@@ -30,8 +30,12 @@ export declare const RoleSchema: ({
30
30
  id: import('zod').ZodString;
31
31
  slug: import('zod').ZodString;
32
32
  extraFields: import('zod').ZodOptional<import('zod').ZodUnknown>;
33
- createdAt: import('zod').ZodOptional<import('zod').ZodDate>;
34
- updatedAt: import('zod').ZodOptional<import('zod').ZodDate>;
33
+ createdAt: import('zod').ZodOptional<
34
+ import('zod').ZodEffects<import('zod').ZodDate, Date, unknown>
35
+ >;
36
+ updatedAt: import('zod').ZodOptional<
37
+ import('zod').ZodEffects<import('zod').ZodDate, Date, unknown>
38
+ >;
35
39
  },
36
40
  import('zod').UnknownKeysParam,
37
41
  import('zod').ZodTypeAny,
@@ -46,15 +50,19 @@ export declare const RoleSchema: ({
46
50
  id: string;
47
51
  slug: string;
48
52
  extraFields?: unknown;
49
- createdAt?: Date | undefined;
50
- updatedAt?: Date | undefined;
53
+ createdAt?: unknown;
54
+ updatedAt?: unknown;
51
55
  }
52
56
  >,
53
57
  'many'
54
58
  >;
55
59
  extraFields: import('zod').ZodOptional<import('zod').ZodUnknown>;
56
- createdAt: import('zod').ZodOptional<import('zod').ZodDate>;
57
- updatedAt: import('zod').ZodOptional<import('zod').ZodDate>;
60
+ createdAt: import('zod').ZodOptional<
61
+ import('zod').ZodEffects<import('zod').ZodDate, Date, unknown>
62
+ >;
63
+ updatedAt: import('zod').ZodOptional<
64
+ import('zod').ZodEffects<import('zod').ZodDate, Date, unknown>
65
+ >;
58
66
  };
59
67
  export declare const BaseRoleServiceSchemas: (options: {
60
68
  uuidId: boolean;
@@ -83,8 +91,12 @@ export declare const BaseRoleServiceSchemas: (options: {
83
91
  id: import('zod').ZodString;
84
92
  slug: import('zod').ZodString;
85
93
  extraFields: import('zod').ZodOptional<import('zod').ZodUnknown>;
86
- createdAt: import('zod').ZodOptional<import('zod').ZodDate>;
87
- updatedAt: import('zod').ZodOptional<import('zod').ZodDate>;
94
+ createdAt: import('zod').ZodOptional<
95
+ import('zod').ZodEffects<import('zod').ZodDate, Date, unknown>
96
+ >;
97
+ updatedAt: import('zod').ZodOptional<
98
+ import('zod').ZodEffects<import('zod').ZodDate, Date, unknown>
99
+ >;
88
100
  },
89
101
  import('zod').UnknownKeysParam,
90
102
  import('zod').ZodTypeAny,
@@ -99,15 +111,19 @@ export declare const BaseRoleServiceSchemas: (options: {
99
111
  id: string;
100
112
  slug: string;
101
113
  extraFields?: unknown;
102
- createdAt?: Date | undefined;
103
- updatedAt?: Date | undefined;
114
+ createdAt?: unknown;
115
+ updatedAt?: unknown;
104
116
  }
105
117
  >,
106
118
  'many'
107
119
  >;
108
120
  extraFields: import('zod').ZodOptional<import('zod').ZodUnknown>;
109
- createdAt: import('zod').ZodOptional<import('zod').ZodDate>;
110
- updatedAt: import('zod').ZodOptional<import('zod').ZodDate>;
121
+ createdAt: import('zod').ZodOptional<
122
+ import('zod').ZodEffects<import('zod').ZodDate, Date, unknown>
123
+ >;
124
+ updatedAt: import('zod').ZodOptional<
125
+ import('zod').ZodEffects<import('zod').ZodDate, Date, unknown>
126
+ >;
111
127
  };
112
128
  };
113
129
  //# sourceMappingURL=role.schema.d.ts.map
@@ -46,8 +46,12 @@ export declare const UserSchema: ({
46
46
  id: import('zod').ZodString;
47
47
  slug: import('zod').ZodString;
48
48
  extraFields: import('zod').ZodOptional<import('zod').ZodUnknown>;
49
- createdAt: import('zod').ZodOptional<import('zod').ZodDate>;
50
- updatedAt: import('zod').ZodOptional<import('zod').ZodDate>;
49
+ createdAt: import('zod').ZodOptional<
50
+ import('zod').ZodEffects<import('zod').ZodDate, Date, unknown>
51
+ >;
52
+ updatedAt: import('zod').ZodOptional<
53
+ import('zod').ZodEffects<import('zod').ZodDate, Date, unknown>
54
+ >;
51
55
  },
52
56
  import('zod').UnknownKeysParam,
53
57
  import('zod').ZodTypeAny,
@@ -62,15 +66,19 @@ export declare const UserSchema: ({
62
66
  id: string;
63
67
  slug: string;
64
68
  extraFields?: unknown;
65
- createdAt?: Date | undefined;
66
- updatedAt?: Date | undefined;
69
+ createdAt?: unknown;
70
+ updatedAt?: unknown;
67
71
  }
68
72
  >,
69
73
  'many'
70
74
  >;
71
75
  extraFields: import('zod').ZodOptional<import('zod').ZodUnknown>;
72
- createdAt: import('zod').ZodOptional<import('zod').ZodDate>;
73
- updatedAt: import('zod').ZodOptional<import('zod').ZodDate>;
76
+ createdAt: import('zod').ZodOptional<
77
+ import('zod').ZodEffects<import('zod').ZodDate, Date, unknown>
78
+ >;
79
+ updatedAt: import('zod').ZodOptional<
80
+ import('zod').ZodEffects<import('zod').ZodDate, Date, unknown>
81
+ >;
74
82
  },
75
83
  import('zod').UnknownKeysParam,
76
84
  import('zod').ZodTypeAny,
@@ -95,12 +103,12 @@ export declare const UserSchema: ({
95
103
  id: string;
96
104
  slug: string;
97
105
  extraFields?: unknown;
98
- createdAt?: Date | undefined;
99
- updatedAt?: Date | undefined;
106
+ createdAt?: unknown;
107
+ updatedAt?: unknown;
100
108
  }[];
101
109
  extraFields?: unknown;
102
- createdAt?: Date | undefined;
103
- updatedAt?: Date | undefined;
110
+ createdAt?: unknown;
111
+ updatedAt?: unknown;
104
112
  }
105
113
  >,
106
114
  'many'
@@ -108,8 +116,12 @@ export declare const UserSchema: ({
108
116
  phoneNumber: import('zod').ZodOptional<import('zod').ZodString>;
109
117
  subscription: import('zod').ZodOptional<import('zod').ZodString>;
110
118
  extraFields: import('zod').ZodOptional<import('zod').ZodUnknown>;
111
- createdAt: import('zod').ZodOptional<import('zod').ZodDate>;
112
- updatedAt: import('zod').ZodOptional<import('zod').ZodDate>;
119
+ createdAt: import('zod').ZodOptional<
120
+ import('zod').ZodEffects<import('zod').ZodDate, Date, unknown>
121
+ >;
122
+ updatedAt: import('zod').ZodOptional<
123
+ import('zod').ZodEffects<import('zod').ZodDate, Date, unknown>
124
+ >;
113
125
  };
114
126
  export declare const BaseUserServiceSchemas: (options: {
115
127
  uuidId: boolean;
@@ -156,8 +168,12 @@ export declare const BaseUserServiceSchemas: (options: {
156
168
  extraFields: import('zod').ZodOptional<
157
169
  import('zod').ZodUnknown
158
170
  >;
159
- createdAt: import('zod').ZodOptional<import('zod').ZodDate>;
160
- updatedAt: import('zod').ZodOptional<import('zod').ZodDate>;
171
+ createdAt: import('zod').ZodOptional<
172
+ import('zod').ZodEffects<import('zod').ZodDate, Date, unknown>
173
+ >;
174
+ updatedAt: import('zod').ZodOptional<
175
+ import('zod').ZodEffects<import('zod').ZodDate, Date, unknown>
176
+ >;
161
177
  },
162
178
  import('zod').UnknownKeysParam,
163
179
  import('zod').ZodTypeAny,
@@ -172,15 +188,19 @@ export declare const BaseUserServiceSchemas: (options: {
172
188
  id: string;
173
189
  slug: string;
174
190
  extraFields?: unknown;
175
- createdAt?: Date | undefined;
176
- updatedAt?: Date | undefined;
191
+ createdAt?: unknown;
192
+ updatedAt?: unknown;
177
193
  }
178
194
  >,
179
195
  'many'
180
196
  >;
181
197
  extraFields: import('zod').ZodOptional<import('zod').ZodUnknown>;
182
- createdAt: import('zod').ZodOptional<import('zod').ZodDate>;
183
- updatedAt: import('zod').ZodOptional<import('zod').ZodDate>;
198
+ createdAt: import('zod').ZodOptional<
199
+ import('zod').ZodEffects<import('zod').ZodDate, Date, unknown>
200
+ >;
201
+ updatedAt: import('zod').ZodOptional<
202
+ import('zod').ZodEffects<import('zod').ZodDate, Date, unknown>
203
+ >;
184
204
  },
185
205
  import('zod').UnknownKeysParam,
186
206
  import('zod').ZodTypeAny,
@@ -205,12 +225,12 @@ export declare const BaseUserServiceSchemas: (options: {
205
225
  id: string;
206
226
  slug: string;
207
227
  extraFields?: unknown;
208
- createdAt?: Date | undefined;
209
- updatedAt?: Date | undefined;
228
+ createdAt?: unknown;
229
+ updatedAt?: unknown;
210
230
  }[];
211
231
  extraFields?: unknown;
212
- createdAt?: Date | undefined;
213
- updatedAt?: Date | undefined;
232
+ createdAt?: unknown;
233
+ updatedAt?: unknown;
214
234
  }
215
235
  >,
216
236
  'many'
@@ -218,8 +238,12 @@ export declare const BaseUserServiceSchemas: (options: {
218
238
  phoneNumber: import('zod').ZodOptional<import('zod').ZodString>;
219
239
  subscription: import('zod').ZodOptional<import('zod').ZodString>;
220
240
  extraFields: import('zod').ZodOptional<import('zod').ZodUnknown>;
221
- createdAt: import('zod').ZodOptional<import('zod').ZodDate>;
222
- updatedAt: import('zod').ZodOptional<import('zod').ZodDate>;
241
+ createdAt: import('zod').ZodOptional<
242
+ import('zod').ZodEffects<import('zod').ZodDate, Date, unknown>
243
+ >;
244
+ updatedAt: import('zod').ZodOptional<
245
+ import('zod').ZodEffects<import('zod').ZodDate, Date, unknown>
246
+ >;
223
247
  };
224
248
  };
225
249
  //# sourceMappingURL=user.schema.d.ts.map