Skip to content

Commit

Permalink
feat: update to track latest spec changes
Browse files Browse the repository at this point in the history
  • Loading branch information
paambaati committed Apr 28, 2024
1 parent c4a13cc commit e98ef04
Show file tree
Hide file tree
Showing 5 changed files with 58 additions and 1 deletion.
3 changes: 3 additions & 0 deletions generated/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,9 @@ export type { OrganizationMembersResponse } from './models/OrganizationMembersRe
export type { OrganizationMemberUpdateRequest } from './models/OrganizationMemberUpdateRequest';
export type { OrganizationsResponse } from './models/OrganizationsResponse';
export type { OrganizationsUpdateRequest } from './models/OrganizationsUpdateRequest';
export type { OuterbaseProjectResponse } from './models/OuterbaseProjectResponse';
export type { OuterbaseWorkspace } from './models/OuterbaseWorkspace';
export type { OuterbaseWorkspaceUpdateRequest } from './models/OuterbaseWorkspaceUpdateRequest';
export type { Pagination } from './models/Pagination';
export type { PaginationResponse } from './models/PaginationResponse';
export type { PaymentSource } from './models/PaymentSource';
Expand Down
2 changes: 1 addition & 1 deletion generated/models/OperationStatus.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
/**
* The status of the operation
*/
export type OperationStatus = 'running' | 'finished' | 'failed' | 'scheduling';
export type OperationStatus = 'scheduling' | 'running' | 'finished' | 'failed' | 'error' | 'cancelling' | 'cancelled' | 'skipped';
28 changes: 28 additions & 0 deletions generated/models/OuterbaseProjectResponse.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
/* generated using openapi-typescript-codegen -- do not edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
import type { OuterbaseWorkspace } from './OuterbaseWorkspace';
export type OuterbaseProjectResponse = {
/**
* The ID of the project
*/
project_id?: string;
/**
* The list of workspaces associated with the Outerbase integrations
*/
workspaces?: Array<OuterbaseWorkspace>;
/**
* The current repository associated with the GitHub App
*/
current_workspace_id?: string;
/**
* The neon database role
*/
role?: string;
/**
* The neon database name
*/
db?: string;
};

15 changes: 15 additions & 0 deletions generated/models/OuterbaseWorkspace.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
/* generated using openapi-typescript-codegen -- do not edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
export type OuterbaseWorkspace = {
/**
* The ID of the Outerbase workspace
*/
id?: string;
/**
* The name of the Outerbase workspace
*/
name?: string;
};

11 changes: 11 additions & 0 deletions generated/models/OuterbaseWorkspaceUpdateRequest.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/* generated using openapi-typescript-codegen -- do not edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
export type OuterbaseWorkspaceUpdateRequest = {
/**
* The ID of the Outerbase workspace
*/
workspace_id: string;
};

0 comments on commit e98ef04

Please sign in to comment.