@devrev/typescript-sdk 1.1.59 → 1.1.60
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/dist/auto-generated/beta/beta-devrev-sdk.d.ts +237 -1
- package/dist/auto-generated/beta/beta-devrev-sdk.js +63 -4
- package/dist/auto-generated/public-devrev-sdk.d.ts +6458 -2272
- package/dist/auto-generated/public-devrev-sdk.js +1026 -2
- package/dist/snap-ins/schema.pb.d.ts +1 -0
- package/dist/snap-ins/schema.pb.js +6 -0
- package/dist/snap-ins/struct.pb.js +1 -1
- package/package.json +1 -1
|
@@ -43,6 +43,7 @@ export interface ExecuteOperationResult {
|
|
|
43
43
|
export declare enum ExecuteOperationResult_SerializationFormat {
|
|
44
44
|
Unknown = 0,
|
|
45
45
|
Proto = 1,
|
|
46
|
+
JSON = 2,
|
|
46
47
|
UNRECOGNIZED = -1
|
|
47
48
|
}
|
|
48
49
|
export declare function executeOperationResult_SerializationFormatFromJSON(object: any): ExecuteOperationResult_SerializationFormat;
|
|
@@ -111,6 +111,7 @@ var ExecuteOperationResult_SerializationFormat;
|
|
|
111
111
|
(function (ExecuteOperationResult_SerializationFormat) {
|
|
112
112
|
ExecuteOperationResult_SerializationFormat[ExecuteOperationResult_SerializationFormat["Unknown"] = 0] = "Unknown";
|
|
113
113
|
ExecuteOperationResult_SerializationFormat[ExecuteOperationResult_SerializationFormat["Proto"] = 1] = "Proto";
|
|
114
|
+
ExecuteOperationResult_SerializationFormat[ExecuteOperationResult_SerializationFormat["JSON"] = 2] = "JSON";
|
|
114
115
|
ExecuteOperationResult_SerializationFormat[ExecuteOperationResult_SerializationFormat["UNRECOGNIZED"] = -1] = "UNRECOGNIZED";
|
|
115
116
|
})(ExecuteOperationResult_SerializationFormat = exports.ExecuteOperationResult_SerializationFormat || (exports.ExecuteOperationResult_SerializationFormat = {}));
|
|
116
117
|
function executeOperationResult_SerializationFormatFromJSON(object) {
|
|
@@ -121,6 +122,9 @@ function executeOperationResult_SerializationFormatFromJSON(object) {
|
|
|
121
122
|
case 1:
|
|
122
123
|
case 'Proto':
|
|
123
124
|
return ExecuteOperationResult_SerializationFormat.Proto;
|
|
125
|
+
case 2:
|
|
126
|
+
case 'JSON':
|
|
127
|
+
return ExecuteOperationResult_SerializationFormat.JSON;
|
|
124
128
|
case -1:
|
|
125
129
|
case 'UNRECOGNIZED':
|
|
126
130
|
default:
|
|
@@ -134,6 +138,8 @@ function executeOperationResult_SerializationFormatToJSON(object) {
|
|
|
134
138
|
return 'Unknown';
|
|
135
139
|
case ExecuteOperationResult_SerializationFormat.Proto:
|
|
136
140
|
return 'Proto';
|
|
141
|
+
case ExecuteOperationResult_SerializationFormat.JSON:
|
|
142
|
+
return 'JSON';
|
|
137
143
|
case ExecuteOperationResult_SerializationFormat.UNRECOGNIZED:
|
|
138
144
|
default:
|
|
139
145
|
return 'UNRECOGNIZED';
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
3
3
|
// versions:
|
|
4
4
|
// protoc-gen-ts_proto v1.176.0
|
|
5
|
-
// protoc
|
|
5
|
+
// protoc v5.28.1
|
|
6
6
|
// source: google/protobuf/struct.proto
|
|
7
7
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
8
8
|
if (k2 === undefined) k2 = k;
|