UNPKG

palette-sdk-typescript

Version:

TypeScript SDK for Spectro Cloud Palette API

27 lines 913 B
/** * Copyright (c) Spectro Cloud * SPDX-License-Identifier: Apache-2.0 */ /** * Generated by orval v7.17.0 🍺 * Do not edit manually. * Palette APIs - 4.8 * OpenAPI spec version: v1 */ import type { NotificationAction } from './notificationAction'; import type { ObjectMeta } from './objectMeta'; import type { RelatedObject } from './relatedObject'; import type { NotificationSource } from './notificationSource'; import type { NotificationType } from './notificationType'; /** * Describes event notification and action definition */ export type Notification = { action?: NotificationAction; metadata?: ObjectMeta; relatedObject?: RelatedObject; source?: NotificationSource; /** Describes type of notification. Possible values [NotificationPackUpdate, NotificationPackRegistryUpdate, NotificationNone] */ type?: NotificationType; }; //# sourceMappingURL=notification.d.ts.map