/** * #blob.ts * * Code generated by ts-proto. DO NOT EDIT. * @packageDocumentation */ export type GetConfigRequest = {}; /** Credentials for creating an S3 client. */ export type Credentials = { accessKey: string; secretKey: string; sessionToken: string; }; /** Configuration for accessing Devvit blob storage. */ export type GetConfigResponse = { /** Example bucket: "reddit-service-devvit-plugins-blobstorage" */ bucket: string; /** Example region: "us-east-1" */ region: string; /** Blob object paths should be scoped under path_prefix (e.g. "install_abc123:my-app/v1"). */ pathPrefix: string; credentials?: Credentials | undefined; }; //# sourceMappingURL=blob.d.ts.map