@@ -168,6 +168,7 @@ import type {
168168 DataAssemblyProps ,
169169 DataAssemblyQueryOptions ,
170170 UpdateDataAssemblyProps ,
171+ DataAssemblyCollection ,
171172} from './entities/data-assembly'
172173import type {
173174 CreateEnvironmentTemplateProps ,
@@ -1683,7 +1684,7 @@ export type MRActions = {
16831684 ComponentType : {
16841685 getMany : {
16851686 params : GetSpaceEnvironmentParams & { query : ComponentTypeQueryOptions }
1686- return : CursorPaginatedCollectionProp < ComponentTypeProps >
1687+ return : ExoCursorPaginatedCollectionProp < ComponentTypeProps >
16871688 }
16881689 get : {
16891690 params : GetComponentTypeParams
@@ -1829,11 +1830,11 @@ export type MRActions = {
18291830 DataAssembly : {
18301831 getMany : {
18311832 params : GetSpaceEnvironmentParams & { query : DataAssemblyQueryOptions }
1832- return : CursorPaginatedCollectionProp < DataAssemblyProps >
1833+ return : DataAssemblyCollection
18331834 }
18341835 getManyPublished : {
18351836 params : GetSpaceEnvironmentParams & { query : DataAssemblyQueryOptions }
1836- return : CursorPaginatedCollectionProp < DataAssemblyProps >
1837+ return : DataAssemblyCollection
18371838 }
18381839 getPublished : {
18391840 params : GetDataAssemblyParams
@@ -2669,7 +2670,7 @@ export type MRActions = {
26692670 Fragment : {
26702671 getMany : {
26712672 params : GetSpaceEnvironmentParams & { query : FragmentQueryOptions }
2672- return : CursorPaginatedCollectionProp < FragmentProps >
2673+ return : ExoCursorPaginatedCollectionProp < FragmentProps >
26732674 }
26742675 get : {
26752676 params : GetFragmentParams
@@ -2701,7 +2702,7 @@ export type MRActions = {
27012702 Template : {
27022703 getMany : {
27032704 params : GetSpaceEnvironmentParams & { query : TemplateQueryOptions }
2704- return : CursorPaginatedCollectionProp < TemplateProps >
2705+ return : ExoCursorPaginatedCollectionProp < TemplateProps >
27052706 }
27062707 get : {
27072708 params : GetTemplateParams
@@ -2776,7 +2777,7 @@ export type MRActions = {
27762777 Experience : {
27772778 getMany : {
27782779 params : GetSpaceEnvironmentParams & { query : ExperienceQueryOptions }
2779- return : CursorPaginatedCollectionProp < ExperienceProps >
2780+ return : ExoCursorPaginatedCollectionProp < ExperienceProps >
27802781 }
27812782 get : {
27822783 params : GetExperienceParams
0 commit comments