@wix/portfolio 1.0.107 → 1.0.108

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/portfolio",
3
- "version": "1.0.107",
3
+ "version": "1.0.108",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -23,9 +23,9 @@
23
23
  "dependencies": {
24
24
  "@wix/portfolio_collections": "1.0.35",
25
25
  "@wix/portfolio_portfolio-settings": "1.0.21",
26
- "@wix/portfolio_project-in-collections": "1.0.37",
27
- "@wix/portfolio_project-items": "1.0.39",
28
- "@wix/portfolio_projects": "1.0.50",
26
+ "@wix/portfolio_project-in-collections": "1.0.38",
27
+ "@wix/portfolio_project-items": "1.0.40",
28
+ "@wix/portfolio_projects": "1.0.51",
29
29
  "@wix/portfolio_synced-project": "1.0.18"
30
30
  },
31
31
  "devDependencies": {
@@ -51,5 +51,5 @@
51
51
  "fqdn": ""
52
52
  }
53
53
  },
54
- "falconPackageHash": "2e4decea6ac216ef432302c3f3f74643c3eea2cf40c725fc60a7c26d"
54
+ "falconPackageHash": "b9a50d85d0080f8708373ab6d6e0a1f2967ebc02bf9856cad8dbe302"
55
55
  }
@@ -2236,11 +2236,11 @@ interface ProjectItemCreatedEnvelope {
2236
2236
  entity: Item;
2237
2237
  metadata: EventMetadata$2;
2238
2238
  }
2239
- interface ProjectItemUpdatedEnvelope {
2240
- entity: Item;
2239
+ interface ProjectItemDeletedEnvelope {
2241
2240
  metadata: EventMetadata$2;
2242
2241
  }
2243
- interface ProjectItemDeletedEnvelope {
2242
+ interface ProjectItemUpdatedEnvelope {
2243
+ entity: Item;
2244
2244
  metadata: EventMetadata$2;
2245
2245
  }
2246
2246
  interface BulkCreateProjectItemsOptions {
@@ -2393,8 +2393,8 @@ interface DuplicateProjectItemsSignature {
2393
2393
  (originProjectId: string, options: DuplicateProjectItemsOptions): Promise<DuplicateProjectItemsResponse & DuplicateProjectItemsResponseNonNullableFields>;
2394
2394
  }
2395
2395
  declare const onProjectItemCreated$1: EventDefinition<ProjectItemCreatedEnvelope, "wix.portfolio.project_items.v1.project_item_created">;
2396
- declare const onProjectItemUpdated$1: EventDefinition<ProjectItemUpdatedEnvelope, "wix.portfolio.project_items.v1.project_item_updated">;
2397
2396
  declare const onProjectItemDeleted$1: EventDefinition<ProjectItemDeletedEnvelope, "wix.portfolio.project_items.v1.project_item_deleted">;
2397
+ declare const onProjectItemUpdated$1: EventDefinition<ProjectItemUpdatedEnvelope, "wix.portfolio.project_items.v1.project_item_updated">;
2398
2398
 
2399
2399
  declare function createEventModule$2<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
2400
2400
 
@@ -2412,14 +2412,14 @@ type _publicOnProjectItemCreatedType = typeof onProjectItemCreated$1;
2412
2412
  /** */
2413
2413
  declare const onProjectItemCreated: ReturnType<typeof createEventModule$2<_publicOnProjectItemCreatedType>>;
2414
2414
 
2415
- type _publicOnProjectItemUpdatedType = typeof onProjectItemUpdated$1;
2416
- /** */
2417
- declare const onProjectItemUpdated: ReturnType<typeof createEventModule$2<_publicOnProjectItemUpdatedType>>;
2418
-
2419
2415
  type _publicOnProjectItemDeletedType = typeof onProjectItemDeleted$1;
2420
2416
  /** */
2421
2417
  declare const onProjectItemDeleted: ReturnType<typeof createEventModule$2<_publicOnProjectItemDeletedType>>;
2422
2418
 
2419
+ type _publicOnProjectItemUpdatedType = typeof onProjectItemUpdated$1;
2420
+ /** */
2421
+ declare const onProjectItemUpdated: ReturnType<typeof createEventModule$2<_publicOnProjectItemUpdatedType>>;
2422
+
2423
2423
  type context$3_BulkCreateProjectItemResult = BulkCreateProjectItemResult;
2424
2424
  type context$3_BulkCreateProjectItemsOptions = BulkCreateProjectItemsOptions;
2425
2425
  type context$3_BulkCreateProjectItemsRequest = BulkCreateProjectItemsRequest;
@@ -3318,9 +3318,9 @@ interface UpdateProjectOrderInCollectionRequest$1 {
3318
3318
  }
3319
3319
  interface UpdateProjectOrderInCollectionResponse$1 {
3320
3320
  /** Updated project within the specified collection. */
3321
- projectInCollection?: ProjectInCollection$1;
3321
+ projectInCollection?: ProjectsInCollections$1;
3322
3322
  }
3323
- interface ProjectInCollection$1 {
3323
+ interface ProjectsInCollections$1 {
3324
3324
  /** Collection ID. */
3325
3325
  collectionId?: string;
3326
3326
  /** Project object. */
@@ -3345,7 +3345,7 @@ interface QueryProjectWithCollectionInfoRequest {
3345
3345
  }
3346
3346
  interface QueryProjectWithCollectionInfoResponse {
3347
3347
  /** The retrieved Projects in Collection */
3348
- projects?: ProjectInCollection$1[];
3348
+ projects?: ProjectsInCollections$1[];
3349
3349
  /** Paging metadata */
3350
3350
  metadata?: PagingMetadataV2$2;
3351
3351
  }
@@ -3526,16 +3526,16 @@ interface DeleteProjectResponseNonNullableFields {
3526
3526
  interface QueryProjectsResponseNonNullableFields {
3527
3527
  projects: ProjectNonNullableFields$1[];
3528
3528
  }
3529
- interface ProjectInCollectionNonNullableFields$1 {
3529
+ interface ProjectsInCollectionsNonNullableFields$1 {
3530
3530
  collectionId: string;
3531
3531
  project?: ProjectNonNullableFields$1;
3532
3532
  }
3533
3533
  interface UpdateProjectOrderInCollectionResponseNonNullableFields$1 {
3534
- project?: ProjectInCollectionNonNullableFields$1;
3535
- projectInCollection?: ProjectInCollectionNonNullableFields$1;
3534
+ project?: ProjectsInCollectionsNonNullableFields$1;
3535
+ projectInCollection?: ProjectsInCollectionsNonNullableFields$1;
3536
3536
  }
3537
3537
  interface QueryProjectWithCollectionInfoResponseNonNullableFields {
3538
- projects: ProjectInCollectionNonNullableFields$1[];
3538
+ projects: ProjectsInCollectionsNonNullableFields$1[];
3539
3539
  }
3540
3540
  interface BaseEventMetadata$1 {
3541
3541
  /** App instance ID. */
@@ -3953,10 +3953,10 @@ declare const context$2_queryProjects: typeof queryProjects;
3953
3953
  declare const context$2_queryProjectsWithCollectionInfo: typeof queryProjectsWithCollectionInfo;
3954
3954
  declare const context$2_updateProject: typeof updateProject;
3955
3955
  declare namespace context$2 {
3956
- export { type ActionEvent$2 as ActionEvent, type context$2_App as App, type context$2_ApplicationError as ApplicationError, type Asset$1 as Asset, type BaseEventMetadata$1 as BaseEventMetadata, type context$2_BulkActionMetadata as BulkActionMetadata, type context$2_BulkUpdateProjectsOptions as BulkUpdateProjectsOptions, type context$2_BulkUpdateProjectsRequest as BulkUpdateProjectsRequest, type context$2_BulkUpdateProjectsResponse as BulkUpdateProjectsResponse, type context$2_BulkUpdateProjectsResponseNonNullableFields as BulkUpdateProjectsResponseNonNullableFields, type context$2_BulkUpdateProjectsResult as BulkUpdateProjectsResult, type context$2_CreateNewPortfolioAppRequest as CreateNewPortfolioAppRequest, type context$2_CreateNewPortfolioAppResponse as CreateNewPortfolioAppResponse, type context$2_CreateProjectRequest as CreateProjectRequest, type context$2_CreateProjectResponse as CreateProjectResponse, type context$2_CreateProjectResponseNonNullableFields as CreateProjectResponseNonNullableFields, type CursorPaging$2 as CursorPaging, type Cursors$2 as Cursors, type DeleteContext$1 as DeleteContext, type context$2_DeleteProjectRequest as DeleteProjectRequest, type context$2_DeleteProjectResponse as DeleteProjectResponse, type context$2_DeleteProjectResponseNonNullableFields as DeleteProjectResponseNonNullableFields, DeleteStatus$1 as DeleteStatus, type context$2_DeletedProjectRestored as DeletedProjectRestored, type DetailsLink$1 as DetailsLink, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type Empty$1 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type EventMetadata$1 as EventMetadata, type context$2_File as File, type context$2_GetProjectOptions as GetProjectOptions, type context$2_GetProjectPageDataIdentifiers as GetProjectPageDataIdentifiers, type context$2_GetProjectPageDataRequest as GetProjectPageDataRequest, type context$2_GetProjectPageDataResponse as GetProjectPageDataResponse, type context$2_GetProjectPageDataResponseNonNullableFields as GetProjectPageDataResponseNonNullableFields, type context$2_GetProjectRequest as GetProjectRequest, type context$2_GetProjectResponse as GetProjectResponse, type context$2_GetProjectResponseNonNullableFields as GetProjectResponseNonNullableFields, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type Image$1 as Image, ImageType$1 as ImageType, type context$2_InvalidateCache as InvalidateCache, type context$2_InvalidateCacheGetByOneOf as InvalidateCacheGetByOneOf, type context$2_ItemMetadata as ItemMetadata, type Keyword$1 as Keyword, type context$2_ListProjectsOptions as ListProjectsOptions, type context$2_ListProjectsRequest as ListProjectsRequest, type context$2_ListProjectsResponse as ListProjectsResponse, type context$2_ListProjectsResponseNonNullableFields as ListProjectsResponseNonNullableFields, type context$2_MaskedProject as MaskedProject, type context$2_MenuSettingUpdatedEvent as MenuSettingUpdatedEvent, type MessageEnvelope$2 as MessageEnvelope, type MetaSiteSpecialEvent$1 as MetaSiteSpecialEvent, type MetaSiteSpecialEventPayloadOneOf$1 as MetaSiteSpecialEventPayloadOneOf, Namespace$1 as Namespace, type NamespaceChanged$1 as NamespaceChanged, type context$2_Page as Page, type Paging$1 as Paging, type PagingMetadataV2$2 as PagingMetadataV2, type Point$1 as Point, type Project$1 as Project, type ProjectCoverOneOf$1 as ProjectCoverOneOf, type context$2_ProjectCreatedEnvelope as ProjectCreatedEnvelope, type context$2_ProjectDeletedEnvelope as ProjectDeletedEnvelope, type ProjectDetail$1 as ProjectDetail, type ProjectDetailValueOneOf$1 as ProjectDetailValueOneOf, type ProjectInCollection$1 as ProjectInCollection, type ProjectNonNullableFields$1 as ProjectNonNullableFields, type context$2_ProjectSlug as ProjectSlug, type ProjectSource$1 as ProjectSource, type context$2_ProjectUpdatedEnvelope as ProjectUpdatedEnvelope, type context$2_ProjectsQueryBuilder as ProjectsQueryBuilder, type context$2_ProjectsQueryResult as ProjectsQueryResult, type context$2_QueryProjectWithCollectionInfoRequest as QueryProjectWithCollectionInfoRequest, type context$2_QueryProjectWithCollectionInfoResponse as QueryProjectWithCollectionInfoResponse, type context$2_QueryProjectWithCollectionInfoResponseNonNullableFields as QueryProjectWithCollectionInfoResponseNonNullableFields, type context$2_QueryProjectsOptions as QueryProjectsOptions, type context$2_QueryProjectsRequest as QueryProjectsRequest, type context$2_QueryProjectsResponse as QueryProjectsResponse, type context$2_QueryProjectsResponseNonNullableFields as QueryProjectsResponseNonNullableFields, type context$2_QueryProjectsWithCollectionInfoOptions as QueryProjectsWithCollectionInfoOptions, type QueryV2$1 as QueryV2, type QueryV2PagingMethodOneOf$1 as QueryV2PagingMethodOneOf, type RestoreInfo$2 as RestoreInfo, type context$2_RestoreProjectFromTrashBinRequest as RestoreProjectFromTrashBinRequest, type context$2_RestoreProjectFromTrashBinResponse as RestoreProjectFromTrashBinResponse, type SeoSchema$1 as SeoSchema, type ServiceProvisioned$1 as ServiceProvisioned, type ServiceRemoved$1 as ServiceRemoved, type Settings$1 as Settings, type SiteCreated$1 as SiteCreated, SiteCreatedContext$1 as SiteCreatedContext, type SiteDeleted$1 as SiteDeleted, type SiteHardDeleted$1 as SiteHardDeleted, type SiteMarkedAsTemplate$1 as SiteMarkedAsTemplate, type SiteMarkedAsWixSite$1 as SiteMarkedAsWixSite, type SitePublished$1 as SitePublished, type SiteRenamed$1 as SiteRenamed, type SiteTransferred$1 as SiteTransferred, type SiteUndeleted$1 as SiteUndeleted, type SiteUnpublished$1 as SiteUnpublished, SortOrder$1 as SortOrder, type Sorting$1 as Sorting, State$1 as State, type StudioAssigned$1 as StudioAssigned, type StudioUnassigned$1 as StudioUnassigned, type context$2_SyncProjectWithCollectionMappings as SyncProjectWithCollectionMappings, SyncStatus$2 as SyncStatus, type Tag$1 as Tag, type context$2_URI as URI, type UnsharpMasking$1 as UnsharpMasking, type context$2_UpdateProject as UpdateProject, type UpdateProjectOrderInCollectionIdentifiers$1 as UpdateProjectOrderInCollectionIdentifiers, type UpdateProjectOrderInCollectionRequest$1 as UpdateProjectOrderInCollectionRequest, type UpdateProjectOrderInCollectionResponse$1 as UpdateProjectOrderInCollectionResponse, type UpdateProjectOrderInCollectionResponseNonNullableFields$1 as UpdateProjectOrderInCollectionResponseNonNullableFields, type context$2_UpdateProjectRequest as UpdateProjectRequest, type context$2_UpdateProjectResponse as UpdateProjectResponse, type context$2_UpdateProjectResponseNonNullableFields as UpdateProjectResponseNonNullableFields, type Video$1 as Video, type VideoResolution$1 as VideoResolution, WebhookIdentityType$2 as WebhookIdentityType, type context$2__publicOnProjectCreatedType as _publicOnProjectCreatedType, type context$2__publicOnProjectDeletedType as _publicOnProjectDeletedType, type context$2__publicOnProjectUpdatedType as _publicOnProjectUpdatedType, context$2_bulkUpdateProjects as bulkUpdateProjects, context$2_createProject as createProject, context$2_deleteProject as deleteProject, context$2_getProject as getProject, context$2_getProjectPageData as getProjectPageData, context$2_listProjects as listProjects, context$2_onProjectCreated as onProjectCreated, context$2_onProjectDeleted as onProjectDeleted, context$2_onProjectUpdated as onProjectUpdated, onProjectCreated$1 as publicOnProjectCreated, onProjectDeleted$1 as publicOnProjectDeleted, onProjectUpdated$1 as publicOnProjectUpdated, context$2_queryProjects as queryProjects, context$2_queryProjectsWithCollectionInfo as queryProjectsWithCollectionInfo, context$2_updateProject as updateProject, updateProjectOrderInCollection$2 as updateProjectOrderInCollection };
3956
+ export { type ActionEvent$2 as ActionEvent, type context$2_App as App, type context$2_ApplicationError as ApplicationError, type Asset$1 as Asset, type BaseEventMetadata$1 as BaseEventMetadata, type context$2_BulkActionMetadata as BulkActionMetadata, type context$2_BulkUpdateProjectsOptions as BulkUpdateProjectsOptions, type context$2_BulkUpdateProjectsRequest as BulkUpdateProjectsRequest, type context$2_BulkUpdateProjectsResponse as BulkUpdateProjectsResponse, type context$2_BulkUpdateProjectsResponseNonNullableFields as BulkUpdateProjectsResponseNonNullableFields, type context$2_BulkUpdateProjectsResult as BulkUpdateProjectsResult, type context$2_CreateNewPortfolioAppRequest as CreateNewPortfolioAppRequest, type context$2_CreateNewPortfolioAppResponse as CreateNewPortfolioAppResponse, type context$2_CreateProjectRequest as CreateProjectRequest, type context$2_CreateProjectResponse as CreateProjectResponse, type context$2_CreateProjectResponseNonNullableFields as CreateProjectResponseNonNullableFields, type CursorPaging$2 as CursorPaging, type Cursors$2 as Cursors, type DeleteContext$1 as DeleteContext, type context$2_DeleteProjectRequest as DeleteProjectRequest, type context$2_DeleteProjectResponse as DeleteProjectResponse, type context$2_DeleteProjectResponseNonNullableFields as DeleteProjectResponseNonNullableFields, DeleteStatus$1 as DeleteStatus, type context$2_DeletedProjectRestored as DeletedProjectRestored, type DetailsLink$1 as DetailsLink, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type Empty$1 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type EventMetadata$1 as EventMetadata, type context$2_File as File, type context$2_GetProjectOptions as GetProjectOptions, type context$2_GetProjectPageDataIdentifiers as GetProjectPageDataIdentifiers, type context$2_GetProjectPageDataRequest as GetProjectPageDataRequest, type context$2_GetProjectPageDataResponse as GetProjectPageDataResponse, type context$2_GetProjectPageDataResponseNonNullableFields as GetProjectPageDataResponseNonNullableFields, type context$2_GetProjectRequest as GetProjectRequest, type context$2_GetProjectResponse as GetProjectResponse, type context$2_GetProjectResponseNonNullableFields as GetProjectResponseNonNullableFields, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type Image$1 as Image, ImageType$1 as ImageType, type context$2_InvalidateCache as InvalidateCache, type context$2_InvalidateCacheGetByOneOf as InvalidateCacheGetByOneOf, type context$2_ItemMetadata as ItemMetadata, type Keyword$1 as Keyword, type context$2_ListProjectsOptions as ListProjectsOptions, type context$2_ListProjectsRequest as ListProjectsRequest, type context$2_ListProjectsResponse as ListProjectsResponse, type context$2_ListProjectsResponseNonNullableFields as ListProjectsResponseNonNullableFields, type context$2_MaskedProject as MaskedProject, type context$2_MenuSettingUpdatedEvent as MenuSettingUpdatedEvent, type MessageEnvelope$2 as MessageEnvelope, type MetaSiteSpecialEvent$1 as MetaSiteSpecialEvent, type MetaSiteSpecialEventPayloadOneOf$1 as MetaSiteSpecialEventPayloadOneOf, Namespace$1 as Namespace, type NamespaceChanged$1 as NamespaceChanged, type context$2_Page as Page, type Paging$1 as Paging, type PagingMetadataV2$2 as PagingMetadataV2, type Point$1 as Point, type Project$1 as Project, type ProjectCoverOneOf$1 as ProjectCoverOneOf, type context$2_ProjectCreatedEnvelope as ProjectCreatedEnvelope, type context$2_ProjectDeletedEnvelope as ProjectDeletedEnvelope, type ProjectDetail$1 as ProjectDetail, type ProjectDetailValueOneOf$1 as ProjectDetailValueOneOf, type ProjectNonNullableFields$1 as ProjectNonNullableFields, type context$2_ProjectSlug as ProjectSlug, type ProjectSource$1 as ProjectSource, type context$2_ProjectUpdatedEnvelope as ProjectUpdatedEnvelope, type ProjectsInCollections$1 as ProjectsInCollections, type context$2_ProjectsQueryBuilder as ProjectsQueryBuilder, type context$2_ProjectsQueryResult as ProjectsQueryResult, type context$2_QueryProjectWithCollectionInfoRequest as QueryProjectWithCollectionInfoRequest, type context$2_QueryProjectWithCollectionInfoResponse as QueryProjectWithCollectionInfoResponse, type context$2_QueryProjectWithCollectionInfoResponseNonNullableFields as QueryProjectWithCollectionInfoResponseNonNullableFields, type context$2_QueryProjectsOptions as QueryProjectsOptions, type context$2_QueryProjectsRequest as QueryProjectsRequest, type context$2_QueryProjectsResponse as QueryProjectsResponse, type context$2_QueryProjectsResponseNonNullableFields as QueryProjectsResponseNonNullableFields, type context$2_QueryProjectsWithCollectionInfoOptions as QueryProjectsWithCollectionInfoOptions, type QueryV2$1 as QueryV2, type QueryV2PagingMethodOneOf$1 as QueryV2PagingMethodOneOf, type RestoreInfo$2 as RestoreInfo, type context$2_RestoreProjectFromTrashBinRequest as RestoreProjectFromTrashBinRequest, type context$2_RestoreProjectFromTrashBinResponse as RestoreProjectFromTrashBinResponse, type SeoSchema$1 as SeoSchema, type ServiceProvisioned$1 as ServiceProvisioned, type ServiceRemoved$1 as ServiceRemoved, type Settings$1 as Settings, type SiteCreated$1 as SiteCreated, SiteCreatedContext$1 as SiteCreatedContext, type SiteDeleted$1 as SiteDeleted, type SiteHardDeleted$1 as SiteHardDeleted, type SiteMarkedAsTemplate$1 as SiteMarkedAsTemplate, type SiteMarkedAsWixSite$1 as SiteMarkedAsWixSite, type SitePublished$1 as SitePublished, type SiteRenamed$1 as SiteRenamed, type SiteTransferred$1 as SiteTransferred, type SiteUndeleted$1 as SiteUndeleted, type SiteUnpublished$1 as SiteUnpublished, SortOrder$1 as SortOrder, type Sorting$1 as Sorting, State$1 as State, type StudioAssigned$1 as StudioAssigned, type StudioUnassigned$1 as StudioUnassigned, type context$2_SyncProjectWithCollectionMappings as SyncProjectWithCollectionMappings, SyncStatus$2 as SyncStatus, type Tag$1 as Tag, type context$2_URI as URI, type UnsharpMasking$1 as UnsharpMasking, type context$2_UpdateProject as UpdateProject, type UpdateProjectOrderInCollectionIdentifiers$1 as UpdateProjectOrderInCollectionIdentifiers, type UpdateProjectOrderInCollectionRequest$1 as UpdateProjectOrderInCollectionRequest, type UpdateProjectOrderInCollectionResponse$1 as UpdateProjectOrderInCollectionResponse, type UpdateProjectOrderInCollectionResponseNonNullableFields$1 as UpdateProjectOrderInCollectionResponseNonNullableFields, type context$2_UpdateProjectRequest as UpdateProjectRequest, type context$2_UpdateProjectResponse as UpdateProjectResponse, type context$2_UpdateProjectResponseNonNullableFields as UpdateProjectResponseNonNullableFields, type Video$1 as Video, type VideoResolution$1 as VideoResolution, WebhookIdentityType$2 as WebhookIdentityType, type context$2__publicOnProjectCreatedType as _publicOnProjectCreatedType, type context$2__publicOnProjectDeletedType as _publicOnProjectDeletedType, type context$2__publicOnProjectUpdatedType as _publicOnProjectUpdatedType, context$2_bulkUpdateProjects as bulkUpdateProjects, context$2_createProject as createProject, context$2_deleteProject as deleteProject, context$2_getProject as getProject, context$2_getProjectPageData as getProjectPageData, context$2_listProjects as listProjects, context$2_onProjectCreated as onProjectCreated, context$2_onProjectDeleted as onProjectDeleted, context$2_onProjectUpdated as onProjectUpdated, onProjectCreated$1 as publicOnProjectCreated, onProjectDeleted$1 as publicOnProjectDeleted, onProjectUpdated$1 as publicOnProjectUpdated, context$2_queryProjects as queryProjects, context$2_queryProjectsWithCollectionInfo as queryProjectsWithCollectionInfo, context$2_updateProject as updateProject, updateProjectOrderInCollection$2 as updateProjectOrderInCollection };
3957
3957
  }
3958
3958
 
3959
- interface ProjectInCollection {
3959
+ interface ProjectsInCollections {
3960
3960
  /** Collection ID. */
3961
3961
  collectionId?: string;
3962
3962
  /** Project object. */
@@ -4254,7 +4254,7 @@ interface CursorPaging$1 {
4254
4254
  }
4255
4255
  interface QueryProjectInCollectionsResponse {
4256
4256
  /** List of projects in collections. */
4257
- projectInCollections?: ProjectInCollection[];
4257
+ projectInCollections?: ProjectsInCollections[];
4258
4258
  /** Paging metadata. */
4259
4259
  metadata?: PagingMetadataV2$1;
4260
4260
  }
@@ -4286,7 +4286,7 @@ interface UpdateProjectOrderInCollectionRequest {
4286
4286
  }
4287
4287
  interface UpdateProjectOrderInCollectionResponse {
4288
4288
  /** Updated project within the specified collection. */
4289
- projectInCollection?: ProjectInCollection;
4289
+ projectInCollection?: ProjectsInCollections;
4290
4290
  }
4291
4291
  interface ProjectOrderInCollectionUpdatedEvent {
4292
4292
  /** ID of the project to update. */
@@ -4456,13 +4456,13 @@ interface ProjectNonNullableFields {
4456
4456
  url: string;
4457
4457
  seoData?: SeoSchemaNonNullableFields;
4458
4458
  }
4459
- interface ProjectInCollectionNonNullableFields {
4459
+ interface ProjectsInCollectionsNonNullableFields {
4460
4460
  collectionId: string;
4461
4461
  project?: ProjectNonNullableFields;
4462
4462
  }
4463
4463
  interface UpdateProjectOrderInCollectionResponseNonNullableFields {
4464
- project?: ProjectInCollectionNonNullableFields;
4465
- projectInCollection?: ProjectInCollectionNonNullableFields;
4464
+ project?: ProjectsInCollectionsNonNullableFields;
4465
+ projectInCollection?: ProjectsInCollectionsNonNullableFields;
4466
4466
  }
4467
4467
  interface BaseEventMetadata {
4468
4468
  /** App instance ID. */
@@ -4552,10 +4552,10 @@ type context$1_Project = Project;
4552
4552
  type context$1_ProjectCoverOneOf = ProjectCoverOneOf;
4553
4553
  type context$1_ProjectDetail = ProjectDetail;
4554
4554
  type context$1_ProjectDetailValueOneOf = ProjectDetailValueOneOf;
4555
- type context$1_ProjectInCollection = ProjectInCollection;
4556
4555
  type context$1_ProjectInCollectionProjectOrderInCollectionUpdatedEnvelope = ProjectInCollectionProjectOrderInCollectionUpdatedEnvelope;
4557
4556
  type context$1_ProjectOrderInCollectionUpdatedEvent = ProjectOrderInCollectionUpdatedEvent;
4558
4557
  type context$1_ProjectSource = ProjectSource;
4558
+ type context$1_ProjectsInCollections = ProjectsInCollections;
4559
4559
  type context$1_QueryProjectInCollectionsRequest = QueryProjectInCollectionsRequest;
4560
4560
  type context$1_QueryProjectInCollectionsResponse = QueryProjectInCollectionsResponse;
4561
4561
  type context$1_QueryV2 = QueryV2;
@@ -4577,7 +4577,7 @@ type context$1__publicOnProjectInCollectionProjectOrderInCollectionUpdatedEventT
4577
4577
  declare const context$1_onProjectInCollectionProjectOrderInCollectionUpdatedEvent: typeof onProjectInCollectionProjectOrderInCollectionUpdatedEvent;
4578
4578
  declare const context$1_updateProjectOrderInCollection: typeof updateProjectOrderInCollection;
4579
4579
  declare namespace context$1 {
4580
- export { type ActionEvent$1 as ActionEvent, type context$1_BaseEventMetadata as BaseEventMetadata, type CursorPaging$1 as CursorPaging, type Cursors$1 as Cursors, type context$1_DetailsLink as DetailsLink, type DomainEvent$1 as DomainEvent, type DomainEventBodyOneOf$1 as DomainEventBodyOneOf, type EntityCreatedEvent$1 as EntityCreatedEvent, type EntityDeletedEvent$1 as EntityDeletedEvent, type EntityUpdatedEvent$1 as EntityUpdatedEvent, type context$1_EventMetadata as EventMetadata, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, type context$1_Image as Image, context$1_ImageType as ImageType, type context$1_Keyword as Keyword, type MessageEnvelope$1 as MessageEnvelope, type context$1_Paging as Paging, type PagingMetadataV2$1 as PagingMetadataV2, type context$1_Point as Point, type context$1_Project as Project, type context$1_ProjectCoverOneOf as ProjectCoverOneOf, type context$1_ProjectDetail as ProjectDetail, type context$1_ProjectDetailValueOneOf as ProjectDetailValueOneOf, type context$1_ProjectInCollection as ProjectInCollection, type context$1_ProjectInCollectionProjectOrderInCollectionUpdatedEnvelope as ProjectInCollectionProjectOrderInCollectionUpdatedEnvelope, type context$1_ProjectOrderInCollectionUpdatedEvent as ProjectOrderInCollectionUpdatedEvent, type context$1_ProjectSource as ProjectSource, type context$1_QueryProjectInCollectionsRequest as QueryProjectInCollectionsRequest, type context$1_QueryProjectInCollectionsResponse as QueryProjectInCollectionsResponse, type context$1_QueryV2 as QueryV2, type context$1_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type RestoreInfo$1 as RestoreInfo, type context$1_SeoSchema as SeoSchema, type context$1_Settings as Settings, context$1_SortOrder as SortOrder, type context$1_Sorting as Sorting, SyncStatus$1 as SyncStatus, type context$1_Tag as Tag, type context$1_UnsharpMasking as UnsharpMasking, type context$1_UpdateProjectOrderInCollectionIdentifiers as UpdateProjectOrderInCollectionIdentifiers, type context$1_UpdateProjectOrderInCollectionRequest as UpdateProjectOrderInCollectionRequest, type context$1_UpdateProjectOrderInCollectionResponse as UpdateProjectOrderInCollectionResponse, type context$1_UpdateProjectOrderInCollectionResponseNonNullableFields as UpdateProjectOrderInCollectionResponseNonNullableFields, type context$1_Video as Video, type context$1_VideoResolution as VideoResolution, WebhookIdentityType$1 as WebhookIdentityType, type context$1__publicOnProjectInCollectionProjectOrderInCollectionUpdatedEventType as _publicOnProjectInCollectionProjectOrderInCollectionUpdatedEventType, context$1_onProjectInCollectionProjectOrderInCollectionUpdatedEvent as onProjectInCollectionProjectOrderInCollectionUpdatedEvent, onProjectInCollectionProjectOrderInCollectionUpdatedEvent$1 as publicOnProjectInCollectionProjectOrderInCollectionUpdatedEvent, context$1_updateProjectOrderInCollection as updateProjectOrderInCollection };
4580
+ export { type ActionEvent$1 as ActionEvent, type context$1_BaseEventMetadata as BaseEventMetadata, type CursorPaging$1 as CursorPaging, type Cursors$1 as Cursors, type context$1_DetailsLink as DetailsLink, type DomainEvent$1 as DomainEvent, type DomainEventBodyOneOf$1 as DomainEventBodyOneOf, type EntityCreatedEvent$1 as EntityCreatedEvent, type EntityDeletedEvent$1 as EntityDeletedEvent, type EntityUpdatedEvent$1 as EntityUpdatedEvent, type context$1_EventMetadata as EventMetadata, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, type context$1_Image as Image, context$1_ImageType as ImageType, type context$1_Keyword as Keyword, type MessageEnvelope$1 as MessageEnvelope, type context$1_Paging as Paging, type PagingMetadataV2$1 as PagingMetadataV2, type context$1_Point as Point, type context$1_Project as Project, type context$1_ProjectCoverOneOf as ProjectCoverOneOf, type context$1_ProjectDetail as ProjectDetail, type context$1_ProjectDetailValueOneOf as ProjectDetailValueOneOf, type context$1_ProjectInCollectionProjectOrderInCollectionUpdatedEnvelope as ProjectInCollectionProjectOrderInCollectionUpdatedEnvelope, type context$1_ProjectOrderInCollectionUpdatedEvent as ProjectOrderInCollectionUpdatedEvent, type context$1_ProjectSource as ProjectSource, type context$1_ProjectsInCollections as ProjectsInCollections, type context$1_QueryProjectInCollectionsRequest as QueryProjectInCollectionsRequest, type context$1_QueryProjectInCollectionsResponse as QueryProjectInCollectionsResponse, type context$1_QueryV2 as QueryV2, type context$1_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type RestoreInfo$1 as RestoreInfo, type context$1_SeoSchema as SeoSchema, type context$1_Settings as Settings, context$1_SortOrder as SortOrder, type context$1_Sorting as Sorting, SyncStatus$1 as SyncStatus, type context$1_Tag as Tag, type context$1_UnsharpMasking as UnsharpMasking, type context$1_UpdateProjectOrderInCollectionIdentifiers as UpdateProjectOrderInCollectionIdentifiers, type context$1_UpdateProjectOrderInCollectionRequest as UpdateProjectOrderInCollectionRequest, type context$1_UpdateProjectOrderInCollectionResponse as UpdateProjectOrderInCollectionResponse, type context$1_UpdateProjectOrderInCollectionResponseNonNullableFields as UpdateProjectOrderInCollectionResponseNonNullableFields, type context$1_Video as Video, type context$1_VideoResolution as VideoResolution, WebhookIdentityType$1 as WebhookIdentityType, type context$1__publicOnProjectInCollectionProjectOrderInCollectionUpdatedEventType as _publicOnProjectInCollectionProjectOrderInCollectionUpdatedEventType, context$1_onProjectInCollectionProjectOrderInCollectionUpdatedEvent as onProjectInCollectionProjectOrderInCollectionUpdatedEvent, onProjectInCollectionProjectOrderInCollectionUpdatedEvent$1 as publicOnProjectInCollectionProjectOrderInCollectionUpdatedEvent, context$1_updateProjectOrderInCollection as updateProjectOrderInCollection };
4581
4581
  }
4582
4582
 
4583
4583
  interface SyncedProject {
@@ -2236,11 +2236,11 @@ interface ProjectItemCreatedEnvelope {
2236
2236
  entity: Item;
2237
2237
  metadata: EventMetadata$2;
2238
2238
  }
2239
- interface ProjectItemUpdatedEnvelope {
2240
- entity: Item;
2239
+ interface ProjectItemDeletedEnvelope {
2241
2240
  metadata: EventMetadata$2;
2242
2241
  }
2243
- interface ProjectItemDeletedEnvelope {
2242
+ interface ProjectItemUpdatedEnvelope {
2243
+ entity: Item;
2244
2244
  metadata: EventMetadata$2;
2245
2245
  }
2246
2246
  interface BulkCreateProjectItemsOptions {
@@ -2393,8 +2393,8 @@ interface DuplicateProjectItemsSignature {
2393
2393
  (originProjectId: string, options: DuplicateProjectItemsOptions): Promise<DuplicateProjectItemsResponse & DuplicateProjectItemsResponseNonNullableFields>;
2394
2394
  }
2395
2395
  declare const onProjectItemCreated$1: EventDefinition<ProjectItemCreatedEnvelope, "wix.portfolio.project_items.v1.project_item_created">;
2396
- declare const onProjectItemUpdated$1: EventDefinition<ProjectItemUpdatedEnvelope, "wix.portfolio.project_items.v1.project_item_updated">;
2397
2396
  declare const onProjectItemDeleted$1: EventDefinition<ProjectItemDeletedEnvelope, "wix.portfolio.project_items.v1.project_item_deleted">;
2397
+ declare const onProjectItemUpdated$1: EventDefinition<ProjectItemUpdatedEnvelope, "wix.portfolio.project_items.v1.project_item_updated">;
2398
2398
 
2399
2399
  declare function createEventModule$2<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
2400
2400
 
@@ -2412,14 +2412,14 @@ type _publicOnProjectItemCreatedType = typeof onProjectItemCreated$1;
2412
2412
  /** */
2413
2413
  declare const onProjectItemCreated: ReturnType<typeof createEventModule$2<_publicOnProjectItemCreatedType>>;
2414
2414
 
2415
- type _publicOnProjectItemUpdatedType = typeof onProjectItemUpdated$1;
2416
- /** */
2417
- declare const onProjectItemUpdated: ReturnType<typeof createEventModule$2<_publicOnProjectItemUpdatedType>>;
2418
-
2419
2415
  type _publicOnProjectItemDeletedType = typeof onProjectItemDeleted$1;
2420
2416
  /** */
2421
2417
  declare const onProjectItemDeleted: ReturnType<typeof createEventModule$2<_publicOnProjectItemDeletedType>>;
2422
2418
 
2419
+ type _publicOnProjectItemUpdatedType = typeof onProjectItemUpdated$1;
2420
+ /** */
2421
+ declare const onProjectItemUpdated: ReturnType<typeof createEventModule$2<_publicOnProjectItemUpdatedType>>;
2422
+
2423
2423
  type index_d$3_BulkCreateProjectItemResult = BulkCreateProjectItemResult;
2424
2424
  type index_d$3_BulkCreateProjectItemsOptions = BulkCreateProjectItemsOptions;
2425
2425
  type index_d$3_BulkCreateProjectItemsRequest = BulkCreateProjectItemsRequest;
@@ -3318,9 +3318,9 @@ interface UpdateProjectOrderInCollectionRequest$1 {
3318
3318
  }
3319
3319
  interface UpdateProjectOrderInCollectionResponse$1 {
3320
3320
  /** Updated project within the specified collection. */
3321
- projectInCollection?: ProjectInCollection$1;
3321
+ projectInCollection?: ProjectsInCollections$1;
3322
3322
  }
3323
- interface ProjectInCollection$1 {
3323
+ interface ProjectsInCollections$1 {
3324
3324
  /** Collection ID. */
3325
3325
  collectionId?: string;
3326
3326
  /** Project object. */
@@ -3345,7 +3345,7 @@ interface QueryProjectWithCollectionInfoRequest {
3345
3345
  }
3346
3346
  interface QueryProjectWithCollectionInfoResponse {
3347
3347
  /** The retrieved Projects in Collection */
3348
- projects?: ProjectInCollection$1[];
3348
+ projects?: ProjectsInCollections$1[];
3349
3349
  /** Paging metadata */
3350
3350
  metadata?: PagingMetadataV2$2;
3351
3351
  }
@@ -3526,16 +3526,16 @@ interface DeleteProjectResponseNonNullableFields {
3526
3526
  interface QueryProjectsResponseNonNullableFields {
3527
3527
  projects: ProjectNonNullableFields$1[];
3528
3528
  }
3529
- interface ProjectInCollectionNonNullableFields$1 {
3529
+ interface ProjectsInCollectionsNonNullableFields$1 {
3530
3530
  collectionId: string;
3531
3531
  project?: ProjectNonNullableFields$1;
3532
3532
  }
3533
3533
  interface UpdateProjectOrderInCollectionResponseNonNullableFields$1 {
3534
- project?: ProjectInCollectionNonNullableFields$1;
3535
- projectInCollection?: ProjectInCollectionNonNullableFields$1;
3534
+ project?: ProjectsInCollectionsNonNullableFields$1;
3535
+ projectInCollection?: ProjectsInCollectionsNonNullableFields$1;
3536
3536
  }
3537
3537
  interface QueryProjectWithCollectionInfoResponseNonNullableFields {
3538
- projects: ProjectInCollectionNonNullableFields$1[];
3538
+ projects: ProjectsInCollectionsNonNullableFields$1[];
3539
3539
  }
3540
3540
  interface BaseEventMetadata$1 {
3541
3541
  /** App instance ID. */
@@ -3953,10 +3953,10 @@ declare const index_d$2_queryProjects: typeof queryProjects;
3953
3953
  declare const index_d$2_queryProjectsWithCollectionInfo: typeof queryProjectsWithCollectionInfo;
3954
3954
  declare const index_d$2_updateProject: typeof updateProject;
3955
3955
  declare namespace index_d$2 {
3956
- export { type ActionEvent$2 as ActionEvent, type index_d$2_App as App, type index_d$2_ApplicationError as ApplicationError, type Asset$1 as Asset, type BaseEventMetadata$1 as BaseEventMetadata, type index_d$2_BulkActionMetadata as BulkActionMetadata, type index_d$2_BulkUpdateProjectsOptions as BulkUpdateProjectsOptions, type index_d$2_BulkUpdateProjectsRequest as BulkUpdateProjectsRequest, type index_d$2_BulkUpdateProjectsResponse as BulkUpdateProjectsResponse, type index_d$2_BulkUpdateProjectsResponseNonNullableFields as BulkUpdateProjectsResponseNonNullableFields, type index_d$2_BulkUpdateProjectsResult as BulkUpdateProjectsResult, type index_d$2_CreateNewPortfolioAppRequest as CreateNewPortfolioAppRequest, type index_d$2_CreateNewPortfolioAppResponse as CreateNewPortfolioAppResponse, type index_d$2_CreateProjectRequest as CreateProjectRequest, type index_d$2_CreateProjectResponse as CreateProjectResponse, type index_d$2_CreateProjectResponseNonNullableFields as CreateProjectResponseNonNullableFields, type CursorPaging$2 as CursorPaging, type Cursors$2 as Cursors, type DeleteContext$1 as DeleteContext, type index_d$2_DeleteProjectRequest as DeleteProjectRequest, type index_d$2_DeleteProjectResponse as DeleteProjectResponse, type index_d$2_DeleteProjectResponseNonNullableFields as DeleteProjectResponseNonNullableFields, DeleteStatus$1 as DeleteStatus, type index_d$2_DeletedProjectRestored as DeletedProjectRestored, type DetailsLink$1 as DetailsLink, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type Empty$1 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type EventMetadata$1 as EventMetadata, type index_d$2_File as File, type index_d$2_GetProjectOptions as GetProjectOptions, type index_d$2_GetProjectPageDataIdentifiers as GetProjectPageDataIdentifiers, type index_d$2_GetProjectPageDataRequest as GetProjectPageDataRequest, type index_d$2_GetProjectPageDataResponse as GetProjectPageDataResponse, type index_d$2_GetProjectPageDataResponseNonNullableFields as GetProjectPageDataResponseNonNullableFields, type index_d$2_GetProjectRequest as GetProjectRequest, type index_d$2_GetProjectResponse as GetProjectResponse, type index_d$2_GetProjectResponseNonNullableFields as GetProjectResponseNonNullableFields, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type Image$1 as Image, ImageType$1 as ImageType, type index_d$2_InvalidateCache as InvalidateCache, type index_d$2_InvalidateCacheGetByOneOf as InvalidateCacheGetByOneOf, type index_d$2_ItemMetadata as ItemMetadata, type Keyword$1 as Keyword, type index_d$2_ListProjectsOptions as ListProjectsOptions, type index_d$2_ListProjectsRequest as ListProjectsRequest, type index_d$2_ListProjectsResponse as ListProjectsResponse, type index_d$2_ListProjectsResponseNonNullableFields as ListProjectsResponseNonNullableFields, type index_d$2_MaskedProject as MaskedProject, type index_d$2_MenuSettingUpdatedEvent as MenuSettingUpdatedEvent, type MessageEnvelope$2 as MessageEnvelope, type MetaSiteSpecialEvent$1 as MetaSiteSpecialEvent, type MetaSiteSpecialEventPayloadOneOf$1 as MetaSiteSpecialEventPayloadOneOf, Namespace$1 as Namespace, type NamespaceChanged$1 as NamespaceChanged, type index_d$2_Page as Page, type Paging$1 as Paging, type PagingMetadataV2$2 as PagingMetadataV2, type Point$1 as Point, type Project$1 as Project, type ProjectCoverOneOf$1 as ProjectCoverOneOf, type index_d$2_ProjectCreatedEnvelope as ProjectCreatedEnvelope, type index_d$2_ProjectDeletedEnvelope as ProjectDeletedEnvelope, type ProjectDetail$1 as ProjectDetail, type ProjectDetailValueOneOf$1 as ProjectDetailValueOneOf, type ProjectInCollection$1 as ProjectInCollection, type ProjectNonNullableFields$1 as ProjectNonNullableFields, type index_d$2_ProjectSlug as ProjectSlug, type ProjectSource$1 as ProjectSource, type index_d$2_ProjectUpdatedEnvelope as ProjectUpdatedEnvelope, type index_d$2_ProjectsQueryBuilder as ProjectsQueryBuilder, type index_d$2_ProjectsQueryResult as ProjectsQueryResult, type index_d$2_QueryProjectWithCollectionInfoRequest as QueryProjectWithCollectionInfoRequest, type index_d$2_QueryProjectWithCollectionInfoResponse as QueryProjectWithCollectionInfoResponse, type index_d$2_QueryProjectWithCollectionInfoResponseNonNullableFields as QueryProjectWithCollectionInfoResponseNonNullableFields, type index_d$2_QueryProjectsOptions as QueryProjectsOptions, type index_d$2_QueryProjectsRequest as QueryProjectsRequest, type index_d$2_QueryProjectsResponse as QueryProjectsResponse, type index_d$2_QueryProjectsResponseNonNullableFields as QueryProjectsResponseNonNullableFields, type index_d$2_QueryProjectsWithCollectionInfoOptions as QueryProjectsWithCollectionInfoOptions, type QueryV2$1 as QueryV2, type QueryV2PagingMethodOneOf$1 as QueryV2PagingMethodOneOf, type RestoreInfo$2 as RestoreInfo, type index_d$2_RestoreProjectFromTrashBinRequest as RestoreProjectFromTrashBinRequest, type index_d$2_RestoreProjectFromTrashBinResponse as RestoreProjectFromTrashBinResponse, type SeoSchema$1 as SeoSchema, type ServiceProvisioned$1 as ServiceProvisioned, type ServiceRemoved$1 as ServiceRemoved, type Settings$1 as Settings, type SiteCreated$1 as SiteCreated, SiteCreatedContext$1 as SiteCreatedContext, type SiteDeleted$1 as SiteDeleted, type SiteHardDeleted$1 as SiteHardDeleted, type SiteMarkedAsTemplate$1 as SiteMarkedAsTemplate, type SiteMarkedAsWixSite$1 as SiteMarkedAsWixSite, type SitePublished$1 as SitePublished, type SiteRenamed$1 as SiteRenamed, type SiteTransferred$1 as SiteTransferred, type SiteUndeleted$1 as SiteUndeleted, type SiteUnpublished$1 as SiteUnpublished, SortOrder$1 as SortOrder, type Sorting$1 as Sorting, State$1 as State, type StudioAssigned$1 as StudioAssigned, type StudioUnassigned$1 as StudioUnassigned, type index_d$2_SyncProjectWithCollectionMappings as SyncProjectWithCollectionMappings, SyncStatus$2 as SyncStatus, type Tag$1 as Tag, type index_d$2_URI as URI, type UnsharpMasking$1 as UnsharpMasking, type index_d$2_UpdateProject as UpdateProject, type UpdateProjectOrderInCollectionIdentifiers$1 as UpdateProjectOrderInCollectionIdentifiers, type UpdateProjectOrderInCollectionRequest$1 as UpdateProjectOrderInCollectionRequest, type UpdateProjectOrderInCollectionResponse$1 as UpdateProjectOrderInCollectionResponse, type UpdateProjectOrderInCollectionResponseNonNullableFields$1 as UpdateProjectOrderInCollectionResponseNonNullableFields, type index_d$2_UpdateProjectRequest as UpdateProjectRequest, type index_d$2_UpdateProjectResponse as UpdateProjectResponse, type index_d$2_UpdateProjectResponseNonNullableFields as UpdateProjectResponseNonNullableFields, type Video$1 as Video, type VideoResolution$1 as VideoResolution, WebhookIdentityType$2 as WebhookIdentityType, type index_d$2__publicOnProjectCreatedType as _publicOnProjectCreatedType, type index_d$2__publicOnProjectDeletedType as _publicOnProjectDeletedType, type index_d$2__publicOnProjectUpdatedType as _publicOnProjectUpdatedType, index_d$2_bulkUpdateProjects as bulkUpdateProjects, index_d$2_createProject as createProject, index_d$2_deleteProject as deleteProject, index_d$2_getProject as getProject, index_d$2_getProjectPageData as getProjectPageData, index_d$2_listProjects as listProjects, index_d$2_onProjectCreated as onProjectCreated, index_d$2_onProjectDeleted as onProjectDeleted, index_d$2_onProjectUpdated as onProjectUpdated, onProjectCreated$1 as publicOnProjectCreated, onProjectDeleted$1 as publicOnProjectDeleted, onProjectUpdated$1 as publicOnProjectUpdated, index_d$2_queryProjects as queryProjects, index_d$2_queryProjectsWithCollectionInfo as queryProjectsWithCollectionInfo, index_d$2_updateProject as updateProject, updateProjectOrderInCollection$2 as updateProjectOrderInCollection };
3956
+ export { type ActionEvent$2 as ActionEvent, type index_d$2_App as App, type index_d$2_ApplicationError as ApplicationError, type Asset$1 as Asset, type BaseEventMetadata$1 as BaseEventMetadata, type index_d$2_BulkActionMetadata as BulkActionMetadata, type index_d$2_BulkUpdateProjectsOptions as BulkUpdateProjectsOptions, type index_d$2_BulkUpdateProjectsRequest as BulkUpdateProjectsRequest, type index_d$2_BulkUpdateProjectsResponse as BulkUpdateProjectsResponse, type index_d$2_BulkUpdateProjectsResponseNonNullableFields as BulkUpdateProjectsResponseNonNullableFields, type index_d$2_BulkUpdateProjectsResult as BulkUpdateProjectsResult, type index_d$2_CreateNewPortfolioAppRequest as CreateNewPortfolioAppRequest, type index_d$2_CreateNewPortfolioAppResponse as CreateNewPortfolioAppResponse, type index_d$2_CreateProjectRequest as CreateProjectRequest, type index_d$2_CreateProjectResponse as CreateProjectResponse, type index_d$2_CreateProjectResponseNonNullableFields as CreateProjectResponseNonNullableFields, type CursorPaging$2 as CursorPaging, type Cursors$2 as Cursors, type DeleteContext$1 as DeleteContext, type index_d$2_DeleteProjectRequest as DeleteProjectRequest, type index_d$2_DeleteProjectResponse as DeleteProjectResponse, type index_d$2_DeleteProjectResponseNonNullableFields as DeleteProjectResponseNonNullableFields, DeleteStatus$1 as DeleteStatus, type index_d$2_DeletedProjectRestored as DeletedProjectRestored, type DetailsLink$1 as DetailsLink, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type Empty$1 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type EventMetadata$1 as EventMetadata, type index_d$2_File as File, type index_d$2_GetProjectOptions as GetProjectOptions, type index_d$2_GetProjectPageDataIdentifiers as GetProjectPageDataIdentifiers, type index_d$2_GetProjectPageDataRequest as GetProjectPageDataRequest, type index_d$2_GetProjectPageDataResponse as GetProjectPageDataResponse, type index_d$2_GetProjectPageDataResponseNonNullableFields as GetProjectPageDataResponseNonNullableFields, type index_d$2_GetProjectRequest as GetProjectRequest, type index_d$2_GetProjectResponse as GetProjectResponse, type index_d$2_GetProjectResponseNonNullableFields as GetProjectResponseNonNullableFields, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type Image$1 as Image, ImageType$1 as ImageType, type index_d$2_InvalidateCache as InvalidateCache, type index_d$2_InvalidateCacheGetByOneOf as InvalidateCacheGetByOneOf, type index_d$2_ItemMetadata as ItemMetadata, type Keyword$1 as Keyword, type index_d$2_ListProjectsOptions as ListProjectsOptions, type index_d$2_ListProjectsRequest as ListProjectsRequest, type index_d$2_ListProjectsResponse as ListProjectsResponse, type index_d$2_ListProjectsResponseNonNullableFields as ListProjectsResponseNonNullableFields, type index_d$2_MaskedProject as MaskedProject, type index_d$2_MenuSettingUpdatedEvent as MenuSettingUpdatedEvent, type MessageEnvelope$2 as MessageEnvelope, type MetaSiteSpecialEvent$1 as MetaSiteSpecialEvent, type MetaSiteSpecialEventPayloadOneOf$1 as MetaSiteSpecialEventPayloadOneOf, Namespace$1 as Namespace, type NamespaceChanged$1 as NamespaceChanged, type index_d$2_Page as Page, type Paging$1 as Paging, type PagingMetadataV2$2 as PagingMetadataV2, type Point$1 as Point, type Project$1 as Project, type ProjectCoverOneOf$1 as ProjectCoverOneOf, type index_d$2_ProjectCreatedEnvelope as ProjectCreatedEnvelope, type index_d$2_ProjectDeletedEnvelope as ProjectDeletedEnvelope, type ProjectDetail$1 as ProjectDetail, type ProjectDetailValueOneOf$1 as ProjectDetailValueOneOf, type ProjectNonNullableFields$1 as ProjectNonNullableFields, type index_d$2_ProjectSlug as ProjectSlug, type ProjectSource$1 as ProjectSource, type index_d$2_ProjectUpdatedEnvelope as ProjectUpdatedEnvelope, type ProjectsInCollections$1 as ProjectsInCollections, type index_d$2_ProjectsQueryBuilder as ProjectsQueryBuilder, type index_d$2_ProjectsQueryResult as ProjectsQueryResult, type index_d$2_QueryProjectWithCollectionInfoRequest as QueryProjectWithCollectionInfoRequest, type index_d$2_QueryProjectWithCollectionInfoResponse as QueryProjectWithCollectionInfoResponse, type index_d$2_QueryProjectWithCollectionInfoResponseNonNullableFields as QueryProjectWithCollectionInfoResponseNonNullableFields, type index_d$2_QueryProjectsOptions as QueryProjectsOptions, type index_d$2_QueryProjectsRequest as QueryProjectsRequest, type index_d$2_QueryProjectsResponse as QueryProjectsResponse, type index_d$2_QueryProjectsResponseNonNullableFields as QueryProjectsResponseNonNullableFields, type index_d$2_QueryProjectsWithCollectionInfoOptions as QueryProjectsWithCollectionInfoOptions, type QueryV2$1 as QueryV2, type QueryV2PagingMethodOneOf$1 as QueryV2PagingMethodOneOf, type RestoreInfo$2 as RestoreInfo, type index_d$2_RestoreProjectFromTrashBinRequest as RestoreProjectFromTrashBinRequest, type index_d$2_RestoreProjectFromTrashBinResponse as RestoreProjectFromTrashBinResponse, type SeoSchema$1 as SeoSchema, type ServiceProvisioned$1 as ServiceProvisioned, type ServiceRemoved$1 as ServiceRemoved, type Settings$1 as Settings, type SiteCreated$1 as SiteCreated, SiteCreatedContext$1 as SiteCreatedContext, type SiteDeleted$1 as SiteDeleted, type SiteHardDeleted$1 as SiteHardDeleted, type SiteMarkedAsTemplate$1 as SiteMarkedAsTemplate, type SiteMarkedAsWixSite$1 as SiteMarkedAsWixSite, type SitePublished$1 as SitePublished, type SiteRenamed$1 as SiteRenamed, type SiteTransferred$1 as SiteTransferred, type SiteUndeleted$1 as SiteUndeleted, type SiteUnpublished$1 as SiteUnpublished, SortOrder$1 as SortOrder, type Sorting$1 as Sorting, State$1 as State, type StudioAssigned$1 as StudioAssigned, type StudioUnassigned$1 as StudioUnassigned, type index_d$2_SyncProjectWithCollectionMappings as SyncProjectWithCollectionMappings, SyncStatus$2 as SyncStatus, type Tag$1 as Tag, type index_d$2_URI as URI, type UnsharpMasking$1 as UnsharpMasking, type index_d$2_UpdateProject as UpdateProject, type UpdateProjectOrderInCollectionIdentifiers$1 as UpdateProjectOrderInCollectionIdentifiers, type UpdateProjectOrderInCollectionRequest$1 as UpdateProjectOrderInCollectionRequest, type UpdateProjectOrderInCollectionResponse$1 as UpdateProjectOrderInCollectionResponse, type UpdateProjectOrderInCollectionResponseNonNullableFields$1 as UpdateProjectOrderInCollectionResponseNonNullableFields, type index_d$2_UpdateProjectRequest as UpdateProjectRequest, type index_d$2_UpdateProjectResponse as UpdateProjectResponse, type index_d$2_UpdateProjectResponseNonNullableFields as UpdateProjectResponseNonNullableFields, type Video$1 as Video, type VideoResolution$1 as VideoResolution, WebhookIdentityType$2 as WebhookIdentityType, type index_d$2__publicOnProjectCreatedType as _publicOnProjectCreatedType, type index_d$2__publicOnProjectDeletedType as _publicOnProjectDeletedType, type index_d$2__publicOnProjectUpdatedType as _publicOnProjectUpdatedType, index_d$2_bulkUpdateProjects as bulkUpdateProjects, index_d$2_createProject as createProject, index_d$2_deleteProject as deleteProject, index_d$2_getProject as getProject, index_d$2_getProjectPageData as getProjectPageData, index_d$2_listProjects as listProjects, index_d$2_onProjectCreated as onProjectCreated, index_d$2_onProjectDeleted as onProjectDeleted, index_d$2_onProjectUpdated as onProjectUpdated, onProjectCreated$1 as publicOnProjectCreated, onProjectDeleted$1 as publicOnProjectDeleted, onProjectUpdated$1 as publicOnProjectUpdated, index_d$2_queryProjects as queryProjects, index_d$2_queryProjectsWithCollectionInfo as queryProjectsWithCollectionInfo, index_d$2_updateProject as updateProject, updateProjectOrderInCollection$2 as updateProjectOrderInCollection };
3957
3957
  }
3958
3958
 
3959
- interface ProjectInCollection {
3959
+ interface ProjectsInCollections {
3960
3960
  /** Collection ID. */
3961
3961
  collectionId?: string;
3962
3962
  /** Project object. */
@@ -4254,7 +4254,7 @@ interface CursorPaging$1 {
4254
4254
  }
4255
4255
  interface QueryProjectInCollectionsResponse {
4256
4256
  /** List of projects in collections. */
4257
- projectInCollections?: ProjectInCollection[];
4257
+ projectInCollections?: ProjectsInCollections[];
4258
4258
  /** Paging metadata. */
4259
4259
  metadata?: PagingMetadataV2$1;
4260
4260
  }
@@ -4286,7 +4286,7 @@ interface UpdateProjectOrderInCollectionRequest {
4286
4286
  }
4287
4287
  interface UpdateProjectOrderInCollectionResponse {
4288
4288
  /** Updated project within the specified collection. */
4289
- projectInCollection?: ProjectInCollection;
4289
+ projectInCollection?: ProjectsInCollections;
4290
4290
  }
4291
4291
  interface ProjectOrderInCollectionUpdatedEvent {
4292
4292
  /** ID of the project to update. */
@@ -4456,13 +4456,13 @@ interface ProjectNonNullableFields {
4456
4456
  url: string;
4457
4457
  seoData?: SeoSchemaNonNullableFields;
4458
4458
  }
4459
- interface ProjectInCollectionNonNullableFields {
4459
+ interface ProjectsInCollectionsNonNullableFields {
4460
4460
  collectionId: string;
4461
4461
  project?: ProjectNonNullableFields;
4462
4462
  }
4463
4463
  interface UpdateProjectOrderInCollectionResponseNonNullableFields {
4464
- project?: ProjectInCollectionNonNullableFields;
4465
- projectInCollection?: ProjectInCollectionNonNullableFields;
4464
+ project?: ProjectsInCollectionsNonNullableFields;
4465
+ projectInCollection?: ProjectsInCollectionsNonNullableFields;
4466
4466
  }
4467
4467
  interface BaseEventMetadata {
4468
4468
  /** App instance ID. */
@@ -4552,10 +4552,10 @@ type index_d$1_Project = Project;
4552
4552
  type index_d$1_ProjectCoverOneOf = ProjectCoverOneOf;
4553
4553
  type index_d$1_ProjectDetail = ProjectDetail;
4554
4554
  type index_d$1_ProjectDetailValueOneOf = ProjectDetailValueOneOf;
4555
- type index_d$1_ProjectInCollection = ProjectInCollection;
4556
4555
  type index_d$1_ProjectInCollectionProjectOrderInCollectionUpdatedEnvelope = ProjectInCollectionProjectOrderInCollectionUpdatedEnvelope;
4557
4556
  type index_d$1_ProjectOrderInCollectionUpdatedEvent = ProjectOrderInCollectionUpdatedEvent;
4558
4557
  type index_d$1_ProjectSource = ProjectSource;
4558
+ type index_d$1_ProjectsInCollections = ProjectsInCollections;
4559
4559
  type index_d$1_QueryProjectInCollectionsRequest = QueryProjectInCollectionsRequest;
4560
4560
  type index_d$1_QueryProjectInCollectionsResponse = QueryProjectInCollectionsResponse;
4561
4561
  type index_d$1_QueryV2 = QueryV2;
@@ -4577,7 +4577,7 @@ type index_d$1__publicOnProjectInCollectionProjectOrderInCollectionUpdatedEventT
4577
4577
  declare const index_d$1_onProjectInCollectionProjectOrderInCollectionUpdatedEvent: typeof onProjectInCollectionProjectOrderInCollectionUpdatedEvent;
4578
4578
  declare const index_d$1_updateProjectOrderInCollection: typeof updateProjectOrderInCollection;
4579
4579
  declare namespace index_d$1 {
4580
- export { type ActionEvent$1 as ActionEvent, type index_d$1_BaseEventMetadata as BaseEventMetadata, type CursorPaging$1 as CursorPaging, type Cursors$1 as Cursors, type index_d$1_DetailsLink as DetailsLink, type DomainEvent$1 as DomainEvent, type DomainEventBodyOneOf$1 as DomainEventBodyOneOf, type EntityCreatedEvent$1 as EntityCreatedEvent, type EntityDeletedEvent$1 as EntityDeletedEvent, type EntityUpdatedEvent$1 as EntityUpdatedEvent, type index_d$1_EventMetadata as EventMetadata, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, type index_d$1_Image as Image, index_d$1_ImageType as ImageType, type index_d$1_Keyword as Keyword, type MessageEnvelope$1 as MessageEnvelope, type index_d$1_Paging as Paging, type PagingMetadataV2$1 as PagingMetadataV2, type index_d$1_Point as Point, type index_d$1_Project as Project, type index_d$1_ProjectCoverOneOf as ProjectCoverOneOf, type index_d$1_ProjectDetail as ProjectDetail, type index_d$1_ProjectDetailValueOneOf as ProjectDetailValueOneOf, type index_d$1_ProjectInCollection as ProjectInCollection, type index_d$1_ProjectInCollectionProjectOrderInCollectionUpdatedEnvelope as ProjectInCollectionProjectOrderInCollectionUpdatedEnvelope, type index_d$1_ProjectOrderInCollectionUpdatedEvent as ProjectOrderInCollectionUpdatedEvent, type index_d$1_ProjectSource as ProjectSource, type index_d$1_QueryProjectInCollectionsRequest as QueryProjectInCollectionsRequest, type index_d$1_QueryProjectInCollectionsResponse as QueryProjectInCollectionsResponse, type index_d$1_QueryV2 as QueryV2, type index_d$1_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type RestoreInfo$1 as RestoreInfo, type index_d$1_SeoSchema as SeoSchema, type index_d$1_Settings as Settings, index_d$1_SortOrder as SortOrder, type index_d$1_Sorting as Sorting, SyncStatus$1 as SyncStatus, type index_d$1_Tag as Tag, type index_d$1_UnsharpMasking as UnsharpMasking, type index_d$1_UpdateProjectOrderInCollectionIdentifiers as UpdateProjectOrderInCollectionIdentifiers, type index_d$1_UpdateProjectOrderInCollectionRequest as UpdateProjectOrderInCollectionRequest, type index_d$1_UpdateProjectOrderInCollectionResponse as UpdateProjectOrderInCollectionResponse, type index_d$1_UpdateProjectOrderInCollectionResponseNonNullableFields as UpdateProjectOrderInCollectionResponseNonNullableFields, type index_d$1_Video as Video, type index_d$1_VideoResolution as VideoResolution, WebhookIdentityType$1 as WebhookIdentityType, type index_d$1__publicOnProjectInCollectionProjectOrderInCollectionUpdatedEventType as _publicOnProjectInCollectionProjectOrderInCollectionUpdatedEventType, index_d$1_onProjectInCollectionProjectOrderInCollectionUpdatedEvent as onProjectInCollectionProjectOrderInCollectionUpdatedEvent, onProjectInCollectionProjectOrderInCollectionUpdatedEvent$1 as publicOnProjectInCollectionProjectOrderInCollectionUpdatedEvent, index_d$1_updateProjectOrderInCollection as updateProjectOrderInCollection };
4580
+ export { type ActionEvent$1 as ActionEvent, type index_d$1_BaseEventMetadata as BaseEventMetadata, type CursorPaging$1 as CursorPaging, type Cursors$1 as Cursors, type index_d$1_DetailsLink as DetailsLink, type DomainEvent$1 as DomainEvent, type DomainEventBodyOneOf$1 as DomainEventBodyOneOf, type EntityCreatedEvent$1 as EntityCreatedEvent, type EntityDeletedEvent$1 as EntityDeletedEvent, type EntityUpdatedEvent$1 as EntityUpdatedEvent, type index_d$1_EventMetadata as EventMetadata, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, type index_d$1_Image as Image, index_d$1_ImageType as ImageType, type index_d$1_Keyword as Keyword, type MessageEnvelope$1 as MessageEnvelope, type index_d$1_Paging as Paging, type PagingMetadataV2$1 as PagingMetadataV2, type index_d$1_Point as Point, type index_d$1_Project as Project, type index_d$1_ProjectCoverOneOf as ProjectCoverOneOf, type index_d$1_ProjectDetail as ProjectDetail, type index_d$1_ProjectDetailValueOneOf as ProjectDetailValueOneOf, type index_d$1_ProjectInCollectionProjectOrderInCollectionUpdatedEnvelope as ProjectInCollectionProjectOrderInCollectionUpdatedEnvelope, type index_d$1_ProjectOrderInCollectionUpdatedEvent as ProjectOrderInCollectionUpdatedEvent, type index_d$1_ProjectSource as ProjectSource, type index_d$1_ProjectsInCollections as ProjectsInCollections, type index_d$1_QueryProjectInCollectionsRequest as QueryProjectInCollectionsRequest, type index_d$1_QueryProjectInCollectionsResponse as QueryProjectInCollectionsResponse, type index_d$1_QueryV2 as QueryV2, type index_d$1_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type RestoreInfo$1 as RestoreInfo, type index_d$1_SeoSchema as SeoSchema, type index_d$1_Settings as Settings, index_d$1_SortOrder as SortOrder, type index_d$1_Sorting as Sorting, SyncStatus$1 as SyncStatus, type index_d$1_Tag as Tag, type index_d$1_UnsharpMasking as UnsharpMasking, type index_d$1_UpdateProjectOrderInCollectionIdentifiers as UpdateProjectOrderInCollectionIdentifiers, type index_d$1_UpdateProjectOrderInCollectionRequest as UpdateProjectOrderInCollectionRequest, type index_d$1_UpdateProjectOrderInCollectionResponse as UpdateProjectOrderInCollectionResponse, type index_d$1_UpdateProjectOrderInCollectionResponseNonNullableFields as UpdateProjectOrderInCollectionResponseNonNullableFields, type index_d$1_Video as Video, type index_d$1_VideoResolution as VideoResolution, WebhookIdentityType$1 as WebhookIdentityType, type index_d$1__publicOnProjectInCollectionProjectOrderInCollectionUpdatedEventType as _publicOnProjectInCollectionProjectOrderInCollectionUpdatedEventType, index_d$1_onProjectInCollectionProjectOrderInCollectionUpdatedEvent as onProjectInCollectionProjectOrderInCollectionUpdatedEvent, onProjectInCollectionProjectOrderInCollectionUpdatedEvent$1 as publicOnProjectInCollectionProjectOrderInCollectionUpdatedEvent, index_d$1_updateProjectOrderInCollection as updateProjectOrderInCollection };
4581
4581
  }
4582
4582
 
4583
4583
  interface SyncedProject {
@@ -2068,9 +2068,9 @@ interface UpdateProjectOrderInCollectionRequest$3 {
2068
2068
  }
2069
2069
  interface UpdateProjectOrderInCollectionResponse$3 {
2070
2070
  /** Updated project within the specified collection. */
2071
- projectInCollection?: ProjectInCollection$3;
2071
+ projectInCollection?: ProjectsInCollections$3;
2072
2072
  }
2073
- interface ProjectInCollection$3 {
2073
+ interface ProjectsInCollections$3 {
2074
2074
  /** Collection ID. */
2075
2075
  collectionId?: string;
2076
2076
  /** Project object. */
@@ -2095,7 +2095,7 @@ interface QueryProjectWithCollectionInfoRequest$1 {
2095
2095
  }
2096
2096
  interface QueryProjectWithCollectionInfoResponse$1 {
2097
2097
  /** The retrieved Projects in Collection */
2098
- projects?: ProjectInCollection$3[];
2098
+ projects?: ProjectsInCollections$3[];
2099
2099
  /** Paging metadata */
2100
2100
  metadata?: PagingMetadataV2$3;
2101
2101
  }
@@ -2220,16 +2220,16 @@ interface DeleteProjectResponseNonNullableFields$1 {
2220
2220
  interface QueryProjectsResponseNonNullableFields$1 {
2221
2221
  projects: ProjectNonNullableFields$3[];
2222
2222
  }
2223
- interface ProjectInCollectionNonNullableFields$3 {
2223
+ interface ProjectsInCollectionsNonNullableFields$3 {
2224
2224
  collectionId: string;
2225
2225
  project?: ProjectNonNullableFields$3;
2226
2226
  }
2227
2227
  interface UpdateProjectOrderInCollectionResponseNonNullableFields$3 {
2228
- project?: ProjectInCollectionNonNullableFields$3;
2229
- projectInCollection?: ProjectInCollectionNonNullableFields$3;
2228
+ project?: ProjectsInCollectionsNonNullableFields$3;
2229
+ projectInCollection?: ProjectsInCollectionsNonNullableFields$3;
2230
2230
  }
2231
2231
  interface QueryProjectWithCollectionInfoResponseNonNullableFields$1 {
2232
- projects: ProjectInCollectionNonNullableFields$3[];
2232
+ projects: ProjectsInCollectionsNonNullableFields$3[];
2233
2233
  }
2234
2234
 
2235
2235
  interface Project$2 extends ProjectCoverOneOf$2 {
@@ -2606,9 +2606,9 @@ interface UpdateProjectOrderInCollectionRequest$2 {
2606
2606
  }
2607
2607
  interface UpdateProjectOrderInCollectionResponse$2 {
2608
2608
  /** Updated project within the specified collection. */
2609
- projectInCollection?: ProjectInCollection$2;
2609
+ projectInCollection?: ProjectsInCollections$2;
2610
2610
  }
2611
- interface ProjectInCollection$2 {
2611
+ interface ProjectsInCollections$2 {
2612
2612
  /** Collection ID. */
2613
2613
  collectionId?: string;
2614
2614
  /** Project object. */
@@ -2633,7 +2633,7 @@ interface QueryProjectWithCollectionInfoRequest {
2633
2633
  }
2634
2634
  interface QueryProjectWithCollectionInfoResponse {
2635
2635
  /** The retrieved Projects in Collection */
2636
- projects?: ProjectInCollection$2[];
2636
+ projects?: ProjectsInCollections$2[];
2637
2637
  /** Paging metadata */
2638
2638
  metadata?: PagingMetadataV2$2;
2639
2639
  }
@@ -2736,16 +2736,16 @@ interface DeleteProjectResponseNonNullableFields {
2736
2736
  interface QueryProjectsResponseNonNullableFields {
2737
2737
  projects: ProjectNonNullableFields$2[];
2738
2738
  }
2739
- interface ProjectInCollectionNonNullableFields$2 {
2739
+ interface ProjectsInCollectionsNonNullableFields$2 {
2740
2740
  collectionId: string;
2741
2741
  project?: ProjectNonNullableFields$2;
2742
2742
  }
2743
2743
  interface UpdateProjectOrderInCollectionResponseNonNullableFields$2 {
2744
- project?: ProjectInCollectionNonNullableFields$2;
2745
- projectInCollection?: ProjectInCollectionNonNullableFields$2;
2744
+ project?: ProjectsInCollectionsNonNullableFields$2;
2745
+ projectInCollection?: ProjectsInCollectionsNonNullableFields$2;
2746
2746
  }
2747
2747
  interface QueryProjectWithCollectionInfoResponseNonNullableFields {
2748
- projects: ProjectInCollectionNonNullableFields$2[];
2748
+ projects: ProjectsInCollectionsNonNullableFields$2[];
2749
2749
  }
2750
2750
 
2751
2751
  type __PublicMethodMetaInfo$2<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
@@ -2794,7 +2794,7 @@ declare namespace meta$2 {
2794
2794
  export { type __PublicMethodMetaInfo$2 as __PublicMethodMetaInfo, meta$2_bulkUpdateProjects as bulkUpdateProjects, meta$2_createProject as createProject, meta$2_deleteProject as deleteProject, meta$2_getProject as getProject, meta$2_getProjectPageData as getProjectPageData, meta$2_listProjects as listProjects, meta$2_queryProjects as queryProjects, meta$2_queryProjectsWithCollectionInfo as queryProjectsWithCollectionInfo, meta$2_updateProject as updateProject, updateProjectOrderInCollection$1 as updateProjectOrderInCollection };
2795
2795
  }
2796
2796
 
2797
- interface ProjectInCollection$1 {
2797
+ interface ProjectsInCollections$1 {
2798
2798
  /** Collection ID. */
2799
2799
  collectionId?: string;
2800
2800
  /** Project object. */
@@ -3034,7 +3034,7 @@ interface UpdateProjectOrderInCollectionRequest$1 {
3034
3034
  }
3035
3035
  interface UpdateProjectOrderInCollectionResponse$1 {
3036
3036
  /** Updated project within the specified collection. */
3037
- projectInCollection?: ProjectInCollection$1;
3037
+ projectInCollection?: ProjectsInCollections$1;
3038
3038
  }
3039
3039
  interface CommonImageNonNullableFields {
3040
3040
  id: string;
@@ -3108,16 +3108,16 @@ interface ProjectNonNullableFields$1 {
3108
3108
  url?: PageUrlV2NonNullableFields;
3109
3109
  seoData?: SeoSchemaNonNullableFields$1;
3110
3110
  }
3111
- interface ProjectInCollectionNonNullableFields$1 {
3111
+ interface ProjectsInCollectionsNonNullableFields$1 {
3112
3112
  collectionId: string;
3113
3113
  project?: ProjectNonNullableFields$1;
3114
3114
  }
3115
3115
  interface UpdateProjectOrderInCollectionResponseNonNullableFields$1 {
3116
- project?: ProjectInCollectionNonNullableFields$1;
3117
- projectInCollection?: ProjectInCollectionNonNullableFields$1;
3116
+ project?: ProjectsInCollectionsNonNullableFields$1;
3117
+ projectInCollection?: ProjectsInCollectionsNonNullableFields$1;
3118
3118
  }
3119
3119
 
3120
- interface ProjectInCollection {
3120
+ interface ProjectsInCollections {
3121
3121
  /** Collection ID. */
3122
3122
  collectionId?: string;
3123
3123
  /** Project object. */
@@ -3308,7 +3308,7 @@ interface UpdateProjectOrderInCollectionRequest {
3308
3308
  }
3309
3309
  interface UpdateProjectOrderInCollectionResponse {
3310
3310
  /** Updated project within the specified collection. */
3311
- projectInCollection?: ProjectInCollection;
3311
+ projectInCollection?: ProjectsInCollections;
3312
3312
  }
3313
3313
  interface PointNonNullableFields {
3314
3314
  x: number;
@@ -3360,13 +3360,13 @@ interface ProjectNonNullableFields {
3360
3360
  url: string;
3361
3361
  seoData?: SeoSchemaNonNullableFields;
3362
3362
  }
3363
- interface ProjectInCollectionNonNullableFields {
3363
+ interface ProjectsInCollectionsNonNullableFields {
3364
3364
  collectionId: string;
3365
3365
  project?: ProjectNonNullableFields;
3366
3366
  }
3367
3367
  interface UpdateProjectOrderInCollectionResponseNonNullableFields {
3368
- project?: ProjectInCollectionNonNullableFields;
3369
- projectInCollection?: ProjectInCollectionNonNullableFields;
3368
+ project?: ProjectsInCollectionsNonNullableFields;
3369
+ projectInCollection?: ProjectsInCollectionsNonNullableFields;
3370
3370
  }
3371
3371
 
3372
3372
  type __PublicMethodMetaInfo$1<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {