@restorecommerce/protos 0.6.0 → 0.6.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/io/restorecommerce/auth.proto +1 -0
- package/io/restorecommerce/user.proto +2 -0
- package/package.json +2 -2
- package/LICENSE +0 -19
|
@@ -35,6 +35,7 @@ message RoleAssociation {
|
|
|
35
35
|
string role = 1; // role ID
|
|
36
36
|
repeated io.restorecommerce.attribute.Attribute attributes = 2; // useful attributes for RBAC/ABAC like organizational scope
|
|
37
37
|
string id = 3; // identifier for role_association
|
|
38
|
+
double created = 1; // timestamp when the role was created
|
|
38
39
|
}
|
|
39
40
|
|
|
40
41
|
message HierarchicalScopesRequest {
|
|
@@ -8,6 +8,7 @@ import "io/restorecommerce/auth.proto";
|
|
|
8
8
|
import "io/restorecommerce/attribute.proto";
|
|
9
9
|
import "io/restorecommerce/image.proto";
|
|
10
10
|
import "io/restorecommerce/status.proto";
|
|
11
|
+
import "google/protobuf/any.proto";
|
|
11
12
|
|
|
12
13
|
/**
|
|
13
14
|
* The microservice for the user resource.
|
|
@@ -255,4 +256,5 @@ message User {
|
|
|
255
256
|
string invited_by_user_last_name = 23; // Last name of user inviting
|
|
256
257
|
repeated io.restorecommerce.auth.Tokens tokens = 24;
|
|
257
258
|
double last_access = 25;
|
|
259
|
+
google.protobuf.Any data = 26; /// additional data
|
|
258
260
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@restorecommerce/protos",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.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": "
|
|
18
|
+
"gitHead": "0a6f7c94bfb1811c5dd60ab8c4912a41299b3717"
|
|
19
19
|
}
|
package/LICENSE
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
Copyright (c) n-fuse GmbH and other contributors.
|
|
2
|
-
|
|
3
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
4
|
-
this software and associated documentation files (the "Software"), to deal in
|
|
5
|
-
the Software without restriction, including without limitation the rights to
|
|
6
|
-
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
7
|
-
of the Software, and to permit persons to whom the Software is furnished to do
|
|
8
|
-
so, subject to the following conditions:
|
|
9
|
-
|
|
10
|
-
The above copyright notice and this permission notice shall be included in all
|
|
11
|
-
copies or substantial portions of the Software.
|
|
12
|
-
|
|
13
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
14
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
15
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
16
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
17
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
18
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
19
|
-
SOFTWARE.
|