@stndrds/constants 1.0.0-alpha.256 → 1.0.0-alpha.257

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.d.mts CHANGED
@@ -1334,8 +1334,8 @@ declare const isValidCurrencyCode: (code: string) => code is CurrencyCode;
1334
1334
  * ```typescript
1335
1335
  * import { FILE_SIZE } from "@stndrds/constants";
1336
1336
  *
1337
- * file({ name: "avatar" })
1338
- * .maxSize(FILE_SIZE.MB_5) // 5 MB
1337
+ * document({ name: "avatar" })
1338
+ * .maxFileSize(FILE_SIZE.MB_5) // 5 MB
1339
1339
  * .build();
1340
1340
  * ```
1341
1341
  */
package/dist/index.d.ts CHANGED
@@ -1334,8 +1334,8 @@ declare const isValidCurrencyCode: (code: string) => code is CurrencyCode;
1334
1334
  * ```typescript
1335
1335
  * import { FILE_SIZE } from "@stndrds/constants";
1336
1336
  *
1337
- * file({ name: "avatar" })
1338
- * .maxSize(FILE_SIZE.MB_5) // 5 MB
1337
+ * document({ name: "avatar" })
1338
+ * .maxFileSize(FILE_SIZE.MB_5) // 5 MB
1339
1339
  * .build();
1340
1340
  * ```
1341
1341
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stndrds/constants",
3
- "version": "1.0.0-alpha.256",
3
+ "version": "1.0.0-alpha.257",
4
4
  "description": "Currency and country data with ISO codes",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",