@wix/portfolio 1.0.2 → 1.0.4
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/build/cjs/index.d.ts +1 -1
- package/build/cjs/index.js +2 -2
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/src/portfolio-collections-v1-collection.http.js +4 -59
- package/build/cjs/src/portfolio-collections-v1-collection.http.js.map +1 -1
- package/build/cjs/src/portfolio-collections-v1-collection.public.d.ts +4 -4
- package/build/cjs/src/portfolio-collections-v1-collection.public.js +2 -3
- package/build/cjs/src/portfolio-collections-v1-collection.public.js.map +1 -1
- package/build/cjs/src/portfolio-collections-v1-collection.types.d.ts +76 -66
- package/build/cjs/src/portfolio-collections-v1-collection.types.js +1 -7
- package/build/cjs/src/portfolio-collections-v1-collection.types.js.map +1 -1
- package/build/cjs/src/portfolio-collections-v1-collection.universal.d.ts +85 -57
- package/build/cjs/src/portfolio-collections-v1-collection.universal.js +12 -23
- package/build/cjs/src/portfolio-collections-v1-collection.universal.js.map +1 -1
- package/build/cjs/src/portfolio-projects-v1-project.http.js +0 -1
- package/build/cjs/src/portfolio-projects-v1-project.http.js.map +1 -1
- package/build/cjs/src/portfolio-projects-v1-project.public.d.ts +2 -2
- package/build/cjs/src/portfolio-projects-v1-project.public.js +1 -1
- package/build/cjs/src/portfolio-projects-v1-project.public.js.map +1 -1
- package/build/cjs/src/portfolio-projects-v1-project.universal.d.ts +2 -1
- package/build/cjs/src/portfolio-projects-v1-project.universal.js +4 -8
- package/build/cjs/src/portfolio-projects-v1-project.universal.js.map +1 -1
- package/build/es/index.d.ts +1 -1
- package/build/es/index.js +1 -1
- package/build/es/index.js.map +1 -1
- package/build/es/src/portfolio-collections-v1-collection.http.js +4 -59
- package/build/es/src/portfolio-collections-v1-collection.http.js.map +1 -1
- package/build/es/src/portfolio-collections-v1-collection.public.d.ts +4 -4
- package/build/es/src/portfolio-collections-v1-collection.public.js +2 -2
- package/build/es/src/portfolio-collections-v1-collection.public.js.map +1 -1
- package/build/es/src/portfolio-collections-v1-collection.types.d.ts +76 -66
- package/build/es/src/portfolio-collections-v1-collection.types.js +0 -6
- package/build/es/src/portfolio-collections-v1-collection.types.js.map +1 -1
- package/build/es/src/portfolio-collections-v1-collection.universal.d.ts +85 -57
- package/build/es/src/portfolio-collections-v1-collection.universal.js +11 -22
- package/build/es/src/portfolio-collections-v1-collection.universal.js.map +1 -1
- package/build/es/src/portfolio-projects-v1-project.http.js +0 -1
- package/build/es/src/portfolio-projects-v1-project.http.js.map +1 -1
- package/build/es/src/portfolio-projects-v1-project.public.d.ts +2 -2
- package/build/es/src/portfolio-projects-v1-project.public.js +1 -1
- package/build/es/src/portfolio-projects-v1-project.public.js.map +1 -1
- package/build/es/src/portfolio-projects-v1-project.universal.d.ts +2 -1
- package/build/es/src/portfolio-projects-v1-project.universal.js +4 -8
- package/build/es/src/portfolio-projects-v1-project.universal.js.map +1 -1
- package/package.json +2 -2
|
@@ -9,7 +9,7 @@ export interface Collection {
|
|
|
9
9
|
revision?: string | null;
|
|
10
10
|
title?: string | null;
|
|
11
11
|
description?: string | null;
|
|
12
|
-
/** Url of Collection
|
|
12
|
+
/** Url of Collection */
|
|
13
13
|
slug?: string | null;
|
|
14
14
|
/** Collection's cover photo */
|
|
15
15
|
coverImage?: Image;
|
|
@@ -36,7 +36,7 @@ export interface Collection {
|
|
|
36
36
|
}
|
|
37
37
|
export interface Image {
|
|
38
38
|
/** Image info - Wix Media Image. Required. */
|
|
39
|
-
imageInfo?:
|
|
39
|
+
imageInfo?: CommonImage;
|
|
40
40
|
/** Focal point of the image. */
|
|
41
41
|
focalPoint?: Point;
|
|
42
42
|
/** Set of key-value pairs describing the media in [Exchangeable Image File format](https://en.wikipedia.org/wiki/Exif). */
|
|
@@ -56,7 +56,7 @@ export declare enum ImageType {
|
|
|
56
56
|
WIX_MEDIA = "WIX_MEDIA",
|
|
57
57
|
EXTERNAL = "EXTERNAL"
|
|
58
58
|
}
|
|
59
|
-
export interface
|
|
59
|
+
export interface CommonImage {
|
|
60
60
|
/** WixMedia image ID. Required. */
|
|
61
61
|
id?: string;
|
|
62
62
|
/**
|
|
@@ -132,69 +132,6 @@ export interface Settings {
|
|
|
132
132
|
/** disable auto creation of 301 redirects on slug changes (enabled by default). */
|
|
133
133
|
preventAutoRedirect?: boolean;
|
|
134
134
|
}
|
|
135
|
-
export interface CommonImage {
|
|
136
|
-
/** Image info - Wix Media Image. Required. */
|
|
137
|
-
imageInfo?: PortfolioCommonImage;
|
|
138
|
-
/** Focal point of the image. */
|
|
139
|
-
focalPoint?: CommonPoint;
|
|
140
|
-
/** Set of key-value pairs describing the media in [Exchangeable Image File format](https://en.wikipedia.org/wiki/Exif). */
|
|
141
|
-
exif?: Record<string, any> | null;
|
|
142
|
-
/**
|
|
143
|
-
* Image compression level. <br />
|
|
144
|
-
*
|
|
145
|
-
* Min: `30` <br />
|
|
146
|
-
* Max: `100`
|
|
147
|
-
*/
|
|
148
|
-
quality?: number | null;
|
|
149
|
-
/** [Unsharp masking](https://en.wikipedia.org/wiki/Unsharp_masking) values of the image. */
|
|
150
|
-
unsharpMasking?: CommonUnsharpMasking;
|
|
151
|
-
}
|
|
152
|
-
export declare enum ImageImageType {
|
|
153
|
-
UNDEFINED = "UNDEFINED",
|
|
154
|
-
WIX_MEDIA = "WIX_MEDIA",
|
|
155
|
-
EXTERNAL = "EXTERNAL"
|
|
156
|
-
}
|
|
157
|
-
export interface PortfolioCommonImage {
|
|
158
|
-
/** WixMedia image ID. Required. */
|
|
159
|
-
id?: string;
|
|
160
|
-
/**
|
|
161
|
-
* Image URL.
|
|
162
|
-
* @readonly
|
|
163
|
-
*/
|
|
164
|
-
url?: string;
|
|
165
|
-
/** Original image height. Required. */
|
|
166
|
-
height?: number;
|
|
167
|
-
/** Original image width. Required. */
|
|
168
|
-
width?: number;
|
|
169
|
-
/** Image alt text. */
|
|
170
|
-
altText?: string | null;
|
|
171
|
-
/** Image filename. */
|
|
172
|
-
filename?: string | null;
|
|
173
|
-
}
|
|
174
|
-
export interface CommonPoint {
|
|
175
|
-
/** X-coordinate of the focal point. */
|
|
176
|
-
x?: number;
|
|
177
|
-
/** Y-coordinate of the focal point. */
|
|
178
|
-
y?: number;
|
|
179
|
-
}
|
|
180
|
-
export interface CommonUnsharpMasking {
|
|
181
|
-
/**
|
|
182
|
-
* Unsharp masking amount. Controls the sharpening strength. <br />
|
|
183
|
-
*
|
|
184
|
-
* Min: `0` <br />
|
|
185
|
-
* Max: `5`
|
|
186
|
-
*/
|
|
187
|
-
amount?: number | null;
|
|
188
|
-
/** Unsharp masking radius in pixels. Controls the sharpening width. */
|
|
189
|
-
radius?: number | null;
|
|
190
|
-
/**
|
|
191
|
-
* Unsharp masking threshold. Controls how different neighboring pixels must be for shapening to apply. <br />
|
|
192
|
-
*
|
|
193
|
-
* Min: `0` <br />
|
|
194
|
-
* Max: `1`
|
|
195
|
-
*/
|
|
196
|
-
threshold?: number | null;
|
|
197
|
-
}
|
|
198
135
|
export interface InvalidateCache extends InvalidateCacheGetByOneOf {
|
|
199
136
|
/** tell us why you're invalidating the cache. You don't need to add your app name */
|
|
200
137
|
reason?: string | null;
|
|
@@ -382,3 +319,76 @@ export interface QueryCollectionsResponse {
|
|
|
382
319
|
/** Paging metadata */
|
|
383
320
|
metadata?: PagingMetadataV2;
|
|
384
321
|
}
|
|
322
|
+
export interface DomainEvent extends DomainEventBodyOneOf {
|
|
323
|
+
/** random GUID so clients can tell if event was already handled */
|
|
324
|
+
id?: string;
|
|
325
|
+
/**
|
|
326
|
+
* Assumes actions are also always typed to an entity_type
|
|
327
|
+
* Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
|
|
328
|
+
*/
|
|
329
|
+
entityFqdn?: string;
|
|
330
|
+
/**
|
|
331
|
+
* This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
|
|
332
|
+
* This is although the created/updated/deleted notion is duplication of the oneof types
|
|
333
|
+
* Example: created/updated/deleted/started/completed/email_opened
|
|
334
|
+
*/
|
|
335
|
+
slug?: string;
|
|
336
|
+
/**
|
|
337
|
+
* Assuming that all messages including Actions have id
|
|
338
|
+
* Example: The id of the specific order, the id of a specific campaign
|
|
339
|
+
*/
|
|
340
|
+
entityId?: string;
|
|
341
|
+
/** The time of the event. Useful if there was a delay in dispatching */
|
|
342
|
+
eventTime?: Date;
|
|
343
|
+
/**
|
|
344
|
+
* A field that should be set if this event was triggered by an anonymize request.
|
|
345
|
+
* For example you must set it to true when sending an event as a result of a GDPR right to be forgotten request.
|
|
346
|
+
* NOTE: This field is not relevant for `EntityCreatedEvent` but is located here for better ergonomics of consumers.
|
|
347
|
+
*/
|
|
348
|
+
triggeredByAnonymizeRequest?: boolean | null;
|
|
349
|
+
/** If present, indicates the action that triggered the event. */
|
|
350
|
+
originatedFrom?: string | null;
|
|
351
|
+
/**
|
|
352
|
+
* A sequence number defining the order of updates to the underlying entity.
|
|
353
|
+
* For example, given that some entity was updated at 16:00 and than again at 16:01,
|
|
354
|
+
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
355
|
+
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
356
|
+
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
357
|
+
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
358
|
+
*/
|
|
359
|
+
entityEventSequence?: string | null;
|
|
360
|
+
createdEvent?: EntityCreatedEvent;
|
|
361
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
362
|
+
deletedEvent?: EntityDeletedEvent;
|
|
363
|
+
actionEvent?: ActionEvent;
|
|
364
|
+
extendedFieldsUpdatedEvent?: ExtendedFieldsUpdatedEvent;
|
|
365
|
+
}
|
|
366
|
+
/** @oneof */
|
|
367
|
+
export interface DomainEventBodyOneOf {
|
|
368
|
+
createdEvent?: EntityCreatedEvent;
|
|
369
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
370
|
+
deletedEvent?: EntityDeletedEvent;
|
|
371
|
+
actionEvent?: ActionEvent;
|
|
372
|
+
extendedFieldsUpdatedEvent?: ExtendedFieldsUpdatedEvent;
|
|
373
|
+
}
|
|
374
|
+
export interface EntityCreatedEvent {
|
|
375
|
+
entityAsJson?: string;
|
|
376
|
+
}
|
|
377
|
+
export interface EntityUpdatedEvent {
|
|
378
|
+
/**
|
|
379
|
+
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
380
|
+
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
381
|
+
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
382
|
+
*/
|
|
383
|
+
currentEntityAsJson?: string;
|
|
384
|
+
}
|
|
385
|
+
export interface EntityDeletedEvent {
|
|
386
|
+
}
|
|
387
|
+
export interface ActionEvent {
|
|
388
|
+
bodyAsJson?: string;
|
|
389
|
+
}
|
|
390
|
+
export interface ExtendedFieldsUpdatedEvent {
|
|
391
|
+
currentEntityAsJson?: string;
|
|
392
|
+
}
|
|
393
|
+
export interface Empty {
|
|
394
|
+
}
|
|
@@ -4,12 +4,6 @@ export var ImageType;
|
|
|
4
4
|
ImageType["WIX_MEDIA"] = "WIX_MEDIA";
|
|
5
5
|
ImageType["EXTERNAL"] = "EXTERNAL";
|
|
6
6
|
})(ImageType || (ImageType = {}));
|
|
7
|
-
export var ImageImageType;
|
|
8
|
-
(function (ImageImageType) {
|
|
9
|
-
ImageImageType["UNDEFINED"] = "UNDEFINED";
|
|
10
|
-
ImageImageType["WIX_MEDIA"] = "WIX_MEDIA";
|
|
11
|
-
ImageImageType["EXTERNAL"] = "EXTERNAL";
|
|
12
|
-
})(ImageImageType || (ImageImageType = {}));
|
|
13
7
|
export var SortOrder;
|
|
14
8
|
(function (SortOrder) {
|
|
15
9
|
SortOrder["ASC"] = "ASC";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"portfolio-collections-v1-collection.types.js","sourceRoot":"","sources":["../../../src/portfolio-collections-v1-collection.types.ts"],"names":[],"mappings":"AAuDA,MAAM,CAAN,IAAY,SAIX;AAJD,WAAY,SAAS;IACnB,oCAAuB,CAAA;IACvB,oCAAuB,CAAA;IACvB,kCAAqB,CAAA;AACvB,CAAC,EAJW,SAAS,KAAT,SAAS,QAIpB;
|
|
1
|
+
{"version":3,"file":"portfolio-collections-v1-collection.types.js","sourceRoot":"","sources":["../../../src/portfolio-collections-v1-collection.types.ts"],"names":[],"mappings":"AAuDA,MAAM,CAAN,IAAY,SAIX;AAJD,WAAY,SAAS;IACnB,oCAAuB,CAAA;IACvB,oCAAuB,CAAA;IACvB,kCAAqB,CAAA;AACvB,CAAC,EAJW,SAAS,KAAT,SAAS,QAIpB;AAoRD,MAAM,CAAN,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,KAAT,SAAS,QAGpB"}
|
|
@@ -15,10 +15,10 @@ export interface Collection {
|
|
|
15
15
|
revision?: string | null;
|
|
16
16
|
title?: string | null;
|
|
17
17
|
description?: string | null;
|
|
18
|
-
/** Url of Collection
|
|
18
|
+
/** Url of Collection */
|
|
19
19
|
slug?: string | null;
|
|
20
20
|
/** Collection's cover photo */
|
|
21
|
-
coverImage?:
|
|
21
|
+
coverImage?: CommonImage;
|
|
22
22
|
/** Indicates if the collection is hidden from Portfolio */
|
|
23
23
|
hidden?: boolean | null;
|
|
24
24
|
/** if not present in an update it means the collection will be added as currentTimestamp - as the last collection */
|
|
@@ -40,11 +40,11 @@ export interface Collection {
|
|
|
40
40
|
url?: string;
|
|
41
41
|
seoData?: SeoSchema;
|
|
42
42
|
}
|
|
43
|
-
export interface
|
|
43
|
+
export interface CommonImage {
|
|
44
44
|
/** Image info - Wix Media Image. Required. */
|
|
45
45
|
imageInfo?: string;
|
|
46
46
|
/** Focal point of the image. */
|
|
47
|
-
focalPoint?:
|
|
47
|
+
focalPoint?: CommonPoint;
|
|
48
48
|
/** Set of key-value pairs describing the media in [Exchangeable Image File format](https://en.wikipedia.org/wiki/Exif). */
|
|
49
49
|
exif?: Record<string, any> | null;
|
|
50
50
|
/**
|
|
@@ -55,20 +55,20 @@ export interface Image {
|
|
|
55
55
|
*/
|
|
56
56
|
quality?: number | null;
|
|
57
57
|
/** [Unsharp masking](https://en.wikipedia.org/wiki/Unsharp_masking) values of the image. */
|
|
58
|
-
unsharpMasking?:
|
|
58
|
+
unsharpMasking?: CommonUnsharpMasking;
|
|
59
59
|
}
|
|
60
|
-
export declare enum
|
|
60
|
+
export declare enum ImageImageType {
|
|
61
61
|
UNDEFINED = "UNDEFINED",
|
|
62
62
|
WIX_MEDIA = "WIX_MEDIA",
|
|
63
63
|
EXTERNAL = "EXTERNAL"
|
|
64
64
|
}
|
|
65
|
-
export interface
|
|
65
|
+
export interface CommonPoint {
|
|
66
66
|
/** X-coordinate of the focal point. */
|
|
67
67
|
x?: number;
|
|
68
68
|
/** Y-coordinate of the focal point. */
|
|
69
69
|
y?: number;
|
|
70
70
|
}
|
|
71
|
-
export interface
|
|
71
|
+
export interface CommonUnsharpMasking {
|
|
72
72
|
/**
|
|
73
73
|
* Unsharp masking amount. Controls the sharpening strength. <br />
|
|
74
74
|
*
|
|
@@ -115,52 +115,6 @@ export interface Settings {
|
|
|
115
115
|
/** disable auto creation of 301 redirects on slug changes (enabled by default). */
|
|
116
116
|
preventAutoRedirect?: boolean;
|
|
117
117
|
}
|
|
118
|
-
export interface CommonImage {
|
|
119
|
-
/** Image info - Wix Media Image. Required. */
|
|
120
|
-
imageInfo?: string;
|
|
121
|
-
/** Focal point of the image. */
|
|
122
|
-
focalPoint?: CommonPoint;
|
|
123
|
-
/** Set of key-value pairs describing the media in [Exchangeable Image File format](https://en.wikipedia.org/wiki/Exif). */
|
|
124
|
-
exif?: Record<string, any> | null;
|
|
125
|
-
/**
|
|
126
|
-
* Image compression level. <br />
|
|
127
|
-
*
|
|
128
|
-
* Min: `30` <br />
|
|
129
|
-
* Max: `100`
|
|
130
|
-
*/
|
|
131
|
-
quality?: number | null;
|
|
132
|
-
/** [Unsharp masking](https://en.wikipedia.org/wiki/Unsharp_masking) values of the image. */
|
|
133
|
-
unsharpMasking?: CommonUnsharpMasking;
|
|
134
|
-
}
|
|
135
|
-
export declare enum ImageImageType {
|
|
136
|
-
UNDEFINED = "UNDEFINED",
|
|
137
|
-
WIX_MEDIA = "WIX_MEDIA",
|
|
138
|
-
EXTERNAL = "EXTERNAL"
|
|
139
|
-
}
|
|
140
|
-
export interface CommonPoint {
|
|
141
|
-
/** X-coordinate of the focal point. */
|
|
142
|
-
x?: number;
|
|
143
|
-
/** Y-coordinate of the focal point. */
|
|
144
|
-
y?: number;
|
|
145
|
-
}
|
|
146
|
-
export interface CommonUnsharpMasking {
|
|
147
|
-
/**
|
|
148
|
-
* Unsharp masking amount. Controls the sharpening strength. <br />
|
|
149
|
-
*
|
|
150
|
-
* Min: `0` <br />
|
|
151
|
-
* Max: `5`
|
|
152
|
-
*/
|
|
153
|
-
amount?: number | null;
|
|
154
|
-
/** Unsharp masking radius in pixels. Controls the sharpening width. */
|
|
155
|
-
radius?: number | null;
|
|
156
|
-
/**
|
|
157
|
-
* Unsharp masking threshold. Controls how different neighboring pixels must be for shapening to apply. <br />
|
|
158
|
-
*
|
|
159
|
-
* Min: `0` <br />
|
|
160
|
-
* Max: `1`
|
|
161
|
-
*/
|
|
162
|
-
threshold?: number | null;
|
|
163
|
-
}
|
|
164
118
|
export interface InvalidateCache extends InvalidateCacheGetByOneOf {
|
|
165
119
|
/** tell us why you're invalidating the cache. You don't need to add your app name */
|
|
166
120
|
reason?: string | null;
|
|
@@ -348,6 +302,79 @@ export interface QueryCollectionsResponse {
|
|
|
348
302
|
/** Paging metadata */
|
|
349
303
|
metadata?: PagingMetadataV2;
|
|
350
304
|
}
|
|
305
|
+
export interface DomainEvent extends DomainEventBodyOneOf {
|
|
306
|
+
/** random GUID so clients can tell if event was already handled */
|
|
307
|
+
_id?: string;
|
|
308
|
+
/**
|
|
309
|
+
* Assumes actions are also always typed to an entity_type
|
|
310
|
+
* Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
|
|
311
|
+
*/
|
|
312
|
+
entityFqdn?: string;
|
|
313
|
+
/**
|
|
314
|
+
* This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
|
|
315
|
+
* This is although the created/updated/deleted notion is duplication of the oneof types
|
|
316
|
+
* Example: created/updated/deleted/started/completed/email_opened
|
|
317
|
+
*/
|
|
318
|
+
slug?: string;
|
|
319
|
+
/**
|
|
320
|
+
* Assuming that all messages including Actions have id
|
|
321
|
+
* Example: The id of the specific order, the id of a specific campaign
|
|
322
|
+
*/
|
|
323
|
+
entityId?: string;
|
|
324
|
+
/** The time of the event. Useful if there was a delay in dispatching */
|
|
325
|
+
eventTime?: Date;
|
|
326
|
+
/**
|
|
327
|
+
* A field that should be set if this event was triggered by an anonymize request.
|
|
328
|
+
* For example you must set it to true when sending an event as a result of a GDPR right to be forgotten request.
|
|
329
|
+
* NOTE: This field is not relevant for `EntityCreatedEvent` but is located here for better ergonomics of consumers.
|
|
330
|
+
*/
|
|
331
|
+
triggeredByAnonymizeRequest?: boolean | null;
|
|
332
|
+
/** If present, indicates the action that triggered the event. */
|
|
333
|
+
originatedFrom?: string | null;
|
|
334
|
+
/**
|
|
335
|
+
* A sequence number defining the order of updates to the underlying entity.
|
|
336
|
+
* For example, given that some entity was updated at 16:00 and than again at 16:01,
|
|
337
|
+
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
338
|
+
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
339
|
+
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
340
|
+
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
341
|
+
*/
|
|
342
|
+
entityEventSequence?: string | null;
|
|
343
|
+
createdEvent?: EntityCreatedEvent;
|
|
344
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
345
|
+
deletedEvent?: EntityDeletedEvent;
|
|
346
|
+
actionEvent?: ActionEvent;
|
|
347
|
+
extendedFieldsUpdatedEvent?: ExtendedFieldsUpdatedEvent;
|
|
348
|
+
}
|
|
349
|
+
/** @oneof */
|
|
350
|
+
export interface DomainEventBodyOneOf {
|
|
351
|
+
createdEvent?: EntityCreatedEvent;
|
|
352
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
353
|
+
deletedEvent?: EntityDeletedEvent;
|
|
354
|
+
actionEvent?: ActionEvent;
|
|
355
|
+
extendedFieldsUpdatedEvent?: ExtendedFieldsUpdatedEvent;
|
|
356
|
+
}
|
|
357
|
+
export interface EntityCreatedEvent {
|
|
358
|
+
entityAsJson?: string;
|
|
359
|
+
}
|
|
360
|
+
export interface EntityUpdatedEvent {
|
|
361
|
+
/**
|
|
362
|
+
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
363
|
+
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
364
|
+
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
365
|
+
*/
|
|
366
|
+
currentEntityAsJson?: string;
|
|
367
|
+
}
|
|
368
|
+
export interface EntityDeletedEvent {
|
|
369
|
+
}
|
|
370
|
+
export interface ActionEvent {
|
|
371
|
+
bodyAsJson?: string;
|
|
372
|
+
}
|
|
373
|
+
export interface ExtendedFieldsUpdatedEvent {
|
|
374
|
+
currentEntityAsJson?: string;
|
|
375
|
+
}
|
|
376
|
+
export interface Empty {
|
|
377
|
+
}
|
|
351
378
|
/**
|
|
352
379
|
* Creates a new Collection
|
|
353
380
|
* @param collection - Collection to be created
|
|
@@ -397,10 +424,10 @@ export interface UpdateCollection {
|
|
|
397
424
|
revision?: string | null;
|
|
398
425
|
title?: string | null;
|
|
399
426
|
description?: string | null;
|
|
400
|
-
/** Url of Collection
|
|
427
|
+
/** Url of Collection */
|
|
401
428
|
slug?: string | null;
|
|
402
429
|
/** Collection's cover photo */
|
|
403
|
-
coverImage?:
|
|
430
|
+
coverImage?: CommonImage;
|
|
404
431
|
/** Indicates if the collection is hidden from Portfolio */
|
|
405
432
|
hidden?: boolean | null;
|
|
406
433
|
/** if not present in an update it means the collection will be added as currentTimestamp - as the last collection */
|
|
@@ -440,7 +467,8 @@ export interface DeleteCollectionOptions {
|
|
|
440
467
|
/**
|
|
441
468
|
* Query Collections using [WQL - Wix Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language)
|
|
442
469
|
* @public */
|
|
443
|
-
export declare function queryCollections(): CollectionsQueryBuilder;
|
|
470
|
+
export declare function queryCollections(options?: QueryCollectionsOptions): CollectionsQueryBuilder;
|
|
471
|
+
export declare type QueryCollectionsOptions = Omit<QueryCollectionsRequest, 'query'>;
|
|
444
472
|
interface QueryCursorResult {
|
|
445
473
|
hasNext: () => boolean;
|
|
446
474
|
hasPrev: () => boolean;
|
|
@@ -26,12 +26,6 @@ export const __debug = {
|
|
|
26
26
|
};
|
|
27
27
|
const _toVeloEntity = '$';
|
|
28
28
|
const _fromVeloEntity = '$';
|
|
29
|
-
export var ImageType;
|
|
30
|
-
(function (ImageType) {
|
|
31
|
-
ImageType["UNDEFINED"] = "UNDEFINED";
|
|
32
|
-
ImageType["WIX_MEDIA"] = "WIX_MEDIA";
|
|
33
|
-
ImageType["EXTERNAL"] = "EXTERNAL";
|
|
34
|
-
})(ImageType || (ImageType = {}));
|
|
35
29
|
export var ImageImageType;
|
|
36
30
|
(function (ImageImageType) {
|
|
37
31
|
ImageImageType["UNDEFINED"] = "UNDEFINED";
|
|
@@ -43,11 +37,7 @@ export var SortOrder;
|
|
|
43
37
|
SortOrder["ASC"] = "ASC";
|
|
44
38
|
SortOrder["DESC"] = "DESC";
|
|
45
39
|
})(SortOrder || (SortOrder = {}));
|
|
46
|
-
const _collection = {
|
|
47
|
-
url: 'wix.common.PageUrlV2',
|
|
48
|
-
coverImage: '_image',
|
|
49
|
-
coverImageTemp: '_commonImage',
|
|
50
|
-
};
|
|
40
|
+
const _collection = { url: 'wix.common.PageUrlV2', coverImage: '_commonImage' };
|
|
51
41
|
const _commonImage = { imageInfo: 'wix.common.Image' };
|
|
52
42
|
const _createCollectionRequest = { collection: '_collection' };
|
|
53
43
|
const _createCollectionResponse = { collection: '_collection' };
|
|
@@ -55,7 +45,6 @@ const _deleteCollectionRequest = {};
|
|
|
55
45
|
const _deleteCollectionResponse = {};
|
|
56
46
|
const _getCollectionRequest = {};
|
|
57
47
|
const _getCollectionResponse = { collection: '_collection' };
|
|
58
|
-
const _image = { imageInfo: 'wix.common.Image' };
|
|
59
48
|
const _listCollectionsRequest = {};
|
|
60
49
|
const _listCollectionsResponse = { collections: '_collection' };
|
|
61
50
|
const _queryCollectionsRequest = {};
|
|
@@ -77,7 +66,7 @@ export function createCollection(collection) {
|
|
|
77
66
|
const httpClient = arguments[1].httpClient;
|
|
78
67
|
const { toAmbassadorRequest } = serializer({
|
|
79
68
|
rootSchema: _createCollectionRequest,
|
|
80
|
-
depSchemas: { _collection, _commonImage
|
|
69
|
+
depSchemas: { _collection, _commonImage },
|
|
81
70
|
fqdnTransformation: {
|
|
82
71
|
paths: [...['collection']],
|
|
83
72
|
transformation: _fromVeloEntity,
|
|
@@ -86,7 +75,7 @@ export function createCollection(collection) {
|
|
|
86
75
|
});
|
|
87
76
|
const { fromJSON } = serializer({
|
|
88
77
|
rootSchema: _createCollectionResponse,
|
|
89
|
-
depSchemas: { _collection, _commonImage
|
|
78
|
+
depSchemas: { _collection, _commonImage },
|
|
90
79
|
fqdnTransformation: {
|
|
91
80
|
paths: [...['collection']],
|
|
92
81
|
transformation: _toVeloEntity,
|
|
@@ -135,7 +124,7 @@ export function getCollection(collectionId, options) {
|
|
|
135
124
|
});
|
|
136
125
|
const { fromJSON } = serializer({
|
|
137
126
|
rootSchema: _getCollectionResponse,
|
|
138
|
-
depSchemas: { _collection, _commonImage
|
|
127
|
+
depSchemas: { _collection, _commonImage },
|
|
139
128
|
fqdnTransformation: {
|
|
140
129
|
paths: [...['collection']],
|
|
141
130
|
transformation: _toVeloEntity,
|
|
@@ -181,7 +170,7 @@ export function listCollections(options) {
|
|
|
181
170
|
});
|
|
182
171
|
const { fromJSON } = serializer({
|
|
183
172
|
rootSchema: _listCollectionsResponse,
|
|
184
|
-
depSchemas: { _collection, _commonImage
|
|
173
|
+
depSchemas: { _collection, _commonImage },
|
|
185
174
|
fqdnTransformation: {
|
|
186
175
|
paths: [],
|
|
187
176
|
transformation: _toVeloEntity,
|
|
@@ -224,7 +213,7 @@ export function updateCollection(_id, collection, options) {
|
|
|
224
213
|
const httpClient = arguments[3].httpClient;
|
|
225
214
|
const { toAmbassadorRequest } = serializer({
|
|
226
215
|
rootSchema: _updateCollectionRequest,
|
|
227
|
-
depSchemas: { _collection, _commonImage
|
|
216
|
+
depSchemas: { _collection, _commonImage },
|
|
228
217
|
fqdnTransformation: {
|
|
229
218
|
paths: [...['collection']],
|
|
230
219
|
transformation: _fromVeloEntity,
|
|
@@ -233,7 +222,7 @@ export function updateCollection(_id, collection, options) {
|
|
|
233
222
|
});
|
|
234
223
|
const { fromJSON } = serializer({
|
|
235
224
|
rootSchema: _updateCollectionResponse,
|
|
236
|
-
depSchemas: { _collection, _commonImage
|
|
225
|
+
depSchemas: { _collection, _commonImage },
|
|
237
226
|
fqdnTransformation: {
|
|
238
227
|
paths: [...['collection']],
|
|
239
228
|
transformation: _toVeloEntity,
|
|
@@ -309,14 +298,14 @@ export function deleteCollection(collectionId, options) {
|
|
|
309
298
|
/**
|
|
310
299
|
* Query Collections using [WQL - Wix Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language)
|
|
311
300
|
* @public */
|
|
312
|
-
export function queryCollections() {
|
|
301
|
+
export function queryCollections(options) {
|
|
313
302
|
const requestTransformation = { '*': '$[1]', query: '$[0]' };
|
|
314
303
|
const responseTransformation = {
|
|
315
304
|
items: '$.collections',
|
|
316
305
|
pagingMetadata: '$.metadata',
|
|
317
306
|
};
|
|
318
307
|
// @ts-ignore
|
|
319
|
-
const httpClient = arguments[
|
|
308
|
+
const httpClient = arguments[1].httpClient;
|
|
320
309
|
const { toAmbassadorRequest } = serializer({
|
|
321
310
|
rootSchema: _queryCollectionsRequest,
|
|
322
311
|
depSchemas: {},
|
|
@@ -328,7 +317,7 @@ export function queryCollections() {
|
|
|
328
317
|
});
|
|
329
318
|
const { fromJSON } = serializer({
|
|
330
319
|
rootSchema: _queryCollectionsResponse,
|
|
331
|
-
depSchemas: { _collection, _commonImage
|
|
320
|
+
depSchemas: { _collection, _commonImage },
|
|
332
321
|
fqdnTransformation: {
|
|
333
322
|
paths: [],
|
|
334
323
|
transformation: _toVeloEntity,
|
|
@@ -337,7 +326,7 @@ export function queryCollections() {
|
|
|
337
326
|
});
|
|
338
327
|
return wrapWithQueryBuilder({
|
|
339
328
|
func: (payload) => {
|
|
340
|
-
const reqOpts = ambassadorWixPortfolioCollectionsV1Collection.queryCollections(payload);
|
|
329
|
+
const reqOpts = ambassadorWixPortfolioCollectionsV1Collection.queryCollections(Object.assign(Object.assign({}, payload), (options !== null && options !== void 0 ? options : {})));
|
|
341
330
|
return httpClient.request(reqOpts);
|
|
342
331
|
},
|
|
343
332
|
requestTransformer: (...args) => toAmbassadorRequest(args),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"portfolio-collections-v1-collection.universal.js","sourceRoot":"","sources":["../../../src/portfolio-collections-v1-collection.universal.ts"],"names":[],"mappings":";;;;;;;;;AAAA,OAAO,EACL,UAAU,EACV,cAAc,EACd,qCAAqC,GACtC,MAAM,yBAAyB,CAAC;AAEjC,OAAO,KAAK,6CAA6C,MAAM,4CAA4C,CAAC;AAC5G,aAAa;AACb,OAAO,EAAE,oBAAoB,EAAE,MAAM,uCAAuC,CAAC;AAE7E,IAAI,SAAS,GAAG,KAAK,CAAC;AAEtB,SAAS,KAAK,CAAC,GAAG,IAAW;IAC3B,SAAS,IAAI,OAAO,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC,CAAC;AACpC,CAAC;AAED,SAAS,SAAS,CAAC,GAAQ;IACzB,OAAO,GAAG,CAAC;AACb,CAAC;AAED,MAAM,CAAC,MAAM,OAAO,GAAG;IACrB,cAAc,EAAE;QACd,EAAE,EAAE,GAAG,EAAE,CAAC,CAAC,SAAS,GAAG,IAAI,CAAC;QAC5B,GAAG,EAAE,GAAG,EAAE,CAAC,CAAC,SAAS,GAAG,KAAK,CAAC;KAC/B;CACF,CAAC;AACF,MAAM,aAAa,GAAG,GAAG,CAAC;AAC1B,MAAM,eAAe,GAAG,GAAG,CAAC;AAyD5B,MAAM,CAAN,IAAY,
|
|
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 +1 @@
|
|
|
1
|
-
{"version":3,"file":"portfolio-projects-v1-project.http.js","sourceRoot":"","sources":["../../../src/portfolio-projects-v1-project.http.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,oBAAoB,CAAC;AACvD,OAAO,EAAE,UAAU,EAAE,MAAM,+BAA+B,CAAC;AAC3D,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAsBhD,MAAM,YAAY,GAAG,EAAE,iBAAiB,EAAE,2BAA2B,EAAE,CAAC;AACxE,MAAM,qBAAqB,GAAG,EAAE,OAAO,EAAE,UAAU,EAAE,CAAC;AACtD,MAAM,sBAAsB,GAAG,EAAE,OAAO,EAAE,UAAU,EAAE,CAAC;AACvD,MAAM,qBAAqB,GAAG,EAAE,CAAC;AACjC,MAAM,sBAAsB,GAAG,EAAE,CAAC;AAClC,MAAM,kBAAkB,GAAG,EAAE,CAAC;AAC9B,MAAM,mBAAmB,GAAG,EAAE,OAAO,EAAE,UAAU,EAAE,CAAC;AACpD,MAAM,MAAM,GAAG;IACb,SAAS,EAAE,cAAc;IACzB,UAAU,EAAE,QAAQ;IACpB,cAAc,EAAE,iBAAiB;CAClC,CAAC;AACF,MAAM,oBAAoB,GAAG,EAAE,CAAC;AAChC,MAAM,qBAAqB,GAAG,EAAE,QAAQ,EAAE,UAAU,EAAE,CAAC;AACvD,MAAM,MAAM,GAAG,EAAE,CAAC,EAAE,QAAQ,EAAE,CAAC,EAAE,QAAQ,EAAE,CAAC;AAC5C,MAAM,QAAQ,GAAG;IACf,WAAW,EAAE,2BAA2B;IACxC,WAAW,EAAE,2BAA2B;IACxC,UAAU,EAAE,QAAQ;IACpB,OAAO,EAAE,gBAAgB;IACzB,MAAM,EAAE,gBAAgB;
|
|
1
|
+
{"version":3,"file":"portfolio-projects-v1-project.http.js","sourceRoot":"","sources":["../../../src/portfolio-projects-v1-project.http.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { HttpClient } from '@wix/sdk-types';
|
|
2
|
-
import { Project, UpdateProject, UpdateProjectOrderInCollectionIdentifiers, QueryV2, DeleteProjectOptions, GetProjectOptions, ListProjectsOptions, QueryProjectsWithCollectionInfoOptions, UpdateProjectOptions } from './portfolio-projects-v1-project.universal';
|
|
2
|
+
import { Project, UpdateProject, UpdateProjectOrderInCollectionIdentifiers, QueryV2, DeleteProjectOptions, GetProjectOptions, ListProjectsOptions, QueryProjectsOptions, QueryProjectsWithCollectionInfoOptions, UpdateProjectOptions } from './portfolio-projects-v1-project.universal';
|
|
3
3
|
export declare function createProject(httpClient: HttpClient): (project: Project) => Promise<Project>;
|
|
4
4
|
export declare function getProject(httpClient: HttpClient): (projectId: string, options?: GetProjectOptions | undefined) => Promise<Project>;
|
|
5
5
|
export declare function listProjects(httpClient: HttpClient): (options?: ListProjectsOptions | undefined) => Promise<import("./portfolio-projects-v1-project.universal").ListProjectsResponse>;
|
|
6
6
|
export declare function updateProject(httpClient: HttpClient): (_id: string | null, project: UpdateProject, options?: UpdateProjectOptions | undefined) => Promise<Project>;
|
|
7
7
|
export declare function deleteProject(httpClient: HttpClient): (projectId: string, options?: DeleteProjectOptions | undefined) => Promise<import("./portfolio-projects-v1-project.universal").DeleteProjectResponse>;
|
|
8
|
-
export declare function queryProjects(httpClient: HttpClient): () => import("./portfolio-projects-v1-project.universal").ProjectsQueryBuilder;
|
|
8
|
+
export declare function queryProjects(httpClient: HttpClient): (options?: QueryProjectsOptions | undefined) => import("./portfolio-projects-v1-project.universal").ProjectsQueryBuilder;
|
|
9
9
|
export declare function updateProjectOrderInCollection(httpClient: HttpClient): (identifiers: UpdateProjectOrderInCollectionIdentifiers, sortOrder: number | null) => Promise<import("./portfolio-projects-v1-project.universal").UpdateProjectOrderInCollectionResponse>;
|
|
10
10
|
export declare function queryProjectsWithCollectionInfo(httpClient: HttpClient): (query: QueryV2, options?: QueryProjectsWithCollectionInfoOptions | undefined) => Promise<import("./portfolio-projects-v1-project.universal").QueryProjectWithCollectionInfoResponse>;
|
|
11
11
|
export { ImageImageType, Key, SyncStatus, State, SiteCreatedContext, Namespace, DeleteStatus, SortOrder, } from './portfolio-projects-v1-project.universal';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"portfolio-projects-v1-project.public.js","sourceRoot":"","sources":["../../../src/portfolio-projects-v1-project.public.ts"],"names":[],"mappings":"AACA,OAAO,EACL,aAAa,IAAI,sBAAsB,EACvC,UAAU,IAAI,mBAAmB,EACjC,YAAY,IAAI,qBAAqB,EACrC,aAAa,IAAI,sBAAsB,EACvC,aAAa,IAAI,sBAAsB,EACvC,aAAa,IAAI,sBAAsB,EACvC,8BAA8B,IAAI,uCAAuC,EACzE,+BAA+B,IAAI,wCAAwC,
|
|
1
|
+
{"version":3,"file":"portfolio-projects-v1-project.public.js","sourceRoot":"","sources":["../../../src/portfolio-projects-v1-project.public.ts"],"names":[],"mappings":"AACA,OAAO,EACL,aAAa,IAAI,sBAAsB,EACvC,UAAU,IAAI,mBAAmB,EACjC,YAAY,IAAI,qBAAqB,EACrC,aAAa,IAAI,sBAAsB,EACvC,aAAa,IAAI,sBAAsB,EACvC,aAAa,IAAI,sBAAsB,EACvC,8BAA8B,IAAI,uCAAuC,EACzE,+BAA+B,IAAI,wCAAwC,GAW5E,MAAM,2CAA2C,CAAC;AAEnD,MAAM,UAAU,aAAa,CAAC,UAAsB;IAClD,OAAO,CAAC,OAAgB,EAAE,EAAE,CAC1B,sBAAsB,CACpB,OAAO;IACP,aAAa;IACb,EAAE,UAAU,EAAE,CACf,CAAC;AACN,CAAC;AAED,MAAM,UAAU,UAAU,CAAC,UAAsB;IAC/C,OAAO,CAAC,SAAiB,EAAE,OAA2B,EAAE,EAAE,CACxD,mBAAmB,CACjB,SAAS,EACT,OAAO;IACP,aAAa;IACb,EAAE,UAAU,EAAE,CACf,CAAC;AACN,CAAC;AAED,MAAM,UAAU,YAAY,CAAC,UAAsB;IACjD,OAAO,CAAC,OAA6B,EAAE,EAAE,CACvC,qBAAqB,CACnB,OAAO;IACP,aAAa;IACb,EAAE,UAAU,EAAE,CACf,CAAC;AACN,CAAC;AAED,MAAM,UAAU,aAAa,CAAC,UAAsB;IAClD,OAAO,CACL,GAAkB,EAClB,OAAsB,EACtB,OAA8B,EAC9B,EAAE,CACF,sBAAsB,CACpB,GAAG,EACH,OAAO,EACP,OAAO;IACP,aAAa;IACb,EAAE,UAAU,EAAE,CACf,CAAC;AACN,CAAC;AAED,MAAM,UAAU,aAAa,CAAC,UAAsB;IAClD,OAAO,CAAC,SAAiB,EAAE,OAA8B,EAAE,EAAE,CAC3D,sBAAsB,CACpB,SAAS,EACT,OAAO;IACP,aAAa;IACb,EAAE,UAAU,EAAE,CACf,CAAC;AACN,CAAC;AAED,MAAM,UAAU,aAAa,CAAC,UAAsB;IAClD,OAAO,CAAC,OAA8B,EAAE,EAAE,CACxC,sBAAsB,CACpB,OAAO;IACP,aAAa;IACb,EAAE,UAAU,EAAE,CACf,CAAC;AACN,CAAC;AAED,MAAM,UAAU,8BAA8B,CAAC,UAAsB;IACnE,OAAO,CACL,WAAsD,EACtD,SAAwB,EACxB,EAAE,CACF,uCAAuC,CACrC,WAAW,EACX,SAAS;IACT,aAAa;IACb,EAAE,UAAU,EAAE,CACf,CAAC;AACN,CAAC;AAED,MAAM,UAAU,+BAA+B,CAAC,UAAsB;IACpE,OAAO,CAAC,KAAc,EAAE,OAAgD,EAAE,EAAE,CAC1E,wCAAwC,CACtC,KAAK,EACL,OAAO;IACP,aAAa;IACb,EAAE,UAAU,EAAE,CACf,CAAC;AACN,CAAC;AAED,OAAO,EACL,cAAc,EACd,GAAG,EACH,UAAU,EACV,KAAK,EACL,kBAAkB,EAClB,SAAS,EACT,YAAY,EACZ,SAAS,GACV,MAAM,2CAA2C,CAAC"}
|