@vrplatform/api 1.3.1-stage.2089 → 1.3.1-stage.2091

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.2089",
6
+ "version": "1.3.1-stage.2091",
7
7
  "description": "",
8
8
  "main": "build/main/index.js",
9
9
  "module": "build/module/index.js",
@@ -1131,23 +1131,6 @@ export interface paths {
1131
1131
  patch?: never;
1132
1132
  trace?: never;
1133
1133
  };
1134
- "/metrics/journal-entries": {
1135
- parameters: {
1136
- query?: never;
1137
- header?: never;
1138
- path?: never;
1139
- cookie?: never;
1140
- };
1141
- /** @description Journal entry totals split by lock state and party */
1142
- get: operations["getMetricJournalEntries"];
1143
- put?: never;
1144
- post?: never;
1145
- delete?: never;
1146
- options?: never;
1147
- head?: never;
1148
- patch?: never;
1149
- trace?: never;
1150
- };
1151
1134
  "/metrics/journal-entry-totals-by-recurring-fee": {
1152
1135
  parameters: {
1153
1136
  query?: never;
@@ -1182,23 +1165,6 @@ export interface paths {
1182
1165
  patch?: never;
1183
1166
  trace?: never;
1184
1167
  };
1185
- "/metrics/legacy/bank-record-balances": {
1186
- parameters: {
1187
- query?: never;
1188
- header?: never;
1189
- path?: never;
1190
- cookie?: never;
1191
- };
1192
- /** @description Legacy bank record balances metric */
1193
- get: operations["getMetricLegacyBankRecordBalances"];
1194
- put?: never;
1195
- post?: never;
1196
- delete?: never;
1197
- options?: never;
1198
- head?: never;
1199
- patch?: never;
1200
- trace?: never;
1201
- };
1202
1168
  "/metrics/legacy/currencies": {
1203
1169
  parameters: {
1204
1170
  query?: never;
@@ -1216,23 +1182,6 @@ export interface paths {
1216
1182
  patch?: never;
1217
1183
  trace?: never;
1218
1184
  };
1219
- "/metrics/legacy/distinct-action-by-status": {
1220
- parameters: {
1221
- query?: never;
1222
- header?: never;
1223
- path?: never;
1224
- cookie?: never;
1225
- };
1226
- /** @description Legacy distinct action by status metric */
1227
- get: operations["getMetricLegacyDistinctActionByStatus"];
1228
- put?: never;
1229
- post?: never;
1230
- delete?: never;
1231
- options?: never;
1232
- head?: never;
1233
- patch?: never;
1234
- trace?: never;
1235
- };
1236
1185
  "/metrics/legacy/payment-volume": {
1237
1186
  parameters: {
1238
1187
  query?: never;
@@ -1284,23 +1233,6 @@ export interface paths {
1284
1233
  patch?: never;
1285
1234
  trace?: never;
1286
1235
  };
1287
- "/metrics/legacy/sync-by-status": {
1288
- parameters: {
1289
- query?: never;
1290
- header?: never;
1291
- path?: never;
1292
- cookie?: never;
1293
- };
1294
- /** @description Legacy sync by status metric */
1295
- get: operations["getMetricLegacySyncByStatus"];
1296
- put?: never;
1297
- post?: never;
1298
- delete?: never;
1299
- options?: never;
1300
- head?: never;
1301
- patch?: never;
1302
- trace?: never;
1303
- };
1304
1236
  "/metrics/listing-revenue": {
1305
1237
  parameters: {
1306
1238
  query?: never;
@@ -15961,120 +15893,6 @@ export interface operations {
15961
15893
  };
15962
15894
  };
15963
15895
  };
15964
- getMetricJournalEntries: {
15965
- parameters: {
15966
- query: {
15967
- party: "owners" | "manager";
15968
- dimension?: "month" | "week" | "day" | "year";
15969
- /** @description Date boundary string. Accepted syntax: `YYYY`, `YYYY-MM`, or `YYYY-MM-DD`. */
15970
- startDate: string;
15971
- /** @description Date boundary string. Accepted syntax: `YYYY`, `YYYY-MM`, or `YYYY-MM-DD`. */
15972
- endDate: string;
15973
- };
15974
- header?: never;
15975
- path?: never;
15976
- cookie?: never;
15977
- };
15978
- requestBody?: never;
15979
- responses: {
15980
- /** @description Successful response */
15981
- 200: {
15982
- headers: {
15983
- [name: string]: unknown;
15984
- };
15985
- content: {
15986
- "application/json": {
15987
- data: {
15988
- date: string;
15989
- lockedTotal?: number;
15990
- unlockedTotal: number;
15991
- currency: string;
15992
- }[];
15993
- };
15994
- };
15995
- };
15996
- /** @description Bad request */
15997
- 400: {
15998
- headers: {
15999
- [name: string]: unknown;
16000
- };
16001
- content: {
16002
- "application/json": {
16003
- code: string;
16004
- message: string;
16005
- issues?: {
16006
- message: string;
16007
- }[];
16008
- context?: unknown;
16009
- };
16010
- };
16011
- };
16012
- /** @description Unauthorized */
16013
- 401: {
16014
- headers: {
16015
- [name: string]: unknown;
16016
- };
16017
- content: {
16018
- "application/json": {
16019
- code: string;
16020
- message: string;
16021
- issues?: {
16022
- message: string;
16023
- }[];
16024
- context?: unknown;
16025
- };
16026
- };
16027
- };
16028
- /** @description Forbidden */
16029
- 403: {
16030
- headers: {
16031
- [name: string]: unknown;
16032
- };
16033
- content: {
16034
- "application/json": {
16035
- code: string;
16036
- message: string;
16037
- issues?: {
16038
- message: string;
16039
- }[];
16040
- context?: unknown;
16041
- };
16042
- };
16043
- };
16044
- /** @description Not found */
16045
- 404: {
16046
- headers: {
16047
- [name: string]: unknown;
16048
- };
16049
- content: {
16050
- "application/json": {
16051
- code: string;
16052
- message: string;
16053
- issues?: {
16054
- message: string;
16055
- }[];
16056
- context?: unknown;
16057
- };
16058
- };
16059
- };
16060
- /** @description Internal server error */
16061
- 500: {
16062
- headers: {
16063
- [name: string]: unknown;
16064
- };
16065
- content: {
16066
- "application/json": {
16067
- code: string;
16068
- message: string;
16069
- issues?: {
16070
- message: string;
16071
- }[];
16072
- context?: unknown;
16073
- };
16074
- };
16075
- };
16076
- };
16077
- };
16078
15896
  getMetricJournalEntryTotalsByRecurringFee: {
16079
15897
  parameters: {
16080
15898
  query: {
@@ -16299,118 +16117,6 @@ export interface operations {
16299
16117
  };
16300
16118
  };
16301
16119
  };
16302
- getMetricLegacyBankRecordBalances: {
16303
- parameters: {
16304
- query: {
16305
- dimension?: "month" | "week" | "day" | "year";
16306
- /** @description Date boundary string. Accepted syntax: `YYYY`, `YYYY-MM`, or `YYYY-MM-DD`. */
16307
- startDate: string;
16308
- /** @description Date boundary string. Accepted syntax: `YYYY`, `YYYY-MM`, or `YYYY-MM-DD`. */
16309
- endDate: string;
16310
- };
16311
- header?: never;
16312
- path?: never;
16313
- cookie?: never;
16314
- };
16315
- requestBody?: never;
16316
- responses: {
16317
- /** @description Successful response */
16318
- 200: {
16319
- headers: {
16320
- [name: string]: unknown;
16321
- };
16322
- content: {
16323
- "application/json": {
16324
- data: {
16325
- date: string;
16326
- centBalance: number;
16327
- bankAccountId: string | null;
16328
- }[];
16329
- };
16330
- };
16331
- };
16332
- /** @description Bad request */
16333
- 400: {
16334
- headers: {
16335
- [name: string]: unknown;
16336
- };
16337
- content: {
16338
- "application/json": {
16339
- code: string;
16340
- message: string;
16341
- issues?: {
16342
- message: string;
16343
- }[];
16344
- context?: unknown;
16345
- };
16346
- };
16347
- };
16348
- /** @description Unauthorized */
16349
- 401: {
16350
- headers: {
16351
- [name: string]: unknown;
16352
- };
16353
- content: {
16354
- "application/json": {
16355
- code: string;
16356
- message: string;
16357
- issues?: {
16358
- message: string;
16359
- }[];
16360
- context?: unknown;
16361
- };
16362
- };
16363
- };
16364
- /** @description Forbidden */
16365
- 403: {
16366
- headers: {
16367
- [name: string]: unknown;
16368
- };
16369
- content: {
16370
- "application/json": {
16371
- code: string;
16372
- message: string;
16373
- issues?: {
16374
- message: string;
16375
- }[];
16376
- context?: unknown;
16377
- };
16378
- };
16379
- };
16380
- /** @description Not found */
16381
- 404: {
16382
- headers: {
16383
- [name: string]: unknown;
16384
- };
16385
- content: {
16386
- "application/json": {
16387
- code: string;
16388
- message: string;
16389
- issues?: {
16390
- message: string;
16391
- }[];
16392
- context?: unknown;
16393
- };
16394
- };
16395
- };
16396
- /** @description Internal server error */
16397
- 500: {
16398
- headers: {
16399
- [name: string]: unknown;
16400
- };
16401
- content: {
16402
- "application/json": {
16403
- code: string;
16404
- message: string;
16405
- issues?: {
16406
- message: string;
16407
- }[];
16408
- context?: unknown;
16409
- };
16410
- };
16411
- };
16412
- };
16413
- };
16414
16120
  getMetricLegacyCurrencies: {
16415
16121
  parameters: {
16416
16122
  query: {
@@ -16520,118 +16226,6 @@ export interface operations {
16520
16226
  };
16521
16227
  };
16522
16228
  };
16523
- getMetricLegacyDistinctActionByStatus: {
16524
- parameters: {
16525
- query: {
16526
- dimension?: "month" | "week" | "day" | "year";
16527
- /** @description Date boundary string. Accepted syntax: `YYYY`, `YYYY-MM`, or `YYYY-MM-DD`. */
16528
- startDate: string;
16529
- /** @description Date boundary string. Accepted syntax: `YYYY`, `YYYY-MM`, or `YYYY-MM-DD`. */
16530
- endDate: string;
16531
- };
16532
- header?: never;
16533
- path?: never;
16534
- cookie?: never;
16535
- };
16536
- requestBody?: never;
16537
- responses: {
16538
- /** @description Successful response */
16539
- 200: {
16540
- headers: {
16541
- [name: string]: unknown;
16542
- };
16543
- content: {
16544
- "application/json": {
16545
- data: {
16546
- date: string;
16547
- total: number;
16548
- status: string;
16549
- }[];
16550
- };
16551
- };
16552
- };
16553
- /** @description Bad request */
16554
- 400: {
16555
- headers: {
16556
- [name: string]: unknown;
16557
- };
16558
- content: {
16559
- "application/json": {
16560
- code: string;
16561
- message: string;
16562
- issues?: {
16563
- message: string;
16564
- }[];
16565
- context?: unknown;
16566
- };
16567
- };
16568
- };
16569
- /** @description Unauthorized */
16570
- 401: {
16571
- headers: {
16572
- [name: string]: unknown;
16573
- };
16574
- content: {
16575
- "application/json": {
16576
- code: string;
16577
- message: string;
16578
- issues?: {
16579
- message: string;
16580
- }[];
16581
- context?: unknown;
16582
- };
16583
- };
16584
- };
16585
- /** @description Forbidden */
16586
- 403: {
16587
- headers: {
16588
- [name: string]: unknown;
16589
- };
16590
- content: {
16591
- "application/json": {
16592
- code: string;
16593
- message: string;
16594
- issues?: {
16595
- message: string;
16596
- }[];
16597
- context?: unknown;
16598
- };
16599
- };
16600
- };
16601
- /** @description Not found */
16602
- 404: {
16603
- headers: {
16604
- [name: string]: unknown;
16605
- };
16606
- content: {
16607
- "application/json": {
16608
- code: string;
16609
- message: string;
16610
- issues?: {
16611
- message: string;
16612
- }[];
16613
- context?: unknown;
16614
- };
16615
- };
16616
- };
16617
- /** @description Internal server error */
16618
- 500: {
16619
- headers: {
16620
- [name: string]: unknown;
16621
- };
16622
- content: {
16623
- "application/json": {
16624
- code: string;
16625
- message: string;
16626
- issues?: {
16627
- message: string;
16628
- }[];
16629
- context?: unknown;
16630
- };
16631
- };
16632
- };
16633
- };
16634
- };
16635
16229
  getMetricLegacyPaymentVolume: {
16636
16230
  parameters: {
16637
16231
  query: {
@@ -16968,119 +16562,6 @@ export interface operations {
16968
16562
  };
16969
16563
  };
16970
16564
  };
16971
- getMetricLegacySyncByStatus: {
16972
- parameters: {
16973
- query: {
16974
- connectionId: string;
16975
- dimension?: "month" | "week" | "day" | "year";
16976
- /** @description Date boundary string. Accepted syntax: `YYYY`, `YYYY-MM`, or `YYYY-MM-DD`. */
16977
- startDate: string;
16978
- /** @description Date boundary string. Accepted syntax: `YYYY`, `YYYY-MM`, or `YYYY-MM-DD`. */
16979
- endDate: string;
16980
- };
16981
- header?: never;
16982
- path?: never;
16983
- cookie?: never;
16984
- };
16985
- requestBody?: never;
16986
- responses: {
16987
- /** @description Successful response */
16988
- 200: {
16989
- headers: {
16990
- [name: string]: unknown;
16991
- };
16992
- content: {
16993
- "application/json": {
16994
- data: {
16995
- date: string;
16996
- total: number;
16997
- status: string;
16998
- }[];
16999
- };
17000
- };
17001
- };
17002
- /** @description Bad request */
17003
- 400: {
17004
- headers: {
17005
- [name: string]: unknown;
17006
- };
17007
- content: {
17008
- "application/json": {
17009
- code: string;
17010
- message: string;
17011
- issues?: {
17012
- message: string;
17013
- }[];
17014
- context?: unknown;
17015
- };
17016
- };
17017
- };
17018
- /** @description Unauthorized */
17019
- 401: {
17020
- headers: {
17021
- [name: string]: unknown;
17022
- };
17023
- content: {
17024
- "application/json": {
17025
- code: string;
17026
- message: string;
17027
- issues?: {
17028
- message: string;
17029
- }[];
17030
- context?: unknown;
17031
- };
17032
- };
17033
- };
17034
- /** @description Forbidden */
17035
- 403: {
17036
- headers: {
17037
- [name: string]: unknown;
17038
- };
17039
- content: {
17040
- "application/json": {
17041
- code: string;
17042
- message: string;
17043
- issues?: {
17044
- message: string;
17045
- }[];
17046
- context?: unknown;
17047
- };
17048
- };
17049
- };
17050
- /** @description Not found */
17051
- 404: {
17052
- headers: {
17053
- [name: string]: unknown;
17054
- };
17055
- content: {
17056
- "application/json": {
17057
- code: string;
17058
- message: string;
17059
- issues?: {
17060
- message: string;
17061
- }[];
17062
- context?: unknown;
17063
- };
17064
- };
17065
- };
17066
- /** @description Internal server error */
17067
- 500: {
17068
- headers: {
17069
- [name: string]: unknown;
17070
- };
17071
- content: {
17072
- "application/json": {
17073
- code: string;
17074
- message: string;
17075
- issues?: {
17076
- message: string;
17077
- }[];
17078
- context?: unknown;
17079
- };
17080
- };
17081
- };
17082
- };
17083
- };
17084
16565
  getMetricListingRevenue: {
17085
16566
  parameters: {
17086
16567
  query: {
@@ -21160,6 +20641,8 @@ export interface operations {
21160
20641
  guestName: string;
21161
20642
  confirmationCode: string;
21162
20643
  nights: number;
20644
+ transactionDate: string | null;
20645
+ transactionDescription: string | null;
21163
20646
  total: number;
21164
20647
  charges: number;
21165
20648
  payments: number;