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

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.
@@ -1040,10 +1040,10 @@ export interface paths {
1040
1040
  path?: never;
1041
1041
  cookie?: never;
1042
1042
  };
1043
- /** @description List GL user-uploaded files for the current team. */
1043
+ /** @description List supported GL files for the current team. */
1044
1044
  get: operations["getFiles"];
1045
1045
  put?: never;
1046
- /** @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. */
1046
+ /** @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. */
1047
1047
  post: operations["postFiles"];
1048
1048
  delete?: never;
1049
1049
  options?: never;
@@ -1076,7 +1076,7 @@ export interface paths {
1076
1076
  path?: never;
1077
1077
  cookie?: never;
1078
1078
  };
1079
- /** @description Download a GL user-uploaded file. */
1079
+ /** @description Download a supported GL file. */
1080
1080
  get: operations["getFilesByIdDownload"];
1081
1081
  put?: never;
1082
1082
  post?: never;
@@ -20549,6 +20549,8 @@ export interface operations {
20549
20549
  query?: {
20550
20550
  /** @description Filter files by filename text match. */
20551
20551
  search?: string;
20552
+ /** @description Filter files by their upload purpose. */
20553
+ type?: "userUpload" | "ownerStatementExample";
20552
20554
  /** @description Field to sort files by. */
20553
20555
  sortBy?: "filename" | "startDate" | "endDate" | "createdAt" | "contactName";
20554
20556
  /** @description Sort direction. */
@@ -20574,8 +20576,8 @@ export interface operations {
20574
20576
  /** Format: uuid */
20575
20577
  id: string;
20576
20578
  filename: string;
20577
- /** @constant */
20578
- type: "userUpload";
20579
+ /** @enum {string} */
20580
+ type: "userUpload" | "ownerStatementExample";
20579
20581
  startDate: string | null;
20580
20582
  endDate: string | null;
20581
20583
  /**
@@ -20761,8 +20763,8 @@ export interface operations {
20761
20763
  /** Format: uuid */
20762
20764
  id: string;
20763
20765
  filename: string;
20764
- /** @constant */
20765
- type: "userUpload";
20766
+ /** @enum {string} */
20767
+ type: "userUpload" | "ownerStatementExample";
20766
20768
  startDate: string | null;
20767
20769
  endDate: string | null;
20768
20770
  /**
@@ -20949,8 +20951,8 @@ export interface operations {
20949
20951
  /** Format: uuid */
20950
20952
  id: string;
20951
20953
  filename: string;
20952
- /** @constant */
20953
- type: "userUpload";
20954
+ /** @enum {string} */
20955
+ type: "userUpload" | "ownerStatementExample";
20954
20956
  startDate: string | null;
20955
20957
  endDate: string | null;
20956
20958
  /**