@vrplatform/api 1.3.1-2254 → 1.3.1-2256

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.
@@ -1006,6 +1006,23 @@ export interface paths {
1006
1006
  patch?: never;
1007
1007
  trace?: never;
1008
1008
  };
1009
+ "/internal/transit": {
1010
+ parameters: {
1011
+ query?: never;
1012
+ header?: never;
1013
+ path?: never;
1014
+ cookie?: never;
1015
+ };
1016
+ get?: never;
1017
+ put?: never;
1018
+ /** @description Upload a generated export into the shared transit bucket. */
1019
+ post: operations["postInternalTransit"];
1020
+ delete?: never;
1021
+ options?: never;
1022
+ head?: never;
1023
+ patch?: never;
1024
+ trace?: never;
1025
+ };
1009
1026
  "/legacy/payouts": {
1010
1027
  parameters: {
1011
1028
  query?: never;
@@ -15060,6 +15077,111 @@ export interface operations {
15060
15077
  };
15061
15078
  };
15062
15079
  };
15080
+ postInternalTransit: {
15081
+ parameters: {
15082
+ query: {
15083
+ filename: string;
15084
+ type: "csv" | "pdf" | "zip";
15085
+ };
15086
+ header?: never;
15087
+ path?: never;
15088
+ cookie?: never;
15089
+ };
15090
+ requestBody?: never;
15091
+ responses: {
15092
+ /** @description Successful response */
15093
+ 200: {
15094
+ headers: {
15095
+ [name: string]: unknown;
15096
+ };
15097
+ content: {
15098
+ "application/json": {
15099
+ url: string;
15100
+ };
15101
+ };
15102
+ };
15103
+ /** @description Bad request */
15104
+ 400: {
15105
+ headers: {
15106
+ [name: string]: unknown;
15107
+ };
15108
+ content: {
15109
+ "application/json": {
15110
+ code: string;
15111
+ message: string;
15112
+ issues?: {
15113
+ message: string;
15114
+ }[];
15115
+ context?: unknown;
15116
+ };
15117
+ };
15118
+ };
15119
+ /** @description Unauthorized */
15120
+ 401: {
15121
+ headers: {
15122
+ [name: string]: unknown;
15123
+ };
15124
+ content: {
15125
+ "application/json": {
15126
+ code: string;
15127
+ message: string;
15128
+ issues?: {
15129
+ message: string;
15130
+ }[];
15131
+ context?: unknown;
15132
+ };
15133
+ };
15134
+ };
15135
+ /** @description Forbidden */
15136
+ 403: {
15137
+ headers: {
15138
+ [name: string]: unknown;
15139
+ };
15140
+ content: {
15141
+ "application/json": {
15142
+ code: string;
15143
+ message: string;
15144
+ issues?: {
15145
+ message: string;
15146
+ }[];
15147
+ context?: unknown;
15148
+ };
15149
+ };
15150
+ };
15151
+ /** @description Not found */
15152
+ 404: {
15153
+ headers: {
15154
+ [name: string]: unknown;
15155
+ };
15156
+ content: {
15157
+ "application/json": {
15158
+ code: string;
15159
+ message: string;
15160
+ issues?: {
15161
+ message: string;
15162
+ }[];
15163
+ context?: unknown;
15164
+ };
15165
+ };
15166
+ };
15167
+ /** @description Internal server error */
15168
+ 500: {
15169
+ headers: {
15170
+ [name: string]: unknown;
15171
+ };
15172
+ content: {
15173
+ "application/json": {
15174
+ code: string;
15175
+ message: string;
15176
+ issues?: {
15177
+ message: string;
15178
+ }[];
15179
+ context?: unknown;
15180
+ };
15181
+ };
15182
+ };
15183
+ };
15184
+ };
15063
15185
  getPaymentsDeprecated: {
15064
15186
  parameters: {
15065
15187
  query?: {