@crestal/nation-sdk 0.1.19
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/.openapi-generator/FILES +51 -0
- package/.openapi-generator/VERSION +1 -0
- package/.openapi-generator-ignore +23 -0
- package/README.md +126 -0
- package/api.ts +4195 -0
- package/base.ts +86 -0
- package/common.ts +150 -0
- package/configuration.ts +115 -0
- package/dist/api.d.ts +3103 -0
- package/dist/api.js +2629 -0
- package/dist/base.d.ts +66 -0
- package/dist/base.js +86 -0
- package/dist/common.d.ts +65 -0
- package/dist/common.js +253 -0
- package/dist/configuration.d.ts +91 -0
- package/dist/configuration.js +57 -0
- package/dist/index.d.ts +13 -0
- package/dist/index.js +31 -0
- package/docs/AgentApi.md +167 -0
- package/docs/AgentAutonomous.md +33 -0
- package/docs/AgentExample.md +25 -0
- package/docs/AgentResponse.md +91 -0
- package/docs/AgentStatisticsResponse.md +49 -0
- package/docs/AgentUpdate.md +91 -0
- package/docs/AuthorType.md +23 -0
- package/docs/Chat.md +33 -0
- package/docs/ChatApi.md +516 -0
- package/docs/ChatMessage.md +63 -0
- package/docs/ChatMessageAttachment.md +23 -0
- package/docs/ChatMessageAttachmentType.md +13 -0
- package/docs/ChatMessageRequest.md +31 -0
- package/docs/ChatMessageSkillCall.md +35 -0
- package/docs/ChatMessagesResponse.md +25 -0
- package/docs/ChatUpdateRequest.md +21 -0
- package/docs/CreditAccount.md +45 -0
- package/docs/CreditApi.md +290 -0
- package/docs/CreditDebit.md +11 -0
- package/docs/CreditEvent.md +101 -0
- package/docs/CreditEventWithAgent.md +103 -0
- package/docs/CreditEventsResponse.md +25 -0
- package/docs/CreditTransactionResp.md +37 -0
- package/docs/CreditTransactionsResponse.md +25 -0
- package/docs/CreditType.md +13 -0
- package/docs/Direction.md +11 -0
- package/docs/EventType.md +31 -0
- package/docs/FeePercentage.md +19 -0
- package/docs/HTTPValidationError.md +20 -0
- package/docs/HealthApi.md +52 -0
- package/docs/LLMModelInfoWithProviderName.md +67 -0
- package/docs/LLMProvider.md +18 -0
- package/docs/MetadataApi.md +258 -0
- package/docs/OwnerType.md +13 -0
- package/docs/Skill.md +43 -0
- package/docs/TransactionType.md +39 -0
- package/docs/UpstreamType.md +15 -0
- package/docs/ValidationError.md +24 -0
- package/docs/ValidationErrorLocInner.md +18 -0
- package/git_push.sh +57 -0
- package/index.ts +18 -0
- package/package.json +31 -0
- package/tsconfig.json +21 -0
package/index.ts
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Nation IntentKit API
|
|
5
|
+
* API for Nation IntentKit services
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 0.1.19
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
export * from "./api";
|
|
17
|
+
export * from "./configuration";
|
|
18
|
+
|
package/package.json
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@crestal/nation-sdk",
|
|
3
|
+
"version": "0.1.19",
|
|
4
|
+
"description": "OpenAPI client for @crestal/nation-sdk",
|
|
5
|
+
"author": "OpenAPI-Generator Contributors",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/crestalnetwork/nation-intentkit.git"
|
|
9
|
+
},
|
|
10
|
+
"keywords": [
|
|
11
|
+
"axios",
|
|
12
|
+
"typescript",
|
|
13
|
+
"openapi-client",
|
|
14
|
+
"openapi-generator",
|
|
15
|
+
"@crestal/nation-sdk"
|
|
16
|
+
],
|
|
17
|
+
"license": "Unlicense",
|
|
18
|
+
"main": "./dist/index.js",
|
|
19
|
+
"typings": "./dist/index.d.ts",
|
|
20
|
+
"scripts": {
|
|
21
|
+
"build": "tsc",
|
|
22
|
+
"prepare": "npm run build"
|
|
23
|
+
},
|
|
24
|
+
"dependencies": {
|
|
25
|
+
"axios": "^1.6.1"
|
|
26
|
+
},
|
|
27
|
+
"devDependencies": {
|
|
28
|
+
"@types/node": "12.11.5 - 12.20.42",
|
|
29
|
+
"typescript": "^4.0 || ^5.0"
|
|
30
|
+
}
|
|
31
|
+
}
|
package/tsconfig.json
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"declaration": true,
|
|
4
|
+
"target": "ES5",
|
|
5
|
+
"module": "commonjs",
|
|
6
|
+
"noImplicitAny": true,
|
|
7
|
+
"outDir": "dist",
|
|
8
|
+
"rootDir": ".",
|
|
9
|
+
"lib": [
|
|
10
|
+
"es6",
|
|
11
|
+
"dom"
|
|
12
|
+
],
|
|
13
|
+
"typeRoots": [
|
|
14
|
+
"node_modules/@types"
|
|
15
|
+
]
|
|
16
|
+
},
|
|
17
|
+
"exclude": [
|
|
18
|
+
"dist",
|
|
19
|
+
"node_modules"
|
|
20
|
+
]
|
|
21
|
+
}
|