@wix/portfolio 1.0.26 → 1.0.27

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.
Files changed (21) hide show
  1. package/build/cjs/src/portfolio-collections-v1-collection.public.d.ts +1 -1
  2. package/build/cjs/src/portfolio-collections-v1-collection.types.d.ts +73 -73
  3. package/build/cjs/src/portfolio-collections-v1-collection.types.js.map +1 -1
  4. package/build/cjs/src/portfolio-collections-v1-collection.universal.d.ts +73 -73
  5. package/build/cjs/src/portfolio-collections-v1-collection.universal.js.map +1 -1
  6. package/build/cjs/src/portfolio-projects-v1-project.public.d.ts +1 -1
  7. package/build/cjs/src/portfolio-projects-v1-project.types.d.ts +71 -96
  8. package/build/cjs/src/portfolio-projects-v1-project.types.js.map +1 -1
  9. package/build/cjs/src/portfolio-projects-v1-project.universal.d.ts +71 -96
  10. package/build/cjs/src/portfolio-projects-v1-project.universal.js.map +1 -1
  11. package/build/es/src/portfolio-collections-v1-collection.public.d.ts +1 -1
  12. package/build/es/src/portfolio-collections-v1-collection.types.d.ts +73 -73
  13. package/build/es/src/portfolio-collections-v1-collection.types.js.map +1 -1
  14. package/build/es/src/portfolio-collections-v1-collection.universal.d.ts +73 -73
  15. package/build/es/src/portfolio-collections-v1-collection.universal.js.map +1 -1
  16. package/build/es/src/portfolio-projects-v1-project.public.d.ts +1 -1
  17. package/build/es/src/portfolio-projects-v1-project.types.d.ts +71 -96
  18. package/build/es/src/portfolio-projects-v1-project.types.js.map +1 -1
  19. package/build/es/src/portfolio-projects-v1-project.universal.d.ts +71 -96
  20. package/build/es/src/portfolio-projects-v1-project.universal.js.map +1 -1
  21. package/package.json +2 -2
@@ -7,4 +7,4 @@ export declare function updateCollection(httpClient: HttpClient): (_id: string |
7
7
  export declare function deleteCollection(httpClient: HttpClient): (collectionId: string) => Promise<import("./portfolio-collections-v1-collection.universal").DeleteCollectionResponse>;
8
8
  export declare function queryCollections(httpClient: HttpClient): (options?: QueryCollectionsOptions | undefined) => import("./portfolio-collections-v1-collection.universal").CollectionsQueryBuilder;
9
9
  export { ImageImageType, SortOrder, } from './portfolio-collections-v1-collection.universal';
10
- export { Collection, CommonImage, CommonPoint, CommonUnsharpMasking, SeoSchema, Keyword, Tag, Settings, InvalidateCache, InvalidateCacheGetByOneOf, App, Page, URI, CreateCollectionRequest, CreateCollectionResponse, GetCollectionRequest, GetCollectionResponse, ListCollectionsRequest, CursorPaging, ListCollectionsResponse, PagingMetadataV2, Cursors, UpdateCollectionRequest, UpdateCollectionResponse, DeleteCollectionRequest, DeleteCollectionResponse, QueryCollectionsRequest, QueryV2, QueryV2PagingMethodOneOf, Sorting, Paging, QueryCollectionsResponse, DomainEvent, DomainEventBodyOneOf, EntityCreatedEvent, EntityUpdatedEvent, EntityDeletedEvent, ActionEvent, ExtendedFieldsUpdatedEvent, Empty, GetCollectionOptions, ListCollectionsOptions, UpdateCollection, QueryCollectionsOptions, CollectionsQueryResult, CollectionsQueryBuilder, } from './portfolio-collections-v1-collection.universal';
10
+ export { Collection, CommonImage, CommonPoint, CommonUnsharpMasking, SeoSchema, Keyword, Tag, Settings, DomainEvent, DomainEventBodyOneOf, EntityCreatedEvent, EntityUpdatedEvent, EntityDeletedEvent, ActionEvent, ExtendedFieldsUpdatedEvent, Empty, InvalidateCache, InvalidateCacheGetByOneOf, App, Page, URI, CreateCollectionRequest, CreateCollectionResponse, GetCollectionRequest, GetCollectionResponse, ListCollectionsRequest, CursorPaging, ListCollectionsResponse, PagingMetadataV2, Cursors, UpdateCollectionRequest, UpdateCollectionResponse, DeleteCollectionRequest, DeleteCollectionResponse, QueryCollectionsRequest, QueryV2, QueryV2PagingMethodOneOf, Sorting, Paging, QueryCollectionsResponse, GetCollectionOptions, ListCollectionsOptions, UpdateCollection, QueryCollectionsOptions, CollectionsQueryResult, CollectionsQueryBuilder, } from './portfolio-collections-v1-collection.universal';
@@ -145,6 +145,79 @@ export interface Settings {
145
145
  /** User-selected keyword terms for a specific page. */
146
146
  keywords?: Keyword[];
147
147
  }
148
+ export interface DomainEvent extends DomainEventBodyOneOf {
149
+ /** random GUID so clients can tell if event was already handled */
150
+ id?: string;
151
+ /**
152
+ * Assumes actions are also always typed to an entity_type
153
+ * Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
154
+ */
155
+ entityFqdn?: string;
156
+ /**
157
+ * This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
158
+ * This is although the created/updated/deleted notion is duplication of the oneof types
159
+ * Example: created/updated/deleted/started/completed/email_opened
160
+ */
161
+ slug?: string;
162
+ /**
163
+ * Assuming that all messages including Actions have id
164
+ * Example: The id of the specific order, the id of a specific campaign
165
+ */
166
+ entityId?: string;
167
+ /** The time of the event. Useful if there was a delay in dispatching */
168
+ eventTime?: Date;
169
+ /**
170
+ * A field that should be set if this event was triggered by an anonymize request.
171
+ * For example you must set it to true when sending an event as a result of a GDPR right to be forgotten request.
172
+ * NOTE: This field is not relevant for `EntityCreatedEvent` but is located here for better ergonomics of consumers.
173
+ */
174
+ triggeredByAnonymizeRequest?: boolean | null;
175
+ /** If present, indicates the action that triggered the event. */
176
+ originatedFrom?: string | null;
177
+ /**
178
+ * A sequence number defining the order of updates to the underlying entity.
179
+ * For example, given that some entity was updated at 16:00 and than again at 16:01,
180
+ * it is guaranteed that the sequence number of the second update is strictly higher than the first.
181
+ * As the consumer, you can use this value to ensure that you handle messages in the correct order.
182
+ * To do so, you will need to persist this number on your end, and compare the sequence number from the
183
+ * message against the one you have stored. Given that the stored number is higher, you should ignore the message.
184
+ */
185
+ entityEventSequence?: string | null;
186
+ createdEvent?: EntityCreatedEvent;
187
+ updatedEvent?: EntityUpdatedEvent;
188
+ deletedEvent?: EntityDeletedEvent;
189
+ actionEvent?: ActionEvent;
190
+ extendedFieldsUpdatedEvent?: ExtendedFieldsUpdatedEvent;
191
+ }
192
+ /** @oneof */
193
+ export interface DomainEventBodyOneOf {
194
+ createdEvent?: EntityCreatedEvent;
195
+ updatedEvent?: EntityUpdatedEvent;
196
+ deletedEvent?: EntityDeletedEvent;
197
+ actionEvent?: ActionEvent;
198
+ extendedFieldsUpdatedEvent?: ExtendedFieldsUpdatedEvent;
199
+ }
200
+ export interface EntityCreatedEvent {
201
+ entityAsJson?: string;
202
+ }
203
+ export interface EntityUpdatedEvent {
204
+ /**
205
+ * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
206
+ * This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
207
+ * We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
208
+ */
209
+ currentEntityAsJson?: string;
210
+ }
211
+ export interface EntityDeletedEvent {
212
+ }
213
+ export interface ActionEvent {
214
+ bodyAsJson?: string;
215
+ }
216
+ export interface ExtendedFieldsUpdatedEvent {
217
+ currentEntityAsJson?: string;
218
+ }
219
+ export interface Empty {
220
+ }
148
221
  export interface InvalidateCache extends InvalidateCacheGetByOneOf {
149
222
  /** tell us why you're invalidating the cache. You don't need to add your app name */
150
223
  reason?: string | null;
@@ -324,76 +397,3 @@ export interface QueryCollectionsResponse {
324
397
  /** Paging metadata */
325
398
  metadata?: PagingMetadataV2;
326
399
  }
327
- export interface DomainEvent extends DomainEventBodyOneOf {
328
- /** random GUID so clients can tell if event was already handled */
329
- id?: string;
330
- /**
331
- * Assumes actions are also always typed to an entity_type
332
- * Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
333
- */
334
- entityFqdn?: string;
335
- /**
336
- * This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
337
- * This is although the created/updated/deleted notion is duplication of the oneof types
338
- * Example: created/updated/deleted/started/completed/email_opened
339
- */
340
- slug?: string;
341
- /**
342
- * Assuming that all messages including Actions have id
343
- * Example: The id of the specific order, the id of a specific campaign
344
- */
345
- entityId?: string;
346
- /** The time of the event. Useful if there was a delay in dispatching */
347
- eventTime?: Date;
348
- /**
349
- * A field that should be set if this event was triggered by an anonymize request.
350
- * For example you must set it to true when sending an event as a result of a GDPR right to be forgotten request.
351
- * NOTE: This field is not relevant for `EntityCreatedEvent` but is located here for better ergonomics of consumers.
352
- */
353
- triggeredByAnonymizeRequest?: boolean | null;
354
- /** If present, indicates the action that triggered the event. */
355
- originatedFrom?: string | null;
356
- /**
357
- * A sequence number defining the order of updates to the underlying entity.
358
- * For example, given that some entity was updated at 16:00 and than again at 16:01,
359
- * it is guaranteed that the sequence number of the second update is strictly higher than the first.
360
- * As the consumer, you can use this value to ensure that you handle messages in the correct order.
361
- * To do so, you will need to persist this number on your end, and compare the sequence number from the
362
- * message against the one you have stored. Given that the stored number is higher, you should ignore the message.
363
- */
364
- entityEventSequence?: string | null;
365
- createdEvent?: EntityCreatedEvent;
366
- updatedEvent?: EntityUpdatedEvent;
367
- deletedEvent?: EntityDeletedEvent;
368
- actionEvent?: ActionEvent;
369
- extendedFieldsUpdatedEvent?: ExtendedFieldsUpdatedEvent;
370
- }
371
- /** @oneof */
372
- export interface DomainEventBodyOneOf {
373
- createdEvent?: EntityCreatedEvent;
374
- updatedEvent?: EntityUpdatedEvent;
375
- deletedEvent?: EntityDeletedEvent;
376
- actionEvent?: ActionEvent;
377
- extendedFieldsUpdatedEvent?: ExtendedFieldsUpdatedEvent;
378
- }
379
- export interface EntityCreatedEvent {
380
- entityAsJson?: string;
381
- }
382
- export interface EntityUpdatedEvent {
383
- /**
384
- * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
385
- * This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
386
- * We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
387
- */
388
- currentEntityAsJson?: string;
389
- }
390
- export interface EntityDeletedEvent {
391
- }
392
- export interface ActionEvent {
393
- bodyAsJson?: string;
394
- }
395
- export interface ExtendedFieldsUpdatedEvent {
396
- currentEntityAsJson?: string;
397
- }
398
- export interface Empty {
399
- }
@@ -1 +1 @@
1
- {"version":3,"file":"portfolio-collections-v1-collection.types.js","sourceRoot":"","sources":["../../../src/portfolio-collections-v1-collection.types.ts"],"names":[],"mappings":";;;AA+CA,IAAY,cAIX;AAJD,WAAY,cAAc;IACxB,yCAAuB,CAAA;IACvB,yCAAuB,CAAA;IACvB,uCAAqB,CAAA;AACvB,CAAC,EAJW,cAAc,GAAd,sBAAc,KAAd,sBAAc,QAIzB;AAoSD,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,GAAT,iBAAS,KAAT,iBAAS,QAGpB"}
1
+ {"version":3,"file":"portfolio-collections-v1-collection.types.js","sourceRoot":"","sources":["../../../src/portfolio-collections-v1-collection.types.ts"],"names":[],"mappings":";;;AA+CA,IAAY,cAIX;AAJD,WAAY,cAAc;IACxB,yCAAuB,CAAA;IACvB,yCAAuB,CAAA;IACvB,uCAAqB,CAAA;AACvB,CAAC,EAJW,cAAc,GAAd,sBAAc,KAAd,sBAAc,QAIzB;AAmXD,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,GAAT,iBAAS,KAAT,iBAAS,QAGpB"}
@@ -128,6 +128,79 @@ export interface Settings {
128
128
  /** User-selected keyword terms for a specific page. */
129
129
  keywords?: Keyword[];
130
130
  }
131
+ export interface DomainEvent extends DomainEventBodyOneOf {
132
+ /** random GUID so clients can tell if event was already handled */
133
+ _id?: string;
134
+ /**
135
+ * Assumes actions are also always typed to an entity_type
136
+ * Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
137
+ */
138
+ entityFqdn?: string;
139
+ /**
140
+ * This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
141
+ * This is although the created/updated/deleted notion is duplication of the oneof types
142
+ * Example: created/updated/deleted/started/completed/email_opened
143
+ */
144
+ slug?: string;
145
+ /**
146
+ * Assuming that all messages including Actions have id
147
+ * Example: The id of the specific order, the id of a specific campaign
148
+ */
149
+ entityId?: string;
150
+ /** The time of the event. Useful if there was a delay in dispatching */
151
+ eventTime?: Date;
152
+ /**
153
+ * A field that should be set if this event was triggered by an anonymize request.
154
+ * For example you must set it to true when sending an event as a result of a GDPR right to be forgotten request.
155
+ * NOTE: This field is not relevant for `EntityCreatedEvent` but is located here for better ergonomics of consumers.
156
+ */
157
+ triggeredByAnonymizeRequest?: boolean | null;
158
+ /** If present, indicates the action that triggered the event. */
159
+ originatedFrom?: string | null;
160
+ /**
161
+ * A sequence number defining the order of updates to the underlying entity.
162
+ * For example, given that some entity was updated at 16:00 and than again at 16:01,
163
+ * it is guaranteed that the sequence number of the second update is strictly higher than the first.
164
+ * As the consumer, you can use this value to ensure that you handle messages in the correct order.
165
+ * To do so, you will need to persist this number on your end, and compare the sequence number from the
166
+ * message against the one you have stored. Given that the stored number is higher, you should ignore the message.
167
+ */
168
+ entityEventSequence?: string | null;
169
+ createdEvent?: EntityCreatedEvent;
170
+ updatedEvent?: EntityUpdatedEvent;
171
+ deletedEvent?: EntityDeletedEvent;
172
+ actionEvent?: ActionEvent;
173
+ extendedFieldsUpdatedEvent?: ExtendedFieldsUpdatedEvent;
174
+ }
175
+ /** @oneof */
176
+ export interface DomainEventBodyOneOf {
177
+ createdEvent?: EntityCreatedEvent;
178
+ updatedEvent?: EntityUpdatedEvent;
179
+ deletedEvent?: EntityDeletedEvent;
180
+ actionEvent?: ActionEvent;
181
+ extendedFieldsUpdatedEvent?: ExtendedFieldsUpdatedEvent;
182
+ }
183
+ export interface EntityCreatedEvent {
184
+ entityAsJson?: string;
185
+ }
186
+ export interface EntityUpdatedEvent {
187
+ /**
188
+ * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
189
+ * This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
190
+ * We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
191
+ */
192
+ currentEntityAsJson?: string;
193
+ }
194
+ export interface EntityDeletedEvent {
195
+ }
196
+ export interface ActionEvent {
197
+ bodyAsJson?: string;
198
+ }
199
+ export interface ExtendedFieldsUpdatedEvent {
200
+ currentEntityAsJson?: string;
201
+ }
202
+ export interface Empty {
203
+ }
131
204
  export interface InvalidateCache extends InvalidateCacheGetByOneOf {
132
205
  /** tell us why you're invalidating the cache. You don't need to add your app name */
133
206
  reason?: string | null;
@@ -307,79 +380,6 @@ export interface QueryCollectionsResponse {
307
380
  /** Paging metadata */
308
381
  metadata?: PagingMetadataV2;
309
382
  }
310
- export interface DomainEvent extends DomainEventBodyOneOf {
311
- /** random GUID so clients can tell if event was already handled */
312
- _id?: string;
313
- /**
314
- * Assumes actions are also always typed to an entity_type
315
- * Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
316
- */
317
- entityFqdn?: string;
318
- /**
319
- * This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
320
- * This is although the created/updated/deleted notion is duplication of the oneof types
321
- * Example: created/updated/deleted/started/completed/email_opened
322
- */
323
- slug?: string;
324
- /**
325
- * Assuming that all messages including Actions have id
326
- * Example: The id of the specific order, the id of a specific campaign
327
- */
328
- entityId?: string;
329
- /** The time of the event. Useful if there was a delay in dispatching */
330
- eventTime?: Date;
331
- /**
332
- * A field that should be set if this event was triggered by an anonymize request.
333
- * For example you must set it to true when sending an event as a result of a GDPR right to be forgotten request.
334
- * NOTE: This field is not relevant for `EntityCreatedEvent` but is located here for better ergonomics of consumers.
335
- */
336
- triggeredByAnonymizeRequest?: boolean | null;
337
- /** If present, indicates the action that triggered the event. */
338
- originatedFrom?: string | null;
339
- /**
340
- * A sequence number defining the order of updates to the underlying entity.
341
- * For example, given that some entity was updated at 16:00 and than again at 16:01,
342
- * it is guaranteed that the sequence number of the second update is strictly higher than the first.
343
- * As the consumer, you can use this value to ensure that you handle messages in the correct order.
344
- * To do so, you will need to persist this number on your end, and compare the sequence number from the
345
- * message against the one you have stored. Given that the stored number is higher, you should ignore the message.
346
- */
347
- entityEventSequence?: string | null;
348
- createdEvent?: EntityCreatedEvent;
349
- updatedEvent?: EntityUpdatedEvent;
350
- deletedEvent?: EntityDeletedEvent;
351
- actionEvent?: ActionEvent;
352
- extendedFieldsUpdatedEvent?: ExtendedFieldsUpdatedEvent;
353
- }
354
- /** @oneof */
355
- export interface DomainEventBodyOneOf {
356
- createdEvent?: EntityCreatedEvent;
357
- updatedEvent?: EntityUpdatedEvent;
358
- deletedEvent?: EntityDeletedEvent;
359
- actionEvent?: ActionEvent;
360
- extendedFieldsUpdatedEvent?: ExtendedFieldsUpdatedEvent;
361
- }
362
- export interface EntityCreatedEvent {
363
- entityAsJson?: string;
364
- }
365
- export interface EntityUpdatedEvent {
366
- /**
367
- * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
368
- * This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
369
- * We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
370
- */
371
- currentEntityAsJson?: string;
372
- }
373
- export interface EntityDeletedEvent {
374
- }
375
- export interface ActionEvent {
376
- bodyAsJson?: string;
377
- }
378
- export interface ExtendedFieldsUpdatedEvent {
379
- currentEntityAsJson?: string;
380
- }
381
- export interface Empty {
382
- }
383
383
  /**
384
384
  * Creates a new Collection
385
385
  * @param collection - Collection to be created
@@ -1 +1 @@
1
- {"version":3,"file":"portfolio-collections-v1-collection.universal.js","sourceRoot":"","sources":["../../../src/portfolio-collections-v1-collection.universal.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"portfolio-collections-v1-collection.universal.js","sourceRoot":"","sources":["../../../src/portfolio-collections-v1-collection.universal.ts"],"names":[],"mappings":"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"}
@@ -7,4 +7,4 @@ export declare function updateProject(httpClient: HttpClient): (_id: string | nu
7
7
  export declare function deleteProject(httpClient: HttpClient): (projectId: string) => Promise<import("./portfolio-projects-v1-project.universal").DeleteProjectResponse>;
8
8
  export declare function queryProjects(httpClient: HttpClient): (options?: QueryProjectsOptions | undefined) => import("./portfolio-projects-v1-project.universal").ProjectsQueryBuilder;
9
9
  export { ImageImageType, VideoType, SyncStatus, State, SiteCreatedContext, Namespace, DeleteStatus, SortOrder, } from './portfolio-projects-v1-project.universal';
10
- export { Project, ProjectCoverOneOf, CommonImage, CommonPoint, CommonUnsharpMasking, Video, VideoResolution, ProjectDetail, ProjectDetailValueOneOf, DetailsLink, ProjectSource, SeoSchema, Keyword, Tag, Settings, MenuSettingUpdatedEvent, GetProjectPageDataRequest, GetProjectPageDataResponse, ProjectSlug, CreateNewPortfolioAppRequest, CreateNewPortfolioAppResponse, MetaSiteSpecialEvent, MetaSiteSpecialEventPayloadOneOf, Asset, SiteCreated, SiteTransferred, SiteDeleted, DeleteContext, SiteUndeleted, SitePublished, SiteUnpublished, SiteMarkedAsTemplate, SiteMarkedAsWixSite, ServiceProvisioned, ServiceRemoved, SiteRenamed, SiteHardDeleted, NamespaceChanged, Empty, HtmlSitePublished, EventsPage, DomainEvent, DomainEventBodyOneOf, EntityCreatedEvent, EntityUpdatedEvent, EntityDeletedEvent, ActionEvent, ExtendedFieldsUpdatedEvent, AdminUpdatePortfolioMenuResponse, InvalidateCache, InvalidateCacheGetByOneOf, App, Page, URI, CreateProjectRequest, CreateProjectResponse, GetProjectRequest, GetProjectResponse, ListProjectsRequest, CursorPaging, ListProjectsResponse, PagingMetadataV2, Cursors, UpdateProjectRequest, UpdateProjectResponse, DeleteProjectRequest, DeleteProjectResponse, QueryProjectsRequest, QueryV2, QueryV2PagingMethodOneOf, Sorting, Paging, QueryProjectsResponse, UpdateProjectOrderInCollectionRequest, UpdateProjectOrderInCollectionResponse, ProjectInCollection, QueryProjectWithCollectionInfoRequest, QueryProjectWithCollectionInfoResponse, GetProjectOptions, ListProjectsOptions, UpdateProject, QueryProjectsOptions, ProjectsQueryResult, ProjectsQueryBuilder, } from './portfolio-projects-v1-project.universal';
10
+ export { Project, ProjectCoverOneOf, CommonImage, CommonPoint, CommonUnsharpMasking, Video, VideoResolution, ProjectDetail, ProjectDetailValueOneOf, DetailsLink, ProjectSource, SeoSchema, Keyword, Tag, Settings, MenuSettingUpdatedEvent, GetProjectPageDataRequest, GetProjectPageDataResponse, ProjectSlug, CreateNewPortfolioAppRequest, CreateNewPortfolioAppResponse, MetaSiteSpecialEvent, MetaSiteSpecialEventPayloadOneOf, Asset, SiteCreated, SiteTransferred, SiteDeleted, DeleteContext, SiteUndeleted, SitePublished, SiteUnpublished, SiteMarkedAsTemplate, SiteMarkedAsWixSite, ServiceProvisioned, ServiceRemoved, SiteRenamed, SiteHardDeleted, NamespaceChanged, Empty, InvalidateCache, InvalidateCacheGetByOneOf, App, Page, URI, CreateProjectRequest, CreateProjectResponse, GetProjectRequest, GetProjectResponse, ListProjectsRequest, CursorPaging, ListProjectsResponse, PagingMetadataV2, Cursors, UpdateProjectRequest, UpdateProjectResponse, DeleteProjectRequest, DeleteProjectResponse, QueryProjectsRequest, QueryV2, QueryV2PagingMethodOneOf, Sorting, Paging, QueryProjectsResponse, UpdateProjectOrderInCollectionRequest, UpdateProjectOrderInCollectionResponse, ProjectInCollection, QueryProjectWithCollectionInfoRequest, QueryProjectWithCollectionInfoResponse, DomainEvent, DomainEventBodyOneOf, EntityCreatedEvent, EntityUpdatedEvent, EntityDeletedEvent, ActionEvent, ExtendedFieldsUpdatedEvent, GetProjectOptions, ListProjectsOptions, UpdateProject, QueryProjectsOptions, ProjectsQueryResult, ProjectsQueryBuilder, } from './portfolio-projects-v1-project.universal';
@@ -454,102 +454,6 @@ export interface NamespaceChanged {
454
454
  }
455
455
  export interface Empty {
456
456
  }
457
- export interface HtmlSitePublished {
458
- /** Application instance ID */
459
- appInstanceId?: string;
460
- /** Application type */
461
- appType?: string;
462
- /** Revision */
463
- revision?: string;
464
- /** MSID */
465
- metaSiteId?: string | null;
466
- /** optional branch id if publish is done from branch */
467
- branchId?: string | null;
468
- /** The site's last transactionId */
469
- lastTransactionId?: string | null;
470
- /** A list of the site's pages */
471
- pages?: EventsPage[];
472
- /** Site's publish date */
473
- publishDate?: string;
474
- }
475
- export interface EventsPage {
476
- /** Page's Id */
477
- id?: string;
478
- }
479
- export interface DomainEvent extends DomainEventBodyOneOf {
480
- /** random GUID so clients can tell if event was already handled */
481
- id?: string;
482
- /**
483
- * Assumes actions are also always typed to an entity_type
484
- * Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
485
- */
486
- entityFqdn?: string;
487
- /**
488
- * This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
489
- * This is although the created/updated/deleted notion is duplication of the oneof types
490
- * Example: created/updated/deleted/started/completed/email_opened
491
- */
492
- slug?: string;
493
- /**
494
- * Assuming that all messages including Actions have id
495
- * Example: The id of the specific order, the id of a specific campaign
496
- */
497
- entityId?: string;
498
- /** The time of the event. Useful if there was a delay in dispatching */
499
- eventTime?: Date;
500
- /**
501
- * A field that should be set if this event was triggered by an anonymize request.
502
- * For example you must set it to true when sending an event as a result of a GDPR right to be forgotten request.
503
- * NOTE: This field is not relevant for `EntityCreatedEvent` but is located here for better ergonomics of consumers.
504
- */
505
- triggeredByAnonymizeRequest?: boolean | null;
506
- /** If present, indicates the action that triggered the event. */
507
- originatedFrom?: string | null;
508
- /**
509
- * A sequence number defining the order of updates to the underlying entity.
510
- * For example, given that some entity was updated at 16:00 and than again at 16:01,
511
- * it is guaranteed that the sequence number of the second update is strictly higher than the first.
512
- * As the consumer, you can use this value to ensure that you handle messages in the correct order.
513
- * To do so, you will need to persist this number on your end, and compare the sequence number from the
514
- * message against the one you have stored. Given that the stored number is higher, you should ignore the message.
515
- */
516
- entityEventSequence?: string | null;
517
- createdEvent?: EntityCreatedEvent;
518
- updatedEvent?: EntityUpdatedEvent;
519
- deletedEvent?: EntityDeletedEvent;
520
- actionEvent?: ActionEvent;
521
- extendedFieldsUpdatedEvent?: ExtendedFieldsUpdatedEvent;
522
- }
523
- /** @oneof */
524
- export interface DomainEventBodyOneOf {
525
- createdEvent?: EntityCreatedEvent;
526
- updatedEvent?: EntityUpdatedEvent;
527
- deletedEvent?: EntityDeletedEvent;
528
- actionEvent?: ActionEvent;
529
- extendedFieldsUpdatedEvent?: ExtendedFieldsUpdatedEvent;
530
- }
531
- export interface EntityCreatedEvent {
532
- entityAsJson?: string;
533
- }
534
- export interface EntityUpdatedEvent {
535
- /**
536
- * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
537
- * This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
538
- * We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
539
- */
540
- currentEntityAsJson?: string;
541
- }
542
- export interface EntityDeletedEvent {
543
- }
544
- export interface ActionEvent {
545
- bodyAsJson?: string;
546
- }
547
- export interface ExtendedFieldsUpdatedEvent {
548
- currentEntityAsJson?: string;
549
- }
550
- export interface AdminUpdatePortfolioMenuResponse {
551
- response?: string | null;
552
- }
553
457
  export interface InvalidateCache extends InvalidateCacheGetByOneOf {
554
458
  /** tell us why you're invalidating the cache. You don't need to add your app name */
555
459
  reason?: string | null;
@@ -760,3 +664,74 @@ export interface QueryProjectWithCollectionInfoResponse {
760
664
  /** Paging metadata */
761
665
  metadata?: PagingMetadataV2;
762
666
  }
667
+ export interface DomainEvent extends DomainEventBodyOneOf {
668
+ /** random GUID so clients can tell if event was already handled */
669
+ id?: string;
670
+ /**
671
+ * Assumes actions are also always typed to an entity_type
672
+ * Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
673
+ */
674
+ entityFqdn?: string;
675
+ /**
676
+ * This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
677
+ * This is although the created/updated/deleted notion is duplication of the oneof types
678
+ * Example: created/updated/deleted/started/completed/email_opened
679
+ */
680
+ slug?: string;
681
+ /**
682
+ * Assuming that all messages including Actions have id
683
+ * Example: The id of the specific order, the id of a specific campaign
684
+ */
685
+ entityId?: string;
686
+ /** The time of the event. Useful if there was a delay in dispatching */
687
+ eventTime?: Date;
688
+ /**
689
+ * A field that should be set if this event was triggered by an anonymize request.
690
+ * For example you must set it to true when sending an event as a result of a GDPR right to be forgotten request.
691
+ * NOTE: This field is not relevant for `EntityCreatedEvent` but is located here for better ergonomics of consumers.
692
+ */
693
+ triggeredByAnonymizeRequest?: boolean | null;
694
+ /** If present, indicates the action that triggered the event. */
695
+ originatedFrom?: string | null;
696
+ /**
697
+ * A sequence number defining the order of updates to the underlying entity.
698
+ * For example, given that some entity was updated at 16:00 and than again at 16:01,
699
+ * it is guaranteed that the sequence number of the second update is strictly higher than the first.
700
+ * As the consumer, you can use this value to ensure that you handle messages in the correct order.
701
+ * To do so, you will need to persist this number on your end, and compare the sequence number from the
702
+ * message against the one you have stored. Given that the stored number is higher, you should ignore the message.
703
+ */
704
+ entityEventSequence?: string | null;
705
+ createdEvent?: EntityCreatedEvent;
706
+ updatedEvent?: EntityUpdatedEvent;
707
+ deletedEvent?: EntityDeletedEvent;
708
+ actionEvent?: ActionEvent;
709
+ extendedFieldsUpdatedEvent?: ExtendedFieldsUpdatedEvent;
710
+ }
711
+ /** @oneof */
712
+ export interface DomainEventBodyOneOf {
713
+ createdEvent?: EntityCreatedEvent;
714
+ updatedEvent?: EntityUpdatedEvent;
715
+ deletedEvent?: EntityDeletedEvent;
716
+ actionEvent?: ActionEvent;
717
+ extendedFieldsUpdatedEvent?: ExtendedFieldsUpdatedEvent;
718
+ }
719
+ export interface EntityCreatedEvent {
720
+ entityAsJson?: string;
721
+ }
722
+ export interface EntityUpdatedEvent {
723
+ /**
724
+ * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
725
+ * This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
726
+ * We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
727
+ */
728
+ currentEntityAsJson?: string;
729
+ }
730
+ export interface EntityDeletedEvent {
731
+ }
732
+ export interface ActionEvent {
733
+ bodyAsJson?: string;
734
+ }
735
+ export interface ExtendedFieldsUpdatedEvent {
736
+ currentEntityAsJson?: string;
737
+ }
@@ -1 +1 @@
1
- {"version":3,"file":"portfolio-projects-v1-project.types.js","sourceRoot":"","sources":["../../../src/portfolio-projects-v1-project.types.ts"],"names":[],"mappings":";;;AA+DA,IAAY,cAIX;AAJD,WAAY,cAAc;IACxB,yCAAuB,CAAA;IACvB,yCAAuB,CAAA;IACvB,uCAAqB,CAAA;AACvB,CAAC,EAJW,cAAc,GAAd,sBAAc,KAAd,sBAAc,QAIzB;AAqDD,IAAY,SAKX;AALD,WAAY,SAAS;IACnB,oCAAuB,CAAA;IACvB,oCAAuB,CAAA;IACvB,gCAAmB,CAAA;IACnB,4BAAe,CAAA;AACjB,CAAC,EALW,SAAS,GAAT,iBAAS,KAAT,iBAAS,QAKpB;AAoED,IAAY,UAIX;AAJD,WAAY,UAAU;IACpB,+BAAiB,CAAA;IACjB,iCAAmB,CAAA;IACnB,uCAAyB,CAAA;AAC3B,CAAC,EAJW,UAAU,GAAV,kBAAU,KAAV,kBAAU,QAIrB;AAmID,IAAY,KAMX;AAND,WAAY,KAAK;IACf,4BAAmB,CAAA;IACnB,4BAAmB,CAAA;IACnB,8BAAqB,CAAA;IACrB,4BAAmB,CAAA;IACnB,sBAAa,CAAA;AACf,CAAC,EANW,KAAK,GAAL,aAAK,KAAL,aAAK,QAMhB;AAiBD,IAAY,kBAaX;AAbD,WAAY,kBAAkB;IAC5B,6EAA6E;IAC7E,qCAAe,CAAA;IACf,6CAA6C;IAC7C,qDAA+B,CAAA;IAC/B,wEAAwE;IACxE,+EAAyD,CAAA;IACzD,oCAAoC;IACpC,6CAAuB,CAAA;IACvB,wGAAwG;IACxG,6DAAuC,CAAA;IACvC,2DAA2D;IAC3D,qCAAe,CAAA;AACjB,CAAC,EAbW,kBAAkB,GAAlB,0BAAkB,KAAlB,0BAAkB,QAa7B;AAED,IAAY,SAmDX;AAnDD,WAAY,SAAS;IACnB,oDAAuC,CAAA;IACvC,qHAAqH;IACrH,wBAAW,CAAA;IACX,6KAA6K;IAC7K,oCAAuB,CAAA;IACvB,0KAA0K;IAC1K,8BAAiB,CAAA;IACjB,6RAA6R;IAC7R,4DAA+C,CAAA;IAC/C,wHAAwH;IACxH,8BAAiB,CAAA;IACjB,kJAAkJ;IAClJ,4BAAe,CAAA;IACf,2HAA2H;IAC3H,kDAAqC,CAAA;IACrC,iIAAiI;IACjI,kCAAqB,CAAA;IACrB,sJAAsJ;IACtJ,4BAAe,CAAA;IACf,wJAAwJ;IACxJ,wCAA2B,CAAA;IAC3B,0FAA0F;IAC1F,oDAAuC,CAAA;IACvC,0FAA0F;IAC1F,sDAAyC,CAAA;IACzC;;;;OAIG;IACH,sCAAyB,CAAA;IACzB;;;;OAIG;IACH,oDAAuC,CAAA;IACvC,oGAAoG;IACpG,gDAAmC,CAAA;IACnC,sDAAsD;IACtD,gDAAmC,CAAA;IACnC,2CAA2C;IAC3C,kCAAqB,CAAA;IACrB,uDAAuD;IACvD,kCAAqB,CAAA;IACrB;;;OAGG;IACH,sDAAyC,CAAA;AAC3C,CAAC,EAnDW,SAAS,GAAT,iBAAS,KAAT,iBAAS,QAmDpB;AAsBD,IAAY,YAKX;AALD,WAAY,YAAY;IACtB,mCAAmB,CAAA;IACnB,+BAAe,CAAA;IACf,mCAAmB,CAAA;IACnB,+CAA+B,CAAA;AACjC,CAAC,EALW,YAAY,GAAZ,oBAAY,KAAZ,oBAAY,QAKvB;AAuVD,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,GAAT,iBAAS,KAAT,iBAAS,QAGpB"}
1
+ {"version":3,"file":"portfolio-projects-v1-project.types.js","sourceRoot":"","sources":["../../../src/portfolio-projects-v1-project.types.ts"],"names":[],"mappings":";;;AA+DA,IAAY,cAIX;AAJD,WAAY,cAAc;IACxB,yCAAuB,CAAA;IACvB,yCAAuB,CAAA;IACvB,uCAAqB,CAAA;AACvB,CAAC,EAJW,cAAc,GAAd,sBAAc,KAAd,sBAAc,QAIzB;AAqDD,IAAY,SAKX;AALD,WAAY,SAAS;IACnB,oCAAuB,CAAA;IACvB,oCAAuB,CAAA;IACvB,gCAAmB,CAAA;IACnB,4BAAe,CAAA;AACjB,CAAC,EALW,SAAS,GAAT,iBAAS,KAAT,iBAAS,QAKpB;AAoED,IAAY,UAIX;AAJD,WAAY,UAAU;IACpB,+BAAiB,CAAA;IACjB,iCAAmB,CAAA;IACnB,uCAAyB,CAAA;AAC3B,CAAC,EAJW,UAAU,GAAV,kBAAU,KAAV,kBAAU,QAIrB;AAmID,IAAY,KAMX;AAND,WAAY,KAAK;IACf,4BAAmB,CAAA;IACnB,4BAAmB,CAAA;IACnB,8BAAqB,CAAA;IACrB,4BAAmB,CAAA;IACnB,sBAAa,CAAA;AACf,CAAC,EANW,KAAK,GAAL,aAAK,KAAL,aAAK,QAMhB;AAiBD,IAAY,kBAaX;AAbD,WAAY,kBAAkB;IAC5B,6EAA6E;IAC7E,qCAAe,CAAA;IACf,6CAA6C;IAC7C,qDAA+B,CAAA;IAC/B,wEAAwE;IACxE,+EAAyD,CAAA;IACzD,oCAAoC;IACpC,6CAAuB,CAAA;IACvB,wGAAwG;IACxG,6DAAuC,CAAA;IACvC,2DAA2D;IAC3D,qCAAe,CAAA;AACjB,CAAC,EAbW,kBAAkB,GAAlB,0BAAkB,KAAlB,0BAAkB,QAa7B;AAED,IAAY,SAmDX;AAnDD,WAAY,SAAS;IACnB,oDAAuC,CAAA;IACvC,qHAAqH;IACrH,wBAAW,CAAA;IACX,6KAA6K;IAC7K,oCAAuB,CAAA;IACvB,0KAA0K;IAC1K,8BAAiB,CAAA;IACjB,6RAA6R;IAC7R,4DAA+C,CAAA;IAC/C,wHAAwH;IACxH,8BAAiB,CAAA;IACjB,kJAAkJ;IAClJ,4BAAe,CAAA;IACf,2HAA2H;IAC3H,kDAAqC,CAAA;IACrC,iIAAiI;IACjI,kCAAqB,CAAA;IACrB,sJAAsJ;IACtJ,4BAAe,CAAA;IACf,wJAAwJ;IACxJ,wCAA2B,CAAA;IAC3B,0FAA0F;IAC1F,oDAAuC,CAAA;IACvC,0FAA0F;IAC1F,sDAAyC,CAAA;IACzC;;;;OAIG;IACH,sCAAyB,CAAA;IACzB;;;;OAIG;IACH,oDAAuC,CAAA;IACvC,oGAAoG;IACpG,gDAAmC,CAAA;IACnC,sDAAsD;IACtD,gDAAmC,CAAA;IACnC,2CAA2C;IAC3C,kCAAqB,CAAA;IACrB,uDAAuD;IACvD,kCAAqB,CAAA;IACrB;;;OAGG;IACH,sDAAyC,CAAA;AAC3C,CAAC,EAnDW,SAAS,GAAT,iBAAS,KAAT,iBAAS,QAmDpB;AAsBD,IAAY,YAKX;AALD,WAAY,YAAY;IACtB,mCAAmB,CAAA;IACnB,+BAAe,CAAA;IACf,mCAAmB,CAAA;IACnB,+CAA+B,CAAA;AACjC,CAAC,EALW,YAAY,GAAZ,oBAAY,KAAZ,oBAAY,QAKvB;AA8OD,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,GAAT,iBAAS,KAAT,iBAAS,QAGpB"}