@prismer/sdk 1.8.0 → 1.8.2
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/chunk-BWZXMXL7.mjs +4762 -0
- package/dist/chunk-VSAVCMMZ.mjs +4761 -0
- package/dist/cli.d.mts +15 -0
- package/dist/cli.d.ts +15 -0
- package/dist/cli.js +570 -284
- package/dist/cli.mjs +3838 -0
- package/dist/index.d.mts +60 -5
- package/dist/index.d.ts +60 -5
- package/dist/index.js +32 -3
- package/dist/index.mjs +50 -4681
- package/icon +21 -0
- package/package.json +9 -4
- package/dist/chunk-Y6FXYEAI.mjs +0 -10
- package/dist/webhook.d.mts +0 -114
- package/dist/webhook.d.ts +0 -114
- package/dist/webhook.js +0 -200
- package/dist/webhook.mjs +0 -175
package/dist/cli.d.mts
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { PrismerClient } from './index.mjs';
|
|
2
|
+
import '@prismer/aip-sdk';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* Prismer CLI — modular CLI for Prismer Cloud SDK.
|
|
6
|
+
*
|
|
7
|
+
* Top-level shortcuts: send, load, search, parse, recall, discover, skill
|
|
8
|
+
* Grouped namespaces: im, context, evolve, task, memory, file, workspace, security, identity
|
|
9
|
+
* Utilities: init, register, status, config, token
|
|
10
|
+
*/
|
|
11
|
+
|
|
12
|
+
declare function getIMClient(): PrismerClient;
|
|
13
|
+
declare function getAPIClient(): PrismerClient;
|
|
14
|
+
|
|
15
|
+
export { getAPIClient, getIMClient };
|
package/dist/cli.d.ts
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { PrismerClient } from './index.js';
|
|
2
|
+
import '@prismer/aip-sdk';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* Prismer CLI — modular CLI for Prismer Cloud SDK.
|
|
6
|
+
*
|
|
7
|
+
* Top-level shortcuts: send, load, search, parse, recall, discover, skill
|
|
8
|
+
* Grouped namespaces: im, context, evolve, task, memory, file, workspace, security, identity
|
|
9
|
+
* Utilities: init, register, status, config, token
|
|
10
|
+
*/
|
|
11
|
+
|
|
12
|
+
declare function getIMClient(): PrismerClient;
|
|
13
|
+
declare function getAPIClient(): PrismerClient;
|
|
14
|
+
|
|
15
|
+
export { getAPIClient, getIMClient };
|