Skip to content

Variable: StoreDevelopmentInformationSchema

ts
const StoreDevelopmentInformationSchema: ZodObject<{
  operationType: ZodOptional<ZodCustom<string & object | "NORMAL" | "BACKFILL", string & object | "NORMAL" | "BACKFILL">>;
  preventTransitions: ZodOptional<ZodBoolean>;
  properties: ZodOptional<ZodRecord<ZodString, ZodAny>>;
  providerMetadata: ZodOptional<ZodObject<{
     product: ZodOptional<ZodString>;
  }, $strip>>;
  repositories: ZodArray<ZodObject<{
     avatar: ZodOptional<ZodString>;
     avatarDescription: ZodOptional<ZodString>;
     branches: ZodOptional<ZodArray<ZodObject<{
        associations: ZodOptional<ZodArray<...>>;
        createPullRequestUrl: ZodOptional<ZodString>;
        id: ZodString;
        lastCommit: ZodObject<{
           author: ...;
           authorTimestamp: ...;
           displayId: ...;
           fileCount: ...;
           files: ...;
           flags: ...;
           id: ...;
           issueKeys: ...;
           message: ...;
           updateSequenceId: ...;
           url: ...;
        }, $strip>;
        name: ZodString;
        updateSequenceId: ZodNumber;
        url: ZodString;
     }, $strip>>>;
     commits: ZodOptional<ZodArray<ZodObject<{
        associations: ZodOptional<ZodArray<...>>;
        author: ZodObject<{
           avatar: ...;
           email: ...;
           name: ...;
           url: ...;
           username: ...;
        }, $strip>;
        authorTimestamp: ZodString;
        displayId: ZodString;
        fileCount: ZodNumber;
        files: ZodOptional<ZodArray<...>>;
        flags: ZodOptional<ZodArray<...>>;
        id: ZodString;
        message: ZodString;
        updateSequenceId: ZodNumber;
        url: ZodString;
     }, $strip>>>;
     description: ZodOptional<ZodString>;
     forkOf: ZodOptional<ZodString>;
     id: ZodString;
     name: ZodString;
     pullRequests: ZodOptional<ZodArray<ZodObject<{
        associations: ZodOptional<ZodArray<...>>;
        author: ZodObject<{
           avatar: ...;
           email: ...;
           name: ...;
           url: ...;
           username: ...;
        }, $strip>;
        commentCount: ZodNumber;
        destinationBranch: ZodOptional<ZodString>;
        destinationBranchUrl: ZodOptional<ZodString>;
        displayId: ZodString;
        id: ZodString;
        lastUpdate: ZodString;
        reviewers: ZodOptional<ZodArray<...>>;
        sourceBranch: ZodString;
        sourceBranchUrl: ZodOptional<ZodString>;
        status: ZodCustom<... | ... | ... | ... | ..., ... | ... | ... | ... | ...>;
        title: ZodString;
        updateSequenceId: ZodNumber;
        url: ZodString;
     }, $strip>>>;
     updateSequenceId: ZodNumber;
     url: ZodString;
  }, $strip>>;
}, $strip>;

Defined in: src/agile/parameters/storeDevelopmentInformation.ts:5