@seamapi/types
Advanced tools
Comparing version 1.12.0 to 1.13.0
import * as schemas from './stable/schemas.js'; | ||
export { schemas }; | ||
export { default as openapi } from './openapi.js'; | ||
export * from './route-types.js'; | ||
export * from './stable/model-types.js'; | ||
export declare const routes: {}; |
import * as schemas from './stable/schemas.js'; | ||
export { schemas }; | ||
export { default as openapi } from './openapi.js'; | ||
export * from './route-types.js'; | ||
export * from './stable/model-types.js'; | ||
@@ -5,0 +6,0 @@ // UPSTREAM: Reserve this named export until nextlove is able to generate this. |
import { z } from 'zod'; | ||
export declare const desired_user_properties: z.ZodObject<{ | ||
_desired_full_name: z.ZodString; | ||
_desired_email: z.ZodOptional<z.ZodNullable<z.ZodString>>; | ||
_desired_phone_number: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>>; | ||
}, "strip", z.ZodTypeAny, { | ||
_desired_full_name: string; | ||
_desired_email?: string | null | undefined; | ||
_desired_phone_number?: string | null | undefined; | ||
}, { | ||
_desired_full_name: string; | ||
_desired_email?: string | null | undefined; | ||
_desired_phone_number?: string | null | undefined; | ||
}>; | ||
export type DesiredAcsUserProperties = z.output<typeof desired_user_properties>; | ||
export declare const acs_user: z.ZodObject<{ | ||
@@ -17,0 +3,0 @@ workspace_id: z.ZodString; |
@@ -11,7 +11,2 @@ import { z } from 'zod'; | ||
}); | ||
export const desired_user_properties = z.object({ | ||
_desired_full_name: z.string(), | ||
_desired_email: z.string().email().nullish(), | ||
_desired_phone_number: phone_number.nullish(), | ||
}); | ||
const user_fields = z.object({ | ||
@@ -18,0 +13,0 @@ full_name: z.string().optional(), |
{ | ||
"name": "@seamapi/types", | ||
"version": "1.12.0", | ||
"version": "1.13.0", | ||
"description": "TypeScript types for the Seam API.", | ||
@@ -5,0 +5,0 @@ "type": "module", |
@@ -6,2 +6,3 @@ import * as schemas from './stable/schemas.js' | ||
export { default as openapi } from './openapi.js' | ||
export * from './route-types.js' | ||
export * from './stable/model-types.js' | ||
@@ -8,0 +9,0 @@ |
@@ -16,10 +16,2 @@ import { z } from 'zod' | ||
export const desired_user_properties = z.object({ | ||
_desired_full_name: z.string(), | ||
_desired_email: z.string().email().nullish(), | ||
_desired_phone_number: phone_number.nullish(), | ||
}) | ||
export type DesiredAcsUserProperties = z.output<typeof desired_user_properties> | ||
const user_fields = z.object({ | ||
@@ -26,0 +18,0 @@ full_name: z.string().optional(), |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
3186689
49300