@vrplatform/api 1.3.1-stage.1793 → 1.3.1-stage.1798

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.
@@ -1204,6 +1204,23 @@ export interface paths {
1204
1204
  patch?: never;
1205
1205
  trace?: never;
1206
1206
  };
1207
+ "/reports/manager-statements/csv": {
1208
+ parameters: {
1209
+ query?: never;
1210
+ header?: never;
1211
+ path?: never;
1212
+ cookie?: never;
1213
+ };
1214
+ /** @description Manager statement summary CSV export */
1215
+ get: operations["getManagerStatementsReportCsv"];
1216
+ put?: never;
1217
+ post?: never;
1218
+ delete?: never;
1219
+ options?: never;
1220
+ head?: never;
1221
+ patch?: never;
1222
+ trace?: never;
1223
+ };
1207
1224
  "/reports/manager-statements/detail": {
1208
1225
  parameters: {
1209
1226
  query?: never;
@@ -1221,6 +1238,23 @@ export interface paths {
1221
1238
  patch?: never;
1222
1239
  trace?: never;
1223
1240
  };
1241
+ "/reports/manager-statements/detail/csv": {
1242
+ parameters: {
1243
+ query?: never;
1244
+ header?: never;
1245
+ path?: never;
1246
+ cookie?: never;
1247
+ };
1248
+ /** @description Manager statement detailed CSV export (grouped sections) */
1249
+ get: operations["getManagerStatementReportDetailCsv"];
1250
+ put?: never;
1251
+ post?: never;
1252
+ delete?: never;
1253
+ options?: never;
1254
+ head?: never;
1255
+ patch?: never;
1256
+ trace?: never;
1257
+ };
1224
1258
  "/reports/manager-statements/detail/journal-entries": {
1225
1259
  parameters: {
1226
1260
  query?: never;
@@ -16875,6 +16909,111 @@ export interface operations {
16875
16909
  };
16876
16910
  };
16877
16911
  };
16912
+ getManagerStatementsReportCsv: {
16913
+ parameters: {
16914
+ query: {
16915
+ /** @description Year in format YYYY */
16916
+ year: number;
16917
+ };
16918
+ header?: never;
16919
+ path?: never;
16920
+ cookie?: never;
16921
+ };
16922
+ requestBody?: never;
16923
+ responses: {
16924
+ /** @description Successful response */
16925
+ 200: {
16926
+ headers: {
16927
+ [name: string]: unknown;
16928
+ };
16929
+ content: {
16930
+ "application/json": {
16931
+ url: string;
16932
+ };
16933
+ };
16934
+ };
16935
+ /** @description Bad request */
16936
+ 400: {
16937
+ headers: {
16938
+ [name: string]: unknown;
16939
+ };
16940
+ content: {
16941
+ "application/json": {
16942
+ code: string;
16943
+ message: string;
16944
+ issues?: {
16945
+ message: string;
16946
+ }[];
16947
+ context?: unknown;
16948
+ };
16949
+ };
16950
+ };
16951
+ /** @description Unauthorized */
16952
+ 401: {
16953
+ headers: {
16954
+ [name: string]: unknown;
16955
+ };
16956
+ content: {
16957
+ "application/json": {
16958
+ code: string;
16959
+ message: string;
16960
+ issues?: {
16961
+ message: string;
16962
+ }[];
16963
+ context?: unknown;
16964
+ };
16965
+ };
16966
+ };
16967
+ /** @description Forbidden */
16968
+ 403: {
16969
+ headers: {
16970
+ [name: string]: unknown;
16971
+ };
16972
+ content: {
16973
+ "application/json": {
16974
+ code: string;
16975
+ message: string;
16976
+ issues?: {
16977
+ message: string;
16978
+ }[];
16979
+ context?: unknown;
16980
+ };
16981
+ };
16982
+ };
16983
+ /** @description Not found */
16984
+ 404: {
16985
+ headers: {
16986
+ [name: string]: unknown;
16987
+ };
16988
+ content: {
16989
+ "application/json": {
16990
+ code: string;
16991
+ message: string;
16992
+ issues?: {
16993
+ message: string;
16994
+ }[];
16995
+ context?: unknown;
16996
+ };
16997
+ };
16998
+ };
16999
+ /** @description Internal server error */
17000
+ 500: {
17001
+ headers: {
17002
+ [name: string]: unknown;
17003
+ };
17004
+ content: {
17005
+ "application/json": {
17006
+ code: string;
17007
+ message: string;
17008
+ issues?: {
17009
+ message: string;
17010
+ }[];
17011
+ context?: unknown;
17012
+ };
17013
+ };
17014
+ };
17015
+ };
17016
+ };
16878
17017
  getManagerStatementReportDetail: {
16879
17018
  parameters: {
16880
17019
  query: {
@@ -17028,6 +17167,111 @@ export interface operations {
17028
17167
  };
17029
17168
  };
17030
17169
  };
17170
+ getManagerStatementReportDetailCsv: {
17171
+ parameters: {
17172
+ query: {
17173
+ startAt: string;
17174
+ endAt: string;
17175
+ };
17176
+ header?: never;
17177
+ path?: never;
17178
+ cookie?: never;
17179
+ };
17180
+ requestBody?: never;
17181
+ responses: {
17182
+ /** @description Successful response */
17183
+ 200: {
17184
+ headers: {
17185
+ [name: string]: unknown;
17186
+ };
17187
+ content: {
17188
+ "application/json": {
17189
+ url: string;
17190
+ };
17191
+ };
17192
+ };
17193
+ /** @description Bad request */
17194
+ 400: {
17195
+ headers: {
17196
+ [name: string]: unknown;
17197
+ };
17198
+ content: {
17199
+ "application/json": {
17200
+ code: string;
17201
+ message: string;
17202
+ issues?: {
17203
+ message: string;
17204
+ }[];
17205
+ context?: unknown;
17206
+ };
17207
+ };
17208
+ };
17209
+ /** @description Unauthorized */
17210
+ 401: {
17211
+ headers: {
17212
+ [name: string]: unknown;
17213
+ };
17214
+ content: {
17215
+ "application/json": {
17216
+ code: string;
17217
+ message: string;
17218
+ issues?: {
17219
+ message: string;
17220
+ }[];
17221
+ context?: unknown;
17222
+ };
17223
+ };
17224
+ };
17225
+ /** @description Forbidden */
17226
+ 403: {
17227
+ headers: {
17228
+ [name: string]: unknown;
17229
+ };
17230
+ content: {
17231
+ "application/json": {
17232
+ code: string;
17233
+ message: string;
17234
+ issues?: {
17235
+ message: string;
17236
+ }[];
17237
+ context?: unknown;
17238
+ };
17239
+ };
17240
+ };
17241
+ /** @description Not found */
17242
+ 404: {
17243
+ headers: {
17244
+ [name: string]: unknown;
17245
+ };
17246
+ content: {
17247
+ "application/json": {
17248
+ code: string;
17249
+ message: string;
17250
+ issues?: {
17251
+ message: string;
17252
+ }[];
17253
+ context?: unknown;
17254
+ };
17255
+ };
17256
+ };
17257
+ /** @description Internal server error */
17258
+ 500: {
17259
+ headers: {
17260
+ [name: string]: unknown;
17261
+ };
17262
+ content: {
17263
+ "application/json": {
17264
+ code: string;
17265
+ message: string;
17266
+ issues?: {
17267
+ message: string;
17268
+ }[];
17269
+ context?: unknown;
17270
+ };
17271
+ };
17272
+ };
17273
+ };
17274
+ };
17031
17275
  getManagerStatementReportJournalEntries: {
17032
17276
  parameters: {
17033
17277
  query?: {
@@ -30912,7 +31156,13 @@ export interface operations {
30912
31156
  };
30913
31157
  requestBody?: {
30914
31158
  content: {
30915
- "application/json": Record<string, never>;
31159
+ "application/json": {
31160
+ cancelation?: {
31161
+ /** @enum {string} */
31162
+ reason?: "different-expectations" | "different-provider" | "missing-feature" | "no-longer-needed" | "switch-to-gl" | "removed-from-billing-console" | "other";
31163
+ feedback?: string | null;
31164
+ };
31165
+ };
30916
31166
  };
30917
31167
  };
30918
31168
  responses: {