@tak-ps/etl
    Preparing search index...

    Variable CapabilitiesConst

    Capabilities: TObject<
        {
            incoming: TOptional<
                TObject<
                    {
                        invocation: TArray<TEnum<typeof InvocationType>>;
                        invocationDefaults: TObject<
                            {
                                schedule: TOptional<TObject<{ cron: TString; enabled: TBoolean }>>;
                                webhook: TOptional<TObject<{ enabled: TBoolean }>>;
                            },
                        >;
                        schema: TObject<
                            {
                                input: TUnknown;
                                inputError: TOptional<TObject<{ message: TString; status: TNumber }>>;
                                output: TUnknown;
                                outputError: TOptional<
                                    TObject<{ message: TString; status: TNumber }>,
                                >;
                            },
                        >;
                    },
                >,
            >;
            name: TString;
            outgoing: TOptional<
                TObject<
                    {
                        schema: TObject<
                            {
                                input: TUnknown;
                                inputError: TOptional<TObject<{ message: TString; status: TNumber }>>;
                                output: TUnknown;
                                outputError: TOptional<
                                    TObject<{ message: TString; status: TNumber }>,
                                >;
                            },
                        >;
                    },
                >,
            >;
            version: TString;
        },
    > = ...

    The live Capabilities document returned by invoking a deployed task Lambda with a capabilities event. It reflects the runtime environment of the running image - the invocation modes and the input/output environment schemas the task currently exposes for each data flow

    Note this format intentionally differs from the static Capabilities document (the StaticCapabilities export of this package) which is authored alongside the task's source code as a capabilities.json and embedded in the OCI Image Manifest at build time, describing the task before it is ever deployed