UNPKG

@leancodepl/kratos

Version:

Headless React components library for building Ory Kratos authentication flows

38 lines 1.58 kB
import { Project } from './Project'; import { Warning } from './Warning'; /** * * @export * @interface SuccessfulProjectUpdate */ export interface SuccessfulProjectUpdate { /** * * @type {Project} * @memberof SuccessfulProjectUpdate */ project: Project; /** * Import Warnings * * Not all configuration items can be imported to the Ory Network. For example, * setting the port does not make sense because the Ory Network provides the runtime * and networking. * * This field contains warnings where configuration keys were found but can not * be imported. These keys will be ignored by the Ory Network. This field will help * you understand why certain configuration keys might not be respected! * @type {Array<Warning>} * @memberof SuccessfulProjectUpdate */ warnings: Array<Warning>; } /** * Check if a given object implements the SuccessfulProjectUpdate interface. */ export declare function instanceOfSuccessfulProjectUpdate(value: object): value is SuccessfulProjectUpdate; export declare function SuccessfulProjectUpdateFromJSON(json: any): SuccessfulProjectUpdate; export declare function SuccessfulProjectUpdateFromJSONTyped(json: any, ignoreDiscriminator: boolean): SuccessfulProjectUpdate; export declare function SuccessfulProjectUpdateToJSON(json: any): SuccessfulProjectUpdate; export declare function SuccessfulProjectUpdateToJSONTyped(value?: SuccessfulProjectUpdate | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=SuccessfulProjectUpdate.d.ts.map