@glidevvr/storage-payload-types-pkg 1.0.37 → 1.0.39

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/payload-types.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glidevvr/storage-payload-types-pkg",
3
- "version": "1.0.37",
3
+ "version": "1.0.39",
4
4
  "description": "Package for Payload CMS types.",
5
5
  "main": "payload-types.ts",
6
6
  "scripts": {
package/payload-types.ts CHANGED
@@ -2990,7 +2990,7 @@ export interface ButtonBlock {
2990
2990
  * via the `definition` "CodeBlock".
2991
2991
  */
2992
2992
  export interface CodeBlock {
2993
- language?: ('typescript' | 'javascript' | 'css') | null;
2993
+ language: 'typescript' | 'javascript' | 'css';
2994
2994
  code: string;
2995
2995
  id?: string | null;
2996
2996
  blockName?: string | null;