@lansweeper/scanningconfig-grpc 0.2.2 → 0.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.
@@ -5,7 +5,7 @@
5
5
  },
6
6
  "projects": {
7
7
  "/home/circleci/project/packages/scanningconfig/grpc/Lansweeper.ScanningConfig.GRPC.csproj": {
8
- "version": "0.2.1",
8
+ "version": "0.2.2",
9
9
  "restore": {
10
10
  "projectUniqueName": "/home/circleci/project/packages/scanningconfig/grpc/Lansweeper.ScanningConfig.GRPC.csproj",
11
11
  "projectName": "Lansweeper.ScanningConfig.GRPC",
@@ -69,7 +69,7 @@
69
69
  "privateAssets": "all"
70
70
  }
71
71
  },
72
- "runtimeIdentifierGraphPath": "/usr/lib/dotnet/sdk/6.0.132/RuntimeIdentifierGraph.json"
72
+ "runtimeIdentifierGraphPath": "/usr/lib/dotnet/sdk/6.0.133/RuntimeIdentifierGraph.json"
73
73
  }
74
74
  }
75
75
  }
@@ -235,7 +235,7 @@
235
235
  "/home/circleci/.nuget/packages/": {}
236
236
  },
237
237
  "project": {
238
- "version": "0.2.1",
238
+ "version": "0.2.2",
239
239
  "restore": {
240
240
  "projectUniqueName": "/home/circleci/project/packages/scanningconfig/grpc/Lansweeper.ScanningConfig.GRPC.csproj",
241
241
  "projectName": "Lansweeper.ScanningConfig.GRPC",
@@ -299,7 +299,7 @@
299
299
  "privateAssets": "all"
300
300
  }
301
301
  },
302
- "runtimeIdentifierGraphPath": "/usr/lib/dotnet/sdk/6.0.132/RuntimeIdentifierGraph.json"
302
+ "runtimeIdentifierGraphPath": "/usr/lib/dotnet/sdk/6.0.133/RuntimeIdentifierGraph.json"
303
303
  }
304
304
  }
305
305
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": 2,
3
- "dgSpecHash": "Qje9cvkIhcnbm395NW0sW5RV831mys6Htgcqk4Y7r9LIIFe2iSQZ4uH4z6fyzNAhvHK+EbG5ux0RTkomeK+Kwg==",
3
+ "dgSpecHash": "FC6HQi0mUfcmRpxgXKMK9O9Z2x7yf3hUz0TqQQVvS6Twt+MTZOzRHWXpMILTtVoeLHZmQ14/xVu5OFZ4+FY/Yw==",
4
4
  "success": true,
5
5
  "projectFilePath": "/home/circleci/project/packages/scanningconfig/grpc/Lansweeper.ScanningConfig.GRPC.csproj",
6
6
  "expectedPackageFiles": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lansweeper/scanningconfig-grpc",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "description": "ScanningConfig grpc",
5
5
  "main": "gen-proto/index.js",
6
6
  "types": "gen-proto/index.d.ts",
@@ -12,5 +12,5 @@
12
12
  "@grpc/grpc-js": "^1.6.2",
13
13
  "@types/google-protobuf": "^3.15.5"
14
14
  },
15
- "gitHead": "6f5bbe29ba9de6893150330611eebcc811e49d6b"
15
+ "gitHead": "df693987286ed7670a60c99373e4b9ecb98e0981"
16
16
  }
@@ -107,10 +107,12 @@ message TargetData {
107
107
  UNKNOWN_TARGET_TYPE = 0;
108
108
  IP_SCAN = 1;
109
109
  SCCM = 2;
110
+ AD = 3;
110
111
  }
111
112
  TargetType type = 1;
112
113
  oneof info {
113
114
  IPScanData ip_scan_data = 2;
115
+ ADData ad_data = 3;
114
116
  string target = 4;
115
117
  }
116
118
  }
@@ -127,6 +129,21 @@ message IPScanPing {
127
129
  bool keep_no_answer_scan = 3;
128
130
  }
129
131
 
132
+ message ADData {
133
+ enum LDAPType {
134
+ UNKNOWN_LDAP_TYPE = 0;
135
+ LDAP = 1;
136
+ LDAPS = 2;
137
+ }
138
+ string name = 1;
139
+ string adsi_filter = 2;
140
+ string domain = 3;
141
+ bool computer_scan = 4;
142
+ bool user_group_scan = 5;
143
+ LDAPType ldap_type = 6;
144
+ int32 port = 7;
145
+ }
146
+
130
147
  message Agent{
131
148
  enum ScanFocus {
132
149
  ALL = 0;