Skip to content

Commit

Permalink
re-generate api reports
Browse files Browse the repository at this point in the history
  • Loading branch information
fossamagna committed Dec 13, 2024
1 parent 7ad9e3f commit 6594212
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/client-config/API.md
Original file line number Diff line number Diff line change
Expand Up @@ -627,7 +627,7 @@ export type CustomClientConfig = {
export const DEFAULT_CLIENT_CONFIG_VERSION: ClientConfigVersion;

// @public
export const generateClientConfig: <T extends "1.3" | "0" | "1" | "1.1" | "1.2">(backendIdentifier: DeployedBackendIdentifier, version: T, awsClientProvider?: AWSClientProvider<{
export const generateClientConfig: <T extends "1" | "1.1" | "1.2" | "1.3" | "0">(backendIdentifier: DeployedBackendIdentifier, version: T, awsClientProvider?: AWSClientProvider<{
getS3Client: S3Client;
getAmplifyClient: AmplifyClient;
getCloudFormationClient: CloudFormationClient;
Expand Down
4 changes: 2 additions & 2 deletions packages/platform-core/API.md
Original file line number Diff line number Diff line change
Expand Up @@ -190,12 +190,12 @@ export const packageJsonSchema: z.ZodObject<{
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"module">, z.ZodLiteral<"commonjs">]>>;
}, "strip", z.ZodTypeAny, {
name?: string | undefined;
version?: string | undefined;
type?: "module" | "commonjs" | undefined;
version?: string | undefined;
}, {
name?: string | undefined;
version?: string | undefined;
type?: "module" | "commonjs" | undefined;
version?: string | undefined;
}>;

// @public
Expand Down

0 comments on commit 6594212

Please sign in to comment.