@eide/foir-proto-ts 0.27.0 → 0.29.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/src/analytics/v1/analytics_pb.d.ts +31 -31
- package/src/analytics/v1/analytics_pb.js +1 -1
- package/src/apps/v1/apps_pb.d.ts +26 -26
- package/src/apps/v1/apps_pb.js +1 -1
- package/src/apps/v1/apps_service_pb.d.ts +38 -38
- package/src/apps/v1/apps_service_pb.js +1 -1
- package/src/billing/v1/billing_pb.d.ts +102 -102
- package/src/billing/v1/billing_pb.js +1 -1
- package/src/buf/validate/validate_pb.d.ts +10 -10
- package/src/buf/validate/validate_pb.js +1 -1
- package/src/configs/v1/configs_pb.d.ts +51 -51
- package/src/configs/v1/configs_pb.js +1 -1
- package/src/email/v1/email_pb.d.ts +24 -24
- package/src/email/v1/email_pb.js +1 -1
- package/src/experiments/v1/experiments_pb.d.ts +50 -50
- package/src/experiments/v1/experiments_pb.js +1 -1
- package/src/expressions/v1/expressions_pb.d.ts +11 -11
- package/src/expressions/v1/expressions_pb.js +1 -1
- package/src/hooks/v1/hooks_pb.d.ts +36 -36
- package/src/hooks/v1/hooks_pb.js +1 -1
- package/src/identity/v1/identity_pb.d.ts +196 -196
- package/src/identity/v1/identity_pb.js +1 -1
- package/src/models/v1/models_connect.d.ts +32 -1
- package/src/models/v1/models_connect.js +32 -1
- package/src/models/v1/models_pb.d.ts +265 -52
- package/src/models/v1/models_pb.js +58 -2
- package/src/notifications/v1/notifications_pb.d.ts +40 -40
- package/src/notifications/v1/notifications_pb.js +1 -1
- package/src/operations/v1/operations_connect.d.ts +37 -1
- package/src/operations/v1/operations_connect.js +37 -1
- package/src/operations/v1/operations_pb.d.ts +304 -114
- package/src/operations/v1/operations_pb.js +87 -31
- package/src/placements/v1/placements_pb.d.ts +24 -24
- package/src/placements/v1/placements_pb.js +1 -1
- package/src/queue/v1/queue_pb.d.ts +17 -17
- package/src/queue/v1/queue_pb.js +1 -1
- package/src/records/v1/records_pb.d.ts +136 -136
- package/src/records/v1/records_pb.js +1 -1
- package/src/schedules/v1/schedules_pb.d.ts +64 -64
- package/src/schedules/v1/schedules_pb.js +1 -1
- package/src/segments/v1/segments_pb.d.ts +35 -35
- package/src/segments/v1/segments_pb.js +1 -1
- package/src/settings/v1/settings_pb.d.ts +190 -190
- package/src/settings/v1/settings_pb.js +1 -1
- package/src/storage/v1/storage_pb.d.ts +41 -41
- package/src/storage/v1/storage_pb.js +1 -1
- package/src/workers/v1/workers_pb.d.ts +1 -1
- package/src/workers/v1/workers_pb.js +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// @generated by protoc-gen-es v2.
|
|
1
|
+
// @generated by protoc-gen-es v2.12.0 with parameter "import_extension=js"
|
|
2
2
|
// @generated from file queue/v1/queue.proto (package queue.v1, syntax proto3)
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
|
|
@@ -84,52 +84,52 @@ export declare type JobDetails = Message<"queue.v1.JobDetails"> & {
|
|
|
84
84
|
/**
|
|
85
85
|
* @generated from field: optional int32 progress = 6;
|
|
86
86
|
*/
|
|
87
|
-
progress?: number;
|
|
87
|
+
progress?: number | undefined;
|
|
88
88
|
|
|
89
89
|
/**
|
|
90
90
|
* @generated from field: optional int32 delay = 7;
|
|
91
91
|
*/
|
|
92
|
-
delay?: number;
|
|
92
|
+
delay?: number | undefined;
|
|
93
93
|
|
|
94
94
|
/**
|
|
95
95
|
* @generated from field: optional int32 priority = 8;
|
|
96
96
|
*/
|
|
97
|
-
priority?: number;
|
|
97
|
+
priority?: number | undefined;
|
|
98
98
|
|
|
99
99
|
/**
|
|
100
100
|
* @generated from field: optional google.protobuf.Timestamp created_at = 9;
|
|
101
101
|
*/
|
|
102
|
-
createdAt?: Timestamp;
|
|
102
|
+
createdAt?: Timestamp | undefined;
|
|
103
103
|
|
|
104
104
|
/**
|
|
105
105
|
* @generated from field: optional google.protobuf.Timestamp processed_at = 10;
|
|
106
106
|
*/
|
|
107
|
-
processedAt?: Timestamp;
|
|
107
|
+
processedAt?: Timestamp | undefined;
|
|
108
108
|
|
|
109
109
|
/**
|
|
110
110
|
* @generated from field: optional google.protobuf.Timestamp finished_at = 11;
|
|
111
111
|
*/
|
|
112
|
-
finishedAt?: Timestamp;
|
|
112
|
+
finishedAt?: Timestamp | undefined;
|
|
113
113
|
|
|
114
114
|
/**
|
|
115
115
|
* @generated from field: optional string failed_reason = 12;
|
|
116
116
|
*/
|
|
117
|
-
failedReason?: string;
|
|
117
|
+
failedReason?: string | undefined;
|
|
118
118
|
|
|
119
119
|
/**
|
|
120
120
|
* @generated from field: optional string stack_trace = 13;
|
|
121
121
|
*/
|
|
122
|
-
stackTrace?: string;
|
|
122
|
+
stackTrace?: string | undefined;
|
|
123
123
|
|
|
124
124
|
/**
|
|
125
125
|
* @generated from field: optional google.protobuf.Struct data = 14;
|
|
126
126
|
*/
|
|
127
|
-
data?: JsonObject;
|
|
127
|
+
data?: JsonObject | undefined;
|
|
128
128
|
|
|
129
129
|
/**
|
|
130
130
|
* @generated from field: optional google.protobuf.Struct return_value = 15;
|
|
131
131
|
*/
|
|
132
|
-
returnValue?: JsonObject;
|
|
132
|
+
returnValue?: JsonObject | undefined;
|
|
133
133
|
};
|
|
134
134
|
|
|
135
135
|
/**
|
|
@@ -155,12 +155,12 @@ export declare type RepeatableJob = Message<"queue.v1.RepeatableJob"> & {
|
|
|
155
155
|
/**
|
|
156
156
|
* @generated from field: optional string cron = 3;
|
|
157
157
|
*/
|
|
158
|
-
cron?: string;
|
|
158
|
+
cron?: string | undefined;
|
|
159
159
|
|
|
160
160
|
/**
|
|
161
161
|
* @generated from field: optional google.protobuf.Timestamp next_run = 4;
|
|
162
162
|
*/
|
|
163
|
-
nextRun?: Timestamp;
|
|
163
|
+
nextRun?: Timestamp | undefined;
|
|
164
164
|
};
|
|
165
165
|
|
|
166
166
|
/**
|
|
@@ -225,7 +225,7 @@ export declare type GetJobDetailsResponse = Message<"queue.v1.GetJobDetailsRespo
|
|
|
225
225
|
/**
|
|
226
226
|
* @generated from field: queue.v1.JobDetails job = 1;
|
|
227
227
|
*/
|
|
228
|
-
job?: JobDetails;
|
|
228
|
+
job?: JobDetails | undefined;
|
|
229
229
|
};
|
|
230
230
|
|
|
231
231
|
/**
|
|
@@ -327,7 +327,7 @@ export declare type TriggerSchedulerResponse = Message<"queue.v1.TriggerSchedule
|
|
|
327
327
|
/**
|
|
328
328
|
* @generated from field: optional string message = 2;
|
|
329
329
|
*/
|
|
330
|
-
message?: string;
|
|
330
|
+
message?: string | undefined;
|
|
331
331
|
};
|
|
332
332
|
|
|
333
333
|
/**
|
|
@@ -359,7 +359,7 @@ export declare type GetQueueStatusResponse = Message<"queue.v1.GetQueueStatusRes
|
|
|
359
359
|
/**
|
|
360
360
|
* @generated from field: queue.v1.QueueStatus status = 1;
|
|
361
361
|
*/
|
|
362
|
-
status?: QueueStatus;
|
|
362
|
+
status?: QueueStatus | undefined;
|
|
363
363
|
};
|
|
364
364
|
|
|
365
365
|
/**
|
|
@@ -422,7 +422,7 @@ export declare type EnqueueJobRequest = Message<"queue.v1.EnqueueJobRequest"> &
|
|
|
422
422
|
/**
|
|
423
423
|
* @generated from field: optional google.protobuf.Struct payload = 3;
|
|
424
424
|
*/
|
|
425
|
-
payload?: JsonObject;
|
|
425
|
+
payload?: JsonObject | undefined;
|
|
426
426
|
};
|
|
427
427
|
|
|
428
428
|
/**
|
package/src/queue/v1/queue_pb.js
CHANGED