@elevasis/sdk 0.6.4 → 0.6.5
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/cli.cjs +67 -2
- package/dist/index.d.ts +16 -1
- package/dist/index.js +66 -1
- package/dist/worker/index.js +66 -1
- package/package.json +1 -1
package/dist/cli.cjs
CHANGED
|
@@ -40246,7 +40246,12 @@ var OpenRouterConfigSchema = external_exports.object({
|
|
|
40246
40246
|
model: external_exports.enum([
|
|
40247
40247
|
"openrouter/anthropic/claude-sonnet-4.5",
|
|
40248
40248
|
"openrouter/deepseek/deepseek-v3.2",
|
|
40249
|
-
"openrouter/x-ai/grok-4.1-fast"
|
|
40249
|
+
"openrouter/x-ai/grok-4.1-fast",
|
|
40250
|
+
"openrouter/minimax/minimax-m2.5",
|
|
40251
|
+
"openrouter/qwen/qwen3.5-397b-a17b",
|
|
40252
|
+
"openrouter/moonshotai/kimi-k2.5",
|
|
40253
|
+
"openrouter/z-ai/glm-5",
|
|
40254
|
+
"openrouter/google/gemini-3-flash-preview"
|
|
40250
40255
|
]),
|
|
40251
40256
|
provider: external_exports.literal("openrouter"),
|
|
40252
40257
|
apiKey: external_exports.string(),
|
|
@@ -40358,6 +40363,66 @@ var MODEL_INFO = {
|
|
|
40358
40363
|
category: "standard",
|
|
40359
40364
|
configSchema: OpenRouterConfigSchema
|
|
40360
40365
|
},
|
|
40366
|
+
"openrouter/minimax/minimax-m2.5": {
|
|
40367
|
+
inputCostPer1M: 25,
|
|
40368
|
+
// $0.25 per 1M tokens
|
|
40369
|
+
outputCostPer1M: 120,
|
|
40370
|
+
// $1.20 per 1M tokens
|
|
40371
|
+
minTokens: 4e3,
|
|
40372
|
+
recommendedTokens: 4e3,
|
|
40373
|
+
maxTokens: 196608,
|
|
40374
|
+
// 196,608 context window
|
|
40375
|
+
category: "standard",
|
|
40376
|
+
configSchema: OpenRouterConfigSchema
|
|
40377
|
+
},
|
|
40378
|
+
"openrouter/qwen/qwen3.5-397b-a17b": {
|
|
40379
|
+
inputCostPer1M: 39,
|
|
40380
|
+
// $0.39 per 1M tokens
|
|
40381
|
+
outputCostPer1M: 234,
|
|
40382
|
+
// $2.34 per 1M tokens
|
|
40383
|
+
minTokens: 4e3,
|
|
40384
|
+
recommendedTokens: 4e3,
|
|
40385
|
+
maxTokens: 262144,
|
|
40386
|
+
// 262,144 context window
|
|
40387
|
+
category: "standard",
|
|
40388
|
+
configSchema: OpenRouterConfigSchema
|
|
40389
|
+
},
|
|
40390
|
+
"openrouter/moonshotai/kimi-k2.5": {
|
|
40391
|
+
inputCostPer1M: 45,
|
|
40392
|
+
// $0.45 per 1M tokens
|
|
40393
|
+
outputCostPer1M: 220,
|
|
40394
|
+
// $2.20 per 1M tokens
|
|
40395
|
+
minTokens: 4e3,
|
|
40396
|
+
recommendedTokens: 4e3,
|
|
40397
|
+
maxTokens: 262144,
|
|
40398
|
+
// 262,144 context window
|
|
40399
|
+
category: "standard",
|
|
40400
|
+
configSchema: OpenRouterConfigSchema
|
|
40401
|
+
},
|
|
40402
|
+
"openrouter/z-ai/glm-5": {
|
|
40403
|
+
inputCostPer1M: 72,
|
|
40404
|
+
// $0.72 per 1M tokens
|
|
40405
|
+
outputCostPer1M: 230,
|
|
40406
|
+
// $2.30 per 1M tokens
|
|
40407
|
+
minTokens: 4e3,
|
|
40408
|
+
recommendedTokens: 4e3,
|
|
40409
|
+
maxTokens: 202752,
|
|
40410
|
+
// 202,752 context window
|
|
40411
|
+
category: "standard",
|
|
40412
|
+
configSchema: OpenRouterConfigSchema
|
|
40413
|
+
},
|
|
40414
|
+
"openrouter/google/gemini-3-flash-preview": {
|
|
40415
|
+
inputCostPer1M: 50,
|
|
40416
|
+
// $0.50 per 1M tokens
|
|
40417
|
+
outputCostPer1M: 300,
|
|
40418
|
+
// $3.00 per 1M tokens
|
|
40419
|
+
minTokens: 4e3,
|
|
40420
|
+
recommendedTokens: 8e3,
|
|
40421
|
+
maxTokens: 1048576,
|
|
40422
|
+
// 1M context window
|
|
40423
|
+
category: "standard",
|
|
40424
|
+
configSchema: OpenRouterConfigSchema
|
|
40425
|
+
},
|
|
40361
40426
|
// Google Gemini Models (direct SDK access via @google/genai)
|
|
40362
40427
|
"gemini-3-flash-preview": {
|
|
40363
40428
|
inputCostPer1M: 50,
|
|
@@ -43884,7 +43949,7 @@ async function apiDelete(endpoint, apiUrl = resolveApiUrl()) {
|
|
|
43884
43949
|
// package.json
|
|
43885
43950
|
var package_default = {
|
|
43886
43951
|
name: "@elevasis/sdk",
|
|
43887
|
-
version: "0.6.
|
|
43952
|
+
version: "0.6.5",
|
|
43888
43953
|
description: "SDK for building Elevasis organization resources",
|
|
43889
43954
|
type: "module",
|
|
43890
43955
|
bin: {
|
package/dist/index.d.ts
CHANGED
|
@@ -584,7 +584,7 @@ type OpenAIModel = 'gpt-5' | 'gpt-5-mini';
|
|
|
584
584
|
/**
|
|
585
585
|
* Supported OpenRouter models (explicit union for type safety)
|
|
586
586
|
*/
|
|
587
|
-
type OpenRouterModel = 'openrouter/anthropic/claude-sonnet-4.5' | 'openrouter/deepseek/deepseek-v3.2' | 'openrouter/x-ai/grok-4.1-fast';
|
|
587
|
+
type OpenRouterModel = 'openrouter/anthropic/claude-sonnet-4.5' | 'openrouter/deepseek/deepseek-v3.2' | 'openrouter/x-ai/grok-4.1-fast' | 'openrouter/minimax/minimax-m2.5' | 'openrouter/qwen/qwen3.5-397b-a17b' | 'openrouter/moonshotai/kimi-k2.5' | 'openrouter/z-ai/glm-5' | 'openrouter/google/gemini-3-flash-preview';
|
|
588
588
|
/**
|
|
589
589
|
* Supported Google models (direct SDK access)
|
|
590
590
|
*/
|
|
@@ -1181,6 +1181,7 @@ type Database = {
|
|
|
1181
1181
|
created_at: string;
|
|
1182
1182
|
domain: string | null;
|
|
1183
1183
|
enrichment_data: Json | null;
|
|
1184
|
+
filter_reason: string | null;
|
|
1184
1185
|
founded_year: number | null;
|
|
1185
1186
|
id: string;
|
|
1186
1187
|
linkedin_url: string | null;
|
|
@@ -1203,6 +1204,7 @@ type Database = {
|
|
|
1203
1204
|
created_at?: string;
|
|
1204
1205
|
domain?: string | null;
|
|
1205
1206
|
enrichment_data?: Json | null;
|
|
1207
|
+
filter_reason?: string | null;
|
|
1206
1208
|
founded_year?: number | null;
|
|
1207
1209
|
id?: string;
|
|
1208
1210
|
linkedin_url?: string | null;
|
|
@@ -1225,6 +1227,7 @@ type Database = {
|
|
|
1225
1227
|
created_at?: string;
|
|
1226
1228
|
domain?: string | null;
|
|
1227
1229
|
enrichment_data?: Json | null;
|
|
1230
|
+
filter_reason?: string | null;
|
|
1228
1231
|
founded_year?: number | null;
|
|
1229
1232
|
id?: string;
|
|
1230
1233
|
linkedin_url?: string | null;
|
|
@@ -3317,6 +3320,17 @@ interface CompanyEnrichmentData {
|
|
|
3317
3320
|
aiInsight?: string;
|
|
3318
3321
|
}>;
|
|
3319
3322
|
};
|
|
3323
|
+
tomba?: {
|
|
3324
|
+
waterfallEmail?: {
|
|
3325
|
+
email: string;
|
|
3326
|
+
name?: string;
|
|
3327
|
+
title?: string;
|
|
3328
|
+
department?: string;
|
|
3329
|
+
} | null;
|
|
3330
|
+
genericEmail?: string | null;
|
|
3331
|
+
totalFound?: number;
|
|
3332
|
+
searchedAt?: string;
|
|
3333
|
+
};
|
|
3320
3334
|
}
|
|
3321
3335
|
/**
|
|
3322
3336
|
* Enrichment data collected for a contact from various sources.
|
|
@@ -3463,6 +3477,7 @@ interface CompanyFilters {
|
|
|
3463
3477
|
batchId?: string;
|
|
3464
3478
|
status?: 'active' | 'invalid';
|
|
3465
3479
|
includeAll?: boolean;
|
|
3480
|
+
excludeColumns?: Array<'enrichmentData' | 'pipelineStatus'>;
|
|
3466
3481
|
}
|
|
3467
3482
|
interface CreateContactParams {
|
|
3468
3483
|
organizationId: string;
|
package/dist/index.js
CHANGED
|
@@ -222,7 +222,12 @@ var OpenRouterConfigSchema = z.object({
|
|
|
222
222
|
model: z.enum([
|
|
223
223
|
"openrouter/anthropic/claude-sonnet-4.5",
|
|
224
224
|
"openrouter/deepseek/deepseek-v3.2",
|
|
225
|
-
"openrouter/x-ai/grok-4.1-fast"
|
|
225
|
+
"openrouter/x-ai/grok-4.1-fast",
|
|
226
|
+
"openrouter/minimax/minimax-m2.5",
|
|
227
|
+
"openrouter/qwen/qwen3.5-397b-a17b",
|
|
228
|
+
"openrouter/moonshotai/kimi-k2.5",
|
|
229
|
+
"openrouter/z-ai/glm-5",
|
|
230
|
+
"openrouter/google/gemini-3-flash-preview"
|
|
226
231
|
]),
|
|
227
232
|
provider: z.literal("openrouter"),
|
|
228
233
|
apiKey: z.string(),
|
|
@@ -334,6 +339,66 @@ var MODEL_INFO = {
|
|
|
334
339
|
category: "standard",
|
|
335
340
|
configSchema: OpenRouterConfigSchema
|
|
336
341
|
},
|
|
342
|
+
"openrouter/minimax/minimax-m2.5": {
|
|
343
|
+
inputCostPer1M: 25,
|
|
344
|
+
// $0.25 per 1M tokens
|
|
345
|
+
outputCostPer1M: 120,
|
|
346
|
+
// $1.20 per 1M tokens
|
|
347
|
+
minTokens: 4e3,
|
|
348
|
+
recommendedTokens: 4e3,
|
|
349
|
+
maxTokens: 196608,
|
|
350
|
+
// 196,608 context window
|
|
351
|
+
category: "standard",
|
|
352
|
+
configSchema: OpenRouterConfigSchema
|
|
353
|
+
},
|
|
354
|
+
"openrouter/qwen/qwen3.5-397b-a17b": {
|
|
355
|
+
inputCostPer1M: 39,
|
|
356
|
+
// $0.39 per 1M tokens
|
|
357
|
+
outputCostPer1M: 234,
|
|
358
|
+
// $2.34 per 1M tokens
|
|
359
|
+
minTokens: 4e3,
|
|
360
|
+
recommendedTokens: 4e3,
|
|
361
|
+
maxTokens: 262144,
|
|
362
|
+
// 262,144 context window
|
|
363
|
+
category: "standard",
|
|
364
|
+
configSchema: OpenRouterConfigSchema
|
|
365
|
+
},
|
|
366
|
+
"openrouter/moonshotai/kimi-k2.5": {
|
|
367
|
+
inputCostPer1M: 45,
|
|
368
|
+
// $0.45 per 1M tokens
|
|
369
|
+
outputCostPer1M: 220,
|
|
370
|
+
// $2.20 per 1M tokens
|
|
371
|
+
minTokens: 4e3,
|
|
372
|
+
recommendedTokens: 4e3,
|
|
373
|
+
maxTokens: 262144,
|
|
374
|
+
// 262,144 context window
|
|
375
|
+
category: "standard",
|
|
376
|
+
configSchema: OpenRouterConfigSchema
|
|
377
|
+
},
|
|
378
|
+
"openrouter/z-ai/glm-5": {
|
|
379
|
+
inputCostPer1M: 72,
|
|
380
|
+
// $0.72 per 1M tokens
|
|
381
|
+
outputCostPer1M: 230,
|
|
382
|
+
// $2.30 per 1M tokens
|
|
383
|
+
minTokens: 4e3,
|
|
384
|
+
recommendedTokens: 4e3,
|
|
385
|
+
maxTokens: 202752,
|
|
386
|
+
// 202,752 context window
|
|
387
|
+
category: "standard",
|
|
388
|
+
configSchema: OpenRouterConfigSchema
|
|
389
|
+
},
|
|
390
|
+
"openrouter/google/gemini-3-flash-preview": {
|
|
391
|
+
inputCostPer1M: 50,
|
|
392
|
+
// $0.50 per 1M tokens
|
|
393
|
+
outputCostPer1M: 300,
|
|
394
|
+
// $3.00 per 1M tokens
|
|
395
|
+
minTokens: 4e3,
|
|
396
|
+
recommendedTokens: 8e3,
|
|
397
|
+
maxTokens: 1048576,
|
|
398
|
+
// 1M context window
|
|
399
|
+
category: "standard",
|
|
400
|
+
configSchema: OpenRouterConfigSchema
|
|
401
|
+
},
|
|
337
402
|
// Google Gemini Models (direct SDK access via @google/genai)
|
|
338
403
|
"gemini-3-flash-preview": {
|
|
339
404
|
inputCostPer1M: 50,
|
package/dist/worker/index.js
CHANGED
|
@@ -2624,7 +2624,12 @@ var OpenRouterConfigSchema = z.object({
|
|
|
2624
2624
|
model: z.enum([
|
|
2625
2625
|
"openrouter/anthropic/claude-sonnet-4.5",
|
|
2626
2626
|
"openrouter/deepseek/deepseek-v3.2",
|
|
2627
|
-
"openrouter/x-ai/grok-4.1-fast"
|
|
2627
|
+
"openrouter/x-ai/grok-4.1-fast",
|
|
2628
|
+
"openrouter/minimax/minimax-m2.5",
|
|
2629
|
+
"openrouter/qwen/qwen3.5-397b-a17b",
|
|
2630
|
+
"openrouter/moonshotai/kimi-k2.5",
|
|
2631
|
+
"openrouter/z-ai/glm-5",
|
|
2632
|
+
"openrouter/google/gemini-3-flash-preview"
|
|
2628
2633
|
]),
|
|
2629
2634
|
provider: z.literal("openrouter"),
|
|
2630
2635
|
apiKey: z.string(),
|
|
@@ -2736,6 +2741,66 @@ var MODEL_INFO = {
|
|
|
2736
2741
|
category: "standard",
|
|
2737
2742
|
configSchema: OpenRouterConfigSchema
|
|
2738
2743
|
},
|
|
2744
|
+
"openrouter/minimax/minimax-m2.5": {
|
|
2745
|
+
inputCostPer1M: 25,
|
|
2746
|
+
// $0.25 per 1M tokens
|
|
2747
|
+
outputCostPer1M: 120,
|
|
2748
|
+
// $1.20 per 1M tokens
|
|
2749
|
+
minTokens: 4e3,
|
|
2750
|
+
recommendedTokens: 4e3,
|
|
2751
|
+
maxTokens: 196608,
|
|
2752
|
+
// 196,608 context window
|
|
2753
|
+
category: "standard",
|
|
2754
|
+
configSchema: OpenRouterConfigSchema
|
|
2755
|
+
},
|
|
2756
|
+
"openrouter/qwen/qwen3.5-397b-a17b": {
|
|
2757
|
+
inputCostPer1M: 39,
|
|
2758
|
+
// $0.39 per 1M tokens
|
|
2759
|
+
outputCostPer1M: 234,
|
|
2760
|
+
// $2.34 per 1M tokens
|
|
2761
|
+
minTokens: 4e3,
|
|
2762
|
+
recommendedTokens: 4e3,
|
|
2763
|
+
maxTokens: 262144,
|
|
2764
|
+
// 262,144 context window
|
|
2765
|
+
category: "standard",
|
|
2766
|
+
configSchema: OpenRouterConfigSchema
|
|
2767
|
+
},
|
|
2768
|
+
"openrouter/moonshotai/kimi-k2.5": {
|
|
2769
|
+
inputCostPer1M: 45,
|
|
2770
|
+
// $0.45 per 1M tokens
|
|
2771
|
+
outputCostPer1M: 220,
|
|
2772
|
+
// $2.20 per 1M tokens
|
|
2773
|
+
minTokens: 4e3,
|
|
2774
|
+
recommendedTokens: 4e3,
|
|
2775
|
+
maxTokens: 262144,
|
|
2776
|
+
// 262,144 context window
|
|
2777
|
+
category: "standard",
|
|
2778
|
+
configSchema: OpenRouterConfigSchema
|
|
2779
|
+
},
|
|
2780
|
+
"openrouter/z-ai/glm-5": {
|
|
2781
|
+
inputCostPer1M: 72,
|
|
2782
|
+
// $0.72 per 1M tokens
|
|
2783
|
+
outputCostPer1M: 230,
|
|
2784
|
+
// $2.30 per 1M tokens
|
|
2785
|
+
minTokens: 4e3,
|
|
2786
|
+
recommendedTokens: 4e3,
|
|
2787
|
+
maxTokens: 202752,
|
|
2788
|
+
// 202,752 context window
|
|
2789
|
+
category: "standard",
|
|
2790
|
+
configSchema: OpenRouterConfigSchema
|
|
2791
|
+
},
|
|
2792
|
+
"openrouter/google/gemini-3-flash-preview": {
|
|
2793
|
+
inputCostPer1M: 50,
|
|
2794
|
+
// $0.50 per 1M tokens
|
|
2795
|
+
outputCostPer1M: 300,
|
|
2796
|
+
// $3.00 per 1M tokens
|
|
2797
|
+
minTokens: 4e3,
|
|
2798
|
+
recommendedTokens: 8e3,
|
|
2799
|
+
maxTokens: 1048576,
|
|
2800
|
+
// 1M context window
|
|
2801
|
+
category: "standard",
|
|
2802
|
+
configSchema: OpenRouterConfigSchema
|
|
2803
|
+
},
|
|
2739
2804
|
// Google Gemini Models (direct SDK access via @google/genai)
|
|
2740
2805
|
"gemini-3-flash-preview": {
|
|
2741
2806
|
inputCostPer1M: 50,
|