Skip to content

Commit

Permalink
Merge pull request #1 from ucraft-com/feature/COMMERCE-5552
Browse files Browse the repository at this point in the history
COMMERCE-5552 Booking type product management
  • Loading branch information
k3rnel authored Nov 14, 2023
2 parents a3ee6cc + 4969ad3 commit 6348d23
Show file tree
Hide file tree
Showing 9 changed files with 37 additions and 18 deletions.
12 changes: 6 additions & 6 deletions build/Bulkprocess/BulkProcess.php

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions build/Bulkprocess/BulkProcessArray.php

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions build/Bulkprocess/BulkProcessNotificationRequest.php

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions build/Bulkprocess/CreateBulkProcessRequest.php

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions build/Bulkprocess/Entity.php

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions build/Bulkprocess/GetBulkProcessStatusByIdRequest.php

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified build/GPBMetadata/Proto/BulkProcess.php
Binary file not shown.
3 changes: 3 additions & 0 deletions proto/bulk-process.proto
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,9 @@ enum Entity {
CART_RULE = 12;
PAGE = 13;
TEAM = 14;
BOOKING = 15;
EVENT_CATEGORY = 16;
BOOKING_CATEGORY = 17;
}

service BulkProcessService {
Expand Down
5 changes: 3 additions & 2 deletions src/BulkProcessExecutor/Enums/Entity.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@

namespace Uc\BulkProcess\BulkProcessExecutor\Enums;

use Bulkprocess\Entity as ProtoEntityEnum;

enum Entity: int
{
case PRODUCT = 0;
Expand All @@ -23,4 +21,7 @@ enum Entity: int
case CART_RULE = 12;
case PAGE = 13;
case TEAM = 14;
case BOOKING = 15;
case EVENT_CATEGORY = 16;
case BOOKING_CATEGORY = 17;
}

0 comments on commit 6348d23

Please sign in to comment.