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