@vrplatform/api 1.3.1-stage.4001 → 1.3.1-stage.4003

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.4001",
6
+ "version": "1.3.1-stage.4003",
7
7
  "description": "",
8
8
  "main": "build/main/index.js",
9
9
  "module": "build/module/index.js",
@@ -1283,6 +1283,23 @@ export interface paths {
1283
1283
  patch?: never;
1284
1284
  trace?: never;
1285
1285
  };
1286
+ "/listings/opening-balance/csv-template": {
1287
+ parameters: {
1288
+ query?: never;
1289
+ header?: never;
1290
+ path?: never;
1291
+ cookie?: never;
1292
+ };
1293
+ /** @description Listing opening balance CSV import template */
1294
+ get: operations["getListingsOpeningBalanceCsvTemplate"];
1295
+ put?: never;
1296
+ post?: never;
1297
+ delete?: never;
1298
+ options?: never;
1299
+ head?: never;
1300
+ patch?: never;
1301
+ trace?: never;
1302
+ };
1286
1303
  "/listings/ownership-periods": {
1287
1304
  parameters: {
1288
1305
  query?: never;
@@ -18962,6 +18979,131 @@ export interface operations {
18962
18979
  };
18963
18980
  };
18964
18981
  };
18982
+ getListingsOpeningBalanceCsvTemplate: {
18983
+ parameters: {
18984
+ query?: {
18985
+ status?: "active" | "inactive";
18986
+ connectionId?: string;
18987
+ /** @description Filter by parent listing id. Use parent=null to return only parent/root listings. */
18988
+ parent?: string | "null";
18989
+ /** @description Comma-separated listing ids. */
18990
+ ids?: string;
18991
+ search?: string;
18992
+ contactId?: string;
18993
+ /** @description Filter listings by ownership period ID. */
18994
+ ownershipPeriodId?: string;
18995
+ /** @description Comma-separated listing short refs. */
18996
+ shortRefs?: string;
18997
+ /** @description Filter listings by whether they currently have an active ownership period. */
18998
+ activeOwnership?: boolean;
18999
+ /** @description Include child listing links on each listing. */
19000
+ includeChildren?: boolean;
19001
+ /** @description Filter by active recurring fee coverage. Use `active` or `inactive` for any recurring fee type, prefix a fee type with `!` to exclude it, or pass a recurring fee UUID for one specific fee. */
19002
+ activeRecurringFeePeriods?: string;
19003
+ /** @description Filter listings that have (true) or lack (false) opening balances */
19004
+ openingBalance?: boolean;
19005
+ /** @description Filter listings by setup issue code, "all" (all setup issues), or "any" (at least one setup issue) */
19006
+ issue?: "all" | "any" | "missingOwnershipOrDeactivation" | "missingFeesAndCommission" | "missingOpeningBalance";
19007
+ };
19008
+ header?: never;
19009
+ path?: never;
19010
+ cookie?: never;
19011
+ };
19012
+ requestBody?: never;
19013
+ responses: {
19014
+ /** @description Successful response */
19015
+ 200: {
19016
+ headers: {
19017
+ [name: string]: unknown;
19018
+ };
19019
+ content: {
19020
+ "application/json": {
19021
+ url: string;
19022
+ };
19023
+ };
19024
+ };
19025
+ /** @description Bad request */
19026
+ 400: {
19027
+ headers: {
19028
+ [name: string]: unknown;
19029
+ };
19030
+ content: {
19031
+ "application/json": {
19032
+ code: string;
19033
+ message: string;
19034
+ issues?: {
19035
+ message: string;
19036
+ }[];
19037
+ context?: unknown;
19038
+ };
19039
+ };
19040
+ };
19041
+ /** @description Unauthorized */
19042
+ 401: {
19043
+ headers: {
19044
+ [name: string]: unknown;
19045
+ };
19046
+ content: {
19047
+ "application/json": {
19048
+ code: string;
19049
+ message: string;
19050
+ issues?: {
19051
+ message: string;
19052
+ }[];
19053
+ context?: unknown;
19054
+ };
19055
+ };
19056
+ };
19057
+ /** @description Forbidden */
19058
+ 403: {
19059
+ headers: {
19060
+ [name: string]: unknown;
19061
+ };
19062
+ content: {
19063
+ "application/json": {
19064
+ code: string;
19065
+ message: string;
19066
+ issues?: {
19067
+ message: string;
19068
+ }[];
19069
+ context?: unknown;
19070
+ };
19071
+ };
19072
+ };
19073
+ /** @description Not found */
19074
+ 404: {
19075
+ headers: {
19076
+ [name: string]: unknown;
19077
+ };
19078
+ content: {
19079
+ "application/json": {
19080
+ code: string;
19081
+ message: string;
19082
+ issues?: {
19083
+ message: string;
19084
+ }[];
19085
+ context?: unknown;
19086
+ };
19087
+ };
19088
+ };
19089
+ /** @description Internal server error */
19090
+ 500: {
19091
+ headers: {
19092
+ [name: string]: unknown;
19093
+ };
19094
+ content: {
19095
+ "application/json": {
19096
+ code: string;
19097
+ message: string;
19098
+ issues?: {
19099
+ message: string;
19100
+ }[];
19101
+ context?: unknown;
19102
+ };
19103
+ };
19104
+ };
19105
+ };
19106
+ };
18965
19107
  getListingsOwnershipPeriods: {
18966
19108
  parameters: {
18967
19109
  query?: {