@glidevvr/storage-payload-types-pkg 1.0.309 → 1.0.311

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 +47 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glidevvr/storage-payload-types-pkg",
3
- "version": "1.0.309",
3
+ "version": "1.0.311",
4
4
  "description": "Package for Payload CMS types.",
5
5
  "main": "payload-types.ts",
6
6
  "scripts": {
package/payload-types.ts CHANGED
@@ -233,6 +233,7 @@ export interface Config {
233
233
  user: User;
234
234
  jobs: {
235
235
  tasks: {
236
+ vimeoUpload: TaskVimeoUpload;
236
237
  schedulePublish: TaskSchedulePublish;
237
238
  inline: {
238
239
  input: unknown;
@@ -3882,7 +3883,7 @@ export interface PayloadJob {
3882
3883
  | {
3883
3884
  executedAt: string;
3884
3885
  completedAt: string;
3885
- taskSlug: 'inline' | 'schedulePublish';
3886
+ taskSlug: 'inline' | 'vimeoUpload' | 'schedulePublish';
3886
3887
  taskID: string;
3887
3888
  input?:
3888
3889
  | {
@@ -3915,7 +3916,7 @@ export interface PayloadJob {
3915
3916
  id?: string | null;
3916
3917
  }[]
3917
3918
  | null;
3918
- taskSlug?: ('inline' | 'schedulePublish') | null;
3919
+ taskSlug?: ('inline' | 'vimeoUpload' | 'schedulePublish') | null;
3919
3920
  queue?: string | null;
3920
3921
  waitUntil?: string | null;
3921
3922
  processing?: boolean | null;
@@ -5460,6 +5461,16 @@ export interface CollectionsWidget {
5460
5461
  };
5461
5462
  width: 'full';
5462
5463
  }
5464
+ /**
5465
+ * This interface was referenced by `Config`'s JSON-Schema
5466
+ * via the `definition` "TaskVimeoUpload".
5467
+ */
5468
+ export interface TaskVimeoUpload {
5469
+ input: {
5470
+ mediaId: string;
5471
+ };
5472
+ output?: unknown;
5473
+ }
5463
5474
  /**
5464
5475
  * This interface was referenced by `Config`'s JSON-Schema
5465
5476
  * via the `definition` "TaskSchedulePublish".
@@ -5622,6 +5633,40 @@ export interface RowGroupBlock {
5622
5633
  blockName?: string | null;
5623
5634
  blockType: 'rowGroup';
5624
5635
  }
5636
+ /**
5637
+ * This interface was referenced by `Config`'s JSON-Schema
5638
+ * via the `definition` "SearchFormBlock".
5639
+ */
5640
+ export interface SearchFormBlock {
5641
+ /**
5642
+ * Text shown as the input label and aria-label.
5643
+ */
5644
+ labelText?: string | null;
5645
+ /**
5646
+ * When set to placeholder, the label text appears inside the input as placeholder. The label remains in the DOM for screen readers.
5647
+ */
5648
+ labelPlacement?: ('above' | 'placeholder') | null;
5649
+ /**
5650
+ * Display the "Near Me" geolocation button alongside the search input.
5651
+ */
5652
+ showNearMe?: boolean | null;
5653
+ size?: ('default' | 'slim') | null;
5654
+ /**
5655
+ * Visual treatment of the search input.
5656
+ */
5657
+ inputStyle?: ('outline' | 'gray' | 'white' | 'black') | null;
5658
+ /**
5659
+ * Only applies to the Outline input style. "Match text" uses the surrounding text color (good when the scheme color matches the surface). "Match button scheme" uses the active button scheme color (good when the scheme color contrasts with the surface).
5660
+ */
5661
+ inputBorderColor?: ('text' | 'scheme') | null;
5662
+ /**
5663
+ * Color scheme for the Search and Near Me buttons. The "light" companion buttons can blend into pale or low-opacity backdrops — if your overlay/backdrop renders close to white, the Outline scheme is usually the safest choice.
5664
+ */
5665
+ buttonScheme?: ('primary' | 'secondary' | 'tertiary' | 'outline') | null;
5666
+ id?: string | null;
5667
+ blockName?: string | null;
5668
+ blockType: 'searchForm';
5669
+ }
5625
5670
  /**
5626
5671
  * This interface was referenced by `Config`'s JSON-Schema
5627
5672
  * via the `definition` "FaqBlock".