diff --git a/packages/app/src/app/graphql/types.ts b/packages/app/src/app/graphql/types.ts index 4a42f80056c..38a263954b1 100644 --- a/packages/app/src/app/graphql/types.ts +++ b/packages/app/src/app/graphql/types.ts @@ -4269,6 +4269,7 @@ export type RecentlyDeletedTeamSandboxesFragment = { isV2: boolean; removedAt: string | null; title: string | null; + teamId: any | null; collection: { __typename?: 'Collection'; id: any | null; @@ -4294,6 +4295,7 @@ export type RecentlyDeletedTeamSandboxesQuery = { isV2: boolean; removedAt: string | null; title: string | null; + teamId: any | null; collection: { __typename?: 'Collection'; id: any | null; @@ -4751,6 +4753,7 @@ export type SearchTeamSandboxFragment = { restricted: boolean; privacy: number; screenshotUrl: string | null; + teamId: any | null; source: { __typename?: 'Source'; template: string | null }; customTemplate: { __typename?: 'Template'; @@ -4789,6 +4792,7 @@ export type _SearchTeamSandboxesQuery = { restricted: boolean; privacy: number; screenshotUrl: string | null; + teamId: any | null; source: { __typename?: 'Source'; template: string | null }; customTemplate: { __typename?: 'Template'; @@ -4817,6 +4821,7 @@ export type RecentlyAccessedSandboxFragment = { draft: boolean; isV2: boolean; screenshotUrl: string | null; + teamId: any | null; source: { __typename?: 'Source'; template: string | null }; customTemplate: { __typename?: 'Template'; @@ -4858,6 +4863,7 @@ export type RecentlyAccessedSandboxesLegacyQuery = { draft: boolean; isV2: boolean; screenshotUrl: string | null; + teamId: any | null; source: { __typename?: 'Source'; template: string | null }; customTemplate: { __typename?: 'Template'; @@ -4893,6 +4899,7 @@ export type WorkspaceSandboxFragment = { restricted: boolean; privacy: number; screenshotUrl: string | null; + teamId: any | null; source: { __typename?: 'Source'; template: string | null }; customTemplate: { __typename?: 'Template'; @@ -4931,6 +4938,7 @@ export type GetWorkspaceSandboxesQuery = { restricted: boolean; privacy: number; screenshotUrl: string | null; + teamId: any | null; source: { __typename?: 'Source'; template: string | null }; customTemplate: { __typename?: 'Template'; @@ -4994,6 +5002,7 @@ export type CollaboratorSandboxFragment = { restricted: boolean; privacy: number; screenshotUrl: string | null; + teamId: any | null; source: { __typename?: 'Source'; template: string | null }; customTemplate: { __typename?: 'Template'; @@ -5030,6 +5039,7 @@ export type SharedWithMeSandboxesQuery = { restricted: boolean; privacy: number; screenshotUrl: string | null; + teamId: any | null; source: { __typename?: 'Source'; template: string | null }; customTemplate: { __typename?: 'Template'; diff --git a/packages/app/src/app/overmind/effects/gql/dashboard/queries.ts b/packages/app/src/app/overmind/effects/gql/dashboard/queries.ts index 87a10f6374f..a76c62f643f 100644 --- a/packages/app/src/app/overmind/effects/gql/dashboard/queries.ts +++ b/packages/app/src/app/overmind/effects/gql/dashboard/queries.ts @@ -76,6 +76,7 @@ fragment recentlyDeletedTeamSandboxes on Sandbox { isV2 removedAt title + teamId } `; @@ -336,6 +337,7 @@ const SEARCH_TEAM_SANDBOX_FRAGMENT = gql` path id } + teamId } `; @@ -392,6 +394,7 @@ const RECENTLY_ACCESSED_SANDBOX_FRAGMENT = gql` author { username } + teamId } `; @@ -442,6 +445,7 @@ const WORKSPACE_SANDBOX_FRAGMENT = gql` path id } + teamId } `; @@ -510,6 +514,7 @@ const COLLABORATOR_SANDBOX_FRAGMENT = gql` path id } + teamId } `;