@wix/portfolio 1.0.73 → 1.0.74

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/portfolio",
3
- "version": "1.0.73",
3
+ "version": "1.0.74",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -22,8 +22,8 @@
22
22
  "@wix/portfolio_portfolio-settings": "1.0.3",
23
23
  "@wix/portfolio_project-in-collections": "1.0.16",
24
24
  "@wix/portfolio_project-items": "1.0.21",
25
- "@wix/portfolio_projects": "1.0.22",
26
- "@wix/portfolio_synced-project": "1.0.0"
25
+ "@wix/portfolio_projects": "1.0.23",
26
+ "@wix/portfolio_synced-project": "1.0.1"
27
27
  },
28
28
  "devDependencies": {
29
29
  "glob": "^10.4.1",
@@ -47,5 +47,5 @@
47
47
  "fqdn": ""
48
48
  }
49
49
  },
50
- "falconPackageHash": "be8d191ae28ffe921dafe6c3448fa1e26762e8d0492dc4ae28491434"
50
+ "falconPackageHash": "5368f24bf3dbab9f4afc5e94a5576c093074d616d7a1f2f61c74bbe1"
51
51
  }
@@ -2476,11 +2476,11 @@ interface SyncedProject {
2476
2476
  externalId?: string;
2477
2477
  /** Project name */
2478
2478
  title?: string | null;
2479
- /** google.protobuf.StringValue description = 4 [(wix.api.maxLength) = 1000]; // Project description */
2479
+ /** Project media count */
2480
2480
  mediaCount?: number;
2481
- /** project image url */
2481
+ /** Project image url */
2482
2482
  coverImage?: string | null;
2483
- /** project url in external */
2483
+ /** Project url in external */
2484
2484
  link?: string | null;
2485
2485
  /**
2486
2486
  * Represents the last time project was synced - returned only if external project is synced
@@ -2512,7 +2512,7 @@ interface CursorPaging {
2512
2512
  cursor?: string | null;
2513
2513
  }
2514
2514
  interface GetProjectsResponse {
2515
- /** provider appDefId */
2515
+ /** Provider appDefId */
2516
2516
  projects?: SyncedProject[];
2517
2517
  /** Paging metadata */
2518
2518
  metadata?: PagingMetadataV2;
@@ -2540,7 +2540,7 @@ interface SyncProjectResponse {
2540
2540
  project?: SyncedProject;
2541
2541
  }
2542
2542
  interface GetSyncStatusResponse {
2543
- /** provider appDefId */
2543
+ /** Provider appDefId */
2544
2544
  appDefId?: string;
2545
2545
  /** External Project ID */
2546
2546
  externalId?: string;
@@ -2548,15 +2548,15 @@ interface GetSyncStatusResponse {
2548
2548
  status?: SyncStatus;
2549
2549
  }
2550
2550
  interface StopSyncResponse {
2551
- /** provider appDefId */
2551
+ /** Provider appDefId */
2552
2552
  appDefId?: string;
2553
2553
  /** External Project ID */
2554
2554
  externalId?: string;
2555
2555
  }
2556
2556
  interface GetLoginRedirectableUrlResponse {
2557
- /** provider appDefId */
2557
+ /** Provider appDefId */
2558
2558
  appDefId?: string;
2559
- /** login url */
2559
+ /** Login url */
2560
2560
  url?: string;
2561
2561
  }
2562
2562
  interface GetProjectsResponseNonNullableFields {
@@ -2587,23 +2587,23 @@ interface GetLoginRedirectableUrlResponseNonNullableFields {
2587
2587
  url: string;
2588
2588
  }
2589
2589
  interface GetProjectsOptions {
2590
- /** paging */
2590
+ /** Paging */
2591
2591
  paging?: CursorPaging;
2592
2592
  }
2593
2593
  interface SyncProjectIdentifiers {
2594
- /** provider appDefId */
2594
+ /** Provider appDefId */
2595
2595
  appDefId: string;
2596
2596
  /** External Project ID */
2597
2597
  externalId: string;
2598
2598
  }
2599
2599
  interface GetSyncStatusIdentifiers {
2600
- /** provider appDefId */
2600
+ /** Provider appDefId */
2601
2601
  appDefId: string;
2602
2602
  /** External Project ID */
2603
2603
  externalId: string;
2604
2604
  }
2605
2605
  interface StopSyncIdentifiers {
2606
- /** provider appDefId */
2606
+ /** Provider appDefId */
2607
2607
  appDefId: string;
2608
2608
  /** External Project ID */
2609
2609
  externalId: string;
@@ -4492,11 +4492,11 @@ interface SyncedProject {
4492
4492
  externalId?: string;
4493
4493
  /** Project name */
4494
4494
  title?: string | null;
4495
- /** google.protobuf.StringValue description = 4 [(wix.api.maxLength) = 1000]; // Project description */
4495
+ /** Project media count */
4496
4496
  mediaCount?: number;
4497
- /** project image url */
4497
+ /** Project image url */
4498
4498
  coverImage?: string | null;
4499
- /** project url in external */
4499
+ /** Project url in external */
4500
4500
  link?: string | null;
4501
4501
  /**
4502
4502
  * Represents the last time project was synced - returned only if external project is synced
@@ -4517,31 +4517,31 @@ declare enum SyncStatus {
4517
4517
  SYNCED = "SYNCED"
4518
4518
  }
4519
4519
  interface SyncingProjectEvent {
4520
- /** provider appDefId */
4520
+ /** Provider appDefId */
4521
4521
  appDefId?: string;
4522
4522
  /** External Project ID */
4523
4523
  externalProjectId?: string;
4524
- /** portfolio Project ID */
4524
+ /** Portfolio Project ID */
4525
4525
  portfolioProjectId?: string;
4526
- /** when the first event was produced, and started syncing */
4526
+ /** When the first event was produced, and started syncing */
4527
4527
  firstProduceTimestamp?: Date;
4528
4528
  /** Project Revision */
4529
4529
  projectSyncRevision?: Date;
4530
4530
  }
4531
4531
  interface SyncProjectPagingEvent {
4532
- /** provider appDefId */
4532
+ /** Provider appDefId */
4533
4533
  appDefId?: string;
4534
4534
  /** External Project ID */
4535
4535
  externalProjectId?: string;
4536
- /** portfolio Project ID */
4536
+ /** Portfolio Project ID */
4537
4537
  portfolioProjectId?: string;
4538
- /** next page cursor */
4538
+ /** Next page cursor */
4539
4539
  nextPageCursor?: string | null;
4540
4540
  /** Project Revision */
4541
4541
  projectSyncRevision?: Date;
4542
4542
  }
4543
4543
  interface SyncAllSitesEvent {
4544
- /** paging */
4544
+ /** Paging */
4545
4545
  paging?: CursorPaging;
4546
4546
  }
4547
4547
  interface CursorPaging {
@@ -4556,25 +4556,25 @@ interface CursorPaging {
4556
4556
  cursor?: string | null;
4557
4557
  }
4558
4558
  interface SyncSiteEvent {
4559
- /** portfolio instance id */
4559
+ /** Portfolio instance id */
4560
4560
  instanceId?: string;
4561
- /** paging */
4561
+ /** Paging */
4562
4562
  paging?: CursorPaging;
4563
4563
  }
4564
4564
  interface SyncProjectRequest {
4565
- /** provider appDefId */
4565
+ /** Provider appDefId */
4566
4566
  appDefId: string;
4567
4567
  /** External Project ID */
4568
4568
  externalId: string;
4569
4569
  }
4570
4570
  interface GetProjectsRequest {
4571
- /** provider appDefId */
4571
+ /** Provider appDefId */
4572
4572
  appDefId: string;
4573
- /** paging */
4573
+ /** Paging */
4574
4574
  paging?: CursorPaging;
4575
4575
  }
4576
4576
  interface GetProjectsResponse {
4577
- /** provider appDefId */
4577
+ /** Provider appDefId */
4578
4578
  projects?: SyncedProject[];
4579
4579
  /** Paging metadata */
4580
4580
  metadata?: PagingMetadataV2;
@@ -4602,13 +4602,13 @@ interface SyncProjectResponse {
4602
4602
  project?: SyncedProject;
4603
4603
  }
4604
4604
  interface GetSyncStatusRequest {
4605
- /** provider appDefId */
4605
+ /** Provider appDefId */
4606
4606
  appDefId: string;
4607
4607
  /** External Project ID */
4608
4608
  externalId: string;
4609
4609
  }
4610
4610
  interface GetSyncStatusResponse {
4611
- /** provider appDefId */
4611
+ /** Provider appDefId */
4612
4612
  appDefId?: string;
4613
4613
  /** External Project ID */
4614
4614
  externalId?: string;
@@ -4616,25 +4616,25 @@ interface GetSyncStatusResponse {
4616
4616
  status?: SyncStatus;
4617
4617
  }
4618
4618
  interface StopSyncRequest {
4619
- /** provider appDefId */
4619
+ /** Provider appDefId */
4620
4620
  appDefId: string;
4621
4621
  /** External Project ID */
4622
4622
  externalId: string;
4623
4623
  }
4624
4624
  interface StopSyncResponse {
4625
- /** provider appDefId */
4625
+ /** Provider appDefId */
4626
4626
  appDefId?: string;
4627
4627
  /** External Project ID */
4628
4628
  externalId?: string;
4629
4629
  }
4630
4630
  interface GetLoginRedirectableUrlRequest {
4631
- /** provider appDefId */
4631
+ /** Provider appDefId */
4632
4632
  appDefId: string;
4633
4633
  }
4634
4634
  interface GetLoginRedirectableUrlResponse {
4635
- /** provider appDefId */
4635
+ /** Provider appDefId */
4636
4636
  appDefId?: string;
4637
- /** login url */
4637
+ /** Login url */
4638
4638
  url?: string;
4639
4639
  }
4640
4640
  interface DomainEvent extends DomainEventBodyOneOf {
@@ -5100,23 +5100,23 @@ interface GetLoginRedirectableUrlResponseNonNullableFields {
5100
5100
  url: string;
5101
5101
  }
5102
5102
  interface GetProjectsOptions {
5103
- /** paging */
5103
+ /** Paging */
5104
5104
  paging?: CursorPaging;
5105
5105
  }
5106
5106
  interface SyncProjectIdentifiers {
5107
- /** provider appDefId */
5107
+ /** Provider appDefId */
5108
5108
  appDefId: string;
5109
5109
  /** External Project ID */
5110
5110
  externalId: string;
5111
5111
  }
5112
5112
  interface GetSyncStatusIdentifiers {
5113
- /** provider appDefId */
5113
+ /** Provider appDefId */
5114
5114
  appDefId: string;
5115
5115
  /** External Project ID */
5116
5116
  externalId: string;
5117
5117
  }
5118
5118
  interface StopSyncIdentifiers {
5119
- /** provider appDefId */
5119
+ /** Provider appDefId */
5120
5120
  appDefId: string;
5121
5121
  /** External Project ID */
5122
5122
  externalId: string;
@@ -4995,11 +4995,11 @@ interface SyncedProject$1 {
4995
4995
  externalId?: string;
4996
4996
  /** Project name */
4997
4997
  title?: string | null;
4998
- /** google.protobuf.StringValue description = 4 [(wix.api.maxLength) = 1000]; // Project description */
4998
+ /** Project media count */
4999
4999
  mediaCount?: number;
5000
- /** project image url */
5000
+ /** Project image url */
5001
5001
  coverImage?: string | null;
5002
- /** project url in external */
5002
+ /** Project url in external */
5003
5003
  link?: string | null;
5004
5004
  /**
5005
5005
  * Represents the last time project was synced - returned only if external project is synced
@@ -5031,19 +5031,19 @@ interface CursorPaging$1 {
5031
5031
  cursor?: string | null;
5032
5032
  }
5033
5033
  interface SyncProjectRequest$1 {
5034
- /** provider appDefId */
5034
+ /** Provider appDefId */
5035
5035
  appDefId: string;
5036
5036
  /** External Project ID */
5037
5037
  externalId: string;
5038
5038
  }
5039
5039
  interface GetProjectsRequest$1 {
5040
- /** provider appDefId */
5040
+ /** Provider appDefId */
5041
5041
  appDefId: string;
5042
- /** paging */
5042
+ /** Paging */
5043
5043
  paging?: CursorPaging$1;
5044
5044
  }
5045
5045
  interface GetProjectsResponse$1 {
5046
- /** provider appDefId */
5046
+ /** Provider appDefId */
5047
5047
  projects?: SyncedProject$1[];
5048
5048
  /** Paging metadata */
5049
5049
  metadata?: PagingMetadataV2$1;
@@ -5071,13 +5071,13 @@ interface SyncProjectResponse$1 {
5071
5071
  project?: SyncedProject$1;
5072
5072
  }
5073
5073
  interface GetSyncStatusRequest$1 {
5074
- /** provider appDefId */
5074
+ /** Provider appDefId */
5075
5075
  appDefId: string;
5076
5076
  /** External Project ID */
5077
5077
  externalId: string;
5078
5078
  }
5079
5079
  interface GetSyncStatusResponse$1 {
5080
- /** provider appDefId */
5080
+ /** Provider appDefId */
5081
5081
  appDefId?: string;
5082
5082
  /** External Project ID */
5083
5083
  externalId?: string;
@@ -5085,25 +5085,25 @@ interface GetSyncStatusResponse$1 {
5085
5085
  status?: SyncStatus$1;
5086
5086
  }
5087
5087
  interface StopSyncRequest$1 {
5088
- /** provider appDefId */
5088
+ /** Provider appDefId */
5089
5089
  appDefId: string;
5090
5090
  /** External Project ID */
5091
5091
  externalId: string;
5092
5092
  }
5093
5093
  interface StopSyncResponse$1 {
5094
- /** provider appDefId */
5094
+ /** Provider appDefId */
5095
5095
  appDefId?: string;
5096
5096
  /** External Project ID */
5097
5097
  externalId?: string;
5098
5098
  }
5099
5099
  interface GetLoginRedirectableUrlRequest$1 {
5100
- /** provider appDefId */
5100
+ /** Provider appDefId */
5101
5101
  appDefId: string;
5102
5102
  }
5103
5103
  interface GetLoginRedirectableUrlResponse$1 {
5104
- /** provider appDefId */
5104
+ /** Provider appDefId */
5105
5105
  appDefId?: string;
5106
- /** login url */
5106
+ /** Login url */
5107
5107
  url?: string;
5108
5108
  }
5109
5109
  interface GetProjectsResponseNonNullableFields$1 {
@@ -5141,11 +5141,11 @@ interface SyncedProject {
5141
5141
  externalId?: string;
5142
5142
  /** Project name */
5143
5143
  title?: string | null;
5144
- /** google.protobuf.StringValue description = 4 [(wix.api.maxLength) = 1000]; // Project description */
5144
+ /** Project media count */
5145
5145
  mediaCount?: number;
5146
- /** project image url */
5146
+ /** Project image url */
5147
5147
  coverImage?: string | null;
5148
- /** project url in external */
5148
+ /** Project url in external */
5149
5149
  link?: string | null;
5150
5150
  /**
5151
5151
  * Represents the last time project was synced - returned only if external project is synced
@@ -5177,19 +5177,19 @@ interface CursorPaging {
5177
5177
  cursor?: string | null;
5178
5178
  }
5179
5179
  interface SyncProjectRequest {
5180
- /** provider appDefId */
5180
+ /** Provider appDefId */
5181
5181
  appDefId: string;
5182
5182
  /** External Project ID */
5183
5183
  externalId: string;
5184
5184
  }
5185
5185
  interface GetProjectsRequest {
5186
- /** provider appDefId */
5186
+ /** Provider appDefId */
5187
5187
  appDefId: string;
5188
- /** paging */
5188
+ /** Paging */
5189
5189
  paging?: CursorPaging;
5190
5190
  }
5191
5191
  interface GetProjectsResponse {
5192
- /** provider appDefId */
5192
+ /** Provider appDefId */
5193
5193
  projects?: SyncedProject[];
5194
5194
  /** Paging metadata */
5195
5195
  metadata?: PagingMetadataV2;
@@ -5217,13 +5217,13 @@ interface SyncProjectResponse {
5217
5217
  project?: SyncedProject;
5218
5218
  }
5219
5219
  interface GetSyncStatusRequest {
5220
- /** provider appDefId */
5220
+ /** Provider appDefId */
5221
5221
  appDefId: string;
5222
5222
  /** External Project ID */
5223
5223
  externalId: string;
5224
5224
  }
5225
5225
  interface GetSyncStatusResponse {
5226
- /** provider appDefId */
5226
+ /** Provider appDefId */
5227
5227
  appDefId?: string;
5228
5228
  /** External Project ID */
5229
5229
  externalId?: string;
@@ -5231,25 +5231,25 @@ interface GetSyncStatusResponse {
5231
5231
  status?: SyncStatus;
5232
5232
  }
5233
5233
  interface StopSyncRequest {
5234
- /** provider appDefId */
5234
+ /** Provider appDefId */
5235
5235
  appDefId: string;
5236
5236
  /** External Project ID */
5237
5237
  externalId: string;
5238
5238
  }
5239
5239
  interface StopSyncResponse {
5240
- /** provider appDefId */
5240
+ /** Provider appDefId */
5241
5241
  appDefId?: string;
5242
5242
  /** External Project ID */
5243
5243
  externalId?: string;
5244
5244
  }
5245
5245
  interface GetLoginRedirectableUrlRequest {
5246
- /** provider appDefId */
5246
+ /** Provider appDefId */
5247
5247
  appDefId: string;
5248
5248
  }
5249
5249
  interface GetLoginRedirectableUrlResponse {
5250
- /** provider appDefId */
5250
+ /** Provider appDefId */
5251
5251
  appDefId?: string;
5252
- /** login url */
5252
+ /** Login url */
5253
5253
  url?: string;
5254
5254
  }
5255
5255
  interface GetProjectsResponseNonNullableFields {