@iblai/iblai-api 4.100.0-test-ai → 4.101.0-ai
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/index.cjs.js +3 -7
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +3 -7
- package/dist/index.esm.js.map +1 -1
- package/dist/index.umd.js +3 -7
- package/dist/index.umd.js.map +1 -1
- package/dist/types/index.d.ts +1 -2
- package/dist/types/models/Artifact.d.ts +3 -7
- package/dist/types/models/ArtifactList.d.ts +1 -4
- package/dist/types/models/ArtifactVersion.d.ts +13 -2
- package/dist/types/models/ChatHistory.d.ts +2 -0
- package/dist/types/models/ChatSessionResponse.d.ts +2 -0
- package/dist/types/models/PaginatedArtifactVersionList.d.ts +7 -0
- package/dist/types/models/PatchedArtifact.d.ts +3 -7
- package/dist/types/services/AiMentorService.d.ts +6 -10
- package/package.json +1 -1
- package/sdk_schema.yml +119 -77
- package/src/core/OpenAPI.ts +1 -1
- package/src/index.ts +1 -2
- package/src/models/Artifact.ts +3 -7
- package/src/models/ArtifactList.ts +1 -4
- package/src/models/ArtifactVersion.ts +13 -2
- package/src/models/ChatHistory.ts +2 -0
- package/src/models/ChatSessionResponse.ts +2 -0
- package/src/models/{PaginatedArtifactVersionListList.ts → PaginatedArtifactVersionList.ts} +3 -3
- package/src/models/PatchedArtifact.ts +3 -7
- package/src/services/AiMentorService.ts +4 -13
- package/dist/types/models/ArtifactVersionList.d.ts +0 -35
- package/dist/types/models/PaginatedArtifactVersionListList.d.ts +0 -7
- package/src/models/ArtifactVersionList.ts +0 -40
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
/* generated using openapi-typescript-codegen -- do not edit */
|
|
2
|
-
/* istanbul ignore file */
|
|
3
|
-
/* tslint:disable */
|
|
4
|
-
/* eslint-disable */
|
|
5
|
-
/**
|
|
6
|
-
* Lightweight serializer for listing artifact versions.
|
|
7
|
-
* Excludes the potentially large content field.
|
|
8
|
-
*/
|
|
9
|
-
export type ArtifactVersionList = {
|
|
10
|
-
readonly id: number;
|
|
11
|
-
/**
|
|
12
|
-
* The artifact this version belongs to
|
|
13
|
-
*/
|
|
14
|
-
readonly artifact: number;
|
|
15
|
-
/**
|
|
16
|
-
* Whether this version is the current/active version
|
|
17
|
-
*/
|
|
18
|
-
readonly is_current: boolean;
|
|
19
|
-
/**
|
|
20
|
-
* Sequential version number for display purposes
|
|
21
|
-
*/
|
|
22
|
-
readonly version_number: number;
|
|
23
|
-
/**
|
|
24
|
-
* When this version was created
|
|
25
|
-
*/
|
|
26
|
-
readonly date_created: string;
|
|
27
|
-
/**
|
|
28
|
-
* Identifier for who created this version (e.g., 'llm', 'user:username')
|
|
29
|
-
*/
|
|
30
|
-
readonly created_by: string;
|
|
31
|
-
/**
|
|
32
|
-
* Optional summary of what changed in this version
|
|
33
|
-
*/
|
|
34
|
-
readonly change_summary: string;
|
|
35
|
-
/**
|
|
36
|
-
* Length of the version content in characters
|
|
37
|
-
*/
|
|
38
|
-
readonly content_length: number;
|
|
39
|
-
};
|
|
40
|
-
|