@elevasis/sdk 0.6.5 → 0.6.6
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 +2 -15
- package/dist/index.d.ts +2 -1
- package/dist/index.js +1 -14
- package/dist/worker/index.js +1 -14
- package/package.json +1 -1
package/dist/cli.cjs
CHANGED
|
@@ -40250,8 +40250,7 @@ var OpenRouterConfigSchema = external_exports.object({
|
|
|
40250
40250
|
"openrouter/minimax/minimax-m2.5",
|
|
40251
40251
|
"openrouter/qwen/qwen3.5-397b-a17b",
|
|
40252
40252
|
"openrouter/moonshotai/kimi-k2.5",
|
|
40253
|
-
"openrouter/z-ai/glm-5"
|
|
40254
|
-
"openrouter/google/gemini-3-flash-preview"
|
|
40253
|
+
"openrouter/z-ai/glm-5"
|
|
40255
40254
|
]),
|
|
40256
40255
|
provider: external_exports.literal("openrouter"),
|
|
40257
40256
|
apiKey: external_exports.string(),
|
|
@@ -40411,18 +40410,6 @@ var MODEL_INFO = {
|
|
|
40411
40410
|
category: "standard",
|
|
40412
40411
|
configSchema: OpenRouterConfigSchema
|
|
40413
40412
|
},
|
|
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
|
-
},
|
|
40426
40413
|
// Google Gemini Models (direct SDK access via @google/genai)
|
|
40427
40414
|
"gemini-3-flash-preview": {
|
|
40428
40415
|
inputCostPer1M: 50,
|
|
@@ -43949,7 +43936,7 @@ async function apiDelete(endpoint, apiUrl = resolveApiUrl()) {
|
|
|
43949
43936
|
// package.json
|
|
43950
43937
|
var package_default = {
|
|
43951
43938
|
name: "@elevasis/sdk",
|
|
43952
|
-
version: "0.6.
|
|
43939
|
+
version: "0.6.6",
|
|
43953
43940
|
description: "SDK for building Elevasis organization resources",
|
|
43954
43941
|
type: "module",
|
|
43955
43942
|
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' | 'openrouter/minimax/minimax-m2.5' | 'openrouter/qwen/qwen3.5-397b-a17b' | 'openrouter/moonshotai/kimi-k2.5' | 'openrouter/z-ai/glm-5'
|
|
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';
|
|
588
588
|
/**
|
|
589
589
|
* Supported Google models (direct SDK access)
|
|
590
590
|
*/
|
|
@@ -4811,6 +4811,7 @@ interface DomainSearchParams {
|
|
|
4811
4811
|
domain: string;
|
|
4812
4812
|
limit?: number;
|
|
4813
4813
|
department?: string;
|
|
4814
|
+
type?: 'personal' | 'generic';
|
|
4814
4815
|
}
|
|
4815
4816
|
interface DomainSearchEmail {
|
|
4816
4817
|
email: string;
|
package/dist/index.js
CHANGED
|
@@ -226,8 +226,7 @@ var OpenRouterConfigSchema = z.object({
|
|
|
226
226
|
"openrouter/minimax/minimax-m2.5",
|
|
227
227
|
"openrouter/qwen/qwen3.5-397b-a17b",
|
|
228
228
|
"openrouter/moonshotai/kimi-k2.5",
|
|
229
|
-
"openrouter/z-ai/glm-5"
|
|
230
|
-
"openrouter/google/gemini-3-flash-preview"
|
|
229
|
+
"openrouter/z-ai/glm-5"
|
|
231
230
|
]),
|
|
232
231
|
provider: z.literal("openrouter"),
|
|
233
232
|
apiKey: z.string(),
|
|
@@ -387,18 +386,6 @@ var MODEL_INFO = {
|
|
|
387
386
|
category: "standard",
|
|
388
387
|
configSchema: OpenRouterConfigSchema
|
|
389
388
|
},
|
|
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
|
-
},
|
|
402
389
|
// Google Gemini Models (direct SDK access via @google/genai)
|
|
403
390
|
"gemini-3-flash-preview": {
|
|
404
391
|
inputCostPer1M: 50,
|
package/dist/worker/index.js
CHANGED
|
@@ -2628,8 +2628,7 @@ var OpenRouterConfigSchema = z.object({
|
|
|
2628
2628
|
"openrouter/minimax/minimax-m2.5",
|
|
2629
2629
|
"openrouter/qwen/qwen3.5-397b-a17b",
|
|
2630
2630
|
"openrouter/moonshotai/kimi-k2.5",
|
|
2631
|
-
"openrouter/z-ai/glm-5"
|
|
2632
|
-
"openrouter/google/gemini-3-flash-preview"
|
|
2631
|
+
"openrouter/z-ai/glm-5"
|
|
2633
2632
|
]),
|
|
2634
2633
|
provider: z.literal("openrouter"),
|
|
2635
2634
|
apiKey: z.string(),
|
|
@@ -2789,18 +2788,6 @@ var MODEL_INFO = {
|
|
|
2789
2788
|
category: "standard",
|
|
2790
2789
|
configSchema: OpenRouterConfigSchema
|
|
2791
2790
|
},
|
|
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
|
-
},
|
|
2804
2791
|
// Google Gemini Models (direct SDK access via @google/genai)
|
|
2805
2792
|
"gemini-3-flash-preview": {
|
|
2806
2793
|
inputCostPer1M: 50,
|