replicas-engine 0.1.599 → 0.1.600

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/src/index.js CHANGED
@@ -10669,7 +10669,7 @@ var DEFAULT_CODEX_ARGS = ["app-server", "--listen", "stdio://"];
10669
10669
  var MIN_CODEX_CLI_VERSION = "0.144.6";
10670
10670
  var CODEX_UPGRADE_TIMEOUT_MS = 12e4;
10671
10671
  var codexCliVersionEnsured = null;
10672
- var ENGINE_PACKAGE_VERSION = "0.1.599";
10672
+ var ENGINE_PACKAGE_VERSION = "0.1.600";
10673
10673
  var INITIALIZE_METHOD = "initialize";
10674
10674
  var INITIALIZED_NOTIFICATION = "initialized";
10675
10675
  var ACCOUNT_LOGIN_START_METHOD = "account/login/start";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "replicas-engine",
3
- "version": "0.1.599",
3
+ "version": "0.1.600",
4
4
  "description": "Lightweight API server for Replicas workspaces",
5
5
  "type": "module",
6
6
  "main": "dist/src/index.js",
@@ -4,78 +4,91 @@ export declare const PLUGIN_CATALOG: readonly [{
4
4
  readonly id: "attio";
5
5
  readonly toolkit: "attio";
6
6
  readonly authType: "oauth";
7
+ readonly category: "business";
7
8
  readonly name: "Attio";
8
9
  readonly description: "Search CRM records, people, companies, lists, and notes.";
9
10
  }, {
10
11
  readonly id: "clickhouse";
11
12
  readonly toolkit: "clickhouse";
12
13
  readonly authType: "basic";
14
+ readonly category: "data";
13
15
  readonly name: "ClickHouse";
14
16
  readonly description: "Inspect databases, tables, schemas, and query results.";
15
17
  }, {
16
18
  readonly id: "cloudflare";
17
19
  readonly toolkit: "cloudflare_api_key";
18
20
  readonly authType: "api_key";
21
+ readonly category: "data";
19
22
  readonly name: "Cloudflare";
20
23
  readonly description: "Inspect zones, DNS records, analytics, and security settings.";
21
24
  }, {
22
25
  readonly id: "googleads";
23
26
  readonly toolkit: "googleads";
24
27
  readonly authType: "oauth";
28
+ readonly category: "data";
25
29
  readonly name: "Google Ads";
26
30
  readonly description: "Inspect campaigns, customers, accounts, and reporting data.";
27
31
  }, {
28
32
  readonly id: "googledocs";
29
33
  readonly toolkit: "googledocs";
30
34
  readonly authType: "oauth";
35
+ readonly category: "productivity";
31
36
  readonly name: "Google Docs";
32
37
  readonly description: "Read documents, structure, comments, and exported content.";
33
38
  }, {
34
39
  readonly id: "googledrive";
35
40
  readonly toolkit: "googledrive";
36
41
  readonly authType: "oauth";
42
+ readonly category: "productivity";
37
43
  readonly name: "Google Drive";
38
44
  readonly description: "Search files, folders, metadata, permissions, and shared drives.";
39
45
  }, {
40
46
  readonly id: "googlesearch";
41
47
  readonly toolkit: "google_search_console";
42
48
  readonly authType: "oauth";
49
+ readonly category: "data";
43
50
  readonly name: "Google Search";
44
51
  readonly description: "Inspect Search Console performance, indexing, sites, and sitemaps.";
45
52
  }, {
46
53
  readonly id: "googlesheets";
47
54
  readonly toolkit: "googlesheets";
48
55
  readonly authType: "oauth";
56
+ readonly category: "productivity";
49
57
  readonly name: "Google Sheets";
50
58
  readonly description: "Read spreadsheets, worksheets, ranges, tables, and charts.";
51
59
  }, {
52
60
  readonly id: "linkedin";
53
61
  readonly toolkit: "linkedin";
54
62
  readonly authType: "oauth";
63
+ readonly category: "business";
55
64
  readonly name: "LinkedIn";
56
65
  readonly description: "Inspect profiles, organizations, posts, and professional activity.";
57
66
  }, {
58
67
  readonly id: "posthog";
59
68
  readonly toolkit: "posthog";
60
69
  readonly authType: "api_key";
70
+ readonly category: "data";
61
71
  readonly name: "PostHog";
62
72
  readonly description: "Inspect projects, events, insights, dashboards, flags, and recordings.";
63
73
  }, {
64
74
  readonly id: "stripe";
65
75
  readonly toolkit: "stripe";
66
76
  readonly authType: "oauth";
77
+ readonly category: "business";
67
78
  readonly name: "Stripe";
68
79
  readonly description: "Inspect customers, payments, invoices, subscriptions, and balances.";
69
80
  }];
70
81
  export type PluginId = (typeof PLUGIN_CATALOG)[number]['id'];
71
82
  export type PluginScope = 'organization' | 'personal';
72
83
  export type PluginAuthType = (typeof PLUGIN_CATALOG)[number]['authType'];
84
+ export type PluginCategory = (typeof PLUGIN_CATALOG)[number]['category'];
73
85
  export declare const PLUGIN_CONNECTION_STATUSES: readonly ["initiated", "active", "expired", "failed"];
74
86
  export type PluginConnectionStatus = (typeof PLUGIN_CONNECTION_STATUSES)[number];
75
87
  export interface PluginCatalogItem {
76
88
  id: PluginId;
77
89
  toolkit: string;
78
90
  authType: PluginAuthType;
91
+ category: PluginCategory;
79
92
  name: string;
80
93
  description: string;
81
94
  }