Data model
Shared types
Shared types — Micro TypeScript reference.
Reference for TypeScript SDK 0.14.0.
Release source · Setup and client configuration
Parameter and response types
These declarations show the request parameters and response shapes used by the methods above.
PrismObjectProperties
export interface PrismObjectProperties {
/**
* Properties keyed by property slug. Values can be strings, numbers, booleans,
* arrays, or null. For select/multiselect properties, values may be option slugs
* or option UUIDs on write; option slugs are returned on read.
*/
default?: { [key: string]: unknown };
list?: unknown;
}Prism
export declare namespace Prism {
export { type PrismObjectProperties as PrismObjectProperties };
export {
Properties as Properties,
type PropertyDefinition as PropertyDefinition,
type PropertyDefinitionCreate as PropertyDefinitionCreate,
type PropertyDefinitionPatch as PropertyDefinitionPatch,
type PropertyListResponse as PropertyListResponse,
type PropertyListAllResponse as PropertyListAllResponse,
type PropertyCreateParams as PropertyCreateParams,
type PropertyUpdateParams as PropertyUpdateParams,
type PropertyListParams as PropertyListParams,
type PropertyDeleteParams as PropertyDeleteParams,
type PropertyListAllParams as PropertyListAllParams,
};
export {
Lists as Lists,
type List as List,
type ListCreate as ListCreate,
type ListListResponse as ListListResponse,
type ListCreateParams as ListCreateParams,
type ListListParams as ListListParams,
type ListGetParams as ListGetParams,
};
export {
Imports as Imports,
type ImportGetResponse as ImportGetResponse,
type ImportGetParams as ImportGetParams,
};
export { Objects as Objects };
}