@automate.ax/catalog 0.147.1 → 0.150.0
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/catalog.d.ts +124 -0
- package/dist/catalog.js +72 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/triggers/index.d.ts +624 -0
- package/dist/triggers/index.js +2 -0
- package/dist/triggers/kit.d.ts +314 -0
- package/dist/triggers/kit.js +41 -0
- package/package.json +7 -1
- package/src/catalog.ts +77 -0
- package/src/index.ts +2 -0
- package/src/triggers/index.ts +2 -0
- package/src/triggers/kit.ts +49 -0
package/dist/catalog.d.ts
CHANGED
|
@@ -684,6 +684,46 @@ export declare const linearService: {
|
|
|
684
684
|
readonly name: "Linear";
|
|
685
685
|
readonly preferredConnectionMethodId: "oauth";
|
|
686
686
|
};
|
|
687
|
+
export declare const krispService: {
|
|
688
|
+
readonly connectionMethods: readonly [{
|
|
689
|
+
readonly credentialUrl: "https://app.krisp.ai/user-settings/api";
|
|
690
|
+
readonly fields: readonly [{
|
|
691
|
+
readonly input: "password";
|
|
692
|
+
readonly label: "Personal API key";
|
|
693
|
+
readonly name: "apiKey";
|
|
694
|
+
readonly placeholder: "krsp_u_...";
|
|
695
|
+
readonly required: true;
|
|
696
|
+
}, {
|
|
697
|
+
readonly default: true;
|
|
698
|
+
readonly description: "Use meeting, action-item, tag, profile, and import-status actions.";
|
|
699
|
+
readonly input: "boolean";
|
|
700
|
+
readonly label: "Read access";
|
|
701
|
+
readonly name: "readAccess";
|
|
702
|
+
readonly required: false;
|
|
703
|
+
}, {
|
|
704
|
+
readonly default: false;
|
|
705
|
+
readonly description: "Upload recordings for Krisp to process.";
|
|
706
|
+
readonly input: "boolean";
|
|
707
|
+
readonly label: "Write access";
|
|
708
|
+
readonly name: "writeAccess";
|
|
709
|
+
readonly required: false;
|
|
710
|
+
}];
|
|
711
|
+
readonly id: "api-key";
|
|
712
|
+
readonly name: "Personal API key";
|
|
713
|
+
readonly type: "form";
|
|
714
|
+
}];
|
|
715
|
+
readonly connectionNotice: {
|
|
716
|
+
readonly action: {
|
|
717
|
+
readonly href: "https://meeting-api-docs.krisp.ai/";
|
|
718
|
+
readonly label: "View Krisp API requirements";
|
|
719
|
+
};
|
|
720
|
+
readonly description: "Krisp Meeting Assistant API access requires a Core, Advanced, or Trial plan. Create a personal key with the access selected below.";
|
|
721
|
+
readonly title: "Krisp plan and key required";
|
|
722
|
+
};
|
|
723
|
+
readonly description: "Connect Krisp Meeting Assistant for meetings, transcripts, notes, action items, tags, and recording imports.";
|
|
724
|
+
readonly id: "krisp";
|
|
725
|
+
readonly name: "Krisp";
|
|
726
|
+
};
|
|
687
727
|
export declare const jobNimbusService: {
|
|
688
728
|
readonly id: "jobnimbus";
|
|
689
729
|
readonly name: string;
|
|
@@ -1042,6 +1082,29 @@ export declare const calcomService: {
|
|
|
1042
1082
|
readonly id: "calcom";
|
|
1043
1083
|
readonly name: "Cal.com";
|
|
1044
1084
|
};
|
|
1085
|
+
export declare const kitService: {
|
|
1086
|
+
readonly connectionMethods: readonly [{
|
|
1087
|
+
readonly id: "oauth";
|
|
1088
|
+
readonly name: "OAuth";
|
|
1089
|
+
readonly type: "redirect";
|
|
1090
|
+
}, {
|
|
1091
|
+
readonly credentialUrl: "https://app.kit.com/account_settings/developer_settings";
|
|
1092
|
+
readonly fields: readonly [{
|
|
1093
|
+
readonly input: "password";
|
|
1094
|
+
readonly label: "V4 API key";
|
|
1095
|
+
readonly name: "apiKey";
|
|
1096
|
+
readonly placeholder: "kit_...";
|
|
1097
|
+
readonly required: true;
|
|
1098
|
+
}];
|
|
1099
|
+
readonly id: "api-key";
|
|
1100
|
+
readonly name: "V4 API key";
|
|
1101
|
+
readonly type: "form";
|
|
1102
|
+
}];
|
|
1103
|
+
readonly description: "Connect Kit with OAuth or a V4 API key.";
|
|
1104
|
+
readonly id: "kit";
|
|
1105
|
+
readonly name: "Kit";
|
|
1106
|
+
readonly preferredConnectionMethodId: "oauth";
|
|
1107
|
+
};
|
|
1045
1108
|
export declare const togetheraiService: {
|
|
1046
1109
|
readonly id: "togetherai";
|
|
1047
1110
|
readonly name: string;
|
|
@@ -1840,6 +1903,67 @@ export declare const integrationCatalog: readonly [{
|
|
|
1840
1903
|
readonly type: "form";
|
|
1841
1904
|
readonly credentialUrl?: string | undefined;
|
|
1842
1905
|
}];
|
|
1906
|
+
}, {
|
|
1907
|
+
readonly connectionMethods: readonly [{
|
|
1908
|
+
readonly id: "oauth";
|
|
1909
|
+
readonly name: "OAuth";
|
|
1910
|
+
readonly type: "redirect";
|
|
1911
|
+
}, {
|
|
1912
|
+
readonly credentialUrl: "https://app.kit.com/account_settings/developer_settings";
|
|
1913
|
+
readonly fields: readonly [{
|
|
1914
|
+
readonly input: "password";
|
|
1915
|
+
readonly label: "V4 API key";
|
|
1916
|
+
readonly name: "apiKey";
|
|
1917
|
+
readonly placeholder: "kit_...";
|
|
1918
|
+
readonly required: true;
|
|
1919
|
+
}];
|
|
1920
|
+
readonly id: "api-key";
|
|
1921
|
+
readonly name: "V4 API key";
|
|
1922
|
+
readonly type: "form";
|
|
1923
|
+
}];
|
|
1924
|
+
readonly description: "Connect Kit with OAuth or a V4 API key.";
|
|
1925
|
+
readonly id: "kit";
|
|
1926
|
+
readonly name: "Kit";
|
|
1927
|
+
readonly preferredConnectionMethodId: "oauth";
|
|
1928
|
+
}, {
|
|
1929
|
+
readonly connectionMethods: readonly [{
|
|
1930
|
+
readonly credentialUrl: "https://app.krisp.ai/user-settings/api";
|
|
1931
|
+
readonly fields: readonly [{
|
|
1932
|
+
readonly input: "password";
|
|
1933
|
+
readonly label: "Personal API key";
|
|
1934
|
+
readonly name: "apiKey";
|
|
1935
|
+
readonly placeholder: "krsp_u_...";
|
|
1936
|
+
readonly required: true;
|
|
1937
|
+
}, {
|
|
1938
|
+
readonly default: true;
|
|
1939
|
+
readonly description: "Use meeting, action-item, tag, profile, and import-status actions.";
|
|
1940
|
+
readonly input: "boolean";
|
|
1941
|
+
readonly label: "Read access";
|
|
1942
|
+
readonly name: "readAccess";
|
|
1943
|
+
readonly required: false;
|
|
1944
|
+
}, {
|
|
1945
|
+
readonly default: false;
|
|
1946
|
+
readonly description: "Upload recordings for Krisp to process.";
|
|
1947
|
+
readonly input: "boolean";
|
|
1948
|
+
readonly label: "Write access";
|
|
1949
|
+
readonly name: "writeAccess";
|
|
1950
|
+
readonly required: false;
|
|
1951
|
+
}];
|
|
1952
|
+
readonly id: "api-key";
|
|
1953
|
+
readonly name: "Personal API key";
|
|
1954
|
+
readonly type: "form";
|
|
1955
|
+
}];
|
|
1956
|
+
readonly connectionNotice: {
|
|
1957
|
+
readonly action: {
|
|
1958
|
+
readonly href: "https://meeting-api-docs.krisp.ai/";
|
|
1959
|
+
readonly label: "View Krisp API requirements";
|
|
1960
|
+
};
|
|
1961
|
+
readonly description: "Krisp Meeting Assistant API access requires a Core, Advanced, or Trial plan. Create a personal key with the access selected below.";
|
|
1962
|
+
readonly title: "Krisp plan and key required";
|
|
1963
|
+
};
|
|
1964
|
+
readonly description: "Connect Krisp Meeting Assistant for meetings, transcripts, notes, action items, tags, and recording imports.";
|
|
1965
|
+
readonly id: "krisp";
|
|
1966
|
+
readonly name: "Krisp";
|
|
1843
1967
|
}, {
|
|
1844
1968
|
readonly connectionMethods: readonly [{
|
|
1845
1969
|
readonly id: "oauth";
|
package/dist/catalog.js
CHANGED
|
@@ -524,6 +524,52 @@ export const linearService = defineIntegrationService({
|
|
|
524
524
|
name: "Linear",
|
|
525
525
|
preferredConnectionMethodId: "oauth",
|
|
526
526
|
});
|
|
527
|
+
export const krispService = defineIntegrationService({
|
|
528
|
+
connectionMethods: [
|
|
529
|
+
{
|
|
530
|
+
credentialUrl: "https://app.krisp.ai/user-settings/api",
|
|
531
|
+
fields: [
|
|
532
|
+
{
|
|
533
|
+
input: "password",
|
|
534
|
+
label: "Personal API key",
|
|
535
|
+
name: "apiKey",
|
|
536
|
+
placeholder: "krsp_u_...",
|
|
537
|
+
required: true,
|
|
538
|
+
},
|
|
539
|
+
{
|
|
540
|
+
default: true,
|
|
541
|
+
description: "Use meeting, action-item, tag, profile, and import-status actions.",
|
|
542
|
+
input: "boolean",
|
|
543
|
+
label: "Read access",
|
|
544
|
+
name: "readAccess",
|
|
545
|
+
required: false,
|
|
546
|
+
},
|
|
547
|
+
{
|
|
548
|
+
default: false,
|
|
549
|
+
description: "Upload recordings for Krisp to process.",
|
|
550
|
+
input: "boolean",
|
|
551
|
+
label: "Write access",
|
|
552
|
+
name: "writeAccess",
|
|
553
|
+
required: false,
|
|
554
|
+
},
|
|
555
|
+
],
|
|
556
|
+
id: "api-key",
|
|
557
|
+
name: "Personal API key",
|
|
558
|
+
type: "form",
|
|
559
|
+
},
|
|
560
|
+
],
|
|
561
|
+
connectionNotice: {
|
|
562
|
+
action: {
|
|
563
|
+
href: "https://meeting-api-docs.krisp.ai/",
|
|
564
|
+
label: "View Krisp API requirements",
|
|
565
|
+
},
|
|
566
|
+
description: "Krisp Meeting Assistant API access requires a Core, Advanced, or Trial plan. Create a personal key with the access selected below.",
|
|
567
|
+
title: "Krisp plan and key required",
|
|
568
|
+
},
|
|
569
|
+
description: "Connect Krisp Meeting Assistant for meetings, transcripts, notes, action items, tags, and recording imports.",
|
|
570
|
+
id: "krisp",
|
|
571
|
+
name: "Krisp",
|
|
572
|
+
});
|
|
527
573
|
export const jobNimbusService = defineApiKeyService({
|
|
528
574
|
credentialUrl: "https://app.jobnimbus.com/account#api",
|
|
529
575
|
description: "Connect a JobNimbus account with an API key.",
|
|
@@ -780,6 +826,30 @@ export const calcomService = defineIntegrationService({
|
|
|
780
826
|
id: "calcom",
|
|
781
827
|
name: "Cal.com",
|
|
782
828
|
});
|
|
829
|
+
export const kitService = defineIntegrationService({
|
|
830
|
+
connectionMethods: [
|
|
831
|
+
{ id: "oauth", name: "OAuth", type: "redirect" },
|
|
832
|
+
{
|
|
833
|
+
credentialUrl: "https://app.kit.com/account_settings/developer_settings",
|
|
834
|
+
fields: [
|
|
835
|
+
{
|
|
836
|
+
input: "password",
|
|
837
|
+
label: "V4 API key",
|
|
838
|
+
name: "apiKey",
|
|
839
|
+
placeholder: "kit_...",
|
|
840
|
+
required: true,
|
|
841
|
+
},
|
|
842
|
+
],
|
|
843
|
+
id: "api-key",
|
|
844
|
+
name: "V4 API key",
|
|
845
|
+
type: "form",
|
|
846
|
+
},
|
|
847
|
+
],
|
|
848
|
+
description: "Connect Kit with OAuth or a V4 API key.",
|
|
849
|
+
id: "kit",
|
|
850
|
+
name: "Kit",
|
|
851
|
+
preferredConnectionMethodId: "oauth",
|
|
852
|
+
});
|
|
783
853
|
export const togetheraiService = defineApiKeyService({
|
|
784
854
|
description: "Connect a Together AI API key.",
|
|
785
855
|
id: "togetherai",
|
|
@@ -882,6 +952,8 @@ export const integrationCatalog = defineIntegrationCatalog([
|
|
|
882
952
|
hubspotService,
|
|
883
953
|
highLevelService,
|
|
884
954
|
jobNimbusService,
|
|
955
|
+
kitService,
|
|
956
|
+
krispService,
|
|
885
957
|
linearService,
|
|
886
958
|
microsoftService,
|
|
887
959
|
millionverifierService,
|
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { airtableService, anthropicService, apolloService, apifyService, asanaService, calendlyService, automateService, axiomService, brevoService, calcomService, browserbaseService, cerebrasService, chatgptService, cloudflareService, metaAdsService, closeService, closeBotService, clickUpService, codexService, cohereService, convexService, discordService, deepinfraService, deepseekService, firecrawlService, fireworksService, getIntegrationService, githubService, googleGenaiService, googleService, groqService, huggingfaceService, hubspotService, highLevelService, integrationCatalog, jobNimbusService, linearService, microsoftService, millionverifierService, mistralService, notionService, openaiService, onePasswordService, openrouterService, perplexityService, postgresService, redditService, resendService, scrapflyService, slackService, stripeService, tallyService, tidycalService, togetheraiService, trelloService, vercelAiGatewayService, vercelService, webflowService, whatsappService, xaiService, type IntegrationServiceId, } from "./catalog.js";
|
|
1
|
+
export { airtableService, anthropicService, apolloService, apifyService, asanaService, calendlyService, automateService, axiomService, brevoService, calcomService, browserbaseService, cerebrasService, chatgptService, cloudflareService, metaAdsService, closeService, closeBotService, clickUpService, codexService, cohereService, convexService, discordService, deepinfraService, deepseekService, firecrawlService, fireworksService, getIntegrationService, githubService, googleGenaiService, googleService, groqService, huggingfaceService, hubspotService, highLevelService, integrationCatalog, jobNimbusService, kitService, krispService, linearService, microsoftService, millionverifierService, mistralService, notionService, openaiService, onePasswordService, openrouterService, perplexityService, postgresService, redditService, resendService, scrapflyService, slackService, stripeService, tallyService, tidycalService, togetheraiService, trelloService, vercelAiGatewayService, vercelService, webflowService, whatsappService, xaiService, type IntegrationServiceId, } from "./catalog.js";
|
|
2
2
|
export { defineIntegrationCatalog, defineIntegrationService, integrationScope, type IntegrationAccountConnectionOption, type IntegrationAccountRequirement, type IntegrationConnectionDefinition, type IntegrationConnectionNotice, type IntegrationFormField, type IntegrationScopeRequirement, type IntegrationServiceDefinition, type ScopeRequirementGroup, type TriggerAccountRequirement, type TriggerDefinition, type TriggerPresentation, type TriggerPresentationContext, type TriggerPresentationDetail, type TriggerScopePresentation, type TriggerPresentationValue, } from "./types.js";
|
|
3
3
|
export { getDashboardRunEndpoint, getDashboardRunEndpointKey, getHttpTriggerEndpoint, getHttpTriggerEndpointKey, getMailhookAddress, getMailhookAddressKey, DASHBOARD_RUN_CONFIG_SCHEMA, DASHBOARD_RUN_FIELDS_SCHEMA, getDashboardRunFieldDefaultValue, isDashboardRunFieldValueValid, getTriggerDefinition, getTriggerName, getTriggerPresentation, isTriggerVisible, PLATFORM_EMAIL_DOMAIN, triggerCatalog, triggerDefinitions, type DashboardRunConfig, type DashboardRunEndpointOptions, type DashboardRunField, type DashboardRunFieldValue, type HttpTriggerEndpointOptions, type HttpTriggerScope, type MailhookAddressOptions, type MailhookScope, type TriggerType, } from "./triggers/index.js";
|
package/dist/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { airtableService, anthropicService, apolloService, apifyService, asanaService, calendlyService, automateService, axiomService, brevoService, calcomService, browserbaseService, cerebrasService, chatgptService, cloudflareService, metaAdsService, closeService, closeBotService, clickUpService, codexService, cohereService, convexService, discordService, deepinfraService, deepseekService, firecrawlService, fireworksService, getIntegrationService, githubService, googleGenaiService, googleService, groqService, huggingfaceService, hubspotService, highLevelService, integrationCatalog, jobNimbusService, linearService, microsoftService, millionverifierService, mistralService, notionService, openaiService, onePasswordService, openrouterService, perplexityService, postgresService, redditService, resendService, scrapflyService, slackService, stripeService, tallyService, tidycalService, togetheraiService, trelloService, vercelAiGatewayService, vercelService, webflowService, whatsappService, xaiService, } from "./catalog.js";
|
|
1
|
+
export { airtableService, anthropicService, apolloService, apifyService, asanaService, calendlyService, automateService, axiomService, brevoService, calcomService, browserbaseService, cerebrasService, chatgptService, cloudflareService, metaAdsService, closeService, closeBotService, clickUpService, codexService, cohereService, convexService, discordService, deepinfraService, deepseekService, firecrawlService, fireworksService, getIntegrationService, githubService, googleGenaiService, googleService, groqService, huggingfaceService, hubspotService, highLevelService, integrationCatalog, jobNimbusService, kitService, krispService, linearService, microsoftService, millionverifierService, mistralService, notionService, openaiService, onePasswordService, openrouterService, perplexityService, postgresService, redditService, resendService, scrapflyService, slackService, stripeService, tallyService, tidycalService, togetheraiService, trelloService, vercelAiGatewayService, vercelService, webflowService, whatsappService, xaiService, } from "./catalog.js";
|
|
2
2
|
export { defineIntegrationCatalog, defineIntegrationService, integrationScope, } from "./types.js";
|
|
3
3
|
export { getDashboardRunEndpoint, getDashboardRunEndpointKey, getHttpTriggerEndpoint, getHttpTriggerEndpointKey, getMailhookAddress, getMailhookAddressKey, DASHBOARD_RUN_CONFIG_SCHEMA, DASHBOARD_RUN_FIELDS_SCHEMA, getDashboardRunFieldDefaultValue, isDashboardRunFieldValueValid, getTriggerDefinition, getTriggerName, getTriggerPresentation, isTriggerVisible, PLATFORM_EMAIL_DOMAIN, triggerCatalog, triggerDefinitions, } from "./triggers/index.js";
|