@settlemint/dalp-sdk 2.1.7-main.22820398930 → 2.1.7-main.22820622772
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/index.js +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -9585,7 +9585,7 @@ var TokenDocumentConfirmUploadInputSchema = TokenReadInputSchema.extend({
|
|
|
9585
9585
|
objectKey: z201.string().min(1, "Object key is required"),
|
|
9586
9586
|
documentType: tokenDocumentType(),
|
|
9587
9587
|
fileName: z201.string().min(1, "File name is required").max(255, "File name too long"),
|
|
9588
|
-
fileSize: z201.number().int().positive("File size must be positive"),
|
|
9588
|
+
fileSize: z201.number().int().positive("File size must be positive").max(TOKEN_DOCUMENT_MAX_FILE_SIZE, "File size must be under 50MB"),
|
|
9589
9589
|
mimeType: tokenDocumentMimeType,
|
|
9590
9590
|
visibility: tokenDocumentVisibility(),
|
|
9591
9591
|
title: z201.string().max(500, "Title too long").optional(),
|
|
@@ -16286,7 +16286,7 @@ var dalpSerializers = [
|
|
|
16286
16286
|
// package.json
|
|
16287
16287
|
var package_default = {
|
|
16288
16288
|
name: "@settlemint/dalp-sdk",
|
|
16289
|
-
version: "2.1.7-main.
|
|
16289
|
+
version: "2.1.7-main.22820622772",
|
|
16290
16290
|
private: false,
|
|
16291
16291
|
description: "Fully typed SDK for the DALP tokenization platform API",
|
|
16292
16292
|
homepage: "https://settlemint.com",
|
package/package.json
CHANGED