@wix/portfolio 1.0.23 → 1.0.24
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/src/portfolio-collections-v1-collection.universal.d.ts +12 -12
- package/build/cjs/src/portfolio-projects-v1-project-in-collection.universal.d.ts +12 -12
- package/build/cjs/src/portfolio-projects-v1-project-in-collection.universal.js.map +1 -1
- package/build/cjs/src/portfolio-projects-v1-project.universal.d.ts +11 -11
- package/build/es/src/portfolio-collections-v1-collection.universal.d.ts +12 -12
- package/build/es/src/portfolio-projects-v1-project-in-collection.universal.d.ts +12 -12
- package/build/es/src/portfolio-projects-v1-project-in-collection.universal.js.map +1 -1
- package/build/es/src/portfolio-projects-v1-project.universal.d.ts +11 -11
- package/package.json +2 -2
|
@@ -496,54 +496,54 @@ export interface CollectionsQueryBuilder {
|
|
|
496
496
|
* @param value - Value to compare against.
|
|
497
497
|
* @documentationMaturity preview
|
|
498
498
|
*/
|
|
499
|
-
eq: (propertyName:
|
|
499
|
+
eq: (propertyName: '_id' | 'title' | 'description' | 'slug' | 'coverImage.imageInfo.id' | 'hidden' | 'sortOrder' | '_createdDate' | '_updatedDate', value: any) => CollectionsQueryBuilder;
|
|
500
500
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
501
501
|
* @param value - Value to compare against.
|
|
502
502
|
* @documentationMaturity preview
|
|
503
503
|
*/
|
|
504
|
-
ne: (propertyName:
|
|
504
|
+
ne: (propertyName: '_id' | 'title' | 'description' | 'slug' | 'coverImage.imageInfo.id' | 'hidden' | 'sortOrder' | '_createdDate' | '_updatedDate', value: any) => CollectionsQueryBuilder;
|
|
505
505
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
506
506
|
* @param value - Value to compare against.
|
|
507
507
|
* @documentationMaturity preview
|
|
508
508
|
*/
|
|
509
|
-
ge: (propertyName:
|
|
509
|
+
ge: (propertyName: 'sortOrder', value: any) => CollectionsQueryBuilder;
|
|
510
510
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
511
511
|
* @param value - Value to compare against.
|
|
512
512
|
* @documentationMaturity preview
|
|
513
513
|
*/
|
|
514
|
-
gt: (propertyName:
|
|
514
|
+
gt: (propertyName: 'sortOrder' | '_createdDate' | '_updatedDate', value: any) => CollectionsQueryBuilder;
|
|
515
515
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
516
516
|
* @param value - Value to compare against.
|
|
517
517
|
* @documentationMaturity preview
|
|
518
518
|
*/
|
|
519
|
-
le: (propertyName:
|
|
519
|
+
le: (propertyName: 'sortOrder', value: any) => CollectionsQueryBuilder;
|
|
520
520
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
521
521
|
* @param value - Value to compare against.
|
|
522
522
|
* @documentationMaturity preview
|
|
523
523
|
*/
|
|
524
|
-
lt: (propertyName:
|
|
524
|
+
lt: (propertyName: 'sortOrder' | '_createdDate' | '_updatedDate', value: any) => CollectionsQueryBuilder;
|
|
525
525
|
/** @param propertyName - Property whose value is compared with `string`.
|
|
526
526
|
* @param string - String to compare against. Case-insensitive.
|
|
527
527
|
* @documentationMaturity preview
|
|
528
528
|
*/
|
|
529
|
-
startsWith: (propertyName:
|
|
529
|
+
startsWith: (propertyName: '_id' | 'title' | 'description' | 'slug' | 'coverImage.imageInfo.id', value: string) => CollectionsQueryBuilder;
|
|
530
530
|
/** @param propertyName - Property whose value is compared with `values`.
|
|
531
531
|
* @param values - List of values to compare against.
|
|
532
532
|
* @documentationMaturity preview
|
|
533
533
|
*/
|
|
534
|
-
hasSome: (propertyName:
|
|
534
|
+
hasSome: (propertyName: '_id' | 'title' | 'description' | 'slug' | 'coverImage.imageInfo.id' | 'hidden' | 'sortOrder' | '_createdDate' | '_updatedDate', value: any[]) => CollectionsQueryBuilder;
|
|
535
535
|
/** @documentationMaturity preview */
|
|
536
|
-
in: (propertyName:
|
|
536
|
+
in: (propertyName: '_id' | 'title' | 'description' | 'slug' | 'coverImage.imageInfo.id' | 'hidden' | 'sortOrder' | '_createdDate' | '_updatedDate', value: any) => CollectionsQueryBuilder;
|
|
537
537
|
/** @documentationMaturity preview */
|
|
538
|
-
exists: (propertyName:
|
|
538
|
+
exists: (propertyName: '_id' | 'title' | 'description' | 'slug' | 'coverImage.imageInfo.id' | 'hidden' | 'sortOrder' | '_createdDate' | '_updatedDate', value: boolean) => CollectionsQueryBuilder;
|
|
539
539
|
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
|
|
540
540
|
* @documentationMaturity preview
|
|
541
541
|
*/
|
|
542
|
-
ascending: (...propertyNames:
|
|
542
|
+
ascending: (...propertyNames: Array<'_id' | 'title' | 'description' | 'slug' | 'coverImage.imageInfo.id' | 'sortOrder' | '_createdDate' | '_updatedDate'>) => CollectionsQueryBuilder;
|
|
543
543
|
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
|
|
544
544
|
* @documentationMaturity preview
|
|
545
545
|
*/
|
|
546
|
-
descending: (...propertyNames:
|
|
546
|
+
descending: (...propertyNames: Array<'_id' | 'title' | 'description' | 'slug' | 'coverImage.imageInfo.id' | 'sortOrder' | '_createdDate' | '_updatedDate'>) => CollectionsQueryBuilder;
|
|
547
547
|
/** @param limit - Number of items to return, which is also the `pageSize` of the results object.
|
|
548
548
|
* @documentationMaturity preview
|
|
549
549
|
*/
|
|
@@ -356,54 +356,54 @@ export interface ProjectInCollectionsQueryBuilder {
|
|
|
356
356
|
* @param value - Value to compare against.
|
|
357
357
|
* @documentationMaturity preview
|
|
358
358
|
*/
|
|
359
|
-
eq: (propertyName:
|
|
359
|
+
eq: (propertyName: 'collectionId' | 'project.id' | 'project.hidden' | 'project.slug' | 'sortOrder', value: any) => ProjectInCollectionsQueryBuilder;
|
|
360
360
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
361
361
|
* @param value - Value to compare against.
|
|
362
362
|
* @documentationMaturity preview
|
|
363
363
|
*/
|
|
364
|
-
ne: (propertyName:
|
|
364
|
+
ne: (propertyName: 'collectionId' | 'project.id' | 'project.hidden' | 'project.slug' | 'sortOrder', value: any) => ProjectInCollectionsQueryBuilder;
|
|
365
365
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
366
366
|
* @param value - Value to compare against.
|
|
367
367
|
* @documentationMaturity preview
|
|
368
368
|
*/
|
|
369
|
-
ge: (propertyName:
|
|
369
|
+
ge: (propertyName: 'sortOrder', value: any) => ProjectInCollectionsQueryBuilder;
|
|
370
370
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
371
371
|
* @param value - Value to compare against.
|
|
372
372
|
* @documentationMaturity preview
|
|
373
373
|
*/
|
|
374
|
-
gt: (propertyName:
|
|
374
|
+
gt: (propertyName: 'sortOrder', value: any) => ProjectInCollectionsQueryBuilder;
|
|
375
375
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
376
376
|
* @param value - Value to compare against.
|
|
377
377
|
* @documentationMaturity preview
|
|
378
378
|
*/
|
|
379
|
-
le: (propertyName:
|
|
379
|
+
le: (propertyName: 'sortOrder', value: any) => ProjectInCollectionsQueryBuilder;
|
|
380
380
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
381
381
|
* @param value - Value to compare against.
|
|
382
382
|
* @documentationMaturity preview
|
|
383
383
|
*/
|
|
384
|
-
lt: (propertyName:
|
|
384
|
+
lt: (propertyName: 'sortOrder', value: any) => ProjectInCollectionsQueryBuilder;
|
|
385
385
|
/** @param propertyName - Property whose value is compared with `string`.
|
|
386
386
|
* @param string - String to compare against. Case-insensitive.
|
|
387
387
|
* @documentationMaturity preview
|
|
388
388
|
*/
|
|
389
|
-
startsWith: (propertyName:
|
|
389
|
+
startsWith: (propertyName: 'collectionId' | 'project.id' | 'project.slug', value: string) => ProjectInCollectionsQueryBuilder;
|
|
390
390
|
/** @param propertyName - Property whose value is compared with `values`.
|
|
391
391
|
* @param values - List of values to compare against.
|
|
392
392
|
* @documentationMaturity preview
|
|
393
393
|
*/
|
|
394
|
-
hasSome: (propertyName:
|
|
394
|
+
hasSome: (propertyName: 'collectionId' | 'project.id' | 'project.hidden' | 'project.slug' | 'sortOrder', value: any[]) => ProjectInCollectionsQueryBuilder;
|
|
395
395
|
/** @documentationMaturity preview */
|
|
396
|
-
in: (propertyName:
|
|
396
|
+
in: (propertyName: 'collectionId' | 'project.id' | 'project.hidden' | 'project.slug' | 'sortOrder', value: any) => ProjectInCollectionsQueryBuilder;
|
|
397
397
|
/** @documentationMaturity preview */
|
|
398
|
-
exists: (propertyName:
|
|
398
|
+
exists: (propertyName: 'collectionId' | 'project.id' | 'project.hidden' | 'project.slug' | 'sortOrder', value: boolean) => ProjectInCollectionsQueryBuilder;
|
|
399
399
|
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
|
|
400
400
|
* @documentationMaturity preview
|
|
401
401
|
*/
|
|
402
|
-
ascending: (...propertyNames:
|
|
402
|
+
ascending: (...propertyNames: Array<'collectionId' | 'project.id' | 'project.slug' | 'sortOrder'>) => ProjectInCollectionsQueryBuilder;
|
|
403
403
|
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
|
|
404
404
|
* @documentationMaturity preview
|
|
405
405
|
*/
|
|
406
|
-
descending: (...propertyNames:
|
|
406
|
+
descending: (...propertyNames: Array<'collectionId' | 'project.id' | 'project.slug' | 'sortOrder'>) => ProjectInCollectionsQueryBuilder;
|
|
407
407
|
/** @param limit - Number of items to return, which is also the `pageSize` of the results object.
|
|
408
408
|
* @documentationMaturity preview
|
|
409
409
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"portfolio-projects-v1-project-in-collection.universal.js","sourceRoot":"","sources":["../../../src/portfolio-projects-v1-project-in-collection.universal.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"portfolio-projects-v1-project-in-collection.universal.js","sourceRoot":"","sources":["../../../src/portfolio-projects-v1-project-in-collection.universal.ts"],"names":[],"mappings":"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"}
|
|
@@ -858,49 +858,49 @@ export interface ProjectsQueryBuilder {
|
|
|
858
858
|
* @param value - Value to compare against.
|
|
859
859
|
* @documentationMaturity preview
|
|
860
860
|
*/
|
|
861
|
-
eq: (propertyName:
|
|
861
|
+
eq: (propertyName: '_id' | 'title' | 'description' | 'hidden' | 'collectionIds' | 'slug' | '_createdDate' | '_updatedDate' | 'source.description' | 'coverImage.imageInfo.id' | 'coverVideo.videoInfo.id', value: any) => ProjectsQueryBuilder;
|
|
862
862
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
863
863
|
* @param value - Value to compare against.
|
|
864
864
|
* @documentationMaturity preview
|
|
865
865
|
*/
|
|
866
|
-
ne: (propertyName:
|
|
866
|
+
ne: (propertyName: '_id' | 'title' | 'description' | 'hidden' | 'collectionIds' | 'slug' | '_createdDate' | '_updatedDate' | 'source.description' | 'coverImage.imageInfo.id' | 'coverVideo.videoInfo.id', value: any) => ProjectsQueryBuilder;
|
|
867
867
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
868
868
|
* @param value - Value to compare against.
|
|
869
869
|
* @documentationMaturity preview
|
|
870
870
|
*/
|
|
871
|
-
gt: (propertyName:
|
|
871
|
+
gt: (propertyName: '_createdDate' | '_updatedDate', value: any) => ProjectsQueryBuilder;
|
|
872
872
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
873
873
|
* @param value - Value to compare against.
|
|
874
874
|
* @documentationMaturity preview
|
|
875
875
|
*/
|
|
876
|
-
lt: (propertyName:
|
|
876
|
+
lt: (propertyName: '_createdDate' | '_updatedDate', value: any) => ProjectsQueryBuilder;
|
|
877
877
|
/** @param propertyName - Property whose value is compared with `string`.
|
|
878
878
|
* @param string - String to compare against. Case-insensitive.
|
|
879
879
|
* @documentationMaturity preview
|
|
880
880
|
*/
|
|
881
|
-
startsWith: (propertyName:
|
|
881
|
+
startsWith: (propertyName: '_id' | 'title' | 'description' | 'slug' | 'source.description' | 'coverImage.imageInfo.id' | 'coverVideo.videoInfo.id', value: string) => ProjectsQueryBuilder;
|
|
882
882
|
/** @param propertyName - Property whose value is compared with `values`.
|
|
883
883
|
* @param values - List of values to compare against.
|
|
884
884
|
* @documentationMaturity preview
|
|
885
885
|
*/
|
|
886
|
-
hasSome: (propertyName:
|
|
886
|
+
hasSome: (propertyName: '_id' | 'title' | 'description' | 'hidden' | 'collectionIds' | 'slug' | '_createdDate' | '_updatedDate' | 'source.description' | 'coverImage.imageInfo.id' | 'coverVideo.videoInfo.id', value: any[]) => ProjectsQueryBuilder;
|
|
887
887
|
/** @param propertyName - Property whose value is compared with `values`.
|
|
888
888
|
* @param values - List of values to compare against.
|
|
889
889
|
* @documentationMaturity preview
|
|
890
890
|
*/
|
|
891
|
-
hasAll: (propertyName:
|
|
891
|
+
hasAll: (propertyName: 'collectionIds', value: any[]) => ProjectsQueryBuilder;
|
|
892
892
|
/** @documentationMaturity preview */
|
|
893
|
-
in: (propertyName:
|
|
893
|
+
in: (propertyName: '_id' | 'title' | 'description' | 'hidden' | 'collectionIds' | 'slug' | '_createdDate' | '_updatedDate' | 'source.description' | 'coverImage.imageInfo.id' | 'coverVideo.videoInfo.id', value: any) => ProjectsQueryBuilder;
|
|
894
894
|
/** @documentationMaturity preview */
|
|
895
|
-
exists: (propertyName:
|
|
895
|
+
exists: (propertyName: '_id' | 'title' | 'description' | 'hidden' | 'collectionIds' | 'slug' | '_createdDate' | '_updatedDate' | 'source.description' | 'coverImage.imageInfo.id' | 'coverVideo.videoInfo.id', value: boolean) => ProjectsQueryBuilder;
|
|
896
896
|
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
|
|
897
897
|
* @documentationMaturity preview
|
|
898
898
|
*/
|
|
899
|
-
ascending: (...propertyNames:
|
|
899
|
+
ascending: (...propertyNames: Array<'_id' | 'title' | 'description' | 'slug' | '_createdDate' | '_updatedDate' | 'source.description' | 'coverImage.imageInfo.id' | 'coverVideo.videoInfo.id'>) => ProjectsQueryBuilder;
|
|
900
900
|
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
|
|
901
901
|
* @documentationMaturity preview
|
|
902
902
|
*/
|
|
903
|
-
descending: (...propertyNames:
|
|
903
|
+
descending: (...propertyNames: Array<'_id' | 'title' | 'description' | 'slug' | '_createdDate' | '_updatedDate' | 'source.description' | 'coverImage.imageInfo.id' | 'coverVideo.videoInfo.id'>) => ProjectsQueryBuilder;
|
|
904
904
|
/** @param limit - Number of items to return, which is also the `pageSize` of the results object.
|
|
905
905
|
* @documentationMaturity preview
|
|
906
906
|
*/
|
|
@@ -496,54 +496,54 @@ export interface CollectionsQueryBuilder {
|
|
|
496
496
|
* @param value - Value to compare against.
|
|
497
497
|
* @documentationMaturity preview
|
|
498
498
|
*/
|
|
499
|
-
eq: (propertyName:
|
|
499
|
+
eq: (propertyName: '_id' | 'title' | 'description' | 'slug' | 'coverImage.imageInfo.id' | 'hidden' | 'sortOrder' | '_createdDate' | '_updatedDate', value: any) => CollectionsQueryBuilder;
|
|
500
500
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
501
501
|
* @param value - Value to compare against.
|
|
502
502
|
* @documentationMaturity preview
|
|
503
503
|
*/
|
|
504
|
-
ne: (propertyName:
|
|
504
|
+
ne: (propertyName: '_id' | 'title' | 'description' | 'slug' | 'coverImage.imageInfo.id' | 'hidden' | 'sortOrder' | '_createdDate' | '_updatedDate', value: any) => CollectionsQueryBuilder;
|
|
505
505
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
506
506
|
* @param value - Value to compare against.
|
|
507
507
|
* @documentationMaturity preview
|
|
508
508
|
*/
|
|
509
|
-
ge: (propertyName:
|
|
509
|
+
ge: (propertyName: 'sortOrder', value: any) => CollectionsQueryBuilder;
|
|
510
510
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
511
511
|
* @param value - Value to compare against.
|
|
512
512
|
* @documentationMaturity preview
|
|
513
513
|
*/
|
|
514
|
-
gt: (propertyName:
|
|
514
|
+
gt: (propertyName: 'sortOrder' | '_createdDate' | '_updatedDate', value: any) => CollectionsQueryBuilder;
|
|
515
515
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
516
516
|
* @param value - Value to compare against.
|
|
517
517
|
* @documentationMaturity preview
|
|
518
518
|
*/
|
|
519
|
-
le: (propertyName:
|
|
519
|
+
le: (propertyName: 'sortOrder', value: any) => CollectionsQueryBuilder;
|
|
520
520
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
521
521
|
* @param value - Value to compare against.
|
|
522
522
|
* @documentationMaturity preview
|
|
523
523
|
*/
|
|
524
|
-
lt: (propertyName:
|
|
524
|
+
lt: (propertyName: 'sortOrder' | '_createdDate' | '_updatedDate', value: any) => CollectionsQueryBuilder;
|
|
525
525
|
/** @param propertyName - Property whose value is compared with `string`.
|
|
526
526
|
* @param string - String to compare against. Case-insensitive.
|
|
527
527
|
* @documentationMaturity preview
|
|
528
528
|
*/
|
|
529
|
-
startsWith: (propertyName:
|
|
529
|
+
startsWith: (propertyName: '_id' | 'title' | 'description' | 'slug' | 'coverImage.imageInfo.id', value: string) => CollectionsQueryBuilder;
|
|
530
530
|
/** @param propertyName - Property whose value is compared with `values`.
|
|
531
531
|
* @param values - List of values to compare against.
|
|
532
532
|
* @documentationMaturity preview
|
|
533
533
|
*/
|
|
534
|
-
hasSome: (propertyName:
|
|
534
|
+
hasSome: (propertyName: '_id' | 'title' | 'description' | 'slug' | 'coverImage.imageInfo.id' | 'hidden' | 'sortOrder' | '_createdDate' | '_updatedDate', value: any[]) => CollectionsQueryBuilder;
|
|
535
535
|
/** @documentationMaturity preview */
|
|
536
|
-
in: (propertyName:
|
|
536
|
+
in: (propertyName: '_id' | 'title' | 'description' | 'slug' | 'coverImage.imageInfo.id' | 'hidden' | 'sortOrder' | '_createdDate' | '_updatedDate', value: any) => CollectionsQueryBuilder;
|
|
537
537
|
/** @documentationMaturity preview */
|
|
538
|
-
exists: (propertyName:
|
|
538
|
+
exists: (propertyName: '_id' | 'title' | 'description' | 'slug' | 'coverImage.imageInfo.id' | 'hidden' | 'sortOrder' | '_createdDate' | '_updatedDate', value: boolean) => CollectionsQueryBuilder;
|
|
539
539
|
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
|
|
540
540
|
* @documentationMaturity preview
|
|
541
541
|
*/
|
|
542
|
-
ascending: (...propertyNames:
|
|
542
|
+
ascending: (...propertyNames: Array<'_id' | 'title' | 'description' | 'slug' | 'coverImage.imageInfo.id' | 'sortOrder' | '_createdDate' | '_updatedDate'>) => CollectionsQueryBuilder;
|
|
543
543
|
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
|
|
544
544
|
* @documentationMaturity preview
|
|
545
545
|
*/
|
|
546
|
-
descending: (...propertyNames:
|
|
546
|
+
descending: (...propertyNames: Array<'_id' | 'title' | 'description' | 'slug' | 'coverImage.imageInfo.id' | 'sortOrder' | '_createdDate' | '_updatedDate'>) => CollectionsQueryBuilder;
|
|
547
547
|
/** @param limit - Number of items to return, which is also the `pageSize` of the results object.
|
|
548
548
|
* @documentationMaturity preview
|
|
549
549
|
*/
|
|
@@ -356,54 +356,54 @@ export interface ProjectInCollectionsQueryBuilder {
|
|
|
356
356
|
* @param value - Value to compare against.
|
|
357
357
|
* @documentationMaturity preview
|
|
358
358
|
*/
|
|
359
|
-
eq: (propertyName:
|
|
359
|
+
eq: (propertyName: 'collectionId' | 'project.id' | 'project.hidden' | 'project.slug' | 'sortOrder', value: any) => ProjectInCollectionsQueryBuilder;
|
|
360
360
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
361
361
|
* @param value - Value to compare against.
|
|
362
362
|
* @documentationMaturity preview
|
|
363
363
|
*/
|
|
364
|
-
ne: (propertyName:
|
|
364
|
+
ne: (propertyName: 'collectionId' | 'project.id' | 'project.hidden' | 'project.slug' | 'sortOrder', value: any) => ProjectInCollectionsQueryBuilder;
|
|
365
365
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
366
366
|
* @param value - Value to compare against.
|
|
367
367
|
* @documentationMaturity preview
|
|
368
368
|
*/
|
|
369
|
-
ge: (propertyName:
|
|
369
|
+
ge: (propertyName: 'sortOrder', value: any) => ProjectInCollectionsQueryBuilder;
|
|
370
370
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
371
371
|
* @param value - Value to compare against.
|
|
372
372
|
* @documentationMaturity preview
|
|
373
373
|
*/
|
|
374
|
-
gt: (propertyName:
|
|
374
|
+
gt: (propertyName: 'sortOrder', value: any) => ProjectInCollectionsQueryBuilder;
|
|
375
375
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
376
376
|
* @param value - Value to compare against.
|
|
377
377
|
* @documentationMaturity preview
|
|
378
378
|
*/
|
|
379
|
-
le: (propertyName:
|
|
379
|
+
le: (propertyName: 'sortOrder', value: any) => ProjectInCollectionsQueryBuilder;
|
|
380
380
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
381
381
|
* @param value - Value to compare against.
|
|
382
382
|
* @documentationMaturity preview
|
|
383
383
|
*/
|
|
384
|
-
lt: (propertyName:
|
|
384
|
+
lt: (propertyName: 'sortOrder', value: any) => ProjectInCollectionsQueryBuilder;
|
|
385
385
|
/** @param propertyName - Property whose value is compared with `string`.
|
|
386
386
|
* @param string - String to compare against. Case-insensitive.
|
|
387
387
|
* @documentationMaturity preview
|
|
388
388
|
*/
|
|
389
|
-
startsWith: (propertyName:
|
|
389
|
+
startsWith: (propertyName: 'collectionId' | 'project.id' | 'project.slug', value: string) => ProjectInCollectionsQueryBuilder;
|
|
390
390
|
/** @param propertyName - Property whose value is compared with `values`.
|
|
391
391
|
* @param values - List of values to compare against.
|
|
392
392
|
* @documentationMaturity preview
|
|
393
393
|
*/
|
|
394
|
-
hasSome: (propertyName:
|
|
394
|
+
hasSome: (propertyName: 'collectionId' | 'project.id' | 'project.hidden' | 'project.slug' | 'sortOrder', value: any[]) => ProjectInCollectionsQueryBuilder;
|
|
395
395
|
/** @documentationMaturity preview */
|
|
396
|
-
in: (propertyName:
|
|
396
|
+
in: (propertyName: 'collectionId' | 'project.id' | 'project.hidden' | 'project.slug' | 'sortOrder', value: any) => ProjectInCollectionsQueryBuilder;
|
|
397
397
|
/** @documentationMaturity preview */
|
|
398
|
-
exists: (propertyName:
|
|
398
|
+
exists: (propertyName: 'collectionId' | 'project.id' | 'project.hidden' | 'project.slug' | 'sortOrder', value: boolean) => ProjectInCollectionsQueryBuilder;
|
|
399
399
|
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
|
|
400
400
|
* @documentationMaturity preview
|
|
401
401
|
*/
|
|
402
|
-
ascending: (...propertyNames:
|
|
402
|
+
ascending: (...propertyNames: Array<'collectionId' | 'project.id' | 'project.slug' | 'sortOrder'>) => ProjectInCollectionsQueryBuilder;
|
|
403
403
|
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
|
|
404
404
|
* @documentationMaturity preview
|
|
405
405
|
*/
|
|
406
|
-
descending: (...propertyNames:
|
|
406
|
+
descending: (...propertyNames: Array<'collectionId' | 'project.id' | 'project.slug' | 'sortOrder'>) => ProjectInCollectionsQueryBuilder;
|
|
407
407
|
/** @param limit - Number of items to return, which is also the `pageSize` of the results object.
|
|
408
408
|
* @documentationMaturity preview
|
|
409
409
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"portfolio-projects-v1-project-in-collection.universal.js","sourceRoot":"","sources":["../../../src/portfolio-projects-v1-project-in-collection.universal.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"portfolio-projects-v1-project-in-collection.universal.js","sourceRoot":"","sources":["../../../src/portfolio-projects-v1-project-in-collection.universal.ts"],"names":[],"mappings":"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"}
|
|
@@ -858,49 +858,49 @@ export interface ProjectsQueryBuilder {
|
|
|
858
858
|
* @param value - Value to compare against.
|
|
859
859
|
* @documentationMaturity preview
|
|
860
860
|
*/
|
|
861
|
-
eq: (propertyName:
|
|
861
|
+
eq: (propertyName: '_id' | 'title' | 'description' | 'hidden' | 'collectionIds' | 'slug' | '_createdDate' | '_updatedDate' | 'source.description' | 'coverImage.imageInfo.id' | 'coverVideo.videoInfo.id', value: any) => ProjectsQueryBuilder;
|
|
862
862
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
863
863
|
* @param value - Value to compare against.
|
|
864
864
|
* @documentationMaturity preview
|
|
865
865
|
*/
|
|
866
|
-
ne: (propertyName:
|
|
866
|
+
ne: (propertyName: '_id' | 'title' | 'description' | 'hidden' | 'collectionIds' | 'slug' | '_createdDate' | '_updatedDate' | 'source.description' | 'coverImage.imageInfo.id' | 'coverVideo.videoInfo.id', value: any) => ProjectsQueryBuilder;
|
|
867
867
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
868
868
|
* @param value - Value to compare against.
|
|
869
869
|
* @documentationMaturity preview
|
|
870
870
|
*/
|
|
871
|
-
gt: (propertyName:
|
|
871
|
+
gt: (propertyName: '_createdDate' | '_updatedDate', value: any) => ProjectsQueryBuilder;
|
|
872
872
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
873
873
|
* @param value - Value to compare against.
|
|
874
874
|
* @documentationMaturity preview
|
|
875
875
|
*/
|
|
876
|
-
lt: (propertyName:
|
|
876
|
+
lt: (propertyName: '_createdDate' | '_updatedDate', value: any) => ProjectsQueryBuilder;
|
|
877
877
|
/** @param propertyName - Property whose value is compared with `string`.
|
|
878
878
|
* @param string - String to compare against. Case-insensitive.
|
|
879
879
|
* @documentationMaturity preview
|
|
880
880
|
*/
|
|
881
|
-
startsWith: (propertyName:
|
|
881
|
+
startsWith: (propertyName: '_id' | 'title' | 'description' | 'slug' | 'source.description' | 'coverImage.imageInfo.id' | 'coverVideo.videoInfo.id', value: string) => ProjectsQueryBuilder;
|
|
882
882
|
/** @param propertyName - Property whose value is compared with `values`.
|
|
883
883
|
* @param values - List of values to compare against.
|
|
884
884
|
* @documentationMaturity preview
|
|
885
885
|
*/
|
|
886
|
-
hasSome: (propertyName:
|
|
886
|
+
hasSome: (propertyName: '_id' | 'title' | 'description' | 'hidden' | 'collectionIds' | 'slug' | '_createdDate' | '_updatedDate' | 'source.description' | 'coverImage.imageInfo.id' | 'coverVideo.videoInfo.id', value: any[]) => ProjectsQueryBuilder;
|
|
887
887
|
/** @param propertyName - Property whose value is compared with `values`.
|
|
888
888
|
* @param values - List of values to compare against.
|
|
889
889
|
* @documentationMaturity preview
|
|
890
890
|
*/
|
|
891
|
-
hasAll: (propertyName:
|
|
891
|
+
hasAll: (propertyName: 'collectionIds', value: any[]) => ProjectsQueryBuilder;
|
|
892
892
|
/** @documentationMaturity preview */
|
|
893
|
-
in: (propertyName:
|
|
893
|
+
in: (propertyName: '_id' | 'title' | 'description' | 'hidden' | 'collectionIds' | 'slug' | '_createdDate' | '_updatedDate' | 'source.description' | 'coverImage.imageInfo.id' | 'coverVideo.videoInfo.id', value: any) => ProjectsQueryBuilder;
|
|
894
894
|
/** @documentationMaturity preview */
|
|
895
|
-
exists: (propertyName:
|
|
895
|
+
exists: (propertyName: '_id' | 'title' | 'description' | 'hidden' | 'collectionIds' | 'slug' | '_createdDate' | '_updatedDate' | 'source.description' | 'coverImage.imageInfo.id' | 'coverVideo.videoInfo.id', value: boolean) => ProjectsQueryBuilder;
|
|
896
896
|
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
|
|
897
897
|
* @documentationMaturity preview
|
|
898
898
|
*/
|
|
899
|
-
ascending: (...propertyNames:
|
|
899
|
+
ascending: (...propertyNames: Array<'_id' | 'title' | 'description' | 'slug' | '_createdDate' | '_updatedDate' | 'source.description' | 'coverImage.imageInfo.id' | 'coverVideo.videoInfo.id'>) => ProjectsQueryBuilder;
|
|
900
900
|
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
|
|
901
901
|
* @documentationMaturity preview
|
|
902
902
|
*/
|
|
903
|
-
descending: (...propertyNames:
|
|
903
|
+
descending: (...propertyNames: Array<'_id' | 'title' | 'description' | 'slug' | '_createdDate' | '_updatedDate' | 'source.description' | 'coverImage.imageInfo.id' | 'coverVideo.videoInfo.id'>) => ProjectsQueryBuilder;
|
|
904
904
|
/** @param limit - Number of items to return, which is also the `pageSize` of the results object.
|
|
905
905
|
* @documentationMaturity preview
|
|
906
906
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/portfolio",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.24",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -33,5 +33,5 @@
|
|
|
33
33
|
"groupId": "com.wixpress.public-sdk-autogen"
|
|
34
34
|
}
|
|
35
35
|
},
|
|
36
|
-
"falconPackageHash": "
|
|
36
|
+
"falconPackageHash": "2b6d18a0edca33bbfc6fe9fe4cf2b80dfbc293b0ffae71ab5201b7b5"
|
|
37
37
|
}
|