@squidcloud/backend
    Preparing search index...

    Interface QuotaLimitOptions

    Options for quota limiting.

    interface QuotaLimitOptions {
        renewPeriod?: QuotaRenewPeriod;
        scope?: LimiterScope;
        value: number;
    }
    Index

    Properties

    renewPeriod?: QuotaRenewPeriod

    Defines the period after which the quota resets.

    scope?: LimiterScope

    Specifies the scope of the quota limit, such as per user, IP, or global.

    value: number

    Total number of executions allowed, reset upon backend redeployment.