@vrplatform/api 1.3.1-stage.2130 → 1.3.1-stage.2132

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.2130",
6
+ "version": "1.3.1-stage.2132",
7
7
  "description": "",
8
8
  "main": "build/main/index.js",
9
9
  "module": "build/module/index.js",
@@ -126,6 +126,23 @@ export interface paths {
126
126
  patch?: never;
127
127
  trace?: never;
128
128
  };
129
+ "/accounts/{id}/summary": {
130
+ parameters: {
131
+ query?: never;
132
+ header?: never;
133
+ path?: never;
134
+ cookie?: never;
135
+ };
136
+ /** @description Get account reconciliation summary by date range */
137
+ get: operations["getAccountsByIdSummary"];
138
+ put?: never;
139
+ post?: never;
140
+ delete?: never;
141
+ options?: never;
142
+ head?: never;
143
+ patch?: never;
144
+ trace?: never;
145
+ };
129
146
  "/apps": {
130
147
  parameters: {
131
148
  query?: never;
@@ -5209,6 +5226,133 @@ export interface operations {
5209
5226
  };
5210
5227
  };
5211
5228
  };
5229
+ getAccountsByIdSummary: {
5230
+ parameters: {
5231
+ query: {
5232
+ /** @description Date range string. Accepted syntax: `YYYY`, `YYYY-MM`, `YYYY-MM-DD`, or range `YYYY-MM-DD...YYYY-MM-DD`. Single values expand to the full year, month, or day. */
5233
+ dateRange: string;
5234
+ };
5235
+ header?: never;
5236
+ path: {
5237
+ id: string;
5238
+ };
5239
+ cookie?: never;
5240
+ };
5241
+ requestBody?: never;
5242
+ responses: {
5243
+ /** @description Successful response */
5244
+ 200: {
5245
+ headers: {
5246
+ [name: string]: unknown;
5247
+ };
5248
+ content: {
5249
+ "application/json": {
5250
+ unmatched: {
5251
+ bankRecords: {
5252
+ /** Format: uuid */
5253
+ id: string;
5254
+ centTotal: number;
5255
+ }[];
5256
+ transactions: {
5257
+ /** Format: uuid */
5258
+ id: string;
5259
+ centTotal: number;
5260
+ }[];
5261
+ };
5262
+ totals: {
5263
+ bankAccountBalance: number;
5264
+ bookBalance: number;
5265
+ unclearedTransactionsBalance: number;
5266
+ unmatchedTransactionsBalance: number;
5267
+ unmatchedBankRecordsBalance: number;
5268
+ adjustedBankAccountBalance: number;
5269
+ difference: number;
5270
+ };
5271
+ };
5272
+ };
5273
+ };
5274
+ /** @description Bad request */
5275
+ 400: {
5276
+ headers: {
5277
+ [name: string]: unknown;
5278
+ };
5279
+ content: {
5280
+ "application/json": {
5281
+ code: string;
5282
+ message: string;
5283
+ issues?: {
5284
+ message: string;
5285
+ }[];
5286
+ context?: unknown;
5287
+ };
5288
+ };
5289
+ };
5290
+ /** @description Unauthorized */
5291
+ 401: {
5292
+ headers: {
5293
+ [name: string]: unknown;
5294
+ };
5295
+ content: {
5296
+ "application/json": {
5297
+ code: string;
5298
+ message: string;
5299
+ issues?: {
5300
+ message: string;
5301
+ }[];
5302
+ context?: unknown;
5303
+ };
5304
+ };
5305
+ };
5306
+ /** @description Forbidden */
5307
+ 403: {
5308
+ headers: {
5309
+ [name: string]: unknown;
5310
+ };
5311
+ content: {
5312
+ "application/json": {
5313
+ code: string;
5314
+ message: string;
5315
+ issues?: {
5316
+ message: string;
5317
+ }[];
5318
+ context?: unknown;
5319
+ };
5320
+ };
5321
+ };
5322
+ /** @description Not found */
5323
+ 404: {
5324
+ headers: {
5325
+ [name: string]: unknown;
5326
+ };
5327
+ content: {
5328
+ "application/json": {
5329
+ code: string;
5330
+ message: string;
5331
+ issues?: {
5332
+ message: string;
5333
+ }[];
5334
+ context?: unknown;
5335
+ };
5336
+ };
5337
+ };
5338
+ /** @description Internal server error */
5339
+ 500: {
5340
+ headers: {
5341
+ [name: string]: unknown;
5342
+ };
5343
+ content: {
5344
+ "application/json": {
5345
+ code: string;
5346
+ message: string;
5347
+ issues?: {
5348
+ message: string;
5349
+ }[];
5350
+ context?: unknown;
5351
+ };
5352
+ };
5353
+ };
5354
+ };
5355
+ };
5212
5356
  getApps: {
5213
5357
  parameters: {
5214
5358
  query?: {