veryfront 0.1.606 → 0.1.608
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/esm/cli/commands/init/catalog.d.ts.map +1 -1
- package/esm/cli/commands/init/catalog.js +7 -3
- package/esm/cli/mcp/tools/catalog-tools.d.ts +1 -1
- package/esm/cli/mcp/tools/catalog-tools.d.ts.map +1 -1
- package/esm/cli/mcp/tools/catalog-tools.js +61 -145
- package/esm/cli/templates/integration-loader.d.ts +9 -1
- package/esm/cli/templates/integration-loader.d.ts.map +1 -1
- package/esm/cli/templates/integration-loader.js +14 -3
- package/esm/deno.js +1 -1
- package/esm/extensions/ext-document-kreuzberg/src/index.d.ts.map +1 -1
- package/esm/extensions/ext-document-kreuzberg/src/index.js +12 -4
- package/esm/extensions/ext-document-kreuzberg/src/kreuzberg.d.ts.map +1 -1
- package/esm/extensions/ext-document-kreuzberg/src/kreuzberg.js +3 -1
- package/esm/extensions/ext-document-kreuzberg/src/runtime.d.ts +3 -0
- package/esm/extensions/ext-document-kreuzberg/src/runtime.d.ts.map +1 -0
- package/esm/extensions/ext-document-kreuzberg/src/runtime.js +26 -0
- package/esm/extensions/ext-document-kreuzberg/src/upload-extraction-worker.js +20 -0
- package/esm/src/integrations/_data.js +1 -1
- package/esm/src/integrations/feature-flags.d.ts +12 -0
- package/esm/src/integrations/feature-flags.d.ts.map +1 -0
- package/esm/src/integrations/feature-flags.js +118 -0
- package/esm/src/integrations/index.d.ts.map +1 -1
- package/esm/src/integrations/index.js +8 -5
- package/esm/src/integrations/schema.d.ts +4 -4
- package/esm/src/internal-agents/run-stream.d.ts +1 -0
- package/esm/src/internal-agents/run-stream.d.ts.map +1 -1
- package/esm/src/internal-agents/run-stream.js +34 -0
- package/esm/src/oauth/index.d.ts +5 -1
- package/esm/src/oauth/index.d.ts.map +1 -1
- package/esm/src/oauth/index.js +5 -1
- package/esm/src/oauth/providers/common.d.ts +27 -25
- package/esm/src/oauth/providers/common.d.ts.map +1 -1
- package/esm/src/oauth/providers/common.js +3 -1
- package/esm/src/utils/version-constant.d.ts +1 -1
- package/esm/src/utils/version-constant.js +1 -1
- package/package.json +1 -1
|
@@ -47,8 +47,8 @@ export declare const trelloConfig: OAuthServiceConfig;
|
|
|
47
47
|
export declare const clickupConfig: OAuthServiceConfig;
|
|
48
48
|
/** Configuration used by pipedrive. */
|
|
49
49
|
export declare const pipedriveConfig: OAuthServiceConfig;
|
|
50
|
-
|
|
51
|
-
github: {
|
|
50
|
+
declare const allCommonServices: {
|
|
51
|
+
readonly github: {
|
|
52
52
|
providerId: string;
|
|
53
53
|
displayName: string;
|
|
54
54
|
authorizationUrl: string;
|
|
@@ -73,7 +73,7 @@ export declare const commonServices: {
|
|
|
73
73
|
defaultScopes: string[];
|
|
74
74
|
apiBaseUrl: string;
|
|
75
75
|
};
|
|
76
|
-
slack: {
|
|
76
|
+
readonly slack: {
|
|
77
77
|
providerId: string;
|
|
78
78
|
displayName: string;
|
|
79
79
|
authorizationUrl: string;
|
|
@@ -98,7 +98,7 @@ export declare const commonServices: {
|
|
|
98
98
|
defaultScopes: string[];
|
|
99
99
|
apiBaseUrl: string;
|
|
100
100
|
};
|
|
101
|
-
notion: {
|
|
101
|
+
readonly notion: {
|
|
102
102
|
providerId: string;
|
|
103
103
|
displayName: string;
|
|
104
104
|
authorizationUrl: string;
|
|
@@ -123,7 +123,7 @@ export declare const commonServices: {
|
|
|
123
123
|
defaultScopes: string[];
|
|
124
124
|
apiBaseUrl: string;
|
|
125
125
|
};
|
|
126
|
-
figma: {
|
|
126
|
+
readonly figma: {
|
|
127
127
|
providerId: string;
|
|
128
128
|
displayName: string;
|
|
129
129
|
authorizationUrl: string;
|
|
@@ -148,7 +148,7 @@ export declare const commonServices: {
|
|
|
148
148
|
defaultScopes: string[];
|
|
149
149
|
apiBaseUrl: string;
|
|
150
150
|
};
|
|
151
|
-
linear: {
|
|
151
|
+
readonly linear: {
|
|
152
152
|
providerId: string;
|
|
153
153
|
displayName: string;
|
|
154
154
|
authorizationUrl: string;
|
|
@@ -173,7 +173,7 @@ export declare const commonServices: {
|
|
|
173
173
|
defaultScopes: string[];
|
|
174
174
|
apiBaseUrl: string;
|
|
175
175
|
};
|
|
176
|
-
gitlab: {
|
|
176
|
+
readonly gitlab: {
|
|
177
177
|
providerId: string;
|
|
178
178
|
displayName: string;
|
|
179
179
|
authorizationUrl: string;
|
|
@@ -198,7 +198,7 @@ export declare const commonServices: {
|
|
|
198
198
|
defaultScopes: string[];
|
|
199
199
|
apiBaseUrl: string;
|
|
200
200
|
};
|
|
201
|
-
airtable: {
|
|
201
|
+
readonly airtable: {
|
|
202
202
|
providerId: string;
|
|
203
203
|
displayName: string;
|
|
204
204
|
authorizationUrl: string;
|
|
@@ -223,7 +223,7 @@ export declare const commonServices: {
|
|
|
223
223
|
defaultScopes: string[];
|
|
224
224
|
apiBaseUrl: string;
|
|
225
225
|
};
|
|
226
|
-
hubspot: {
|
|
226
|
+
readonly hubspot: {
|
|
227
227
|
providerId: string;
|
|
228
228
|
displayName: string;
|
|
229
229
|
authorizationUrl: string;
|
|
@@ -248,7 +248,7 @@ export declare const commonServices: {
|
|
|
248
248
|
defaultScopes: string[];
|
|
249
249
|
apiBaseUrl: string;
|
|
250
250
|
};
|
|
251
|
-
salesforce: {
|
|
251
|
+
readonly salesforce: {
|
|
252
252
|
providerId: string;
|
|
253
253
|
displayName: string;
|
|
254
254
|
authorizationUrl: string;
|
|
@@ -273,7 +273,7 @@ export declare const commonServices: {
|
|
|
273
273
|
defaultScopes: string[];
|
|
274
274
|
apiBaseUrl: string;
|
|
275
275
|
};
|
|
276
|
-
twitter: {
|
|
276
|
+
readonly twitter: {
|
|
277
277
|
providerId: string;
|
|
278
278
|
displayName: string;
|
|
279
279
|
authorizationUrl: string;
|
|
@@ -298,7 +298,7 @@ export declare const commonServices: {
|
|
|
298
298
|
defaultScopes: string[];
|
|
299
299
|
apiBaseUrl: string;
|
|
300
300
|
};
|
|
301
|
-
asana: {
|
|
301
|
+
readonly asana: {
|
|
302
302
|
providerId: string;
|
|
303
303
|
displayName: string;
|
|
304
304
|
authorizationUrl: string;
|
|
@@ -323,7 +323,7 @@ export declare const commonServices: {
|
|
|
323
323
|
defaultScopes: string[];
|
|
324
324
|
apiBaseUrl: string;
|
|
325
325
|
};
|
|
326
|
-
monday: {
|
|
326
|
+
readonly monday: {
|
|
327
327
|
providerId: string;
|
|
328
328
|
displayName: string;
|
|
329
329
|
authorizationUrl: string;
|
|
@@ -348,7 +348,7 @@ export declare const commonServices: {
|
|
|
348
348
|
defaultScopes: string[];
|
|
349
349
|
apiBaseUrl: string;
|
|
350
350
|
};
|
|
351
|
-
zoom: {
|
|
351
|
+
readonly zoom: {
|
|
352
352
|
providerId: string;
|
|
353
353
|
displayName: string;
|
|
354
354
|
authorizationUrl: string;
|
|
@@ -373,7 +373,7 @@ export declare const commonServices: {
|
|
|
373
373
|
defaultScopes: string[];
|
|
374
374
|
apiBaseUrl: string;
|
|
375
375
|
};
|
|
376
|
-
intercom: {
|
|
376
|
+
readonly intercom: {
|
|
377
377
|
providerId: string;
|
|
378
378
|
displayName: string;
|
|
379
379
|
authorizationUrl: string;
|
|
@@ -398,7 +398,7 @@ export declare const commonServices: {
|
|
|
398
398
|
defaultScopes: string[];
|
|
399
399
|
apiBaseUrl: string;
|
|
400
400
|
};
|
|
401
|
-
freshdesk: {
|
|
401
|
+
readonly freshdesk: {
|
|
402
402
|
providerId: string;
|
|
403
403
|
displayName: string;
|
|
404
404
|
authorizationUrl: string;
|
|
@@ -423,7 +423,7 @@ export declare const commonServices: {
|
|
|
423
423
|
defaultScopes: string[];
|
|
424
424
|
apiBaseUrl: string;
|
|
425
425
|
};
|
|
426
|
-
mailchimp: {
|
|
426
|
+
readonly mailchimp: {
|
|
427
427
|
providerId: string;
|
|
428
428
|
displayName: string;
|
|
429
429
|
authorizationUrl: string;
|
|
@@ -448,7 +448,7 @@ export declare const commonServices: {
|
|
|
448
448
|
defaultScopes: string[];
|
|
449
449
|
apiBaseUrl: string;
|
|
450
450
|
};
|
|
451
|
-
shopify: {
|
|
451
|
+
readonly shopify: {
|
|
452
452
|
providerId: string;
|
|
453
453
|
displayName: string;
|
|
454
454
|
authorizationUrl: string;
|
|
@@ -473,7 +473,7 @@ export declare const commonServices: {
|
|
|
473
473
|
defaultScopes: string[];
|
|
474
474
|
apiBaseUrl: string;
|
|
475
475
|
};
|
|
476
|
-
quickbooks: {
|
|
476
|
+
readonly quickbooks: {
|
|
477
477
|
providerId: string;
|
|
478
478
|
displayName: string;
|
|
479
479
|
authorizationUrl: string;
|
|
@@ -498,7 +498,7 @@ export declare const commonServices: {
|
|
|
498
498
|
defaultScopes: string[];
|
|
499
499
|
apiBaseUrl: string;
|
|
500
500
|
};
|
|
501
|
-
xero: {
|
|
501
|
+
readonly xero: {
|
|
502
502
|
providerId: string;
|
|
503
503
|
displayName: string;
|
|
504
504
|
authorizationUrl: string;
|
|
@@ -523,7 +523,7 @@ export declare const commonServices: {
|
|
|
523
523
|
defaultScopes: string[];
|
|
524
524
|
apiBaseUrl: string;
|
|
525
525
|
};
|
|
526
|
-
box: {
|
|
526
|
+
readonly box: {
|
|
527
527
|
providerId: string;
|
|
528
528
|
displayName: string;
|
|
529
529
|
authorizationUrl: string;
|
|
@@ -548,7 +548,7 @@ export declare const commonServices: {
|
|
|
548
548
|
defaultScopes: string[];
|
|
549
549
|
apiBaseUrl: string;
|
|
550
550
|
};
|
|
551
|
-
webex: {
|
|
551
|
+
readonly webex: {
|
|
552
552
|
providerId: string;
|
|
553
553
|
displayName: string;
|
|
554
554
|
authorizationUrl: string;
|
|
@@ -573,7 +573,7 @@ export declare const commonServices: {
|
|
|
573
573
|
defaultScopes: string[];
|
|
574
574
|
apiBaseUrl: string;
|
|
575
575
|
};
|
|
576
|
-
trello: {
|
|
576
|
+
readonly trello: {
|
|
577
577
|
providerId: string;
|
|
578
578
|
displayName: string;
|
|
579
579
|
authorizationUrl: string;
|
|
@@ -598,7 +598,7 @@ export declare const commonServices: {
|
|
|
598
598
|
defaultScopes: string[];
|
|
599
599
|
apiBaseUrl: string;
|
|
600
600
|
};
|
|
601
|
-
clickup: {
|
|
601
|
+
readonly clickup: {
|
|
602
602
|
providerId: string;
|
|
603
603
|
displayName: string;
|
|
604
604
|
authorizationUrl: string;
|
|
@@ -623,7 +623,7 @@ export declare const commonServices: {
|
|
|
623
623
|
defaultScopes: string[];
|
|
624
624
|
apiBaseUrl: string;
|
|
625
625
|
};
|
|
626
|
-
pipedrive: {
|
|
626
|
+
readonly pipedrive: {
|
|
627
627
|
providerId: string;
|
|
628
628
|
displayName: string;
|
|
629
629
|
authorizationUrl: string;
|
|
@@ -649,4 +649,6 @@ export declare const commonServices: {
|
|
|
649
649
|
apiBaseUrl: string;
|
|
650
650
|
};
|
|
651
651
|
};
|
|
652
|
+
export declare const commonServices: Partial<typeof allCommonServices>;
|
|
653
|
+
export {};
|
|
652
654
|
//# sourceMappingURL=common.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"common.d.ts","sourceRoot":"","sources":["../../../../src/src/oauth/providers/common.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"common.d.ts","sourceRoot":"","sources":["../../../../src/src/oauth/providers/common.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,aAAa,CAAC;AAEtD,oCAAoC;AACpC,eAAO,MAAM,YAAY,EAAE,kBAU1B,CAAC;AAEF,mCAAmC;AACnC,eAAO,MAAM,WAAW,EAAE,kBAqBzB,CAAC;AAEF,oCAAoC;AACpC,eAAO,MAAM,YAAY,EAAE,kBAc1B,CAAC;AAEF,mCAAmC;AACnC,eAAO,MAAM,WAAW,EAAE,kBAUzB,CAAC;AAEF,oCAAoC;AACpC,eAAO,MAAM,YAAY,EAAE,kBAU1B,CAAC;AAEF,oCAAoC;AACpC,eAAO,MAAM,YAAY,EAAE,kBAU1B,CAAC;AAEF,sCAAsC;AACtC,eAAO,MAAM,cAAc,EAAE,kBAgB5B,CAAC;AAEF,qCAAqC;AACrC,eAAO,MAAM,aAAa,EAAE,kBAU3B,CAAC;AAEF,wCAAwC;AACxC,eAAO,MAAM,gBAAgB,EAAE,kBAU9B,CAAC;AAEF,qCAAqC;AACrC,eAAO,MAAM,aAAa,EAAE,kBAW3B,CAAC;AAEF,mCAAmC;AACnC,eAAO,MAAM,WAAW,EAAE,kBAUzB,CAAC;AAEF,oCAAoC;AACpC,eAAO,MAAM,YAAY,EAAE,kBAU1B,CAAC;AAEF,kCAAkC;AAClC,eAAO,MAAM,UAAU,EAAE,kBAWxB,CAAC;AAEF,sCAAsC;AACtC,eAAO,MAAM,cAAc,EAAE,kBAU5B,CAAC;AAEF,uCAAuC;AACvC,eAAO,MAAM,eAAe,EAAE,kBAU7B,CAAC;AAEF,uCAAuC;AACvC,eAAO,MAAM,eAAe,EAAE,kBAU7B,CAAC;AAEF,qCAAqC;AACrC,eAAO,MAAM,aAAa,EAAE,kBAU3B,CAAC;AAEF,wCAAwC;AACxC,eAAO,MAAM,gBAAgB,EAAE,kBAU9B,CAAC;AAEF,kCAAkC;AAClC,eAAO,MAAM,UAAU,EAAE,kBAgBxB,CAAC;AAEF,iCAAiC;AACjC,eAAO,MAAM,SAAS,EAAE,kBAUvB,CAAC;AAEF,mCAAmC;AACnC,eAAO,MAAM,WAAW,EAAE,kBAUzB,CAAC;AAEF,oCAAoC;AACpC,eAAO,MAAM,YAAY,EAAE,kBAa1B,CAAC;AAEF,qCAAqC;AACrC,eAAO,MAAM,aAAa,EAAE,kBAU3B,CAAC;AAEF,uCAAuC;AACvC,eAAO,MAAM,eAAe,EAAE,kBAU7B,CAAC;AAEF,QAAA,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyBb,CAAC;AAEX,eAAO,MAAM,cAAc,EAEtB,OAAO,CAAC,OAAO,iBAAiB,CAAC,CAAC"}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { isVisibleIntegration } from "../../integrations/feature-flags.js";
|
|
1
2
|
/** Configuration used by github. */
|
|
2
3
|
export const githubConfig = {
|
|
3
4
|
providerId: "github",
|
|
@@ -318,7 +319,7 @@ export const pipedriveConfig = {
|
|
|
318
319
|
apiBaseUrl: "https://api.pipedrive.com/v1",
|
|
319
320
|
defaultScopes: [],
|
|
320
321
|
};
|
|
321
|
-
|
|
322
|
+
const allCommonServices = {
|
|
322
323
|
github: githubConfig,
|
|
323
324
|
slack: slackConfig,
|
|
324
325
|
notion: notionConfig,
|
|
@@ -344,3 +345,4 @@ export const commonServices = {
|
|
|
344
345
|
clickup: clickupConfig,
|
|
345
346
|
pipedrive: pipedriveConfig,
|
|
346
347
|
};
|
|
348
|
+
export const commonServices = Object.fromEntries(Object.entries(allCommonServices).filter(([name]) => isVisibleIntegration(name)));
|