@vrplatform/api 1.3.1-stage.4618 → 1.3.1-stage.4622

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/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.3.1-stage.4618",
6
+ "version": "1.3.1-stage.4622",
7
7
  "description": "",
8
8
  "main": "build/main/index.js",
9
9
  "module": "build/module/index.js",
@@ -1041,10 +1041,10 @@ export interface paths {
1041
1041
  path?: never;
1042
1042
  cookie?: never;
1043
1043
  };
1044
- /** @description List GL user-uploaded files for the current team. */
1044
+ /** @description List supported GL files for the current team. */
1045
1045
  get: operations["getFiles"];
1046
1046
  put?: never;
1047
- /** @description Upload a GL user file as multipart/form-data. Fields: file, optional filename, optional startDate, optional endDate, and optional contactId. The API derives team and user context from auth. */
1047
+ /** @description Upload a GL user file as multipart/form-data. Fields: file, optional filename, optional type (userUpload or ownerStatementExample), optional startDate, optional endDate, and optional contactId. Type defaults to userUpload. The API derives team and user context from auth. */
1048
1048
  post: operations["postFiles"];
1049
1049
  delete?: never;
1050
1050
  options?: never;
@@ -1077,7 +1077,7 @@ export interface paths {
1077
1077
  path?: never;
1078
1078
  cookie?: never;
1079
1079
  };
1080
- /** @description Download a GL user-uploaded file. */
1080
+ /** @description Download a supported GL file. */
1081
1081
  get: operations["getFilesByIdDownload"];
1082
1082
  put?: never;
1083
1083
  post?: never;
@@ -20550,6 +20550,8 @@ export interface operations {
20550
20550
  query?: {
20551
20551
  /** @description Filter files by filename text match. */
20552
20552
  search?: string;
20553
+ /** @description Filter files by their upload purpose. */
20554
+ type?: "userUpload" | "ownerStatementExample";
20553
20555
  /** @description Field to sort files by. */
20554
20556
  sortBy?: "filename" | "startDate" | "endDate" | "createdAt" | "contactName";
20555
20557
  /** @description Sort direction. */
@@ -20575,8 +20577,8 @@ export interface operations {
20575
20577
  /** Format: uuid */
20576
20578
  id: string;
20577
20579
  filename: string;
20578
- /** @constant */
20579
- type: "userUpload";
20580
+ /** @enum {string} */
20581
+ type: "userUpload" | "ownerStatementExample";
20580
20582
  startDate: string | null;
20581
20583
  endDate: string | null;
20582
20584
  /**
@@ -20762,8 +20764,8 @@ export interface operations {
20762
20764
  /** Format: uuid */
20763
20765
  id: string;
20764
20766
  filename: string;
20765
- /** @constant */
20766
- type: "userUpload";
20767
+ /** @enum {string} */
20768
+ type: "userUpload" | "ownerStatementExample";
20767
20769
  startDate: string | null;
20768
20770
  endDate: string | null;
20769
20771
  /**
@@ -20950,8 +20952,8 @@ export interface operations {
20950
20952
  /** Format: uuid */
20951
20953
  id: string;
20952
20954
  filename: string;
20953
- /** @constant */
20954
- type: "userUpload";
20955
+ /** @enum {string} */
20956
+ type: "userUpload" | "ownerStatementExample";
20955
20957
  startDate: string | null;
20956
20958
  endDate: string | null;
20957
20959
  /**