@restorecommerce/protos 6.3.0 → 6.4.1

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,29 @@
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.1](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@6.4.0...@restorecommerce/protos@6.4.1) (2023-11-25)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **facade:** fix to send client_id in token find response(this will be persisted to DB from token payload on identity-srv) ([0ebf12f](https://github.com/restorecommerce/libs/commit/0ebf12f4b7bb82e00ef878dc76c26576ad95ea76))
12
+ * **fulfillment.proto:** references should be list ([d9af066](https://github.com/restorecommerce/libs/commit/d9af0667024cc9356bfa3e786a2a4bf610c7c4db))
13
+
14
+
15
+
16
+
17
+
18
+ # [6.4.0](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@6.3.0...@restorecommerce/protos@6.4.0) (2023-11-22)
19
+
20
+
21
+ ### Features
22
+
23
+ * **proto:** add queue name to job protos ([0c09086](https://github.com/restorecommerce/libs/commit/0c09086c7e41a7759a62970ad182d9816c30e773))
24
+
25
+
26
+
27
+
28
+
6
29
  # [6.3.0](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@6.2.3...@restorecommerce/protos@6.3.0) (2023-11-22)
7
30
 
8
31
 
@@ -22,6 +22,7 @@ message Tokens {
22
22
  optional string type = 5; // type of token eg: access_token, refresh_token
23
23
  optional bool interactive = 6;
24
24
  optional google.protobuf.Timestamp last_login = 7;
25
+ optional string client_id = 8;
25
26
  }
26
27
 
27
28
  message HierarchicalScope {
@@ -202,7 +202,7 @@ message Fulfillment {
202
202
  field_name: "shop",
203
203
  }
204
204
  ];
205
- optional io.restorecommerce.reference.Reference reference = 6;
205
+ repeated io.restorecommerce.reference.Reference references = 6;
206
206
  optional Packaging packaging = 7;
207
207
  repeated Label labels = 8; //set by service
208
208
  repeated Tracking trackings = 9; //set by service
@@ -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.1",
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": "ea49dff37f69ae280b6b56879a356a2c3cd04d1b"
19
19
  }