Create API Key

Create API Key

import { createApiKey } from "usage-api";
 
const res = createApiKey(process.env.USAGE_API_KEY, {
    usageStoreId: "my-usage-store-id", // required
    keyName: "my-api-key-name", // required
    onNoUsageStore: { // optional, default block
        type: "create"
        blockAfterTimestamp: number // timestamp in seconds since epoch
    } | {
        type: "block"
    }
});
 
type res = {
    success: true,
    apiKey: string, // API key to provide to user
    apiKeyId: string
} | {
    success: false,
    message: string
}