pubky-app-specs 0.5.2-rc2 → 0.5.3
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/README.md +1 -1
- package/index.cjs +2 -1
- package/index.js +3 -2
- package/package.json +1 -1
- package/pubky_app_specs.d.ts +3 -2
- package/pubky_app_specs_bg.wasm +0 -0
- package/validationLimits.json +1 -1
package/README.md
CHANGED
|
@@ -392,7 +392,7 @@ Example output shape:
|
|
|
392
392
|
"userStatusMaxLength": 50,
|
|
393
393
|
"postShortContentMaxLength": 2000,
|
|
394
394
|
"postLongContentMaxLength": 50000,
|
|
395
|
-
"postAttachmentsMaxCount":
|
|
395
|
+
"postAttachmentsMaxCount": 10,
|
|
396
396
|
"postAttachmentUrlMaxLength": 200,
|
|
397
397
|
"postAllowedAttachmentProtocols": ["pubky", "http", "https"],
|
|
398
398
|
"fileNameMinLength": 1,
|
package/index.cjs
CHANGED
|
@@ -743,12 +743,13 @@ exports.PubkyAppFeedConfig = PubkyAppFeedConfig;
|
|
|
743
743
|
|
|
744
744
|
/**
|
|
745
745
|
* Enum representing the layout of the feed.
|
|
746
|
-
* @enum {0 | 1 | 2}
|
|
746
|
+
* @enum {0 | 1 | 2 | 3}
|
|
747
747
|
*/
|
|
748
748
|
const PubkyAppFeedLayout = Object.freeze({
|
|
749
749
|
Columns: 0, "0": "Columns",
|
|
750
750
|
Wide: 1, "1": "Wide",
|
|
751
751
|
Visual: 2, "2": "Visual",
|
|
752
|
+
List: 3, "3": "List",
|
|
752
753
|
});
|
|
753
754
|
exports.PubkyAppFeedLayout = PubkyAppFeedLayout;
|
|
754
755
|
|