@nebula-ai/sdk 1.2.2 → 1.3.0
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/CHANGELOG.md +35 -0
- package/LICENSE +4 -23
- package/README.md +305 -126
- package/api-promise.d.mts +2 -0
- package/api-promise.d.mts.map +1 -0
- package/api-promise.d.ts +2 -0
- package/api-promise.d.ts.map +1 -0
- package/api-promise.js +6 -0
- package/api-promise.js.map +1 -0
- package/api-promise.mjs +2 -0
- package/api-promise.mjs.map +1 -0
- package/client.d.mts +205 -0
- package/client.d.mts.map +1 -0
- package/client.d.ts +205 -0
- package/client.d.ts.map +1 -0
- package/client.js +505 -0
- package/client.js.map +1 -0
- package/client.mjs +501 -0
- package/client.mjs.map +1 -0
- package/core/api-promise.d.mts +46 -0
- package/core/api-promise.d.mts.map +1 -0
- package/core/api-promise.d.ts +46 -0
- package/core/api-promise.d.ts.map +1 -0
- package/core/api-promise.js +74 -0
- package/core/api-promise.js.map +1 -0
- package/core/api-promise.mjs +70 -0
- package/core/api-promise.mjs.map +1 -0
- package/core/error.d.mts +46 -0
- package/core/error.d.mts.map +1 -0
- package/core/error.d.ts +46 -0
- package/core/error.d.ts.map +1 -0
- package/core/error.js +113 -0
- package/core/error.js.map +1 -0
- package/core/error.mjs +97 -0
- package/core/error.mjs.map +1 -0
- package/core/resource.d.mts +6 -0
- package/core/resource.d.mts.map +1 -0
- package/core/resource.d.ts +6 -0
- package/core/resource.d.ts.map +1 -0
- package/core/resource.js +11 -0
- package/core/resource.js.map +1 -0
- package/core/resource.mjs +7 -0
- package/core/resource.mjs.map +1 -0
- package/core/uploads.d.mts +3 -0
- package/core/uploads.d.mts.map +1 -0
- package/core/uploads.d.ts +3 -0
- package/core/uploads.d.ts.map +1 -0
- package/core/uploads.js +6 -0
- package/core/uploads.js.map +1 -0
- package/core/uploads.mjs +2 -0
- package/core/uploads.mjs.map +1 -0
- package/error.d.mts +2 -0
- package/error.d.mts.map +1 -0
- package/error.d.ts +2 -0
- package/error.d.ts.map +1 -0
- package/error.js +6 -0
- package/error.js.map +1 -0
- package/error.mjs +2 -0
- package/error.mjs.map +1 -0
- package/index.d.mts +13 -0
- package/index.d.mts.map +1 -0
- package/index.d.ts +13 -0
- package/index.d.ts.map +1 -0
- package/index.js +43 -0
- package/index.js.map +1 -0
- package/index.mjs +13 -0
- package/index.mjs.map +1 -0
- package/internal/builtin-types.d.mts +73 -0
- package/internal/builtin-types.d.mts.map +1 -0
- package/internal/builtin-types.d.ts +73 -0
- package/internal/builtin-types.d.ts.map +1 -0
- package/internal/builtin-types.js +4 -0
- package/internal/builtin-types.js.map +1 -0
- package/internal/builtin-types.mjs +3 -0
- package/internal/builtin-types.mjs.map +1 -0
- package/internal/detect-platform.d.mts +15 -0
- package/internal/detect-platform.d.mts.map +1 -0
- package/internal/detect-platform.d.ts +15 -0
- package/internal/detect-platform.d.ts.map +1 -0
- package/internal/detect-platform.js +162 -0
- package/internal/detect-platform.js.map +1 -0
- package/internal/detect-platform.mjs +157 -0
- package/internal/detect-platform.mjs.map +1 -0
- package/internal/errors.d.mts +3 -0
- package/internal/errors.d.mts.map +1 -0
- package/internal/errors.d.ts +3 -0
- package/internal/errors.d.ts.map +1 -0
- package/internal/errors.js +41 -0
- package/internal/errors.js.map +1 -0
- package/internal/errors.mjs +36 -0
- package/internal/errors.mjs.map +1 -0
- package/internal/headers.d.mts +20 -0
- package/internal/headers.d.mts.map +1 -0
- package/internal/headers.d.ts +20 -0
- package/internal/headers.d.ts.map +1 -0
- package/internal/headers.js +79 -0
- package/internal/headers.js.map +1 -0
- package/internal/headers.mjs +74 -0
- package/internal/headers.mjs.map +1 -0
- package/internal/parse.d.mts +12 -0
- package/internal/parse.d.mts.map +1 -0
- package/internal/parse.d.ts +12 -0
- package/internal/parse.d.ts.map +1 -0
- package/internal/parse.js +40 -0
- package/internal/parse.js.map +1 -0
- package/internal/parse.mjs +37 -0
- package/internal/parse.mjs.map +1 -0
- package/internal/qs/formats.d.mts +7 -0
- package/internal/qs/formats.d.mts.map +1 -0
- package/internal/qs/formats.d.ts +7 -0
- package/internal/qs/formats.d.ts.map +1 -0
- package/internal/qs/formats.js +13 -0
- package/internal/qs/formats.js.map +1 -0
- package/internal/qs/formats.mjs +9 -0
- package/internal/qs/formats.mjs.map +1 -0
- package/internal/qs/index.d.mts +10 -0
- package/internal/qs/index.d.mts.map +1 -0
- package/internal/qs/index.d.ts +10 -0
- package/internal/qs/index.d.ts.map +1 -0
- package/internal/qs/index.js +14 -0
- package/internal/qs/index.js.map +1 -0
- package/internal/qs/index.mjs +10 -0
- package/internal/qs/index.mjs.map +1 -0
- package/internal/qs/stringify.d.mts +3 -0
- package/internal/qs/stringify.d.mts.map +1 -0
- package/internal/qs/stringify.d.ts +3 -0
- package/internal/qs/stringify.d.ts.map +1 -0
- package/internal/qs/stringify.js +277 -0
- package/internal/qs/stringify.js.map +1 -0
- package/internal/qs/stringify.mjs +274 -0
- package/internal/qs/stringify.mjs.map +1 -0
- package/internal/qs/types.d.mts +57 -0
- package/internal/qs/types.d.mts.map +1 -0
- package/internal/qs/types.d.ts +57 -0
- package/internal/qs/types.d.ts.map +1 -0
- package/internal/qs/types.js +3 -0
- package/internal/qs/types.js.map +1 -0
- package/internal/qs/types.mjs +2 -0
- package/internal/qs/types.mjs.map +1 -0
- package/internal/qs/utils.d.mts +15 -0
- package/internal/qs/utils.d.mts.map +1 -0
- package/internal/qs/utils.d.ts +15 -0
- package/internal/qs/utils.d.ts.map +1 -0
- package/internal/qs/utils.js +230 -0
- package/internal/qs/utils.js.map +1 -0
- package/internal/qs/utils.mjs +217 -0
- package/internal/qs/utils.mjs.map +1 -0
- package/internal/request-options.d.mts +79 -0
- package/internal/request-options.d.mts.map +1 -0
- package/internal/request-options.d.ts +79 -0
- package/internal/request-options.d.ts.map +1 -0
- package/internal/request-options.js +14 -0
- package/internal/request-options.js.map +1 -0
- package/internal/request-options.mjs +10 -0
- package/internal/request-options.mjs.map +1 -0
- package/internal/shim-types.d.mts +17 -0
- package/internal/shim-types.d.mts.map +1 -0
- package/internal/shim-types.d.ts +17 -0
- package/internal/shim-types.d.ts.map +1 -0
- package/internal/shim-types.js +4 -0
- package/internal/shim-types.js.map +1 -0
- package/internal/shim-types.mjs +3 -0
- package/internal/shim-types.mjs.map +1 -0
- package/internal/shims.d.mts +20 -0
- package/internal/shims.d.mts.map +1 -0
- package/internal/shims.d.ts +20 -0
- package/internal/shims.d.ts.map +1 -0
- package/internal/shims.js +92 -0
- package/internal/shims.js.map +1 -0
- package/internal/shims.mjs +85 -0
- package/internal/shims.mjs.map +1 -0
- package/internal/to-file.d.mts +45 -0
- package/internal/to-file.d.mts.map +1 -0
- package/internal/to-file.d.ts +45 -0
- package/internal/to-file.d.ts.map +1 -0
- package/internal/to-file.js +91 -0
- package/internal/to-file.js.map +1 -0
- package/internal/to-file.mjs +88 -0
- package/internal/to-file.mjs.map +1 -0
- package/internal/tslib.js +81 -0
- package/internal/tslib.mjs +17 -0
- package/internal/types.d.mts +69 -0
- package/internal/types.d.mts.map +1 -0
- package/internal/types.d.ts +69 -0
- package/internal/types.d.ts.map +1 -0
- package/internal/types.js +4 -0
- package/internal/types.js.map +1 -0
- package/internal/types.mjs +3 -0
- package/internal/types.mjs.map +1 -0
- package/internal/uploads.d.mts +42 -0
- package/internal/uploads.d.mts.map +1 -0
- package/internal/uploads.d.ts +42 -0
- package/internal/uploads.d.ts.map +1 -0
- package/internal/uploads.js +141 -0
- package/internal/uploads.js.map +1 -0
- package/internal/uploads.mjs +131 -0
- package/internal/uploads.mjs.map +1 -0
- package/internal/utils/base64.d.mts +3 -0
- package/internal/utils/base64.d.mts.map +1 -0
- package/internal/utils/base64.d.ts +3 -0
- package/internal/utils/base64.d.ts.map +1 -0
- package/internal/utils/base64.js +38 -0
- package/internal/utils/base64.js.map +1 -0
- package/internal/utils/base64.mjs +33 -0
- package/internal/utils/base64.mjs.map +1 -0
- package/internal/utils/bytes.d.mts +4 -0
- package/internal/utils/bytes.d.mts.map +1 -0
- package/internal/utils/bytes.d.ts +4 -0
- package/internal/utils/bytes.d.ts.map +1 -0
- package/internal/utils/bytes.js +31 -0
- package/internal/utils/bytes.js.map +1 -0
- package/internal/utils/bytes.mjs +26 -0
- package/internal/utils/bytes.mjs.map +1 -0
- package/internal/utils/env.d.mts +9 -0
- package/internal/utils/env.d.mts.map +1 -0
- package/internal/utils/env.d.ts +9 -0
- package/internal/utils/env.d.ts.map +1 -0
- package/internal/utils/env.js +22 -0
- package/internal/utils/env.js.map +1 -0
- package/internal/utils/env.mjs +18 -0
- package/internal/utils/env.mjs.map +1 -0
- package/internal/utils/log.d.mts +37 -0
- package/internal/utils/log.d.mts.map +1 -0
- package/internal/utils/log.d.ts +37 -0
- package/internal/utils/log.d.ts.map +1 -0
- package/internal/utils/log.js +86 -0
- package/internal/utils/log.js.map +1 -0
- package/internal/utils/log.mjs +80 -0
- package/internal/utils/log.mjs.map +1 -0
- package/internal/utils/path.d.mts +15 -0
- package/internal/utils/path.d.mts.map +1 -0
- package/internal/utils/path.d.ts +15 -0
- package/internal/utils/path.d.ts.map +1 -0
- package/internal/utils/path.js +79 -0
- package/internal/utils/path.js.map +1 -0
- package/internal/utils/path.mjs +74 -0
- package/internal/utils/path.mjs.map +1 -0
- package/internal/utils/query.d.mts +2 -0
- package/internal/utils/query.d.mts.map +1 -0
- package/internal/utils/query.d.ts +2 -0
- package/internal/utils/query.d.ts.map +1 -0
- package/internal/utils/query.js +10 -0
- package/internal/utils/query.js.map +1 -0
- package/internal/utils/query.mjs +6 -0
- package/internal/utils/query.mjs.map +1 -0
- package/internal/utils/sleep.d.mts +2 -0
- package/internal/utils/sleep.d.mts.map +1 -0
- package/internal/utils/sleep.d.ts +2 -0
- package/internal/utils/sleep.d.ts.map +1 -0
- package/internal/utils/sleep.js +7 -0
- package/internal/utils/sleep.js.map +1 -0
- package/internal/utils/sleep.mjs +3 -0
- package/internal/utils/sleep.mjs.map +1 -0
- package/internal/utils/uuid.d.mts +5 -0
- package/internal/utils/uuid.d.mts.map +1 -0
- package/internal/utils/uuid.d.ts +5 -0
- package/internal/utils/uuid.d.ts.map +1 -0
- package/internal/utils/uuid.js +19 -0
- package/internal/utils/uuid.js.map +1 -0
- package/internal/utils/uuid.mjs +15 -0
- package/internal/utils/uuid.mjs.map +1 -0
- package/internal/utils/values.d.mts +18 -0
- package/internal/utils/values.d.mts.map +1 -0
- package/internal/utils/values.d.ts +18 -0
- package/internal/utils/values.d.ts.map +1 -0
- package/internal/utils/values.js +112 -0
- package/internal/utils/values.js.map +1 -0
- package/internal/utils/values.mjs +94 -0
- package/internal/utils/values.mjs.map +1 -0
- package/internal/utils.d.mts +8 -0
- package/internal/utils.d.mts.map +1 -0
- package/internal/utils.d.ts +8 -0
- package/internal/utils.d.ts.map +1 -0
- package/internal/utils.js +12 -0
- package/internal/utils.js.map +1 -0
- package/internal/utils.mjs +9 -0
- package/internal/utils.mjs.map +1 -0
- package/lib/dx.d.mts +96 -0
- package/lib/dx.d.mts.map +1 -0
- package/lib/dx.d.ts +96 -0
- package/lib/dx.d.ts.map +1 -0
- package/lib/dx.js +239 -0
- package/lib/dx.js.map +1 -0
- package/lib/dx.mjs +235 -0
- package/lib/dx.mjs.map +1 -0
- package/package.json +144 -58
- package/resource.d.mts +2 -0
- package/resource.d.mts.map +1 -0
- package/resource.d.ts +2 -0
- package/resource.d.ts.map +1 -0
- package/resource.js +6 -0
- package/resource.js.map +1 -0
- package/resource.mjs +2 -0
- package/resource.mjs.map +1 -0
- package/resources/collections.d.mts +289 -0
- package/resources/collections.d.mts.map +1 -0
- package/resources/collections.d.ts +289 -0
- package/resources/collections.d.ts.map +1 -0
- package/resources/collections.js +72 -0
- package/resources/collections.js.map +1 -0
- package/resources/collections.mjs +68 -0
- package/resources/collections.mjs.map +1 -0
- package/resources/connectors.d.mts +148 -0
- package/resources/connectors.d.mts.map +1 -0
- package/resources/connectors.d.ts +148 -0
- package/resources/connectors.d.ts.map +1 -0
- package/resources/connectors.js +50 -0
- package/resources/connectors.js.map +1 -0
- package/resources/connectors.mjs +46 -0
- package/resources/connectors.mjs.map +1 -0
- package/resources/index.d.mts +6 -0
- package/resources/index.d.mts.map +1 -0
- package/resources/index.d.ts +6 -0
- package/resources/index.d.ts.map +1 -0
- package/resources/index.js +13 -0
- package/resources/index.js.map +1 -0
- package/resources/index.mjs +6 -0
- package/resources/index.mjs.map +1 -0
- package/resources/memories.d.mts +1737 -0
- package/resources/memories.d.mts.map +1 -0
- package/resources/memories.d.ts +1737 -0
- package/resources/memories.d.ts.map +1 -0
- package/resources/memories.js +157 -0
- package/resources/memories.js.map +1 -0
- package/resources/memories.mjs +153 -0
- package/resources/memories.mjs.map +1 -0
- package/resources/snapshots.d.mts +281 -0
- package/resources/snapshots.d.mts.map +1 -0
- package/resources/snapshots.d.ts +281 -0
- package/resources/snapshots.d.ts.map +1 -0
- package/resources/snapshots.js +22 -0
- package/resources/snapshots.js.map +1 -0
- package/resources/snapshots.mjs +18 -0
- package/resources/snapshots.mjs.map +1 -0
- package/resources/top-level.d.mts +14 -0
- package/resources/top-level.d.mts.map +1 -0
- package/resources/top-level.d.ts +14 -0
- package/resources/top-level.d.ts.map +1 -0
- package/resources/top-level.js +4 -0
- package/resources/top-level.js.map +1 -0
- package/resources/top-level.mjs +3 -0
- package/resources/top-level.mjs.map +1 -0
- package/resources.d.mts +2 -0
- package/resources.d.mts.map +1 -0
- package/resources.d.ts +2 -0
- package/resources.d.ts.map +1 -0
- package/resources.js +5 -0
- package/resources.js.map +1 -0
- package/resources.mjs +2 -0
- package/resources.mjs.map +1 -0
- package/src/api-promise.ts +2 -0
- package/src/client.ts +892 -0
- package/src/core/README.md +3 -0
- package/src/core/api-promise.ts +92 -0
- package/src/core/error.ts +130 -0
- package/src/core/resource.ts +11 -0
- package/src/core/uploads.ts +2 -0
- package/src/error.ts +2 -0
- package/src/index.ts +36 -0
- package/src/internal/README.md +3 -0
- package/src/internal/builtin-types.ts +93 -0
- package/src/internal/detect-platform.ts +196 -0
- package/src/internal/errors.ts +33 -0
- package/src/internal/headers.ts +97 -0
- package/src/internal/parse.ts +56 -0
- package/src/internal/qs/LICENSE.md +13 -0
- package/src/internal/qs/README.md +3 -0
- package/src/internal/qs/formats.ts +10 -0
- package/src/internal/qs/index.ts +13 -0
- package/src/internal/qs/stringify.ts +385 -0
- package/src/internal/qs/types.ts +71 -0
- package/src/internal/qs/utils.ts +265 -0
- package/src/internal/request-options.ts +93 -0
- package/src/internal/shim-types.ts +26 -0
- package/src/internal/shims.ts +107 -0
- package/src/internal/to-file.ts +154 -0
- package/src/internal/types.ts +95 -0
- package/src/internal/uploads.ts +187 -0
- package/src/internal/utils/base64.ts +40 -0
- package/src/internal/utils/bytes.ts +32 -0
- package/src/internal/utils/env.ts +18 -0
- package/src/internal/utils/log.ts +127 -0
- package/src/internal/utils/path.ts +88 -0
- package/src/internal/utils/query.ts +7 -0
- package/src/internal/utils/sleep.ts +3 -0
- package/src/internal/utils/uuid.ts +17 -0
- package/src/internal/utils/values.ts +105 -0
- package/src/internal/utils.ts +9 -0
- package/src/lib/.keep +4 -0
- package/src/lib/dx.ts +459 -0
- package/src/resource.ts +2 -0
- package/src/resources/collections.ts +474 -0
- package/src/resources/connectors.ts +236 -0
- package/src/resources/index.ts +56 -0
- package/src/resources/memories.ts +2409 -0
- package/src/resources/snapshots.ts +387 -0
- package/src/resources/top-level.ts +19 -0
- package/src/resources.ts +1 -0
- package/src/tsconfig.json +11 -0
- package/src/uploads.ts +2 -0
- package/src/version.ts +1 -0
- package/uploads.d.mts +2 -0
- package/uploads.d.mts.map +1 -0
- package/uploads.d.ts +2 -0
- package/uploads.d.ts.map +1 -0
- package/uploads.js +6 -0
- package/uploads.js.map +1 -0
- package/uploads.mjs +2 -0
- package/uploads.mjs.map +1 -0
- package/version.d.mts +2 -0
- package/version.d.mts.map +1 -0
- package/version.d.ts +2 -0
- package/version.d.ts.map +1 -0
- package/version.js +5 -0
- package/version.js.map +1 -0
- package/version.mjs +2 -0
- package/version.mjs.map +1 -0
- package/dist/index.d.mts +0 -599
- package/dist/index.d.ts +0 -599
- package/dist/index.js +0 -1345
- package/dist/index.js.map +0 -1
- package/dist/index.mjs +0 -1330
- package/dist/index.mjs.map +0 -1
package/package.json
CHANGED
|
@@ -1,67 +1,153 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nebula-ai/sdk",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
"import": "./dist/index.mjs",
|
|
12
|
-
"require": "./dist/index.js"
|
|
13
|
-
}
|
|
14
|
-
},
|
|
3
|
+
"version": "1.3.0",
|
|
4
|
+
"description": "The official TypeScript library for the Nebula API",
|
|
5
|
+
"author": "Nebula <support@trynebula.ai>",
|
|
6
|
+
"types": "./index.d.ts",
|
|
7
|
+
"main": "./index.js",
|
|
8
|
+
"type": "commonjs",
|
|
9
|
+
"repository": "github:nebula-agi/nebula-typescript",
|
|
10
|
+
"license": "MIT",
|
|
15
11
|
"files": [
|
|
16
|
-
"
|
|
17
|
-
"README.md",
|
|
18
|
-
"LICENSE"
|
|
12
|
+
"**/*"
|
|
19
13
|
],
|
|
20
|
-
"
|
|
21
|
-
|
|
22
|
-
"
|
|
23
|
-
"clean": "rm -rf dist",
|
|
24
|
-
"prepare": "tsup",
|
|
25
|
-
"test": "jest",
|
|
26
|
-
"test:watch": "jest --watch",
|
|
27
|
-
"lint": "eslint src --ext .ts --config .eslintrc.js",
|
|
28
|
-
"type-check": "tsc --noEmit"
|
|
14
|
+
"private": false,
|
|
15
|
+
"publishConfig": {
|
|
16
|
+
"access": "public"
|
|
29
17
|
},
|
|
30
|
-
"
|
|
31
|
-
|
|
32
|
-
"
|
|
33
|
-
"memory",
|
|
34
|
-
"search",
|
|
35
|
-
"vector",
|
|
36
|
-
"embeddings",
|
|
37
|
-
"conversation",
|
|
38
|
-
"typescript",
|
|
39
|
-
"javascript",
|
|
40
|
-
"sdk"
|
|
41
|
-
],
|
|
42
|
-
"author": "Nebula AI Inc <support@trynebula.ai>",
|
|
43
|
-
"license": "MIT",
|
|
44
|
-
"repository": {
|
|
45
|
-
"type": "git",
|
|
46
|
-
"url": "https://github.com/nebula-agi/nebula-sdks.git",
|
|
47
|
-
"directory": "javascript"
|
|
18
|
+
"dependencies": {},
|
|
19
|
+
"overrides": {
|
|
20
|
+
"minimatch": "^9.0.5"
|
|
48
21
|
},
|
|
49
|
-
"
|
|
50
|
-
"
|
|
22
|
+
"resolutions": {
|
|
23
|
+
"minimatch": "^9.0.5"
|
|
51
24
|
},
|
|
52
|
-
"
|
|
53
|
-
|
|
54
|
-
|
|
25
|
+
"exports": {
|
|
26
|
+
".": {
|
|
27
|
+
"require": {
|
|
28
|
+
"types": "./index.d.ts",
|
|
29
|
+
"default": "./index.js"
|
|
30
|
+
},
|
|
31
|
+
"types": "./index.d.mts",
|
|
32
|
+
"default": "./index.mjs"
|
|
33
|
+
},
|
|
34
|
+
"./api-promise": {
|
|
35
|
+
"import": "./api-promise.mjs",
|
|
36
|
+
"require": "./api-promise.js"
|
|
37
|
+
},
|
|
38
|
+
"./api-promise.js": {
|
|
39
|
+
"default": "./api-promise.js"
|
|
40
|
+
},
|
|
41
|
+
"./api-promise.mjs": {
|
|
42
|
+
"default": "./api-promise.mjs"
|
|
43
|
+
},
|
|
44
|
+
"./client": {
|
|
45
|
+
"import": "./client.mjs",
|
|
46
|
+
"require": "./client.js"
|
|
47
|
+
},
|
|
48
|
+
"./client.js": {
|
|
49
|
+
"default": "./client.js"
|
|
50
|
+
},
|
|
51
|
+
"./client.mjs": {
|
|
52
|
+
"default": "./client.mjs"
|
|
53
|
+
},
|
|
54
|
+
"./core/*.mjs": {
|
|
55
|
+
"default": "./core/*.mjs"
|
|
56
|
+
},
|
|
57
|
+
"./core/*.js": {
|
|
58
|
+
"default": "./core/*.js"
|
|
59
|
+
},
|
|
60
|
+
"./core/*": {
|
|
61
|
+
"import": "./core/*.mjs",
|
|
62
|
+
"require": "./core/*.js"
|
|
63
|
+
},
|
|
64
|
+
"./error": {
|
|
65
|
+
"import": "./error.mjs",
|
|
66
|
+
"require": "./error.js"
|
|
67
|
+
},
|
|
68
|
+
"./error.js": {
|
|
69
|
+
"default": "./error.js"
|
|
70
|
+
},
|
|
71
|
+
"./error.mjs": {
|
|
72
|
+
"default": "./error.mjs"
|
|
73
|
+
},
|
|
74
|
+
"./index": {
|
|
75
|
+
"import": "./index.mjs",
|
|
76
|
+
"require": "./index.js"
|
|
77
|
+
},
|
|
78
|
+
"./index.js": {
|
|
79
|
+
"default": "./index.js"
|
|
80
|
+
},
|
|
81
|
+
"./index.mjs": {
|
|
82
|
+
"default": "./index.mjs"
|
|
83
|
+
},
|
|
84
|
+
"./lib/*.mjs": {
|
|
85
|
+
"default": "./lib/*.mjs"
|
|
86
|
+
},
|
|
87
|
+
"./lib/*.js": {
|
|
88
|
+
"default": "./lib/*.js"
|
|
89
|
+
},
|
|
90
|
+
"./lib/*": {
|
|
91
|
+
"import": "./lib/*.mjs",
|
|
92
|
+
"require": "./lib/*.js"
|
|
93
|
+
},
|
|
94
|
+
"./resource": {
|
|
95
|
+
"import": "./resource.mjs",
|
|
96
|
+
"require": "./resource.js"
|
|
97
|
+
},
|
|
98
|
+
"./resource.js": {
|
|
99
|
+
"default": "./resource.js"
|
|
100
|
+
},
|
|
101
|
+
"./resource.mjs": {
|
|
102
|
+
"default": "./resource.mjs"
|
|
103
|
+
},
|
|
104
|
+
"./resources/*.mjs": {
|
|
105
|
+
"default": "./resources/*.mjs"
|
|
106
|
+
},
|
|
107
|
+
"./resources/*.js": {
|
|
108
|
+
"default": "./resources/*.js"
|
|
109
|
+
},
|
|
110
|
+
"./resources/*": {
|
|
111
|
+
"import": "./resources/*.mjs",
|
|
112
|
+
"require": "./resources/*.js"
|
|
113
|
+
},
|
|
114
|
+
"./resources": {
|
|
115
|
+
"import": "./resources.mjs",
|
|
116
|
+
"require": "./resources.js"
|
|
117
|
+
},
|
|
118
|
+
"./resources.js": {
|
|
119
|
+
"default": "./resources.js"
|
|
120
|
+
},
|
|
121
|
+
"./resources.mjs": {
|
|
122
|
+
"default": "./resources.mjs"
|
|
123
|
+
},
|
|
124
|
+
"./uploads": {
|
|
125
|
+
"import": "./uploads.mjs",
|
|
126
|
+
"require": "./uploads.js"
|
|
127
|
+
},
|
|
128
|
+
"./uploads.js": {
|
|
129
|
+
"default": "./uploads.js"
|
|
130
|
+
},
|
|
131
|
+
"./uploads.mjs": {
|
|
132
|
+
"default": "./uploads.mjs"
|
|
133
|
+
},
|
|
134
|
+
"./version": {
|
|
135
|
+
"import": "./version.mjs",
|
|
136
|
+
"require": "./version.js"
|
|
137
|
+
},
|
|
138
|
+
"./version.js": {
|
|
139
|
+
"default": "./version.js"
|
|
140
|
+
},
|
|
141
|
+
"./version.mjs": {
|
|
142
|
+
"default": "./version.mjs"
|
|
143
|
+
}
|
|
55
144
|
},
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
"ts-jest": "^29.0.0",
|
|
64
|
-
"tsup": "^8.0.0",
|
|
65
|
-
"typescript": "^5.0.0"
|
|
145
|
+
"scripts": {
|
|
146
|
+
"test": "./scripts/test",
|
|
147
|
+
"build": "./scripts/build",
|
|
148
|
+
"format": "./scripts/format",
|
|
149
|
+
"tsn": "ts-node -r tsconfig-paths/register",
|
|
150
|
+
"lint": "./scripts/lint",
|
|
151
|
+
"fix": "./scripts/format"
|
|
66
152
|
}
|
|
67
|
-
}
|
|
153
|
+
}
|
package/resource.d.mts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"resource.d.mts","sourceRoot":"","sources":["src/resource.ts"],"names":[],"mappings":""}
|
package/resource.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"resource.d.ts","sourceRoot":"","sources":["src/resource.ts"],"names":[],"mappings":""}
|
package/resource.js
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const tslib_1 = require("./internal/tslib.js");
|
|
4
|
+
/** @deprecated Import from ./core/resource instead */
|
|
5
|
+
tslib_1.__exportStar(require("./core/resource.js"), exports);
|
|
6
|
+
//# sourceMappingURL=resource.js.map
|
package/resource.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"resource.js","sourceRoot":"","sources":["src/resource.ts"],"names":[],"mappings":";;;AAAA,sDAAsD;AACtD,6DAAgC"}
|
package/resource.mjs
ADDED
package/resource.mjs.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"resource.mjs","sourceRoot":"","sources":["src/resource.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,289 @@
|
|
|
1
|
+
import { APIResource } from "../core/resource.mjs";
|
|
2
|
+
import { APIPromise } from "../core/api-promise.mjs";
|
|
3
|
+
import { RequestOptions } from "../internal/request-options.mjs";
|
|
4
|
+
export declare class Collections extends APIResource {
|
|
5
|
+
/**
|
|
6
|
+
* Create a new collection and automatically add the creating user to it.
|
|
7
|
+
*
|
|
8
|
+
* This endpoint allows authenticated users to create a new collection with a
|
|
9
|
+
* specified name and optional description. The user creating the collection is
|
|
10
|
+
* automatically added as a member.
|
|
11
|
+
*/
|
|
12
|
+
create(body: CollectionCreateParams, options?: RequestOptions): APIPromise<CollectionCreateResponse>;
|
|
13
|
+
/**
|
|
14
|
+
* Get details of a specific collection.
|
|
15
|
+
*
|
|
16
|
+
* This endpoint retrieves detailed information about a single collection
|
|
17
|
+
* identified by its UUID. The user must have access to the collection to view its
|
|
18
|
+
* details.
|
|
19
|
+
*/
|
|
20
|
+
retrieve(id: string, options?: RequestOptions): APIPromise<CollectionRetrieveResponse>;
|
|
21
|
+
/**
|
|
22
|
+
* Update an existing collection's configuration.
|
|
23
|
+
*
|
|
24
|
+
* This endpoint allows updating the name, description, and access settings of an
|
|
25
|
+
* existing collection. The user must have appropriate permissions to modify the
|
|
26
|
+
* collection.
|
|
27
|
+
*/
|
|
28
|
+
update(id: string, body: CollectionUpdateParams, options?: RequestOptions): APIPromise<CollectionUpdateResponse>;
|
|
29
|
+
/**
|
|
30
|
+
* Returns a paginated list of collections the authenticated user has access to.
|
|
31
|
+
*
|
|
32
|
+
* Results can be filtered by providing specific collection IDs. Regular users will
|
|
33
|
+
* only see collections they own or have access to. Superusers can see all
|
|
34
|
+
* collections.
|
|
35
|
+
*
|
|
36
|
+
* The collections are returned in order of last modification, with most recent
|
|
37
|
+
* first.
|
|
38
|
+
*/
|
|
39
|
+
list(query?: CollectionListParams | null | undefined, options?: RequestOptions): APIPromise<CollectionListResponse>;
|
|
40
|
+
/**
|
|
41
|
+
* Delete an existing collection.
|
|
42
|
+
*
|
|
43
|
+
* This endpoint allows deletion of a collection identified by its UUID. The user
|
|
44
|
+
* must have appropriate permissions to delete the collection. Deleting a
|
|
45
|
+
* collection removes all associations but does not delete the engrams within it.
|
|
46
|
+
*/
|
|
47
|
+
delete(id: string, options?: RequestOptions): APIPromise<CollectionDeleteResponse>;
|
|
48
|
+
/**
|
|
49
|
+
* Retrieve a collection by its (owner_id, name) combination.
|
|
50
|
+
*
|
|
51
|
+
* The authenticated user can only fetch collections they own, or, if superuser,
|
|
52
|
+
* from anyone.
|
|
53
|
+
*/
|
|
54
|
+
retrieveByName(collectionName: string, query?: CollectionRetrieveByNameParams | null | undefined, options?: RequestOptions): APIPromise<CollectionRetrieveByNameResponse>;
|
|
55
|
+
}
|
|
56
|
+
export interface CollectionCreateResponse {
|
|
57
|
+
results: CollectionCreateResponse.Results;
|
|
58
|
+
}
|
|
59
|
+
export declare namespace CollectionCreateResponse {
|
|
60
|
+
interface Results {
|
|
61
|
+
id: string;
|
|
62
|
+
created_at: string;
|
|
63
|
+
description: string | null;
|
|
64
|
+
engram_count: number;
|
|
65
|
+
graph_collection_status: string;
|
|
66
|
+
graph_sync_status: string;
|
|
67
|
+
name: string;
|
|
68
|
+
owner_id: string | null;
|
|
69
|
+
updated_at: string;
|
|
70
|
+
user_count: number;
|
|
71
|
+
access_tier?: string | null;
|
|
72
|
+
cache_policy?: string | null;
|
|
73
|
+
chain_type?: string | null;
|
|
74
|
+
contract_address?: string | null;
|
|
75
|
+
creator_royalty_bps?: number | null;
|
|
76
|
+
has_preview_access?: boolean | null;
|
|
77
|
+
is_forked?: boolean | null;
|
|
78
|
+
marketplace_metadata?: {
|
|
79
|
+
[key: string]: unknown;
|
|
80
|
+
} | null;
|
|
81
|
+
memory_count?: number | null;
|
|
82
|
+
nft_collection_address?: string | null;
|
|
83
|
+
owner_email?: string | null;
|
|
84
|
+
owner_name?: string | null;
|
|
85
|
+
preview_query_limit?: number | null;
|
|
86
|
+
purchase_price_usd?: string | null;
|
|
87
|
+
rental_price_monthly_usd?: string | null;
|
|
88
|
+
workspace_id?: string | null;
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
export interface CollectionRetrieveResponse {
|
|
92
|
+
results: CollectionRetrieveResponse.Results;
|
|
93
|
+
}
|
|
94
|
+
export declare namespace CollectionRetrieveResponse {
|
|
95
|
+
interface Results {
|
|
96
|
+
id: string;
|
|
97
|
+
created_at: string;
|
|
98
|
+
description: string | null;
|
|
99
|
+
engram_count: number;
|
|
100
|
+
graph_collection_status: string;
|
|
101
|
+
graph_sync_status: string;
|
|
102
|
+
name: string;
|
|
103
|
+
owner_id: string | null;
|
|
104
|
+
updated_at: string;
|
|
105
|
+
user_count: number;
|
|
106
|
+
access_tier?: string | null;
|
|
107
|
+
cache_policy?: string | null;
|
|
108
|
+
chain_type?: string | null;
|
|
109
|
+
contract_address?: string | null;
|
|
110
|
+
creator_royalty_bps?: number | null;
|
|
111
|
+
has_preview_access?: boolean | null;
|
|
112
|
+
is_forked?: boolean | null;
|
|
113
|
+
marketplace_metadata?: {
|
|
114
|
+
[key: string]: unknown;
|
|
115
|
+
} | null;
|
|
116
|
+
memory_count?: number | null;
|
|
117
|
+
nft_collection_address?: string | null;
|
|
118
|
+
owner_email?: string | null;
|
|
119
|
+
owner_name?: string | null;
|
|
120
|
+
preview_query_limit?: number | null;
|
|
121
|
+
purchase_price_usd?: string | null;
|
|
122
|
+
rental_price_monthly_usd?: string | null;
|
|
123
|
+
workspace_id?: string | null;
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
export interface CollectionUpdateResponse {
|
|
127
|
+
results: CollectionUpdateResponse.Results;
|
|
128
|
+
}
|
|
129
|
+
export declare namespace CollectionUpdateResponse {
|
|
130
|
+
interface Results {
|
|
131
|
+
id: string;
|
|
132
|
+
created_at: string;
|
|
133
|
+
description: string | null;
|
|
134
|
+
engram_count: number;
|
|
135
|
+
graph_collection_status: string;
|
|
136
|
+
graph_sync_status: string;
|
|
137
|
+
name: string;
|
|
138
|
+
owner_id: string | null;
|
|
139
|
+
updated_at: string;
|
|
140
|
+
user_count: number;
|
|
141
|
+
access_tier?: string | null;
|
|
142
|
+
cache_policy?: string | null;
|
|
143
|
+
chain_type?: string | null;
|
|
144
|
+
contract_address?: string | null;
|
|
145
|
+
creator_royalty_bps?: number | null;
|
|
146
|
+
has_preview_access?: boolean | null;
|
|
147
|
+
is_forked?: boolean | null;
|
|
148
|
+
marketplace_metadata?: {
|
|
149
|
+
[key: string]: unknown;
|
|
150
|
+
} | null;
|
|
151
|
+
memory_count?: number | null;
|
|
152
|
+
nft_collection_address?: string | null;
|
|
153
|
+
owner_email?: string | null;
|
|
154
|
+
owner_name?: string | null;
|
|
155
|
+
preview_query_limit?: number | null;
|
|
156
|
+
purchase_price_usd?: string | null;
|
|
157
|
+
rental_price_monthly_usd?: string | null;
|
|
158
|
+
workspace_id?: string | null;
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
export interface CollectionListResponse {
|
|
162
|
+
results: Array<CollectionListResponse.Result>;
|
|
163
|
+
total_entries: number;
|
|
164
|
+
}
|
|
165
|
+
export declare namespace CollectionListResponse {
|
|
166
|
+
interface Result {
|
|
167
|
+
id: string;
|
|
168
|
+
created_at: string;
|
|
169
|
+
description: string | null;
|
|
170
|
+
engram_count: number;
|
|
171
|
+
graph_collection_status: string;
|
|
172
|
+
graph_sync_status: string;
|
|
173
|
+
name: string;
|
|
174
|
+
owner_id: string | null;
|
|
175
|
+
updated_at: string;
|
|
176
|
+
user_count: number;
|
|
177
|
+
access_tier?: string | null;
|
|
178
|
+
cache_policy?: string | null;
|
|
179
|
+
chain_type?: string | null;
|
|
180
|
+
contract_address?: string | null;
|
|
181
|
+
creator_royalty_bps?: number | null;
|
|
182
|
+
has_preview_access?: boolean | null;
|
|
183
|
+
is_forked?: boolean | null;
|
|
184
|
+
marketplace_metadata?: {
|
|
185
|
+
[key: string]: unknown;
|
|
186
|
+
} | null;
|
|
187
|
+
memory_count?: number | null;
|
|
188
|
+
nft_collection_address?: string | null;
|
|
189
|
+
owner_email?: string | null;
|
|
190
|
+
owner_name?: string | null;
|
|
191
|
+
preview_query_limit?: number | null;
|
|
192
|
+
purchase_price_usd?: string | null;
|
|
193
|
+
rental_price_monthly_usd?: string | null;
|
|
194
|
+
workspace_id?: string | null;
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
export interface CollectionDeleteResponse {
|
|
198
|
+
results: CollectionDeleteResponse.Results;
|
|
199
|
+
}
|
|
200
|
+
export declare namespace CollectionDeleteResponse {
|
|
201
|
+
interface Results {
|
|
202
|
+
success: boolean;
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
export interface CollectionRetrieveByNameResponse {
|
|
206
|
+
results: CollectionRetrieveByNameResponse.Results;
|
|
207
|
+
}
|
|
208
|
+
export declare namespace CollectionRetrieveByNameResponse {
|
|
209
|
+
interface Results {
|
|
210
|
+
id: string;
|
|
211
|
+
created_at: string;
|
|
212
|
+
description: string | null;
|
|
213
|
+
engram_count: number;
|
|
214
|
+
graph_collection_status: string;
|
|
215
|
+
graph_sync_status: string;
|
|
216
|
+
name: string;
|
|
217
|
+
owner_id: string | null;
|
|
218
|
+
updated_at: string;
|
|
219
|
+
user_count: number;
|
|
220
|
+
access_tier?: string | null;
|
|
221
|
+
cache_policy?: string | null;
|
|
222
|
+
chain_type?: string | null;
|
|
223
|
+
contract_address?: string | null;
|
|
224
|
+
creator_royalty_bps?: number | null;
|
|
225
|
+
has_preview_access?: boolean | null;
|
|
226
|
+
is_forked?: boolean | null;
|
|
227
|
+
marketplace_metadata?: {
|
|
228
|
+
[key: string]: unknown;
|
|
229
|
+
} | null;
|
|
230
|
+
memory_count?: number | null;
|
|
231
|
+
nft_collection_address?: string | null;
|
|
232
|
+
owner_email?: string | null;
|
|
233
|
+
owner_name?: string | null;
|
|
234
|
+
preview_query_limit?: number | null;
|
|
235
|
+
purchase_price_usd?: string | null;
|
|
236
|
+
rental_price_monthly_usd?: string | null;
|
|
237
|
+
workspace_id?: string | null;
|
|
238
|
+
}
|
|
239
|
+
}
|
|
240
|
+
export interface CollectionCreateParams {
|
|
241
|
+
name: string;
|
|
242
|
+
description?: string | null;
|
|
243
|
+
workspace_id?: string | null;
|
|
244
|
+
}
|
|
245
|
+
export interface CollectionUpdateParams {
|
|
246
|
+
access_tier?: string | null;
|
|
247
|
+
description?: string | null;
|
|
248
|
+
generate_description?: boolean;
|
|
249
|
+
name?: string | null;
|
|
250
|
+
}
|
|
251
|
+
export interface CollectionListParams {
|
|
252
|
+
/**
|
|
253
|
+
* A list of collection IDs to retrieve. If not provided, all collections will be
|
|
254
|
+
* returned.
|
|
255
|
+
*/
|
|
256
|
+
ids?: Array<string>;
|
|
257
|
+
/**
|
|
258
|
+
* Specifies a limit on the number of objects to return, ranging between 1 and 100.
|
|
259
|
+
* Defaults to 100.
|
|
260
|
+
*/
|
|
261
|
+
limit?: number;
|
|
262
|
+
/**
|
|
263
|
+
* Filter collections by name (case-insensitive exact match).
|
|
264
|
+
*/
|
|
265
|
+
name?: string | null;
|
|
266
|
+
/**
|
|
267
|
+
* Specifies the number of objects to skip. Defaults to 0.
|
|
268
|
+
*/
|
|
269
|
+
offset?: number;
|
|
270
|
+
/**
|
|
271
|
+
* If true, only returns collections owned by the user, not all accessible
|
|
272
|
+
* collections.
|
|
273
|
+
*/
|
|
274
|
+
owner_only?: boolean;
|
|
275
|
+
/**
|
|
276
|
+
* Filter by workspace ID. Pass a UUID to scope to a workspace, or omit for all.
|
|
277
|
+
*/
|
|
278
|
+
workspace_id?: string | null;
|
|
279
|
+
}
|
|
280
|
+
export interface CollectionRetrieveByNameParams {
|
|
281
|
+
/**
|
|
282
|
+
* (Superuser only) Specify the owner_id to retrieve a collection by name
|
|
283
|
+
*/
|
|
284
|
+
owner_id?: string | null;
|
|
285
|
+
}
|
|
286
|
+
export declare namespace Collections {
|
|
287
|
+
export { type CollectionCreateResponse as CollectionCreateResponse, type CollectionRetrieveResponse as CollectionRetrieveResponse, type CollectionUpdateResponse as CollectionUpdateResponse, type CollectionListResponse as CollectionListResponse, type CollectionDeleteResponse as CollectionDeleteResponse, type CollectionRetrieveByNameResponse as CollectionRetrieveByNameResponse, type CollectionCreateParams as CollectionCreateParams, type CollectionUpdateParams as CollectionUpdateParams, type CollectionListParams as CollectionListParams, type CollectionRetrieveByNameParams as CollectionRetrieveByNameParams, };
|
|
288
|
+
}
|
|
289
|
+
//# sourceMappingURL=collections.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"collections.d.mts","sourceRoot":"","sources":["../src/resources/collections.ts"],"names":[],"mappings":"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"}
|