File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -95,3 +95,16 @@ export type InlineFragmentNode = {
9595}
9696
9797export type ExperienceCollection = CursorPaginatedCollectionProp < ExperienceProps >
98+
99+ export type ReleaseExperienceSys = Omit <
100+ ExperienceSys ,
101+ 'variant' | 'variantType' | 'variantDimension'
102+ > & {
103+ release : Link < 'Release' >
104+ }
105+
106+ export type ReleaseExperience = Omit < ExperienceProps , 'sys' > & {
107+ sys : ReleaseExperienceSys
108+ }
109+
110+ export type ReleaseExperienceCollection = CursorPaginatedCollectionProp < ReleaseExperience >
Original file line number Diff line number Diff line change @@ -359,4 +359,10 @@ export type {
359359} from './entities/workflows-changelog-entry'
360360export type { ComponentTypeCollection } from './entities/component-type'
361361export type { TemplateCollection } from './entities/template'
362- export type { ExperienceCollection } from './entities/experience'
362+ export type {
363+ ExperienceCollection ,
364+ ReleaseExperience ,
365+ ReleaseExperienceCollection ,
366+ ReleaseExperienceSys ,
367+ } from './entities/experience'
368+ export type { DataAssemblyCollection } from './entities/data-assembly'
You can’t perform that action at this time.
0 commit comments