@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/java.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.1.74",
2
+ "version": "0.1.76",
3
3
  "package": "com.lansweeper.dp.outbound.v1",
4
4
  "service": true
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lansweeper/data-platform-outbound-grpc",
3
- "version": "0.1.75",
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": "537af10db3c9f89dcf1be52497d0333f6a6093df"
12
+ "gitHead": "52eea6405de43ffad21ccb7b48d94f843b60eea4"
13
13
  }
@@ -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
  /**