@renai-labs/sdk 0.1.12 → 0.1.13
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.
|
@@ -12068,6 +12068,7 @@ export declare const zTelegramUnlinkResponse: z.ZodVoid;
|
|
|
12068
12068
|
export declare const zTelegramClaimCodeBody: z.ZodObject<{
|
|
12069
12069
|
projectId: z.ZodString;
|
|
12070
12070
|
defaultProjectAgentId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
12071
|
+
fallbackSenderUserId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
12071
12072
|
}, z.core.$strip>;
|
|
12072
12073
|
export declare const zTelegramClaimCodeQuery: z.ZodObject<{
|
|
12073
12074
|
scope: z.ZodOptional<z.ZodEnum<{
|
|
@@ -3716,6 +3716,7 @@ export const zTelegramUnlinkResponse = z.void();
|
|
|
3716
3716
|
export const zTelegramClaimCodeBody = z.object({
|
|
3717
3717
|
projectId: z.string().min(1),
|
|
3718
3718
|
defaultProjectAgentId: z.string().min(1).nullish().default(null),
|
|
3719
|
+
fallbackSenderUserId: z.string().min(1).nullish().default(null),
|
|
3719
3720
|
});
|
|
3720
3721
|
export const zTelegramClaimCodeQuery = z.object({
|
|
3721
3722
|
scope: z.enum(["user"]).optional(),
|