@lansweeper/multitenant-api-grpc 0.3.5 → 0.3.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lansweeper/multitenant-api-grpc",
3
- "version": "0.3.5",
3
+ "version": "0.3.7",
4
4
  "description": "Multitenant grpc",
5
5
  "main": "gen-proto/index.js",
6
6
  "types": "gen-proto/index.d.ts",
@@ -12,5 +12,5 @@
12
12
  "devDependencies": {
13
13
  "@types/google-protobuf": "^3.15.5"
14
14
  },
15
- "gitHead": "04c3bea101d40508b23954b7ba28bbbbf70ef5bd"
15
+ "gitHead": "9e7ad0f2c91f1cd8f8f5f7fd896efd60a8d28aec"
16
16
  }
@@ -2,6 +2,8 @@ syntax = "proto3";
2
2
 
3
3
  package lansweeper.multitenant.v1;
4
4
 
5
+ option go_package = "./generated-go";
6
+
5
7
  message PreviewAccount {
6
8
  string id = 1;
7
9
  string username = 2;
@@ -262,7 +264,7 @@ message ValidateApplicationPersonalAccessTokenResponse {
262
264
 
263
265
  message DisableWebhookEmailRequest {
264
266
  string application_name = 1;
265
- string email = 2;
267
+ string email = 2 [deprecated = true];
266
268
 
267
269
  message WebhookError {
268
270
  string code = 1;
@@ -274,7 +276,9 @@ message DisableWebhookEmailRequest {
274
276
 
275
277
  string payload_url = 4;
276
278
  string webhook_name = 5;
277
- string webhook_url = 6;
279
+ string webhook_url = 6 [deprecated = true];
280
+ string webhook_id = 7;
281
+ string application_id = 8;
278
282
  }
279
283
 
280
284
  message DisableWebhookEmailResponse {