Skip to content

Commit

Permalink
refresh outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
inkognitro committed Oct 7, 2024
1 parent a19884e commit a7c738d
Show file tree
Hide file tree
Showing 385 changed files with 1,696 additions and 2,483 deletions.
14 changes: 7 additions & 7 deletions example-outputs/binance-with-zod/deleteApiV3Openorders.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
orderZodSchema,
ocoOrderZodSchema,
errorZodSchema,
z_Order,
z_OcoOrder,
z_Error,
Order,
OcoOrder,
Error,
Expand Down Expand Up @@ -35,8 +35,8 @@ export const deleteApiV3OpenordersEndpointSchema = {
'application/json': {
zodSchema: z.array(
z.intersection(
z.union([orderZodSchema.partial(), ocoOrderZodSchema.partial()]),
z.union([orderZodSchema, ocoOrderZodSchema])
z.union([z_Order.partial(), z_OcoOrder.partial()]),
z.union([z_Order, z_OcoOrder])
)
),
},
Expand All @@ -45,14 +45,14 @@ export const deleteApiV3OpenordersEndpointSchema = {
'400': {
bodyByContentType: {
'application/json': {
zodSchema: errorZodSchema,
zodSchema: z_Error,
},
},
},
'401': {
bodyByContentType: {
'application/json': {
zodSchema: errorZodSchema,
zodSchema: z_Error,
},
},
},
Expand Down
10 changes: 5 additions & 5 deletions example-outputs/binance-with-zod/deleteApiV3Order.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {
orderZodSchema,
errorZodSchema,
z_Order,
z_Error,
Order,
Error,
} from '@example-outputs/binance-with-zod';
Expand Down Expand Up @@ -37,21 +37,21 @@ export const deleteApiV3OrderEndpointSchema = {
'200': {
bodyByContentType: {
'application/json': {
zodSchema: orderZodSchema,
zodSchema: z_Order,
},
},
},
'400': {
bodyByContentType: {
'application/json': {
zodSchema: errorZodSchema,
zodSchema: z_Error,
},
},
},
'401': {
bodyByContentType: {
'application/json': {
zodSchema: errorZodSchema,
zodSchema: z_Error,
},
},
},
Expand Down
10 changes: 5 additions & 5 deletions example-outputs/binance-with-zod/deleteApiV3Orderlist.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {
ocoOrderZodSchema,
errorZodSchema,
z_OcoOrder,
z_Error,
OcoOrder,
Error,
} from '@example-outputs/binance-with-zod';
Expand Down Expand Up @@ -34,21 +34,21 @@ export const deleteApiV3OrderlistEndpointSchema = {
'200': {
bodyByContentType: {
'application/json': {
zodSchema: ocoOrderZodSchema,
zodSchema: z_OcoOrder,
},
},
},
'400': {
bodyByContentType: {
'application/json': {
zodSchema: errorZodSchema,
zodSchema: z_Error,
},
},
},
'401': {
bodyByContentType: {
'application/json': {
zodSchema: errorZodSchema,
zodSchema: z_Error,
},
},
},
Expand Down
4 changes: 2 additions & 2 deletions example-outputs/binance-with-zod/deleteApiV3Userdatastream.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {errorZodSchema, Error} from '@example-outputs/binance-with-zod';
import {z_Error, Error} from '@example-outputs/binance-with-zod';
import {z} from 'zod';
import {
RequestUnion,
Expand Down Expand Up @@ -30,7 +30,7 @@ export const deleteApiV3UserdatastreamEndpointSchema = {
'400': {
bodyByContentType: {
'application/json': {
zodSchema: errorZodSchema,
zodSchema: z_Error,
},
},
},
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {errorZodSchema, Error} from '@example-outputs/binance-with-zod';
import {z_Error, Error} from '@example-outputs/binance-with-zod';
import {z} from 'zod';
import {
RequestUnion,
Expand Down Expand Up @@ -38,14 +38,14 @@ export const deleteSapiV1AlgoFuturesOrderEndpointSchema = {
'400': {
bodyByContentType: {
'application/json': {
zodSchema: errorZodSchema,
zodSchema: z_Error,
},
},
},
'401': {
bodyByContentType: {
'application/json': {
zodSchema: errorZodSchema,
zodSchema: z_Error,
},
},
},
Expand Down
6 changes: 3 additions & 3 deletions example-outputs/binance-with-zod/deleteSapiV1AlgoSpotOrder.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {errorZodSchema, Error} from '@example-outputs/binance-with-zod';
import {z_Error, Error} from '@example-outputs/binance-with-zod';
import {z} from 'zod';
import {
RequestUnion,
Expand Down Expand Up @@ -38,14 +38,14 @@ export const deleteSapiV1AlgoSpotOrderEndpointSchema = {
'400': {
bodyByContentType: {
'application/json': {
zodSchema: errorZodSchema,
zodSchema: z_Error,
},
},
},
'401': {
bodyByContentType: {
'application/json': {
zodSchema: errorZodSchema,
zodSchema: z_Error,
},
},
},
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {errorZodSchema, Error} from '@example-outputs/binance-with-zod';
import {z_Error, Error} from '@example-outputs/binance-with-zod';
import {z} from 'zod';
import {
RequestUnion,
Expand Down Expand Up @@ -36,14 +36,14 @@ export const deleteSapiV1MarginIsolatedAccountEndpointSchema = {
'400': {
bodyByContentType: {
'application/json': {
zodSchema: errorZodSchema,
zodSchema: z_Error,
},
},
},
'401': {
bodyByContentType: {
'application/json': {
zodSchema: errorZodSchema,
zodSchema: z_Error,
},
},
},
Expand Down
19 changes: 8 additions & 11 deletions example-outputs/binance-with-zod/deleteSapiV1MarginOpenorders.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
canceledMarginOrderDetailZodSchema,
marginOcoOrderZodSchema,
errorZodSchema,
z_CanceledMarginOrderDetail,
z_MarginOcoOrder,
z_Error,
CanceledMarginOrderDetail,
MarginOcoOrder,
Error,
Expand Down Expand Up @@ -37,13 +37,10 @@ export const deleteSapiV1MarginOpenordersEndpointSchema = {
zodSchema: z.array(
z.intersection(
z.union([
canceledMarginOrderDetailZodSchema.partial(),
marginOcoOrderZodSchema.partial(),
z_CanceledMarginOrderDetail.partial(),
z_MarginOcoOrder.partial(),
]),
z.union([
canceledMarginOrderDetailZodSchema,
marginOcoOrderZodSchema,
])
z.union([z_CanceledMarginOrderDetail, z_MarginOcoOrder])
)
),
},
Expand All @@ -52,14 +49,14 @@ export const deleteSapiV1MarginOpenordersEndpointSchema = {
'400': {
bodyByContentType: {
'application/json': {
zodSchema: errorZodSchema,
zodSchema: z_Error,
},
},
},
'401': {
bodyByContentType: {
'application/json': {
zodSchema: errorZodSchema,
zodSchema: z_Error,
},
},
},
Expand Down
10 changes: 5 additions & 5 deletions example-outputs/binance-with-zod/deleteSapiV1MarginOrder.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {
marginOrderZodSchema,
errorZodSchema,
z_MarginOrder,
z_Error,
MarginOrder,
Error,
} from '@example-outputs/binance-with-zod';
Expand Down Expand Up @@ -35,21 +35,21 @@ export const deleteSapiV1MarginOrderEndpointSchema = {
'200': {
bodyByContentType: {
'application/json': {
zodSchema: marginOrderZodSchema,
zodSchema: z_MarginOrder,
},
},
},
'400': {
bodyByContentType: {
'application/json': {
zodSchema: errorZodSchema,
zodSchema: z_Error,
},
},
},
'401': {
bodyByContentType: {
'application/json': {
zodSchema: errorZodSchema,
zodSchema: z_Error,
},
},
},
Expand Down
10 changes: 5 additions & 5 deletions example-outputs/binance-with-zod/deleteSapiV1MarginOrderlist.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {
marginOcoOrderZodSchema,
errorZodSchema,
z_MarginOcoOrder,
z_Error,
MarginOcoOrder,
Error,
} from '@example-outputs/binance-with-zod';
Expand Down Expand Up @@ -35,21 +35,21 @@ export const deleteSapiV1MarginOrderlistEndpointSchema = {
'200': {
bodyByContentType: {
'application/json': {
zodSchema: marginOcoOrderZodSchema,
zodSchema: z_MarginOcoOrder,
},
},
},
'400': {
bodyByContentType: {
'application/json': {
zodSchema: errorZodSchema,
zodSchema: z_Error,
},
},
},
'401': {
bodyByContentType: {
'application/json': {
zodSchema: errorZodSchema,
zodSchema: z_Error,
},
},
},
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {errorZodSchema, Error} from '@example-outputs/binance-with-zod';
import {z_Error, Error} from '@example-outputs/binance-with-zod';
import {z} from 'zod';
import {
RequestUnion,
Expand Down Expand Up @@ -42,14 +42,14 @@ export const deleteSapiV1SubAccountSubaccountapiIprestrictionIplistEndpointSchem
'400': {
bodyByContentType: {
'application/json': {
zodSchema: errorZodSchema,
zodSchema: z_Error,
},
},
},
'401': {
bodyByContentType: {
'application/json': {
zodSchema: errorZodSchema,
zodSchema: z_Error,
},
},
},
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {errorZodSchema, Error} from '@example-outputs/binance-with-zod';
import {z_Error, Error} from '@example-outputs/binance-with-zod';
import {z} from 'zod';
import {
RequestUnion,
Expand Down Expand Up @@ -30,7 +30,7 @@ export const deleteSapiV1UserdatastreamEndpointSchema = {
'400': {
bodyByContentType: {
'application/json': {
zodSchema: errorZodSchema,
zodSchema: z_Error,
},
},
},
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {errorZodSchema, Error} from '@example-outputs/binance-with-zod';
import {z_Error, Error} from '@example-outputs/binance-with-zod';
import {z} from 'zod';
import {
RequestUnion,
Expand Down Expand Up @@ -30,7 +30,7 @@ export const deleteSapiV1UserdatastreamIsolatedEndpointSchema = {
'400': {
bodyByContentType: {
'application/json': {
zodSchema: errorZodSchema,
zodSchema: z_Error,
},
},
},
Expand Down
10 changes: 5 additions & 5 deletions example-outputs/binance-with-zod/getApiV3Account.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {
accountZodSchema,
errorZodSchema,
z_Account,
z_Error,
Account,
Error,
} from '@example-outputs/binance-with-zod';
Expand Down Expand Up @@ -30,21 +30,21 @@ export const getApiV3AccountEndpointSchema = {
'200': {
bodyByContentType: {
'application/json': {
zodSchema: accountZodSchema,
zodSchema: z_Account,
},
},
},
'400': {
bodyByContentType: {
'application/json': {
zodSchema: errorZodSchema,
zodSchema: z_Error,
},
},
},
'401': {
bodyByContentType: {
'application/json': {
zodSchema: errorZodSchema,
zodSchema: z_Error,
},
},
},
Expand Down
Loading

0 comments on commit a7c738d

Please sign in to comment.