export interface ImportManifestResponse { /** Whether the import completed successfully. */ success?: boolean | undefined; /** Assets that were created during import. */ created?: ImportManifestResponse.Created.Item[] | undefined; /** Assets that were updated during import. */ updated?: ImportManifestResponse.Updated.Item[] | undefined; /** Assets that were skipped during import. */ skipped?: ImportManifestResponse.Skipped.Item[] | undefined; /** Any errors encountered during import. */ errors?: ImportManifestResponse.Errors.Item[] | undefined; /** Non-fatal warnings from import validation. */ warnings?: string[] | undefined; /** IDs of any organizational folders created during import. */ organization_created?: (ImportManifestResponse.OrganizationCreated | null) | undefined; } export declare namespace ImportManifestResponse { type Created = Created.Item[]; namespace Created { interface Item { /** Asset type (context, value, rule, flow, relationship). */ type?: string | undefined; /** Stable ID of asset. */ stable_id?: string | undefined; /** Database ID of asset. */ db_id?: string | undefined; /** Import status. */ status?: string | undefined; } } type Updated = Updated.Item[]; namespace Updated { interface Item { type?: string | undefined; stable_id?: string | undefined; db_id?: string | undefined; status?: string | undefined; } } type Skipped = Skipped.Item[]; namespace Skipped { interface Item { type?: string | undefined; stable_id?: string | undefined; status?: string | undefined; reason?: string | undefined; } } type Errors = Errors.Item[]; namespace Errors { interface Item { type?: string | undefined; stable_id?: string | undefined; status?: string | undefined; reason?: string | undefined; } } /** * IDs of any organizational folders created during import. */ interface OrganizationCreated { entity_set_id?: (string | null) | undefined; rule_tag_id?: (string | null) | undefined; flow_tag_id?: (string | null) | undefined; } }