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

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