@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.
@@ -9128,6 +9128,7 @@ export type TelegramClaimCodeData = {
9128
9128
  body?: {
9129
9129
  projectId: string;
9130
9130
  defaultProjectAgentId?: string | null;
9131
+ fallbackSenderUserId?: string | null;
9131
9132
  };
9132
9133
  path?: never;
9133
9134
  query?: {
@@ -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(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@renai-labs/sdk",
3
- "version": "0.1.12",
3
+ "version": "0.1.13",
4
4
  "description": "TypeScript SDK for the Ren API, generated from OpenAPI.",
5
5
  "license": "MIT",
6
6
  "author": "Ren Labs, Inc.",