@vrplatform/api 1.3.1-stage.3994 → 1.3.1-stage.3998

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.3994",
6
+ "version": "1.3.1-stage.3998",
7
7
  "description": "",
8
8
  "main": "build/main/index.js",
9
9
  "module": "build/module/index.js",
@@ -11881,6 +11881,22 @@ export interface operations {
11881
11881
  targetTransactionLineMoveCount: number;
11882
11882
  targetPaymentLineMoveCount: number;
11883
11883
  lockedCount: number;
11884
+ targetListings: {
11885
+ /** Format: uuid */
11886
+ targetListingConnectionId: string;
11887
+ uniqueRef: string | null;
11888
+ name: string;
11889
+ address: string | null;
11890
+ listingId: string | null;
11891
+ /** @enum {string} */
11892
+ status: "alreadyShared" | "matched" | "ambiguous" | "unmapped";
11893
+ suggestedListing: {
11894
+ /** Format: uuid */
11895
+ id: string;
11896
+ name: string;
11897
+ address: string | null;
11898
+ } | null;
11899
+ }[];
11884
11900
  };
11885
11901
  /** @constant */
11886
11902
  applied: true;
@@ -12173,6 +12189,22 @@ export interface operations {
12173
12189
  targetTransactionLineMoveCount: number;
12174
12190
  targetPaymentLineMoveCount: number;
12175
12191
  lockedCount: number;
12192
+ targetListings: {
12193
+ /** Format: uuid */
12194
+ targetListingConnectionId: string;
12195
+ uniqueRef: string | null;
12196
+ name: string;
12197
+ address: string | null;
12198
+ listingId: string | null;
12199
+ /** @enum {string} */
12200
+ status: "alreadyShared" | "matched" | "ambiguous" | "unmapped";
12201
+ suggestedListing: {
12202
+ /** Format: uuid */
12203
+ id: string;
12204
+ name: string;
12205
+ address: string | null;
12206
+ } | null;
12207
+ }[];
12176
12208
  };
12177
12209
  };
12178
12210
  };