@lansweeper/data-platform-outbound-grpc 0.1.75 → 0.1.77
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 +16 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +58 -0
- package/gen-proto/outbound_pb.js +472 -2
- package/generated-go/outbound.pb.go +3169 -3031
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +13 -0
package/java.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lansweeper/data-platform-outbound-grpc",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.77",
|
|
4
4
|
"description": "Data Platform Outbound gRPC",
|
|
5
5
|
"main": "gen-proto/index.js",
|
|
6
6
|
"types": "gen-proto/index.d.ts",
|
|
@@ -9,5 +9,5 @@
|
|
|
9
9
|
"@grpc/grpc-js": "^1.5.1",
|
|
10
10
|
"google-protobuf": "^3.17.0"
|
|
11
11
|
},
|
|
12
|
-
"gitHead": "
|
|
12
|
+
"gitHead": "52eea6405de43ffad21ccb7b48d94f843b60eea4"
|
|
13
13
|
}
|
package/proto/outbound.proto
CHANGED
|
@@ -1079,6 +1079,19 @@ message SharedResource {
|
|
|
1079
1079
|
optional string name = 2;
|
|
1080
1080
|
optional string path = 3;
|
|
1081
1081
|
optional MappedValue type = 4;
|
|
1082
|
+
repeated SharedPermission shared_permission = 5;
|
|
1083
|
+
}
|
|
1084
|
+
|
|
1085
|
+
/**
|
|
1086
|
+
* SharedPermission: windows SharePermissionInfo.
|
|
1087
|
+
*/
|
|
1088
|
+
message SharedPermission {
|
|
1089
|
+
optional string name = 1;
|
|
1090
|
+
optional string trustee = 2;
|
|
1091
|
+
optional bool read_access = 3;
|
|
1092
|
+
optional bool write_access = 4;
|
|
1093
|
+
optional bool full_access = 5;
|
|
1094
|
+
optional string deny_access = 6;
|
|
1082
1095
|
}
|
|
1083
1096
|
|
|
1084
1097
|
/**
|