@miradorlabs/web-grpc 2.14.0 → 2.16.0
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 +1 -1
- package/proto/gateway/web/v1/common.ts +52 -0
- package/proto/gateway/web/v1/common_grpc_pb.js +1 -0
- package/proto/gateway/web/v1/common_pb.js +34 -0
- package/proto/gateway/web/v1/integration_gateway.ts +3064 -0
- package/proto/gateway/web/v1/integration_gateway_grpc_pb.js +217 -0
- package/proto/gateway/web/v1/integration_gateway_pb.js +6097 -0
- package/proto/gateway/web/v1/oauth_gateway.ts +908 -41
- package/proto/gateway/web/v1/oauth_gateway_grpc_pb.js +99 -0
- package/proto/gateway/web/v1/oauth_gateway_pb.js +1719 -1
- package/proto/gateway/web/v1/rule_gateway.ts +2907 -0
- package/proto/gateway/web/v1/rule_gateway_grpc_pb.js +287 -0
- package/proto/gateway/web/v1/rule_gateway_pb.js +6116 -0
- package/proto/gateway/web/v1/automation_gateway.ts +0 -5605
- package/proto/gateway/web/v1/automation_gateway_grpc_pb.js +0 -485
- package/proto/gateway/web/v1/automation_gateway_pb.js +0 -11618
- package/proto/gateway/web/v1/stream_gateway.ts +0 -2354
- package/proto/gateway/web/v1/stream_gateway_grpc_pb.js +0 -145
- package/proto/gateway/web/v1/stream_gateway_pb.js +0 -4593
package/package.json
CHANGED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
2
|
+
// versions:
|
|
3
|
+
// protoc-gen-ts_proto v2.12.0
|
|
4
|
+
// protoc v3.21.12
|
|
5
|
+
// source: proto/gateway/web/v1/common.proto
|
|
6
|
+
|
|
7
|
+
/* eslint-disable */
|
|
8
|
+
|
|
9
|
+
export const protobufPackage = "gateway.web.v1";
|
|
10
|
+
|
|
11
|
+
/**
|
|
12
|
+
* EnabledStatus is the enabled/disabled state shared by web automation
|
|
13
|
+
* resources (trace rules, metric rules, integrations).
|
|
14
|
+
*/
|
|
15
|
+
export enum EnabledStatus {
|
|
16
|
+
ENABLED_STATUS_UNSPECIFIED = 0,
|
|
17
|
+
ENABLED_STATUS_ENABLED = 1,
|
|
18
|
+
ENABLED_STATUS_DISABLED = 2,
|
|
19
|
+
UNRECOGNIZED = -1,
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export function enabledStatusFromJSON(object: any): EnabledStatus {
|
|
23
|
+
switch (object) {
|
|
24
|
+
case 0:
|
|
25
|
+
case "ENABLED_STATUS_UNSPECIFIED":
|
|
26
|
+
return EnabledStatus.ENABLED_STATUS_UNSPECIFIED;
|
|
27
|
+
case 1:
|
|
28
|
+
case "ENABLED_STATUS_ENABLED":
|
|
29
|
+
return EnabledStatus.ENABLED_STATUS_ENABLED;
|
|
30
|
+
case 2:
|
|
31
|
+
case "ENABLED_STATUS_DISABLED":
|
|
32
|
+
return EnabledStatus.ENABLED_STATUS_DISABLED;
|
|
33
|
+
case -1:
|
|
34
|
+
case "UNRECOGNIZED":
|
|
35
|
+
default:
|
|
36
|
+
return EnabledStatus.UNRECOGNIZED;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
export function enabledStatusToJSON(object: EnabledStatus): string {
|
|
41
|
+
switch (object) {
|
|
42
|
+
case EnabledStatus.ENABLED_STATUS_UNSPECIFIED:
|
|
43
|
+
return "ENABLED_STATUS_UNSPECIFIED";
|
|
44
|
+
case EnabledStatus.ENABLED_STATUS_ENABLED:
|
|
45
|
+
return "ENABLED_STATUS_ENABLED";
|
|
46
|
+
case EnabledStatus.ENABLED_STATUS_DISABLED:
|
|
47
|
+
return "ENABLED_STATUS_DISABLED";
|
|
48
|
+
case EnabledStatus.UNRECOGNIZED:
|
|
49
|
+
default:
|
|
50
|
+
return "UNRECOGNIZED";
|
|
51
|
+
}
|
|
52
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
// GENERATED CODE -- NO SERVICES IN PROTO
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
// source: proto/gateway/web/v1/common.proto
|
|
2
|
+
/**
|
|
3
|
+
* @fileoverview
|
|
4
|
+
* @enhanceable
|
|
5
|
+
* @suppress {missingRequire} reports error on implicit type usages.
|
|
6
|
+
* @suppress {messageConventions} JS Compiler reports an error if a variable or
|
|
7
|
+
* field starts with 'MSG_' and isn't a translatable message.
|
|
8
|
+
* @public
|
|
9
|
+
*/
|
|
10
|
+
// GENERATED CODE -- DO NOT EDIT!
|
|
11
|
+
/* eslint-disable */
|
|
12
|
+
// @ts-nocheck
|
|
13
|
+
|
|
14
|
+
var jspb = require('google-protobuf');
|
|
15
|
+
var goog = jspb;
|
|
16
|
+
var global =
|
|
17
|
+
(typeof globalThis !== 'undefined' && globalThis) ||
|
|
18
|
+
(typeof window !== 'undefined' && window) ||
|
|
19
|
+
(typeof global !== 'undefined' && global) ||
|
|
20
|
+
(typeof self !== 'undefined' && self) ||
|
|
21
|
+
(function () { return this; }).call(null) ||
|
|
22
|
+
Function('return this')();
|
|
23
|
+
|
|
24
|
+
goog.exportSymbol('proto.gateway.web.v1.EnabledStatus', null, global);
|
|
25
|
+
/**
|
|
26
|
+
* @enum {number}
|
|
27
|
+
*/
|
|
28
|
+
proto.gateway.web.v1.EnabledStatus = {
|
|
29
|
+
ENABLED_STATUS_UNSPECIFIED: 0,
|
|
30
|
+
ENABLED_STATUS_ENABLED: 1,
|
|
31
|
+
ENABLED_STATUS_DISABLED: 2
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
goog.object.extend(exports, proto.gateway.web.v1);
|