@jam-nodes/nodes 0.2.7 → 0.2.10
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/README.md +147 -0
- package/dist/ai/analyze-posts.d.ts +3 -3
- package/dist/ai/draft-emails.d.ts +1 -1
- package/dist/index.d.ts +363 -8
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +26 -3
- package/dist/index.js.map +1 -1
- package/dist/integrations/apollo/search-contacts.d.ts +4 -4
- package/dist/integrations/dataforseo/keyword-research.d.ts +6 -6
- package/dist/integrations/dataforseo/keyword-research.d.ts.map +1 -1
- package/dist/integrations/dataforseo/keyword-research.js +2 -8
- package/dist/integrations/dataforseo/keyword-research.js.map +1 -1
- package/dist/integrations/devto/create-article.d.ts +20 -0
- package/dist/integrations/devto/create-article.d.ts.map +1 -0
- package/dist/integrations/devto/create-article.js +67 -0
- package/dist/integrations/devto/create-article.js.map +1 -0
- package/dist/integrations/devto/credentials.d.ts +2 -0
- package/dist/integrations/devto/credentials.d.ts.map +1 -0
- package/dist/integrations/devto/credentials.js +17 -0
- package/dist/integrations/devto/credentials.js.map +1 -0
- package/dist/integrations/devto/get-articles.d.ts +21 -0
- package/dist/integrations/devto/get-articles.d.ts.map +1 -0
- package/dist/integrations/devto/get-articles.js +78 -0
- package/dist/integrations/devto/get-articles.js.map +1 -0
- package/dist/integrations/devto/index.d.ts +6 -0
- package/dist/integrations/devto/index.d.ts.map +1 -0
- package/dist/integrations/devto/index.js +6 -0
- package/dist/integrations/devto/index.js.map +1 -0
- package/dist/integrations/devto/schemas.d.ts +243 -0
- package/dist/integrations/devto/schemas.d.ts.map +1 -0
- package/dist/integrations/devto/schemas.js +69 -0
- package/dist/integrations/devto/schemas.js.map +1 -0
- package/dist/integrations/devto/update-article.d.ts +19 -0
- package/dist/integrations/devto/update-article.d.ts.map +1 -0
- package/dist/integrations/devto/update-article.js +65 -0
- package/dist/integrations/devto/update-article.js.map +1 -0
- package/dist/integrations/discord/schemas.d.ts +2 -2
- package/dist/integrations/discord/send-message.d.ts +1 -1
- package/dist/integrations/firecrawl/crawl.d.ts +121 -0
- package/dist/integrations/firecrawl/crawl.d.ts.map +1 -0
- package/dist/integrations/firecrawl/crawl.js +168 -0
- package/dist/integrations/firecrawl/crawl.js.map +1 -0
- package/dist/integrations/firecrawl/extract.d.ts +82 -0
- package/dist/integrations/firecrawl/extract.d.ts.map +1 -0
- package/dist/integrations/firecrawl/extract.js +168 -0
- package/dist/integrations/firecrawl/extract.js.map +1 -0
- package/dist/integrations/firecrawl/index.d.ts +4 -0
- package/dist/integrations/firecrawl/index.d.ts.map +1 -0
- package/dist/integrations/firecrawl/index.js +4 -0
- package/dist/integrations/firecrawl/index.js.map +1 -0
- package/dist/integrations/firecrawl/scrape.d.ts +1208 -0
- package/dist/integrations/firecrawl/scrape.d.ts.map +1 -0
- package/dist/integrations/firecrawl/scrape.js +254 -0
- package/dist/integrations/firecrawl/scrape.js.map +1 -0
- package/dist/integrations/index.d.ts +4 -1
- package/dist/integrations/index.d.ts.map +1 -1
- package/dist/integrations/index.js +7 -1
- package/dist/integrations/index.js.map +1 -1
- package/dist/integrations/social/credentials.d.ts +2 -0
- package/dist/integrations/social/credentials.d.ts.map +1 -0
- package/dist/integrations/social/credentials.js +36 -0
- package/dist/integrations/social/credentials.js.map +1 -0
- package/dist/integrations/social/index.d.ts +8 -0
- package/dist/integrations/social/index.d.ts.map +1 -1
- package/dist/integrations/social/index.js +8 -0
- package/dist/integrations/social/index.js.map +1 -1
- package/dist/integrations/social/twitter-client.d.ts +6 -0
- package/dist/integrations/social/twitter-client.d.ts.map +1 -0
- package/dist/integrations/social/twitter-client.js +140 -0
- package/dist/integrations/social/twitter-client.js.map +1 -0
- package/dist/integrations/social/twitter-create-tweet.d.ts +61 -0
- package/dist/integrations/social/twitter-create-tweet.d.ts.map +1 -0
- package/dist/integrations/social/twitter-create-tweet.js +83 -0
- package/dist/integrations/social/twitter-create-tweet.js.map +1 -0
- package/dist/integrations/social/twitter-delete-tweet.d.ts +23 -0
- package/dist/integrations/social/twitter-delete-tweet.d.ts.map +1 -0
- package/dist/integrations/social/twitter-delete-tweet.js +41 -0
- package/dist/integrations/social/twitter-delete-tweet.js.map +1 -0
- package/dist/integrations/social/twitter-get-user-by-username.d.ts +39 -0
- package/dist/integrations/social/twitter-get-user-by-username.d.ts.map +1 -0
- package/dist/integrations/social/twitter-get-user-by-username.js +56 -0
- package/dist/integrations/social/twitter-get-user-by-username.js.map +1 -0
- package/dist/integrations/social/twitter-like-tweet.d.ts +23 -0
- package/dist/integrations/social/twitter-like-tweet.d.ts.map +1 -0
- package/dist/integrations/social/twitter-like-tweet.js +48 -0
- package/dist/integrations/social/twitter-like-tweet.js.map +1 -0
- package/dist/integrations/social/twitter-retweet.d.ts +23 -0
- package/dist/integrations/social/twitter-retweet.d.ts.map +1 -0
- package/dist/integrations/social/twitter-retweet.js +48 -0
- package/dist/integrations/social/twitter-retweet.js.map +1 -0
- package/dist/integrations/social/twitter-search-tweets.d.ts +77 -0
- package/dist/integrations/social/twitter-search-tweets.d.ts.map +1 -0
- package/dist/integrations/social/twitter-search-tweets.js +76 -0
- package/dist/integrations/social/twitter-search-tweets.js.map +1 -0
- package/dist/integrations/social/twitter-send-dm.d.ts +39 -0
- package/dist/integrations/social/twitter-send-dm.d.ts.map +1 -0
- package/dist/integrations/social/twitter-send-dm.js +67 -0
- package/dist/integrations/social/twitter-send-dm.js.map +1 -0
- package/dist/integrations/wordpress/createPost.d.ts +25 -0
- package/dist/integrations/wordpress/createPost.d.ts.map +1 -0
- package/dist/integrations/wordpress/createPost.js +67 -0
- package/dist/integrations/wordpress/createPost.js.map +1 -0
- package/dist/integrations/wordpress/credentials.d.ts +2 -0
- package/dist/integrations/wordpress/credentials.d.ts.map +1 -0
- package/dist/integrations/wordpress/credentials.js +25 -0
- package/dist/integrations/wordpress/credentials.js.map +1 -0
- package/dist/integrations/wordpress/getPosts.d.ts +28 -0
- package/dist/integrations/wordpress/getPosts.d.ts.map +1 -0
- package/dist/integrations/wordpress/getPosts.js +70 -0
- package/dist/integrations/wordpress/getPosts.js.map +1 -0
- package/dist/integrations/wordpress/index.d.ts +8 -0
- package/dist/integrations/wordpress/index.d.ts.map +1 -0
- package/dist/integrations/wordpress/index.js +7 -0
- package/dist/integrations/wordpress/index.js.map +1 -0
- package/dist/integrations/wordpress/schemas.d.ts +411 -0
- package/dist/integrations/wordpress/schemas.d.ts.map +1 -0
- package/dist/integrations/wordpress/schemas.js +110 -0
- package/dist/integrations/wordpress/schemas.js.map +1 -0
- package/dist/integrations/wordpress/updatePost.d.ts +21 -0
- package/dist/integrations/wordpress/updatePost.d.ts.map +1 -0
- package/dist/integrations/wordpress/updatePost.js +59 -0
- package/dist/integrations/wordpress/updatePost.js.map +1 -0
- package/dist/integrations/wordpress/uploadMedia.d.ts +15 -0
- package/dist/integrations/wordpress/uploadMedia.d.ts.map +1 -0
- package/dist/integrations/wordpress/uploadMedia.js +56 -0
- package/dist/integrations/wordpress/uploadMedia.js.map +1 -0
- package/dist/integrations/wordpress/utils.d.ts +15 -0
- package/dist/integrations/wordpress/utils.d.ts.map +1 -0
- package/dist/integrations/wordpress/utils.js +15 -0
- package/dist/integrations/wordpress/utils.js.map +1 -0
- package/dist/schemas/ai.d.ts +20 -20
- package/package.json +2 -1
package/README.md
ADDED
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
# jam-nodes
|
|
2
|
+
|
|
3
|
+
Extensible workflow node framework for building automation pipelines. Define, register, and execute typed nodes with Zod validation.
|
|
4
|
+
|
|
5
|
+
📚 **[Documentation](https://docs.spreadjam.com)** · 🎮 **[Playground](https://docs.spreadjam.com/playground/overview)**
|
|
6
|
+
|
|
7
|
+
## Packages
|
|
8
|
+
|
|
9
|
+
- **[@jam-nodes/core](./packages/core)** - Core framework with types, registry, and execution context
|
|
10
|
+
- **[@jam-nodes/nodes](./packages/nodes)** - Built-in nodes (conditional, delay, filter, map, http-request)
|
|
11
|
+
- **[@jam-nodes/playground](./packages/playground)** - CLI tool for testing nodes interactively
|
|
12
|
+
|
|
13
|
+
## Installation
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
npm install @jam-nodes/core @jam-nodes/nodes zod
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## Quick Start
|
|
20
|
+
|
|
21
|
+
```typescript
|
|
22
|
+
import { NodeRegistry, defineNode, ExecutionContext } from "@jam-nodes/core";
|
|
23
|
+
import { conditionalNode, endNode, builtInNodes } from "@jam-nodes/nodes";
|
|
24
|
+
import { z } from "zod";
|
|
25
|
+
|
|
26
|
+
// Create a registry and register built-in nodes
|
|
27
|
+
const registry = new NodeRegistry();
|
|
28
|
+
registry.registerAll(builtInNodes);
|
|
29
|
+
|
|
30
|
+
// Define a custom node
|
|
31
|
+
const greetNode = defineNode({
|
|
32
|
+
type: "greet",
|
|
33
|
+
name: "Greet",
|
|
34
|
+
description: "Generate a greeting message",
|
|
35
|
+
category: "action",
|
|
36
|
+
inputSchema: z.object({
|
|
37
|
+
name: z.string(),
|
|
38
|
+
}),
|
|
39
|
+
outputSchema: z.object({
|
|
40
|
+
message: z.string(),
|
|
41
|
+
}),
|
|
42
|
+
executor: async (input) => ({
|
|
43
|
+
success: true,
|
|
44
|
+
output: { message: `Hello, ${input.name}!` },
|
|
45
|
+
}),
|
|
46
|
+
});
|
|
47
|
+
|
|
48
|
+
// Register custom node
|
|
49
|
+
registry.register(greetNode);
|
|
50
|
+
|
|
51
|
+
// Execute a node
|
|
52
|
+
const context = new ExecutionContext({ userName: "World" });
|
|
53
|
+
const executor = registry.getExecutor("greet");
|
|
54
|
+
const result = await executor(
|
|
55
|
+
{ name: context.interpolate("{{userName}}") },
|
|
56
|
+
context.toNodeContext("user-123", "workflow-456"),
|
|
57
|
+
);
|
|
58
|
+
|
|
59
|
+
console.log(result.output?.message); // "Hello, World!"
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
## Creating Custom Nodes
|
|
63
|
+
|
|
64
|
+
```typescript
|
|
65
|
+
import { defineNode } from "@jam-nodes/core";
|
|
66
|
+
import { z } from "zod";
|
|
67
|
+
|
|
68
|
+
export const myNode = defineNode({
|
|
69
|
+
type: "my_custom_node",
|
|
70
|
+
name: "My Custom Node",
|
|
71
|
+
description: "Does something awesome",
|
|
72
|
+
category: "action", // 'action' | 'logic' | 'integration' | 'transform'
|
|
73
|
+
|
|
74
|
+
inputSchema: z.object({
|
|
75
|
+
input1: z.string(),
|
|
76
|
+
input2: z.number().optional(),
|
|
77
|
+
}),
|
|
78
|
+
|
|
79
|
+
outputSchema: z.object({
|
|
80
|
+
result: z.string(),
|
|
81
|
+
}),
|
|
82
|
+
|
|
83
|
+
capabilities: {
|
|
84
|
+
supportsRerun: true,
|
|
85
|
+
supportsCancel: true,
|
|
86
|
+
},
|
|
87
|
+
|
|
88
|
+
executor: async (input, context) => {
|
|
89
|
+
// Access workflow variables
|
|
90
|
+
const previousData = context.resolveNestedPath("someNode.output");
|
|
91
|
+
|
|
92
|
+
// Your logic here
|
|
93
|
+
const result = `Processed: ${input.input1}`;
|
|
94
|
+
|
|
95
|
+
return {
|
|
96
|
+
success: true,
|
|
97
|
+
output: { result },
|
|
98
|
+
// Optional: send notification
|
|
99
|
+
notification: {
|
|
100
|
+
title: "Node Complete",
|
|
101
|
+
message: "Processing finished",
|
|
102
|
+
},
|
|
103
|
+
};
|
|
104
|
+
},
|
|
105
|
+
});
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
## Built-in Nodes
|
|
109
|
+
|
|
110
|
+
### Logic
|
|
111
|
+
|
|
112
|
+
- **conditional** - Branch workflow based on conditions
|
|
113
|
+
- **end** - Mark end of workflow branch
|
|
114
|
+
- **delay** - Wait for specified duration
|
|
115
|
+
|
|
116
|
+
### Transform
|
|
117
|
+
|
|
118
|
+
- **map** - Extract property from array items
|
|
119
|
+
- **filter** - Filter array based on conditions
|
|
120
|
+
|
|
121
|
+
### Examples
|
|
122
|
+
|
|
123
|
+
- **http_request** - Make HTTP requests to external APIs
|
|
124
|
+
|
|
125
|
+
## Variable Interpolation
|
|
126
|
+
|
|
127
|
+
The `ExecutionContext` supports powerful variable interpolation:
|
|
128
|
+
|
|
129
|
+
```typescript
|
|
130
|
+
const ctx = new ExecutionContext({
|
|
131
|
+
user: { name: "Alice", email: "alice@example.com" },
|
|
132
|
+
items: [1, 2, 3],
|
|
133
|
+
});
|
|
134
|
+
|
|
135
|
+
// Simple interpolation
|
|
136
|
+
ctx.interpolate("Hello {{user.name}}"); // "Hello Alice"
|
|
137
|
+
|
|
138
|
+
// Direct value (returns actual type)
|
|
139
|
+
ctx.interpolate("{{items}}"); // [1, 2, 3]
|
|
140
|
+
|
|
141
|
+
// JSONPath
|
|
142
|
+
ctx.evaluateJsonPath("$.user.email"); // "alice@example.com"
|
|
143
|
+
```
|
|
144
|
+
|
|
145
|
+
## License
|
|
146
|
+
|
|
147
|
+
MIT
|
|
@@ -115,7 +115,7 @@ export declare const socialAiAnalyzeNode: import("@jam-nodes/core").NodeDefiniti
|
|
|
115
115
|
relevanceScore: number;
|
|
116
116
|
sentiment: "positive" | "negative" | "neutral";
|
|
117
117
|
isComplaint: boolean;
|
|
118
|
-
urgencyLevel: "
|
|
118
|
+
urgencyLevel: "medium" | "low" | "high";
|
|
119
119
|
aiSummary: string;
|
|
120
120
|
matchedKeywords: string[];
|
|
121
121
|
title?: string | undefined;
|
|
@@ -139,7 +139,7 @@ export declare const socialAiAnalyzeNode: import("@jam-nodes/core").NodeDefiniti
|
|
|
139
139
|
relevanceScore: number;
|
|
140
140
|
sentiment: "positive" | "negative" | "neutral";
|
|
141
141
|
isComplaint: boolean;
|
|
142
|
-
urgencyLevel: "
|
|
142
|
+
urgencyLevel: "medium" | "low" | "high";
|
|
143
143
|
aiSummary: string;
|
|
144
144
|
matchedKeywords: string[];
|
|
145
145
|
title?: string | undefined;
|
|
@@ -163,7 +163,7 @@ export declare const socialAiAnalyzeNode: import("@jam-nodes/core").NodeDefiniti
|
|
|
163
163
|
relevanceScore: number;
|
|
164
164
|
sentiment: "positive" | "negative" | "neutral";
|
|
165
165
|
isComplaint: boolean;
|
|
166
|
-
urgencyLevel: "
|
|
166
|
+
urgencyLevel: "medium" | "low" | "high";
|
|
167
167
|
aiSummary: string;
|
|
168
168
|
matchedKeywords: string[];
|
|
169
169
|
title?: string | undefined;
|
|
@@ -20,8 +20,8 @@ export declare const draftEmailsNode: import("@jam-nodes/core").NodeDefinition<{
|
|
|
20
20
|
contacts: {
|
|
21
21
|
id: string;
|
|
22
22
|
title: string | null;
|
|
23
|
-
company: string | null;
|
|
24
23
|
name: string;
|
|
24
|
+
company: string | null;
|
|
25
25
|
email: string | null;
|
|
26
26
|
}[];
|
|
27
27
|
productDescription: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -4,8 +4,8 @@ export { mapNode, filterNode, sortNode, MapInputSchema, MapOutputSchema, FilterI
|
|
|
4
4
|
export type { MapInput, MapOutput, FilterInput, FilterOutput, FilterOperator, SortInput, SortOutput, SortDirection, } from './transform/index.js';
|
|
5
5
|
export { httpRequestNode, HttpRequestInputSchema, HttpRequestOutputSchema, HttpMethodSchema, breadNode, BreadInputSchema, BreadOutputSchema, } from './examples/index.js';
|
|
6
6
|
export type { HttpRequestInput, HttpRequestOutput, HttpMethod, BreadInput, BreadOutput, } from './examples/index.js';
|
|
7
|
-
export { redditMonitorNode, RedditMonitorInputSchema, RedditMonitorOutputSchema, twitterMonitorNode, TwitterMonitorInputSchema, TwitterMonitorOutputSchema, linkedinMonitorNode, LinkedInMonitorInputSchema, LinkedInMonitorOutputSchema, soraVideoNode, SoraVideoInputSchema, SoraVideoOutputSchema, seoKeywordResearchNode, SeoKeywordResearchInputSchema, SeoKeywordResearchOutputSchema, seoAuditNode, SeoAuditInputSchema, SeoAuditOutputSchema, searchContactsNode, SearchContactsInputSchema, SearchContactsOutputSchema, discordSendMessageNode, DiscordSendMessageInputSchema, DiscordSendMessageOutputSchema, discordSendWebhookNode, DiscordSendWebhookInputSchema, DiscordSendWebhookOutputSchema, discordCreateThreadNode, DiscordCreateThreadInputSchema, DiscordCreateThreadOutputSchema, DiscordEmbedSchema, discordBotCredential, discordWebhookCredential, } from './integrations/index.js';
|
|
8
|
-
export type { RedditMonitorInput, RedditMonitorOutput, RedditPost, TwitterMonitorInput, TwitterMonitorOutput, TwitterPost, LinkedInMonitorInput, LinkedInMonitorOutput, LinkedInPost, SoraVideoInput, SoraVideoOutput, SeoKeywordResearchInput, SeoKeywordResearchOutput, SeoAuditInput, SeoAuditOutput, SeoIssue, SearchContactsInput, SearchContactsOutput, DiscordSendMessageInput, DiscordSendMessageOutput, DiscordSendWebhookInput, DiscordSendWebhookOutput, DiscordCreateThreadInput, DiscordCreateThreadOutput, DiscordEmbed, } from './integrations/index.js';
|
|
7
|
+
export { redditMonitorNode, RedditMonitorInputSchema, RedditMonitorOutputSchema, twitterMonitorNode, TwitterMonitorInputSchema, TwitterMonitorOutputSchema, twitterCredential, twitterCreateTweetNode, TwitterCreateTweetInputSchema, TwitterCreateTweetOutputSchema, twitterDeleteTweetNode, TwitterDeleteTweetInputSchema, TwitterDeleteTweetOutputSchema, twitterLikeTweetNode, TwitterLikeTweetInputSchema, TwitterLikeTweetOutputSchema, twitterRetweetNode, TwitterRetweetInputSchema, TwitterRetweetOutputSchema, twitterSearchTweetsNode, TwitterSearchTweetsInputSchema, TwitterSearchTweetsOutputSchema, twitterSendDMNode, TwitterSendDMInputSchema, TwitterSendDMOutputSchema, twitterGetUserByUsernameNode, TwitterGetUserByUsernameInputSchema, TwitterGetUserByUsernameOutputSchema, linkedinMonitorNode, LinkedInMonitorInputSchema, LinkedInMonitorOutputSchema, soraVideoNode, SoraVideoInputSchema, SoraVideoOutputSchema, seoKeywordResearchNode, SeoKeywordResearchInputSchema, SeoKeywordResearchOutputSchema, seoAuditNode, SeoAuditInputSchema, SeoAuditOutputSchema, searchContactsNode, SearchContactsInputSchema, SearchContactsOutputSchema, discordSendMessageNode, DiscordSendMessageInputSchema, DiscordSendMessageOutputSchema, discordSendWebhookNode, DiscordSendWebhookInputSchema, DiscordSendWebhookOutputSchema, discordCreateThreadNode, DiscordCreateThreadInputSchema, DiscordCreateThreadOutputSchema, DiscordEmbedSchema, discordBotCredential, discordWebhookCredential, firecrawlScrapeNode, FirecrawlScrapeInputSchema, FirecrawlScrapeOutputSchema, firecrawlCrawlNode, FirecrawlCrawlInputSchema, FirecrawlCrawlOutputSchema, firecrawlExtractNode, FirecrawlExtractInputSchema, FirecrawlExtractOutputSchema, devtoCreateArticleNode, DevtoArticleSchema, DevtoCreateArticleInputSchema, DevtoCreateArticleOutputSchema, devtoUpdateArticleNode, DevtoUpdateArticleInputSchema, DevtoUpdateArticleOutputSchema, devtoGetArticlesNode, DevtoGetArticlesInputSchema, DevtoGetArticlesOutputSchema, devtoCredential, wordpressCreatePostNode, WordPressCreatePostInputSchema, WordPressCreatePostOutputSchema, wordpressUpdatePostNode, WordPressUpdatePostInputSchema, WordPressUpdatePostOutputSchema, wordpressGetPostsNode, WordPressGetPostsInputSchema, WordPressGetPostsOutputSchema, wordpressUploadMediaNode, WordPressUploadMediaInputSchema, WordPressUploadMediaOutputSchema, WordPressPostSchema, WordPressMediaSchema, WordPressCredential, } from './integrations/index.js';
|
|
8
|
+
export type { RedditMonitorInput, RedditMonitorOutput, RedditPost, TwitterMonitorInput, TwitterMonitorOutput, TwitterPost, TwitterCreateTweetInput, TwitterCreateTweetOutput, TwitterDeleteTweetInput, TwitterDeleteTweetOutput, TwitterLikeTweetInput, TwitterLikeTweetOutput, TwitterRetweetInput, TwitterRetweetOutput, TwitterSearchTweetsInput, TwitterSearchTweetsOutput, TwitterSendDMInput, TwitterSendDMOutput, TwitterGetUserByUsernameInput, TwitterGetUserByUsernameOutput, LinkedInMonitorInput, LinkedInMonitorOutput, LinkedInPost, SoraVideoInput, SoraVideoOutput, SeoKeywordResearchInput, SeoKeywordResearchOutput, SeoAuditInput, SeoAuditOutput, SeoIssue, SearchContactsInput, SearchContactsOutput, DiscordSendMessageInput, DiscordSendMessageOutput, DiscordSendWebhookInput, DiscordSendWebhookOutput, DiscordCreateThreadInput, DiscordCreateThreadOutput, DiscordEmbed, FirecrawlScrapeInput, FirecrawlScrapeOutput, FirecrawlCrawlInput, FirecrawlCrawlOutput, FirecrawlExtractInput, FirecrawlExtractOutput, DevtoArticle, DevtoCreateArticleInput, DevtoCreateArticleOutput, DevtoUpdateArticleInput, DevtoUpdateArticleOutput, DevtoGetArticlesInput, DevtoGetArticlesOutput, WordPressPost, WordPressCreatePostInput, WordPressCreatePostOutput, WordPressUpdatePostInput, WordPressUpdatePostOutput, WordPressGetPostsInput, WordPressGetPostsOutput, WordPressMedia, WordPressUploadMediaInput, WordPressUploadMediaOutput, } from './integrations/index.js';
|
|
9
9
|
export { socialKeywordGeneratorNode, SocialKeywordGeneratorInputSchema, SocialKeywordGeneratorOutputSchema, draftEmailsNode, DraftEmailsInputSchema, DraftEmailsOutputSchema, DraftEmailInfoSchema, ContactSchema, socialAiAnalyzeNode, SocialAiAnalyzeInputSchema, SocialAiAnalyzeOutputSchema, } from './ai/index.js';
|
|
10
10
|
export type { SocialKeywordGeneratorInput, SocialKeywordGeneratorOutput, DraftEmailsInput, DraftEmailsOutput, DraftEmailInfo, Contact, SocialAiAnalyzeInput, SocialAiAnalyzeOutput, SocialPost, AnalyzedPost, } from './ai/index.js';
|
|
11
11
|
/**
|
|
@@ -108,6 +108,61 @@ export declare const builtInNodes: (import("@jam-nodes/core").NodeDefinition<{
|
|
|
108
108
|
totalFound: number;
|
|
109
109
|
hasMore: boolean;
|
|
110
110
|
cursor?: string | undefined;
|
|
111
|
+
}> | import("@jam-nodes/core").NodeDefinition<{
|
|
112
|
+
text: string;
|
|
113
|
+
replyToTweetId?: string | undefined;
|
|
114
|
+
mediaIds?: string[] | undefined;
|
|
115
|
+
quoteTweetId?: string | undefined;
|
|
116
|
+
poll?: {
|
|
117
|
+
options: string[];
|
|
118
|
+
durationMinutes: number;
|
|
119
|
+
} | undefined;
|
|
120
|
+
}, {
|
|
121
|
+
tweetId: string;
|
|
122
|
+
text: string;
|
|
123
|
+
}> | import("@jam-nodes/core").NodeDefinition<{
|
|
124
|
+
tweetId: string;
|
|
125
|
+
}, {
|
|
126
|
+
deleted: boolean;
|
|
127
|
+
}> | import("@jam-nodes/core").NodeDefinition<{
|
|
128
|
+
tweetId: string;
|
|
129
|
+
}, {
|
|
130
|
+
liked: boolean;
|
|
131
|
+
}> | import("@jam-nodes/core").NodeDefinition<{
|
|
132
|
+
tweetId: string;
|
|
133
|
+
}, {
|
|
134
|
+
retweeted: boolean;
|
|
135
|
+
}> | import("@jam-nodes/core").NodeDefinition<{
|
|
136
|
+
query: string;
|
|
137
|
+
maxResults?: number | undefined;
|
|
138
|
+
startTime?: string | undefined;
|
|
139
|
+
endTime?: string | undefined;
|
|
140
|
+
sortOrder?: "recency" | "relevancy" | undefined;
|
|
141
|
+
}, {
|
|
142
|
+
tweets: {
|
|
143
|
+
id: string;
|
|
144
|
+
text: string;
|
|
145
|
+
authorId?: string | undefined;
|
|
146
|
+
createdAt?: string | undefined;
|
|
147
|
+
}[];
|
|
148
|
+
resultCount: number;
|
|
149
|
+
nextToken?: string | undefined;
|
|
150
|
+
}> | import("@jam-nodes/core").NodeDefinition<{
|
|
151
|
+
text: string;
|
|
152
|
+
recipientId: string;
|
|
153
|
+
mediaId?: string | undefined;
|
|
154
|
+
}, {
|
|
155
|
+
conversationId: string;
|
|
156
|
+
dmEventId: string;
|
|
157
|
+
text: string;
|
|
158
|
+
}> | import("@jam-nodes/core").NodeDefinition<{
|
|
159
|
+
username: string;
|
|
160
|
+
}, {
|
|
161
|
+
id: string;
|
|
162
|
+
name: string;
|
|
163
|
+
username: string;
|
|
164
|
+
description?: string | undefined;
|
|
165
|
+
verified?: boolean | undefined;
|
|
111
166
|
}> | import("@jam-nodes/core").NodeDefinition<{
|
|
112
167
|
keywords: string[];
|
|
113
168
|
timeFilter?: string | undefined;
|
|
@@ -138,7 +193,7 @@ export declare const builtInNodes: (import("@jam-nodes/core").NodeDefinition<{
|
|
|
138
193
|
keyword: string;
|
|
139
194
|
searchVolume: number;
|
|
140
195
|
keywordDifficulty: number;
|
|
141
|
-
cpc:
|
|
196
|
+
cpc: number;
|
|
142
197
|
searchIntent: "informational" | "commercial" | "navigational" | "transactional";
|
|
143
198
|
}[];
|
|
144
199
|
totalResearched: number;
|
|
@@ -213,6 +268,7 @@ export declare const builtInNodes: (import("@jam-nodes/core").NodeDefinition<{
|
|
|
213
268
|
}> | import("@jam-nodes/core").NodeDefinition<{
|
|
214
269
|
content: string;
|
|
215
270
|
channelId: string;
|
|
271
|
+
username?: string | undefined;
|
|
216
272
|
embeds?: {
|
|
217
273
|
url?: string | undefined;
|
|
218
274
|
title?: string | undefined;
|
|
@@ -240,7 +296,6 @@ export declare const builtInNodes: (import("@jam-nodes/core").NodeDefinition<{
|
|
|
240
296
|
inline?: boolean | undefined;
|
|
241
297
|
}[] | undefined;
|
|
242
298
|
}[] | undefined;
|
|
243
|
-
username?: string | undefined;
|
|
244
299
|
avatarUrl?: string | undefined;
|
|
245
300
|
}, {
|
|
246
301
|
url: string;
|
|
@@ -295,6 +350,306 @@ export declare const builtInNodes: (import("@jam-nodes/core").NodeDefinition<{
|
|
|
295
350
|
parentChannelId: string;
|
|
296
351
|
starterMessageId: string | null;
|
|
297
352
|
threadType: number | null;
|
|
353
|
+
}> | import("@jam-nodes/core").NodeDefinition<{
|
|
354
|
+
url: string;
|
|
355
|
+
formats?: ("links" | "images" | "markdown" | "summary" | "html" | "rawHtml" | "branding" | {
|
|
356
|
+
type: "screenshot";
|
|
357
|
+
fullPage?: boolean | undefined;
|
|
358
|
+
quality?: number | undefined;
|
|
359
|
+
viewport?: {
|
|
360
|
+
width: number;
|
|
361
|
+
height: number;
|
|
362
|
+
} | undefined;
|
|
363
|
+
} | {
|
|
364
|
+
type: "json";
|
|
365
|
+
schema?: Record<string, unknown> | undefined;
|
|
366
|
+
prompt?: string | undefined;
|
|
367
|
+
} | {
|
|
368
|
+
type: "changeTracking";
|
|
369
|
+
schema?: Record<string, unknown> | undefined;
|
|
370
|
+
prompt?: string | undefined;
|
|
371
|
+
modes?: ("json" | "git-diff")[] | undefined;
|
|
372
|
+
tag?: string | null | undefined;
|
|
373
|
+
})[] | undefined;
|
|
374
|
+
onlyMainContent?: boolean | undefined;
|
|
375
|
+
waitFor?: number | undefined;
|
|
376
|
+
}, {
|
|
377
|
+
success: boolean;
|
|
378
|
+
data: {
|
|
379
|
+
links?: string[] | undefined;
|
|
380
|
+
markdown?: string | undefined;
|
|
381
|
+
summary?: string | null | undefined;
|
|
382
|
+
html?: string | null | undefined;
|
|
383
|
+
rawHtml?: string | null | undefined;
|
|
384
|
+
branding?: {
|
|
385
|
+
images?: {
|
|
386
|
+
logo?: string | undefined;
|
|
387
|
+
favicon?: string | undefined;
|
|
388
|
+
ogImage?: string | undefined;
|
|
389
|
+
} | undefined;
|
|
390
|
+
colorScheme?: "light" | "dark" | undefined;
|
|
391
|
+
logo?: string | undefined;
|
|
392
|
+
colors?: {
|
|
393
|
+
success?: string | undefined;
|
|
394
|
+
error?: string | undefined;
|
|
395
|
+
link?: string | undefined;
|
|
396
|
+
warning?: string | undefined;
|
|
397
|
+
primary?: string | undefined;
|
|
398
|
+
secondary?: string | undefined;
|
|
399
|
+
accent?: string | undefined;
|
|
400
|
+
background?: string | undefined;
|
|
401
|
+
textPrimary?: string | undefined;
|
|
402
|
+
textSecondary?: string | undefined;
|
|
403
|
+
} | undefined;
|
|
404
|
+
fonts?: {
|
|
405
|
+
family?: string | undefined;
|
|
406
|
+
}[] | undefined;
|
|
407
|
+
typography?: {
|
|
408
|
+
fontFamilies?: {
|
|
409
|
+
code?: string | undefined;
|
|
410
|
+
primary?: string | undefined;
|
|
411
|
+
heading?: string | undefined;
|
|
412
|
+
} | undefined;
|
|
413
|
+
fontSizes?: {
|
|
414
|
+
body?: string | undefined;
|
|
415
|
+
h1?: string | undefined;
|
|
416
|
+
h2?: string | undefined;
|
|
417
|
+
h3?: string | undefined;
|
|
418
|
+
} | undefined;
|
|
419
|
+
fontWeights?: {
|
|
420
|
+
light?: number | undefined;
|
|
421
|
+
regular?: number | undefined;
|
|
422
|
+
medium?: number | undefined;
|
|
423
|
+
bold?: number | undefined;
|
|
424
|
+
} | undefined;
|
|
425
|
+
lineHeights?: {
|
|
426
|
+
body?: string | undefined;
|
|
427
|
+
heading?: string | undefined;
|
|
428
|
+
} | undefined;
|
|
429
|
+
} | undefined;
|
|
430
|
+
spacing?: {
|
|
431
|
+
baseUnit?: number | undefined;
|
|
432
|
+
borderRadius?: string | undefined;
|
|
433
|
+
padding?: Record<string, unknown> | undefined;
|
|
434
|
+
margins?: Record<string, unknown> | undefined;
|
|
435
|
+
} | undefined;
|
|
436
|
+
components?: {
|
|
437
|
+
buttonPrimary?: {
|
|
438
|
+
background?: string | undefined;
|
|
439
|
+
borderRadius?: string | undefined;
|
|
440
|
+
textColor?: string | undefined;
|
|
441
|
+
} | undefined;
|
|
442
|
+
buttonSecondary?: {
|
|
443
|
+
background?: string | undefined;
|
|
444
|
+
borderRadius?: string | undefined;
|
|
445
|
+
textColor?: string | undefined;
|
|
446
|
+
borderColor?: string | undefined;
|
|
447
|
+
} | undefined;
|
|
448
|
+
input?: Record<string, unknown> | undefined;
|
|
449
|
+
} | undefined;
|
|
450
|
+
icons?: Record<string, unknown> | undefined;
|
|
451
|
+
animations?: Record<string, unknown> | undefined;
|
|
452
|
+
layout?: Record<string, unknown> | undefined;
|
|
453
|
+
personality?: Record<string, unknown> | undefined;
|
|
454
|
+
} | null | undefined;
|
|
455
|
+
screenshot?: string | null | undefined;
|
|
456
|
+
changeTracking?: {
|
|
457
|
+
json?: Record<string, unknown> | undefined;
|
|
458
|
+
previousScrapeAt?: string | undefined;
|
|
459
|
+
changeStatus?: "new" | "same" | "changed" | "removed" | undefined;
|
|
460
|
+
visibility?: "visible" | "hidden" | undefined;
|
|
461
|
+
diff?: string | null | undefined;
|
|
462
|
+
} | null | undefined;
|
|
463
|
+
actions?: {
|
|
464
|
+
screenshots?: string[] | undefined;
|
|
465
|
+
scrapes?: {
|
|
466
|
+
url: string;
|
|
467
|
+
html: string;
|
|
468
|
+
}[] | undefined;
|
|
469
|
+
javascriptReturns?: {
|
|
470
|
+
type: string;
|
|
471
|
+
value?: unknown;
|
|
472
|
+
}[] | undefined;
|
|
473
|
+
pdfs?: string[] | undefined;
|
|
474
|
+
} | null | undefined;
|
|
475
|
+
metadata?: import("zod").objectInputType<{
|
|
476
|
+
title: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
|
|
477
|
+
description: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
|
|
478
|
+
language: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>>;
|
|
479
|
+
sourceURL: import("zod").ZodOptional<import("zod").ZodString>;
|
|
480
|
+
url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
481
|
+
keywords: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
|
|
482
|
+
ogLocaleAlternate: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
483
|
+
statusCode: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
484
|
+
error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
485
|
+
}, import("zod").ZodTypeAny, "passthrough"> | undefined;
|
|
486
|
+
warning?: string | null | undefined;
|
|
487
|
+
};
|
|
488
|
+
}> | import("@jam-nodes/core").NodeDefinition<{
|
|
489
|
+
url: string;
|
|
490
|
+
limit?: number | undefined;
|
|
491
|
+
excludePaths?: string[] | undefined;
|
|
492
|
+
includePaths?: string[] | undefined;
|
|
493
|
+
maxDiscoveryDepth?: number | undefined;
|
|
494
|
+
}, {
|
|
495
|
+
status: "completed" | "failed";
|
|
496
|
+
completed: number;
|
|
497
|
+
expiresAt: string;
|
|
498
|
+
data: {
|
|
499
|
+
links?: string[] | undefined;
|
|
500
|
+
markdown?: string | undefined;
|
|
501
|
+
html?: string | null | undefined;
|
|
502
|
+
rawHtml?: string | null | undefined;
|
|
503
|
+
screenshot?: string | null | undefined;
|
|
504
|
+
metadata?: Record<string, unknown> | undefined;
|
|
505
|
+
}[];
|
|
506
|
+
total: number;
|
|
507
|
+
creditsUsed: number;
|
|
508
|
+
}> | import("@jam-nodes/core").NodeDefinition<{
|
|
509
|
+
urls: string[];
|
|
510
|
+
schema?: Record<string, unknown> | undefined;
|
|
511
|
+
prompt?: string | undefined;
|
|
512
|
+
}, {
|
|
513
|
+
status: "completed" | "failed" | "cancelled";
|
|
514
|
+
success: boolean;
|
|
515
|
+
data: Record<string, unknown>;
|
|
516
|
+
expiresAt?: string | undefined;
|
|
517
|
+
tokensUsed?: number | undefined;
|
|
518
|
+
}> | import("@jam-nodes/core").NodeDefinition<{
|
|
519
|
+
title: string;
|
|
520
|
+
bodyMarkdown: string;
|
|
521
|
+
description?: string | undefined;
|
|
522
|
+
published?: boolean | undefined;
|
|
523
|
+
tags?: string[] | undefined;
|
|
524
|
+
series?: string | undefined;
|
|
525
|
+
canonicalUrl?: string | undefined;
|
|
526
|
+
}, {
|
|
527
|
+
url: string;
|
|
528
|
+
id: number;
|
|
529
|
+
title: string;
|
|
530
|
+
description: string | null;
|
|
531
|
+
slug: string;
|
|
532
|
+
published: boolean;
|
|
533
|
+
publishedAt: string | null;
|
|
534
|
+
tags: string[];
|
|
535
|
+
readingTimeMinutes: number;
|
|
536
|
+
}> | import("@jam-nodes/core").NodeDefinition<{
|
|
537
|
+
id: number;
|
|
538
|
+
title?: string | undefined;
|
|
539
|
+
description?: string | undefined;
|
|
540
|
+
published?: boolean | undefined;
|
|
541
|
+
tags?: string[] | undefined;
|
|
542
|
+
bodyMarkdown?: string | undefined;
|
|
543
|
+
}, {
|
|
544
|
+
url: string;
|
|
545
|
+
id: number;
|
|
546
|
+
title: string;
|
|
547
|
+
description: string | null;
|
|
548
|
+
slug: string;
|
|
549
|
+
published: boolean;
|
|
550
|
+
publishedAt: string | null;
|
|
551
|
+
tags: string[];
|
|
552
|
+
readingTimeMinutes: number;
|
|
553
|
+
}> | import("@jam-nodes/core").NodeDefinition<{
|
|
554
|
+
username?: string | undefined;
|
|
555
|
+
page?: number | undefined;
|
|
556
|
+
perPage?: number | undefined;
|
|
557
|
+
}, {
|
|
558
|
+
articles: {
|
|
559
|
+
url: string;
|
|
560
|
+
id: number;
|
|
561
|
+
title: string;
|
|
562
|
+
description: string | null;
|
|
563
|
+
slug: string;
|
|
564
|
+
published: boolean;
|
|
565
|
+
publishedAt: string | null;
|
|
566
|
+
tags: string[];
|
|
567
|
+
readingTimeMinutes: number;
|
|
568
|
+
}[];
|
|
569
|
+
page: number;
|
|
570
|
+
perPage: number;
|
|
571
|
+
count: number;
|
|
572
|
+
}> | import("@jam-nodes/core").NodeDefinition<{
|
|
573
|
+
title: string;
|
|
574
|
+
content: string;
|
|
575
|
+
status?: "pending" | "publish" | "draft" | "private" | undefined;
|
|
576
|
+
slug?: string | undefined;
|
|
577
|
+
tags?: number[] | undefined;
|
|
578
|
+
categories?: number[] | undefined;
|
|
579
|
+
excerpt?: string | undefined;
|
|
580
|
+
featuredMediaId?: number | undefined;
|
|
581
|
+
}, {
|
|
582
|
+
status: string;
|
|
583
|
+
date: string;
|
|
584
|
+
id: number;
|
|
585
|
+
title: string;
|
|
586
|
+
link: string;
|
|
587
|
+
author: number;
|
|
588
|
+
slug: string;
|
|
589
|
+
tags: number[];
|
|
590
|
+
modified: string;
|
|
591
|
+
featuredMedia: number;
|
|
592
|
+
categories: number[];
|
|
593
|
+
content?: string | undefined;
|
|
594
|
+
excerpt?: string | undefined;
|
|
595
|
+
}> | import("@jam-nodes/core").NodeDefinition<{
|
|
596
|
+
postId: number;
|
|
597
|
+
status?: "pending" | "publish" | "draft" | "private" | undefined;
|
|
598
|
+
title?: string | undefined;
|
|
599
|
+
content?: string | undefined;
|
|
600
|
+
}, {
|
|
601
|
+
status: string;
|
|
602
|
+
date: string;
|
|
603
|
+
id: number;
|
|
604
|
+
title: string;
|
|
605
|
+
link: string;
|
|
606
|
+
author: number;
|
|
607
|
+
slug: string;
|
|
608
|
+
tags: number[];
|
|
609
|
+
modified: string;
|
|
610
|
+
featuredMedia: number;
|
|
611
|
+
categories: number[];
|
|
612
|
+
content?: string | undefined;
|
|
613
|
+
excerpt?: string | undefined;
|
|
614
|
+
}> | import("@jam-nodes/core").NodeDefinition<{
|
|
615
|
+
status?: "pending" | "publish" | "draft" | "private" | "future" | "trash" | "any" | undefined;
|
|
616
|
+
page?: number | undefined;
|
|
617
|
+
perPage?: number | undefined;
|
|
618
|
+
search?: string | undefined;
|
|
619
|
+
}, {
|
|
620
|
+
posts: {
|
|
621
|
+
status: string;
|
|
622
|
+
date: string;
|
|
623
|
+
id: number;
|
|
624
|
+
title: string;
|
|
625
|
+
link: string;
|
|
626
|
+
author: number;
|
|
627
|
+
slug: string;
|
|
628
|
+
tags: number[];
|
|
629
|
+
modified: string;
|
|
630
|
+
featuredMedia: number;
|
|
631
|
+
categories: number[];
|
|
632
|
+
content?: string | undefined;
|
|
633
|
+
excerpt?: string | undefined;
|
|
634
|
+
}[];
|
|
635
|
+
meta: {
|
|
636
|
+
totalFound: number;
|
|
637
|
+
limit: number;
|
|
638
|
+
offset: number;
|
|
639
|
+
};
|
|
640
|
+
}> | import("@jam-nodes/core").NodeDefinition<{
|
|
641
|
+
mimeType: string;
|
|
642
|
+
filename: string;
|
|
643
|
+
contentBase64: string;
|
|
644
|
+
}, {
|
|
645
|
+
status: string;
|
|
646
|
+
id: number;
|
|
647
|
+
title: string;
|
|
648
|
+
link: string;
|
|
649
|
+
slug: string;
|
|
650
|
+
sourceUrl: string;
|
|
651
|
+
mediaType: string;
|
|
652
|
+
mimeType: string;
|
|
298
653
|
}> | import("@jam-nodes/core").NodeDefinition<{
|
|
299
654
|
topic: string;
|
|
300
655
|
userKeywords?: string[] | undefined;
|
|
@@ -316,8 +671,8 @@ export declare const builtInNodes: (import("@jam-nodes/core").NodeDefinition<{
|
|
|
316
671
|
contacts: {
|
|
317
672
|
id: string;
|
|
318
673
|
title: string | null;
|
|
319
|
-
company: string | null;
|
|
320
674
|
name: string;
|
|
675
|
+
company: string | null;
|
|
321
676
|
email: string | null;
|
|
322
677
|
}[];
|
|
323
678
|
productDescription: string;
|
|
@@ -434,7 +789,7 @@ export declare const builtInNodes: (import("@jam-nodes/core").NodeDefinition<{
|
|
|
434
789
|
relevanceScore: number;
|
|
435
790
|
sentiment: "positive" | "negative" | "neutral";
|
|
436
791
|
isComplaint: boolean;
|
|
437
|
-
urgencyLevel: "
|
|
792
|
+
urgencyLevel: "medium" | "low" | "high";
|
|
438
793
|
aiSummary: string;
|
|
439
794
|
matchedKeywords: string[];
|
|
440
795
|
title?: string | undefined;
|
|
@@ -458,7 +813,7 @@ export declare const builtInNodes: (import("@jam-nodes/core").NodeDefinition<{
|
|
|
458
813
|
relevanceScore: number;
|
|
459
814
|
sentiment: "positive" | "negative" | "neutral";
|
|
460
815
|
isComplaint: boolean;
|
|
461
|
-
urgencyLevel: "
|
|
816
|
+
urgencyLevel: "medium" | "low" | "high";
|
|
462
817
|
aiSummary: string;
|
|
463
818
|
matchedKeywords: string[];
|
|
464
819
|
title?: string | undefined;
|
|
@@ -482,7 +837,7 @@ export declare const builtInNodes: (import("@jam-nodes/core").NodeDefinition<{
|
|
|
482
837
|
relevanceScore: number;
|
|
483
838
|
sentiment: "positive" | "negative" | "neutral";
|
|
484
839
|
isComplaint: boolean;
|
|
485
|
-
urgencyLevel: "
|
|
840
|
+
urgencyLevel: "medium" | "low" | "high";
|
|
486
841
|
aiSummary: string;
|
|
487
842
|
matchedKeywords: string[];
|
|
488
843
|
title?: string | undefined;
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EACL,eAAe,EACf,OAAO,EACP,SAAS,EACT,sBAAsB,EACtB,uBAAuB,EACvB,eAAe,EACf,mBAAmB,EACnB,cAAc,EACd,eAAe,EACf,gBAAgB,EAChB,iBAAiB,GAClB,MAAM,kBAAkB,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|