|
| 1 | +// This file was auto-generated by Fern from our API Definition. |
| 2 | + |
| 3 | +import type * as IcePanel from "../../../index.js"; |
| 4 | + |
| 5 | +export interface OnModelConnectionPayloadAfter { |
| 6 | + id: string; |
| 7 | + landscapeId?: string | undefined; |
| 8 | + versionId?: string | undefined; |
| 9 | +} |
| 10 | + |
| 11 | +export interface OnModelConnectionPayloadBefore { |
| 12 | + id: string; |
| 13 | + landscapeId?: string | undefined; |
| 14 | + versionId?: string | undefined; |
| 15 | +} |
| 16 | + |
| 17 | +export const OnModelConnectionPayloadCollection = { |
| 18 | + ModelConnection: "model-connection", |
| 19 | +} as const; |
| 20 | +export type OnModelConnectionPayloadCollection = |
| 21 | + (typeof OnModelConnectionPayloadCollection)[keyof typeof OnModelConnectionPayloadCollection]; |
| 22 | + |
| 23 | +export const OnModelConnectionPayloadOperation = { |
| 24 | + Created: "created", |
| 25 | + Updated: "updated", |
| 26 | + Deleted: "deleted", |
| 27 | +} as const; |
| 28 | +export type OnModelConnectionPayloadOperation = |
| 29 | + (typeof OnModelConnectionPayloadOperation)[keyof typeof OnModelConnectionPayloadOperation]; |
| 30 | + |
| 31 | +export interface OnModelConnectionPayload { |
| 32 | + after?: IcePanel.OnModelConnectionPayloadAfter | undefined; |
| 33 | + before?: IcePanel.OnModelConnectionPayloadBefore | undefined; |
| 34 | + collection: IcePanel.OnModelConnectionPayloadCollection; |
| 35 | + operation: IcePanel.OnModelConnectionPayloadOperation; |
| 36 | + organizationId: string; |
| 37 | + resourceId: string; |
| 38 | + subscriptionId: string; |
| 39 | +} |
| 40 | + |
| 41 | +export interface OnModelObjectPayloadAfter { |
| 42 | + id: string; |
| 43 | + landscapeId?: string | undefined; |
| 44 | + versionId?: string | undefined; |
| 45 | +} |
| 46 | + |
| 47 | +export interface OnModelObjectPayloadBefore { |
| 48 | + id: string; |
| 49 | + landscapeId?: string | undefined; |
| 50 | + versionId?: string | undefined; |
| 51 | +} |
| 52 | + |
| 53 | +export const OnModelObjectPayloadCollection = { |
| 54 | + ModelObject: "model-object", |
| 55 | +} as const; |
| 56 | +export type OnModelObjectPayloadCollection = |
| 57 | + (typeof OnModelObjectPayloadCollection)[keyof typeof OnModelObjectPayloadCollection]; |
| 58 | + |
| 59 | +export const OnModelObjectPayloadOperation = { |
| 60 | + Created: "created", |
| 61 | + Updated: "updated", |
| 62 | + Deleted: "deleted", |
| 63 | +} as const; |
| 64 | +export type OnModelObjectPayloadOperation = |
| 65 | + (typeof OnModelObjectPayloadOperation)[keyof typeof OnModelObjectPayloadOperation]; |
| 66 | + |
| 67 | +export interface OnModelObjectPayload { |
| 68 | + after?: IcePanel.OnModelObjectPayloadAfter | undefined; |
| 69 | + before?: IcePanel.OnModelObjectPayloadBefore | undefined; |
| 70 | + collection: IcePanel.OnModelObjectPayloadCollection; |
| 71 | + operation: IcePanel.OnModelObjectPayloadOperation; |
| 72 | + organizationId: string; |
| 73 | + resourceId: string; |
| 74 | + subscriptionId: string; |
| 75 | +} |
0 commit comments