FlowSummarySchema: Struct<
    {
        corsFlags: Array$<
            Struct<
                {
                    allowCredentials: optional<typeof String$>;
                    allowOrigin: optional<typeof String$>;
                    method: typeof String$;
                    preflightStatus: optional<typeof Number$>;
                    reason: Union<
                        [
                            Literal<["status-zero"]>,
                            Literal<["missing-allow-origin"]>,
                            Literal<["credentials-mismatch"]>,
                            Literal<["wildcard-with-credentials"]>,
                            Literal<["preflight-failed"]>,
                        ],
                    >;
                    url: typeof String$;
                },
            >,
        >;
        duration: typeof Number$;
        errorCount: typeof Number$;
        nodeCount: typeof Number$;
        sdkConnected: typeof Boolean$;
    },
> = ...