@wix/portfolio 1.0.111 → 1.0.113
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 +5 -5
- package/type-bundles/context.bundle.d.ts +30 -113
- package/type-bundles/index.bundle.d.ts +30 -113
- package/type-bundles/meta.bundle.d.ts +20 -20
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/portfolio",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.113",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -23,9 +23,9 @@
|
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@wix/portfolio_collections": "1.0.36",
|
|
25
25
|
"@wix/portfolio_portfolio-settings": "1.0.22",
|
|
26
|
-
"@wix/portfolio_project-in-collections": "1.0.
|
|
27
|
-
"@wix/portfolio_project-items": "1.0.
|
|
28
|
-
"@wix/portfolio_projects": "1.0.
|
|
26
|
+
"@wix/portfolio_project-in-collections": "1.0.39",
|
|
27
|
+
"@wix/portfolio_project-items": "1.0.41",
|
|
28
|
+
"@wix/portfolio_projects": "1.0.53",
|
|
29
29
|
"@wix/portfolio_synced-project": "1.0.18"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"fqdn": ""
|
|
52
52
|
}
|
|
53
53
|
},
|
|
54
|
-
"falconPackageHash": "
|
|
54
|
+
"falconPackageHash": "d77e1260e2c76584d7a77f2a82d6fc75133fdaa563a89825f6baf862"
|
|
55
55
|
}
|
|
@@ -1578,20 +1578,6 @@ interface Link {
|
|
|
1578
1578
|
*/
|
|
1579
1579
|
target?: string | null;
|
|
1580
1580
|
}
|
|
1581
|
-
interface GenerateTokenForProjectItemsRequest {
|
|
1582
|
-
/** Media ids of requested project items */
|
|
1583
|
-
mediaIds?: string[];
|
|
1584
|
-
}
|
|
1585
|
-
interface GenerateTokenForProjectItemsResponse {
|
|
1586
|
-
/** Generated media tokens for project items */
|
|
1587
|
-
mediaTokens?: ProjectItemMediaToken[];
|
|
1588
|
-
}
|
|
1589
|
-
interface ProjectItemMediaToken {
|
|
1590
|
-
/** Media id of project item */
|
|
1591
|
-
mediaId?: string;
|
|
1592
|
-
/** Generated media token for project item */
|
|
1593
|
-
mediaToken?: string;
|
|
1594
|
-
}
|
|
1595
1581
|
interface InvalidateCache$1 extends InvalidateCacheGetByOneOf$1 {
|
|
1596
1582
|
/** Invalidate by msId. NOT recommended, as this will invalidate the entire site cache! */
|
|
1597
1583
|
metaSiteId?: string;
|
|
@@ -1726,8 +1712,8 @@ interface ListProjectItemsResponse {
|
|
|
1726
1712
|
/** Project items. */
|
|
1727
1713
|
items?: Item[];
|
|
1728
1714
|
/**
|
|
1729
|
-
* Paging metadata.
|
|
1730
1715
|
* @deprecated
|
|
1716
|
+
* @targetRemovalDate 2025-05-25
|
|
1731
1717
|
*/
|
|
1732
1718
|
pagingMetadataV2?: PagingMetadataV2$3;
|
|
1733
1719
|
/** Paging metadata. */
|
|
@@ -1826,7 +1812,7 @@ interface BulkUpdateProjectItemsRequest {
|
|
|
1826
1812
|
returnFullEntity?: boolean | null;
|
|
1827
1813
|
}
|
|
1828
1814
|
interface MaskedItem {
|
|
1829
|
-
/** Item to be updated */
|
|
1815
|
+
/** Item to be updated. */
|
|
1830
1816
|
item?: Item;
|
|
1831
1817
|
}
|
|
1832
1818
|
interface BulkUpdateProjectItemsResponse {
|
|
@@ -2007,6 +1993,20 @@ declare enum WebhookIdentityType$3 {
|
|
|
2007
1993
|
WIX_USER = "WIX_USER",
|
|
2008
1994
|
APP = "APP"
|
|
2009
1995
|
}
|
|
1996
|
+
interface GenerateTokenForProjectItemsRequest {
|
|
1997
|
+
/** Media ids of requested project items */
|
|
1998
|
+
mediaIds?: string[];
|
|
1999
|
+
}
|
|
2000
|
+
interface GenerateTokenForProjectItemsResponse {
|
|
2001
|
+
/** Generated media tokens for project items */
|
|
2002
|
+
mediaTokens?: ProjectItemMediaToken[];
|
|
2003
|
+
}
|
|
2004
|
+
interface ProjectItemMediaToken {
|
|
2005
|
+
/** Media id of project item */
|
|
2006
|
+
mediaId?: string;
|
|
2007
|
+
/** Generated media token for project item */
|
|
2008
|
+
mediaToken?: string;
|
|
2009
|
+
}
|
|
2010
2010
|
interface PointNonNullableFields$2 {
|
|
2011
2011
|
x: number;
|
|
2012
2012
|
y: number;
|
|
@@ -2093,63 +2093,6 @@ interface DuplicateProjectItemsResponseNonNullableFields {
|
|
|
2093
2093
|
projectId: string;
|
|
2094
2094
|
bulkActionMetadata?: BulkActionMetadataNonNullableFields$1;
|
|
2095
2095
|
}
|
|
2096
|
-
interface BaseEventMetadata$2 {
|
|
2097
|
-
/** App instance ID. */
|
|
2098
|
-
instanceId?: string | null;
|
|
2099
|
-
/** Event type. */
|
|
2100
|
-
eventType?: string;
|
|
2101
|
-
/** The identification type and identity data. */
|
|
2102
|
-
identity?: IdentificationData$3;
|
|
2103
|
-
}
|
|
2104
|
-
interface EventMetadata$2 extends BaseEventMetadata$2 {
|
|
2105
|
-
/**
|
|
2106
|
-
* Unique event ID.
|
|
2107
|
-
* Allows clients to ignore duplicate webhooks.
|
|
2108
|
-
*/
|
|
2109
|
-
_id?: string;
|
|
2110
|
-
/**
|
|
2111
|
-
* Assumes actions are also always typed to an entity_type
|
|
2112
|
-
* Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
|
|
2113
|
-
*/
|
|
2114
|
-
entityFqdn?: string;
|
|
2115
|
-
/**
|
|
2116
|
-
* This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
|
|
2117
|
-
* This is although the created/updated/deleted notion is duplication of the oneof types
|
|
2118
|
-
* Example: created/updated/deleted/started/completed/email_opened
|
|
2119
|
-
*/
|
|
2120
|
-
slug?: string;
|
|
2121
|
-
/** ID of the entity associated with the event. */
|
|
2122
|
-
entityId?: string;
|
|
2123
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
2124
|
-
eventTime?: Date | null;
|
|
2125
|
-
/**
|
|
2126
|
-
* Whether the event was triggered as a result of a privacy regulation application
|
|
2127
|
-
* (for example, GDPR).
|
|
2128
|
-
*/
|
|
2129
|
-
triggeredByAnonymizeRequest?: boolean | null;
|
|
2130
|
-
/** If present, indicates the action that triggered the event. */
|
|
2131
|
-
originatedFrom?: string | null;
|
|
2132
|
-
/**
|
|
2133
|
-
* A sequence number defining the order of updates to the underlying entity.
|
|
2134
|
-
* For example, given that some entity was updated at 16:00 and than again at 16:01,
|
|
2135
|
-
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
2136
|
-
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
2137
|
-
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
2138
|
-
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
2139
|
-
*/
|
|
2140
|
-
entityEventSequence?: string | null;
|
|
2141
|
-
}
|
|
2142
|
-
interface ProjectItemCreatedEnvelope {
|
|
2143
|
-
entity: Item;
|
|
2144
|
-
metadata: EventMetadata$2;
|
|
2145
|
-
}
|
|
2146
|
-
interface ProjectItemDeletedEnvelope {
|
|
2147
|
-
metadata: EventMetadata$2;
|
|
2148
|
-
}
|
|
2149
|
-
interface ProjectItemUpdatedEnvelope {
|
|
2150
|
-
entity: Item;
|
|
2151
|
-
metadata: EventMetadata$2;
|
|
2152
|
-
}
|
|
2153
2096
|
interface BulkCreateProjectItemsOptions {
|
|
2154
2097
|
/** Project items to create. */
|
|
2155
2098
|
items: Item[];
|
|
@@ -2299,11 +2242,6 @@ interface DuplicateProjectItemsSignature {
|
|
|
2299
2242
|
*/
|
|
2300
2243
|
(originProjectId: string, options: DuplicateProjectItemsOptions): Promise<DuplicateProjectItemsResponse & DuplicateProjectItemsResponseNonNullableFields>;
|
|
2301
2244
|
}
|
|
2302
|
-
declare const onProjectItemCreated$1: EventDefinition<ProjectItemCreatedEnvelope, "wix.portfolio.project_items.v1.project_item_created">;
|
|
2303
|
-
declare const onProjectItemDeleted$1: EventDefinition<ProjectItemDeletedEnvelope, "wix.portfolio.project_items.v1.project_item_deleted">;
|
|
2304
|
-
declare const onProjectItemUpdated$1: EventDefinition<ProjectItemUpdatedEnvelope, "wix.portfolio.project_items.v1.project_item_updated">;
|
|
2305
|
-
|
|
2306
|
-
declare function createEventModule$2<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
2307
2245
|
|
|
2308
2246
|
declare const createProjectItem: MaybeContext<BuildRESTFunction<typeof createProjectItem$1> & typeof createProjectItem$1>;
|
|
2309
2247
|
declare const bulkCreateProjectItems: MaybeContext<BuildRESTFunction<typeof bulkCreateProjectItems$1> & typeof bulkCreateProjectItems$1>;
|
|
@@ -2315,18 +2253,6 @@ declare const deleteProjectItem: MaybeContext<BuildRESTFunction<typeof deletePro
|
|
|
2315
2253
|
declare const bulkDeleteProjectItems: MaybeContext<BuildRESTFunction<typeof bulkDeleteProjectItems$1> & typeof bulkDeleteProjectItems$1>;
|
|
2316
2254
|
declare const duplicateProjectItems: MaybeContext<BuildRESTFunction<typeof duplicateProjectItems$1> & typeof duplicateProjectItems$1>;
|
|
2317
2255
|
|
|
2318
|
-
type _publicOnProjectItemCreatedType = typeof onProjectItemCreated$1;
|
|
2319
|
-
/** */
|
|
2320
|
-
declare const onProjectItemCreated: ReturnType<typeof createEventModule$2<_publicOnProjectItemCreatedType>>;
|
|
2321
|
-
|
|
2322
|
-
type _publicOnProjectItemDeletedType = typeof onProjectItemDeleted$1;
|
|
2323
|
-
/** */
|
|
2324
|
-
declare const onProjectItemDeleted: ReturnType<typeof createEventModule$2<_publicOnProjectItemDeletedType>>;
|
|
2325
|
-
|
|
2326
|
-
type _publicOnProjectItemUpdatedType = typeof onProjectItemUpdated$1;
|
|
2327
|
-
/** */
|
|
2328
|
-
declare const onProjectItemUpdated: ReturnType<typeof createEventModule$2<_publicOnProjectItemUpdatedType>>;
|
|
2329
|
-
|
|
2330
2256
|
type context$3_BulkCreateProjectItemResult = BulkCreateProjectItemResult;
|
|
2331
2257
|
type context$3_BulkCreateProjectItemsOptions = BulkCreateProjectItemsOptions;
|
|
2332
2258
|
type context$3_BulkCreateProjectItemsRequest = BulkCreateProjectItemsRequest;
|
|
@@ -2368,10 +2294,7 @@ type context$3_ListProjectItemsRequest = ListProjectItemsRequest;
|
|
|
2368
2294
|
type context$3_ListProjectItemsResponse = ListProjectItemsResponse;
|
|
2369
2295
|
type context$3_ListProjectItemsResponseNonNullableFields = ListProjectItemsResponseNonNullableFields;
|
|
2370
2296
|
type context$3_MaskedItem = MaskedItem;
|
|
2371
|
-
type context$3_ProjectItemCreatedEnvelope = ProjectItemCreatedEnvelope;
|
|
2372
|
-
type context$3_ProjectItemDeletedEnvelope = ProjectItemDeletedEnvelope;
|
|
2373
2297
|
type context$3_ProjectItemMediaToken = ProjectItemMediaToken;
|
|
2374
|
-
type context$3_ProjectItemUpdatedEnvelope = ProjectItemUpdatedEnvelope;
|
|
2375
2298
|
type context$3_QueryProjectItemsRequest = QueryProjectItemsRequest;
|
|
2376
2299
|
type context$3_QueryProjectItemsResponse = QueryProjectItemsResponse;
|
|
2377
2300
|
type context$3_Tags = Tags;
|
|
@@ -2381,9 +2304,6 @@ type context$3_UpdateProjectItem = UpdateProjectItem;
|
|
|
2381
2304
|
type context$3_UpdateProjectItemRequest = UpdateProjectItemRequest;
|
|
2382
2305
|
type context$3_UpdateProjectItemResponse = UpdateProjectItemResponse;
|
|
2383
2306
|
type context$3_UpdateProjectItemResponseNonNullableFields = UpdateProjectItemResponseNonNullableFields;
|
|
2384
|
-
type context$3__publicOnProjectItemCreatedType = _publicOnProjectItemCreatedType;
|
|
2385
|
-
type context$3__publicOnProjectItemDeletedType = _publicOnProjectItemDeletedType;
|
|
2386
|
-
type context$3__publicOnProjectItemUpdatedType = _publicOnProjectItemUpdatedType;
|
|
2387
2307
|
declare const context$3_bulkCreateProjectItems: typeof bulkCreateProjectItems;
|
|
2388
2308
|
declare const context$3_bulkDeleteProjectItems: typeof bulkDeleteProjectItems;
|
|
2389
2309
|
declare const context$3_bulkUpdateProjectItems: typeof bulkUpdateProjectItems;
|
|
@@ -2392,12 +2312,9 @@ declare const context$3_deleteProjectItem: typeof deleteProjectItem;
|
|
|
2392
2312
|
declare const context$3_duplicateProjectItems: typeof duplicateProjectItems;
|
|
2393
2313
|
declare const context$3_getProjectItem: typeof getProjectItem;
|
|
2394
2314
|
declare const context$3_listProjectItems: typeof listProjectItems;
|
|
2395
|
-
declare const context$3_onProjectItemCreated: typeof onProjectItemCreated;
|
|
2396
|
-
declare const context$3_onProjectItemDeleted: typeof onProjectItemDeleted;
|
|
2397
|
-
declare const context$3_onProjectItemUpdated: typeof onProjectItemUpdated;
|
|
2398
2315
|
declare const context$3_updateProjectItem: typeof updateProjectItem;
|
|
2399
2316
|
declare namespace context$3 {
|
|
2400
|
-
export { type ActionEvent$3 as ActionEvent, type App$1 as App, type ApplicationError$1 as ApplicationError, type
|
|
2317
|
+
export { type ActionEvent$3 as ActionEvent, type App$1 as App, type ApplicationError$1 as ApplicationError, type BulkActionMetadata$1 as BulkActionMetadata, type context$3_BulkCreateProjectItemResult as BulkCreateProjectItemResult, type context$3_BulkCreateProjectItemsOptions as BulkCreateProjectItemsOptions, type context$3_BulkCreateProjectItemsRequest as BulkCreateProjectItemsRequest, type context$3_BulkCreateProjectItemsResponse as BulkCreateProjectItemsResponse, type context$3_BulkCreateProjectItemsResponseNonNullableFields as BulkCreateProjectItemsResponseNonNullableFields, type context$3_BulkDeleteProjectItemResult as BulkDeleteProjectItemResult, type context$3_BulkDeleteProjectItemsOptions as BulkDeleteProjectItemsOptions, type context$3_BulkDeleteProjectItemsRequest as BulkDeleteProjectItemsRequest, type context$3_BulkDeleteProjectItemsResponse as BulkDeleteProjectItemsResponse, type context$3_BulkDeleteProjectItemsResponseNonNullableFields as BulkDeleteProjectItemsResponseNonNullableFields, type context$3_BulkUpdateProjectItemResult as BulkUpdateProjectItemResult, type context$3_BulkUpdateProjectItemsOptions as BulkUpdateProjectItemsOptions, type context$3_BulkUpdateProjectItemsRequest as BulkUpdateProjectItemsRequest, type context$3_BulkUpdateProjectItemsResponse as BulkUpdateProjectItemsResponse, type context$3_BulkUpdateProjectItemsResponseNonNullableFields as BulkUpdateProjectItemsResponseNonNullableFields, type context$3_CreateProjectGalleryRequest as CreateProjectGalleryRequest, type context$3_CreateProjectGalleryResponse as CreateProjectGalleryResponse, type context$3_CreateProjectItemRequest as CreateProjectItemRequest, type context$3_CreateProjectItemResponse as CreateProjectItemResponse, type context$3_CreateProjectItemResponseNonNullableFields as CreateProjectItemResponseNonNullableFields, type CursorPaging$3 as CursorPaging, type Cursors$3 as Cursors, type context$3_DeleteProjectItemRequest as DeleteProjectItemRequest, type context$3_DeleteProjectItemResponse as DeleteProjectItemResponse, type context$3_DeleteProjectItemResponseNonNullableFields as DeleteProjectItemResponseNonNullableFields, type DeletedProjectRestored$1 as DeletedProjectRestored, type DomainEvent$3 as DomainEvent, type DomainEventBodyOneOf$3 as DomainEventBodyOneOf, type context$3_DuplicateProjectItemsOptions as DuplicateProjectItemsOptions, type context$3_DuplicateProjectItemsRequest as DuplicateProjectItemsRequest, type context$3_DuplicateProjectItemsResponse as DuplicateProjectItemsResponse, type context$3_DuplicateProjectItemsResponseNonNullableFields as DuplicateProjectItemsResponseNonNullableFields, type Empty$2 as Empty, type EntityCreatedEvent$3 as EntityCreatedEvent, type EntityDeletedEvent$3 as EntityDeletedEvent, type EntityUpdatedEvent$3 as EntityUpdatedEvent, type File$1 as File, type context$3_GenerateTokenForProjectItemsRequest as GenerateTokenForProjectItemsRequest, type context$3_GenerateTokenForProjectItemsResponse as GenerateTokenForProjectItemsResponse, type context$3_GetProjectItemRequest as GetProjectItemRequest, type context$3_GetProjectItemResponse as GetProjectItemResponse, type context$3_GetProjectItemResponseNonNullableFields as GetProjectItemResponseNonNullableFields, type IdentificationData$3 as IdentificationData, type IdentificationDataIdOneOf$3 as IdentificationDataIdOneOf, type Image$2 as Image, ImageType$2 as ImageType, type InvalidateCache$1 as InvalidateCache, type InvalidateCacheGetByOneOf$1 as InvalidateCacheGetByOneOf, type context$3_Item as Item, type ItemMetadata$1 as ItemMetadata, type context$3_ItemMetadataOneOf as ItemMetadataOneOf, type context$3_ItemNonNullableFields as ItemNonNullableFields, type context$3_Link as Link, type context$3_ListProjectItemsOptions as ListProjectItemsOptions, type context$3_ListProjectItemsRequest as ListProjectItemsRequest, type context$3_ListProjectItemsResponse as ListProjectItemsResponse, type context$3_ListProjectItemsResponseNonNullableFields as ListProjectItemsResponseNonNullableFields, type context$3_MaskedItem as MaskedItem, type MessageEnvelope$3 as MessageEnvelope, type Page$1 as Page, type Paging$2 as Paging, type PagingMetadataV2$3 as PagingMetadataV2, type Point$2 as Point, type context$3_ProjectItemMediaToken as ProjectItemMediaToken, type context$3_QueryProjectItemsRequest as QueryProjectItemsRequest, type context$3_QueryProjectItemsResponse as QueryProjectItemsResponse, type QueryV2$2 as QueryV2, type QueryV2PagingMethodOneOf$2 as QueryV2PagingMethodOneOf, type RestoreInfo$3 as RestoreInfo, SortOrder$2 as SortOrder, type Sorting$2 as Sorting, type context$3_Tags as Tags, context$3_Type as Type, type URI$1 as URI, type UnsharpMasking$2 as UnsharpMasking, type context$3_UpdateProjectItem as UpdateProjectItem, type context$3_UpdateProjectItemRequest as UpdateProjectItemRequest, type context$3_UpdateProjectItemResponse as UpdateProjectItemResponse, type context$3_UpdateProjectItemResponseNonNullableFields as UpdateProjectItemResponseNonNullableFields, type Video$2 as Video, type VideoResolution$2 as VideoResolution, WebhookIdentityType$3 as WebhookIdentityType, context$3_bulkCreateProjectItems as bulkCreateProjectItems, context$3_bulkDeleteProjectItems as bulkDeleteProjectItems, context$3_bulkUpdateProjectItems as bulkUpdateProjectItems, context$3_createProjectItem as createProjectItem, context$3_deleteProjectItem as deleteProjectItem, context$3_duplicateProjectItems as duplicateProjectItems, context$3_getProjectItem as getProjectItem, context$3_listProjectItems as listProjectItems, context$3_updateProjectItem as updateProjectItem };
|
|
2401
2318
|
}
|
|
2402
2319
|
|
|
2403
2320
|
interface Project$1 extends ProjectCoverOneOf$1 {
|
|
@@ -2438,7 +2355,7 @@ interface Project$1 extends ProjectCoverOneOf$1 {
|
|
|
2438
2355
|
*/
|
|
2439
2356
|
_updatedDate?: Date | null;
|
|
2440
2357
|
/**
|
|
2441
|
-
* Project's page URL and relative path.
|
|
2358
|
+
* Project's page URL and relative path.
|
|
2442
2359
|
* @readonly
|
|
2443
2360
|
*/
|
|
2444
2361
|
url?: string;
|
|
@@ -3046,7 +2963,7 @@ interface CreateProjectResponse {
|
|
|
3046
2963
|
interface GetProjectRequest {
|
|
3047
2964
|
/** ID of the project to retrieve. */
|
|
3048
2965
|
projectId: string;
|
|
3049
|
-
/**
|
|
2966
|
+
/** Whether to include the project's relative path and full URL in the response. Default: `false` */
|
|
3050
2967
|
includePageUrl?: boolean | null;
|
|
3051
2968
|
}
|
|
3052
2969
|
interface GetProjectResponse {
|
|
@@ -3056,7 +2973,7 @@ interface GetProjectResponse {
|
|
|
3056
2973
|
interface ListProjectsRequest {
|
|
3057
2974
|
/** Projects limit per response is maximum 100, In the first request the cursor is None ? */
|
|
3058
2975
|
paging?: CursorPaging$2;
|
|
3059
|
-
/**
|
|
2976
|
+
/** Whether to include the project's relative path and full URL in the response. Default: `false` */
|
|
3060
2977
|
includePageUrl?: boolean | null;
|
|
3061
2978
|
}
|
|
3062
2979
|
interface CursorPaging$2 {
|
|
@@ -3073,7 +2990,7 @@ interface CursorPaging$2 {
|
|
|
3073
2990
|
interface ListProjectsResponse {
|
|
3074
2991
|
/** List of projects. */
|
|
3075
2992
|
projects?: Project$1[];
|
|
3076
|
-
/** Paging metadata
|
|
2993
|
+
/** Paging metadata. */
|
|
3077
2994
|
metadata?: PagingMetadataV2$2;
|
|
3078
2995
|
}
|
|
3079
2996
|
interface PagingMetadataV2$2 {
|
|
@@ -3105,7 +3022,7 @@ interface UpdateProjectResponse {
|
|
|
3105
3022
|
interface BulkUpdateProjectsRequest {
|
|
3106
3023
|
/** Projects to update. */
|
|
3107
3024
|
projects?: MaskedProject[];
|
|
3108
|
-
/** Whether to include the updated projects in the response. Set to `true
|
|
3025
|
+
/** Whether to include the updated projects in the response. Set to `true` to receive the projects in the response. */
|
|
3109
3026
|
returnFullEntity?: boolean | null;
|
|
3110
3027
|
}
|
|
3111
3028
|
interface MaskedProject {
|
|
@@ -3161,7 +3078,7 @@ interface DeleteProjectResponse {
|
|
|
3161
3078
|
interface QueryProjectsRequest {
|
|
3162
3079
|
/** Query options. */
|
|
3163
3080
|
query: QueryV2$1;
|
|
3164
|
-
/**
|
|
3081
|
+
/** Whether to include the project's relative path and full URL in the response. Default: `false` */
|
|
3165
3082
|
includePageUrl?: boolean | null;
|
|
3166
3083
|
}
|
|
3167
3084
|
interface QueryV2$1 extends QueryV2PagingMethodOneOf$1 {
|
|
@@ -3212,7 +3129,7 @@ interface Paging$1 {
|
|
|
3212
3129
|
interface QueryProjectsResponse {
|
|
3213
3130
|
/** List of projects. */
|
|
3214
3131
|
projects?: Project$1[];
|
|
3215
|
-
/** Paging metadata
|
|
3132
|
+
/** Paging metadata. */
|
|
3216
3133
|
metadata?: PagingMetadataV2$2;
|
|
3217
3134
|
}
|
|
3218
3135
|
interface UpdateProjectOrderInCollectionRequest$1 {
|
|
@@ -3493,13 +3410,13 @@ interface ProjectUpdatedEnvelope {
|
|
|
3493
3410
|
metadata: EventMetadata$1;
|
|
3494
3411
|
}
|
|
3495
3412
|
interface GetProjectOptions {
|
|
3496
|
-
/**
|
|
3413
|
+
/** Whether to include the project's relative path and full URL in the response. Default: `false` */
|
|
3497
3414
|
includePageUrl?: boolean | null;
|
|
3498
3415
|
}
|
|
3499
3416
|
interface ListProjectsOptions {
|
|
3500
3417
|
/** Projects limit per response is maximum 100, In the first request the cursor is None ? */
|
|
3501
3418
|
paging?: CursorPaging$2;
|
|
3502
|
-
/**
|
|
3419
|
+
/** Whether to include the project's relative path and full URL in the response. Default: `false` */
|
|
3503
3420
|
includePageUrl?: boolean | null;
|
|
3504
3421
|
}
|
|
3505
3422
|
interface UpdateProject {
|
|
@@ -3540,7 +3457,7 @@ interface UpdateProject {
|
|
|
3540
3457
|
*/
|
|
3541
3458
|
_updatedDate?: Date | null;
|
|
3542
3459
|
/**
|
|
3543
|
-
* Project's page URL and relative path.
|
|
3460
|
+
* Project's page URL and relative path.
|
|
3544
3461
|
* @readonly
|
|
3545
3462
|
*/
|
|
3546
3463
|
url?: string;
|
|
@@ -3550,11 +3467,11 @@ interface UpdateProject {
|
|
|
3550
3467
|
interface BulkUpdateProjectsOptions {
|
|
3551
3468
|
/** Projects to update. */
|
|
3552
3469
|
projects?: MaskedProject[];
|
|
3553
|
-
/** Whether to include the updated projects in the response. Set to `true
|
|
3470
|
+
/** Whether to include the updated projects in the response. Set to `true` to receive the projects in the response. */
|
|
3554
3471
|
returnFullEntity?: boolean | null;
|
|
3555
3472
|
}
|
|
3556
3473
|
interface QueryProjectsOptions {
|
|
3557
|
-
/**
|
|
3474
|
+
/** Whether to include the project's relative path and full URL in the response. Default: `false` */
|
|
3558
3475
|
includePageUrl?: boolean | null | undefined;
|
|
3559
3476
|
}
|
|
3560
3477
|
interface QueryCursorResult {
|
|
@@ -3892,7 +3809,7 @@ interface Project extends ProjectCoverOneOf {
|
|
|
3892
3809
|
*/
|
|
3893
3810
|
_updatedDate?: Date | null;
|
|
3894
3811
|
/**
|
|
3895
|
-
* Project's page URL and relative path.
|
|
3812
|
+
* Project's page URL and relative path.
|
|
3896
3813
|
* @readonly
|
|
3897
3814
|
*/
|
|
3898
3815
|
url?: string;
|
|
@@ -1578,20 +1578,6 @@ interface Link {
|
|
|
1578
1578
|
*/
|
|
1579
1579
|
target?: string | null;
|
|
1580
1580
|
}
|
|
1581
|
-
interface GenerateTokenForProjectItemsRequest {
|
|
1582
|
-
/** Media ids of requested project items */
|
|
1583
|
-
mediaIds?: string[];
|
|
1584
|
-
}
|
|
1585
|
-
interface GenerateTokenForProjectItemsResponse {
|
|
1586
|
-
/** Generated media tokens for project items */
|
|
1587
|
-
mediaTokens?: ProjectItemMediaToken[];
|
|
1588
|
-
}
|
|
1589
|
-
interface ProjectItemMediaToken {
|
|
1590
|
-
/** Media id of project item */
|
|
1591
|
-
mediaId?: string;
|
|
1592
|
-
/** Generated media token for project item */
|
|
1593
|
-
mediaToken?: string;
|
|
1594
|
-
}
|
|
1595
1581
|
interface InvalidateCache$1 extends InvalidateCacheGetByOneOf$1 {
|
|
1596
1582
|
/** Invalidate by msId. NOT recommended, as this will invalidate the entire site cache! */
|
|
1597
1583
|
metaSiteId?: string;
|
|
@@ -1726,8 +1712,8 @@ interface ListProjectItemsResponse {
|
|
|
1726
1712
|
/** Project items. */
|
|
1727
1713
|
items?: Item[];
|
|
1728
1714
|
/**
|
|
1729
|
-
* Paging metadata.
|
|
1730
1715
|
* @deprecated
|
|
1716
|
+
* @targetRemovalDate 2025-05-25
|
|
1731
1717
|
*/
|
|
1732
1718
|
pagingMetadataV2?: PagingMetadataV2$3;
|
|
1733
1719
|
/** Paging metadata. */
|
|
@@ -1826,7 +1812,7 @@ interface BulkUpdateProjectItemsRequest {
|
|
|
1826
1812
|
returnFullEntity?: boolean | null;
|
|
1827
1813
|
}
|
|
1828
1814
|
interface MaskedItem {
|
|
1829
|
-
/** Item to be updated */
|
|
1815
|
+
/** Item to be updated. */
|
|
1830
1816
|
item?: Item;
|
|
1831
1817
|
}
|
|
1832
1818
|
interface BulkUpdateProjectItemsResponse {
|
|
@@ -2007,6 +1993,20 @@ declare enum WebhookIdentityType$3 {
|
|
|
2007
1993
|
WIX_USER = "WIX_USER",
|
|
2008
1994
|
APP = "APP"
|
|
2009
1995
|
}
|
|
1996
|
+
interface GenerateTokenForProjectItemsRequest {
|
|
1997
|
+
/** Media ids of requested project items */
|
|
1998
|
+
mediaIds?: string[];
|
|
1999
|
+
}
|
|
2000
|
+
interface GenerateTokenForProjectItemsResponse {
|
|
2001
|
+
/** Generated media tokens for project items */
|
|
2002
|
+
mediaTokens?: ProjectItemMediaToken[];
|
|
2003
|
+
}
|
|
2004
|
+
interface ProjectItemMediaToken {
|
|
2005
|
+
/** Media id of project item */
|
|
2006
|
+
mediaId?: string;
|
|
2007
|
+
/** Generated media token for project item */
|
|
2008
|
+
mediaToken?: string;
|
|
2009
|
+
}
|
|
2010
2010
|
interface PointNonNullableFields$2 {
|
|
2011
2011
|
x: number;
|
|
2012
2012
|
y: number;
|
|
@@ -2093,63 +2093,6 @@ interface DuplicateProjectItemsResponseNonNullableFields {
|
|
|
2093
2093
|
projectId: string;
|
|
2094
2094
|
bulkActionMetadata?: BulkActionMetadataNonNullableFields$1;
|
|
2095
2095
|
}
|
|
2096
|
-
interface BaseEventMetadata$2 {
|
|
2097
|
-
/** App instance ID. */
|
|
2098
|
-
instanceId?: string | null;
|
|
2099
|
-
/** Event type. */
|
|
2100
|
-
eventType?: string;
|
|
2101
|
-
/** The identification type and identity data. */
|
|
2102
|
-
identity?: IdentificationData$3;
|
|
2103
|
-
}
|
|
2104
|
-
interface EventMetadata$2 extends BaseEventMetadata$2 {
|
|
2105
|
-
/**
|
|
2106
|
-
* Unique event ID.
|
|
2107
|
-
* Allows clients to ignore duplicate webhooks.
|
|
2108
|
-
*/
|
|
2109
|
-
_id?: string;
|
|
2110
|
-
/**
|
|
2111
|
-
* Assumes actions are also always typed to an entity_type
|
|
2112
|
-
* Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
|
|
2113
|
-
*/
|
|
2114
|
-
entityFqdn?: string;
|
|
2115
|
-
/**
|
|
2116
|
-
* This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
|
|
2117
|
-
* This is although the created/updated/deleted notion is duplication of the oneof types
|
|
2118
|
-
* Example: created/updated/deleted/started/completed/email_opened
|
|
2119
|
-
*/
|
|
2120
|
-
slug?: string;
|
|
2121
|
-
/** ID of the entity associated with the event. */
|
|
2122
|
-
entityId?: string;
|
|
2123
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
2124
|
-
eventTime?: Date | null;
|
|
2125
|
-
/**
|
|
2126
|
-
* Whether the event was triggered as a result of a privacy regulation application
|
|
2127
|
-
* (for example, GDPR).
|
|
2128
|
-
*/
|
|
2129
|
-
triggeredByAnonymizeRequest?: boolean | null;
|
|
2130
|
-
/** If present, indicates the action that triggered the event. */
|
|
2131
|
-
originatedFrom?: string | null;
|
|
2132
|
-
/**
|
|
2133
|
-
* A sequence number defining the order of updates to the underlying entity.
|
|
2134
|
-
* For example, given that some entity was updated at 16:00 and than again at 16:01,
|
|
2135
|
-
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
2136
|
-
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
2137
|
-
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
2138
|
-
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
2139
|
-
*/
|
|
2140
|
-
entityEventSequence?: string | null;
|
|
2141
|
-
}
|
|
2142
|
-
interface ProjectItemCreatedEnvelope {
|
|
2143
|
-
entity: Item;
|
|
2144
|
-
metadata: EventMetadata$2;
|
|
2145
|
-
}
|
|
2146
|
-
interface ProjectItemDeletedEnvelope {
|
|
2147
|
-
metadata: EventMetadata$2;
|
|
2148
|
-
}
|
|
2149
|
-
interface ProjectItemUpdatedEnvelope {
|
|
2150
|
-
entity: Item;
|
|
2151
|
-
metadata: EventMetadata$2;
|
|
2152
|
-
}
|
|
2153
2096
|
interface BulkCreateProjectItemsOptions {
|
|
2154
2097
|
/** Project items to create. */
|
|
2155
2098
|
items: Item[];
|
|
@@ -2299,11 +2242,6 @@ interface DuplicateProjectItemsSignature {
|
|
|
2299
2242
|
*/
|
|
2300
2243
|
(originProjectId: string, options: DuplicateProjectItemsOptions): Promise<DuplicateProjectItemsResponse & DuplicateProjectItemsResponseNonNullableFields>;
|
|
2301
2244
|
}
|
|
2302
|
-
declare const onProjectItemCreated$1: EventDefinition<ProjectItemCreatedEnvelope, "wix.portfolio.project_items.v1.project_item_created">;
|
|
2303
|
-
declare const onProjectItemDeleted$1: EventDefinition<ProjectItemDeletedEnvelope, "wix.portfolio.project_items.v1.project_item_deleted">;
|
|
2304
|
-
declare const onProjectItemUpdated$1: EventDefinition<ProjectItemUpdatedEnvelope, "wix.portfolio.project_items.v1.project_item_updated">;
|
|
2305
|
-
|
|
2306
|
-
declare function createEventModule$2<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
2307
2245
|
|
|
2308
2246
|
declare const createProjectItem: MaybeContext<BuildRESTFunction<typeof createProjectItem$1> & typeof createProjectItem$1>;
|
|
2309
2247
|
declare const bulkCreateProjectItems: MaybeContext<BuildRESTFunction<typeof bulkCreateProjectItems$1> & typeof bulkCreateProjectItems$1>;
|
|
@@ -2315,18 +2253,6 @@ declare const deleteProjectItem: MaybeContext<BuildRESTFunction<typeof deletePro
|
|
|
2315
2253
|
declare const bulkDeleteProjectItems: MaybeContext<BuildRESTFunction<typeof bulkDeleteProjectItems$1> & typeof bulkDeleteProjectItems$1>;
|
|
2316
2254
|
declare const duplicateProjectItems: MaybeContext<BuildRESTFunction<typeof duplicateProjectItems$1> & typeof duplicateProjectItems$1>;
|
|
2317
2255
|
|
|
2318
|
-
type _publicOnProjectItemCreatedType = typeof onProjectItemCreated$1;
|
|
2319
|
-
/** */
|
|
2320
|
-
declare const onProjectItemCreated: ReturnType<typeof createEventModule$2<_publicOnProjectItemCreatedType>>;
|
|
2321
|
-
|
|
2322
|
-
type _publicOnProjectItemDeletedType = typeof onProjectItemDeleted$1;
|
|
2323
|
-
/** */
|
|
2324
|
-
declare const onProjectItemDeleted: ReturnType<typeof createEventModule$2<_publicOnProjectItemDeletedType>>;
|
|
2325
|
-
|
|
2326
|
-
type _publicOnProjectItemUpdatedType = typeof onProjectItemUpdated$1;
|
|
2327
|
-
/** */
|
|
2328
|
-
declare const onProjectItemUpdated: ReturnType<typeof createEventModule$2<_publicOnProjectItemUpdatedType>>;
|
|
2329
|
-
|
|
2330
2256
|
type index_d$3_BulkCreateProjectItemResult = BulkCreateProjectItemResult;
|
|
2331
2257
|
type index_d$3_BulkCreateProjectItemsOptions = BulkCreateProjectItemsOptions;
|
|
2332
2258
|
type index_d$3_BulkCreateProjectItemsRequest = BulkCreateProjectItemsRequest;
|
|
@@ -2368,10 +2294,7 @@ type index_d$3_ListProjectItemsRequest = ListProjectItemsRequest;
|
|
|
2368
2294
|
type index_d$3_ListProjectItemsResponse = ListProjectItemsResponse;
|
|
2369
2295
|
type index_d$3_ListProjectItemsResponseNonNullableFields = ListProjectItemsResponseNonNullableFields;
|
|
2370
2296
|
type index_d$3_MaskedItem = MaskedItem;
|
|
2371
|
-
type index_d$3_ProjectItemCreatedEnvelope = ProjectItemCreatedEnvelope;
|
|
2372
|
-
type index_d$3_ProjectItemDeletedEnvelope = ProjectItemDeletedEnvelope;
|
|
2373
2297
|
type index_d$3_ProjectItemMediaToken = ProjectItemMediaToken;
|
|
2374
|
-
type index_d$3_ProjectItemUpdatedEnvelope = ProjectItemUpdatedEnvelope;
|
|
2375
2298
|
type index_d$3_QueryProjectItemsRequest = QueryProjectItemsRequest;
|
|
2376
2299
|
type index_d$3_QueryProjectItemsResponse = QueryProjectItemsResponse;
|
|
2377
2300
|
type index_d$3_Tags = Tags;
|
|
@@ -2381,9 +2304,6 @@ type index_d$3_UpdateProjectItem = UpdateProjectItem;
|
|
|
2381
2304
|
type index_d$3_UpdateProjectItemRequest = UpdateProjectItemRequest;
|
|
2382
2305
|
type index_d$3_UpdateProjectItemResponse = UpdateProjectItemResponse;
|
|
2383
2306
|
type index_d$3_UpdateProjectItemResponseNonNullableFields = UpdateProjectItemResponseNonNullableFields;
|
|
2384
|
-
type index_d$3__publicOnProjectItemCreatedType = _publicOnProjectItemCreatedType;
|
|
2385
|
-
type index_d$3__publicOnProjectItemDeletedType = _publicOnProjectItemDeletedType;
|
|
2386
|
-
type index_d$3__publicOnProjectItemUpdatedType = _publicOnProjectItemUpdatedType;
|
|
2387
2307
|
declare const index_d$3_bulkCreateProjectItems: typeof bulkCreateProjectItems;
|
|
2388
2308
|
declare const index_d$3_bulkDeleteProjectItems: typeof bulkDeleteProjectItems;
|
|
2389
2309
|
declare const index_d$3_bulkUpdateProjectItems: typeof bulkUpdateProjectItems;
|
|
@@ -2392,12 +2312,9 @@ declare const index_d$3_deleteProjectItem: typeof deleteProjectItem;
|
|
|
2392
2312
|
declare const index_d$3_duplicateProjectItems: typeof duplicateProjectItems;
|
|
2393
2313
|
declare const index_d$3_getProjectItem: typeof getProjectItem;
|
|
2394
2314
|
declare const index_d$3_listProjectItems: typeof listProjectItems;
|
|
2395
|
-
declare const index_d$3_onProjectItemCreated: typeof onProjectItemCreated;
|
|
2396
|
-
declare const index_d$3_onProjectItemDeleted: typeof onProjectItemDeleted;
|
|
2397
|
-
declare const index_d$3_onProjectItemUpdated: typeof onProjectItemUpdated;
|
|
2398
2315
|
declare const index_d$3_updateProjectItem: typeof updateProjectItem;
|
|
2399
2316
|
declare namespace index_d$3 {
|
|
2400
|
-
export { type ActionEvent$3 as ActionEvent, type App$1 as App, type ApplicationError$1 as ApplicationError, type
|
|
2317
|
+
export { type ActionEvent$3 as ActionEvent, type App$1 as App, type ApplicationError$1 as ApplicationError, type BulkActionMetadata$1 as BulkActionMetadata, type index_d$3_BulkCreateProjectItemResult as BulkCreateProjectItemResult, type index_d$3_BulkCreateProjectItemsOptions as BulkCreateProjectItemsOptions, type index_d$3_BulkCreateProjectItemsRequest as BulkCreateProjectItemsRequest, type index_d$3_BulkCreateProjectItemsResponse as BulkCreateProjectItemsResponse, type index_d$3_BulkCreateProjectItemsResponseNonNullableFields as BulkCreateProjectItemsResponseNonNullableFields, type index_d$3_BulkDeleteProjectItemResult as BulkDeleteProjectItemResult, type index_d$3_BulkDeleteProjectItemsOptions as BulkDeleteProjectItemsOptions, type index_d$3_BulkDeleteProjectItemsRequest as BulkDeleteProjectItemsRequest, type index_d$3_BulkDeleteProjectItemsResponse as BulkDeleteProjectItemsResponse, type index_d$3_BulkDeleteProjectItemsResponseNonNullableFields as BulkDeleteProjectItemsResponseNonNullableFields, type index_d$3_BulkUpdateProjectItemResult as BulkUpdateProjectItemResult, type index_d$3_BulkUpdateProjectItemsOptions as BulkUpdateProjectItemsOptions, type index_d$3_BulkUpdateProjectItemsRequest as BulkUpdateProjectItemsRequest, type index_d$3_BulkUpdateProjectItemsResponse as BulkUpdateProjectItemsResponse, type index_d$3_BulkUpdateProjectItemsResponseNonNullableFields as BulkUpdateProjectItemsResponseNonNullableFields, type index_d$3_CreateProjectGalleryRequest as CreateProjectGalleryRequest, type index_d$3_CreateProjectGalleryResponse as CreateProjectGalleryResponse, type index_d$3_CreateProjectItemRequest as CreateProjectItemRequest, type index_d$3_CreateProjectItemResponse as CreateProjectItemResponse, type index_d$3_CreateProjectItemResponseNonNullableFields as CreateProjectItemResponseNonNullableFields, type CursorPaging$3 as CursorPaging, type Cursors$3 as Cursors, type index_d$3_DeleteProjectItemRequest as DeleteProjectItemRequest, type index_d$3_DeleteProjectItemResponse as DeleteProjectItemResponse, type index_d$3_DeleteProjectItemResponseNonNullableFields as DeleteProjectItemResponseNonNullableFields, type DeletedProjectRestored$1 as DeletedProjectRestored, type DomainEvent$3 as DomainEvent, type DomainEventBodyOneOf$3 as DomainEventBodyOneOf, type index_d$3_DuplicateProjectItemsOptions as DuplicateProjectItemsOptions, type index_d$3_DuplicateProjectItemsRequest as DuplicateProjectItemsRequest, type index_d$3_DuplicateProjectItemsResponse as DuplicateProjectItemsResponse, type index_d$3_DuplicateProjectItemsResponseNonNullableFields as DuplicateProjectItemsResponseNonNullableFields, type Empty$2 as Empty, type EntityCreatedEvent$3 as EntityCreatedEvent, type EntityDeletedEvent$3 as EntityDeletedEvent, type EntityUpdatedEvent$3 as EntityUpdatedEvent, type File$1 as File, type index_d$3_GenerateTokenForProjectItemsRequest as GenerateTokenForProjectItemsRequest, type index_d$3_GenerateTokenForProjectItemsResponse as GenerateTokenForProjectItemsResponse, type index_d$3_GetProjectItemRequest as GetProjectItemRequest, type index_d$3_GetProjectItemResponse as GetProjectItemResponse, type index_d$3_GetProjectItemResponseNonNullableFields as GetProjectItemResponseNonNullableFields, type IdentificationData$3 as IdentificationData, type IdentificationDataIdOneOf$3 as IdentificationDataIdOneOf, type Image$2 as Image, ImageType$2 as ImageType, type InvalidateCache$1 as InvalidateCache, type InvalidateCacheGetByOneOf$1 as InvalidateCacheGetByOneOf, type index_d$3_Item as Item, type ItemMetadata$1 as ItemMetadata, type index_d$3_ItemMetadataOneOf as ItemMetadataOneOf, type index_d$3_ItemNonNullableFields as ItemNonNullableFields, type index_d$3_Link as Link, type index_d$3_ListProjectItemsOptions as ListProjectItemsOptions, type index_d$3_ListProjectItemsRequest as ListProjectItemsRequest, type index_d$3_ListProjectItemsResponse as ListProjectItemsResponse, type index_d$3_ListProjectItemsResponseNonNullableFields as ListProjectItemsResponseNonNullableFields, type index_d$3_MaskedItem as MaskedItem, type MessageEnvelope$3 as MessageEnvelope, type Page$1 as Page, type Paging$2 as Paging, type PagingMetadataV2$3 as PagingMetadataV2, type Point$2 as Point, type index_d$3_ProjectItemMediaToken as ProjectItemMediaToken, type index_d$3_QueryProjectItemsRequest as QueryProjectItemsRequest, type index_d$3_QueryProjectItemsResponse as QueryProjectItemsResponse, type QueryV2$2 as QueryV2, type QueryV2PagingMethodOneOf$2 as QueryV2PagingMethodOneOf, type RestoreInfo$3 as RestoreInfo, SortOrder$2 as SortOrder, type Sorting$2 as Sorting, type index_d$3_Tags as Tags, index_d$3_Type as Type, type URI$1 as URI, type UnsharpMasking$2 as UnsharpMasking, type index_d$3_UpdateProjectItem as UpdateProjectItem, type index_d$3_UpdateProjectItemRequest as UpdateProjectItemRequest, type index_d$3_UpdateProjectItemResponse as UpdateProjectItemResponse, type index_d$3_UpdateProjectItemResponseNonNullableFields as UpdateProjectItemResponseNonNullableFields, type Video$2 as Video, type VideoResolution$2 as VideoResolution, WebhookIdentityType$3 as WebhookIdentityType, index_d$3_bulkCreateProjectItems as bulkCreateProjectItems, index_d$3_bulkDeleteProjectItems as bulkDeleteProjectItems, index_d$3_bulkUpdateProjectItems as bulkUpdateProjectItems, index_d$3_createProjectItem as createProjectItem, index_d$3_deleteProjectItem as deleteProjectItem, index_d$3_duplicateProjectItems as duplicateProjectItems, index_d$3_getProjectItem as getProjectItem, index_d$3_listProjectItems as listProjectItems, index_d$3_updateProjectItem as updateProjectItem };
|
|
2401
2318
|
}
|
|
2402
2319
|
|
|
2403
2320
|
interface Project$1 extends ProjectCoverOneOf$1 {
|
|
@@ -2438,7 +2355,7 @@ interface Project$1 extends ProjectCoverOneOf$1 {
|
|
|
2438
2355
|
*/
|
|
2439
2356
|
_updatedDate?: Date | null;
|
|
2440
2357
|
/**
|
|
2441
|
-
* Project's page URL and relative path.
|
|
2358
|
+
* Project's page URL and relative path.
|
|
2442
2359
|
* @readonly
|
|
2443
2360
|
*/
|
|
2444
2361
|
url?: string;
|
|
@@ -3046,7 +2963,7 @@ interface CreateProjectResponse {
|
|
|
3046
2963
|
interface GetProjectRequest {
|
|
3047
2964
|
/** ID of the project to retrieve. */
|
|
3048
2965
|
projectId: string;
|
|
3049
|
-
/**
|
|
2966
|
+
/** Whether to include the project's relative path and full URL in the response. Default: `false` */
|
|
3050
2967
|
includePageUrl?: boolean | null;
|
|
3051
2968
|
}
|
|
3052
2969
|
interface GetProjectResponse {
|
|
@@ -3056,7 +2973,7 @@ interface GetProjectResponse {
|
|
|
3056
2973
|
interface ListProjectsRequest {
|
|
3057
2974
|
/** Projects limit per response is maximum 100, In the first request the cursor is None ? */
|
|
3058
2975
|
paging?: CursorPaging$2;
|
|
3059
|
-
/**
|
|
2976
|
+
/** Whether to include the project's relative path and full URL in the response. Default: `false` */
|
|
3060
2977
|
includePageUrl?: boolean | null;
|
|
3061
2978
|
}
|
|
3062
2979
|
interface CursorPaging$2 {
|
|
@@ -3073,7 +2990,7 @@ interface CursorPaging$2 {
|
|
|
3073
2990
|
interface ListProjectsResponse {
|
|
3074
2991
|
/** List of projects. */
|
|
3075
2992
|
projects?: Project$1[];
|
|
3076
|
-
/** Paging metadata
|
|
2993
|
+
/** Paging metadata. */
|
|
3077
2994
|
metadata?: PagingMetadataV2$2;
|
|
3078
2995
|
}
|
|
3079
2996
|
interface PagingMetadataV2$2 {
|
|
@@ -3105,7 +3022,7 @@ interface UpdateProjectResponse {
|
|
|
3105
3022
|
interface BulkUpdateProjectsRequest {
|
|
3106
3023
|
/** Projects to update. */
|
|
3107
3024
|
projects?: MaskedProject[];
|
|
3108
|
-
/** Whether to include the updated projects in the response. Set to `true
|
|
3025
|
+
/** Whether to include the updated projects in the response. Set to `true` to receive the projects in the response. */
|
|
3109
3026
|
returnFullEntity?: boolean | null;
|
|
3110
3027
|
}
|
|
3111
3028
|
interface MaskedProject {
|
|
@@ -3161,7 +3078,7 @@ interface DeleteProjectResponse {
|
|
|
3161
3078
|
interface QueryProjectsRequest {
|
|
3162
3079
|
/** Query options. */
|
|
3163
3080
|
query: QueryV2$1;
|
|
3164
|
-
/**
|
|
3081
|
+
/** Whether to include the project's relative path and full URL in the response. Default: `false` */
|
|
3165
3082
|
includePageUrl?: boolean | null;
|
|
3166
3083
|
}
|
|
3167
3084
|
interface QueryV2$1 extends QueryV2PagingMethodOneOf$1 {
|
|
@@ -3212,7 +3129,7 @@ interface Paging$1 {
|
|
|
3212
3129
|
interface QueryProjectsResponse {
|
|
3213
3130
|
/** List of projects. */
|
|
3214
3131
|
projects?: Project$1[];
|
|
3215
|
-
/** Paging metadata
|
|
3132
|
+
/** Paging metadata. */
|
|
3216
3133
|
metadata?: PagingMetadataV2$2;
|
|
3217
3134
|
}
|
|
3218
3135
|
interface UpdateProjectOrderInCollectionRequest$1 {
|
|
@@ -3493,13 +3410,13 @@ interface ProjectUpdatedEnvelope {
|
|
|
3493
3410
|
metadata: EventMetadata$1;
|
|
3494
3411
|
}
|
|
3495
3412
|
interface GetProjectOptions {
|
|
3496
|
-
/**
|
|
3413
|
+
/** Whether to include the project's relative path and full URL in the response. Default: `false` */
|
|
3497
3414
|
includePageUrl?: boolean | null;
|
|
3498
3415
|
}
|
|
3499
3416
|
interface ListProjectsOptions {
|
|
3500
3417
|
/** Projects limit per response is maximum 100, In the first request the cursor is None ? */
|
|
3501
3418
|
paging?: CursorPaging$2;
|
|
3502
|
-
/**
|
|
3419
|
+
/** Whether to include the project's relative path and full URL in the response. Default: `false` */
|
|
3503
3420
|
includePageUrl?: boolean | null;
|
|
3504
3421
|
}
|
|
3505
3422
|
interface UpdateProject {
|
|
@@ -3540,7 +3457,7 @@ interface UpdateProject {
|
|
|
3540
3457
|
*/
|
|
3541
3458
|
_updatedDate?: Date | null;
|
|
3542
3459
|
/**
|
|
3543
|
-
* Project's page URL and relative path.
|
|
3460
|
+
* Project's page URL and relative path.
|
|
3544
3461
|
* @readonly
|
|
3545
3462
|
*/
|
|
3546
3463
|
url?: string;
|
|
@@ -3550,11 +3467,11 @@ interface UpdateProject {
|
|
|
3550
3467
|
interface BulkUpdateProjectsOptions {
|
|
3551
3468
|
/** Projects to update. */
|
|
3552
3469
|
projects?: MaskedProject[];
|
|
3553
|
-
/** Whether to include the updated projects in the response. Set to `true
|
|
3470
|
+
/** Whether to include the updated projects in the response. Set to `true` to receive the projects in the response. */
|
|
3554
3471
|
returnFullEntity?: boolean | null;
|
|
3555
3472
|
}
|
|
3556
3473
|
interface QueryProjectsOptions {
|
|
3557
|
-
/**
|
|
3474
|
+
/** Whether to include the project's relative path and full URL in the response. Default: `false` */
|
|
3558
3475
|
includePageUrl?: boolean | null | undefined;
|
|
3559
3476
|
}
|
|
3560
3477
|
interface QueryCursorResult {
|
|
@@ -3892,7 +3809,7 @@ interface Project extends ProjectCoverOneOf {
|
|
|
3892
3809
|
*/
|
|
3893
3810
|
_updatedDate?: Date | null;
|
|
3894
3811
|
/**
|
|
3895
|
-
* Project's page URL and relative path.
|
|
3812
|
+
* Project's page URL and relative path.
|
|
3896
3813
|
* @readonly
|
|
3897
3814
|
*/
|
|
3898
3815
|
url?: string;
|
|
@@ -1050,8 +1050,8 @@ interface ListProjectItemsResponse$1 {
|
|
|
1050
1050
|
/** Project items. */
|
|
1051
1051
|
items?: Item$1[];
|
|
1052
1052
|
/**
|
|
1053
|
-
* Paging metadata.
|
|
1054
1053
|
* @deprecated
|
|
1054
|
+
* @targetRemovalDate 2025-05-25
|
|
1055
1055
|
*/
|
|
1056
1056
|
pagingMetadataV2?: PagingMetadataV2$5;
|
|
1057
1057
|
/** Paging metadata. */
|
|
@@ -1090,7 +1090,7 @@ interface BulkUpdateProjectItemsRequest$1 {
|
|
|
1090
1090
|
returnFullEntity?: boolean | null;
|
|
1091
1091
|
}
|
|
1092
1092
|
interface MaskedItem$1 {
|
|
1093
|
-
/** Item to be updated */
|
|
1093
|
+
/** Item to be updated. */
|
|
1094
1094
|
item?: Item$1;
|
|
1095
1095
|
}
|
|
1096
1096
|
interface BulkUpdateProjectItemsResponse$1 {
|
|
@@ -1420,8 +1420,8 @@ interface ListProjectItemsResponse {
|
|
|
1420
1420
|
/** Project items. */
|
|
1421
1421
|
items?: Item[];
|
|
1422
1422
|
/**
|
|
1423
|
-
* Paging metadata.
|
|
1424
1423
|
* @deprecated
|
|
1424
|
+
* @targetRemovalDate 2025-05-25
|
|
1425
1425
|
*/
|
|
1426
1426
|
pagingMetadataV2?: PagingMetadataV2$4;
|
|
1427
1427
|
/** Paging metadata. */
|
|
@@ -1460,7 +1460,7 @@ interface BulkUpdateProjectItemsRequest {
|
|
|
1460
1460
|
returnFullEntity?: boolean | null;
|
|
1461
1461
|
}
|
|
1462
1462
|
interface MaskedItem {
|
|
1463
|
-
/** Item to be updated */
|
|
1463
|
+
/** Item to be updated. */
|
|
1464
1464
|
item?: Item;
|
|
1465
1465
|
}
|
|
1466
1466
|
interface BulkUpdateProjectItemsResponse {
|
|
@@ -1679,7 +1679,7 @@ interface Project$3 extends ProjectCoverOneOf$3 {
|
|
|
1679
1679
|
*/
|
|
1680
1680
|
updatedDate?: Date | null;
|
|
1681
1681
|
/**
|
|
1682
|
-
* Project's page URL and relative path.
|
|
1682
|
+
* Project's page URL and relative path.
|
|
1683
1683
|
* @readonly
|
|
1684
1684
|
*/
|
|
1685
1685
|
url?: PageUrlV2$1;
|
|
@@ -1865,7 +1865,7 @@ interface CreateProjectResponse$1 {
|
|
|
1865
1865
|
interface GetProjectRequest$1 {
|
|
1866
1866
|
/** ID of the project to retrieve. */
|
|
1867
1867
|
projectId: string;
|
|
1868
|
-
/**
|
|
1868
|
+
/** Whether to include the project's relative path and full URL in the response. Default: `false` */
|
|
1869
1869
|
includePageUrl?: boolean | null;
|
|
1870
1870
|
}
|
|
1871
1871
|
interface GetProjectResponse$1 {
|
|
@@ -1875,7 +1875,7 @@ interface GetProjectResponse$1 {
|
|
|
1875
1875
|
interface ListProjectsRequest$1 {
|
|
1876
1876
|
/** Projects limit per response is maximum 100, In the first request the cursor is None ? */
|
|
1877
1877
|
paging?: CursorPaging$3;
|
|
1878
|
-
/**
|
|
1878
|
+
/** Whether to include the project's relative path and full URL in the response. Default: `false` */
|
|
1879
1879
|
includePageUrl?: boolean | null;
|
|
1880
1880
|
}
|
|
1881
1881
|
interface CursorPaging$3 {
|
|
@@ -1892,7 +1892,7 @@ interface CursorPaging$3 {
|
|
|
1892
1892
|
interface ListProjectsResponse$1 {
|
|
1893
1893
|
/** List of projects. */
|
|
1894
1894
|
projects?: Project$3[];
|
|
1895
|
-
/** Paging metadata
|
|
1895
|
+
/** Paging metadata. */
|
|
1896
1896
|
metadata?: PagingMetadataV2$3;
|
|
1897
1897
|
}
|
|
1898
1898
|
interface PagingMetadataV2$3 {
|
|
@@ -1924,7 +1924,7 @@ interface UpdateProjectResponse$1 {
|
|
|
1924
1924
|
interface BulkUpdateProjectsRequest$1 {
|
|
1925
1925
|
/** Projects to update. */
|
|
1926
1926
|
projects?: MaskedProject$1[];
|
|
1927
|
-
/** Whether to include the updated projects in the response. Set to `true
|
|
1927
|
+
/** Whether to include the updated projects in the response. Set to `true` to receive the projects in the response. */
|
|
1928
1928
|
returnFullEntity?: boolean | null;
|
|
1929
1929
|
}
|
|
1930
1930
|
interface MaskedProject$1 {
|
|
@@ -1980,7 +1980,7 @@ interface DeleteProjectResponse$1 {
|
|
|
1980
1980
|
interface QueryProjectsRequest$1 {
|
|
1981
1981
|
/** Query options. */
|
|
1982
1982
|
query: QueryV2$1;
|
|
1983
|
-
/**
|
|
1983
|
+
/** Whether to include the project's relative path and full URL in the response. Default: `false` */
|
|
1984
1984
|
includePageUrl?: boolean | null;
|
|
1985
1985
|
}
|
|
1986
1986
|
interface QueryV2$1 extends QueryV2PagingMethodOneOf$1 {
|
|
@@ -2031,7 +2031,7 @@ interface Paging$1 {
|
|
|
2031
2031
|
interface QueryProjectsResponse$1 {
|
|
2032
2032
|
/** List of projects. */
|
|
2033
2033
|
projects?: Project$3[];
|
|
2034
|
-
/** Paging metadata
|
|
2034
|
+
/** Paging metadata. */
|
|
2035
2035
|
metadata?: PagingMetadataV2$3;
|
|
2036
2036
|
}
|
|
2037
2037
|
interface UpdateProjectOrderInCollectionRequest$3 {
|
|
@@ -2237,7 +2237,7 @@ interface Project$2 extends ProjectCoverOneOf$2 {
|
|
|
2237
2237
|
*/
|
|
2238
2238
|
_updatedDate?: Date | null;
|
|
2239
2239
|
/**
|
|
2240
|
-
* Project's page URL and relative path.
|
|
2240
|
+
* Project's page URL and relative path.
|
|
2241
2241
|
* @readonly
|
|
2242
2242
|
*/
|
|
2243
2243
|
url?: string;
|
|
@@ -2374,7 +2374,7 @@ interface CreateProjectResponse {
|
|
|
2374
2374
|
interface GetProjectRequest {
|
|
2375
2375
|
/** ID of the project to retrieve. */
|
|
2376
2376
|
projectId: string;
|
|
2377
|
-
/**
|
|
2377
|
+
/** Whether to include the project's relative path and full URL in the response. Default: `false` */
|
|
2378
2378
|
includePageUrl?: boolean | null;
|
|
2379
2379
|
}
|
|
2380
2380
|
interface GetProjectResponse {
|
|
@@ -2384,7 +2384,7 @@ interface GetProjectResponse {
|
|
|
2384
2384
|
interface ListProjectsRequest {
|
|
2385
2385
|
/** Projects limit per response is maximum 100, In the first request the cursor is None ? */
|
|
2386
2386
|
paging?: CursorPaging$2;
|
|
2387
|
-
/**
|
|
2387
|
+
/** Whether to include the project's relative path and full URL in the response. Default: `false` */
|
|
2388
2388
|
includePageUrl?: boolean | null;
|
|
2389
2389
|
}
|
|
2390
2390
|
interface CursorPaging$2 {
|
|
@@ -2401,7 +2401,7 @@ interface CursorPaging$2 {
|
|
|
2401
2401
|
interface ListProjectsResponse {
|
|
2402
2402
|
/** List of projects. */
|
|
2403
2403
|
projects?: Project$2[];
|
|
2404
|
-
/** Paging metadata
|
|
2404
|
+
/** Paging metadata. */
|
|
2405
2405
|
metadata?: PagingMetadataV2$2;
|
|
2406
2406
|
}
|
|
2407
2407
|
interface PagingMetadataV2$2 {
|
|
@@ -2433,7 +2433,7 @@ interface UpdateProjectResponse {
|
|
|
2433
2433
|
interface BulkUpdateProjectsRequest {
|
|
2434
2434
|
/** Projects to update. */
|
|
2435
2435
|
projects?: MaskedProject[];
|
|
2436
|
-
/** Whether to include the updated projects in the response. Set to `true
|
|
2436
|
+
/** Whether to include the updated projects in the response. Set to `true` to receive the projects in the response. */
|
|
2437
2437
|
returnFullEntity?: boolean | null;
|
|
2438
2438
|
}
|
|
2439
2439
|
interface MaskedProject {
|
|
@@ -2489,7 +2489,7 @@ interface DeleteProjectResponse {
|
|
|
2489
2489
|
interface QueryProjectsRequest {
|
|
2490
2490
|
/** Query options. */
|
|
2491
2491
|
query: QueryV2;
|
|
2492
|
-
/**
|
|
2492
|
+
/** Whether to include the project's relative path and full URL in the response. Default: `false` */
|
|
2493
2493
|
includePageUrl?: boolean | null;
|
|
2494
2494
|
}
|
|
2495
2495
|
interface QueryV2 extends QueryV2PagingMethodOneOf {
|
|
@@ -2540,7 +2540,7 @@ interface Paging {
|
|
|
2540
2540
|
interface QueryProjectsResponse {
|
|
2541
2541
|
/** List of projects. */
|
|
2542
2542
|
projects?: Project$2[];
|
|
2543
|
-
/** Paging metadata
|
|
2543
|
+
/** Paging metadata. */
|
|
2544
2544
|
metadata?: PagingMetadataV2$2;
|
|
2545
2545
|
}
|
|
2546
2546
|
interface UpdateProjectOrderInCollectionRequest$2 {
|
|
@@ -2782,7 +2782,7 @@ interface Project$1 extends ProjectCoverOneOf$1 {
|
|
|
2782
2782
|
*/
|
|
2783
2783
|
updatedDate?: Date | null;
|
|
2784
2784
|
/**
|
|
2785
|
-
* Project's page URL and relative path.
|
|
2785
|
+
* Project's page URL and relative path.
|
|
2786
2786
|
* @readonly
|
|
2787
2787
|
*/
|
|
2788
2788
|
url?: PageUrlV2;
|
|
@@ -3105,7 +3105,7 @@ interface Project extends ProjectCoverOneOf {
|
|
|
3105
3105
|
*/
|
|
3106
3106
|
_updatedDate?: Date | null;
|
|
3107
3107
|
/**
|
|
3108
|
-
* Project's page URL and relative path.
|
|
3108
|
+
* Project's page URL and relative path.
|
|
3109
3109
|
* @readonly
|
|
3110
3110
|
*/
|
|
3111
3111
|
url?: string;
|