@squadbase/vite-server 0.1.6 → 0.1.7-dev.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli/index.js +238 -147
- package/dist/connectors/google-sheets.js +95 -138
- package/dist/connectors/influxdb.js +119 -29
- package/dist/connectors/sentry.js +1 -1
- package/dist/connectors/shopify.js +2 -0
- package/dist/index.js +238 -147
- package/dist/main.js +238 -147
- package/dist/vite-plugin.js +238 -147
- package/package.json +1 -1
|
@@ -47,7 +47,7 @@ var parameters = {
|
|
|
47
47
|
organizationSlug: new ParameterDefinition({
|
|
48
48
|
slug: "organization-slug",
|
|
49
49
|
name: "Sentry Organization Slug",
|
|
50
|
-
description: "The slug of your Sentry organization (e.g., 'my-org'). Found in your Sentry URL: https://sentry.io/
|
|
50
|
+
description: "The slug of your Sentry organization (e.g., 'my-org'). Found in your Sentry URL: https://{slug}.sentry.io/",
|
|
51
51
|
envVarBaseKey: "SENTRY_ORGANIZATION_SLUG",
|
|
52
52
|
type: "text",
|
|
53
53
|
secret: false,
|
|
@@ -82,6 +82,7 @@ async function fetchAccessToken(storeDomain, clientId, clientSecret) {
|
|
|
82
82
|
method: "POST",
|
|
83
83
|
headers: { "Content-Type": "application/json" },
|
|
84
84
|
body: JSON.stringify({
|
|
85
|
+
grant_type: "client_credentials",
|
|
85
86
|
client_id: clientId,
|
|
86
87
|
client_secret: clientSecret
|
|
87
88
|
})
|
|
@@ -495,6 +496,7 @@ Use this tool for all Shopify API interactions: listing products, orders, custom
|
|
|
495
496
|
method: "POST",
|
|
496
497
|
headers: { "Content-Type": "application/json" },
|
|
497
498
|
body: JSON.stringify({
|
|
499
|
+
grant_type: "client_credentials",
|
|
498
500
|
client_id: clientId,
|
|
499
501
|
client_secret: clientSecret
|
|
500
502
|
})
|