ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.405.6

This commit is contained in:
speakeasybot
2024-11-14 00:11:57 +00:00
parent 6c8a73ae84
commit 8a2d3e04ab
14 changed files with 38 additions and 49 deletions

View File

@@ -82,16 +82,12 @@ export const GetBandwidthStatisticsRequest$inboundSchema: z.ZodType<
z.ZodTypeDef,
unknown
> = z.object({
Timespan: z.number().int().optional(),
}).transform((v) => {
return remap$(v, {
"Timespan": "timespan",
});
timespan: z.number().int().optional(),
});
/** @internal */
export type GetBandwidthStatisticsRequest$Outbound = {
Timespan?: number | undefined;
timespan?: number | undefined;
};
/** @internal */
@@ -101,10 +97,6 @@ export const GetBandwidthStatisticsRequest$outboundSchema: z.ZodType<
GetBandwidthStatisticsRequest
> = z.object({
timespan: z.number().int().optional(),
}).transform((v) => {
return remap$(v, {
timespan: "Timespan",
});
});
/**

View File

@@ -61,16 +61,12 @@ export const GetResourcesStatisticsRequest$inboundSchema: z.ZodType<
z.ZodTypeDef,
unknown
> = z.object({
Timespan: z.number().int().optional(),
}).transform((v) => {
return remap$(v, {
"Timespan": "timespan",
});
timespan: z.number().int().optional(),
});
/** @internal */
export type GetResourcesStatisticsRequest$Outbound = {
Timespan?: number | undefined;
timespan?: number | undefined;
};
/** @internal */
@@ -80,10 +76,6 @@ export const GetResourcesStatisticsRequest$outboundSchema: z.ZodType<
GetResourcesStatisticsRequest
> = z.object({
timespan: z.number().int().optional(),
}).transform((v) => {
return remap$(v, {
timespan: "Timespan",
});
});
/**

View File

@@ -83,16 +83,12 @@ export const GetStatisticsRequest$inboundSchema: z.ZodType<
z.ZodTypeDef,
unknown
> = z.object({
Timespan: z.number().int().optional(),
}).transform((v) => {
return remap$(v, {
"Timespan": "timespan",
});
timespan: z.number().int().optional(),
});
/** @internal */
export type GetStatisticsRequest$Outbound = {
Timespan?: number | undefined;
timespan?: number | undefined;
};
/** @internal */
@@ -102,10 +98,6 @@ export const GetStatisticsRequest$outboundSchema: z.ZodType<
GetStatisticsRequest
> = z.object({
timespan: z.number().int().optional(),
}).transform((v) => {
return remap$(v, {
timespan: "Timespan",
});
});
/**