@restorecommerce/protos 6.2.2 → 6.2.3

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.2.3](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@6.2.2...@restorecommerce/protos@6.2.3) (2023-11-15)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **protos:** changed expries_in to timestamp and regenerated schema ([b519d8d](https://github.com/restorecommerce/libs/commit/b519d8d54cc39ecd9804401698fd452c219336a5))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [6.2.2](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@6.2.1...@restorecommerce/protos@6.2.2) (2023-11-14)
7
18
 
8
19
 
@@ -16,12 +16,12 @@ message Subject {
16
16
 
17
17
  message Tokens {
18
18
  optional string name = 1; // token name
19
- optional double expires_in = 2; // expiration date for token
19
+ optional google.protobuf.Timestamp expires_in = 2; // expiration date for token
20
20
  optional string token = 3; // token
21
21
  repeated string scopes = 4; // identifier for role_association
22
22
  optional string type = 5; // type of token eg: access_token, refresh_token
23
23
  optional bool interactive = 6;
24
- optional double last_login = 7;
24
+ optional google.protobuf.Timestamp last_login = 7;
25
25
  }
26
26
 
27
27
  message HierarchicalScope {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@restorecommerce/protos",
3
- "version": "6.2.2",
3
+ "version": "6.2.3",
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": "9876d507fa10e352fc66d11a5f27db8b4fa06020"
18
+ "gitHead": "ef3bd77c3235fd03f2a4963eecc19fde31b6bf1b"
19
19
  }