sim-setup 1.0.12-preview.110.1 → 1.0.12
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/index.js +7 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1558,6 +1558,7 @@ var init_env_capabilities = __esm(() => {
|
|
|
1558
1558
|
calcom: ["CALCOM_CLIENT_ID"],
|
|
1559
1559
|
airtable: ["AIRTABLE_CLIENT_ID", "AIRTABLE_CLIENT_SECRET"],
|
|
1560
1560
|
bitbucket: ["BITBUCKET_CLIENT_ID", "BITBUCKET_CLIENT_SECRET"],
|
|
1561
|
+
"github-repositories": ["GITHUB_APP_CLIENT_ID", "GITHUB_APP_CLIENT_SECRET"],
|
|
1561
1562
|
notion: ["NOTION_CLIENT_ID", "NOTION_CLIENT_SECRET"],
|
|
1562
1563
|
microsoft: ["MICROSOFT_CLIENT_ID", "MICROSOFT_CLIENT_SECRET"],
|
|
1563
1564
|
clickup: ["CLICKUP_CLIENT_ID", "CLICKUP_CLIENT_SECRET"],
|
|
@@ -23876,7 +23877,7 @@ var init_integrations = __esm(() => {
|
|
|
23876
23877
|
},
|
|
23877
23878
|
{
|
|
23878
23879
|
name: "List Channels",
|
|
23879
|
-
description: "List up to 10,000 accessible Slack
|
|
23880
|
+
description: "List up to 10,000 accessible public and private Slack channels across as many cursor pages as Slack supplies, capped at 200 provider pages."
|
|
23880
23881
|
},
|
|
23881
23882
|
{
|
|
23882
23883
|
name: "List Channel Members",
|
|
@@ -29067,6 +29068,7 @@ var init_integration_availability = __esm(() => {
|
|
|
29067
29068
|
credentialConfiguredOAuthServiceIds = new Set(CREDENTIAL_CONFIGURED_OAUTH_SERVICE_IDS);
|
|
29068
29069
|
deploymentGatedIntegrationTypes = new Set(integrations.filter((integration) => integration.authType === "oauth").map((integration) => integration.type.toLowerCase()));
|
|
29069
29070
|
integrationTypesByOAuthServiceId = new Map;
|
|
29071
|
+
integrationTypesByOAuthServiceId.set("github-repositories", ["github_v2"]);
|
|
29070
29072
|
previewServiceAccountProvidersByIntegrationType = new Map;
|
|
29071
29073
|
for (const integration of integrations) {
|
|
29072
29074
|
if (integration.authType !== "oauth" || !integration.oauthServiceId)
|
|
@@ -29945,6 +29947,10 @@ var init_capability_config = __esm(() => {
|
|
|
29945
29947
|
BITBUCKET_CLIENT_ID: { input: "text" },
|
|
29946
29948
|
BITBUCKET_CLIENT_SECRET: { input: "secret" }
|
|
29947
29949
|
},
|
|
29950
|
+
"github-repositories": {
|
|
29951
|
+
GITHUB_APP_CLIENT_ID: { input: "text" },
|
|
29952
|
+
GITHUB_APP_CLIENT_SECRET: { input: "secret" }
|
|
29953
|
+
},
|
|
29948
29954
|
notion: {
|
|
29949
29955
|
NOTION_CLIENT_ID: { input: "text" },
|
|
29950
29956
|
NOTION_CLIENT_SECRET: { input: "secret" }
|