Skip to content
Snippets Groups Projects
Select Git revision
  • Hotfix/1805-listingBreaks
  • master default protected
  • gitkeep
  • dev protected
  • Issue/2583-treeBug
  • Hotfix/2504-formGen
  • Issue/2309-docs
  • Issue/2462-removeTraces
  • Hotfix/2459-EncodingPath
  • Hotfix/2452-linkedDeletion
  • Issue/1792-newMetadataStructure
  • Hotfix/2384-guestsAndLinked
  • v2.8.14-Hotfix2365
  • Hotfix/2365-targetClassWorks
  • Hotfix/2371-fixGitLabinRCV
  • Fix/xxxx-activateGitlab
  • Test/xxxx-enablingGitLab
  • Issue/2349-gitlabHttps
  • Issue/2287-guestRole
  • Hotfix/2296-selectedValuesNotReturned
  • Issue/2102-gitLabResTypeRCV
  • v2.11.5
  • v2.11.4
  • v2.11.3
  • v2.11.2
  • v2.11.1
  • v2.11.0
  • v2.10.3
  • v2.10.2
  • v2.10.1
  • v2.10.0
  • v2.9.4
  • v2.9.3
  • v2.9.2
  • v2.9.1
  • v2.9.0
  • v2.8.16
  • v2.8.15
  • v2.8.14
  • v2.8.13
  • v2.8.12
41 results

GitVersion.yml

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    payload-types.ts 9.21 KiB
    /* tslint:disable */
    /* eslint-disable */
    /**
     * This file was automatically generated by Payload.
     * DO NOT MODIFY IT BY HAND. Instead, modify your source Payload config,
     * and re-run `payload generate:types` to regenerate this file.
     */
    
    export interface Config {
      auth: {
        users: UserAuthOperations;
      };
      collections: {
        users: User;
        media: Media;
        images: Image;
        publications: Publication;
        newsArticle: NewsArticle;
        experiments: Experiment;
        'payload-locked-documents': PayloadLockedDocument;
        'payload-preferences': PayloadPreference;
        'payload-migrations': PayloadMigration;
      };
      collectionsJoins: {};
      collectionsSelect: {
        users: UsersSelect<false> | UsersSelect<true>;
        media: MediaSelect<false> | MediaSelect<true>;
        images: ImagesSelect<false> | ImagesSelect<true>;
        publications: PublicationsSelect<false> | PublicationsSelect<true>;
        newsArticle: NewsArticleSelect<false> | NewsArticleSelect<true>;
        experiments: ExperimentsSelect<false> | ExperimentsSelect<true>;
        'payload-locked-documents': PayloadLockedDocumentsSelect<false> | PayloadLockedDocumentsSelect<true>;
        'payload-preferences': PayloadPreferencesSelect<false> | PayloadPreferencesSelect<true>;
        'payload-migrations': PayloadMigrationsSelect<false> | PayloadMigrationsSelect<true>;
      };
      db: {
        defaultIDType: string;
      };
      globals: {};
      globalsSelect: {};
      locale: null;
      user: User & {
        collection: 'users';
      };
      jobs?: {
        tasks: unknown;
        workflows?: unknown;
      };
    }
    export interface UserAuthOperations {
      forgotPassword: {
        email: string;
        password: string;
      };
      login: {
        email: string;
        password: string;
      };
      registerFirstUser: {
        email: string;
        password: string;
      };
      unlock: {
        email: string;
        password: string;
      };
    }
    /**
     * This interface was referenced by `Config`'s JSON-Schema
     * via the `definition` "users".