@wix/portfolio 1.0.65 → 1.0.67

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.65",
3
+ "version": "1.0.67",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -20,9 +20,9 @@
20
20
  "dependencies": {
21
21
  "@wix/portfolio_collections": "1.0.13",
22
22
  "@wix/portfolio_portfolio-settings": "1.0.0",
23
- "@wix/portfolio_project-in-collections": "1.0.13",
24
- "@wix/portfolio_project-items": "1.0.17",
25
- "@wix/portfolio_projects": "1.0.16"
23
+ "@wix/portfolio_project-in-collections": "1.0.14",
24
+ "@wix/portfolio_project-items": "1.0.18",
25
+ "@wix/portfolio_projects": "1.0.18"
26
26
  },
27
27
  "devDependencies": {
28
28
  "@wix/sdk": "https://cdn.dev.wixpress.com/@wix/sdk/02e8069ab2fd783e0e6a080fc7d590e76cb26ab93c8389574286305b.tar.gz",
@@ -47,5 +47,5 @@
47
47
  "fqdn": ""
48
48
  }
49
49
  },
50
- "falconPackageHash": "bd0dedd8b16f11d1b6202d007393dc2d4650677ec9fb499f8a859e17"
50
+ "falconPackageHash": "31c6e5ca4f073d6945e876401d8ca8aa885bb5a3bf2c038a233e40cf"
51
51
  }
@@ -1171,6 +1171,7 @@ interface Project$1 extends ProjectCoverOneOf$1 {
1171
1171
  collectionIds?: string[];
1172
1172
  /** Custom project details */
1173
1173
  details?: ProjectDetail$1[];
1174
+ /** Project's slug */
1174
1175
  slug?: string | null;
1175
1176
  /**
1176
1177
  * Represents the time this Project was created
@@ -1187,6 +1188,7 @@ interface Project$1 extends ProjectCoverOneOf$1 {
1187
1188
  * @readonly
1188
1189
  */
1189
1190
  url?: string;
1191
+ /** SEO data for the project */
1190
1192
  seoData?: SeoSchema$1;
1191
1193
  /**
1192
1194
  * indicates if the project is synced from external platform (via integration page) and therefore will be updated from the external platform on daily basis
@@ -1221,12 +1223,14 @@ interface Video$1 {
1221
1223
  }
1222
1224
  interface ProjectDetail$1 extends ProjectDetailValueOneOf$1 {
1223
1225
  text?: string;
1226
+ /** Details link */
1224
1227
  link?: DetailsLink$1;
1225
1228
  label?: string;
1226
1229
  }
1227
1230
  /** @oneof */
1228
1231
  interface ProjectDetailValueOneOf$1 {
1229
1232
  text?: string;
1233
+ /** Details link */
1230
1234
  link?: DetailsLink$1;
1231
1235
  }
1232
1236
  interface DetailsLink$1 {
@@ -1366,6 +1370,7 @@ interface Cursors$1 {
1366
1370
  prev?: string | null;
1367
1371
  }
1368
1372
  interface MaskedProject {
1373
+ /** Project to be updated */
1369
1374
  project?: Project$1;
1370
1375
  }
1371
1376
  interface BulkUpdateProjectsResponse {
@@ -1377,6 +1382,7 @@ interface BulkUpdateProjectsResponse {
1377
1382
  interface BulkUpdateProjectsResult {
1378
1383
  /** Holds information about an item in bulk update - id, index in original request array, action successful, error (if failed). */
1379
1384
  itemMetadata?: ItemMetadata;
1385
+ /** Updated Project */
1380
1386
  project?: Project$1;
1381
1387
  }
1382
1388
  interface ItemMetadata {
@@ -1745,11 +1751,13 @@ interface GetProjectPageDataIdentifiers {
1745
1751
  projectSlug: string;
1746
1752
  }
1747
1753
  interface GetProjectOptions {
1754
+ /** Include page url */
1748
1755
  includePageUrl?: boolean | null;
1749
1756
  }
1750
1757
  interface ListProjectsOptions {
1751
1758
  /** Projects limit per response is maximum 100, In the first request the cursor is None */
1752
1759
  paging?: CursorPaging;
1760
+ /** Include page url */
1753
1761
  includePageUrl?: boolean | null;
1754
1762
  }
1755
1763
  interface UpdateProject {
@@ -1775,6 +1783,7 @@ interface UpdateProject {
1775
1783
  collectionIds?: string[];
1776
1784
  /** Custom project details */
1777
1785
  details?: ProjectDetail$1[];
1786
+ /** Project's slug */
1778
1787
  slug?: string | null;
1779
1788
  /**
1780
1789
  * Represents the time this Project was created
@@ -1791,6 +1800,7 @@ interface UpdateProject {
1791
1800
  * @readonly
1792
1801
  */
1793
1802
  url?: string;
1803
+ /** SEO data for the project */
1794
1804
  seoData?: SeoSchema$1;
1795
1805
  /**
1796
1806
  * indicates if the project is synced from external platform (via integration page) and therefore will be updated from the external platform on daily basis
@@ -1801,9 +1811,11 @@ interface UpdateProject {
1801
1811
  interface BulkUpdateProjectsOptions {
1802
1812
  /** projects to be updated. */
1803
1813
  projects?: MaskedProject[];
1814
+ /** Flag to return full entity in response */
1804
1815
  returnFullEntity?: boolean | null;
1805
1816
  }
1806
1817
  interface QueryProjectsOptions {
1818
+ /** Include page url */
1807
1819
  includePageUrl?: boolean | null | undefined;
1808
1820
  }
1809
1821
  interface QueryCursorResult$1 {
@@ -1895,6 +1907,7 @@ interface UpdateProjectOrderInCollectionIdentifiers$1 {
1895
1907
  collectionId: string;
1896
1908
  }
1897
1909
  interface QueryProjectsWithCollectionInfoOptions {
1910
+ /** Include page url */
1898
1911
  includePageUrl?: boolean | null;
1899
1912
  }
1900
1913
 
@@ -2070,6 +2083,7 @@ interface Project extends ProjectCoverOneOf {
2070
2083
  collectionIds?: string[];
2071
2084
  /** Custom project details */
2072
2085
  details?: ProjectDetail[];
2086
+ /** Project's slug */
2073
2087
  slug?: string | null;
2074
2088
  /**
2075
2089
  * Represents the time this Project was created
@@ -2086,6 +2100,7 @@ interface Project extends ProjectCoverOneOf {
2086
2100
  * @readonly
2087
2101
  */
2088
2102
  url?: string;
2103
+ /** SEO data for the project */
2089
2104
  seoData?: SeoSchema;
2090
2105
  /**
2091
2106
  * indicates if the project is synced from external platform (via integration page) and therefore will be updated from the external platform on daily basis
@@ -2120,12 +2135,14 @@ interface Video {
2120
2135
  }
2121
2136
  interface ProjectDetail extends ProjectDetailValueOneOf {
2122
2137
  text?: string;
2138
+ /** Details link */
2123
2139
  link?: DetailsLink;
2124
2140
  label?: string;
2125
2141
  }
2126
2142
  /** @oneof */
2127
2143
  interface ProjectDetailValueOneOf {
2128
2144
  text?: string;
2145
+ /** Details link */
2129
2146
  link?: DetailsLink;
2130
2147
  }
2131
2148
  interface DetailsLink {
@@ -1310,6 +1310,9 @@ interface DomainEventBodyOneOf$2 {
1310
1310
  interface EntityCreatedEvent$2 {
1311
1311
  entity?: string;
1312
1312
  }
1313
+ interface UndeleteInfo {
1314
+ deletedDate?: Date;
1315
+ }
1313
1316
  interface EntityUpdatedEvent$2 {
1314
1317
  /**
1315
1318
  * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
@@ -2052,6 +2055,7 @@ type index_d$2_QueryProjectItemsResponse = QueryProjectItemsResponse;
2052
2055
  type index_d$2_Tags = Tags;
2053
2056
  type index_d$2_Type = Type;
2054
2057
  declare const index_d$2_Type: typeof Type;
2058
+ type index_d$2_UndeleteInfo = UndeleteInfo;
2055
2059
  type index_d$2_UpdateProjectItem = UpdateProjectItem;
2056
2060
  type index_d$2_UpdateProjectItemRequest = UpdateProjectItemRequest;
2057
2061
  type index_d$2_UpdateProjectItemResponse = UpdateProjectItemResponse;
@@ -2070,7 +2074,7 @@ declare const index_d$2_onProjectItemDeleted: typeof onProjectItemDeleted;
2070
2074
  declare const index_d$2_onProjectItemUpdated: typeof onProjectItemUpdated;
2071
2075
  declare const index_d$2_updateProjectItem: typeof updateProjectItem;
2072
2076
  declare namespace index_d$2 {
2073
- export { type ActionEvent$2 as ActionEvent, type App$1 as App, type ApplicationError$1 as ApplicationError, type BaseEventMetadata$2 as BaseEventMetadata, type BulkActionMetadata$1 as BulkActionMetadata, type index_d$2_BulkCreateProjectItemResult as BulkCreateProjectItemResult, type index_d$2_BulkCreateProjectItemsOptions as BulkCreateProjectItemsOptions, type index_d$2_BulkCreateProjectItemsRequest as BulkCreateProjectItemsRequest, type index_d$2_BulkCreateProjectItemsResponse as BulkCreateProjectItemsResponse, type index_d$2_BulkCreateProjectItemsResponseNonNullableFields as BulkCreateProjectItemsResponseNonNullableFields, type index_d$2_BulkDeleteProjectItemResult as BulkDeleteProjectItemResult, type index_d$2_BulkDeleteProjectItemsOptions as BulkDeleteProjectItemsOptions, type index_d$2_BulkDeleteProjectItemsRequest as BulkDeleteProjectItemsRequest, type index_d$2_BulkDeleteProjectItemsResponse as BulkDeleteProjectItemsResponse, type index_d$2_BulkDeleteProjectItemsResponseNonNullableFields as BulkDeleteProjectItemsResponseNonNullableFields, type index_d$2_BulkUpdateProjectItemResult as BulkUpdateProjectItemResult, type index_d$2_BulkUpdateProjectItemsOptions as BulkUpdateProjectItemsOptions, type index_d$2_BulkUpdateProjectItemsRequest as BulkUpdateProjectItemsRequest, type index_d$2_BulkUpdateProjectItemsResponse as BulkUpdateProjectItemsResponse, type index_d$2_BulkUpdateProjectItemsResponseNonNullableFields as BulkUpdateProjectItemsResponseNonNullableFields, type index_d$2_CreateProjectGalleryRequest as CreateProjectGalleryRequest, type index_d$2_CreateProjectGalleryResponse as CreateProjectGalleryResponse, type index_d$2_CreateProjectItemRequest as CreateProjectItemRequest, type index_d$2_CreateProjectItemResponse as CreateProjectItemResponse, type index_d$2_CreateProjectItemResponseNonNullableFields as CreateProjectItemResponseNonNullableFields, type CursorPaging$2 as CursorPaging, type Cursors$2 as Cursors, type index_d$2_DeleteProjectItemRequest as DeleteProjectItemRequest, type index_d$2_DeleteProjectItemResponse as DeleteProjectItemResponse, type index_d$2_DeleteProjectItemResponseNonNullableFields as DeleteProjectItemResponseNonNullableFields, type DeletedProjectRestored$1 as DeletedProjectRestored, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type index_d$2_DuplicateProjectItemsOptions as DuplicateProjectItemsOptions, type index_d$2_DuplicateProjectItemsRequest as DuplicateProjectItemsRequest, type index_d$2_DuplicateProjectItemsResponse as DuplicateProjectItemsResponse, type index_d$2_DuplicateProjectItemsResponseNonNullableFields as DuplicateProjectItemsResponseNonNullableFields, type Empty$1 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type EventMetadata$2 as EventMetadata, type File$1 as File, type index_d$2_GenerateTokenForProjectItemsRequest as GenerateTokenForProjectItemsRequest, type index_d$2_GenerateTokenForProjectItemsResponse as GenerateTokenForProjectItemsResponse, type index_d$2_GenerateTokenForProjectItemsResponseNonNullableFields as GenerateTokenForProjectItemsResponseNonNullableFields, type index_d$2_GetProjectItemRequest as GetProjectItemRequest, type index_d$2_GetProjectItemResponse as GetProjectItemResponse, type index_d$2_GetProjectItemResponseNonNullableFields as GetProjectItemResponseNonNullableFields, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type Image$2 as Image, ImageType$2 as ImageType, type InvalidateCache$1 as InvalidateCache, type InvalidateCacheGetByOneOf$1 as InvalidateCacheGetByOneOf, type index_d$2_Item as Item, type ItemMetadata$1 as ItemMetadata, type index_d$2_ItemMetadataOneOf as ItemMetadataOneOf, type index_d$2_Link as Link, type index_d$2_ListProjectItemsOptions as ListProjectItemsOptions, type index_d$2_ListProjectItemsRequest as ListProjectItemsRequest, type index_d$2_ListProjectItemsResponse as ListProjectItemsResponse, type index_d$2_ListProjectItemsResponseNonNullableFields as ListProjectItemsResponseNonNullableFields, type index_d$2_MaskedItem as MaskedItem, type MessageEnvelope$2 as MessageEnvelope, type Page$1 as Page, type Paging$2 as Paging, type PagingMetadataV2$2 as PagingMetadataV2, type Point$2 as Point, type index_d$2_ProjectItemCreatedEnvelope as ProjectItemCreatedEnvelope, type index_d$2_ProjectItemDeletedEnvelope as ProjectItemDeletedEnvelope, type index_d$2_ProjectItemMediaToken as ProjectItemMediaToken, type index_d$2_ProjectItemUpdatedEnvelope as ProjectItemUpdatedEnvelope, type index_d$2_QueryProjectItemsRequest as QueryProjectItemsRequest, type index_d$2_QueryProjectItemsResponse as QueryProjectItemsResponse, type QueryV2$2 as QueryV2, type QueryV2PagingMethodOneOf$2 as QueryV2PagingMethodOneOf, SortOrder$2 as SortOrder, type Sorting$2 as Sorting, type index_d$2_Tags as Tags, index_d$2_Type as Type, type URI$1 as URI, type UnsharpMasking$2 as UnsharpMasking, type index_d$2_UpdateProjectItem as UpdateProjectItem, type index_d$2_UpdateProjectItemRequest as UpdateProjectItemRequest, type index_d$2_UpdateProjectItemResponse as UpdateProjectItemResponse, type index_d$2_UpdateProjectItemResponseNonNullableFields as UpdateProjectItemResponseNonNullableFields, type Video$2 as Video, type VideoResolution$2 as VideoResolution, WebhookIdentityType$2 as WebhookIdentityType, __metadata$2 as __metadata, index_d$2_bulkCreateProjectItems as bulkCreateProjectItems, index_d$2_bulkDeleteProjectItems as bulkDeleteProjectItems, index_d$2_bulkUpdateProjectItems as bulkUpdateProjectItems, index_d$2_createProjectItem as createProjectItem, index_d$2_deleteProjectItem as deleteProjectItem, index_d$2_duplicateProjectItems as duplicateProjectItems, index_d$2_generateTokenForProjectItems as generateTokenForProjectItems, index_d$2_getProjectItem as getProjectItem, index_d$2_listProjectItems as listProjectItems, index_d$2_onProjectItemCreated as onProjectItemCreated, index_d$2_onProjectItemDeleted as onProjectItemDeleted, index_d$2_onProjectItemUpdated as onProjectItemUpdated, index_d$2_updateProjectItem as updateProjectItem };
2077
+ export { type ActionEvent$2 as ActionEvent, type App$1 as App, type ApplicationError$1 as ApplicationError, type BaseEventMetadata$2 as BaseEventMetadata, type BulkActionMetadata$1 as BulkActionMetadata, type index_d$2_BulkCreateProjectItemResult as BulkCreateProjectItemResult, type index_d$2_BulkCreateProjectItemsOptions as BulkCreateProjectItemsOptions, type index_d$2_BulkCreateProjectItemsRequest as BulkCreateProjectItemsRequest, type index_d$2_BulkCreateProjectItemsResponse as BulkCreateProjectItemsResponse, type index_d$2_BulkCreateProjectItemsResponseNonNullableFields as BulkCreateProjectItemsResponseNonNullableFields, type index_d$2_BulkDeleteProjectItemResult as BulkDeleteProjectItemResult, type index_d$2_BulkDeleteProjectItemsOptions as BulkDeleteProjectItemsOptions, type index_d$2_BulkDeleteProjectItemsRequest as BulkDeleteProjectItemsRequest, type index_d$2_BulkDeleteProjectItemsResponse as BulkDeleteProjectItemsResponse, type index_d$2_BulkDeleteProjectItemsResponseNonNullableFields as BulkDeleteProjectItemsResponseNonNullableFields, type index_d$2_BulkUpdateProjectItemResult as BulkUpdateProjectItemResult, type index_d$2_BulkUpdateProjectItemsOptions as BulkUpdateProjectItemsOptions, type index_d$2_BulkUpdateProjectItemsRequest as BulkUpdateProjectItemsRequest, type index_d$2_BulkUpdateProjectItemsResponse as BulkUpdateProjectItemsResponse, type index_d$2_BulkUpdateProjectItemsResponseNonNullableFields as BulkUpdateProjectItemsResponseNonNullableFields, type index_d$2_CreateProjectGalleryRequest as CreateProjectGalleryRequest, type index_d$2_CreateProjectGalleryResponse as CreateProjectGalleryResponse, type index_d$2_CreateProjectItemRequest as CreateProjectItemRequest, type index_d$2_CreateProjectItemResponse as CreateProjectItemResponse, type index_d$2_CreateProjectItemResponseNonNullableFields as CreateProjectItemResponseNonNullableFields, type CursorPaging$2 as CursorPaging, type Cursors$2 as Cursors, type index_d$2_DeleteProjectItemRequest as DeleteProjectItemRequest, type index_d$2_DeleteProjectItemResponse as DeleteProjectItemResponse, type index_d$2_DeleteProjectItemResponseNonNullableFields as DeleteProjectItemResponseNonNullableFields, type DeletedProjectRestored$1 as DeletedProjectRestored, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type index_d$2_DuplicateProjectItemsOptions as DuplicateProjectItemsOptions, type index_d$2_DuplicateProjectItemsRequest as DuplicateProjectItemsRequest, type index_d$2_DuplicateProjectItemsResponse as DuplicateProjectItemsResponse, type index_d$2_DuplicateProjectItemsResponseNonNullableFields as DuplicateProjectItemsResponseNonNullableFields, type Empty$1 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type EventMetadata$2 as EventMetadata, type File$1 as File, type index_d$2_GenerateTokenForProjectItemsRequest as GenerateTokenForProjectItemsRequest, type index_d$2_GenerateTokenForProjectItemsResponse as GenerateTokenForProjectItemsResponse, type index_d$2_GenerateTokenForProjectItemsResponseNonNullableFields as GenerateTokenForProjectItemsResponseNonNullableFields, type index_d$2_GetProjectItemRequest as GetProjectItemRequest, type index_d$2_GetProjectItemResponse as GetProjectItemResponse, type index_d$2_GetProjectItemResponseNonNullableFields as GetProjectItemResponseNonNullableFields, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type Image$2 as Image, ImageType$2 as ImageType, type InvalidateCache$1 as InvalidateCache, type InvalidateCacheGetByOneOf$1 as InvalidateCacheGetByOneOf, type index_d$2_Item as Item, type ItemMetadata$1 as ItemMetadata, type index_d$2_ItemMetadataOneOf as ItemMetadataOneOf, type index_d$2_Link as Link, type index_d$2_ListProjectItemsOptions as ListProjectItemsOptions, type index_d$2_ListProjectItemsRequest as ListProjectItemsRequest, type index_d$2_ListProjectItemsResponse as ListProjectItemsResponse, type index_d$2_ListProjectItemsResponseNonNullableFields as ListProjectItemsResponseNonNullableFields, type index_d$2_MaskedItem as MaskedItem, type MessageEnvelope$2 as MessageEnvelope, type Page$1 as Page, type Paging$2 as Paging, type PagingMetadataV2$2 as PagingMetadataV2, type Point$2 as Point, type index_d$2_ProjectItemCreatedEnvelope as ProjectItemCreatedEnvelope, type index_d$2_ProjectItemDeletedEnvelope as ProjectItemDeletedEnvelope, type index_d$2_ProjectItemMediaToken as ProjectItemMediaToken, type index_d$2_ProjectItemUpdatedEnvelope as ProjectItemUpdatedEnvelope, type index_d$2_QueryProjectItemsRequest as QueryProjectItemsRequest, type index_d$2_QueryProjectItemsResponse as QueryProjectItemsResponse, type QueryV2$2 as QueryV2, type QueryV2PagingMethodOneOf$2 as QueryV2PagingMethodOneOf, SortOrder$2 as SortOrder, type Sorting$2 as Sorting, type index_d$2_Tags as Tags, index_d$2_Type as Type, type URI$1 as URI, type index_d$2_UndeleteInfo as UndeleteInfo, type UnsharpMasking$2 as UnsharpMasking, type index_d$2_UpdateProjectItem as UpdateProjectItem, type index_d$2_UpdateProjectItemRequest as UpdateProjectItemRequest, type index_d$2_UpdateProjectItemResponse as UpdateProjectItemResponse, type index_d$2_UpdateProjectItemResponseNonNullableFields as UpdateProjectItemResponseNonNullableFields, type Video$2 as Video, type VideoResolution$2 as VideoResolution, WebhookIdentityType$2 as WebhookIdentityType, __metadata$2 as __metadata, index_d$2_bulkCreateProjectItems as bulkCreateProjectItems, index_d$2_bulkDeleteProjectItems as bulkDeleteProjectItems, index_d$2_bulkUpdateProjectItems as bulkUpdateProjectItems, index_d$2_createProjectItem as createProjectItem, index_d$2_deleteProjectItem as deleteProjectItem, index_d$2_duplicateProjectItems as duplicateProjectItems, index_d$2_generateTokenForProjectItems as generateTokenForProjectItems, index_d$2_getProjectItem as getProjectItem, index_d$2_listProjectItems as listProjectItems, index_d$2_onProjectItemCreated as onProjectItemCreated, index_d$2_onProjectItemDeleted as onProjectItemDeleted, index_d$2_onProjectItemUpdated as onProjectItemUpdated, index_d$2_updateProjectItem as updateProjectItem };
2074
2078
  }
2075
2079
 
2076
2080
  /** Project is the main entity of ProjectsService */
@@ -2097,6 +2101,7 @@ interface Project$1 extends ProjectCoverOneOf$1 {
2097
2101
  collectionIds?: string[];
2098
2102
  /** Custom project details */
2099
2103
  details?: ProjectDetail$1[];
2104
+ /** Project's slug */
2100
2105
  slug?: string | null;
2101
2106
  /**
2102
2107
  * Represents the time this Project was created
@@ -2113,6 +2118,7 @@ interface Project$1 extends ProjectCoverOneOf$1 {
2113
2118
  * @readonly
2114
2119
  */
2115
2120
  url?: string;
2121
+ /** SEO data for the project */
2116
2122
  seoData?: SeoSchema$1;
2117
2123
  /**
2118
2124
  * indicates if the project is synced from external platform (via integration page) and therefore will be updated from the external platform on daily basis
@@ -2184,12 +2190,14 @@ interface VideoResolution$1 {
2184
2190
  }
2185
2191
  interface ProjectDetail$1 extends ProjectDetailValueOneOf$1 {
2186
2192
  text?: string;
2193
+ /** Details link */
2187
2194
  link?: DetailsLink$1;
2188
2195
  label?: string;
2189
2196
  }
2190
2197
  /** @oneof */
2191
2198
  interface ProjectDetailValueOneOf$1 {
2192
2199
  text?: string;
2200
+ /** Details link */
2193
2201
  link?: DetailsLink$1;
2194
2202
  }
2195
2203
  interface DetailsLink$1 {
@@ -2204,12 +2212,17 @@ interface DetailsLink$1 {
2204
2212
  target?: string | null;
2205
2213
  }
2206
2214
  interface ProjectSource$1 {
2215
+ /** App definition id */
2207
2216
  appDefId?: string;
2217
+ /** External source id */
2208
2218
  externalId?: string;
2219
+ /** Source name */
2209
2220
  sourceName?: string;
2221
+ /** Source description */
2210
2222
  description?: string | null;
2211
2223
  /** link to external source */
2212
2224
  link?: string | null;
2225
+ /** Sync status */
2213
2226
  syncStatus?: SyncStatus$1;
2214
2227
  /** fields that are synced from external source, should be blocked to update in UI */
2215
2228
  notEditableFields?: string[];
@@ -2751,6 +2764,7 @@ interface CreateProjectResponse {
2751
2764
  interface GetProjectRequest {
2752
2765
  /** Id of the Project to retrieve */
2753
2766
  projectId: string;
2767
+ /** Include page url */
2754
2768
  includePageUrl?: boolean | null;
2755
2769
  }
2756
2770
  interface GetProjectResponse {
@@ -2760,6 +2774,7 @@ interface GetProjectResponse {
2760
2774
  interface ListProjectsRequest {
2761
2775
  /** Projects limit per response is maximum 100, In the first request the cursor is None */
2762
2776
  paging?: CursorPaging$1;
2777
+ /** Include page url */
2763
2778
  includePageUrl?: boolean | null;
2764
2779
  }
2765
2780
  interface CursorPaging$1 {
@@ -2808,9 +2823,11 @@ interface UpdateProjectResponse {
2808
2823
  interface BulkUpdateProjectsRequest {
2809
2824
  /** projects to be updated. */
2810
2825
  projects?: MaskedProject[];
2826
+ /** Flag to return full entity in response */
2811
2827
  returnFullEntity?: boolean | null;
2812
2828
  }
2813
2829
  interface MaskedProject {
2830
+ /** Project to be updated */
2814
2831
  project?: Project$1;
2815
2832
  }
2816
2833
  interface BulkUpdateProjectsResponse {
@@ -2822,6 +2839,7 @@ interface BulkUpdateProjectsResponse {
2822
2839
  interface BulkUpdateProjectsResult {
2823
2840
  /** Holds information about an item in bulk update - id, index in original request array, action successful, error (if failed). */
2824
2841
  itemMetadata?: ItemMetadata;
2842
+ /** Updated Project */
2825
2843
  project?: Project$1;
2826
2844
  }
2827
2845
  interface ItemMetadata {
@@ -2861,6 +2879,7 @@ interface DeleteProjectResponse {
2861
2879
  interface QueryProjectsRequest {
2862
2880
  /** WQL expression */
2863
2881
  query: QueryV2$1;
2882
+ /** Include page url */
2864
2883
  includePageUrl?: boolean | null;
2865
2884
  }
2866
2885
  interface QueryV2$1 extends QueryV2PagingMethodOneOf$1 {
@@ -2939,6 +2958,7 @@ interface ProjectInCollection$1 {
2939
2958
  interface QueryProjectWithCollectionInfoRequest {
2940
2959
  /** WQL expression */
2941
2960
  query: QueryV2$1;
2961
+ /** Include page url */
2942
2962
  includePageUrl?: boolean | null;
2943
2963
  }
2944
2964
  interface QueryProjectWithCollectionInfoResponse {
@@ -3366,11 +3386,13 @@ interface GetProjectPageDataIdentifiers {
3366
3386
  projectSlug: string;
3367
3387
  }
3368
3388
  interface GetProjectOptions {
3389
+ /** Include page url */
3369
3390
  includePageUrl?: boolean | null;
3370
3391
  }
3371
3392
  interface ListProjectsOptions {
3372
3393
  /** Projects limit per response is maximum 100, In the first request the cursor is None */
3373
3394
  paging?: CursorPaging$1;
3395
+ /** Include page url */
3374
3396
  includePageUrl?: boolean | null;
3375
3397
  }
3376
3398
  interface UpdateProject {
@@ -3396,6 +3418,7 @@ interface UpdateProject {
3396
3418
  collectionIds?: string[];
3397
3419
  /** Custom project details */
3398
3420
  details?: ProjectDetail$1[];
3421
+ /** Project's slug */
3399
3422
  slug?: string | null;
3400
3423
  /**
3401
3424
  * Represents the time this Project was created
@@ -3412,6 +3435,7 @@ interface UpdateProject {
3412
3435
  * @readonly
3413
3436
  */
3414
3437
  url?: string;
3438
+ /** SEO data for the project */
3415
3439
  seoData?: SeoSchema$1;
3416
3440
  /**
3417
3441
  * indicates if the project is synced from external platform (via integration page) and therefore will be updated from the external platform on daily basis
@@ -3422,9 +3446,11 @@ interface UpdateProject {
3422
3446
  interface BulkUpdateProjectsOptions {
3423
3447
  /** projects to be updated. */
3424
3448
  projects?: MaskedProject[];
3449
+ /** Flag to return full entity in response */
3425
3450
  returnFullEntity?: boolean | null;
3426
3451
  }
3427
3452
  interface QueryProjectsOptions {
3453
+ /** Include page url */
3428
3454
  includePageUrl?: boolean | null | undefined;
3429
3455
  }
3430
3456
  interface QueryCursorResult$1 {
@@ -3516,6 +3542,7 @@ interface UpdateProjectOrderInCollectionIdentifiers$1 {
3516
3542
  collectionId: string;
3517
3543
  }
3518
3544
  interface QueryProjectsWithCollectionInfoOptions {
3545
+ /** Include page url */
3519
3546
  includePageUrl?: boolean | null;
3520
3547
  }
3521
3548
 
@@ -3766,6 +3793,7 @@ interface Project extends ProjectCoverOneOf {
3766
3793
  collectionIds?: string[];
3767
3794
  /** Custom project details */
3768
3795
  details?: ProjectDetail[];
3796
+ /** Project's slug */
3769
3797
  slug?: string | null;
3770
3798
  /**
3771
3799
  * Represents the time this Project was created
@@ -3782,6 +3810,7 @@ interface Project extends ProjectCoverOneOf {
3782
3810
  * @readonly
3783
3811
  */
3784
3812
  url?: string;
3813
+ /** SEO data for the project */
3785
3814
  seoData?: SeoSchema;
3786
3815
  /**
3787
3816
  * indicates if the project is synced from external platform (via integration page) and therefore will be updated from the external platform on daily basis
@@ -3853,12 +3882,14 @@ interface VideoResolution {
3853
3882
  }
3854
3883
  interface ProjectDetail extends ProjectDetailValueOneOf {
3855
3884
  text?: string;
3885
+ /** Details link */
3856
3886
  link?: DetailsLink;
3857
3887
  label?: string;
3858
3888
  }
3859
3889
  /** @oneof */
3860
3890
  interface ProjectDetailValueOneOf {
3861
3891
  text?: string;
3892
+ /** Details link */
3862
3893
  link?: DetailsLink;
3863
3894
  }
3864
3895
  interface DetailsLink {
@@ -3873,12 +3904,17 @@ interface DetailsLink {
3873
3904
  target?: string | null;
3874
3905
  }
3875
3906
  interface ProjectSource {
3907
+ /** App definition id */
3876
3908
  appDefId?: string;
3909
+ /** External source id */
3877
3910
  externalId?: string;
3911
+ /** Source name */
3878
3912
  sourceName?: string;
3913
+ /** Source description */
3879
3914
  description?: string | null;
3880
3915
  /** link to external source */
3881
3916
  link?: string | null;
3917
+ /** Sync status */
3882
3918
  syncStatus?: SyncStatus;
3883
3919
  /** fields that are synced from external source, should be blocked to update in UI */
3884
3920
  notEditableFields?: string[];
@@ -2144,6 +2144,7 @@ interface Project$3 extends ProjectCoverOneOf$3 {
2144
2144
  collectionIds?: string[];
2145
2145
  /** Custom project details */
2146
2146
  details?: ProjectDetail$3[];
2147
+ /** Project's slug */
2147
2148
  slug?: string | null;
2148
2149
  /**
2149
2150
  * Represents the time this Project was created
@@ -2160,6 +2161,7 @@ interface Project$3 extends ProjectCoverOneOf$3 {
2160
2161
  * @readonly
2161
2162
  */
2162
2163
  url?: PageUrlV2$1;
2164
+ /** SEO data for the project */
2163
2165
  seoData?: SeoSchema$3;
2164
2166
  /**
2165
2167
  * indicates if the project is synced from external platform (via integration page) and therefore will be updated from the external platform on daily basis
@@ -2242,12 +2244,14 @@ interface VideoResolution$1 {
2242
2244
  }
2243
2245
  interface ProjectDetail$3 extends ProjectDetailValueOneOf$3 {
2244
2246
  text?: string;
2247
+ /** Details link */
2245
2248
  link?: DetailsLink$3;
2246
2249
  label?: string;
2247
2250
  }
2248
2251
  /** @oneof */
2249
2252
  interface ProjectDetailValueOneOf$3 {
2250
2253
  text?: string;
2254
+ /** Details link */
2251
2255
  link?: DetailsLink$3;
2252
2256
  }
2253
2257
  interface DetailsLink$3 {
@@ -2349,6 +2353,7 @@ interface CreateProjectResponse$1 {
2349
2353
  interface GetProjectRequest$1 {
2350
2354
  /** Id of the Project to retrieve */
2351
2355
  projectId: string;
2356
+ /** Include page url */
2352
2357
  includePageUrl?: boolean | null;
2353
2358
  }
2354
2359
  interface GetProjectResponse$1 {
@@ -2358,6 +2363,7 @@ interface GetProjectResponse$1 {
2358
2363
  interface ListProjectsRequest$1 {
2359
2364
  /** Projects limit per response is maximum 100, In the first request the cursor is None */
2360
2365
  paging?: CursorPaging$3;
2366
+ /** Include page url */
2361
2367
  includePageUrl?: boolean | null;
2362
2368
  }
2363
2369
  interface CursorPaging$3 {
@@ -2406,9 +2412,11 @@ interface UpdateProjectResponse$1 {
2406
2412
  interface BulkUpdateProjectsRequest$1 {
2407
2413
  /** projects to be updated. */
2408
2414
  projects?: MaskedProject$1[];
2415
+ /** Flag to return full entity in response */
2409
2416
  returnFullEntity?: boolean | null;
2410
2417
  }
2411
2418
  interface MaskedProject$1 {
2419
+ /** Project to be updated */
2412
2420
  project?: Project$3;
2413
2421
  }
2414
2422
  interface BulkUpdateProjectsResponse$1 {
@@ -2420,6 +2428,7 @@ interface BulkUpdateProjectsResponse$1 {
2420
2428
  interface BulkUpdateProjectsResult$1 {
2421
2429
  /** Holds information about an item in bulk update - id, index in original request array, action successful, error (if failed). */
2422
2430
  itemMetadata?: ItemMetadata$1;
2431
+ /** Updated Project */
2423
2432
  project?: Project$3;
2424
2433
  }
2425
2434
  interface ItemMetadata$1 {
@@ -2459,6 +2468,7 @@ interface DeleteProjectResponse$1 {
2459
2468
  interface QueryProjectsRequest$1 {
2460
2469
  /** WQL expression */
2461
2470
  query: QueryV2$3;
2471
+ /** Include page url */
2462
2472
  includePageUrl?: boolean | null;
2463
2473
  }
2464
2474
  interface QueryV2$3 extends QueryV2PagingMethodOneOf$3 {
@@ -2537,6 +2547,7 @@ interface ProjectInCollection$3 {
2537
2547
  interface QueryProjectWithCollectionInfoRequest$1 {
2538
2548
  /** WQL expression */
2539
2549
  query: QueryV2$3;
2550
+ /** Include page url */
2540
2551
  includePageUrl?: boolean | null;
2541
2552
  }
2542
2553
  interface QueryProjectWithCollectionInfoResponse$1 {
@@ -3313,6 +3324,7 @@ interface Project$2 extends ProjectCoverOneOf$2 {
3313
3324
  collectionIds?: string[];
3314
3325
  /** Custom project details */
3315
3326
  details?: ProjectDetail$2[];
3327
+ /** Project's slug */
3316
3328
  slug?: string | null;
3317
3329
  /**
3318
3330
  * Represents the time this Project was created
@@ -3329,6 +3341,7 @@ interface Project$2 extends ProjectCoverOneOf$2 {
3329
3341
  * @readonly
3330
3342
  */
3331
3343
  url?: string;
3344
+ /** SEO data for the project */
3332
3345
  seoData?: SeoSchema$2;
3333
3346
  /**
3334
3347
  * indicates if the project is synced from external platform (via integration page) and therefore will be updated from the external platform on daily basis
@@ -3363,12 +3376,14 @@ interface Video$2 {
3363
3376
  }
3364
3377
  interface ProjectDetail$2 extends ProjectDetailValueOneOf$2 {
3365
3378
  text?: string;
3379
+ /** Details link */
3366
3380
  link?: DetailsLink$2;
3367
3381
  label?: string;
3368
3382
  }
3369
3383
  /** @oneof */
3370
3384
  interface ProjectDetailValueOneOf$2 {
3371
3385
  text?: string;
3386
+ /** Details link */
3372
3387
  link?: DetailsLink$2;
3373
3388
  }
3374
3389
  interface DetailsLink$2 {
@@ -3459,6 +3474,7 @@ interface CreateProjectResponse {
3459
3474
  interface GetProjectRequest {
3460
3475
  /** Id of the Project to retrieve */
3461
3476
  projectId: string;
3477
+ /** Include page url */
3462
3478
  includePageUrl?: boolean | null;
3463
3479
  }
3464
3480
  interface GetProjectResponse {
@@ -3468,6 +3484,7 @@ interface GetProjectResponse {
3468
3484
  interface ListProjectsRequest {
3469
3485
  /** Projects limit per response is maximum 100, In the first request the cursor is None */
3470
3486
  paging?: CursorPaging$2;
3487
+ /** Include page url */
3471
3488
  includePageUrl?: boolean | null;
3472
3489
  }
3473
3490
  interface CursorPaging$2 {
@@ -3516,9 +3533,11 @@ interface UpdateProjectResponse {
3516
3533
  interface BulkUpdateProjectsRequest {
3517
3534
  /** projects to be updated. */
3518
3535
  projects?: MaskedProject[];
3536
+ /** Flag to return full entity in response */
3519
3537
  returnFullEntity?: boolean | null;
3520
3538
  }
3521
3539
  interface MaskedProject {
3540
+ /** Project to be updated */
3522
3541
  project?: Project$2;
3523
3542
  }
3524
3543
  interface BulkUpdateProjectsResponse {
@@ -3530,6 +3549,7 @@ interface BulkUpdateProjectsResponse {
3530
3549
  interface BulkUpdateProjectsResult {
3531
3550
  /** Holds information about an item in bulk update - id, index in original request array, action successful, error (if failed). */
3532
3551
  itemMetadata?: ItemMetadata;
3552
+ /** Updated Project */
3533
3553
  project?: Project$2;
3534
3554
  }
3535
3555
  interface ItemMetadata {
@@ -3569,6 +3589,7 @@ interface DeleteProjectResponse {
3569
3589
  interface QueryProjectsRequest {
3570
3590
  /** WQL expression */
3571
3591
  query: QueryV2$2;
3592
+ /** Include page url */
3572
3593
  includePageUrl?: boolean | null;
3573
3594
  }
3574
3595
  interface QueryV2$2 extends QueryV2PagingMethodOneOf$2 {
@@ -3647,6 +3668,7 @@ interface ProjectInCollection$2 {
3647
3668
  interface QueryProjectWithCollectionInfoRequest {
3648
3669
  /** WQL expression */
3649
3670
  query: QueryV2$2;
3671
+ /** Include page url */
3650
3672
  includePageUrl?: boolean | null;
3651
3673
  }
3652
3674
  interface QueryProjectWithCollectionInfoResponse {
@@ -4081,6 +4103,7 @@ interface Project$1 extends ProjectCoverOneOf$1 {
4081
4103
  collectionIds?: string[];
4082
4104
  /** Custom project details */
4083
4105
  details?: ProjectDetail$1[];
4106
+ /** Project's slug */
4084
4107
  slug?: string | null;
4085
4108
  /**
4086
4109
  * Represents the time this Project was created
@@ -4097,6 +4120,7 @@ interface Project$1 extends ProjectCoverOneOf$1 {
4097
4120
  * @readonly
4098
4121
  */
4099
4122
  url?: PageUrlV2;
4123
+ /** SEO data for the project */
4100
4124
  seoData?: SeoSchema$1;
4101
4125
  /**
4102
4126
  * indicates if the project is synced from external platform (via integration page) and therefore will be updated from the external platform on daily basis
@@ -4179,12 +4203,14 @@ interface VideoResolution {
4179
4203
  }
4180
4204
  interface ProjectDetail$1 extends ProjectDetailValueOneOf$1 {
4181
4205
  text?: string;
4206
+ /** Details link */
4182
4207
  link?: DetailsLink$1;
4183
4208
  label?: string;
4184
4209
  }
4185
4210
  /** @oneof */
4186
4211
  interface ProjectDetailValueOneOf$1 {
4187
4212
  text?: string;
4213
+ /** Details link */
4188
4214
  link?: DetailsLink$1;
4189
4215
  }
4190
4216
  interface DetailsLink$1 {
@@ -4611,6 +4637,7 @@ interface Project extends ProjectCoverOneOf {
4611
4637
  collectionIds?: string[];
4612
4638
  /** Custom project details */
4613
4639
  details?: ProjectDetail[];
4640
+ /** Project's slug */
4614
4641
  slug?: string | null;
4615
4642
  /**
4616
4643
  * Represents the time this Project was created
@@ -4627,6 +4654,7 @@ interface Project extends ProjectCoverOneOf {
4627
4654
  * @readonly
4628
4655
  */
4629
4656
  url?: string;
4657
+ /** SEO data for the project */
4630
4658
  seoData?: SeoSchema;
4631
4659
  /**
4632
4660
  * indicates if the project is synced from external platform (via integration page) and therefore will be updated from the external platform on daily basis
@@ -4661,12 +4689,14 @@ interface Video {
4661
4689
  }
4662
4690
  interface ProjectDetail extends ProjectDetailValueOneOf {
4663
4691
  text?: string;
4692
+ /** Details link */
4664
4693
  link?: DetailsLink;
4665
4694
  label?: string;
4666
4695
  }
4667
4696
  /** @oneof */
4668
4697
  interface ProjectDetailValueOneOf {
4669
4698
  text?: string;
4699
+ /** Details link */
4670
4700
  link?: DetailsLink;
4671
4701
  }
4672
4702
  interface DetailsLink {