@restorecommerce/protos 6.3.0 → 6.4.0

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/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [6.4.0](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@6.3.0...@restorecommerce/protos@6.4.0) (2023-11-22)
7
+
8
+
9
+ ### Features
10
+
11
+ * **proto:** add queue name to job protos ([0c09086](https://github.com/restorecommerce/libs/commit/0c09086c7e41a7759a62970ad182d9816c30e773))
12
+
13
+
14
+
15
+
16
+
6
17
  # [6.3.0](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@6.2.3...@restorecommerce/protos@6.3.0) (2023-11-22)
7
18
 
8
19
 
@@ -56,13 +56,11 @@ message JobResponse {
56
56
  */
57
57
  message Job {
58
58
  optional string id = 1; // Job ID
59
-
60
- optional string type = 11; // Job type
61
- optional Data data = 12; // Job-specific data with variable payload
62
-
63
- optional string when = 21; // Used to specify the time at which the job is run
64
-
65
- optional JobOptions options = 30; // The job options
59
+ optional string type = 2; // Job type
60
+ optional Data data = 3; // Job-specific data with variable payload
61
+ optional string queue_name = 4; // Queue name to which the job should be added to
62
+ optional string when = 5; // Used to specify the time at which the job is run
63
+ optional JobOptions options = 6; // The job options
66
64
  }
67
65
 
68
66
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@restorecommerce/protos",
3
- "version": "6.3.0",
3
+ "version": "6.4.0",
4
4
  "description": "Protobuf descriptors for Restorecommerce services",
5
5
  "author": "n-fuse GmbH",
6
6
  "repository": {
@@ -15,5 +15,5 @@
15
15
  "protobufs"
16
16
  ],
17
17
  "scripts": {},
18
- "gitHead": "f03058bc61ef2e04bb7b63509cd77cf60829af11"
18
+ "gitHead": "bb96733796f69fafdb0daf6062e4f2f49caecacf"
19
19
  }