@settlemint/sdk-ipfs 2.1.4-prd8bc2893 → 2.1.4-pre50de093
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/ipfs.d.cts +3 -3
- package/dist/ipfs.d.ts +3 -3
- package/package.json +2 -2
package/dist/ipfs.d.cts
CHANGED
|
@@ -20,13 +20,13 @@ type ClientOptions = z.infer<typeof ClientOptionsSchema>;
|
|
|
20
20
|
* Schema for validating server client options for the Portal client.
|
|
21
21
|
* Extends the ClientOptionsSchema with additional server-specific fields.
|
|
22
22
|
*/
|
|
23
|
-
declare const ServerClientOptionsSchema: z.ZodObject<
|
|
23
|
+
declare const ServerClientOptionsSchema: z.ZodObject<{
|
|
24
24
|
/** The URL of the IPFS instance to connect to */
|
|
25
25
|
instance: z.ZodString;
|
|
26
|
-
}
|
|
26
|
+
} & {
|
|
27
27
|
/** The access token used to authenticate with the SettleMint platform */
|
|
28
28
|
accessToken: z.ZodString;
|
|
29
|
-
}
|
|
29
|
+
}, "strip", z.ZodTypeAny, {
|
|
30
30
|
instance: string;
|
|
31
31
|
accessToken: string;
|
|
32
32
|
}, {
|
package/dist/ipfs.d.ts
CHANGED
|
@@ -20,13 +20,13 @@ type ClientOptions = z.infer<typeof ClientOptionsSchema>;
|
|
|
20
20
|
* Schema for validating server client options for the Portal client.
|
|
21
21
|
* Extends the ClientOptionsSchema with additional server-specific fields.
|
|
22
22
|
*/
|
|
23
|
-
declare const ServerClientOptionsSchema: z.ZodObject<
|
|
23
|
+
declare const ServerClientOptionsSchema: z.ZodObject<{
|
|
24
24
|
/** The URL of the IPFS instance to connect to */
|
|
25
25
|
instance: z.ZodString;
|
|
26
|
-
}
|
|
26
|
+
} & {
|
|
27
27
|
/** The access token used to authenticate with the SettleMint platform */
|
|
28
28
|
accessToken: z.ZodString;
|
|
29
|
-
}
|
|
29
|
+
}, "strip", z.ZodTypeAny, {
|
|
30
30
|
instance: string;
|
|
31
31
|
accessToken: string;
|
|
32
32
|
}, {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@settlemint/sdk-ipfs",
|
|
3
3
|
"description": "IPFS integration module for SettleMint SDK, enabling decentralized storage and content addressing",
|
|
4
|
-
"version": "2.1.4-
|
|
4
|
+
"version": "2.1.4-pre50de093",
|
|
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-
|
|
54
|
+
"@settlemint/sdk-utils": "2.1.4-pre50de093",
|
|
55
55
|
"kubo-rpc-client": "^5",
|
|
56
56
|
"zod": "^3"
|
|
57
57
|
},
|