Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions packages/app/src/app/graphql/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4269,6 +4269,7 @@ export type RecentlyDeletedTeamSandboxesFragment = {
isV2: boolean;
removedAt: string | null;
title: string | null;
teamId: any | null;
collection: {
__typename?: 'Collection';
id: any | null;
Expand Down Expand Up @@ -4751,6 +4752,7 @@ export type SearchTeamSandboxFragment = {
restricted: boolean;
privacy: number;
screenshotUrl: string | null;
teamId: any | null;
source: { __typename?: 'Source'; template: string | null };
customTemplate: {
__typename?: 'Template';
Expand Down Expand Up @@ -4817,6 +4819,7 @@ export type RecentlyAccessedSandboxFragment = {
draft: boolean;
isV2: boolean;
screenshotUrl: string | null;
teamId: any | null;
source: { __typename?: 'Source'; template: string | null };
customTemplate: {
__typename?: 'Template';
Expand Down Expand Up @@ -4893,6 +4896,7 @@ export type WorkspaceSandboxFragment = {
restricted: boolean;
privacy: number;
screenshotUrl: string | null;
teamId: any | null;
source: { __typename?: 'Source'; template: string | null };
customTemplate: {
__typename?: 'Template';
Expand Down Expand Up @@ -4994,6 +4998,7 @@ export type CollaboratorSandboxFragment = {
restricted: boolean;
privacy: number;
screenshotUrl: string | null;
teamId: any | null;
source: { __typename?: 'Source'; template: string | null };
customTemplate: {
__typename?: 'Template';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ fragment recentlyDeletedTeamSandboxes on Sandbox {
isV2
removedAt
title
teamId
}
`;

Expand Down Expand Up @@ -336,6 +337,7 @@ const SEARCH_TEAM_SANDBOX_FRAGMENT = gql`
path
id
}
teamId
}
`;

Expand Down Expand Up @@ -392,6 +394,7 @@ const RECENTLY_ACCESSED_SANDBOX_FRAGMENT = gql`
author {
username
}
teamId
}
`;

Expand Down Expand Up @@ -442,6 +445,7 @@ const WORKSPACE_SANDBOX_FRAGMENT = gql`
path
id
}
teamId
}
`;

Expand Down Expand Up @@ -510,6 +514,7 @@ const COLLABORATOR_SANDBOX_FRAGMENT = gql`
path
id
}
teamId
}
`;

Expand Down