@settlemint/sdk-minio 2.1.4-prfa41b757 → 2.1.4-prfa991a9d

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.
package/dist/minio.d.cts CHANGED
@@ -5,15 +5,15 @@ import { z } from 'zod';
5
5
  * Schema for validating server client options for the Portal client.
6
6
  * Extends the ClientOptionsSchema with additional server-specific fields.
7
7
  */
8
- declare const ServerClientOptionsSchema: z.ZodObject<z.objectUtil.extendShape<{
8
+ declare const ServerClientOptionsSchema: z.ZodObject<{
9
9
  /** The URL of the MinIO instance to connect to */
10
10
  instance: z.ZodString;
11
- }, {
11
+ } & {
12
12
  /** The MinIO access key used to authenticate with the MinIO server */
13
13
  accessKey: z.ZodString;
14
14
  /** The MinIO secret key used to authenticate with the MinIO server */
15
15
  secretKey: z.ZodString;
16
- }>, "strip", z.ZodTypeAny, {
16
+ }, "strip", z.ZodTypeAny, {
17
17
  instance: string;
18
18
  accessKey: string;
19
19
  secretKey: string;
package/dist/minio.d.ts CHANGED
@@ -5,15 +5,15 @@ import { z } from 'zod';
5
5
  * Schema for validating server client options for the Portal client.
6
6
  * Extends the ClientOptionsSchema with additional server-specific fields.
7
7
  */
8
- declare const ServerClientOptionsSchema: z.ZodObject<z.objectUtil.extendShape<{
8
+ declare const ServerClientOptionsSchema: z.ZodObject<{
9
9
  /** The URL of the MinIO instance to connect to */
10
10
  instance: z.ZodString;
11
- }, {
11
+ } & {
12
12
  /** The MinIO access key used to authenticate with the MinIO server */
13
13
  accessKey: z.ZodString;
14
14
  /** The MinIO secret key used to authenticate with the MinIO server */
15
15
  secretKey: z.ZodString;
16
- }>, "strip", z.ZodTypeAny, {
16
+ }, "strip", z.ZodTypeAny, {
17
17
  instance: string;
18
18
  accessKey: string;
19
19
  secretKey: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@settlemint/sdk-minio",
3
3
  "description": "MinIO integration module for SettleMint SDK, providing S3-compatible object storage capabilities",
4
- "version": "2.1.4-prfa41b757",
4
+ "version": "2.1.4-prfa991a9d",
5
5
  "type": "module",
6
6
  "private": false,
7
7
  "license": "FSL-1.1-MIT",
@@ -51,7 +51,7 @@
51
51
  },
52
52
  "devDependencies": {},
53
53
  "dependencies": {
54
- "@settlemint/sdk-utils": "2.1.4-prfa41b757",
54
+ "@settlemint/sdk-utils": "2.1.4-prfa991a9d",
55
55
  "minio": "^8",
56
56
  "zod": "^3"
57
57
  },