@vrplatform/api 1.3.1-stage.4643 → 1.3.1-stage.4644

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.4643",
6
+ "version": "1.3.1-stage.4644",
7
7
  "description": "",
8
8
  "main": "build/main/index.js",
9
9
  "module": "build/module/index.js",
@@ -1044,7 +1044,7 @@ export interface paths {
1044
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 type (userUpload or ownerStatementExample or listingOwnerAssignment or listingFeeAssignment), optional startDate, optional endDate, and optional contactId. Type defaults to userUpload. 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 historicalData or historicalOwnerStatement or ownerStatementExample or listingOwnerAssignment or listingFeeAssignment), 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;
@@ -20551,7 +20551,7 @@ export interface operations {
20551
20551
  /** @description Filter files by filename text match. */
20552
20552
  search?: string;
20553
20553
  /** @description Filter files by their upload purpose. */
20554
- type?: "userUpload" | "ownerStatementExample" | "listingOwnerAssignment" | "listingFeeAssignment";
20554
+ type?: "userUpload" | "historicalData" | "historicalOwnerStatement" | "ownerStatementExample" | "listingOwnerAssignment" | "listingFeeAssignment";
20555
20555
  /** @description Field to sort files by. */
20556
20556
  sortBy?: "filename" | "startDate" | "endDate" | "createdAt" | "contactName";
20557
20557
  /** @description Sort direction. */
@@ -20578,7 +20578,7 @@ export interface operations {
20578
20578
  id: string;
20579
20579
  filename: string;
20580
20580
  /** @enum {string} */
20581
- type: "userUpload" | "ownerStatementExample" | "listingOwnerAssignment" | "listingFeeAssignment";
20581
+ type: "userUpload" | "historicalData" | "historicalOwnerStatement" | "ownerStatementExample" | "listingOwnerAssignment" | "listingFeeAssignment";
20582
20582
  startDate: string | null;
20583
20583
  endDate: string | null;
20584
20584
  /**
@@ -20765,7 +20765,7 @@ export interface operations {
20765
20765
  id: string;
20766
20766
  filename: string;
20767
20767
  /** @enum {string} */
20768
- type: "userUpload" | "ownerStatementExample" | "listingOwnerAssignment" | "listingFeeAssignment";
20768
+ type: "userUpload" | "historicalData" | "historicalOwnerStatement" | "ownerStatementExample" | "listingOwnerAssignment" | "listingFeeAssignment";
20769
20769
  startDate: string | null;
20770
20770
  endDate: string | null;
20771
20771
  /**
@@ -20953,7 +20953,7 @@ export interface operations {
20953
20953
  id: string;
20954
20954
  filename: string;
20955
20955
  /** @enum {string} */
20956
- type: "userUpload" | "ownerStatementExample" | "listingOwnerAssignment" | "listingFeeAssignment";
20956
+ type: "userUpload" | "historicalData" | "historicalOwnerStatement" | "ownerStatementExample" | "listingOwnerAssignment" | "listingFeeAssignment";
20957
20957
  startDate: string | null;
20958
20958
  endDate: string | null;
20959
20959
  /**
@@ -78117,6 +78117,10 @@ export interface operations {
78117
78117
  status: ("skipped" | "completed") | null;
78118
78118
  updatedAt: string | null;
78119
78119
  };
78120
+ listingsSetup: {
78121
+ status: ("skipped" | "completed") | null;
78122
+ updatedAt: string | null;
78123
+ };
78120
78124
  reportingPreferences: {
78121
78125
  status: ("skipped" | "completed") | null;
78122
78126
  updatedAt: string | null;
@@ -78133,6 +78137,14 @@ export interface operations {
78133
78137
  status: ("skipped" | "completed") | null;
78134
78138
  updatedAt: string | null;
78135
78139
  };
78140
+ historicalDataBalances: {
78141
+ status: ("skipped" | "completed") | null;
78142
+ updatedAt: string | null;
78143
+ };
78144
+ historicalOwnerStatements: {
78145
+ status: ("skipped" | "completed") | null;
78146
+ updatedAt: string | null;
78147
+ };
78136
78148
  addWorkflows: {
78137
78149
  status: ("skipped" | "completed") | null;
78138
78150
  updatedAt: string | null;
@@ -78298,6 +78310,9 @@ export interface operations {
78298
78310
  connectPms?: ("skipped" | "completed") | null;
78299
78311
  connectRamp?: ("skipped" | "completed") | null;
78300
78312
  feesAndCommissions?: ("skipped" | "completed") | null;
78313
+ historicalDataBalances?: ("skipped" | "completed") | null;
78314
+ historicalOwnerStatements?: ("skipped" | "completed") | null;
78315
+ listingsSetup?: ("skipped" | "completed") | null;
78301
78316
  openingBalances?: ("skipped" | "completed") | null;
78302
78317
  ownerStatementTemplate?: ("skipped" | "completed") | null;
78303
78318
  reportingPreferences?: ("skipped" | "completed") | null;
@@ -78347,6 +78362,10 @@ export interface operations {
78347
78362
  status: ("skipped" | "completed") | null;
78348
78363
  updatedAt: string | null;
78349
78364
  };
78365
+ listingsSetup: {
78366
+ status: ("skipped" | "completed") | null;
78367
+ updatedAt: string | null;
78368
+ };
78350
78369
  reportingPreferences: {
78351
78370
  status: ("skipped" | "completed") | null;
78352
78371
  updatedAt: string | null;
@@ -78363,6 +78382,14 @@ export interface operations {
78363
78382
  status: ("skipped" | "completed") | null;
78364
78383
  updatedAt: string | null;
78365
78384
  };
78385
+ historicalDataBalances: {
78386
+ status: ("skipped" | "completed") | null;
78387
+ updatedAt: string | null;
78388
+ };
78389
+ historicalOwnerStatements: {
78390
+ status: ("skipped" | "completed") | null;
78391
+ updatedAt: string | null;
78392
+ };
78366
78393
  addWorkflows: {
78367
78394
  status: ("skipped" | "completed") | null;
78368
78395
  updatedAt: string | null;