├── .gitignore ├── README.md ├── billing_vendors └── vendors.json ├── components ├── CustomLink.js ├── DropDown.js └── Layout.js ├── package.json ├── pages ├── _app.js ├── api │ └── staticdata.js └── index.js ├── public ├── appsmith.svg ├── favicon.ico └── favicon.png ├── styles └── globals.scss ├── utils └── mdxUtils.js ├── vendors ├── 100ms.mdx ├── agora.mdx ├── appsmith.mdx ├── bigquery.mdx ├── confluent.mdx ├── courier.mdx ├── cypress.mdx ├── databricks.mdx ├── datadog.mdx ├── dub.mdx ├── hubspot.mdx ├── lambda.mdx ├── make.mdx ├── mixpanel.mdx ├── newrelic.mdx ├── openai.mdx ├── posthog.mdx ├── redshift.mdx ├── segment.mdx ├── sendgrid.mdx ├── snowflake.mdx ├── splunk.mdx ├── stellate.mdx ├── twilio-flex.mdx ├── twiliomessaging.mdx ├── twiliovideo.mdx └── zapier.mdx └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsmithorg/usage-based-pricing/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsmithorg/usage-based-pricing/HEAD/README.md -------------------------------------------------------------------------------- /billing_vendors/vendors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsmithorg/usage-based-pricing/HEAD/billing_vendors/vendors.json -------------------------------------------------------------------------------- /components/CustomLink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsmithorg/usage-based-pricing/HEAD/components/CustomLink.js -------------------------------------------------------------------------------- /components/DropDown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsmithorg/usage-based-pricing/HEAD/components/DropDown.js -------------------------------------------------------------------------------- /components/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsmithorg/usage-based-pricing/HEAD/components/Layout.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsmithorg/usage-based-pricing/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsmithorg/usage-based-pricing/HEAD/pages/_app.js -------------------------------------------------------------------------------- /pages/api/staticdata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsmithorg/usage-based-pricing/HEAD/pages/api/staticdata.js -------------------------------------------------------------------------------- /pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsmithorg/usage-based-pricing/HEAD/pages/index.js -------------------------------------------------------------------------------- /public/appsmith.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsmithorg/usage-based-pricing/HEAD/public/appsmith.svg -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsmithorg/usage-based-pricing/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsmithorg/usage-based-pricing/HEAD/public/favicon.png -------------------------------------------------------------------------------- /styles/globals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsmithorg/usage-based-pricing/HEAD/styles/globals.scss -------------------------------------------------------------------------------- /utils/mdxUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsmithorg/usage-based-pricing/HEAD/utils/mdxUtils.js -------------------------------------------------------------------------------- /vendors/100ms.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsmithorg/usage-based-pricing/HEAD/vendors/100ms.mdx -------------------------------------------------------------------------------- /vendors/agora.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsmithorg/usage-based-pricing/HEAD/vendors/agora.mdx -------------------------------------------------------------------------------- /vendors/appsmith.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsmithorg/usage-based-pricing/HEAD/vendors/appsmith.mdx -------------------------------------------------------------------------------- /vendors/bigquery.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsmithorg/usage-based-pricing/HEAD/vendors/bigquery.mdx -------------------------------------------------------------------------------- /vendors/confluent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsmithorg/usage-based-pricing/HEAD/vendors/confluent.mdx -------------------------------------------------------------------------------- /vendors/courier.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsmithorg/usage-based-pricing/HEAD/vendors/courier.mdx -------------------------------------------------------------------------------- /vendors/cypress.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsmithorg/usage-based-pricing/HEAD/vendors/cypress.mdx -------------------------------------------------------------------------------- /vendors/databricks.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsmithorg/usage-based-pricing/HEAD/vendors/databricks.mdx -------------------------------------------------------------------------------- /vendors/datadog.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsmithorg/usage-based-pricing/HEAD/vendors/datadog.mdx -------------------------------------------------------------------------------- /vendors/dub.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsmithorg/usage-based-pricing/HEAD/vendors/dub.mdx -------------------------------------------------------------------------------- /vendors/hubspot.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsmithorg/usage-based-pricing/HEAD/vendors/hubspot.mdx -------------------------------------------------------------------------------- /vendors/lambda.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsmithorg/usage-based-pricing/HEAD/vendors/lambda.mdx -------------------------------------------------------------------------------- /vendors/make.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsmithorg/usage-based-pricing/HEAD/vendors/make.mdx -------------------------------------------------------------------------------- /vendors/mixpanel.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsmithorg/usage-based-pricing/HEAD/vendors/mixpanel.mdx -------------------------------------------------------------------------------- /vendors/newrelic.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsmithorg/usage-based-pricing/HEAD/vendors/newrelic.mdx -------------------------------------------------------------------------------- /vendors/openai.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsmithorg/usage-based-pricing/HEAD/vendors/openai.mdx -------------------------------------------------------------------------------- /vendors/posthog.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsmithorg/usage-based-pricing/HEAD/vendors/posthog.mdx -------------------------------------------------------------------------------- /vendors/redshift.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsmithorg/usage-based-pricing/HEAD/vendors/redshift.mdx -------------------------------------------------------------------------------- /vendors/segment.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsmithorg/usage-based-pricing/HEAD/vendors/segment.mdx -------------------------------------------------------------------------------- /vendors/sendgrid.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsmithorg/usage-based-pricing/HEAD/vendors/sendgrid.mdx -------------------------------------------------------------------------------- /vendors/snowflake.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsmithorg/usage-based-pricing/HEAD/vendors/snowflake.mdx -------------------------------------------------------------------------------- /vendors/splunk.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsmithorg/usage-based-pricing/HEAD/vendors/splunk.mdx -------------------------------------------------------------------------------- /vendors/stellate.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsmithorg/usage-based-pricing/HEAD/vendors/stellate.mdx -------------------------------------------------------------------------------- /vendors/twilio-flex.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsmithorg/usage-based-pricing/HEAD/vendors/twilio-flex.mdx -------------------------------------------------------------------------------- /vendors/twiliomessaging.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsmithorg/usage-based-pricing/HEAD/vendors/twiliomessaging.mdx -------------------------------------------------------------------------------- /vendors/twiliovideo.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsmithorg/usage-based-pricing/HEAD/vendors/twiliovideo.mdx -------------------------------------------------------------------------------- /vendors/zapier.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsmithorg/usage-based-pricing/HEAD/vendors/zapier.mdx -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsmithorg/usage-based-pricing/HEAD/yarn.lock --------------------------------------------------------------------------------