Skip to content

Commit

Permalink
[OpenAPI] Spec updates for vercel-api-js (#539)
Browse files Browse the repository at this point in the history
Co-authored-by: SferaDev <[email protected]>
  • Loading branch information
SferaDev and SferaDev authored Oct 30, 2024
1 parent 03a0617 commit b7a8a1f
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/w593cp.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"vercel-api-js": patch
---

Add branchMatcher field to project responses
40 changes: 40 additions & 0 deletions packages/vercel-api-js/src/api/components.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1776,6 +1776,10 @@ export type UpdateProjectDataCacheResponse = {
} | null;
aliasFinal?: string | null;
automaticAliases?: string[];
branchMatcher?: {
type: 'endsWith' | 'startsWith' | 'equals';
pattern: string;
};
buildingAt?: number;
builds?: {
use: string;
Expand Down Expand Up @@ -1939,6 +1943,10 @@ export type UpdateProjectDataCacheResponse = {
} | null;
aliasFinal?: string | null;
automaticAliases?: string[];
branchMatcher?: {
type: 'endsWith' | 'startsWith' | 'equals';
pattern: string;
};
buildingAt?: number;
builds?: {
use: string;
Expand Down Expand Up @@ -9462,6 +9470,10 @@ export type GetProjectsResponse = {
} | null;
aliasFinal?: string | null;
automaticAliases?: string[];
branchMatcher?: {
type: 'endsWith' | 'startsWith' | 'equals';
pattern: string;
};
buildingAt?: number;
builds?: {
use: string;
Expand Down Expand Up @@ -9625,6 +9637,10 @@ export type GetProjectsResponse = {
} | null;
aliasFinal?: string | null;
automaticAliases?: string[];
branchMatcher?: {
type: 'endsWith' | 'startsWith' | 'equals';
pattern: string;
};
buildingAt?: number;
builds?: {
use: string;
Expand Down Expand Up @@ -10344,6 +10360,10 @@ export type CreateProjectResponse = {
} | null;
aliasFinal?: string | null;
automaticAliases?: string[];
branchMatcher?: {
type: 'endsWith' | 'startsWith' | 'equals';
pattern: string;
};
buildingAt?: number;
builds?: {
use: string;
Expand Down Expand Up @@ -10507,6 +10527,10 @@ export type CreateProjectResponse = {
} | null;
aliasFinal?: string | null;
automaticAliases?: string[];
branchMatcher?: {
type: 'endsWith' | 'startsWith' | 'equals';
pattern: string;
};
buildingAt?: number;
builds?: {
use: string;
Expand Down Expand Up @@ -11406,6 +11430,10 @@ export type GetProjectResponse = {
} | null;
aliasFinal?: string | null;
automaticAliases?: string[];
branchMatcher?: {
type: 'endsWith' | 'startsWith' | 'equals';
pattern: string;
};
buildingAt?: number;
builds?: {
use: string;
Expand Down Expand Up @@ -11569,6 +11597,10 @@ export type GetProjectResponse = {
} | null;
aliasFinal?: string | null;
automaticAliases?: string[];
branchMatcher?: {
type: 'endsWith' | 'startsWith' | 'equals';
pattern: string;
};
buildingAt?: number;
builds?: {
use: string;
Expand Down Expand Up @@ -12296,6 +12328,10 @@ export type UpdateProjectResponse = {
} | null;
aliasFinal?: string | null;
automaticAliases?: string[];
branchMatcher?: {
type: 'endsWith' | 'startsWith' | 'equals';
pattern: string;
};
buildingAt?: number;
builds?: {
use: string;
Expand Down Expand Up @@ -12459,6 +12495,10 @@ export type UpdateProjectResponse = {
} | null;
aliasFinal?: string | null;
automaticAliases?: string[];
branchMatcher?: {
type: 'endsWith' | 'startsWith' | 'equals';
pattern: string;
};
buildingAt?: number;
builds?: {
use: string;
Expand Down

0 comments on commit b7a8a1f

Please sign in to comment.