@elyx-code/project-logic-tree 0.0.6494 → 0.0.6495
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.d.ts +1214 -62
- package/dist/index.js +26721 -24989
- package/dist/index.umd.cjs +196 -196
- package/package.json +3 -2
package/dist/index.d.ts
CHANGED
|
@@ -237,6 +237,26 @@ declare enum AggregationStatementType {
|
|
|
237
237
|
|
|
238
238
|
export declare const AI_VALUE_CONNECTION_GENERATION_ACTION_EXPLANATION = "To establish a connection of a reader and writter value during the generation process you can use the 'connect_values' generation action, like so:\n```json\n{\n\t\"connect_values\": {\n\t\t\"writerEntityId\": \"writer-entity-id\"; // Id of the entity that will give the value\n \"readerEntityId\": \"reader-entity-id\"; // Id of the entity that will receive the value\n\t}\n}\n```\nYou can use the 'disconnect_values' generation action to remove the connection between two value holding entities in the same way.";
|
|
239
239
|
|
|
240
|
+
export declare const airtableAuthExternalConnectionBuiltInBaseEntity: IBuiltInBaseEntityTransfer;
|
|
241
|
+
|
|
242
|
+
export declare const airtableAuthExternalConnectionBuiltInBaseEntityConnectionIdProperty: IPropertyTransfer;
|
|
243
|
+
|
|
244
|
+
export declare const airtableAuthExternalConnectionBuiltInBaseEntityConnectionIdPropertyDataType: IDataTypeTransfer;
|
|
245
|
+
|
|
246
|
+
export declare const airtableAuthExternalConnectionBuiltInBaseEntityConnectionIdPropertyDataTypeParentRef: IPropertyReference;
|
|
247
|
+
|
|
248
|
+
export declare const airtableAuthExternalConnectionBuiltInBaseEntityConnectionIdPropertyParentRef: IBuiltInBaseEntityReference;
|
|
249
|
+
|
|
250
|
+
export declare const airtableAuthExternalConnectionBuiltInBaseEntityIntegrationProperty: IPropertyTransfer;
|
|
251
|
+
|
|
252
|
+
export declare const airtableAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyDataTypeRef: IDataTypeReference;
|
|
253
|
+
|
|
254
|
+
export declare const airtableAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyParentRef: IBuiltInBaseEntityReference;
|
|
255
|
+
|
|
256
|
+
export declare const airtableAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyRef: IPropertyReference;
|
|
257
|
+
|
|
258
|
+
export declare const ALL_BUILT_EXTERNAL_AUTH_PROVIDERS: IBuiltInBaseEntityTransfer[];
|
|
259
|
+
|
|
240
260
|
export declare const ALL_BUILT_IN_BASE_ENTITIES: IBuiltInBaseEntityTransfer[];
|
|
241
261
|
|
|
242
262
|
export declare const ALL_BUILT_IN_CONDITION_ENTITIES: IActionDescriptorTransfer[];
|
|
@@ -515,6 +535,24 @@ export declare function assembleAndAddLiteralValueFromDataType(dataType: DataTyp
|
|
|
515
535
|
|
|
516
536
|
export declare function assembleStandaloneLiteralValueFromDataType(dataType: DataTypeState | null, valueOwner: EntityWithValueState | ValueDescriptorState | PropertyState, project: ProjectState): LiteralValueState | null;
|
|
517
537
|
|
|
538
|
+
export declare const atlassianAuthExternalConnectionBuiltInBaseEntity: IBuiltInBaseEntityTransfer;
|
|
539
|
+
|
|
540
|
+
export declare const atlassianAuthExternalConnectionBuiltInBaseEntityConnectionIdProperty: IPropertyTransfer;
|
|
541
|
+
|
|
542
|
+
export declare const atlassianAuthExternalConnectionBuiltInBaseEntityConnectionIdPropertyDataType: IDataTypeTransfer;
|
|
543
|
+
|
|
544
|
+
export declare const atlassianAuthExternalConnectionBuiltInBaseEntityConnectionIdPropertyDataTypeParentRef: IPropertyReference;
|
|
545
|
+
|
|
546
|
+
export declare const atlassianAuthExternalConnectionBuiltInBaseEntityConnectionIdPropertyParentRef: IBuiltInBaseEntityReference;
|
|
547
|
+
|
|
548
|
+
export declare const atlassianAuthExternalConnectionBuiltInBaseEntityIntegrationProperty: IPropertyTransfer;
|
|
549
|
+
|
|
550
|
+
export declare const atlassianAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyDataTypeRef: IDataTypeReference;
|
|
551
|
+
|
|
552
|
+
export declare const atlassianAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyParentRef: IBuiltInBaseEntityReference;
|
|
553
|
+
|
|
554
|
+
export declare const atlassianAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyRef: IPropertyReference;
|
|
555
|
+
|
|
518
556
|
export declare type BaseActionImplementation = (...args: any[]) => any[] | Promise<any[]>;
|
|
519
557
|
|
|
520
558
|
export declare abstract class BaseCanvasDraggableState {
|
|
@@ -528,7 +566,14 @@ export declare enum BaseEntityNames {
|
|
|
528
566
|
PERSISTED_ENTITY = "BUILT_IN_PERSISTED_ENTITY_ENTITY",
|
|
529
567
|
CRON_JOB = "BUILT_IN_CRON_JOB_ENTITY",
|
|
530
568
|
EXECUTION = "BUILT_IN_EXECUTION_ENTITY",
|
|
531
|
-
EXTERNAL_INTEGRATION_CONNECTION = "BUILT_IN_EXTERNAL_INTEGRATION_CONNECTION_ENTITY"
|
|
569
|
+
EXTERNAL_INTEGRATION_CONNECTION = "BUILT_IN_EXTERNAL_INTEGRATION_CONNECTION_ENTITY",
|
|
570
|
+
GOOGLE_AUTH_CONNECTION = "BUILT_IN_EXTERNAL_INTEGRATION_CONNECTION_GOOGLE_AUTH",
|
|
571
|
+
SLACK_AUTH_CONNECTION = "BUILT_IN_EXTERNAL_INTEGRATION_CONNECTION_SLACK_AUTH",
|
|
572
|
+
AIRTABLE_AUTH_CONNECTION = "BUILT_IN_EXTERNAL_INTEGRATION_CONNECTION_AIRTABLE_AUTH",
|
|
573
|
+
MICROSOFT_AUTH_CONNECTION = "BUILT_IN_EXTERNAL_INTEGRATION_CONNECTION_MICROSOFT_AUTH",
|
|
574
|
+
OPENAI_AUTH_CONNECTION = "BUILT_IN_EXTERNAL_INTEGRATION_CONNECTION_OPENAI_AUTH",
|
|
575
|
+
ATLASSIAN_AUTH_CONNECTION = "BUILT_IN_EXTERNAL_INTEGRATION_CONNECTION_ATLASSIAN_AUTH",
|
|
576
|
+
JIRA_AUTH_CONNECTION = "BUILT_IN_EXTERNAL_INTEGRATION_CONNECTION_JIRA_AUTH"
|
|
532
577
|
}
|
|
533
578
|
|
|
534
579
|
export declare class BaseRegisteredExtension {
|
|
@@ -882,6 +927,132 @@ export declare const BUILT_IN_BASE_ENTITY_IDS: {
|
|
|
882
927
|
};
|
|
883
928
|
methods: {};
|
|
884
929
|
};
|
|
930
|
+
BUILT_IN_EXTERNAL_INTEGRATION_CONNECTION_GOOGLE_AUTH: {
|
|
931
|
+
id: BaseEntityNames;
|
|
932
|
+
properties: {
|
|
933
|
+
integration: {
|
|
934
|
+
id: string;
|
|
935
|
+
dataType: {
|
|
936
|
+
id: string;
|
|
937
|
+
};
|
|
938
|
+
};
|
|
939
|
+
connectionId: {
|
|
940
|
+
id: string;
|
|
941
|
+
dataType: {
|
|
942
|
+
id: string;
|
|
943
|
+
};
|
|
944
|
+
};
|
|
945
|
+
};
|
|
946
|
+
methods: {};
|
|
947
|
+
};
|
|
948
|
+
BUILT_IN_EXTERNAL_INTEGRATION_CONNECTION_SLACK_AUTH: {
|
|
949
|
+
id: BaseEntityNames;
|
|
950
|
+
properties: {
|
|
951
|
+
integration: {
|
|
952
|
+
id: string;
|
|
953
|
+
dataType: {
|
|
954
|
+
id: string;
|
|
955
|
+
};
|
|
956
|
+
};
|
|
957
|
+
connectionId: {
|
|
958
|
+
id: string;
|
|
959
|
+
dataType: {
|
|
960
|
+
id: string;
|
|
961
|
+
};
|
|
962
|
+
};
|
|
963
|
+
};
|
|
964
|
+
methods: {};
|
|
965
|
+
};
|
|
966
|
+
BUILT_IN_EXTERNAL_INTEGRATION_CONNECTION_MICROSOFT_AUTH: {
|
|
967
|
+
id: BaseEntityNames;
|
|
968
|
+
properties: {
|
|
969
|
+
integration: {
|
|
970
|
+
id: string;
|
|
971
|
+
dataType: {
|
|
972
|
+
id: string;
|
|
973
|
+
};
|
|
974
|
+
};
|
|
975
|
+
connectionId: {
|
|
976
|
+
id: string;
|
|
977
|
+
dataType: {
|
|
978
|
+
id: string;
|
|
979
|
+
};
|
|
980
|
+
};
|
|
981
|
+
};
|
|
982
|
+
methods: {};
|
|
983
|
+
};
|
|
984
|
+
BUILT_IN_EXTERNAL_INTEGRATION_CONNECTION_OPENAI_AUTH: {
|
|
985
|
+
id: BaseEntityNames;
|
|
986
|
+
properties: {
|
|
987
|
+
integration: {
|
|
988
|
+
id: string;
|
|
989
|
+
dataType: {
|
|
990
|
+
id: string;
|
|
991
|
+
};
|
|
992
|
+
};
|
|
993
|
+
connectionId: {
|
|
994
|
+
id: string;
|
|
995
|
+
dataType: {
|
|
996
|
+
id: string;
|
|
997
|
+
};
|
|
998
|
+
};
|
|
999
|
+
};
|
|
1000
|
+
methods: {};
|
|
1001
|
+
};
|
|
1002
|
+
BUILT_IN_EXTERNAL_INTEGRATION_CONNECTION_AIRTABLE_AUTH: {
|
|
1003
|
+
id: BaseEntityNames;
|
|
1004
|
+
properties: {
|
|
1005
|
+
integration: {
|
|
1006
|
+
id: string;
|
|
1007
|
+
dataType: {
|
|
1008
|
+
id: string;
|
|
1009
|
+
};
|
|
1010
|
+
};
|
|
1011
|
+
connectionId: {
|
|
1012
|
+
id: string;
|
|
1013
|
+
dataType: {
|
|
1014
|
+
id: string;
|
|
1015
|
+
};
|
|
1016
|
+
};
|
|
1017
|
+
};
|
|
1018
|
+
methods: {};
|
|
1019
|
+
};
|
|
1020
|
+
BUILT_IN_EXTERNAL_INTEGRATION_CONNECTION_ATLASSIAN_AUTH: {
|
|
1021
|
+
id: BaseEntityNames;
|
|
1022
|
+
properties: {
|
|
1023
|
+
integration: {
|
|
1024
|
+
id: string;
|
|
1025
|
+
dataType: {
|
|
1026
|
+
id: string;
|
|
1027
|
+
};
|
|
1028
|
+
};
|
|
1029
|
+
connectionId: {
|
|
1030
|
+
id: string;
|
|
1031
|
+
dataType: {
|
|
1032
|
+
id: string;
|
|
1033
|
+
};
|
|
1034
|
+
};
|
|
1035
|
+
};
|
|
1036
|
+
methods: {};
|
|
1037
|
+
};
|
|
1038
|
+
BUILT_IN_EXTERNAL_INTEGRATION_CONNECTION_JIRA_AUTH: {
|
|
1039
|
+
id: BaseEntityNames;
|
|
1040
|
+
properties: {
|
|
1041
|
+
integration: {
|
|
1042
|
+
id: string;
|
|
1043
|
+
dataType: {
|
|
1044
|
+
id: string;
|
|
1045
|
+
};
|
|
1046
|
+
};
|
|
1047
|
+
connectionId: {
|
|
1048
|
+
id: string;
|
|
1049
|
+
dataType: {
|
|
1050
|
+
id: string;
|
|
1051
|
+
};
|
|
1052
|
+
};
|
|
1053
|
+
};
|
|
1054
|
+
methods: {};
|
|
1055
|
+
};
|
|
885
1056
|
};
|
|
886
1057
|
operation: {
|
|
887
1058
|
"string-join": {
|
|
@@ -4435,6 +4606,50 @@ export declare const EXTERNAL_INTERGRATION_OPERATIONS: {
|
|
|
4435
4606
|
[key: string]: IActionDescriptorTransfer;
|
|
4436
4607
|
};
|
|
4437
4608
|
|
|
4609
|
+
export declare type ExternalIntegrationAliasMaps = {
|
|
4610
|
+
[key in keyof typeof ExternalIntegrationAliasProviders]: ExternalIntegrationRootProviders;
|
|
4611
|
+
};
|
|
4612
|
+
|
|
4613
|
+
export declare const ExternalIntegrationAliasMaps: ExternalIntegrationAliasMaps;
|
|
4614
|
+
|
|
4615
|
+
export declare enum ExternalIntegrationAliasProviders {
|
|
4616
|
+
'aircall-basic' = "aircall-basic",
|
|
4617
|
+
'confluence' = "confluence",
|
|
4618
|
+
'confluence-data-center' = "confluence-data-center",
|
|
4619
|
+
'figjam' = "figjam",
|
|
4620
|
+
'github-app' = "github-app",
|
|
4621
|
+
'github-app-oauth' = "github-app-oauth",
|
|
4622
|
+
'google-analytics' = "google-analytics",
|
|
4623
|
+
'google-calendar' = "google-calendar",
|
|
4624
|
+
'google-docs' = "google-docs",
|
|
4625
|
+
'google-mail' = "google-mail",
|
|
4626
|
+
'google-sheet' = "google-sheet",
|
|
4627
|
+
'google-slides' = "google-slides",
|
|
4628
|
+
'google-drive' = "google-drive",
|
|
4629
|
+
'google-ads' = "google-ads",
|
|
4630
|
+
'google-cloud-storage' = "google-cloud-storage",
|
|
4631
|
+
'microsoft-teams' = "microsoft-teams",
|
|
4632
|
+
'microsoft-ads' = "microsoft-ads",
|
|
4633
|
+
'microsoft-entra-id' = "microsoft-entra-id",
|
|
4634
|
+
'microsoft-power-bi' = "microsoft-power-bi",
|
|
4635
|
+
'netsuite-tba' = "netsuite-tba",
|
|
4636
|
+
'okta-preview' = "okta-preview",
|
|
4637
|
+
'one-drive' = "one-drive",
|
|
4638
|
+
'one-note' = "one-note",
|
|
4639
|
+
'outlook' = "outlook",
|
|
4640
|
+
'quickbooks-sandbox' = "quickbooks-sandbox",
|
|
4641
|
+
'sharepoint-online' = "sharepoint-online",
|
|
4642
|
+
'youtube' = "youtube",
|
|
4643
|
+
'zoho-books' = "zoho-books",
|
|
4644
|
+
'zoho-crm' = "zoho-crm",
|
|
4645
|
+
'zoho-desk' = "zoho-desk",
|
|
4646
|
+
'zoho-inventory' = "zoho-inventory",
|
|
4647
|
+
'zoho-invoice' = "zoho-invoice",
|
|
4648
|
+
'zoho-mail' = "zoho-mail",
|
|
4649
|
+
'zoho-bigin' = "zoho-bigin",
|
|
4650
|
+
'zoho-people' = "zoho-people"
|
|
4651
|
+
}
|
|
4652
|
+
|
|
4438
4653
|
export declare const externalIntegrationConnectionBuiltInBaseEntity: IBuiltInBaseEntityTransfer;
|
|
4439
4654
|
|
|
4440
4655
|
export declare const externalIntegrationConnectionBuiltInBaseEntityConnectionIdProperty: IPropertyTransfer;
|
|
@@ -4453,157 +4668,1002 @@ export declare const externalIntegrationConnectionBuiltInBaseEntityIntegrationPr
|
|
|
4453
4668
|
|
|
4454
4669
|
export declare const externalIntegrationConnectionBuiltInBaseEntityIntegrationPropertyRef: IPropertyReference;
|
|
4455
4670
|
|
|
4456
|
-
export declare
|
|
4457
|
-
|
|
4458
|
-
|
|
4459
|
-
|
|
4671
|
+
export declare type ExternalIntegrationNames = keyof typeof ExternalIntegrationRootProviders | keyof typeof ExternalIntegrationAliasProviders;
|
|
4672
|
+
|
|
4673
|
+
export declare const ExternalIntegrationNames: {
|
|
4674
|
+
'aircall-basic': (typeof ExternalIntegrationAliasProviders)["aircall-basic"];
|
|
4675
|
+
confluence: ExternalIntegrationAliasProviders.confluence;
|
|
4676
|
+
'confluence-data-center': (typeof ExternalIntegrationAliasProviders)["confluence-data-center"];
|
|
4677
|
+
figjam: ExternalIntegrationAliasProviders.figjam;
|
|
4678
|
+
'github-app': (typeof ExternalIntegrationAliasProviders)["github-app"];
|
|
4679
|
+
'github-app-oauth': (typeof ExternalIntegrationAliasProviders)["github-app-oauth"];
|
|
4680
|
+
'google-analytics': (typeof ExternalIntegrationAliasProviders)["google-analytics"];
|
|
4681
|
+
'google-calendar': (typeof ExternalIntegrationAliasProviders)["google-calendar"];
|
|
4682
|
+
'google-docs': (typeof ExternalIntegrationAliasProviders)["google-docs"];
|
|
4683
|
+
'google-mail': (typeof ExternalIntegrationAliasProviders)["google-mail"];
|
|
4684
|
+
'google-sheet': (typeof ExternalIntegrationAliasProviders)["google-sheet"];
|
|
4685
|
+
'google-slides': (typeof ExternalIntegrationAliasProviders)["google-slides"];
|
|
4686
|
+
'google-drive': (typeof ExternalIntegrationAliasProviders)["google-drive"];
|
|
4687
|
+
'google-ads': (typeof ExternalIntegrationAliasProviders)["google-ads"];
|
|
4688
|
+
'google-cloud-storage': (typeof ExternalIntegrationAliasProviders)["google-cloud-storage"];
|
|
4689
|
+
'microsoft-teams': (typeof ExternalIntegrationAliasProviders)["microsoft-teams"];
|
|
4690
|
+
'microsoft-ads': (typeof ExternalIntegrationAliasProviders)["microsoft-ads"];
|
|
4691
|
+
'microsoft-entra-id': (typeof ExternalIntegrationAliasProviders)["microsoft-entra-id"];
|
|
4692
|
+
'microsoft-power-bi': (typeof ExternalIntegrationAliasProviders)["microsoft-power-bi"];
|
|
4693
|
+
'netsuite-tba': (typeof ExternalIntegrationAliasProviders)["netsuite-tba"];
|
|
4694
|
+
'okta-preview': (typeof ExternalIntegrationAliasProviders)["okta-preview"];
|
|
4695
|
+
'one-drive': (typeof ExternalIntegrationAliasProviders)["one-drive"];
|
|
4696
|
+
'one-note': (typeof ExternalIntegrationAliasProviders)["one-note"];
|
|
4697
|
+
outlook: ExternalIntegrationAliasProviders.outlook;
|
|
4698
|
+
'quickbooks-sandbox': (typeof ExternalIntegrationAliasProviders)["quickbooks-sandbox"];
|
|
4699
|
+
'sharepoint-online': (typeof ExternalIntegrationAliasProviders)["sharepoint-online"];
|
|
4700
|
+
youtube: ExternalIntegrationAliasProviders.youtube;
|
|
4701
|
+
'zoho-books': (typeof ExternalIntegrationAliasProviders)["zoho-books"];
|
|
4702
|
+
'zoho-crm': (typeof ExternalIntegrationAliasProviders)["zoho-crm"];
|
|
4703
|
+
'zoho-desk': (typeof ExternalIntegrationAliasProviders)["zoho-desk"];
|
|
4704
|
+
'zoho-inventory': (typeof ExternalIntegrationAliasProviders)["zoho-inventory"];
|
|
4705
|
+
'zoho-invoice': (typeof ExternalIntegrationAliasProviders)["zoho-invoice"];
|
|
4706
|
+
'zoho-mail': (typeof ExternalIntegrationAliasProviders)["zoho-mail"];
|
|
4707
|
+
'zoho-bigin': (typeof ExternalIntegrationAliasProviders)["zoho-bigin"];
|
|
4708
|
+
'zoho-people': (typeof ExternalIntegrationAliasProviders)["zoho-people"];
|
|
4709
|
+
'1password-scim': (typeof ExternalIntegrationRootProviders)["1password-scim"];
|
|
4710
|
+
accelo: ExternalIntegrationRootProviders.accelo;
|
|
4711
|
+
'active-campaign': (typeof ExternalIntegrationRootProviders)["active-campaign"];
|
|
4712
|
+
'acuity-scheduling': (typeof ExternalIntegrationRootProviders)["acuity-scheduling"];
|
|
4713
|
+
adobe: ExternalIntegrationRootProviders.adobe;
|
|
4714
|
+
'adobe-umapi': (typeof ExternalIntegrationRootProviders)["adobe-umapi"];
|
|
4715
|
+
adp: ExternalIntegrationRootProviders.adp;
|
|
4716
|
+
adyen: ExternalIntegrationRootProviders.adyen;
|
|
4717
|
+
affinity: ExternalIntegrationRootProviders.affinity;
|
|
4718
|
+
aircall: ExternalIntegrationRootProviders.aircall;
|
|
4719
|
+
airtable: ExternalIntegrationRootProviders.airtable;
|
|
4720
|
+
'airtable-pat': (typeof ExternalIntegrationRootProviders)["airtable-pat"];
|
|
4721
|
+
autodesk: ExternalIntegrationRootProviders.autodesk;
|
|
4722
|
+
algolia: ExternalIntegrationRootProviders.algolia;
|
|
4723
|
+
amazon: ExternalIntegrationRootProviders.amazon;
|
|
4724
|
+
'amazon-selling-partner': (typeof ExternalIntegrationRootProviders)["amazon-selling-partner"];
|
|
4725
|
+
'amazon-selling-partner-beta': (typeof ExternalIntegrationRootProviders)["amazon-selling-partner-beta"];
|
|
4726
|
+
anrok: ExternalIntegrationRootProviders.anrok;
|
|
4727
|
+
amplitude: ExternalIntegrationRootProviders.amplitude;
|
|
4728
|
+
anthropic: ExternalIntegrationRootProviders.anthropic;
|
|
4729
|
+
'anthropic-admin': (typeof ExternalIntegrationRootProviders)["anthropic-admin"];
|
|
4730
|
+
apaleo: ExternalIntegrationRootProviders.apaleo;
|
|
4731
|
+
apollo: ExternalIntegrationRootProviders.apollo;
|
|
4732
|
+
'apollo-oauth': (typeof ExternalIntegrationRootProviders)["apollo-oauth"];
|
|
4733
|
+
'apple-app-store': (typeof ExternalIntegrationRootProviders)["apple-app-store"];
|
|
4734
|
+
'appstle-subscriptions': (typeof ExternalIntegrationRootProviders)["appstle-subscriptions"];
|
|
4735
|
+
asana: ExternalIntegrationRootProviders.asana;
|
|
4736
|
+
'asana-scim': (typeof ExternalIntegrationRootProviders)["asana-scim"];
|
|
4737
|
+
ashby: ExternalIntegrationRootProviders.ashby;
|
|
4738
|
+
'atlas-so': (typeof ExternalIntegrationRootProviders)["atlas-so"];
|
|
4739
|
+
atlassian: ExternalIntegrationRootProviders.atlassian;
|
|
4740
|
+
'atlassian-admin': (typeof ExternalIntegrationRootProviders)["atlassian-admin"];
|
|
4741
|
+
attio: ExternalIntegrationRootProviders.attio;
|
|
4742
|
+
auth0: ExternalIntegrationRootProviders.auth0;
|
|
4743
|
+
'auth0-cc': (typeof ExternalIntegrationRootProviders)["auth0-cc"];
|
|
4744
|
+
avalara: ExternalIntegrationRootProviders.avalara;
|
|
4745
|
+
'avalara-sandbox': (typeof ExternalIntegrationRootProviders)["avalara-sandbox"];
|
|
4746
|
+
aws: ExternalIntegrationRootProviders.aws;
|
|
4747
|
+
'aws-iam': (typeof ExternalIntegrationRootProviders)["aws-iam"];
|
|
4748
|
+
'aws-scim': (typeof ExternalIntegrationRootProviders)["aws-scim"];
|
|
4749
|
+
'azure-devops': (typeof ExternalIntegrationRootProviders)["azure-devops"];
|
|
4750
|
+
bamboohr: ExternalIntegrationRootProviders.bamboohr;
|
|
4751
|
+
'bamboohr-basic': (typeof ExternalIntegrationRootProviders)["bamboohr-basic"];
|
|
4752
|
+
basecamp: ExternalIntegrationRootProviders.basecamp;
|
|
4753
|
+
battlenet: ExternalIntegrationRootProviders.battlenet;
|
|
4754
|
+
beehiiv: ExternalIntegrationRootProviders.beehiiv;
|
|
4755
|
+
bigcommerce: ExternalIntegrationRootProviders.bigcommerce;
|
|
4756
|
+
'bill-sandbox': (typeof ExternalIntegrationRootProviders)["bill-sandbox"];
|
|
4757
|
+
bill: ExternalIntegrationRootProviders.bill;
|
|
4758
|
+
bitbucket: ExternalIntegrationRootProviders.bitbucket;
|
|
4759
|
+
bitdefender: ExternalIntegrationRootProviders.bitdefender;
|
|
4760
|
+
bitly: ExternalIntegrationRootProviders.bitly;
|
|
4761
|
+
blackbaud: ExternalIntegrationRootProviders.blackbaud;
|
|
4762
|
+
'blackbaud-basic': (typeof ExternalIntegrationRootProviders)["blackbaud-basic"];
|
|
4763
|
+
blandai: ExternalIntegrationRootProviders.blandai;
|
|
4764
|
+
boldsign: ExternalIntegrationRootProviders.boldsign;
|
|
4765
|
+
box: ExternalIntegrationRootProviders.box;
|
|
4766
|
+
'booking-com': (typeof ExternalIntegrationRootProviders)["booking-com"];
|
|
4767
|
+
braintree: ExternalIntegrationRootProviders.braintree;
|
|
4768
|
+
'braintree-sandbox': (typeof ExternalIntegrationRootProviders)["braintree-sandbox"];
|
|
4769
|
+
braze: ExternalIntegrationRootProviders.braze;
|
|
4770
|
+
'brevo-api-key': (typeof ExternalIntegrationRootProviders)["brevo-api-key"];
|
|
4771
|
+
brex: ExternalIntegrationRootProviders.brex;
|
|
4772
|
+
'brex-api-key': (typeof ExternalIntegrationRootProviders)["brex-api-key"];
|
|
4773
|
+
'brex-staging': (typeof ExternalIntegrationRootProviders)["brex-staging"];
|
|
4774
|
+
brightcrowd: ExternalIntegrationRootProviders.brightcrowd;
|
|
4775
|
+
'builder-io-private': (typeof ExternalIntegrationRootProviders)["builder-io-private"];
|
|
4776
|
+
'builder-io-public': (typeof ExternalIntegrationRootProviders)["builder-io-public"];
|
|
4777
|
+
buildium: ExternalIntegrationRootProviders.buildium;
|
|
4778
|
+
builtwith: ExternalIntegrationRootProviders.builtwith;
|
|
4779
|
+
'cal-com-v1': (typeof ExternalIntegrationRootProviders)["cal-com-v1"];
|
|
4780
|
+
'cal-com-v2': (typeof ExternalIntegrationRootProviders)["cal-com-v2"];
|
|
4781
|
+
calendly: ExternalIntegrationRootProviders.calendly;
|
|
4782
|
+
callrail: ExternalIntegrationRootProviders.callrail;
|
|
4783
|
+
canny: ExternalIntegrationRootProviders.canny;
|
|
4784
|
+
canva: ExternalIntegrationRootProviders.canva;
|
|
4785
|
+
'canva-scim': (typeof ExternalIntegrationRootProviders)["canva-scim"];
|
|
4786
|
+
certn: ExternalIntegrationRootProviders.certn;
|
|
4787
|
+
'certn-partner': (typeof ExternalIntegrationRootProviders)["certn-partner"];
|
|
4788
|
+
chargebee: ExternalIntegrationRootProviders.chargebee;
|
|
4789
|
+
chattermill: ExternalIntegrationRootProviders.chattermill;
|
|
4790
|
+
checkhq: ExternalIntegrationRootProviders.checkhq;
|
|
4791
|
+
'checkr-partner': (typeof ExternalIntegrationRootProviders)["checkr-partner"];
|
|
4792
|
+
'checkr-partner-staging': (typeof ExternalIntegrationRootProviders)["checkr-partner-staging"];
|
|
4793
|
+
'checkout-com': (typeof ExternalIntegrationRootProviders)["checkout-com"];
|
|
4794
|
+
'checkout-com-sandbox': (typeof ExternalIntegrationRootProviders)["checkout-com-sandbox"];
|
|
4795
|
+
chorus: ExternalIntegrationRootProviders.chorus;
|
|
4796
|
+
'circle-so': (typeof ExternalIntegrationRootProviders)["circle-so"];
|
|
4797
|
+
'clari-copilot': (typeof ExternalIntegrationRootProviders)["clari-copilot"];
|
|
4798
|
+
clicksend: ExternalIntegrationRootProviders.clicksend;
|
|
4799
|
+
clickup: ExternalIntegrationRootProviders.clickup;
|
|
4800
|
+
cloudentity: ExternalIntegrationRootProviders.cloudentity;
|
|
4801
|
+
close: ExternalIntegrationRootProviders.close;
|
|
4802
|
+
coda: ExternalIntegrationRootProviders.coda;
|
|
4803
|
+
codeclimate: ExternalIntegrationRootProviders.codeclimate;
|
|
4804
|
+
codegen: ExternalIntegrationRootProviders.codegen;
|
|
4805
|
+
commercetools: ExternalIntegrationRootProviders.commercetools;
|
|
4806
|
+
companycam: ExternalIntegrationRootProviders.companycam;
|
|
4807
|
+
copper: ExternalIntegrationRootProviders.copper;
|
|
4808
|
+
'copper-api-key': (typeof ExternalIntegrationRootProviders)["copper-api-key"];
|
|
4809
|
+
'connectwise-psa': (typeof ExternalIntegrationRootProviders)["connectwise-psa"];
|
|
4810
|
+
'connectwise-psa-staging': (typeof ExternalIntegrationRootProviders)["connectwise-psa-staging"];
|
|
4811
|
+
'confluence-basic': (typeof ExternalIntegrationRootProviders)["confluence-basic"];
|
|
4812
|
+
contentful: ExternalIntegrationRootProviders.contentful;
|
|
4813
|
+
contentstack: ExternalIntegrationRootProviders.contentstack;
|
|
4814
|
+
coros: ExternalIntegrationRootProviders.coros;
|
|
4815
|
+
'coros-sandbox': (typeof ExternalIntegrationRootProviders)["coros-sandbox"];
|
|
4816
|
+
'coupa-compass': (typeof ExternalIntegrationRootProviders)["coupa-compass"];
|
|
4817
|
+
cyberimpact: ExternalIntegrationRootProviders.cyberimpact;
|
|
4818
|
+
'databricks-account': (typeof ExternalIntegrationRootProviders)["databricks-account"];
|
|
4819
|
+
'databricks-workspace': (typeof ExternalIntegrationRootProviders)["databricks-workspace"];
|
|
4820
|
+
datev: ExternalIntegrationRootProviders.datev;
|
|
4821
|
+
datadog: ExternalIntegrationRootProviders.datadog;
|
|
4822
|
+
deel: ExternalIntegrationRootProviders.deel;
|
|
4823
|
+
'deel-sandbox': (typeof ExternalIntegrationRootProviders)["deel-sandbox"];
|
|
4824
|
+
devin: ExternalIntegrationRootProviders.devin;
|
|
4825
|
+
dialpad: ExternalIntegrationRootProviders.dialpad;
|
|
4826
|
+
'dialpad-sandbox': (typeof ExternalIntegrationRootProviders)["dialpad-sandbox"];
|
|
4827
|
+
digitalocean: ExternalIntegrationRootProviders.digitalocean;
|
|
4828
|
+
discord: ExternalIntegrationRootProviders.discord;
|
|
4829
|
+
discourse: ExternalIntegrationRootProviders.discourse;
|
|
4830
|
+
dixa: ExternalIntegrationRootProviders.dixa;
|
|
4831
|
+
document360: ExternalIntegrationRootProviders.document360;
|
|
4832
|
+
docusign: ExternalIntegrationRootProviders.docusign;
|
|
4833
|
+
'docusign-sandbox': (typeof ExternalIntegrationRootProviders)["docusign-sandbox"];
|
|
4834
|
+
docuware: ExternalIntegrationRootProviders.docuware;
|
|
4835
|
+
dropbox: ExternalIntegrationRootProviders.dropbox;
|
|
4836
|
+
'dropbox-sign': (typeof ExternalIntegrationRootProviders)["dropbox-sign"];
|
|
4837
|
+
drupal: ExternalIntegrationRootProviders.drupal;
|
|
4838
|
+
emarsys: ExternalIntegrationRootProviders.emarsys;
|
|
4839
|
+
'emarsys-oauth': (typeof ExternalIntegrationRootProviders)["emarsys-oauth"];
|
|
4840
|
+
'employment-hero': (typeof ExternalIntegrationRootProviders)["employment-hero"];
|
|
4841
|
+
ebay: ExternalIntegrationRootProviders.ebay;
|
|
4842
|
+
'ebay-sandbox': (typeof ExternalIntegrationRootProviders)["ebay-sandbox"];
|
|
4843
|
+
'e-conomic': (typeof ExternalIntegrationRootProviders)["e-conomic"];
|
|
4844
|
+
egnyte: ExternalIntegrationRootProviders.egnyte;
|
|
4845
|
+
elevenlabs: ExternalIntegrationRootProviders.elevenlabs;
|
|
4846
|
+
elevio: ExternalIntegrationRootProviders.elevio;
|
|
4847
|
+
entrata: ExternalIntegrationRootProviders.entrata;
|
|
4848
|
+
envoy: ExternalIntegrationRootProviders.envoy;
|
|
4849
|
+
'epic-games': (typeof ExternalIntegrationRootProviders)["epic-games"];
|
|
4850
|
+
evaluagent: ExternalIntegrationRootProviders.evaluagent;
|
|
4851
|
+
eventbrite: ExternalIntegrationRootProviders.eventbrite;
|
|
4852
|
+
exa: ExternalIntegrationRootProviders.exa;
|
|
4853
|
+
'exact-online': (typeof ExternalIntegrationRootProviders)["exact-online"];
|
|
4854
|
+
exist: ExternalIntegrationRootProviders.exist;
|
|
4855
|
+
expensify: ExternalIntegrationRootProviders.expensify;
|
|
4856
|
+
factorial: ExternalIntegrationRootProviders.factorial;
|
|
4857
|
+
facebook: ExternalIntegrationRootProviders.facebook;
|
|
4858
|
+
fathom: ExternalIntegrationRootProviders.fathom;
|
|
4859
|
+
figma: ExternalIntegrationRootProviders.figma;
|
|
4860
|
+
'figma-scim': (typeof ExternalIntegrationRootProviders)["figma-scim"];
|
|
4861
|
+
falai: ExternalIntegrationRootProviders.falai;
|
|
4862
|
+
findymail: ExternalIntegrationRootProviders.findymail;
|
|
4863
|
+
firefish: ExternalIntegrationRootProviders.firefish;
|
|
4864
|
+
fireflies: ExternalIntegrationRootProviders.fireflies;
|
|
4865
|
+
fiserv: ExternalIntegrationRootProviders.fiserv;
|
|
4866
|
+
'fiserv-api-key': (typeof ExternalIntegrationRootProviders)["fiserv-api-key"];
|
|
4867
|
+
fitbit: ExternalIntegrationRootProviders.fitbit;
|
|
4868
|
+
fortnox: ExternalIntegrationRootProviders.fortnox;
|
|
4869
|
+
freshbooks: ExternalIntegrationRootProviders.freshbooks;
|
|
4870
|
+
freshdesk: ExternalIntegrationRootProviders.freshdesk;
|
|
4871
|
+
freshsales: ExternalIntegrationRootProviders.freshsales;
|
|
4872
|
+
freshservice: ExternalIntegrationRootProviders.freshservice;
|
|
4873
|
+
freshteam: ExternalIntegrationRootProviders.freshteam;
|
|
4874
|
+
front: ExternalIntegrationRootProviders.front;
|
|
4875
|
+
'gainsight-cc': (typeof ExternalIntegrationRootProviders)["gainsight-cc"];
|
|
4876
|
+
garmin: ExternalIntegrationRootProviders.garmin;
|
|
4877
|
+
'gebruder-weiss': (typeof ExternalIntegrationRootProviders)["gebruder-weiss"];
|
|
4878
|
+
'google-gemini': (typeof ExternalIntegrationRootProviders)["google-gemini"];
|
|
4879
|
+
gem: ExternalIntegrationRootProviders.gem;
|
|
4880
|
+
gerrit: ExternalIntegrationRootProviders.gerrit;
|
|
4881
|
+
grammarly: ExternalIntegrationRootProviders.grammarly;
|
|
4882
|
+
'grammarly-scim': (typeof ExternalIntegrationRootProviders)["grammarly-scim"];
|
|
4883
|
+
guru: ExternalIntegrationRootProviders.guru;
|
|
4884
|
+
'guru-scim': (typeof ExternalIntegrationRootProviders)["guru-scim"];
|
|
4885
|
+
github: ExternalIntegrationRootProviders.github;
|
|
4886
|
+
'github-pat': (typeof ExternalIntegrationRootProviders)["github-pat"];
|
|
4887
|
+
gitlab: ExternalIntegrationRootProviders.gitlab;
|
|
4888
|
+
'ghost-admin': (typeof ExternalIntegrationRootProviders)["ghost-admin"];
|
|
4889
|
+
'ghost-content': (typeof ExternalIntegrationRootProviders)["ghost-content"];
|
|
4890
|
+
gong: ExternalIntegrationRootProviders.gong;
|
|
4891
|
+
'gong-oauth': (typeof ExternalIntegrationRootProviders)["gong-oauth"];
|
|
4892
|
+
google: ExternalIntegrationRootProviders.google;
|
|
4893
|
+
'google-play': (typeof ExternalIntegrationRootProviders)["google-play"];
|
|
4894
|
+
gorgias: ExternalIntegrationRootProviders.gorgias;
|
|
4895
|
+
'gorgias-basic': (typeof ExternalIntegrationRootProviders)["gorgias-basic"];
|
|
4896
|
+
grafana: ExternalIntegrationRootProviders.grafana;
|
|
4897
|
+
grain: ExternalIntegrationRootProviders.grain;
|
|
4898
|
+
'grain-api-key': (typeof ExternalIntegrationRootProviders)["grain-api-key"];
|
|
4899
|
+
greenhouse: ExternalIntegrationRootProviders.greenhouse;
|
|
4900
|
+
'greenhouse-basic': (typeof ExternalIntegrationRootProviders)["greenhouse-basic"];
|
|
4901
|
+
'greenhouse-harvest': (typeof ExternalIntegrationRootProviders)["greenhouse-harvest"];
|
|
4902
|
+
'greenhouse-job-board': (typeof ExternalIntegrationRootProviders)["greenhouse-job-board"];
|
|
4903
|
+
'greenhouse-assessment': (typeof ExternalIntegrationRootProviders)["greenhouse-assessment"];
|
|
4904
|
+
'greenhouse-ingestion': (typeof ExternalIntegrationRootProviders)["greenhouse-ingestion"];
|
|
4905
|
+
'greenhouse-onboarding': (typeof ExternalIntegrationRootProviders)["greenhouse-onboarding"];
|
|
4906
|
+
gumroad: ExternalIntegrationRootProviders.gumroad;
|
|
4907
|
+
gusto: ExternalIntegrationRootProviders.gusto;
|
|
4908
|
+
'gusto-demo': (typeof ExternalIntegrationRootProviders)["gusto-demo"];
|
|
4909
|
+
'hackerrank-work': (typeof ExternalIntegrationRootProviders)["hackerrank-work"];
|
|
4910
|
+
harvest: ExternalIntegrationRootProviders.harvest;
|
|
4911
|
+
'health-gorilla': (typeof ExternalIntegrationRootProviders)["health-gorilla"];
|
|
4912
|
+
'hibob-service-user': (typeof ExternalIntegrationRootProviders)["hibob-service-user"];
|
|
4913
|
+
highlevel: ExternalIntegrationRootProviders.highlevel;
|
|
4914
|
+
'highlevel-white-label': (typeof ExternalIntegrationRootProviders)["highlevel-white-label"];
|
|
4915
|
+
holded: ExternalIntegrationRootProviders.holded;
|
|
4916
|
+
hubspot: ExternalIntegrationRootProviders.hubspot;
|
|
4917
|
+
'incident-io': (typeof ExternalIntegrationRootProviders)["incident-io"];
|
|
4918
|
+
insightly: ExternalIntegrationRootProviders.insightly;
|
|
4919
|
+
instantly: ExternalIntegrationRootProviders.instantly;
|
|
4920
|
+
instagram: ExternalIntegrationRootProviders.instagram;
|
|
4921
|
+
intercom: ExternalIntegrationRootProviders.intercom;
|
|
4922
|
+
intuit: ExternalIntegrationRootProviders.intuit;
|
|
4923
|
+
jamf: ExternalIntegrationRootProviders.jamf;
|
|
4924
|
+
'jamf-basic': (typeof ExternalIntegrationRootProviders)["jamf-basic"];
|
|
4925
|
+
jazzhr: ExternalIntegrationRootProviders.jazzhr;
|
|
4926
|
+
jira: ExternalIntegrationRootProviders.jira;
|
|
4927
|
+
'jira-basic': (typeof ExternalIntegrationRootProviders)["jira-basic"];
|
|
4928
|
+
'jira-data-center': (typeof ExternalIntegrationRootProviders)["jira-data-center"];
|
|
4929
|
+
'jira-data-center-api-key': (typeof ExternalIntegrationRootProviders)["jira-data-center-api-key"];
|
|
4930
|
+
'jira-data-center-basic': (typeof ExternalIntegrationRootProviders)["jira-data-center-basic"];
|
|
4931
|
+
jobadder: ExternalIntegrationRootProviders.jobadder;
|
|
4932
|
+
jobvite: ExternalIntegrationRootProviders.jobvite;
|
|
4933
|
+
jotform: ExternalIntegrationRootProviders.jotform;
|
|
4934
|
+
'helpscout-docs': (typeof ExternalIntegrationRootProviders)["helpscout-docs"];
|
|
4935
|
+
'helpscout-mailbox': (typeof ExternalIntegrationRootProviders)["helpscout-mailbox"];
|
|
4936
|
+
kandji: ExternalIntegrationRootProviders.kandji;
|
|
4937
|
+
keap: ExternalIntegrationRootProviders.keap;
|
|
4938
|
+
'keeper-scim': (typeof ExternalIntegrationRootProviders)["keeper-scim"];
|
|
4939
|
+
klipfolio: ExternalIntegrationRootProviders.klipfolio;
|
|
4940
|
+
klaviyo: ExternalIntegrationRootProviders.klaviyo;
|
|
4941
|
+
'klaviyo-oauth': (typeof ExternalIntegrationRootProviders)["klaviyo-oauth"];
|
|
4942
|
+
kustomer: ExternalIntegrationRootProviders.kustomer;
|
|
4943
|
+
lagrowthmachine: ExternalIntegrationRootProviders.lagrowthmachine;
|
|
4944
|
+
lastpass: ExternalIntegrationRootProviders.lastpass;
|
|
4945
|
+
lattice: ExternalIntegrationRootProviders.lattice;
|
|
4946
|
+
lessonly: ExternalIntegrationRootProviders.lessonly;
|
|
4947
|
+
lemlist: ExternalIntegrationRootProviders.lemlist;
|
|
4948
|
+
lever: ExternalIntegrationRootProviders.lever;
|
|
4949
|
+
'lever-basic': (typeof ExternalIntegrationRootProviders)["lever-basic"];
|
|
4950
|
+
'lever-sandbox': (typeof ExternalIntegrationRootProviders)["lever-sandbox"];
|
|
4951
|
+
'lever-basic-sandbox': (typeof ExternalIntegrationRootProviders)["lever-basic-sandbox"];
|
|
4952
|
+
linear: ExternalIntegrationRootProviders.linear;
|
|
4953
|
+
linkedin: ExternalIntegrationRootProviders.linkedin;
|
|
4954
|
+
linkhut: ExternalIntegrationRootProviders.linkhut;
|
|
4955
|
+
'loom-scim': (typeof ExternalIntegrationRootProviders)["loom-scim"];
|
|
4956
|
+
'loops-so': (typeof ExternalIntegrationRootProviders)["loops-so"];
|
|
4957
|
+
'lucid-scim': (typeof ExternalIntegrationRootProviders)["lucid-scim"];
|
|
4958
|
+
luma: ExternalIntegrationRootProviders.luma;
|
|
4959
|
+
listmonk: ExternalIntegrationRootProviders.listmonk;
|
|
4960
|
+
make: ExternalIntegrationRootProviders.make;
|
|
4961
|
+
mailgun: ExternalIntegrationRootProviders.mailgun;
|
|
4962
|
+
mailchimp: ExternalIntegrationRootProviders.mailchimp;
|
|
4963
|
+
manatal: ExternalIntegrationRootProviders.manatal;
|
|
4964
|
+
marketo: ExternalIntegrationRootProviders.marketo;
|
|
4965
|
+
malwarebytes: ExternalIntegrationRootProviders.malwarebytes;
|
|
4966
|
+
medallia: ExternalIntegrationRootProviders.medallia;
|
|
4967
|
+
metabase: ExternalIntegrationRootProviders.metabase;
|
|
4968
|
+
microsoft: ExternalIntegrationRootProviders.microsoft;
|
|
4969
|
+
'microsoft-oauth2-cc': (typeof ExternalIntegrationRootProviders)["microsoft-oauth2-cc"];
|
|
4970
|
+
'microsoft-tenant-specific': (typeof ExternalIntegrationRootProviders)["microsoft-tenant-specific"];
|
|
4971
|
+
'microsoft-business-central': (typeof ExternalIntegrationRootProviders)["microsoft-business-central"];
|
|
4972
|
+
mindbody: ExternalIntegrationRootProviders.mindbody;
|
|
4973
|
+
minimax: ExternalIntegrationRootProviders.minimax;
|
|
4974
|
+
'mip-cloud': (typeof ExternalIntegrationRootProviders)["mip-cloud"];
|
|
4975
|
+
'mip-on-premise': (typeof ExternalIntegrationRootProviders)["mip-on-premise"];
|
|
4976
|
+
mixpanel: ExternalIntegrationRootProviders.mixpanel;
|
|
4977
|
+
miro: ExternalIntegrationRootProviders.miro;
|
|
4978
|
+
'miro-scim': (typeof ExternalIntegrationRootProviders)["miro-scim"];
|
|
4979
|
+
missive: ExternalIntegrationRootProviders.missive;
|
|
4980
|
+
monday: ExternalIntegrationRootProviders.monday;
|
|
4981
|
+
mural: ExternalIntegrationRootProviders.mural;
|
|
4982
|
+
nationbuilder: ExternalIntegrationRootProviders.nationbuilder;
|
|
4983
|
+
namely: ExternalIntegrationRootProviders.namely;
|
|
4984
|
+
'namely-pat': (typeof ExternalIntegrationRootProviders)["namely-pat"];
|
|
4985
|
+
netsuite: ExternalIntegrationRootProviders.netsuite;
|
|
4986
|
+
'next-cloud-ocs': (typeof ExternalIntegrationRootProviders)["next-cloud-ocs"];
|
|
4987
|
+
notion: ExternalIntegrationRootProviders.notion;
|
|
4988
|
+
'notion-scim': (typeof ExternalIntegrationRootProviders)["notion-scim"];
|
|
4989
|
+
odoo: ExternalIntegrationRootProviders.odoo;
|
|
4990
|
+
'odoo-cc': (typeof ExternalIntegrationRootProviders)["odoo-cc"];
|
|
4991
|
+
okta: ExternalIntegrationRootProviders.okta;
|
|
4992
|
+
openai: ExternalIntegrationRootProviders.openai;
|
|
4993
|
+
'openai-admin': (typeof ExternalIntegrationRootProviders)["openai-admin"];
|
|
4994
|
+
'open-hands': (typeof ExternalIntegrationRootProviders)["open-hands"];
|
|
4995
|
+
'oracle-hcm': (typeof ExternalIntegrationRootProviders)["oracle-hcm"];
|
|
4996
|
+
ory: ExternalIntegrationRootProviders.ory;
|
|
4997
|
+
osu: ExternalIntegrationRootProviders.osu;
|
|
4998
|
+
oura: ExternalIntegrationRootProviders.oura;
|
|
4999
|
+
outreach: ExternalIntegrationRootProviders.outreach;
|
|
5000
|
+
pagerduty: ExternalIntegrationRootProviders.pagerduty;
|
|
5001
|
+
pandadoc: ExternalIntegrationRootProviders.pandadoc;
|
|
5002
|
+
'pandadoc-api-key': (typeof ExternalIntegrationRootProviders)["pandadoc-api-key"];
|
|
5003
|
+
paychex: ExternalIntegrationRootProviders.paychex;
|
|
5004
|
+
payfit: ExternalIntegrationRootProviders.payfit;
|
|
5005
|
+
paylocity: ExternalIntegrationRootProviders.paylocity;
|
|
5006
|
+
paypal: ExternalIntegrationRootProviders.paypal;
|
|
5007
|
+
'paypal-sandbox': (typeof ExternalIntegrationRootProviders)["paypal-sandbox"];
|
|
5008
|
+
pendo: ExternalIntegrationRootProviders.pendo;
|
|
5009
|
+
pennylane: ExternalIntegrationRootProviders.pennylane;
|
|
5010
|
+
peopledatalabs: ExternalIntegrationRootProviders.peopledatalabs;
|
|
5011
|
+
perplexity: ExternalIntegrationRootProviders.perplexity;
|
|
5012
|
+
perimeter81: ExternalIntegrationRootProviders.perimeter81;
|
|
5013
|
+
personio: ExternalIntegrationRootProviders.personio;
|
|
5014
|
+
'personio-v2': (typeof ExternalIntegrationRootProviders)["personio-v2"];
|
|
5015
|
+
'personio-recruiting': (typeof ExternalIntegrationRootProviders)["personio-recruiting"];
|
|
5016
|
+
pingboard: ExternalIntegrationRootProviders.pingboard;
|
|
5017
|
+
pinterest: ExternalIntegrationRootProviders.pinterest;
|
|
5018
|
+
pipedrive: ExternalIntegrationRootProviders.pipedrive;
|
|
5019
|
+
pivotaltracker: ExternalIntegrationRootProviders.pivotaltracker;
|
|
5020
|
+
plain: ExternalIntegrationRootProviders.plain;
|
|
5021
|
+
podium: ExternalIntegrationRootProviders.podium;
|
|
5022
|
+
posthog: ExternalIntegrationRootProviders.posthog;
|
|
5023
|
+
prive: ExternalIntegrationRootProviders.prive;
|
|
5024
|
+
precisefp: ExternalIntegrationRootProviders.precisefp;
|
|
5025
|
+
productboard: ExternalIntegrationRootProviders.productboard;
|
|
5026
|
+
qualtrics: ExternalIntegrationRootProviders.qualtrics;
|
|
5027
|
+
quickbase: ExternalIntegrationRootProviders.quickbase;
|
|
5028
|
+
quickbooks: ExternalIntegrationRootProviders.quickbooks;
|
|
5029
|
+
ragieai: ExternalIntegrationRootProviders.ragieai;
|
|
5030
|
+
ramp: ExternalIntegrationRootProviders.ramp;
|
|
5031
|
+
'ramp-sandbox': (typeof ExternalIntegrationRootProviders)["ramp-sandbox"];
|
|
5032
|
+
rapidapi: ExternalIntegrationRootProviders.rapidapi;
|
|
5033
|
+
razorpay: ExternalIntegrationRootProviders.razorpay;
|
|
5034
|
+
readwise: ExternalIntegrationRootProviders.readwise;
|
|
5035
|
+
'readwise-reader': (typeof ExternalIntegrationRootProviders)["readwise-reader"];
|
|
5036
|
+
recharge: ExternalIntegrationRootProviders.recharge;
|
|
5037
|
+
recruitcrm: ExternalIntegrationRootProviders.recruitcrm;
|
|
5038
|
+
recruiterflow: ExternalIntegrationRootProviders.recruiterflow;
|
|
5039
|
+
reddit: ExternalIntegrationRootProviders.reddit;
|
|
5040
|
+
'redtail-crm-sandbox': (typeof ExternalIntegrationRootProviders)["redtail-crm-sandbox"];
|
|
5041
|
+
refiner: ExternalIntegrationRootProviders.refiner;
|
|
5042
|
+
replicate: ExternalIntegrationRootProviders.replicate;
|
|
5043
|
+
'retell-ai': (typeof ExternalIntegrationRootProviders)["retell-ai"];
|
|
5044
|
+
'ring-central': (typeof ExternalIntegrationRootProviders)["ring-central"];
|
|
5045
|
+
'ring-central-sandbox': (typeof ExternalIntegrationRootProviders)["ring-central-sandbox"];
|
|
5046
|
+
rippling: ExternalIntegrationRootProviders.rippling;
|
|
5047
|
+
'rippling-shop-app': (typeof ExternalIntegrationRootProviders)["rippling-shop-app"];
|
|
5048
|
+
'roam-scim': (typeof ExternalIntegrationRootProviders)["roam-scim"];
|
|
5049
|
+
'rock-gym-pro': (typeof ExternalIntegrationRootProviders)["rock-gym-pro"];
|
|
5050
|
+
rootly: ExternalIntegrationRootProviders.rootly;
|
|
5051
|
+
segment: ExternalIntegrationRootProviders.segment;
|
|
5052
|
+
sage: ExternalIntegrationRootProviders.sage;
|
|
5053
|
+
'sage-hr': (typeof ExternalIntegrationRootProviders)["sage-hr"];
|
|
5054
|
+
'sage-intacct-oauth': (typeof ExternalIntegrationRootProviders)["sage-intacct-oauth"];
|
|
5055
|
+
'sage-intacct': (typeof ExternalIntegrationRootProviders)["sage-intacct"];
|
|
5056
|
+
salesforce: ExternalIntegrationRootProviders.salesforce;
|
|
5057
|
+
'salesforce-sandbox': (typeof ExternalIntegrationRootProviders)["salesforce-sandbox"];
|
|
5058
|
+
'salesforce-experience-cloud': (typeof ExternalIntegrationRootProviders)["salesforce-experience-cloud"];
|
|
5059
|
+
'salesforce-cdp': (typeof ExternalIntegrationRootProviders)["salesforce-cdp"];
|
|
5060
|
+
'sap-concur': (typeof ExternalIntegrationRootProviders)["sap-concur"];
|
|
5061
|
+
'sap-success-factors': (typeof ExternalIntegrationRootProviders)["sap-success-factors"];
|
|
5062
|
+
scrapedo: ExternalIntegrationRootProviders.scrapedo;
|
|
5063
|
+
salesloft: ExternalIntegrationRootProviders.salesloft;
|
|
5064
|
+
sendgrid: ExternalIntegrationRootProviders.sendgrid;
|
|
5065
|
+
sentry: ExternalIntegrationRootProviders.sentry;
|
|
5066
|
+
'sentry-oauth': (typeof ExternalIntegrationRootProviders)["sentry-oauth"];
|
|
5067
|
+
sedna: ExternalIntegrationRootProviders.sedna;
|
|
5068
|
+
'sedna-basic': (typeof ExternalIntegrationRootProviders)["sedna-basic"];
|
|
5069
|
+
servicem8: ExternalIntegrationRootProviders.servicem8;
|
|
5070
|
+
signnow: ExternalIntegrationRootProviders.signnow;
|
|
5071
|
+
'signnow-sandbox': (typeof ExternalIntegrationRootProviders)["signnow-sandbox"];
|
|
5072
|
+
servicenow: ExternalIntegrationRootProviders.servicenow;
|
|
5073
|
+
'sharepoint-online-oauth2-cc': (typeof ExternalIntegrationRootProviders)["sharepoint-online-oauth2-cc"];
|
|
5074
|
+
'sharepoint-online-v1': (typeof ExternalIntegrationRootProviders)["sharepoint-online-v1"];
|
|
5075
|
+
shipstation: ExternalIntegrationRootProviders.shipstation;
|
|
5076
|
+
shopify: ExternalIntegrationRootProviders.shopify;
|
|
5077
|
+
'shopify-api-key': (typeof ExternalIntegrationRootProviders)["shopify-api-key"];
|
|
5078
|
+
'shopify-partner': (typeof ExternalIntegrationRootProviders)["shopify-partner"];
|
|
5079
|
+
'shopify-scim': (typeof ExternalIntegrationRootProviders)["shopify-scim"];
|
|
5080
|
+
shortcut: ExternalIntegrationRootProviders.shortcut;
|
|
5081
|
+
slack: ExternalIntegrationRootProviders.slack;
|
|
5082
|
+
'smartlead-ai': (typeof ExternalIntegrationRootProviders)["smartlead-ai"];
|
|
5083
|
+
'smartrecruiters-api-key': (typeof ExternalIntegrationRootProviders)["smartrecruiters-api-key"];
|
|
5084
|
+
smartsheet: ExternalIntegrationRootProviders.smartsheet;
|
|
5085
|
+
smugmug: ExternalIntegrationRootProviders.smugmug;
|
|
5086
|
+
snowflake: ExternalIntegrationRootProviders.snowflake;
|
|
5087
|
+
'snowflake-jwt': (typeof ExternalIntegrationRootProviders)["snowflake-jwt"];
|
|
5088
|
+
splitwise: ExternalIntegrationRootProviders.splitwise;
|
|
5089
|
+
spotify: ExternalIntegrationRootProviders.spotify;
|
|
5090
|
+
'spotify-oauth2-cc': (typeof ExternalIntegrationRootProviders)["spotify-oauth2-cc"];
|
|
5091
|
+
squarespace: ExternalIntegrationRootProviders.squarespace;
|
|
5092
|
+
squareup: ExternalIntegrationRootProviders.squareup;
|
|
5093
|
+
'squareup-sandbox': (typeof ExternalIntegrationRootProviders)["squareup-sandbox"];
|
|
5094
|
+
stackexchange: ExternalIntegrationRootProviders.stackexchange;
|
|
5095
|
+
strava: ExternalIntegrationRootProviders.strava;
|
|
5096
|
+
'strava-web': (typeof ExternalIntegrationRootProviders)["strava-web"];
|
|
5097
|
+
stripe: ExternalIntegrationRootProviders.stripe;
|
|
5098
|
+
'stripe-express': (typeof ExternalIntegrationRootProviders)["stripe-express"];
|
|
5099
|
+
'stripe-app': (typeof ExternalIntegrationRootProviders)["stripe-app"];
|
|
5100
|
+
'stripe-app-sandbox': (typeof ExternalIntegrationRootProviders)["stripe-app-sandbox"];
|
|
5101
|
+
supabase: ExternalIntegrationRootProviders.supabase;
|
|
5102
|
+
'survey-monkey': (typeof ExternalIntegrationRootProviders)["survey-monkey"];
|
|
5103
|
+
tapclicks: ExternalIntegrationRootProviders.tapclicks;
|
|
5104
|
+
tableau: ExternalIntegrationRootProviders.tableau;
|
|
5105
|
+
teamtailor: ExternalIntegrationRootProviders.teamtailor;
|
|
5106
|
+
teamwork: ExternalIntegrationRootProviders.teamwork;
|
|
5107
|
+
terraform: ExternalIntegrationRootProviders.terraform;
|
|
5108
|
+
ticktick: ExternalIntegrationRootProviders.ticktick;
|
|
5109
|
+
'tiktok-accounts': (typeof ExternalIntegrationRootProviders)["tiktok-accounts"];
|
|
5110
|
+
'tiktok-ads': (typeof ExternalIntegrationRootProviders)["tiktok-ads"];
|
|
5111
|
+
timely: ExternalIntegrationRootProviders.timely;
|
|
5112
|
+
'thrivecart-oauth': (typeof ExternalIntegrationRootProviders)["thrivecart-oauth"];
|
|
5113
|
+
'thrivecart-api-key': (typeof ExternalIntegrationRootProviders)["thrivecart-api-key"];
|
|
5114
|
+
'trakstar-hire': (typeof ExternalIntegrationRootProviders)["trakstar-hire"];
|
|
5115
|
+
trafft: ExternalIntegrationRootProviders.trafft;
|
|
5116
|
+
tremendous: ExternalIntegrationRootProviders.tremendous;
|
|
5117
|
+
'tremendous-sandbox': (typeof ExternalIntegrationRootProviders)["tremendous-sandbox"];
|
|
5118
|
+
trello: ExternalIntegrationRootProviders.trello;
|
|
5119
|
+
'trello-scim': (typeof ExternalIntegrationRootProviders)["trello-scim"];
|
|
5120
|
+
tldv: ExternalIntegrationRootProviders.tldv;
|
|
5121
|
+
tsheetsteam: ExternalIntegrationRootProviders.tsheetsteam;
|
|
5122
|
+
todoist: ExternalIntegrationRootProviders.todoist;
|
|
5123
|
+
tumblr: ExternalIntegrationRootProviders.tumblr;
|
|
5124
|
+
twitch: ExternalIntegrationRootProviders.twitch;
|
|
5125
|
+
twitter: ExternalIntegrationRootProviders.twitter;
|
|
5126
|
+
'twitter-v2': (typeof ExternalIntegrationRootProviders)["twitter-v2"];
|
|
5127
|
+
'twitter-oauth2-cc': (typeof ExternalIntegrationRootProviders)["twitter-oauth2-cc"];
|
|
5128
|
+
twinfield: ExternalIntegrationRootProviders.twinfield;
|
|
5129
|
+
'twenty-crm': (typeof ExternalIntegrationRootProviders)["twenty-crm"];
|
|
5130
|
+
'twenty-crm-self-hosted': (typeof ExternalIntegrationRootProviders)["twenty-crm-self-hosted"];
|
|
5131
|
+
twilio: ExternalIntegrationRootProviders.twilio;
|
|
5132
|
+
typeform: ExternalIntegrationRootProviders.typeform;
|
|
5133
|
+
typefully: ExternalIntegrationRootProviders.typefully;
|
|
5134
|
+
uber: ExternalIntegrationRootProviders.uber;
|
|
5135
|
+
'ukg-pro-wfm': (typeof ExternalIntegrationRootProviders)["ukg-pro-wfm"];
|
|
5136
|
+
'ukg-pro': (typeof ExternalIntegrationRootProviders)["ukg-pro"];
|
|
5137
|
+
'ukg-ready': (typeof ExternalIntegrationRootProviders)["ukg-ready"];
|
|
5138
|
+
unanet: ExternalIntegrationRootProviders.unanet;
|
|
5139
|
+
unauthenticated: ExternalIntegrationRootProviders.unauthenticated;
|
|
5140
|
+
unipile: ExternalIntegrationRootProviders.unipile;
|
|
5141
|
+
vercel: ExternalIntegrationRootProviders.vercel;
|
|
5142
|
+
vimeo: ExternalIntegrationRootProviders.vimeo;
|
|
5143
|
+
'vimeo-basic': (typeof ExternalIntegrationRootProviders)["vimeo-basic"];
|
|
5144
|
+
wakatime: ExternalIntegrationRootProviders.wakatime;
|
|
5145
|
+
'wave-accounting': (typeof ExternalIntegrationRootProviders)["wave-accounting"];
|
|
5146
|
+
wealthbox: ExternalIntegrationRootProviders.wealthbox;
|
|
5147
|
+
webflow: ExternalIntegrationRootProviders.webflow;
|
|
5148
|
+
'whatsapp-business': (typeof ExternalIntegrationRootProviders)["whatsapp-business"];
|
|
5149
|
+
whoop: ExternalIntegrationRootProviders.whoop;
|
|
5150
|
+
'wildix-pbx': (typeof ExternalIntegrationRootProviders)["wildix-pbx"];
|
|
5151
|
+
wordpress: ExternalIntegrationRootProviders.wordpress;
|
|
5152
|
+
woocommerce: ExternalIntegrationRootProviders.woocommerce;
|
|
5153
|
+
workable: ExternalIntegrationRootProviders.workable;
|
|
5154
|
+
'workable-oauth': (typeof ExternalIntegrationRootProviders)["workable-oauth"];
|
|
5155
|
+
workday: ExternalIntegrationRootProviders.workday;
|
|
5156
|
+
'workday-oauth': (typeof ExternalIntegrationRootProviders)["workday-oauth"];
|
|
5157
|
+
wrike: ExternalIntegrationRootProviders.wrike;
|
|
5158
|
+
xai: ExternalIntegrationRootProviders.xai;
|
|
5159
|
+
xero: ExternalIntegrationRootProviders.xero;
|
|
5160
|
+
'xero-oauth2-cc': (typeof ExternalIntegrationRootProviders)["xero-oauth2-cc"];
|
|
5161
|
+
yahoo: ExternalIntegrationRootProviders.yahoo;
|
|
5162
|
+
yandex: ExternalIntegrationRootProviders.yandex;
|
|
5163
|
+
zapier: ExternalIntegrationRootProviders.zapier;
|
|
5164
|
+
'zapier-nla': (typeof ExternalIntegrationRootProviders)["zapier-nla"];
|
|
5165
|
+
'zapier-scim': (typeof ExternalIntegrationRootProviders)["zapier-scim"];
|
|
5166
|
+
zendesk: ExternalIntegrationRootProviders.zendesk;
|
|
5167
|
+
zenefits: ExternalIntegrationRootProviders.zenefits;
|
|
5168
|
+
zoho: ExternalIntegrationRootProviders.zoho;
|
|
5169
|
+
zoom: ExternalIntegrationRootProviders.zoom;
|
|
5170
|
+
zoominfo: ExternalIntegrationRootProviders.zoominfo;
|
|
5171
|
+
zuora: ExternalIntegrationRootProviders.zuora;
|
|
5172
|
+
};
|
|
5173
|
+
|
|
5174
|
+
export declare enum ExternalIntegrationOperations {
|
|
5175
|
+
AirtableTables = "external-integration--airtable--get--tables",
|
|
5176
|
+
AirtableBases = "external-integration--airtable--get--bases",
|
|
5177
|
+
GoogleWorkspaceOrgUnits = "external-integration--google--get--workspace-org-units",
|
|
5178
|
+
GoogleWorkspaceUsers = "external-integration--google--get--workspace-users",
|
|
5179
|
+
GoogleWorkspaceUserAccessTokens = "external-integration--google--get--workspace-user-access-tokens",
|
|
5180
|
+
GoogleDriveFetchDocument = "external-integration--google-drive--get--fetch-document",
|
|
5181
|
+
GoogleDriveFetchGoogleSheet = "external-integration--google-drive--get--fetch-google-sheet",
|
|
5182
|
+
GoogleDriveFetchGoogleDoc = "external-integration--google-drive--get--fetch-google-doc",
|
|
5183
|
+
GoogleDriveFolderContent = "external-integration--google-drive--get--folder-content",
|
|
5184
|
+
GoogleDriveUploadDocument = "external-integration--google-drive--post--upload-document",
|
|
5185
|
+
GoogleDriveListDrives = "external-integration--google-drive--get--list-drives",
|
|
5186
|
+
GoogleDriveDocuments = "external-integration--google-drive--get--documents",
|
|
5187
|
+
GoogleDriveFolders = "external-integration--google-drive--get--folders",
|
|
5188
|
+
GoogleMailSendEmail = "external-integration--google-mail--post--send-email",
|
|
5189
|
+
GoogleMailFetchAttachment = "external-integration--google-mail--get--fetch-attachment",
|
|
5190
|
+
GoogleMailEmails = "external-integration--google-mail--get--emails",
|
|
5191
|
+
GoogleMailLabels = "external-integration--google-mail--get--labels",
|
|
5192
|
+
GoogleSheetFetchSpreadsheet = "external-integration--google-sheet--get--fetch-spreadsheet",
|
|
5193
|
+
JiraCreateIssue = "external-integration--jira--post--create-issue",
|
|
5194
|
+
JiraIssues = "external-integration--jira--get--issues",
|
|
5195
|
+
JiraProjects = "external-integration--jira--get--projects",
|
|
5196
|
+
JiraIssueTypes = "external-integration--jira--get--issue-types",
|
|
5197
|
+
SlackSendMessage = "external-integration--slack--post--send-message",
|
|
5198
|
+
SlackUsers = "external-integration--slack--get--users",
|
|
5199
|
+
SlackChannels = "external-integration--slack--get--channels",
|
|
5200
|
+
SlackMessages = "external-integration--slack--get--messages"
|
|
5201
|
+
}
|
|
5202
|
+
|
|
5203
|
+
export declare enum ExternalIntegrationRootProviders {
|
|
5204
|
+
'1password-scim' = "1password-scim",
|
|
5205
|
+
'accelo' = "accelo",
|
|
5206
|
+
'active-campaign' = "active-campaign",
|
|
5207
|
+
'acuity-scheduling' = "acuity-scheduling",
|
|
5208
|
+
'adobe' = "adobe",
|
|
5209
|
+
'adobe-umapi' = "adobe-umapi",
|
|
5210
|
+
'adp' = "adp",
|
|
5211
|
+
'adyen' = "adyen",
|
|
5212
|
+
'affinity' = "affinity",
|
|
5213
|
+
'aircall' = "aircall",
|
|
5214
|
+
'airtable' = "airtable",
|
|
4460
5215
|
'airtable-pat' = "airtable-pat",
|
|
4461
|
-
|
|
4462
|
-
|
|
4463
|
-
|
|
4464
|
-
|
|
4465
|
-
|
|
4466
|
-
|
|
5216
|
+
'autodesk' = "autodesk",
|
|
5217
|
+
'algolia' = "algolia",
|
|
5218
|
+
'amazon' = "amazon",
|
|
5219
|
+
'amazon-selling-partner' = "amazon-selling-partner",
|
|
5220
|
+
'amazon-selling-partner-beta' = "amazon-selling-partner-beta",
|
|
5221
|
+
'anrok' = "anrok",
|
|
5222
|
+
'amplitude' = "amplitude",
|
|
5223
|
+
'anthropic' = "anthropic",
|
|
5224
|
+
'anthropic-admin' = "anthropic-admin",
|
|
5225
|
+
'apaleo' = "apaleo",
|
|
5226
|
+
'apollo' = "apollo",
|
|
5227
|
+
'apollo-oauth' = "apollo-oauth",
|
|
5228
|
+
'apple-app-store' = "apple-app-store",
|
|
5229
|
+
'appstle-subscriptions' = "appstle-subscriptions",
|
|
5230
|
+
'asana' = "asana",
|
|
5231
|
+
'asana-scim' = "asana-scim",
|
|
5232
|
+
'ashby' = "ashby",
|
|
5233
|
+
'atlas-so' = "atlas-so",
|
|
5234
|
+
'atlassian' = "atlassian",
|
|
5235
|
+
'atlassian-admin' = "atlassian-admin",
|
|
5236
|
+
'attio' = "attio",
|
|
5237
|
+
'auth0' = "auth0",
|
|
5238
|
+
'auth0-cc' = "auth0-cc",
|
|
5239
|
+
'avalara' = "avalara",
|
|
4467
5240
|
'avalara-sandbox' = "avalara-sandbox",
|
|
5241
|
+
'aws' = "aws",
|
|
4468
5242
|
'aws-iam' = "aws-iam",
|
|
5243
|
+
'aws-scim' = "aws-scim",
|
|
5244
|
+
'azure-devops' = "azure-devops",
|
|
5245
|
+
'bamboohr' = "bamboohr",
|
|
4469
5246
|
'bamboohr-basic' = "bamboohr-basic",
|
|
4470
5247
|
'basecamp' = "basecamp",
|
|
4471
|
-
'
|
|
5248
|
+
'battlenet' = "battlenet",
|
|
5249
|
+
'beehiiv' = "beehiiv",
|
|
5250
|
+
'bigcommerce' = "bigcommerce",
|
|
4472
5251
|
'bill-sandbox' = "bill-sandbox",
|
|
5252
|
+
'bill' = "bill",
|
|
5253
|
+
'bitbucket' = "bitbucket",
|
|
4473
5254
|
'bitdefender' = "bitdefender",
|
|
5255
|
+
'bitly' = "bitly",
|
|
5256
|
+
'blackbaud' = "blackbaud",
|
|
5257
|
+
'blackbaud-basic' = "blackbaud-basic",
|
|
5258
|
+
'blandai' = "blandai",
|
|
5259
|
+
'boldsign' = "boldsign",
|
|
4474
5260
|
'box' = "box",
|
|
5261
|
+
'booking-com' = "booking-com",
|
|
5262
|
+
'braintree' = "braintree",
|
|
5263
|
+
'braintree-sandbox' = "braintree-sandbox",
|
|
5264
|
+
'braze' = "braze",
|
|
5265
|
+
'brevo-api-key' = "brevo-api-key",
|
|
5266
|
+
'brex' = "brex",
|
|
5267
|
+
'brex-api-key' = "brex-api-key",
|
|
5268
|
+
'brex-staging' = "brex-staging",
|
|
4475
5269
|
'brightcrowd' = "brightcrowd",
|
|
5270
|
+
'builder-io-private' = "builder-io-private",
|
|
5271
|
+
'builder-io-public' = "builder-io-public",
|
|
5272
|
+
'buildium' = "buildium",
|
|
5273
|
+
'builtwith' = "builtwith",
|
|
5274
|
+
'cal-com-v1' = "cal-com-v1",
|
|
4476
5275
|
'cal-com-v2' = "cal-com-v2",
|
|
4477
5276
|
'calendly' = "calendly",
|
|
5277
|
+
'callrail' = "callrail",
|
|
5278
|
+
'canny' = "canny",
|
|
5279
|
+
'canva' = "canva",
|
|
5280
|
+
'canva-scim' = "canva-scim",
|
|
5281
|
+
'certn' = "certn",
|
|
5282
|
+
'certn-partner' = "certn-partner",
|
|
5283
|
+
'chargebee' = "chargebee",
|
|
5284
|
+
'chattermill' = "chattermill",
|
|
5285
|
+
'checkhq' = "checkhq",
|
|
4478
5286
|
'checkr-partner' = "checkr-partner",
|
|
4479
5287
|
'checkr-partner-staging' = "checkr-partner-staging",
|
|
5288
|
+
'checkout-com' = "checkout-com",
|
|
5289
|
+
'checkout-com-sandbox' = "checkout-com-sandbox",
|
|
5290
|
+
'chorus' = "chorus",
|
|
5291
|
+
'circle-so' = "circle-so",
|
|
4480
5292
|
'clari-copilot' = "clari-copilot",
|
|
4481
5293
|
'clicksend' = "clicksend",
|
|
4482
|
-
'
|
|
5294
|
+
'clickup' = "clickup",
|
|
5295
|
+
'cloudentity' = "cloudentity",
|
|
5296
|
+
'close' = "close",
|
|
5297
|
+
'coda' = "coda",
|
|
5298
|
+
'codeclimate' = "codeclimate",
|
|
5299
|
+
'codegen' = "codegen",
|
|
5300
|
+
'commercetools' = "commercetools",
|
|
5301
|
+
'companycam' = "companycam",
|
|
5302
|
+
'copper' = "copper",
|
|
5303
|
+
'copper-api-key' = "copper-api-key",
|
|
5304
|
+
'connectwise-psa' = "connectwise-psa",
|
|
5305
|
+
'connectwise-psa-staging' = "connectwise-psa-staging",
|
|
5306
|
+
'confluence-basic' = "confluence-basic",
|
|
5307
|
+
'contentful' = "contentful",
|
|
5308
|
+
'contentstack' = "contentstack",
|
|
5309
|
+
'coros' = "coros",
|
|
5310
|
+
'coros-sandbox' = "coros-sandbox",
|
|
5311
|
+
'coupa-compass' = "coupa-compass",
|
|
5312
|
+
'cyberimpact' = "cyberimpact",
|
|
5313
|
+
'databricks-account' = "databricks-account",
|
|
4483
5314
|
'databricks-workspace' = "databricks-workspace",
|
|
5315
|
+
'datev' = "datev",
|
|
4484
5316
|
'datadog' = "datadog",
|
|
5317
|
+
'deel' = "deel",
|
|
5318
|
+
'deel-sandbox' = "deel-sandbox",
|
|
5319
|
+
'devin' = "devin",
|
|
4485
5320
|
'dialpad' = "dialpad",
|
|
4486
5321
|
'dialpad-sandbox' = "dialpad-sandbox",
|
|
5322
|
+
'digitalocean' = "digitalocean",
|
|
5323
|
+
'discord' = "discord",
|
|
4487
5324
|
'discourse' = "discourse",
|
|
5325
|
+
'dixa' = "dixa",
|
|
5326
|
+
'document360' = "document360",
|
|
4488
5327
|
'docusign' = "docusign",
|
|
4489
5328
|
'docusign-sandbox' = "docusign-sandbox",
|
|
5329
|
+
'docuware' = "docuware",
|
|
4490
5330
|
'dropbox' = "dropbox",
|
|
5331
|
+
'dropbox-sign' = "dropbox-sign",
|
|
5332
|
+
'drupal' = "drupal",
|
|
5333
|
+
'emarsys' = "emarsys",
|
|
5334
|
+
'emarsys-oauth' = "emarsys-oauth",
|
|
5335
|
+
'employment-hero' = "employment-hero",
|
|
5336
|
+
'ebay' = "ebay",
|
|
5337
|
+
'ebay-sandbox' = "ebay-sandbox",
|
|
5338
|
+
'e-conomic' = "e-conomic",
|
|
5339
|
+
'egnyte' = "egnyte",
|
|
5340
|
+
'elevenlabs' = "elevenlabs",
|
|
5341
|
+
'elevio' = "elevio",
|
|
5342
|
+
'entrata' = "entrata",
|
|
5343
|
+
'envoy' = "envoy",
|
|
5344
|
+
'epic-games' = "epic-games",
|
|
4491
5345
|
'evaluagent' = "evaluagent",
|
|
5346
|
+
'eventbrite' = "eventbrite",
|
|
5347
|
+
'exa' = "exa",
|
|
4492
5348
|
'exact-online' = "exact-online",
|
|
5349
|
+
'exist' = "exist",
|
|
4493
5350
|
'expensify' = "expensify",
|
|
5351
|
+
'factorial' = "factorial",
|
|
5352
|
+
'facebook' = "facebook",
|
|
5353
|
+
'fathom' = "fathom",
|
|
5354
|
+
'figma' = "figma",
|
|
5355
|
+
'figma-scim' = "figma-scim",
|
|
5356
|
+
'falai' = "falai",
|
|
5357
|
+
'findymail' = "findymail",
|
|
5358
|
+
'firefish' = "firefish",
|
|
4494
5359
|
'fireflies' = "fireflies",
|
|
5360
|
+
'fiserv' = "fiserv",
|
|
5361
|
+
'fiserv-api-key' = "fiserv-api-key",
|
|
5362
|
+
'fitbit' = "fitbit",
|
|
5363
|
+
'fortnox' = "fortnox",
|
|
5364
|
+
'freshbooks' = "freshbooks",
|
|
4495
5365
|
'freshdesk' = "freshdesk",
|
|
5366
|
+
'freshsales' = "freshsales",
|
|
5367
|
+
'freshservice' = "freshservice",
|
|
5368
|
+
'freshteam' = "freshteam",
|
|
4496
5369
|
'front' = "front",
|
|
5370
|
+
'gainsight-cc' = "gainsight-cc",
|
|
5371
|
+
'garmin' = "garmin",
|
|
5372
|
+
'gebruder-weiss' = "gebruder-weiss",
|
|
5373
|
+
'google-gemini' = "google-gemini",
|
|
4497
5374
|
'gem' = "gem",
|
|
5375
|
+
'gerrit' = "gerrit",
|
|
5376
|
+
'grammarly' = "grammarly",
|
|
5377
|
+
'grammarly-scim' = "grammarly-scim",
|
|
5378
|
+
'guru' = "guru",
|
|
5379
|
+
'guru-scim' = "guru-scim",
|
|
4498
5380
|
'github' = "github",
|
|
4499
|
-
'github-
|
|
4500
|
-
'
|
|
5381
|
+
'github-pat' = "github-pat",
|
|
5382
|
+
'gitlab' = "gitlab",
|
|
5383
|
+
'ghost-admin' = "ghost-admin",
|
|
5384
|
+
'ghost-content' = "ghost-content",
|
|
4501
5385
|
'gong' = "gong",
|
|
4502
5386
|
'gong-oauth' = "gong-oauth",
|
|
4503
5387
|
'google' = "google",
|
|
4504
|
-
'google-
|
|
4505
|
-
'google-docs' = "google-docs",
|
|
4506
|
-
'google-drive' = "google-drive",
|
|
4507
|
-
'google-mail' = "google-mail",
|
|
4508
|
-
'google-sheet' = "google-sheet",
|
|
5388
|
+
'google-play' = "google-play",
|
|
4509
5389
|
'gorgias' = "gorgias",
|
|
4510
5390
|
'gorgias-basic' = "gorgias-basic",
|
|
4511
|
-
'
|
|
5391
|
+
'grafana' = "grafana",
|
|
5392
|
+
'grain' = "grain",
|
|
5393
|
+
'grain-api-key' = "grain-api-key",
|
|
5394
|
+
'greenhouse' = "greenhouse",
|
|
4512
5395
|
'greenhouse-basic' = "greenhouse-basic",
|
|
5396
|
+
'greenhouse-harvest' = "greenhouse-harvest",
|
|
5397
|
+
'greenhouse-job-board' = "greenhouse-job-board",
|
|
5398
|
+
'greenhouse-assessment' = "greenhouse-assessment",
|
|
5399
|
+
'greenhouse-ingestion' = "greenhouse-ingestion",
|
|
5400
|
+
'greenhouse-onboarding' = "greenhouse-onboarding",
|
|
5401
|
+
'gumroad' = "gumroad",
|
|
4513
5402
|
'gusto' = "gusto",
|
|
4514
5403
|
'gusto-demo' = "gusto-demo",
|
|
4515
5404
|
'hackerrank-work' = "hackerrank-work",
|
|
4516
5405
|
'harvest' = "harvest",
|
|
5406
|
+
'health-gorilla' = "health-gorilla",
|
|
4517
5407
|
'hibob-service-user' = "hibob-service-user",
|
|
5408
|
+
'highlevel' = "highlevel",
|
|
5409
|
+
'highlevel-white-label' = "highlevel-white-label",
|
|
5410
|
+
'holded' = "holded",
|
|
4518
5411
|
'hubspot' = "hubspot",
|
|
5412
|
+
'incident-io' = "incident-io",
|
|
5413
|
+
'insightly' = "insightly",
|
|
4519
5414
|
'instantly' = "instantly",
|
|
5415
|
+
'instagram' = "instagram",
|
|
4520
5416
|
'intercom' = "intercom",
|
|
5417
|
+
'intuit' = "intuit",
|
|
5418
|
+
'jamf' = "jamf",
|
|
5419
|
+
'jamf-basic' = "jamf-basic",
|
|
5420
|
+
'jazzhr' = "jazzhr",
|
|
4521
5421
|
'jira' = "jira",
|
|
4522
5422
|
'jira-basic' = "jira-basic",
|
|
5423
|
+
'jira-data-center' = "jira-data-center",
|
|
5424
|
+
'jira-data-center-api-key' = "jira-data-center-api-key",
|
|
5425
|
+
'jira-data-center-basic' = "jira-data-center-basic",
|
|
5426
|
+
'jobadder' = "jobadder",
|
|
5427
|
+
'jobvite' = "jobvite",
|
|
5428
|
+
'jotform' = "jotform",
|
|
5429
|
+
'helpscout-docs' = "helpscout-docs",
|
|
5430
|
+
'helpscout-mailbox' = "helpscout-mailbox",
|
|
5431
|
+
'kandji' = "kandji",
|
|
5432
|
+
'keap' = "keap",
|
|
4523
5433
|
'keeper-scim' = "keeper-scim",
|
|
5434
|
+
'klipfolio' = "klipfolio",
|
|
5435
|
+
'klaviyo' = "klaviyo",
|
|
5436
|
+
'klaviyo-oauth' = "klaviyo-oauth",
|
|
4524
5437
|
'kustomer' = "kustomer",
|
|
5438
|
+
'lagrowthmachine' = "lagrowthmachine",
|
|
4525
5439
|
'lastpass' = "lastpass",
|
|
4526
5440
|
'lattice' = "lattice",
|
|
4527
|
-
'
|
|
5441
|
+
'lessonly' = "lessonly",
|
|
5442
|
+
'lemlist' = "lemlist",
|
|
4528
5443
|
'lever' = "lever",
|
|
4529
5444
|
'lever-basic' = "lever-basic",
|
|
4530
|
-
'lever-basic-sandbox' = "lever-basic-sandbox",
|
|
4531
5445
|
'lever-sandbox' = "lever-sandbox",
|
|
5446
|
+
'lever-basic-sandbox' = "lever-basic-sandbox",
|
|
4532
5447
|
'linear' = "linear",
|
|
4533
5448
|
'linkedin' = "linkedin",
|
|
5449
|
+
'linkhut' = "linkhut",
|
|
5450
|
+
'loom-scim' = "loom-scim",
|
|
5451
|
+
'loops-so' = "loops-so",
|
|
5452
|
+
'lucid-scim' = "lucid-scim",
|
|
4534
5453
|
'luma' = "luma",
|
|
5454
|
+
'listmonk' = "listmonk",
|
|
5455
|
+
'make' = "make",
|
|
5456
|
+
'mailgun' = "mailgun",
|
|
5457
|
+
'mailchimp' = "mailchimp",
|
|
5458
|
+
'manatal' = "manatal",
|
|
5459
|
+
'marketo' = "marketo",
|
|
5460
|
+
'malwarebytes' = "malwarebytes",
|
|
5461
|
+
'medallia' = "medallia",
|
|
4535
5462
|
'metabase' = "metabase",
|
|
4536
|
-
'microsoft
|
|
4537
|
-
'
|
|
5463
|
+
'microsoft' = "microsoft",
|
|
5464
|
+
'microsoft-oauth2-cc' = "microsoft-oauth2-cc",
|
|
5465
|
+
'microsoft-tenant-specific' = "microsoft-tenant-specific",
|
|
5466
|
+
'microsoft-business-central' = "microsoft-business-central",
|
|
5467
|
+
'mindbody' = "mindbody",
|
|
5468
|
+
'minimax' = "minimax",
|
|
5469
|
+
'mip-cloud' = "mip-cloud",
|
|
5470
|
+
'mip-on-premise' = "mip-on-premise",
|
|
5471
|
+
'mixpanel' = "mixpanel",
|
|
5472
|
+
'miro' = "miro",
|
|
5473
|
+
'miro-scim' = "miro-scim",
|
|
5474
|
+
'missive' = "missive",
|
|
5475
|
+
'monday' = "monday",
|
|
5476
|
+
'mural' = "mural",
|
|
5477
|
+
'nationbuilder' = "nationbuilder",
|
|
5478
|
+
'namely' = "namely",
|
|
5479
|
+
'namely-pat' = "namely-pat",
|
|
5480
|
+
'netsuite' = "netsuite",
|
|
4538
5481
|
'next-cloud-ocs' = "next-cloud-ocs",
|
|
4539
5482
|
'notion' = "notion",
|
|
5483
|
+
'notion-scim' = "notion-scim",
|
|
5484
|
+
'odoo' = "odoo",
|
|
5485
|
+
'odoo-cc' = "odoo-cc",
|
|
4540
5486
|
'okta' = "okta",
|
|
4541
|
-
'
|
|
4542
|
-
'
|
|
5487
|
+
'openai' = "openai",
|
|
5488
|
+
'openai-admin' = "openai-admin",
|
|
5489
|
+
'open-hands' = "open-hands",
|
|
4543
5490
|
'oracle-hcm' = "oracle-hcm",
|
|
4544
|
-
'
|
|
5491
|
+
'ory' = "ory",
|
|
5492
|
+
'osu' = "osu",
|
|
5493
|
+
'oura' = "oura",
|
|
5494
|
+
'outreach' = "outreach",
|
|
5495
|
+
'pagerduty' = "pagerduty",
|
|
5496
|
+
'pandadoc' = "pandadoc",
|
|
5497
|
+
'pandadoc-api-key' = "pandadoc-api-key",
|
|
5498
|
+
'paychex' = "paychex",
|
|
5499
|
+
'payfit' = "payfit",
|
|
4545
5500
|
'paylocity' = "paylocity",
|
|
5501
|
+
'paypal' = "paypal",
|
|
5502
|
+
'paypal-sandbox' = "paypal-sandbox",
|
|
5503
|
+
'pendo' = "pendo",
|
|
4546
5504
|
'pennylane' = "pennylane",
|
|
5505
|
+
'peopledatalabs' = "peopledatalabs",
|
|
5506
|
+
'perplexity' = "perplexity",
|
|
4547
5507
|
'perimeter81' = "perimeter81",
|
|
5508
|
+
'personio' = "personio",
|
|
5509
|
+
'personio-v2' = "personio-v2",
|
|
5510
|
+
'personio-recruiting' = "personio-recruiting",
|
|
5511
|
+
'pingboard' = "pingboard",
|
|
5512
|
+
'pinterest' = "pinterest",
|
|
4548
5513
|
'pipedrive' = "pipedrive",
|
|
5514
|
+
'pivotaltracker' = "pivotaltracker",
|
|
5515
|
+
'plain' = "plain",
|
|
5516
|
+
'podium' = "podium",
|
|
5517
|
+
'posthog' = "posthog",
|
|
5518
|
+
'prive' = "prive",
|
|
5519
|
+
'precisefp' = "precisefp",
|
|
5520
|
+
'productboard' = "productboard",
|
|
5521
|
+
'qualtrics' = "qualtrics",
|
|
5522
|
+
'quickbase' = "quickbase",
|
|
4549
5523
|
'quickbooks' = "quickbooks",
|
|
4550
|
-
'
|
|
5524
|
+
'ragieai' = "ragieai",
|
|
4551
5525
|
'ramp' = "ramp",
|
|
4552
5526
|
'ramp-sandbox' = "ramp-sandbox",
|
|
5527
|
+
'rapidapi' = "rapidapi",
|
|
5528
|
+
'razorpay' = "razorpay",
|
|
5529
|
+
'readwise' = "readwise",
|
|
5530
|
+
'readwise-reader' = "readwise-reader",
|
|
4553
5531
|
'recharge' = "recharge",
|
|
5532
|
+
'recruitcrm' = "recruitcrm",
|
|
4554
5533
|
'recruiterflow' = "recruiterflow",
|
|
5534
|
+
'reddit' = "reddit",
|
|
5535
|
+
'redtail-crm-sandbox' = "redtail-crm-sandbox",
|
|
5536
|
+
'refiner' = "refiner",
|
|
5537
|
+
'replicate' = "replicate",
|
|
5538
|
+
'retell-ai' = "retell-ai",
|
|
4555
5539
|
'ring-central' = "ring-central",
|
|
4556
5540
|
'ring-central-sandbox' = "ring-central-sandbox",
|
|
5541
|
+
'rippling' = "rippling",
|
|
5542
|
+
'rippling-shop-app' = "rippling-shop-app",
|
|
5543
|
+
'roam-scim' = "roam-scim",
|
|
5544
|
+
'rock-gym-pro' = "rock-gym-pro",
|
|
5545
|
+
'rootly' = "rootly",
|
|
5546
|
+
'segment' = "segment",
|
|
5547
|
+
'sage' = "sage",
|
|
5548
|
+
'sage-hr' = "sage-hr",
|
|
4557
5549
|
'sage-intacct-oauth' = "sage-intacct-oauth",
|
|
5550
|
+
'sage-intacct' = "sage-intacct",
|
|
4558
5551
|
'salesforce' = "salesforce",
|
|
4559
5552
|
'salesforce-sandbox' = "salesforce-sandbox",
|
|
5553
|
+
'salesforce-experience-cloud' = "salesforce-experience-cloud",
|
|
5554
|
+
'salesforce-cdp' = "salesforce-cdp",
|
|
5555
|
+
'sap-concur' = "sap-concur",
|
|
4560
5556
|
'sap-success-factors' = "sap-success-factors",
|
|
4561
|
-
'
|
|
5557
|
+
'scrapedo' = "scrapedo",
|
|
5558
|
+
'salesloft' = "salesloft",
|
|
5559
|
+
'sendgrid' = "sendgrid",
|
|
5560
|
+
'sentry' = "sentry",
|
|
5561
|
+
'sentry-oauth' = "sentry-oauth",
|
|
5562
|
+
'sedna' = "sedna",
|
|
5563
|
+
'sedna-basic' = "sedna-basic",
|
|
5564
|
+
'servicem8' = "servicem8",
|
|
5565
|
+
'signnow' = "signnow",
|
|
5566
|
+
'signnow-sandbox' = "signnow-sandbox",
|
|
5567
|
+
'servicenow' = "servicenow",
|
|
5568
|
+
'sharepoint-online-oauth2-cc' = "sharepoint-online-oauth2-cc",
|
|
5569
|
+
'sharepoint-online-v1' = "sharepoint-online-v1",
|
|
5570
|
+
'shipstation' = "shipstation",
|
|
4562
5571
|
'shopify' = "shopify",
|
|
5572
|
+
'shopify-api-key' = "shopify-api-key",
|
|
5573
|
+
'shopify-partner' = "shopify-partner",
|
|
5574
|
+
'shopify-scim' = "shopify-scim",
|
|
5575
|
+
'shortcut' = "shortcut",
|
|
4563
5576
|
'slack' = "slack",
|
|
5577
|
+
'smartlead-ai' = "smartlead-ai",
|
|
5578
|
+
'smartrecruiters-api-key' = "smartrecruiters-api-key",
|
|
4564
5579
|
'smartsheet' = "smartsheet",
|
|
5580
|
+
'smugmug' = "smugmug",
|
|
5581
|
+
'snowflake' = "snowflake",
|
|
5582
|
+
'snowflake-jwt' = "snowflake-jwt",
|
|
5583
|
+
'splitwise' = "splitwise",
|
|
5584
|
+
'spotify' = "spotify",
|
|
5585
|
+
'spotify-oauth2-cc' = "spotify-oauth2-cc",
|
|
5586
|
+
'squarespace' = "squarespace",
|
|
5587
|
+
'squareup' = "squareup",
|
|
5588
|
+
'squareup-sandbox' = "squareup-sandbox",
|
|
5589
|
+
'stackexchange' = "stackexchange",
|
|
5590
|
+
'strava' = "strava",
|
|
5591
|
+
'strava-web' = "strava-web",
|
|
5592
|
+
'stripe' = "stripe",
|
|
5593
|
+
'stripe-express' = "stripe-express",
|
|
4565
5594
|
'stripe-app' = "stripe-app",
|
|
4566
5595
|
'stripe-app-sandbox' = "stripe-app-sandbox",
|
|
5596
|
+
'supabase' = "supabase",
|
|
5597
|
+
'survey-monkey' = "survey-monkey",
|
|
5598
|
+
'tapclicks' = "tapclicks",
|
|
5599
|
+
'tableau' = "tableau",
|
|
4567
5600
|
'teamtailor' = "teamtailor",
|
|
5601
|
+
'teamwork' = "teamwork",
|
|
5602
|
+
'terraform' = "terraform",
|
|
5603
|
+
'ticktick' = "ticktick",
|
|
5604
|
+
'tiktok-accounts' = "tiktok-accounts",
|
|
5605
|
+
'tiktok-ads' = "tiktok-ads",
|
|
5606
|
+
'timely' = "timely",
|
|
5607
|
+
'thrivecart-oauth' = "thrivecart-oauth",
|
|
5608
|
+
'thrivecart-api-key' = "thrivecart-api-key",
|
|
5609
|
+
'trakstar-hire' = "trakstar-hire",
|
|
5610
|
+
'trafft' = "trafft",
|
|
5611
|
+
'tremendous' = "tremendous",
|
|
5612
|
+
'tremendous-sandbox' = "tremendous-sandbox",
|
|
5613
|
+
'trello' = "trello",
|
|
5614
|
+
'trello-scim' = "trello-scim",
|
|
5615
|
+
'tldv' = "tldv",
|
|
5616
|
+
'tsheetsteam' = "tsheetsteam",
|
|
5617
|
+
'todoist' = "todoist",
|
|
5618
|
+
'tumblr' = "tumblr",
|
|
5619
|
+
'twitch' = "twitch",
|
|
5620
|
+
'twitter' = "twitter",
|
|
5621
|
+
'twitter-v2' = "twitter-v2",
|
|
5622
|
+
'twitter-oauth2-cc' = "twitter-oauth2-cc",
|
|
5623
|
+
'twinfield' = "twinfield",
|
|
5624
|
+
'twenty-crm' = "twenty-crm",
|
|
5625
|
+
'twenty-crm-self-hosted' = "twenty-crm-self-hosted",
|
|
5626
|
+
'twilio' = "twilio",
|
|
5627
|
+
'typeform' = "typeform",
|
|
5628
|
+
'typefully' = "typefully",
|
|
5629
|
+
'uber' = "uber",
|
|
5630
|
+
'ukg-pro-wfm' = "ukg-pro-wfm",
|
|
5631
|
+
'ukg-pro' = "ukg-pro",
|
|
5632
|
+
'ukg-ready' = "ukg-ready",
|
|
4568
5633
|
'unanet' = "unanet",
|
|
5634
|
+
'unauthenticated' = "unauthenticated",
|
|
5635
|
+
'unipile' = "unipile",
|
|
5636
|
+
'vercel' = "vercel",
|
|
5637
|
+
'vimeo' = "vimeo",
|
|
5638
|
+
'vimeo-basic' = "vimeo-basic",
|
|
5639
|
+
'wakatime' = "wakatime",
|
|
5640
|
+
'wave-accounting' = "wave-accounting",
|
|
5641
|
+
'wealthbox' = "wealthbox",
|
|
5642
|
+
'webflow' = "webflow",
|
|
5643
|
+
'whatsapp-business' = "whatsapp-business",
|
|
5644
|
+
'whoop' = "whoop",
|
|
4569
5645
|
'wildix-pbx' = "wildix-pbx",
|
|
5646
|
+
'wordpress' = "wordpress",
|
|
4570
5647
|
'woocommerce' = "woocommerce",
|
|
4571
5648
|
'workable' = "workable",
|
|
5649
|
+
'workable-oauth' = "workable-oauth",
|
|
4572
5650
|
'workday' = "workday",
|
|
5651
|
+
'workday-oauth' = "workday-oauth",
|
|
5652
|
+
'wrike' = "wrike",
|
|
5653
|
+
'xai' = "xai",
|
|
4573
5654
|
'xero' = "xero",
|
|
5655
|
+
'xero-oauth2-cc' = "xero-oauth2-cc",
|
|
5656
|
+
'yahoo' = "yahoo",
|
|
5657
|
+
'yandex' = "yandex",
|
|
5658
|
+
'zapier' = "zapier",
|
|
5659
|
+
'zapier-nla' = "zapier-nla",
|
|
5660
|
+
'zapier-scim' = "zapier-scim",
|
|
4574
5661
|
'zendesk' = "zendesk",
|
|
4575
|
-
'
|
|
4576
|
-
'zoho
|
|
4577
|
-
'zoom' = "zoom"
|
|
4578
|
-
|
|
4579
|
-
|
|
4580
|
-
export declare enum ExternalIntegrationOperations {
|
|
4581
|
-
AirtableTables = "external-integration--airtable--get--tables",
|
|
4582
|
-
AirtableBases = "external-integration--airtable--get--bases",
|
|
4583
|
-
GoogleWorkspaceOrgUnits = "external-integration--google--get--workspace-org-units",
|
|
4584
|
-
GoogleWorkspaceUsers = "external-integration--google--get--workspace-users",
|
|
4585
|
-
GoogleWorkspaceUserAccessTokens = "external-integration--google--get--workspace-user-access-tokens",
|
|
4586
|
-
GoogleDriveFetchDocument = "external-integration--google-drive--get--fetch-document",
|
|
4587
|
-
GoogleDriveFetchGoogleSheet = "external-integration--google-drive--get--fetch-google-sheet",
|
|
4588
|
-
GoogleDriveFetchGoogleDoc = "external-integration--google-drive--get--fetch-google-doc",
|
|
4589
|
-
GoogleDriveFolderContent = "external-integration--google-drive--get--folder-content",
|
|
4590
|
-
GoogleDriveUploadDocument = "external-integration--google-drive--post--upload-document",
|
|
4591
|
-
GoogleDriveListDrives = "external-integration--google-drive--get--list-drives",
|
|
4592
|
-
GoogleDriveDocuments = "external-integration--google-drive--get--documents",
|
|
4593
|
-
GoogleDriveFolders = "external-integration--google-drive--get--folders",
|
|
4594
|
-
GoogleMailSendEmail = "external-integration--google-mail--post--send-email",
|
|
4595
|
-
GoogleMailFetchAttachment = "external-integration--google-mail--get--fetch-attachment",
|
|
4596
|
-
GoogleMailEmails = "external-integration--google-mail--get--emails",
|
|
4597
|
-
GoogleMailLabels = "external-integration--google-mail--get--labels",
|
|
4598
|
-
GoogleSheetFetchSpreadsheet = "external-integration--google-sheet--get--fetch-spreadsheet",
|
|
4599
|
-
JiraCreateIssue = "external-integration--jira--post--create-issue",
|
|
4600
|
-
JiraIssues = "external-integration--jira--get--issues",
|
|
4601
|
-
JiraProjects = "external-integration--jira--get--projects",
|
|
4602
|
-
JiraIssueTypes = "external-integration--jira--get--issue-types",
|
|
4603
|
-
SlackSendMessage = "external-integration--slack--post--send-message",
|
|
4604
|
-
SlackUsers = "external-integration--slack--get--users",
|
|
4605
|
-
SlackChannels = "external-integration--slack--get--channels",
|
|
4606
|
-
SlackMessages = "external-integration--slack--get--messages"
|
|
5662
|
+
'zenefits' = "zenefits",
|
|
5663
|
+
'zoho' = "zoho",
|
|
5664
|
+
'zoom' = "zoom",
|
|
5665
|
+
'zoominfo' = "zoominfo",
|
|
5666
|
+
'zuora' = "zuora"
|
|
4607
5667
|
}
|
|
4608
5668
|
|
|
4609
5669
|
export declare const fetchAttachmentIntegrationBuiltInActionDescriptorConnectionInputDataTypeTransfer: IDataTypeTransfer;
|
|
@@ -9032,6 +10092,8 @@ export declare function getRelationalDBInstanceNameFromEntityId(entityId: string
|
|
|
9032
10092
|
|
|
9033
10093
|
export declare function getRootEntryPointScopeOwner(entity: EntityState | Element_2 | ElementTransfer | ElementGenerationTarget | ElementShallowTransfer, project: ProjectState): EntityWithLogicScopeState | null;
|
|
9034
10094
|
|
|
10095
|
+
export declare function getRootExternalIntegrationFromAlias(_alias: ExternalIntegrationAliasProviders): ExternalIntegrationRootProviders;
|
|
10096
|
+
|
|
9035
10097
|
/**
|
|
9036
10098
|
* Recursively access 'parent' property until we find the first parent entity that can own scope, or the project
|
|
9037
10099
|
* @param entity EntityState or Element that has a 'parent' property
|
|
@@ -9579,6 +10641,24 @@ declare namespace globalEventValidation {
|
|
|
9579
10641
|
}
|
|
9580
10642
|
export { globalEventValidation }
|
|
9581
10643
|
|
|
10644
|
+
export declare const googleAuthExternalConnectionBuiltInBaseEntity: IBuiltInBaseEntityTransfer;
|
|
10645
|
+
|
|
10646
|
+
export declare const googleAuthExternalConnectionBuiltInBaseEntityConnectionIdProperty: IPropertyTransfer;
|
|
10647
|
+
|
|
10648
|
+
export declare const googleAuthExternalConnectionBuiltInBaseEntityConnectionIdPropertyDataType: IDataTypeTransfer;
|
|
10649
|
+
|
|
10650
|
+
export declare const googleAuthExternalConnectionBuiltInBaseEntityConnectionIdPropertyDataTypeParentRef: IPropertyReference;
|
|
10651
|
+
|
|
10652
|
+
export declare const googleAuthExternalConnectionBuiltInBaseEntityConnectionIdPropertyParentRef: IBuiltInBaseEntityReference;
|
|
10653
|
+
|
|
10654
|
+
export declare const googleAuthExternalConnectionBuiltInBaseEntityIntegrationProperty: IPropertyTransfer;
|
|
10655
|
+
|
|
10656
|
+
export declare const googleAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyDataTypeRef: IDataTypeReference;
|
|
10657
|
+
|
|
10658
|
+
export declare const googleAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyParentRef: IBuiltInBaseEntityReference;
|
|
10659
|
+
|
|
10660
|
+
export declare const googleAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyRef: IPropertyReference;
|
|
10661
|
+
|
|
9582
10662
|
export declare function groupCallsBasedOnParallelizableExecution(calls: DraggableCallableEntityState[]): DraggableCallableEntityState[][];
|
|
9583
10663
|
|
|
9584
10664
|
export declare enum GroupOperatorTypes {
|
|
@@ -12728,6 +13808,24 @@ export declare interface IVersionMetadata {
|
|
|
12728
13808
|
deleted: boolean;
|
|
12729
13809
|
}
|
|
12730
13810
|
|
|
13811
|
+
export declare const jiraAuthExternalConnectionBuiltInBaseEntity: IBuiltInBaseEntityTransfer;
|
|
13812
|
+
|
|
13813
|
+
export declare const jiraAuthExternalConnectionBuiltInBaseEntityConnectionIdProperty: IPropertyTransfer;
|
|
13814
|
+
|
|
13815
|
+
export declare const jiraAuthExternalConnectionBuiltInBaseEntityConnectionIdPropertyDataType: IDataTypeTransfer;
|
|
13816
|
+
|
|
13817
|
+
export declare const jiraAuthExternalConnectionBuiltInBaseEntityConnectionIdPropertyDataTypeParentRef: IPropertyReference;
|
|
13818
|
+
|
|
13819
|
+
export declare const jiraAuthExternalConnectionBuiltInBaseEntityConnectionIdPropertyParentRef: IBuiltInBaseEntityReference;
|
|
13820
|
+
|
|
13821
|
+
export declare const jiraAuthExternalConnectionBuiltInBaseEntityIntegrationProperty: IPropertyTransfer;
|
|
13822
|
+
|
|
13823
|
+
export declare const jiraAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyDataTypeRef: IDataTypeReference;
|
|
13824
|
+
|
|
13825
|
+
export declare const jiraAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyParentRef: IBuiltInBaseEntityReference;
|
|
13826
|
+
|
|
13827
|
+
export declare const jiraAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyRef: IPropertyReference;
|
|
13828
|
+
|
|
12731
13829
|
export declare const joinListOperation: IActionDescriptorTransfer;
|
|
12732
13830
|
|
|
12733
13831
|
export declare const joinListOperationError: IValueDescriptorTransfer;
|
|
@@ -13241,6 +14339,24 @@ export declare const messagesIntegrationBuiltInActionDescriptorTransfer: IAction
|
|
|
13241
14339
|
|
|
13242
14340
|
export declare const methodDefaultValue: ILiteralValueTransfer;
|
|
13243
14341
|
|
|
14342
|
+
export declare const microsoftAuthExternalConnectionBuiltInBaseEntity: IBuiltInBaseEntityTransfer;
|
|
14343
|
+
|
|
14344
|
+
export declare const microsoftAuthExternalConnectionBuiltInBaseEntityConnectionIdProperty: IPropertyTransfer;
|
|
14345
|
+
|
|
14346
|
+
export declare const microsoftAuthExternalConnectionBuiltInBaseEntityConnectionIdPropertyDataType: IDataTypeTransfer;
|
|
14347
|
+
|
|
14348
|
+
export declare const microsoftAuthExternalConnectionBuiltInBaseEntityConnectionIdPropertyDataTypeParentRef: IPropertyReference;
|
|
14349
|
+
|
|
14350
|
+
export declare const microsoftAuthExternalConnectionBuiltInBaseEntityConnectionIdPropertyParentRef: IBuiltInBaseEntityReference;
|
|
14351
|
+
|
|
14352
|
+
export declare const microsoftAuthExternalConnectionBuiltInBaseEntityIntegrationProperty: IPropertyTransfer;
|
|
14353
|
+
|
|
14354
|
+
export declare const microsoftAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyDataTypeRef: IDataTypeReference;
|
|
14355
|
+
|
|
14356
|
+
export declare const microsoftAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyParentRef: IBuiltInBaseEntityReference;
|
|
14357
|
+
|
|
14358
|
+
export declare const microsoftAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyRef: IPropertyReference;
|
|
14359
|
+
|
|
13244
14360
|
export declare const mockClientProject: IProjectTransfer;
|
|
13245
14361
|
|
|
13246
14362
|
export declare const moreThanOrEqualCondition: IActionDescriptorTransfer;
|
|
@@ -13424,6 +14540,24 @@ export declare const numberValueAutogenerationSchema: z_2.ZodUnion<[z_2.ZodObjec
|
|
|
13424
14540
|
rangeEnd: number;
|
|
13425
14541
|
}>]>;
|
|
13426
14542
|
|
|
14543
|
+
export declare const openaiAuthExternalConnectionBuiltInBaseEntity: IBuiltInBaseEntityTransfer;
|
|
14544
|
+
|
|
14545
|
+
export declare const openaiAuthExternalConnectionBuiltInBaseEntityConnectionIdProperty: IPropertyTransfer;
|
|
14546
|
+
|
|
14547
|
+
export declare const openaiAuthExternalConnectionBuiltInBaseEntityConnectionIdPropertyDataType: IDataTypeTransfer;
|
|
14548
|
+
|
|
14549
|
+
export declare const openaiAuthExternalConnectionBuiltInBaseEntityConnectionIdPropertyDataTypeParentRef: IPropertyReference;
|
|
14550
|
+
|
|
14551
|
+
export declare const openaiAuthExternalConnectionBuiltInBaseEntityConnectionIdPropertyParentRef: IBuiltInBaseEntityReference;
|
|
14552
|
+
|
|
14553
|
+
export declare const openaiAuthExternalConnectionBuiltInBaseEntityIntegrationProperty: IPropertyTransfer;
|
|
14554
|
+
|
|
14555
|
+
export declare const openaiAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyDataTypeRef: IDataTypeReference;
|
|
14556
|
+
|
|
14557
|
+
export declare const openaiAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyParentRef: IBuiltInBaseEntityReference;
|
|
14558
|
+
|
|
14559
|
+
export declare const openaiAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyRef: IPropertyReference;
|
|
14560
|
+
|
|
13427
14561
|
export declare const OPERATION_DECLARATIONS: {
|
|
13428
14562
|
[key: string]: IActionDescriptorTransfer;
|
|
13429
14563
|
};
|
|
@@ -16030,6 +17164,24 @@ export declare abstract class SharedStateFunctionality {
|
|
|
16030
17164
|
abstract getShallowErrors(): EntityError[];
|
|
16031
17165
|
}
|
|
16032
17166
|
|
|
17167
|
+
export declare const slackAuthExternalConnectionBuiltInBaseEntity: IBuiltInBaseEntityTransfer;
|
|
17168
|
+
|
|
17169
|
+
export declare const slackAuthExternalConnectionBuiltInBaseEntityConnectionIdProperty: IPropertyTransfer;
|
|
17170
|
+
|
|
17171
|
+
export declare const slackAuthExternalConnectionBuiltInBaseEntityConnectionIdPropertyDataType: IDataTypeTransfer;
|
|
17172
|
+
|
|
17173
|
+
export declare const slackAuthExternalConnectionBuiltInBaseEntityConnectionIdPropertyDataTypeParentRef: IPropertyReference;
|
|
17174
|
+
|
|
17175
|
+
export declare const slackAuthExternalConnectionBuiltInBaseEntityConnectionIdPropertyParentRef: IBuiltInBaseEntityReference;
|
|
17176
|
+
|
|
17177
|
+
export declare const slackAuthExternalConnectionBuiltInBaseEntityIntegrationProperty: IPropertyTransfer;
|
|
17178
|
+
|
|
17179
|
+
export declare const slackAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyDataTypeRef: IDataTypeReference;
|
|
17180
|
+
|
|
17181
|
+
export declare const slackAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyParentRef: IBuiltInBaseEntityReference;
|
|
17182
|
+
|
|
17183
|
+
export declare const slackAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyRef: IPropertyReference;
|
|
17184
|
+
|
|
16033
17185
|
export declare function sortCallsBasedOnExecutionDependencies(calls: DraggableCallableEntityState[]): DraggableCallableEntityState[];
|
|
16034
17186
|
|
|
16035
17187
|
export declare function sortChildrenEntitiesBasedOnExecutionDependencies(entity: CanvasEntityState): CanvasEntityState[];
|