@wix/portfolio 1.0.66 → 1.0.68

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.66",
3
+ "version": "1.0.68",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -18,11 +18,11 @@
18
18
  "type-bundles"
19
19
  ],
20
20
  "dependencies": {
21
- "@wix/portfolio_collections": "1.0.13",
22
- "@wix/portfolio_portfolio-settings": "1.0.0",
23
- "@wix/portfolio_project-in-collections": "1.0.14",
24
- "@wix/portfolio_project-items": "1.0.17",
25
- "@wix/portfolio_projects": "1.0.17"
21
+ "@wix/portfolio_collections": "1.0.14",
22
+ "@wix/portfolio_portfolio-settings": "1.0.1",
23
+ "@wix/portfolio_project-in-collections": "1.0.15",
24
+ "@wix/portfolio_project-items": "1.0.18",
25
+ "@wix/portfolio_projects": "1.0.19"
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": "0db213143d8bca3b3f4b1b4b3d0d770750fe49719b5b8d32df470288"
50
+ "falconPackageHash": "0975e57acccf9eb91fb4fc183b09b9766d28534f7144ca50b56b77e9"
51
51
  }
@@ -10,7 +10,9 @@ interface Collection {
10
10
  * @readonly
11
11
  */
12
12
  revision?: string | null;
13
+ /** Title of Collection */
13
14
  title?: string | null;
15
+ /** Description of Collection */
14
16
  description?: string | null;
15
17
  /** Url of Collection */
16
18
  slug?: string | null;
@@ -35,6 +37,7 @@ interface Collection {
35
37
  * @readonly
36
38
  */
37
39
  url?: string;
40
+ /** SEO data for Collection */
38
41
  seoData?: SeoSchema$2;
39
42
  }
40
43
  interface Image$3 {
@@ -99,6 +102,36 @@ interface Settings$2 {
99
102
  /** User-selected keyword terms for a specific page. */
100
103
  keywords?: Keyword$2[];
101
104
  }
105
+ interface IdentificationData$3 extends IdentificationDataIdOneOf$3 {
106
+ /** ID of a site visitor that has not logged in to the site. */
107
+ anonymousVisitorId?: string;
108
+ /** ID of a site visitor that has logged in to the site. */
109
+ memberId?: string;
110
+ /** ID of a Wix user (site owner, contributor, etc.). */
111
+ wixUserId?: string;
112
+ /** ID of an app. */
113
+ appId?: string;
114
+ /** @readonly */
115
+ identityType?: WebhookIdentityType$3;
116
+ }
117
+ /** @oneof */
118
+ interface IdentificationDataIdOneOf$3 {
119
+ /** ID of a site visitor that has not logged in to the site. */
120
+ anonymousVisitorId?: string;
121
+ /** ID of a site visitor that has logged in to the site. */
122
+ memberId?: string;
123
+ /** ID of a Wix user (site owner, contributor, etc.). */
124
+ wixUserId?: string;
125
+ /** ID of an app. */
126
+ appId?: string;
127
+ }
128
+ declare enum WebhookIdentityType$3 {
129
+ UNKNOWN = "UNKNOWN",
130
+ ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
131
+ MEMBER = "MEMBER",
132
+ WIX_USER = "WIX_USER",
133
+ APP = "APP"
134
+ }
102
135
  interface CursorPaging$1 {
103
136
  /** Maximum number of items to return in the results. */
104
137
  limit?: number | null;
@@ -138,36 +171,6 @@ interface DeleteCollectionResponse {
138
171
  /** Id of the Deleted Collection */
139
172
  collectionId?: string;
140
173
  }
141
- interface IdentificationData$3 extends IdentificationDataIdOneOf$3 {
142
- /** ID of a site visitor that has not logged in to the site. */
143
- anonymousVisitorId?: string;
144
- /** ID of a site visitor that has logged in to the site. */
145
- memberId?: string;
146
- /** ID of a Wix user (site owner, contributor, etc.). */
147
- wixUserId?: string;
148
- /** ID of an app. */
149
- appId?: string;
150
- /** @readonly */
151
- identityType?: WebhookIdentityType$3;
152
- }
153
- /** @oneof */
154
- interface IdentificationDataIdOneOf$3 {
155
- /** ID of a site visitor that has not logged in to the site. */
156
- anonymousVisitorId?: string;
157
- /** ID of a site visitor that has logged in to the site. */
158
- memberId?: string;
159
- /** ID of a Wix user (site owner, contributor, etc.). */
160
- wixUserId?: string;
161
- /** ID of an app. */
162
- appId?: string;
163
- }
164
- declare enum WebhookIdentityType$3 {
165
- UNKNOWN = "UNKNOWN",
166
- ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
167
- MEMBER = "MEMBER",
168
- WIX_USER = "WIX_USER",
169
- APP = "APP"
170
- }
171
174
  interface ListCollectionsResponseNonNullableFields {
172
175
  collections: {
173
176
  coverImage?: {
@@ -256,11 +259,13 @@ interface CollectionDeletedEnvelope {
256
259
  metadata: EventMetadata$3;
257
260
  }
258
261
  interface GetCollectionOptions {
262
+ /** Include page url */
259
263
  includePageUrl?: boolean | null;
260
264
  }
261
265
  interface ListCollectionsOptions {
262
266
  /** Maximum limit per response is 100, in first request cursor is None */
263
267
  paging?: CursorPaging$1;
268
+ /** Include page url */
264
269
  includePageUrl?: boolean | null;
265
270
  }
266
271
  interface UpdateCollection {
@@ -274,7 +279,9 @@ interface UpdateCollection {
274
279
  * @readonly
275
280
  */
276
281
  revision?: string | null;
282
+ /** Title of Collection */
277
283
  title?: string | null;
284
+ /** Description of Collection */
278
285
  description?: string | null;
279
286
  /** Url of Collection */
280
287
  slug?: string | null;
@@ -299,9 +306,11 @@ interface UpdateCollection {
299
306
  * @readonly
300
307
  */
301
308
  url?: string;
309
+ /** SEO data for Collection */
302
310
  seoData?: SeoSchema$2;
303
311
  }
304
312
  interface QueryCollectionsOptions {
313
+ /** Include page url */
305
314
  includePageUrl?: boolean | null | undefined;
306
315
  }
307
316
  interface QueryCursorResult$2 {
@@ -1167,7 +1176,7 @@ interface Project$1 extends ProjectCoverOneOf$1 {
1167
1176
  description?: string | null;
1168
1177
  /** indicates if the project should be hidden from Portfolio */
1169
1178
  hidden?: boolean | null;
1170
- /** Collections must exist to be added to a project. can be created/updated/deleted using this //TODO */
1179
+ /** Collections must exist to be added to a project. Can be created/updated/deleted using [Collection Service](https://dev.wix.com/docs/rest/business-solutions/portfolio/collection) */
1171
1180
  collectionIds?: string[];
1172
1181
  /** Custom project details */
1173
1182
  details?: ProjectDetail$1[];
@@ -1779,7 +1788,7 @@ interface UpdateProject {
1779
1788
  description?: string | null;
1780
1789
  /** indicates if the project should be hidden from Portfolio */
1781
1790
  hidden?: boolean | null;
1782
- /** Collections must exist to be added to a project. can be created/updated/deleted using this //TODO */
1791
+ /** Collections must exist to be added to a project. Can be created/updated/deleted using [Collection Service](https://dev.wix.com/docs/rest/business-solutions/portfolio/collection) */
1783
1792
  collectionIds?: string[];
1784
1793
  /** Custom project details */
1785
1794
  details?: ProjectDetail$1[];
@@ -2079,7 +2088,7 @@ interface Project extends ProjectCoverOneOf {
2079
2088
  description?: string | null;
2080
2089
  /** indicates if the project should be hidden from Portfolio */
2081
2090
  hidden?: boolean | null;
2082
- /** Collections must exist to be added to a project. can be created/updated/deleted using this //TODO */
2091
+ /** Collections must exist to be added to a project. Can be created/updated/deleted using [Collection Service](https://dev.wix.com/docs/rest/business-solutions/portfolio/collection) */
2083
2092
  collectionIds?: string[];
2084
2093
  /** Custom project details */
2085
2094
  details?: ProjectDetail[];
@@ -2343,6 +2352,7 @@ interface ProjectInCollectionProjectOrderInCollectionUpdatedEnvelope {
2343
2352
  metadata: EventMetadata;
2344
2353
  }
2345
2354
  interface QueryProjectInCollectionsOptions {
2355
+ /** Include the page URL */
2346
2356
  includePageUrl?: boolean | null | undefined;
2347
2357
  }
2348
2358
  interface QueryCursorResult {
@@ -10,7 +10,9 @@ interface Collection {
10
10
  * @readonly
11
11
  */
12
12
  revision?: string | null;
13
+ /** Title of Collection */
13
14
  title?: string | null;
15
+ /** Description of Collection */
14
16
  description?: string | null;
15
17
  /** Url of Collection */
16
18
  slug?: string | null;
@@ -35,6 +37,7 @@ interface Collection {
35
37
  * @readonly
36
38
  */
37
39
  url?: string;
40
+ /** SEO data for Collection */
38
41
  seoData?: SeoSchema$2;
39
42
  }
40
43
  interface Image$3 {
@@ -174,6 +177,9 @@ interface DomainEventBodyOneOf$4 {
174
177
  interface EntityCreatedEvent$4 {
175
178
  entity?: string;
176
179
  }
180
+ interface UndeleteInfo$4 {
181
+ deletedDate?: Date;
182
+ }
177
183
  interface EntityUpdatedEvent$4 {
178
184
  /**
179
185
  * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
@@ -197,6 +203,46 @@ interface AdminRemoveMenuItemsResponse {
197
203
  /** number of items sucessfully deleted */
198
204
  numItemsSuccessfullyDeleted?: number;
199
205
  }
206
+ interface MessageEnvelope$4 {
207
+ /** App instance ID. */
208
+ instanceId?: string | null;
209
+ /** Event type. */
210
+ eventType?: string;
211
+ /** The identification type and identity data. */
212
+ identity?: IdentificationData$4;
213
+ /** Stringify payload. */
214
+ data?: string;
215
+ }
216
+ interface IdentificationData$4 extends IdentificationDataIdOneOf$4 {
217
+ /** ID of a site visitor that has not logged in to the site. */
218
+ anonymousVisitorId?: string;
219
+ /** ID of a site visitor that has logged in to the site. */
220
+ memberId?: string;
221
+ /** ID of a Wix user (site owner, contributor, etc.). */
222
+ wixUserId?: string;
223
+ /** ID of an app. */
224
+ appId?: string;
225
+ /** @readonly */
226
+ identityType?: WebhookIdentityType$4;
227
+ }
228
+ /** @oneof */
229
+ interface IdentificationDataIdOneOf$4 {
230
+ /** ID of a site visitor that has not logged in to the site. */
231
+ anonymousVisitorId?: string;
232
+ /** ID of a site visitor that has logged in to the site. */
233
+ memberId?: string;
234
+ /** ID of a Wix user (site owner, contributor, etc.). */
235
+ wixUserId?: string;
236
+ /** ID of an app. */
237
+ appId?: string;
238
+ }
239
+ declare enum WebhookIdentityType$4 {
240
+ UNKNOWN = "UNKNOWN",
241
+ ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
242
+ MEMBER = "MEMBER",
243
+ WIX_USER = "WIX_USER",
244
+ APP = "APP"
245
+ }
200
246
  interface InvalidateCache$2 extends InvalidateCacheGetByOneOf$2 {
201
247
  /** Invalidate by msId. NOT recommended, as this will invalidate the entire site cache! */
202
248
  metaSiteId?: string;
@@ -265,6 +311,7 @@ interface CreateCollectionResponse {
265
311
  interface GetCollectionRequest {
266
312
  /** Id of the Collection to retrieve */
267
313
  collectionId: string;
314
+ /** Include page url */
268
315
  includePageUrl?: boolean | null;
269
316
  }
270
317
  interface GetCollectionResponse {
@@ -274,6 +321,7 @@ interface GetCollectionResponse {
274
321
  interface ListCollectionsRequest {
275
322
  /** Maximum limit per response is 100, in first request cursor is None */
276
323
  paging?: CursorPaging$3;
324
+ /** Include page url */
277
325
  includePageUrl?: boolean | null;
278
326
  }
279
327
  interface CursorPaging$3 {
@@ -330,6 +378,7 @@ interface DeleteCollectionResponse {
330
378
  interface QueryCollectionsRequest {
331
379
  /** WQL expression */
332
380
  query: QueryV2$3;
381
+ /** Include page url */
333
382
  includePageUrl?: boolean | null;
334
383
  }
335
384
  interface QueryV2$3 extends QueryV2PagingMethodOneOf$3 {
@@ -385,46 +434,6 @@ interface QueryCollectionsResponse {
385
434
  /** Paging metadata */
386
435
  metadata?: PagingMetadataV2$3;
387
436
  }
388
- interface MessageEnvelope$4 {
389
- /** App instance ID. */
390
- instanceId?: string | null;
391
- /** Event type. */
392
- eventType?: string;
393
- /** The identification type and identity data. */
394
- identity?: IdentificationData$4;
395
- /** Stringify payload. */
396
- data?: string;
397
- }
398
- interface IdentificationData$4 extends IdentificationDataIdOneOf$4 {
399
- /** ID of a site visitor that has not logged in to the site. */
400
- anonymousVisitorId?: string;
401
- /** ID of a site visitor that has logged in to the site. */
402
- memberId?: string;
403
- /** ID of a Wix user (site owner, contributor, etc.). */
404
- wixUserId?: string;
405
- /** ID of an app. */
406
- appId?: string;
407
- /** @readonly */
408
- identityType?: WebhookIdentityType$4;
409
- }
410
- /** @oneof */
411
- interface IdentificationDataIdOneOf$4 {
412
- /** ID of a site visitor that has not logged in to the site. */
413
- anonymousVisitorId?: string;
414
- /** ID of a site visitor that has logged in to the site. */
415
- memberId?: string;
416
- /** ID of a Wix user (site owner, contributor, etc.). */
417
- wixUserId?: string;
418
- /** ID of an app. */
419
- appId?: string;
420
- }
421
- declare enum WebhookIdentityType$4 {
422
- UNKNOWN = "UNKNOWN",
423
- ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
424
- MEMBER = "MEMBER",
425
- WIX_USER = "WIX_USER",
426
- APP = "APP"
427
- }
428
437
  interface CreateCollectionResponseNonNullableFields {
429
438
  collection?: {
430
439
  coverImage?: {
@@ -621,11 +630,13 @@ interface CollectionDeletedEnvelope {
621
630
  metadata: EventMetadata$3;
622
631
  }
623
632
  interface GetCollectionOptions {
633
+ /** Include page url */
624
634
  includePageUrl?: boolean | null;
625
635
  }
626
636
  interface ListCollectionsOptions {
627
637
  /** Maximum limit per response is 100, in first request cursor is None */
628
638
  paging?: CursorPaging$3;
639
+ /** Include page url */
629
640
  includePageUrl?: boolean | null;
630
641
  }
631
642
  interface UpdateCollection {
@@ -639,7 +650,9 @@ interface UpdateCollection {
639
650
  * @readonly
640
651
  */
641
652
  revision?: string | null;
653
+ /** Title of Collection */
642
654
  title?: string | null;
655
+ /** Description of Collection */
643
656
  description?: string | null;
644
657
  /** Url of Collection */
645
658
  slug?: string | null;
@@ -664,9 +677,11 @@ interface UpdateCollection {
664
677
  * @readonly
665
678
  */
666
679
  url?: string;
680
+ /** SEO data for Collection */
667
681
  seoData?: SeoSchema$2;
668
682
  }
669
683
  interface QueryCollectionsOptions {
684
+ /** Include page url */
670
685
  includePageUrl?: boolean | null | undefined;
671
686
  }
672
687
  interface QueryCursorResult$2 {
@@ -902,7 +917,7 @@ declare const index_d$4_onCollectionUpdated: typeof onCollectionUpdated;
902
917
  declare const index_d$4_queryCollections: typeof queryCollections;
903
918
  declare const index_d$4_updateCollection: typeof updateCollection;
904
919
  declare namespace index_d$4 {
905
- export { type ActionEvent$4 as ActionEvent, type index_d$4_AdminRemoveMenuItemsResponse as AdminRemoveMenuItemsResponse, type App$2 as App, type BaseEventMetadata$3 as BaseEventMetadata, type index_d$4_Collection as Collection, type index_d$4_CollectionCreatedEnvelope as CollectionCreatedEnvelope, type index_d$4_CollectionDeletedEnvelope as CollectionDeletedEnvelope, type index_d$4_CollectionUpdatedEnvelope as CollectionUpdatedEnvelope, type index_d$4_CollectionsQueryBuilder as CollectionsQueryBuilder, type index_d$4_CollectionsQueryResult as CollectionsQueryResult, type index_d$4_CreateCollectionRequest as CreateCollectionRequest, type index_d$4_CreateCollectionResponse as CreateCollectionResponse, type index_d$4_CreateCollectionResponseNonNullableFields as CreateCollectionResponseNonNullableFields, type CursorPaging$3 as CursorPaging, type Cursors$3 as Cursors, type index_d$4_DeleteCollectionRequest as DeleteCollectionRequest, type index_d$4_DeleteCollectionResponse as DeleteCollectionResponse, type index_d$4_DeleteCollectionResponseNonNullableFields as DeleteCollectionResponseNonNullableFields, type DomainEvent$4 as DomainEvent, type DomainEventBodyOneOf$4 as DomainEventBodyOneOf, type Empty$2 as Empty, type EntityCreatedEvent$4 as EntityCreatedEvent, type EntityDeletedEvent$4 as EntityDeletedEvent, type EntityUpdatedEvent$4 as EntityUpdatedEvent, type EventMetadata$3 as EventMetadata, type File$2 as File, type index_d$4_GetCollectionOptions as GetCollectionOptions, type index_d$4_GetCollectionRequest as GetCollectionRequest, type index_d$4_GetCollectionResponse as GetCollectionResponse, type index_d$4_GetCollectionResponseNonNullableFields as GetCollectionResponseNonNullableFields, type IdentificationData$4 as IdentificationData, type IdentificationDataIdOneOf$4 as IdentificationDataIdOneOf, type Image$3 as Image, ImageType$3 as ImageType, type InvalidateCache$2 as InvalidateCache, type InvalidateCacheGetByOneOf$2 as InvalidateCacheGetByOneOf, type Keyword$2 as Keyword, type index_d$4_ListCollectionsOptions as ListCollectionsOptions, type index_d$4_ListCollectionsRequest as ListCollectionsRequest, type index_d$4_ListCollectionsResponse as ListCollectionsResponse, type index_d$4_ListCollectionsResponseNonNullableFields as ListCollectionsResponseNonNullableFields, type MessageEnvelope$4 as MessageEnvelope, type Page$2 as Page, type Paging$3 as Paging, type PagingMetadataV2$3 as PagingMetadataV2, type Point$3 as Point, type index_d$4_QueryCollectionsOptions as QueryCollectionsOptions, type index_d$4_QueryCollectionsRequest as QueryCollectionsRequest, type index_d$4_QueryCollectionsResponse as QueryCollectionsResponse, type index_d$4_QueryCollectionsResponseNonNullableFields as QueryCollectionsResponseNonNullableFields, type QueryV2$3 as QueryV2, type QueryV2PagingMethodOneOf$3 as QueryV2PagingMethodOneOf, type SeoSchema$2 as SeoSchema, type Settings$2 as Settings, SortOrder$3 as SortOrder, type Sorting$3 as Sorting, type Tag$2 as Tag, type URI$2 as URI, type UnsharpMasking$3 as UnsharpMasking, type index_d$4_UpdateCollection as UpdateCollection, type index_d$4_UpdateCollectionRequest as UpdateCollectionRequest, type index_d$4_UpdateCollectionResponse as UpdateCollectionResponse, type index_d$4_UpdateCollectionResponseNonNullableFields as UpdateCollectionResponseNonNullableFields, WebhookIdentityType$4 as WebhookIdentityType, __metadata$4 as __metadata, index_d$4_createCollection as createCollection, index_d$4_deleteCollection as deleteCollection, index_d$4_getCollection as getCollection, index_d$4_listCollections as listCollections, index_d$4_onCollectionCreated as onCollectionCreated, index_d$4_onCollectionDeleted as onCollectionDeleted, index_d$4_onCollectionUpdated as onCollectionUpdated, index_d$4_queryCollections as queryCollections, index_d$4_updateCollection as updateCollection };
920
+ export { type ActionEvent$4 as ActionEvent, type index_d$4_AdminRemoveMenuItemsResponse as AdminRemoveMenuItemsResponse, type App$2 as App, type BaseEventMetadata$3 as BaseEventMetadata, type index_d$4_Collection as Collection, type index_d$4_CollectionCreatedEnvelope as CollectionCreatedEnvelope, type index_d$4_CollectionDeletedEnvelope as CollectionDeletedEnvelope, type index_d$4_CollectionUpdatedEnvelope as CollectionUpdatedEnvelope, type index_d$4_CollectionsQueryBuilder as CollectionsQueryBuilder, type index_d$4_CollectionsQueryResult as CollectionsQueryResult, type index_d$4_CreateCollectionRequest as CreateCollectionRequest, type index_d$4_CreateCollectionResponse as CreateCollectionResponse, type index_d$4_CreateCollectionResponseNonNullableFields as CreateCollectionResponseNonNullableFields, type CursorPaging$3 as CursorPaging, type Cursors$3 as Cursors, type index_d$4_DeleteCollectionRequest as DeleteCollectionRequest, type index_d$4_DeleteCollectionResponse as DeleteCollectionResponse, type index_d$4_DeleteCollectionResponseNonNullableFields as DeleteCollectionResponseNonNullableFields, type DomainEvent$4 as DomainEvent, type DomainEventBodyOneOf$4 as DomainEventBodyOneOf, type Empty$2 as Empty, type EntityCreatedEvent$4 as EntityCreatedEvent, type EntityDeletedEvent$4 as EntityDeletedEvent, type EntityUpdatedEvent$4 as EntityUpdatedEvent, type EventMetadata$3 as EventMetadata, type File$2 as File, type index_d$4_GetCollectionOptions as GetCollectionOptions, type index_d$4_GetCollectionRequest as GetCollectionRequest, type index_d$4_GetCollectionResponse as GetCollectionResponse, type index_d$4_GetCollectionResponseNonNullableFields as GetCollectionResponseNonNullableFields, type IdentificationData$4 as IdentificationData, type IdentificationDataIdOneOf$4 as IdentificationDataIdOneOf, type Image$3 as Image, ImageType$3 as ImageType, type InvalidateCache$2 as InvalidateCache, type InvalidateCacheGetByOneOf$2 as InvalidateCacheGetByOneOf, type Keyword$2 as Keyword, type index_d$4_ListCollectionsOptions as ListCollectionsOptions, type index_d$4_ListCollectionsRequest as ListCollectionsRequest, type index_d$4_ListCollectionsResponse as ListCollectionsResponse, type index_d$4_ListCollectionsResponseNonNullableFields as ListCollectionsResponseNonNullableFields, type MessageEnvelope$4 as MessageEnvelope, type Page$2 as Page, type Paging$3 as Paging, type PagingMetadataV2$3 as PagingMetadataV2, type Point$3 as Point, type index_d$4_QueryCollectionsOptions as QueryCollectionsOptions, type index_d$4_QueryCollectionsRequest as QueryCollectionsRequest, type index_d$4_QueryCollectionsResponse as QueryCollectionsResponse, type index_d$4_QueryCollectionsResponseNonNullableFields as QueryCollectionsResponseNonNullableFields, type QueryV2$3 as QueryV2, type QueryV2PagingMethodOneOf$3 as QueryV2PagingMethodOneOf, type SeoSchema$2 as SeoSchema, type Settings$2 as Settings, SortOrder$3 as SortOrder, type Sorting$3 as Sorting, type Tag$2 as Tag, type URI$2 as URI, type UndeleteInfo$4 as UndeleteInfo, type UnsharpMasking$3 as UnsharpMasking, type index_d$4_UpdateCollection as UpdateCollection, type index_d$4_UpdateCollectionRequest as UpdateCollectionRequest, type index_d$4_UpdateCollectionResponse as UpdateCollectionResponse, type index_d$4_UpdateCollectionResponseNonNullableFields as UpdateCollectionResponseNonNullableFields, WebhookIdentityType$4 as WebhookIdentityType, __metadata$4 as __metadata, index_d$4_createCollection as createCollection, index_d$4_deleteCollection as deleteCollection, index_d$4_getCollection as getCollection, index_d$4_listCollections as listCollections, index_d$4_onCollectionCreated as onCollectionCreated, index_d$4_onCollectionDeleted as onCollectionDeleted, index_d$4_onCollectionUpdated as onCollectionUpdated, index_d$4_queryCollections as queryCollections, index_d$4_updateCollection as updateCollection };
906
921
  }
907
922
 
908
923
  interface PortfolioSettings {
@@ -998,6 +1013,9 @@ interface DomainEventBodyOneOf$3 {
998
1013
  interface EntityCreatedEvent$3 {
999
1014
  entity?: string;
1000
1015
  }
1016
+ interface UndeleteInfo$3 {
1017
+ deletedDate?: Date;
1018
+ }
1001
1019
  interface EntityUpdatedEvent$3 {
1002
1020
  /**
1003
1021
  * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
@@ -1111,7 +1129,7 @@ declare const index_d$3_createPortfolioSettings: typeof createPortfolioSettings;
1111
1129
  declare const index_d$3_getPortfolioSettings: typeof getPortfolioSettings;
1112
1130
  declare const index_d$3_updatePortfolioSettings: typeof updatePortfolioSettings;
1113
1131
  declare namespace index_d$3 {
1114
- export { type ActionEvent$3 as ActionEvent, index_d$3_AddItemDirection as AddItemDirection, type index_d$3_CreatePortfolioSettingsRequest as CreatePortfolioSettingsRequest, type index_d$3_CreatePortfolioSettingsResponse as CreatePortfolioSettingsResponse, type index_d$3_CreatePortfolioSettingsResponseNonNullableFields as CreatePortfolioSettingsResponseNonNullableFields, index_d$3_DefaultItemName as DefaultItemName, type DomainEvent$3 as DomainEvent, type DomainEventBodyOneOf$3 as DomainEventBodyOneOf, type EntityCreatedEvent$3 as EntityCreatedEvent, type EntityDeletedEvent$3 as EntityDeletedEvent, type EntityUpdatedEvent$3 as EntityUpdatedEvent, type index_d$3_GetPortfolioSettingsRequest as GetPortfolioSettingsRequest, type index_d$3_GetPortfolioSettingsResponse as GetPortfolioSettingsResponse, type index_d$3_GetPortfolioSettingsResponseNonNullableFields as GetPortfolioSettingsResponseNonNullableFields, type IdentificationData$3 as IdentificationData, type IdentificationDataIdOneOf$3 as IdentificationDataIdOneOf, type index_d$3_MediaSettings as MediaSettings, type MessageEnvelope$3 as MessageEnvelope, type index_d$3_PortfolioSettings as PortfolioSettings, type index_d$3_ProjectItemSettings as ProjectItemSettings, type index_d$3_SiteMenuSettings as SiteMenuSettings, type index_d$3_UpdatePortfolioSettingsRequest as UpdatePortfolioSettingsRequest, type index_d$3_UpdatePortfolioSettingsResponse as UpdatePortfolioSettingsResponse, type index_d$3_UpdatePortfolioSettingsResponseNonNullableFields as UpdatePortfolioSettingsResponseNonNullableFields, WebhookIdentityType$3 as WebhookIdentityType, __metadata$3 as __metadata, index_d$3_createPortfolioSettings as createPortfolioSettings, index_d$3_getPortfolioSettings as getPortfolioSettings, index_d$3_updatePortfolioSettings as updatePortfolioSettings };
1132
+ export { type ActionEvent$3 as ActionEvent, index_d$3_AddItemDirection as AddItemDirection, type index_d$3_CreatePortfolioSettingsRequest as CreatePortfolioSettingsRequest, type index_d$3_CreatePortfolioSettingsResponse as CreatePortfolioSettingsResponse, type index_d$3_CreatePortfolioSettingsResponseNonNullableFields as CreatePortfolioSettingsResponseNonNullableFields, index_d$3_DefaultItemName as DefaultItemName, type DomainEvent$3 as DomainEvent, type DomainEventBodyOneOf$3 as DomainEventBodyOneOf, type EntityCreatedEvent$3 as EntityCreatedEvent, type EntityDeletedEvent$3 as EntityDeletedEvent, type EntityUpdatedEvent$3 as EntityUpdatedEvent, type index_d$3_GetPortfolioSettingsRequest as GetPortfolioSettingsRequest, type index_d$3_GetPortfolioSettingsResponse as GetPortfolioSettingsResponse, type index_d$3_GetPortfolioSettingsResponseNonNullableFields as GetPortfolioSettingsResponseNonNullableFields, type IdentificationData$3 as IdentificationData, type IdentificationDataIdOneOf$3 as IdentificationDataIdOneOf, type index_d$3_MediaSettings as MediaSettings, type MessageEnvelope$3 as MessageEnvelope, type index_d$3_PortfolioSettings as PortfolioSettings, type index_d$3_ProjectItemSettings as ProjectItemSettings, type index_d$3_SiteMenuSettings as SiteMenuSettings, type UndeleteInfo$3 as UndeleteInfo, type index_d$3_UpdatePortfolioSettingsRequest as UpdatePortfolioSettingsRequest, type index_d$3_UpdatePortfolioSettingsResponse as UpdatePortfolioSettingsResponse, type index_d$3_UpdatePortfolioSettingsResponseNonNullableFields as UpdatePortfolioSettingsResponseNonNullableFields, WebhookIdentityType$3 as WebhookIdentityType, __metadata$3 as __metadata, index_d$3_createPortfolioSettings as createPortfolioSettings, index_d$3_getPortfolioSettings as getPortfolioSettings, index_d$3_updatePortfolioSettings as updatePortfolioSettings };
1115
1133
  }
1116
1134
 
1117
1135
  /** ProjectItem is the main entity of ProjectItemsService */
@@ -1310,6 +1328,9 @@ interface DomainEventBodyOneOf$2 {
1310
1328
  interface EntityCreatedEvent$2 {
1311
1329
  entity?: string;
1312
1330
  }
1331
+ interface UndeleteInfo$2 {
1332
+ deletedDate?: Date;
1333
+ }
1313
1334
  interface EntityUpdatedEvent$2 {
1314
1335
  /**
1315
1336
  * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
@@ -2070,7 +2091,7 @@ declare const index_d$2_onProjectItemDeleted: typeof onProjectItemDeleted;
2070
2091
  declare const index_d$2_onProjectItemUpdated: typeof onProjectItemUpdated;
2071
2092
  declare const index_d$2_updateProjectItem: typeof updateProjectItem;
2072
2093
  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 };
2094
+ 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 UndeleteInfo$2 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
2095
  }
2075
2096
 
2076
2097
  /** Project is the main entity of ProjectsService */
@@ -2093,7 +2114,7 @@ interface Project$1 extends ProjectCoverOneOf$1 {
2093
2114
  description?: string | null;
2094
2115
  /** indicates if the project should be hidden from Portfolio */
2095
2116
  hidden?: boolean | null;
2096
- /** Collections must exist to be added to a project. can be created/updated/deleted using this //TODO */
2117
+ /** Collections must exist to be added to a project. Can be created/updated/deleted using [Collection Service](https://dev.wix.com/docs/rest/business-solutions/portfolio/collection) */
2097
2118
  collectionIds?: string[];
2098
2119
  /** Custom project details */
2099
2120
  details?: ProjectDetail$1[];
@@ -2625,6 +2646,9 @@ interface DomainEventBodyOneOf$1 {
2625
2646
  interface EntityCreatedEvent$1 {
2626
2647
  entity?: string;
2627
2648
  }
2649
+ interface UndeleteInfo$1 {
2650
+ deletedDate?: Date;
2651
+ }
2628
2652
  interface EntityUpdatedEvent$1 {
2629
2653
  /**
2630
2654
  * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
@@ -3410,7 +3434,7 @@ interface UpdateProject {
3410
3434
  description?: string | null;
3411
3435
  /** indicates if the project should be hidden from Portfolio */
3412
3436
  hidden?: boolean | null;
3413
- /** Collections must exist to be added to a project. can be created/updated/deleted using this //TODO */
3437
+ /** Collections must exist to be added to a project. Can be created/updated/deleted using [Collection Service](https://dev.wix.com/docs/rest/business-solutions/portfolio/collection) */
3414
3438
  collectionIds?: string[];
3415
3439
  /** Custom project details */
3416
3440
  details?: ProjectDetail$1[];
@@ -3754,7 +3778,7 @@ declare const index_d$1_queryProjects: typeof queryProjects;
3754
3778
  declare const index_d$1_queryProjectsWithCollectionInfo: typeof queryProjectsWithCollectionInfo;
3755
3779
  declare const index_d$1_updateProject: typeof updateProject;
3756
3780
  declare namespace index_d$1 {
3757
- export { type ActionEvent$1 as ActionEvent, type index_d$1_App as App, type index_d$1_ApplicationError as ApplicationError, type index_d$1_Asset as Asset, type BaseEventMetadata$1 as BaseEventMetadata, type index_d$1_BulkActionMetadata as BulkActionMetadata, type index_d$1_BulkUpdateProjectsOptions as BulkUpdateProjectsOptions, type index_d$1_BulkUpdateProjectsRequest as BulkUpdateProjectsRequest, type index_d$1_BulkUpdateProjectsResponse as BulkUpdateProjectsResponse, type index_d$1_BulkUpdateProjectsResponseNonNullableFields as BulkUpdateProjectsResponseNonNullableFields, type index_d$1_BulkUpdateProjectsResult as BulkUpdateProjectsResult, type index_d$1_CreateNewPortfolioAppRequest as CreateNewPortfolioAppRequest, type index_d$1_CreateNewPortfolioAppResponse as CreateNewPortfolioAppResponse, type index_d$1_CreateProjectRequest as CreateProjectRequest, type index_d$1_CreateProjectResponse as CreateProjectResponse, type index_d$1_CreateProjectResponseNonNullableFields as CreateProjectResponseNonNullableFields, type CursorPaging$1 as CursorPaging, type Cursors$1 as Cursors, type index_d$1_DeleteContext as DeleteContext, type index_d$1_DeleteProjectRequest as DeleteProjectRequest, type index_d$1_DeleteProjectResponse as DeleteProjectResponse, type index_d$1_DeleteProjectResponseNonNullableFields as DeleteProjectResponseNonNullableFields, index_d$1_DeleteStatus as DeleteStatus, type index_d$1_DeletedProjectRestored as DeletedProjectRestored, type DetailsLink$1 as DetailsLink, type DomainEvent$1 as DomainEvent, type DomainEventBodyOneOf$1 as DomainEventBodyOneOf, type index_d$1_Empty as Empty, type EntityCreatedEvent$1 as EntityCreatedEvent, type EntityDeletedEvent$1 as EntityDeletedEvent, type EntityUpdatedEvent$1 as EntityUpdatedEvent, type EventMetadata$1 as EventMetadata, type index_d$1_File as File, type index_d$1_GetProjectOptions as GetProjectOptions, type index_d$1_GetProjectPageDataIdentifiers as GetProjectPageDataIdentifiers, type index_d$1_GetProjectPageDataRequest as GetProjectPageDataRequest, type index_d$1_GetProjectPageDataResponse as GetProjectPageDataResponse, type index_d$1_GetProjectPageDataResponseNonNullableFields as GetProjectPageDataResponseNonNullableFields, type index_d$1_GetProjectRequest as GetProjectRequest, type index_d$1_GetProjectResponse as GetProjectResponse, type index_d$1_GetProjectResponseNonNullableFields as GetProjectResponseNonNullableFields, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, type Image$1 as Image, ImageType$1 as ImageType, type index_d$1_InvalidateCache as InvalidateCache, type index_d$1_InvalidateCacheGetByOneOf as InvalidateCacheGetByOneOf, type index_d$1_ItemMetadata as ItemMetadata, type Keyword$1 as Keyword, type index_d$1_ListProjectsOptions as ListProjectsOptions, type index_d$1_ListProjectsRequest as ListProjectsRequest, type index_d$1_ListProjectsResponse as ListProjectsResponse, type index_d$1_ListProjectsResponseNonNullableFields as ListProjectsResponseNonNullableFields, type index_d$1_MaskedProject as MaskedProject, type index_d$1_MenuSettingUpdatedEvent as MenuSettingUpdatedEvent, type MessageEnvelope$1 as MessageEnvelope, type index_d$1_MetaSiteSpecialEvent as MetaSiteSpecialEvent, type index_d$1_MetaSiteSpecialEventPayloadOneOf as MetaSiteSpecialEventPayloadOneOf, index_d$1_Namespace as Namespace, type index_d$1_NamespaceChanged as NamespaceChanged, type index_d$1_Page as Page, type Paging$1 as Paging, type PagingMetadataV2$1 as PagingMetadataV2, type Point$1 as Point, type Project$1 as Project, type ProjectCoverOneOf$1 as ProjectCoverOneOf, type index_d$1_ProjectCreatedEnvelope as ProjectCreatedEnvelope, type index_d$1_ProjectDeletedEnvelope as ProjectDeletedEnvelope, type ProjectDetail$1 as ProjectDetail, type ProjectDetailValueOneOf$1 as ProjectDetailValueOneOf, type ProjectInCollection$1 as ProjectInCollection, type index_d$1_ProjectSlug as ProjectSlug, type ProjectSource$1 as ProjectSource, type index_d$1_ProjectUpdatedEnvelope as ProjectUpdatedEnvelope, type index_d$1_ProjectsQueryBuilder as ProjectsQueryBuilder, type index_d$1_ProjectsQueryResult as ProjectsQueryResult, type index_d$1_QueryProjectWithCollectionInfoRequest as QueryProjectWithCollectionInfoRequest, type index_d$1_QueryProjectWithCollectionInfoResponse as QueryProjectWithCollectionInfoResponse, type index_d$1_QueryProjectWithCollectionInfoResponseNonNullableFields as QueryProjectWithCollectionInfoResponseNonNullableFields, type index_d$1_QueryProjectsOptions as QueryProjectsOptions, type index_d$1_QueryProjectsRequest as QueryProjectsRequest, type index_d$1_QueryProjectsResponse as QueryProjectsResponse, type index_d$1_QueryProjectsResponseNonNullableFields as QueryProjectsResponseNonNullableFields, type index_d$1_QueryProjectsWithCollectionInfoOptions as QueryProjectsWithCollectionInfoOptions, type QueryV2$1 as QueryV2, type QueryV2PagingMethodOneOf$1 as QueryV2PagingMethodOneOf, type index_d$1_RestoreProjectFromTrashBinRequest as RestoreProjectFromTrashBinRequest, type index_d$1_RestoreProjectFromTrashBinResponse as RestoreProjectFromTrashBinResponse, type SeoSchema$1 as SeoSchema, type index_d$1_ServiceProvisioned as ServiceProvisioned, type index_d$1_ServiceRemoved as ServiceRemoved, type Settings$1 as Settings, type index_d$1_SiteCreated as SiteCreated, index_d$1_SiteCreatedContext as SiteCreatedContext, type index_d$1_SiteDeleted as SiteDeleted, type index_d$1_SiteHardDeleted as SiteHardDeleted, type index_d$1_SiteMarkedAsTemplate as SiteMarkedAsTemplate, type index_d$1_SiteMarkedAsWixSite as SiteMarkedAsWixSite, type index_d$1_SitePublished as SitePublished, type index_d$1_SiteRenamed as SiteRenamed, type index_d$1_SiteTransferred as SiteTransferred, type index_d$1_SiteUndeleted as SiteUndeleted, type index_d$1_SiteUnpublished as SiteUnpublished, SortOrder$1 as SortOrder, type Sorting$1 as Sorting, index_d$1_State as State, type index_d$1_StudioAssigned as StudioAssigned, type index_d$1_StudioUnassigned as StudioUnassigned, type index_d$1_SyncProjectWithCollectionMappings as SyncProjectWithCollectionMappings, SyncStatus$1 as SyncStatus, type Tag$1 as Tag, type index_d$1_URI as URI, type UnsharpMasking$1 as UnsharpMasking, type index_d$1_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$1_UpdateProjectRequest as UpdateProjectRequest, type index_d$1_UpdateProjectResponse as UpdateProjectResponse, type index_d$1_UpdateProjectResponseNonNullableFields as UpdateProjectResponseNonNullableFields, type Video$1 as Video, type VideoResolution$1 as VideoResolution, WebhookIdentityType$1 as WebhookIdentityType, __metadata$1 as __metadata, index_d$1_bulkUpdateProjects as bulkUpdateProjects, index_d$1_createProject as createProject, index_d$1_deleteProject as deleteProject, index_d$1_getProject as getProject, index_d$1_getProjectPageData as getProjectPageData, index_d$1_listProjects as listProjects, index_d$1_onProjectCreated as onProjectCreated, index_d$1_onProjectDeleted as onProjectDeleted, index_d$1_onProjectUpdated as onProjectUpdated, index_d$1_queryProjects as queryProjects, index_d$1_queryProjectsWithCollectionInfo as queryProjectsWithCollectionInfo, index_d$1_updateProject as updateProject, updateProjectOrderInCollection$1 as updateProjectOrderInCollection };
3781
+ export { type ActionEvent$1 as ActionEvent, type index_d$1_App as App, type index_d$1_ApplicationError as ApplicationError, type index_d$1_Asset as Asset, type BaseEventMetadata$1 as BaseEventMetadata, type index_d$1_BulkActionMetadata as BulkActionMetadata, type index_d$1_BulkUpdateProjectsOptions as BulkUpdateProjectsOptions, type index_d$1_BulkUpdateProjectsRequest as BulkUpdateProjectsRequest, type index_d$1_BulkUpdateProjectsResponse as BulkUpdateProjectsResponse, type index_d$1_BulkUpdateProjectsResponseNonNullableFields as BulkUpdateProjectsResponseNonNullableFields, type index_d$1_BulkUpdateProjectsResult as BulkUpdateProjectsResult, type index_d$1_CreateNewPortfolioAppRequest as CreateNewPortfolioAppRequest, type index_d$1_CreateNewPortfolioAppResponse as CreateNewPortfolioAppResponse, type index_d$1_CreateProjectRequest as CreateProjectRequest, type index_d$1_CreateProjectResponse as CreateProjectResponse, type index_d$1_CreateProjectResponseNonNullableFields as CreateProjectResponseNonNullableFields, type CursorPaging$1 as CursorPaging, type Cursors$1 as Cursors, type index_d$1_DeleteContext as DeleteContext, type index_d$1_DeleteProjectRequest as DeleteProjectRequest, type index_d$1_DeleteProjectResponse as DeleteProjectResponse, type index_d$1_DeleteProjectResponseNonNullableFields as DeleteProjectResponseNonNullableFields, index_d$1_DeleteStatus as DeleteStatus, type index_d$1_DeletedProjectRestored as DeletedProjectRestored, type DetailsLink$1 as DetailsLink, type DomainEvent$1 as DomainEvent, type DomainEventBodyOneOf$1 as DomainEventBodyOneOf, type index_d$1_Empty as Empty, type EntityCreatedEvent$1 as EntityCreatedEvent, type EntityDeletedEvent$1 as EntityDeletedEvent, type EntityUpdatedEvent$1 as EntityUpdatedEvent, type EventMetadata$1 as EventMetadata, type index_d$1_File as File, type index_d$1_GetProjectOptions as GetProjectOptions, type index_d$1_GetProjectPageDataIdentifiers as GetProjectPageDataIdentifiers, type index_d$1_GetProjectPageDataRequest as GetProjectPageDataRequest, type index_d$1_GetProjectPageDataResponse as GetProjectPageDataResponse, type index_d$1_GetProjectPageDataResponseNonNullableFields as GetProjectPageDataResponseNonNullableFields, type index_d$1_GetProjectRequest as GetProjectRequest, type index_d$1_GetProjectResponse as GetProjectResponse, type index_d$1_GetProjectResponseNonNullableFields as GetProjectResponseNonNullableFields, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, type Image$1 as Image, ImageType$1 as ImageType, type index_d$1_InvalidateCache as InvalidateCache, type index_d$1_InvalidateCacheGetByOneOf as InvalidateCacheGetByOneOf, type index_d$1_ItemMetadata as ItemMetadata, type Keyword$1 as Keyword, type index_d$1_ListProjectsOptions as ListProjectsOptions, type index_d$1_ListProjectsRequest as ListProjectsRequest, type index_d$1_ListProjectsResponse as ListProjectsResponse, type index_d$1_ListProjectsResponseNonNullableFields as ListProjectsResponseNonNullableFields, type index_d$1_MaskedProject as MaskedProject, type index_d$1_MenuSettingUpdatedEvent as MenuSettingUpdatedEvent, type MessageEnvelope$1 as MessageEnvelope, type index_d$1_MetaSiteSpecialEvent as MetaSiteSpecialEvent, type index_d$1_MetaSiteSpecialEventPayloadOneOf as MetaSiteSpecialEventPayloadOneOf, index_d$1_Namespace as Namespace, type index_d$1_NamespaceChanged as NamespaceChanged, type index_d$1_Page as Page, type Paging$1 as Paging, type PagingMetadataV2$1 as PagingMetadataV2, type Point$1 as Point, type Project$1 as Project, type ProjectCoverOneOf$1 as ProjectCoverOneOf, type index_d$1_ProjectCreatedEnvelope as ProjectCreatedEnvelope, type index_d$1_ProjectDeletedEnvelope as ProjectDeletedEnvelope, type ProjectDetail$1 as ProjectDetail, type ProjectDetailValueOneOf$1 as ProjectDetailValueOneOf, type ProjectInCollection$1 as ProjectInCollection, type index_d$1_ProjectSlug as ProjectSlug, type ProjectSource$1 as ProjectSource, type index_d$1_ProjectUpdatedEnvelope as ProjectUpdatedEnvelope, type index_d$1_ProjectsQueryBuilder as ProjectsQueryBuilder, type index_d$1_ProjectsQueryResult as ProjectsQueryResult, type index_d$1_QueryProjectWithCollectionInfoRequest as QueryProjectWithCollectionInfoRequest, type index_d$1_QueryProjectWithCollectionInfoResponse as QueryProjectWithCollectionInfoResponse, type index_d$1_QueryProjectWithCollectionInfoResponseNonNullableFields as QueryProjectWithCollectionInfoResponseNonNullableFields, type index_d$1_QueryProjectsOptions as QueryProjectsOptions, type index_d$1_QueryProjectsRequest as QueryProjectsRequest, type index_d$1_QueryProjectsResponse as QueryProjectsResponse, type index_d$1_QueryProjectsResponseNonNullableFields as QueryProjectsResponseNonNullableFields, type index_d$1_QueryProjectsWithCollectionInfoOptions as QueryProjectsWithCollectionInfoOptions, type QueryV2$1 as QueryV2, type QueryV2PagingMethodOneOf$1 as QueryV2PagingMethodOneOf, type index_d$1_RestoreProjectFromTrashBinRequest as RestoreProjectFromTrashBinRequest, type index_d$1_RestoreProjectFromTrashBinResponse as RestoreProjectFromTrashBinResponse, type SeoSchema$1 as SeoSchema, type index_d$1_ServiceProvisioned as ServiceProvisioned, type index_d$1_ServiceRemoved as ServiceRemoved, type Settings$1 as Settings, type index_d$1_SiteCreated as SiteCreated, index_d$1_SiteCreatedContext as SiteCreatedContext, type index_d$1_SiteDeleted as SiteDeleted, type index_d$1_SiteHardDeleted as SiteHardDeleted, type index_d$1_SiteMarkedAsTemplate as SiteMarkedAsTemplate, type index_d$1_SiteMarkedAsWixSite as SiteMarkedAsWixSite, type index_d$1_SitePublished as SitePublished, type index_d$1_SiteRenamed as SiteRenamed, type index_d$1_SiteTransferred as SiteTransferred, type index_d$1_SiteUndeleted as SiteUndeleted, type index_d$1_SiteUnpublished as SiteUnpublished, SortOrder$1 as SortOrder, type Sorting$1 as Sorting, index_d$1_State as State, type index_d$1_StudioAssigned as StudioAssigned, type index_d$1_StudioUnassigned as StudioUnassigned, type index_d$1_SyncProjectWithCollectionMappings as SyncProjectWithCollectionMappings, SyncStatus$1 as SyncStatus, type Tag$1 as Tag, type index_d$1_URI as URI, type UndeleteInfo$1 as UndeleteInfo, type UnsharpMasking$1 as UnsharpMasking, type index_d$1_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$1_UpdateProjectRequest as UpdateProjectRequest, type index_d$1_UpdateProjectResponse as UpdateProjectResponse, type index_d$1_UpdateProjectResponseNonNullableFields as UpdateProjectResponseNonNullableFields, type Video$1 as Video, type VideoResolution$1 as VideoResolution, WebhookIdentityType$1 as WebhookIdentityType, __metadata$1 as __metadata, index_d$1_bulkUpdateProjects as bulkUpdateProjects, index_d$1_createProject as createProject, index_d$1_deleteProject as deleteProject, index_d$1_getProject as getProject, index_d$1_getProjectPageData as getProjectPageData, index_d$1_listProjects as listProjects, index_d$1_onProjectCreated as onProjectCreated, index_d$1_onProjectDeleted as onProjectDeleted, index_d$1_onProjectUpdated as onProjectUpdated, index_d$1_queryProjects as queryProjects, index_d$1_queryProjectsWithCollectionInfo as queryProjectsWithCollectionInfo, index_d$1_updateProject as updateProject, updateProjectOrderInCollection$1 as updateProjectOrderInCollection };
3758
3782
  }
3759
3783
 
3760
3784
  interface ProjectInCollection {
@@ -3785,7 +3809,7 @@ interface Project extends ProjectCoverOneOf {
3785
3809
  description?: string | null;
3786
3810
  /** indicates if the project should be hidden from Portfolio */
3787
3811
  hidden?: boolean | null;
3788
- /** Collections must exist to be added to a project. can be created/updated/deleted using this //TODO */
3812
+ /** Collections must exist to be added to a project. Can be created/updated/deleted using [Collection Service](https://dev.wix.com/docs/rest/business-solutions/portfolio/collection) */
3789
3813
  collectionIds?: string[];
3790
3814
  /** Custom project details */
3791
3815
  details?: ProjectDetail[];
@@ -3975,6 +3999,7 @@ interface Settings {
3975
3999
  interface QueryProjectInCollectionsRequest {
3976
4000
  /** WQL expression */
3977
4001
  query: QueryV2;
4002
+ /** Include the page URL */
3978
4003
  includePageUrl?: boolean | null;
3979
4004
  }
3980
4005
  interface QueryV2 extends QueryV2PagingMethodOneOf {
@@ -4131,6 +4156,9 @@ interface DomainEventBodyOneOf {
4131
4156
  interface EntityCreatedEvent {
4132
4157
  entity?: string;
4133
4158
  }
4159
+ interface UndeleteInfo {
4160
+ deletedDate?: Date;
4161
+ }
4134
4162
  interface EntityUpdatedEvent {
4135
4163
  /**
4136
4164
  * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
@@ -4313,6 +4341,7 @@ interface ProjectInCollectionProjectOrderInCollectionUpdatedEnvelope {
4313
4341
  metadata: EventMetadata;
4314
4342
  }
4315
4343
  interface QueryProjectInCollectionsOptions {
4344
+ /** Include the page URL */
4316
4345
  includePageUrl?: boolean | null | undefined;
4317
4346
  }
4318
4347
  interface QueryCursorResult {
@@ -4451,6 +4480,7 @@ type index_d_Sorting = Sorting;
4451
4480
  type index_d_SyncStatus = SyncStatus;
4452
4481
  declare const index_d_SyncStatus: typeof SyncStatus;
4453
4482
  type index_d_Tag = Tag;
4483
+ type index_d_UndeleteInfo = UndeleteInfo;
4454
4484
  type index_d_UnsharpMasking = UnsharpMasking;
4455
4485
  type index_d_UpdateProjectOrderInCollectionIdentifiers = UpdateProjectOrderInCollectionIdentifiers;
4456
4486
  type index_d_UpdateProjectOrderInCollectionRequest = UpdateProjectOrderInCollectionRequest;
@@ -4465,7 +4495,7 @@ declare const index_d_onProjectInCollectionProjectOrderInCollectionUpdatedEvent:
4465
4495
  declare const index_d_queryProjectInCollections: typeof queryProjectInCollections;
4466
4496
  declare const index_d_updateProjectOrderInCollection: typeof updateProjectOrderInCollection;
4467
4497
  declare namespace index_d {
4468
- export { type index_d_ActionEvent as ActionEvent, type index_d_BaseEventMetadata as BaseEventMetadata, type index_d_CursorPaging as CursorPaging, type index_d_Cursors as Cursors, type index_d_DetailsLink as DetailsLink, type index_d_DomainEvent as DomainEvent, type index_d_DomainEventBodyOneOf as DomainEventBodyOneOf, type index_d_EntityCreatedEvent as EntityCreatedEvent, type index_d_EntityDeletedEvent as EntityDeletedEvent, type index_d_EntityUpdatedEvent as EntityUpdatedEvent, type index_d_EventMetadata as EventMetadata, type index_d_IdentificationData as IdentificationData, type index_d_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type index_d_Image as Image, index_d_ImageType as ImageType, type index_d_Keyword as Keyword, type index_d_MessageEnvelope as MessageEnvelope, type index_d_Paging as Paging, type index_d_PagingMetadataV2 as PagingMetadataV2, type index_d_Point as Point, type index_d_Project as Project, type index_d_ProjectCoverOneOf as ProjectCoverOneOf, type index_d_ProjectDetail as ProjectDetail, type index_d_ProjectDetailValueOneOf as ProjectDetailValueOneOf, type index_d_ProjectInCollection as ProjectInCollection, type index_d_ProjectInCollectionProjectOrderInCollectionUpdatedEnvelope as ProjectInCollectionProjectOrderInCollectionUpdatedEnvelope, type index_d_ProjectInCollectionsQueryBuilder as ProjectInCollectionsQueryBuilder, type index_d_ProjectInCollectionsQueryResult as ProjectInCollectionsQueryResult, type index_d_ProjectOrderInCollectionUpdatedEvent as ProjectOrderInCollectionUpdatedEvent, type index_d_ProjectSource as ProjectSource, type index_d_QueryProjectInCollectionsOptions as QueryProjectInCollectionsOptions, type index_d_QueryProjectInCollectionsRequest as QueryProjectInCollectionsRequest, type index_d_QueryProjectInCollectionsResponse as QueryProjectInCollectionsResponse, type index_d_QueryProjectInCollectionsResponseNonNullableFields as QueryProjectInCollectionsResponseNonNullableFields, type index_d_QueryV2 as QueryV2, type index_d_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type index_d_SeoSchema as SeoSchema, type index_d_Settings as Settings, index_d_SortOrder as SortOrder, type index_d_Sorting as Sorting, index_d_SyncStatus as SyncStatus, type index_d_Tag as Tag, type index_d_UnsharpMasking as UnsharpMasking, type index_d_UpdateProjectOrderInCollectionIdentifiers as UpdateProjectOrderInCollectionIdentifiers, type index_d_UpdateProjectOrderInCollectionRequest as UpdateProjectOrderInCollectionRequest, type index_d_UpdateProjectOrderInCollectionResponse as UpdateProjectOrderInCollectionResponse, type index_d_UpdateProjectOrderInCollectionResponseNonNullableFields as UpdateProjectOrderInCollectionResponseNonNullableFields, type index_d_Video as Video, type index_d_VideoResolution as VideoResolution, index_d_WebhookIdentityType as WebhookIdentityType, index_d___metadata as __metadata, index_d_onProjectInCollectionProjectOrderInCollectionUpdatedEvent as onProjectInCollectionProjectOrderInCollectionUpdatedEvent, index_d_queryProjectInCollections as queryProjectInCollections, index_d_updateProjectOrderInCollection as updateProjectOrderInCollection };
4498
+ export { type index_d_ActionEvent as ActionEvent, type index_d_BaseEventMetadata as BaseEventMetadata, type index_d_CursorPaging as CursorPaging, type index_d_Cursors as Cursors, type index_d_DetailsLink as DetailsLink, type index_d_DomainEvent as DomainEvent, type index_d_DomainEventBodyOneOf as DomainEventBodyOneOf, type index_d_EntityCreatedEvent as EntityCreatedEvent, type index_d_EntityDeletedEvent as EntityDeletedEvent, type index_d_EntityUpdatedEvent as EntityUpdatedEvent, type index_d_EventMetadata as EventMetadata, type index_d_IdentificationData as IdentificationData, type index_d_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type index_d_Image as Image, index_d_ImageType as ImageType, type index_d_Keyword as Keyword, type index_d_MessageEnvelope as MessageEnvelope, type index_d_Paging as Paging, type index_d_PagingMetadataV2 as PagingMetadataV2, type index_d_Point as Point, type index_d_Project as Project, type index_d_ProjectCoverOneOf as ProjectCoverOneOf, type index_d_ProjectDetail as ProjectDetail, type index_d_ProjectDetailValueOneOf as ProjectDetailValueOneOf, type index_d_ProjectInCollection as ProjectInCollection, type index_d_ProjectInCollectionProjectOrderInCollectionUpdatedEnvelope as ProjectInCollectionProjectOrderInCollectionUpdatedEnvelope, type index_d_ProjectInCollectionsQueryBuilder as ProjectInCollectionsQueryBuilder, type index_d_ProjectInCollectionsQueryResult as ProjectInCollectionsQueryResult, type index_d_ProjectOrderInCollectionUpdatedEvent as ProjectOrderInCollectionUpdatedEvent, type index_d_ProjectSource as ProjectSource, type index_d_QueryProjectInCollectionsOptions as QueryProjectInCollectionsOptions, type index_d_QueryProjectInCollectionsRequest as QueryProjectInCollectionsRequest, type index_d_QueryProjectInCollectionsResponse as QueryProjectInCollectionsResponse, type index_d_QueryProjectInCollectionsResponseNonNullableFields as QueryProjectInCollectionsResponseNonNullableFields, type index_d_QueryV2 as QueryV2, type index_d_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type index_d_SeoSchema as SeoSchema, type index_d_Settings as Settings, index_d_SortOrder as SortOrder, type index_d_Sorting as Sorting, index_d_SyncStatus as SyncStatus, type index_d_Tag as Tag, type index_d_UndeleteInfo as UndeleteInfo, type index_d_UnsharpMasking as UnsharpMasking, type index_d_UpdateProjectOrderInCollectionIdentifiers as UpdateProjectOrderInCollectionIdentifiers, type index_d_UpdateProjectOrderInCollectionRequest as UpdateProjectOrderInCollectionRequest, type index_d_UpdateProjectOrderInCollectionResponse as UpdateProjectOrderInCollectionResponse, type index_d_UpdateProjectOrderInCollectionResponseNonNullableFields as UpdateProjectOrderInCollectionResponseNonNullableFields, type index_d_Video as Video, type index_d_VideoResolution as VideoResolution, index_d_WebhookIdentityType as WebhookIdentityType, index_d___metadata as __metadata, index_d_onProjectInCollectionProjectOrderInCollectionUpdatedEvent as onProjectInCollectionProjectOrderInCollectionUpdatedEvent, index_d_queryProjectInCollections as queryProjectInCollections, index_d_updateProjectOrderInCollection as updateProjectOrderInCollection };
4469
4499
  }
4470
4500
 
4471
4501
  export { index_d$4 as collections, index_d$3 as portfolioSettings, index_d as projectInCollections, index_d$2 as projectItems, index_d$1 as projects };
@@ -10,7 +10,9 @@ interface Collection$1 {
10
10
  * @readonly
11
11
  */
12
12
  revision?: string | null;
13
+ /** Title of Collection */
13
14
  title?: string | null;
15
+ /** Description of Collection */
14
16
  description?: string | null;
15
17
  /** Url of Collection */
16
18
  slug?: string | null;
@@ -35,6 +37,7 @@ interface Collection$1 {
35
37
  * @readonly
36
38
  */
37
39
  url?: PageUrlV2$2;
40
+ /** SEO data for Collection */
38
41
  seoData?: SeoSchema$5;
39
42
  }
40
43
  interface Image$7 {
@@ -138,6 +141,7 @@ interface CreateCollectionResponse$1 {
138
141
  interface GetCollectionRequest$1 {
139
142
  /** Id of the Collection to retrieve */
140
143
  collectionId: string;
144
+ /** Include page url */
141
145
  includePageUrl?: boolean | null;
142
146
  }
143
147
  interface GetCollectionResponse$1 {
@@ -147,6 +151,7 @@ interface GetCollectionResponse$1 {
147
151
  interface ListCollectionsRequest$1 {
148
152
  /** Maximum limit per response is 100, in first request cursor is None */
149
153
  paging?: CursorPaging$5;
154
+ /** Include page url */
150
155
  includePageUrl?: boolean | null;
151
156
  }
152
157
  interface CursorPaging$5 {
@@ -203,6 +208,7 @@ interface DeleteCollectionResponse$1 {
203
208
  interface QueryCollectionsRequest$1 {
204
209
  /** WQL expression */
205
210
  query: QueryV2$5;
211
+ /** Include page url */
206
212
  includePageUrl?: boolean | null;
207
213
  }
208
214
  interface QueryV2$5 extends QueryV2PagingMethodOneOf$5 {
@@ -449,7 +455,9 @@ interface Collection {
449
455
  * @readonly
450
456
  */
451
457
  revision?: string | null;
458
+ /** Title of Collection */
452
459
  title?: string | null;
460
+ /** Description of Collection */
453
461
  description?: string | null;
454
462
  /** Url of Collection */
455
463
  slug?: string | null;
@@ -474,6 +482,7 @@ interface Collection {
474
482
  * @readonly
475
483
  */
476
484
  url?: string;
485
+ /** SEO data for Collection */
477
486
  seoData?: SeoSchema$4;
478
487
  }
479
488
  interface Image$6 {
@@ -549,6 +558,7 @@ interface CreateCollectionResponse {
549
558
  interface GetCollectionRequest {
550
559
  /** Id of the Collection to retrieve */
551
560
  collectionId: string;
561
+ /** Include page url */
552
562
  includePageUrl?: boolean | null;
553
563
  }
554
564
  interface GetCollectionResponse {
@@ -558,6 +568,7 @@ interface GetCollectionResponse {
558
568
  interface ListCollectionsRequest {
559
569
  /** Maximum limit per response is 100, in first request cursor is None */
560
570
  paging?: CursorPaging$4;
571
+ /** Include page url */
561
572
  includePageUrl?: boolean | null;
562
573
  }
563
574
  interface CursorPaging$4 {
@@ -614,6 +625,7 @@ interface DeleteCollectionResponse {
614
625
  interface QueryCollectionsRequest {
615
626
  /** WQL expression */
616
627
  query: QueryV2$4;
628
+ /** Include page url */
617
629
  includePageUrl?: boolean | null;
618
630
  }
619
631
  interface QueryV2$4 extends QueryV2PagingMethodOneOf$4 {
@@ -2140,7 +2152,7 @@ interface Project$3 extends ProjectCoverOneOf$3 {
2140
2152
  description?: string | null;
2141
2153
  /** indicates if the project should be hidden from Portfolio */
2142
2154
  hidden?: boolean | null;
2143
- /** Collections must exist to be added to a project. can be created/updated/deleted using this //TODO */
2155
+ /** Collections must exist to be added to a project. Can be created/updated/deleted using [Collection Service](https://dev.wix.com/docs/rest/business-solutions/portfolio/collection) */
2144
2156
  collectionIds?: string[];
2145
2157
  /** Custom project details */
2146
2158
  details?: ProjectDetail$3[];
@@ -3320,7 +3332,7 @@ interface Project$2 extends ProjectCoverOneOf$2 {
3320
3332
  description?: string | null;
3321
3333
  /** indicates if the project should be hidden from Portfolio */
3322
3334
  hidden?: boolean | null;
3323
- /** Collections must exist to be added to a project. can be created/updated/deleted using this //TODO */
3335
+ /** Collections must exist to be added to a project. Can be created/updated/deleted using [Collection Service](https://dev.wix.com/docs/rest/business-solutions/portfolio/collection) */
3324
3336
  collectionIds?: string[];
3325
3337
  /** Custom project details */
3326
3338
  details?: ProjectDetail$2[];
@@ -4099,7 +4111,7 @@ interface Project$1 extends ProjectCoverOneOf$1 {
4099
4111
  description?: string | null;
4100
4112
  /** indicates if the project should be hidden from Portfolio */
4101
4113
  hidden?: boolean | null;
4102
- /** Collections must exist to be added to a project. can be created/updated/deleted using this //TODO */
4114
+ /** Collections must exist to be added to a project. Can be created/updated/deleted using [Collection Service](https://dev.wix.com/docs/rest/business-solutions/portfolio/collection) */
4103
4115
  collectionIds?: string[];
4104
4116
  /** Custom project details */
4105
4117
  details?: ProjectDetail$1[];
@@ -4288,6 +4300,7 @@ interface Settings$1 {
4288
4300
  interface QueryProjectInCollectionsRequest$1 {
4289
4301
  /** WQL expression */
4290
4302
  query: QueryV2$1;
4303
+ /** Include the page URL */
4291
4304
  includePageUrl?: boolean | null;
4292
4305
  }
4293
4306
  interface QueryV2$1 extends QueryV2PagingMethodOneOf$1 {
@@ -4633,7 +4646,7 @@ interface Project extends ProjectCoverOneOf {
4633
4646
  description?: string | null;
4634
4647
  /** indicates if the project should be hidden from Portfolio */
4635
4648
  hidden?: boolean | null;
4636
- /** Collections must exist to be added to a project. can be created/updated/deleted using this //TODO */
4649
+ /** Collections must exist to be added to a project. Can be created/updated/deleted using [Collection Service](https://dev.wix.com/docs/rest/business-solutions/portfolio/collection) */
4637
4650
  collectionIds?: string[];
4638
4651
  /** Custom project details */
4639
4652
  details?: ProjectDetail[];
@@ -4763,6 +4776,7 @@ interface Settings {
4763
4776
  interface QueryProjectInCollectionsRequest {
4764
4777
  /** WQL expression */
4765
4778
  query: QueryV2;
4779
+ /** Include the page URL */
4766
4780
  includePageUrl?: boolean | null;
4767
4781
  }
4768
4782
  interface QueryV2 extends QueryV2PagingMethodOneOf {