@vibexp/api-client 0.27.0 → 0.28.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/dist/axios/types.gen.d.ts +16 -0
- package/dist/schema.d.ts +8 -0
- package/package.json +1 -1
|
@@ -288,6 +288,10 @@ export type Prompt = {
|
|
|
288
288
|
* Version number for optimistic concurrency control
|
|
289
289
|
*/
|
|
290
290
|
version: number;
|
|
291
|
+
/**
|
|
292
|
+
* Depth-1 typed neighborhood of this resource — the relations touching it in both directions, newest first, capped at 20. Typed summaries only, never bodies. Populated on the detail GET; empty in list responses.
|
|
293
|
+
*/
|
|
294
|
+
related: Array<RelatedResource>;
|
|
291
295
|
};
|
|
292
296
|
export type CreatePromptRequest = {
|
|
293
297
|
name: string;
|
|
@@ -1227,6 +1231,10 @@ export type Artifact = {
|
|
|
1227
1231
|
metadata?: {
|
|
1228
1232
|
[key: string]: unknown;
|
|
1229
1233
|
};
|
|
1234
|
+
/**
|
|
1235
|
+
* Depth-1 typed neighborhood of this resource — the relations touching it in both directions, newest first, capped at 20. Typed summaries only, never bodies. Populated on the detail GET; empty in list responses.
|
|
1236
|
+
*/
|
|
1237
|
+
related: Array<RelatedResource>;
|
|
1230
1238
|
};
|
|
1231
1239
|
export type CreateArtifactRequest = {
|
|
1232
1240
|
/**
|
|
@@ -1809,6 +1817,10 @@ export type Memory = {
|
|
|
1809
1817
|
* Version number for optimistic concurrency control
|
|
1810
1818
|
*/
|
|
1811
1819
|
version: number;
|
|
1820
|
+
/**
|
|
1821
|
+
* Depth-1 typed neighborhood of this resource — the relations touching it in both directions, newest first, capped at 20. Typed summaries only, never bodies. Populated on the detail GET; empty in list responses.
|
|
1822
|
+
*/
|
|
1823
|
+
related: Array<RelatedResource>;
|
|
1812
1824
|
};
|
|
1813
1825
|
export type CreateMemoryRequest = {
|
|
1814
1826
|
/**
|
|
@@ -2028,6 +2040,10 @@ export type Blueprint = {
|
|
|
2028
2040
|
*/
|
|
2029
2041
|
content_sha?: string;
|
|
2030
2042
|
source?: BlueprintSource;
|
|
2043
|
+
/**
|
|
2044
|
+
* Depth-1 typed neighborhood of this resource — the relations touching it in both directions, newest first, capped at 20. Typed summaries only, never bodies. Populated on the detail GET; empty in list responses.
|
|
2045
|
+
*/
|
|
2046
|
+
related: Array<RelatedResource>;
|
|
2031
2047
|
};
|
|
2032
2048
|
/**
|
|
2033
2049
|
* Read-only import provenance; present only for imported blueprints.
|
package/dist/schema.d.ts
CHANGED
|
@@ -4204,6 +4204,8 @@ export interface components {
|
|
|
4204
4204
|
* @example 1
|
|
4205
4205
|
*/
|
|
4206
4206
|
version: number;
|
|
4207
|
+
/** @description Depth-1 typed neighborhood of this resource — the relations touching it in both directions, newest first, capped at 20. Typed summaries only, never bodies. Populated on the detail GET; empty in list responses. */
|
|
4208
|
+
related: components["schemas"]["RelatedResource"][];
|
|
4207
4209
|
};
|
|
4208
4210
|
CreatePromptRequest: {
|
|
4209
4211
|
/** @example Code Review Template */
|
|
@@ -5459,6 +5461,8 @@ export interface components {
|
|
|
5459
5461
|
metadata?: {
|
|
5460
5462
|
[key: string]: unknown;
|
|
5461
5463
|
};
|
|
5464
|
+
/** @description Depth-1 typed neighborhood of this resource — the relations touching it in both directions, newest first, capped at 20. Typed summaries only, never bodies. Populated on the detail GET; empty in list responses. */
|
|
5465
|
+
related: components["schemas"]["RelatedResource"][];
|
|
5462
5466
|
};
|
|
5463
5467
|
CreateArtifactRequest: {
|
|
5464
5468
|
/**
|
|
@@ -6226,6 +6230,8 @@ export interface components {
|
|
|
6226
6230
|
* @example 1
|
|
6227
6231
|
*/
|
|
6228
6232
|
version: number;
|
|
6233
|
+
/** @description Depth-1 typed neighborhood of this resource — the relations touching it in both directions, newest first, capped at 20. Typed summaries only, never bodies. Populated on the detail GET; empty in list responses. */
|
|
6234
|
+
related: components["schemas"]["RelatedResource"][];
|
|
6229
6235
|
};
|
|
6230
6236
|
CreateMemoryRequest: {
|
|
6231
6237
|
/**
|
|
@@ -6521,6 +6527,8 @@ export interface components {
|
|
|
6521
6527
|
*/
|
|
6522
6528
|
content_sha?: string;
|
|
6523
6529
|
source?: components["schemas"]["BlueprintSource"];
|
|
6530
|
+
/** @description Depth-1 typed neighborhood of this resource — the relations touching it in both directions, newest first, capped at 20. Typed summaries only, never bodies. Populated on the detail GET; empty in list responses. */
|
|
6531
|
+
related: components["schemas"]["RelatedResource"][];
|
|
6524
6532
|
};
|
|
6525
6533
|
/** @description Read-only import provenance; present only for imported blueprints. */
|
|
6526
6534
|
BlueprintSource: {
|
package/package.json
CHANGED