@glidevvr/storage-payload-types-pkg 1.0.74 → 1.0.76

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 +0 -11
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glidevvr/storage-payload-types-pkg",
3
- "version": "1.0.74",
3
+ "version": "1.0.76",
4
4
  "description": "Package for Payload CMS types.",
5
5
  "main": "payload-types.ts",
6
6
  "scripts": {
package/payload-types.ts CHANGED
@@ -3209,17 +3209,6 @@ export interface ButtonBlock {
3209
3209
  blockName?: string | null;
3210
3210
  blockType: 'button';
3211
3211
  }
3212
- /**
3213
- * This interface was referenced by `Config`'s JSON-Schema
3214
- * via the `definition` "CodeBlock".
3215
- */
3216
- export interface CodeBlock {
3217
- language: 'typescript' | 'javascript' | 'css';
3218
- code: string;
3219
- id?: string | null;
3220
- blockName?: string | null;
3221
- blockType: 'code';
3222
- }
3223
3212
  /**
3224
3213
  * This interface was referenced by `Config`'s JSON-Schema
3225
3214
  * via the `definition` "auth".