waha-shared 1.0.218 → 1.0.219
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/types/users.d.ts +4 -0
- package/dist/types/users.js +1 -0
- package/package.json +1 -1
package/dist/types/users.d.ts
CHANGED
|
@@ -137,6 +137,7 @@ export declare const WahaShareContentSchema: z.ZodEnum<{
|
|
|
137
137
|
inviteGroup: "inviteGroup";
|
|
138
138
|
offlineVersionLink: "offlineVersionLink";
|
|
139
139
|
customSet: "customSet";
|
|
140
|
+
microLesson: "microLesson";
|
|
140
141
|
}>;
|
|
141
142
|
export type WahaShareContent = z.infer<typeof WahaShareContentSchema>;
|
|
142
143
|
export declare const ShareLogEventSchema: z.ZodObject<{
|
|
@@ -163,6 +164,7 @@ export declare const ShareLogEventSchema: z.ZodObject<{
|
|
|
163
164
|
inviteGroup: "inviteGroup";
|
|
164
165
|
offlineVersionLink: "offlineVersionLink";
|
|
165
166
|
customSet: "customSet";
|
|
167
|
+
microLesson: "microLesson";
|
|
166
168
|
}>;
|
|
167
169
|
lessonId: z.ZodOptional<z.ZodString>;
|
|
168
170
|
articleSlug: z.ZodOptional<z.ZodString>;
|
|
@@ -284,6 +286,7 @@ export declare const WahaUserSchema: z.ZodObject<{
|
|
|
284
286
|
inviteGroup: "inviteGroup";
|
|
285
287
|
offlineVersionLink: "offlineVersionLink";
|
|
286
288
|
customSet: "customSet";
|
|
289
|
+
microLesson: "microLesson";
|
|
287
290
|
}>;
|
|
288
291
|
lessonId: z.ZodOptional<z.ZodString>;
|
|
289
292
|
articleSlug: z.ZodOptional<z.ZodString>;
|
|
@@ -408,6 +411,7 @@ export declare const PushEnabledWahaUserSchema: z.ZodObject<{
|
|
|
408
411
|
inviteGroup: "inviteGroup";
|
|
409
412
|
offlineVersionLink: "offlineVersionLink";
|
|
410
413
|
customSet: "customSet";
|
|
414
|
+
microLesson: "microLesson";
|
|
411
415
|
}>;
|
|
412
416
|
lessonId: z.ZodOptional<z.ZodString>;
|
|
413
417
|
articleSlug: z.ZodOptional<z.ZodString>;
|
package/dist/types/users.js
CHANGED