Skip to content
Compare
Choose a tag to compare
@shopify-github-actions-access shopify-github-actions-access released this 06 Sep 11:10
· 800 commits to main since this release
c759786

Minor Changes

  • 4a1ffad: Adds API to create usage records for billing

    A new billing helper function has been added to create usage records for a usage billing plan.

    const chargeBilling = await billing.createUsageRecord({
      description: 'Usage record for product creation',
      price: {
        amount: 1,
        currencyCode: 'USD',
      },
      isTest: true,
    });
    console.log(chargeBilling);

    Learn more about App Billing.

Patch Changes