@ozmap/ozn-sdk
Version:
OZN SDK is a powerful tool for developers to build their own applications on top of OZN using TMForum pattern.
47 lines (46 loc) • 1.16 kB
TypeScript
import { z } from 'zod';
export declare const externalSystemsSchema: z.ZodObject<{
externalId: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
externalSystem: z.ZodString;
}, "strip", z.ZodTypeAny, {
externalId: string | number;
externalSystem: string;
}, {
externalId: string | number;
externalSystem: string;
}>;
export declare const CharacteristicSchema: z.ZodObject<{
name: z.ZodString;
valueType: z.ZodString;
value: z.ZodString;
}, "strip", z.ZodTypeAny, {
value: string;
name: string;
valueType: string;
}, {
value: string;
name: string;
valueType: string;
}>;
export declare const ResourceSpecificationSchema: z.ZodObject<{
id: z.ZodString;
cellName: z.ZodUnion<[z.ZodString, z.ZodNull]>;
type: z.ZodString;
name: z.ZodString;
feedingHeadend: z.ZodString;
project: z.ZodString;
}, "strip", z.ZodTypeAny, {
type: string;
name: string;
id: string;
cellName: string | null;
feedingHeadend: string;
project: string;
}, {
type: string;
name: string;
id: string;
cellName: string | null;
feedingHeadend: string;
project: string;
}>;