@vibexp/api-client 0.22.0 → 0.23.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.
@@ -1374,9 +1374,13 @@ export type Attachment = {
1374
1374
  */
1375
1375
  owner_id: string;
1376
1376
  /**
1377
- * Original file name
1377
+ * Original file name (basename only)
1378
1378
  */
1379
1379
  file_name: string;
1380
+ /**
1381
+ * Optional path relative to the owner's directory (e.g. "scripts/helper.py" for a multi-file skill companion). Absent for a plain attachment. Unique per owner.
1382
+ */
1383
+ relative_path?: string;
1380
1384
  /**
1381
1385
  * Canonical content type of the file
1382
1386
  */
@@ -4937,6 +4941,10 @@ export type UploadAttachmentData = {
4937
4941
  * The file to attach
4938
4942
  */
4939
4943
  file: Blob | File;
4944
+ /**
4945
+ * Optional path relative to the owner's directory (e.g. "scripts/helper.py"). Must be relative — no leading "/", no "..", no backslashes. Unique per owner. file_name stays the basename.
4946
+ */
4947
+ relative_path?: string;
4940
4948
  };
4941
4949
  path: {
4942
4950
  /**
@@ -5098,6 +5106,10 @@ export type UploadArtifactAttachmentData = {
5098
5106
  * The file to attach
5099
5107
  */
5100
5108
  file: Blob | File;
5109
+ /**
5110
+ * Optional path relative to the owner's directory (e.g. "scripts/helper.py"). Must be relative — no leading "/", no "..", no backslashes. Unique per owner. file_name stays the basename.
5111
+ */
5112
+ relative_path?: string;
5101
5113
  };
5102
5114
  path: {
5103
5115
  /**
package/dist/schema.d.ts CHANGED
@@ -5599,10 +5599,15 @@ export interface components {
5599
5599
  */
5600
5600
  owner_id: string;
5601
5601
  /**
5602
- * @description Original file name
5602
+ * @description Original file name (basename only)
5603
5603
  * @example design-spec.pdf
5604
5604
  */
5605
5605
  file_name: string;
5606
+ /**
5607
+ * @description Optional path relative to the owner's directory (e.g. "scripts/helper.py" for a multi-file skill companion). Absent for a plain attachment. Unique per owner.
5608
+ * @example scripts/helper.py
5609
+ */
5610
+ relative_path?: string;
5606
5611
  /**
5607
5612
  * @description Canonical content type of the file
5608
5613
  * @example application/pdf
@@ -10081,6 +10086,11 @@ export interface operations {
10081
10086
  * @description The file to attach
10082
10087
  */
10083
10088
  file: string;
10089
+ /**
10090
+ * @description Optional path relative to the owner's directory (e.g. "scripts/helper.py"). Must be relative — no leading "/", no "..", no backslashes. Unique per owner. file_name stays the basename.
10091
+ * @example scripts/helper.py
10092
+ */
10093
+ relative_path?: string;
10084
10094
  };
10085
10095
  };
10086
10096
  };
@@ -10319,6 +10329,11 @@ export interface operations {
10319
10329
  * @description The file to attach
10320
10330
  */
10321
10331
  file: string;
10332
+ /**
10333
+ * @description Optional path relative to the owner's directory (e.g. "scripts/helper.py"). Must be relative — no leading "/", no "..", no backslashes. Unique per owner. file_name stays the basename.
10334
+ * @example scripts/helper.py
10335
+ */
10336
+ relative_path?: string;
10322
10337
  };
10323
10338
  };
10324
10339
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vibexp/api-client",
3
- "version": "0.22.0",
3
+ "version": "0.23.0",
4
4
  "description": "Typed VibeXP API client generated from the OpenAPI spec (openapi-fetch main entrypoint, axios SDK at ./axios)",
5
5
  "license": "MIT",
6
6
  "repository": {