@wenlarge/communication 1.1.16 → 1.1.17

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.
@@ -1,208 +1,208 @@
1
- syntax = "proto3";
2
-
3
- import "google/protobuf/empty.proto";
4
- import "google/protobuf/struct.proto";
5
-
6
- package workflow;
7
-
8
- service WorkflowService {
9
- rpc Create (CreateWorkflowRequest) returns (WorkflowResponse);
10
- rpc FindMany (FindManyWorkflowRequest) returns (FindManyWorkflowResponse);
11
- rpc Delete (DeleteWorkflowRequest) returns (google.protobuf.Empty);
12
- rpc Update (UpdateWorkflowRequest) returns (WorkflowResponse);
13
- rpc FindFirst (FindFirstWorkflowRequest) returns (WorkflowResponse);
14
- rpc TriggerWorkflow (TriggerWorkflowRequest) returns (google.protobuf.Empty);
15
- rpc TriggerNode (TriggerNodeRequest) returns (google.protobuf.Empty);
16
- rpc CreateWorkflowNode (CreateWorkflowNodeRequest) returns (WorkflowNodeResponse);
17
- rpc FindManyWorkflowNode (FindManyWorkflowNodeRequest) returns (FindManyWorkflowNodeResponse);
18
- rpc FindFirstWorkflowNode (FindFirstWorkflowNodeRequest) returns (FindFirstWorkflowNodeResponse);
19
- rpc UpdateWorkflowNode (UpdateWorkflowNodeRequest) returns (WorkflowNodeResponse);
20
- rpc DeleteWorkflowNode (DeleteWorkflowNodeRequest) returns (google.protobuf.Empty);
21
- rpc SaveWorkflowBatch (SaveWorkflowBatchRequest) returns (google.protobuf.Empty);
22
- rpc FindWorkflowNodeTypes (google.protobuf.Empty) returns (FindManyWorkflowNodeTypeResponse);
23
- rpc FindConnections (FindConnectionsRequest) returns (FindConnectionsResponse);
24
- rpc UpdateWorkflowStatus (UpdateWorkflowStatusRequest) returns (google.protobuf.Empty);
25
- rpc GetNodeExecutionLog(GetNodeExecutionLogRequest) returns (GetExecutionLogResponse);
26
- rpc GetWorkflowExecutionLog(GetWorkflowExecutionLogRequest) returns (GetExecutionLogResponse);
27
- }
28
-
29
- message CreateWorkflowRequest {
30
- string name = 1;
31
- string projectId = 2;
32
- }
33
-
34
- message WorkflowResponse {
35
- string id = 1;
36
- string name = 2;
37
- string companyId = 3;
38
- string projectId = 4;
39
- string createdAt = 5;
40
- string updatedAt = 6;
41
- WorkflowStatus status = 7;
42
- }
43
-
44
- message DeleteWorkflowRequest{
45
- string id = 1;
46
- }
47
-
48
- message UpdateWorkflowRequest{
49
- string id = 1;
50
- string name = 2;
51
- }
52
-
53
- message FindManyWorkflowRequest{
54
- string projectId = 1;
55
- int32 skip = 2;
56
- int32 take = 3;
57
- }
58
-
59
- message FindManyWorkflowResponse{
60
- repeated WorkflowResponse data = 1;
61
- int32 total = 2;
62
- }
63
-
64
- message FindFirstWorkflowRequest {
65
- string workflowId = 1;
66
- }
67
-
68
- message TriggerWorkflowRequest{
69
- string workflowId = 1;
70
- }
71
-
72
- message TriggerNodeRequest{
73
- string nodeId = 1;
74
- }
75
-
76
-
77
- message CreateWorkflowNodeRequest{
78
- string id = 1;
79
- string workflowId = 2;
80
- string name = 3;
81
- int32 positionX = 4;
82
- int32 positionY = 5;
83
- google.protobuf.Struct inputSchema = 6;
84
- google.protobuf.Struct outputSchema = 7;
85
- google.protobuf.Struct config = 8;
86
- string nodeTypeId = 9;
87
- }
88
-
89
- message UpdateWorkflowNodeRequest{
90
- string id = 1;
91
- string name = 2;
92
- string nodeTypeId = 3;
93
- int32 positionX = 4;
94
- int32 positionY=5;
95
- google.protobuf.Struct inputSchema = 6;
96
- google.protobuf.Struct outputSchema = 7;
97
- google.protobuf.Struct config = 8;
98
- string workflowId = 9;
99
- }
100
-
101
- message DeleteWorkflowNodeRequest{
102
- string id = 1;
103
- }
104
-
105
- message FindManyWorkflowNodeRequest{
106
- string workflowId = 1;
107
- int32 skip = 2;
108
- int32 take = 3;
109
- }
110
-
111
- message FindManyWorkflowNodeResponse{
112
- repeated WorkflowNodeResponse data = 1;
113
- int32 total = 2;
114
- }
115
-
116
- message FindFirstWorkflowNodeRequest{
117
- string id = 1;
118
- }
119
- message FindFirstWorkflowNodeResponse{
120
- WorkflowNodeResponse node = 1;
121
- }
122
-
123
- message WorkflowNodeResponse{
124
- string id = 1;
125
- string name = 2;
126
- string nodeTypeId = 3;
127
- int32 positionX = 4;
128
- int32 positionY = 5;
129
- google.protobuf.Struct inputSchema = 6;
130
- google.protobuf.Struct outputSchema = 7;
131
- google.protobuf.Struct config = 8;
132
- string createdAt = 9;
133
- string updatedAt = 10;
134
- string workflowId = 11;
135
- }
136
-
137
- message WorkflowNodeConnection {
138
- string id = 1;
139
- string workflowId = 2;
140
- string fromNodeId = 3;
141
- string toNodeId = 4;
142
- google.protobuf.Struct pointer = 5;
143
- }
144
-
145
- message SaveWorkflowBatchRequest {
146
- string workflowId = 1;
147
- repeated UpdateWorkflowNodeRequest nodes = 2;
148
- repeated UpdateBatchConnection connections = 3;
149
- }
150
-
151
- message UpdateBatchConnection {
152
- string fromNodeId = 1;
153
- string toNodeId = 2;
154
- google.protobuf.Struct pointer = 3;
155
- }
156
-
157
- message WorkflowNodeTypeResponse {
158
- string id = 1;
159
- string label = 2;
160
- string description = 3;
161
- string service = 4;
162
- google.protobuf.Struct form = 5;
163
- }
164
-
165
- message FindManyWorkflowNodeTypeResponse {
166
- repeated WorkflowNodeTypeResponse data = 1;
167
- }
168
-
169
- message FindConnectionsRequest {
170
- string workflowId = 1;
171
- }
172
-
173
- message FindConnectionsResponse {
174
- repeated WorkflowNodeConnection data = 1;
175
- }
176
-
177
- enum WorkflowStatus {
178
- DRAFT = 0;
179
- PUBLISHED = 1;
180
- }
181
-
182
- message UpdateWorkflowStatusRequest {
183
- string workflowId = 1;
184
- WorkflowStatus status = 2;
185
- }
186
-
187
- message GetNodeExecutionLogRequest {
188
- string nodeId = 1;
189
- string workflowId =2;
190
- }
191
-
192
- message GetExecutionLogResponse {
193
- repeated ExecutionLogEntry logs = 1;
194
- }
195
-
196
- message GetWorkflowExecutionLogRequest{
197
- string workflowId = 1;
198
- }
199
-
200
- message ExecutionLogEntry {
201
- string nodeId = 1;
202
- string status = 2;
203
- google.protobuf.Struct inputSchema = 3;
204
- google.protobuf.Struct outputSchema = 4;
205
- google.protobuf.Struct config = 5;
206
- string startedAt = 6;
207
- string finishedAt = 7;
1
+ syntax = "proto3";
2
+
3
+ import "google/protobuf/empty.proto";
4
+ import "google/protobuf/struct.proto";
5
+
6
+ package workflow;
7
+
8
+ service WorkflowService {
9
+ rpc Create (CreateWorkflowRequest) returns (WorkflowResponse);
10
+ rpc FindMany (FindManyWorkflowRequest) returns (FindManyWorkflowResponse);
11
+ rpc Delete (DeleteWorkflowRequest) returns (google.protobuf.Empty);
12
+ rpc Update (UpdateWorkflowRequest) returns (WorkflowResponse);
13
+ rpc FindFirst (FindFirstWorkflowRequest) returns (WorkflowResponse);
14
+ rpc TriggerWorkflow (TriggerWorkflowRequest) returns (google.protobuf.Empty);
15
+ rpc TriggerNode (TriggerNodeRequest) returns (google.protobuf.Empty);
16
+ rpc CreateWorkflowNode (CreateWorkflowNodeRequest) returns (WorkflowNodeResponse);
17
+ rpc FindManyWorkflowNode (FindManyWorkflowNodeRequest) returns (FindManyWorkflowNodeResponse);
18
+ rpc FindFirstWorkflowNode (FindFirstWorkflowNodeRequest) returns (FindFirstWorkflowNodeResponse);
19
+ rpc UpdateWorkflowNode (UpdateWorkflowNodeRequest) returns (WorkflowNodeResponse);
20
+ rpc DeleteWorkflowNode (DeleteWorkflowNodeRequest) returns (google.protobuf.Empty);
21
+ rpc SaveWorkflowBatch (SaveWorkflowBatchRequest) returns (google.protobuf.Empty);
22
+ rpc FindWorkflowNodeTypes (google.protobuf.Empty) returns (FindManyWorkflowNodeTypeResponse);
23
+ rpc FindConnections (FindConnectionsRequest) returns (FindConnectionsResponse);
24
+ rpc UpdateWorkflowStatus (UpdateWorkflowStatusRequest) returns (google.protobuf.Empty);
25
+ rpc GetNodeExecutionLog(GetNodeExecutionLogRequest) returns (GetExecutionLogResponse);
26
+ rpc GetWorkflowExecutionLog(GetWorkflowExecutionLogRequest) returns (GetExecutionLogResponse);
27
+ }
28
+
29
+ message CreateWorkflowRequest {
30
+ string name = 1;
31
+ string projectId = 2;
32
+ }
33
+
34
+ message WorkflowResponse {
35
+ string id = 1;
36
+ string name = 2;
37
+ string companyId = 3;
38
+ string projectId = 4;
39
+ string createdAt = 5;
40
+ string updatedAt = 6;
41
+ WorkflowStatus status = 7;
42
+ }
43
+
44
+ message DeleteWorkflowRequest{
45
+ string id = 1;
46
+ }
47
+
48
+ message UpdateWorkflowRequest{
49
+ string id = 1;
50
+ string name = 2;
51
+ }
52
+
53
+ message FindManyWorkflowRequest{
54
+ string projectId = 1;
55
+ int32 skip = 2;
56
+ int32 take = 3;
57
+ }
58
+
59
+ message FindManyWorkflowResponse{
60
+ repeated WorkflowResponse data = 1;
61
+ int32 total = 2;
62
+ }
63
+
64
+ message FindFirstWorkflowRequest {
65
+ string workflowId = 1;
66
+ }
67
+
68
+ message TriggerWorkflowRequest{
69
+ string workflowId = 1;
70
+ }
71
+
72
+ message TriggerNodeRequest{
73
+ string nodeId = 1;
74
+ }
75
+
76
+
77
+ message CreateWorkflowNodeRequest{
78
+ string id = 1;
79
+ string workflowId = 2;
80
+ string name = 3;
81
+ int32 positionX = 4;
82
+ int32 positionY = 5;
83
+ google.protobuf.Struct inputSchema = 6;
84
+ google.protobuf.Struct outputSchema = 7;
85
+ google.protobuf.Struct config = 8;
86
+ string nodeTypeId = 9;
87
+ }
88
+
89
+ message UpdateWorkflowNodeRequest{
90
+ string id = 1;
91
+ string name = 2;
92
+ string nodeTypeId = 3;
93
+ int32 positionX = 4;
94
+ int32 positionY=5;
95
+ google.protobuf.Struct inputSchema = 6;
96
+ google.protobuf.Struct outputSchema = 7;
97
+ google.protobuf.Struct config = 8;
98
+ string workflowId = 9;
99
+ }
100
+
101
+ message DeleteWorkflowNodeRequest{
102
+ string id = 1;
103
+ }
104
+
105
+ message FindManyWorkflowNodeRequest{
106
+ string workflowId = 1;
107
+ int32 skip = 2;
108
+ int32 take = 3;
109
+ }
110
+
111
+ message FindManyWorkflowNodeResponse{
112
+ repeated WorkflowNodeResponse data = 1;
113
+ int32 total = 2;
114
+ }
115
+
116
+ message FindFirstWorkflowNodeRequest{
117
+ string id = 1;
118
+ }
119
+ message FindFirstWorkflowNodeResponse{
120
+ WorkflowNodeResponse node = 1;
121
+ }
122
+
123
+ message WorkflowNodeResponse{
124
+ string id = 1;
125
+ string name = 2;
126
+ string nodeTypeId = 3;
127
+ int32 positionX = 4;
128
+ int32 positionY = 5;
129
+ google.protobuf.Struct inputSchema = 6;
130
+ google.protobuf.Struct outputSchema = 7;
131
+ google.protobuf.Struct config = 8;
132
+ string createdAt = 9;
133
+ string updatedAt = 10;
134
+ string workflowId = 11;
135
+ }
136
+
137
+ message WorkflowNodeConnection {
138
+ string id = 1;
139
+ string workflowId = 2;
140
+ string fromNodeId = 3;
141
+ string toNodeId = 4;
142
+ google.protobuf.Struct pointer = 5;
143
+ }
144
+
145
+ message SaveWorkflowBatchRequest {
146
+ string workflowId = 1;
147
+ repeated UpdateWorkflowNodeRequest nodes = 2;
148
+ repeated UpdateBatchConnection connections = 3;
149
+ }
150
+
151
+ message UpdateBatchConnection {
152
+ string fromNodeId = 1;
153
+ string toNodeId = 2;
154
+ google.protobuf.Struct pointer = 3;
155
+ }
156
+
157
+ message WorkflowNodeTypeResponse {
158
+ string id = 1;
159
+ string label = 2;
160
+ string description = 3;
161
+ string service = 4;
162
+ google.protobuf.Struct form = 5;
163
+ }
164
+
165
+ message FindManyWorkflowNodeTypeResponse {
166
+ repeated WorkflowNodeTypeResponse data = 1;
167
+ }
168
+
169
+ message FindConnectionsRequest {
170
+ string workflowId = 1;
171
+ }
172
+
173
+ message FindConnectionsResponse {
174
+ repeated WorkflowNodeConnection data = 1;
175
+ }
176
+
177
+ enum WorkflowStatus {
178
+ DRAFT = 0;
179
+ PUBLISHED = 1;
180
+ }
181
+
182
+ message UpdateWorkflowStatusRequest {
183
+ string workflowId = 1;
184
+ WorkflowStatus status = 2;
185
+ }
186
+
187
+ message GetNodeExecutionLogRequest {
188
+ string nodeId = 1;
189
+ string workflowId =2;
190
+ }
191
+
192
+ message GetExecutionLogResponse {
193
+ repeated ExecutionLogEntry logs = 1;
194
+ }
195
+
196
+ message GetWorkflowExecutionLogRequest{
197
+ string workflowId = 1;
198
+ }
199
+
200
+ message ExecutionLogEntry {
201
+ string nodeId = 1;
202
+ string status = 2;
203
+ google.protobuf.Struct inputSchema = 3;
204
+ google.protobuf.Struct outputSchema = 4;
205
+ google.protobuf.Struct config = 5;
206
+ string startedAt = 6;
207
+ string finishedAt = 7;
208
208
  }
@@ -1,7 +1,7 @@
1
1
  // Code generated by protoc-gen-ts_proto. DO NOT EDIT.
2
2
  // versions:
3
3
  // protoc-gen-ts_proto v1.181.2
4
- // protoc v3.21.5
4
+ // protoc v7.34.0
5
5
  // source: auth.proto
6
6
 
7
7
  /* eslint-disable */
@@ -1,16 +1,16 @@
1
- // Code generated by protoc-gen-ts_proto. DO NOT EDIT.
2
- // versions:
3
- // protoc-gen-ts_proto v1.181.2
4
- // protoc v6.33.1
5
- // source: common.proto
6
-
7
- /* eslint-disable */
8
-
9
- export const protobufPackage = "common";
10
-
11
- export interface PaginateRequest {
12
- skip: number;
13
- take: number;
14
- }
15
-
16
- export const COMMON_PACKAGE_NAME = "common";
1
+ // Code generated by protoc-gen-ts_proto. DO NOT EDIT.
2
+ // versions:
3
+ // protoc-gen-ts_proto v1.181.2
4
+ // protoc v6.33.1
5
+ // source: common.proto
6
+
7
+ /* eslint-disable */
8
+
9
+ export const protobufPackage = "common";
10
+
11
+ export interface PaginateRequest {
12
+ skip: number;
13
+ take: number;
14
+ }
15
+
16
+ export const COMMON_PACKAGE_NAME = "common";
@@ -1,7 +1,7 @@
1
1
  // Code generated by protoc-gen-ts_proto. DO NOT EDIT.
2
2
  // versions:
3
3
  // protoc-gen-ts_proto v1.181.2
4
- // protoc v3.21.5
4
+ // protoc v7.34.0
5
5
  // source: executor-core.proto
6
6
 
7
7
  /* eslint-disable */
@@ -1,7 +1,7 @@
1
1
  // Code generated by protoc-gen-ts_proto. DO NOT EDIT.
2
2
  // versions:
3
3
  // protoc-gen-ts_proto v1.181.2
4
- // protoc v3.21.5
4
+ // protoc v7.34.0
5
5
  // source: google/protobuf/empty.proto
6
6
 
7
7
  /* eslint-disable */
@@ -1,7 +1,7 @@
1
1
  // Code generated by protoc-gen-ts_proto. DO NOT EDIT.
2
2
  // versions:
3
3
  // protoc-gen-ts_proto v1.181.2
4
- // protoc v3.21.5
4
+ // protoc v7.34.0
5
5
  // source: google/protobuf/struct.proto
6
6
 
7
7
  /* eslint-disable */
@@ -13,7 +13,7 @@ export const protobufPackage = "google.protobuf";
13
13
  * `NullValue` is a singleton enumeration to represent the null value for the
14
14
  * `Value` type union.
15
15
  *
16
- * The JSON representation for `NullValue` is JSON `null`.
16
+ * The JSON representation for `NullValue` is JSON `null`.
17
17
  */
18
18
  export enum NullValue {
19
19
  /** NULL_VALUE - Null value. */
@@ -1,7 +1,7 @@
1
1
  // Code generated by protoc-gen-ts_proto. DO NOT EDIT.
2
2
  // versions:
3
3
  // protoc-gen-ts_proto v1.181.2
4
- // protoc v3.21.5
4
+ // protoc v7.34.0
5
5
  // source: notification.proto
6
6
 
7
7
  /* eslint-disable */
@@ -1,7 +1,7 @@
1
1
  // Code generated by protoc-gen-ts_proto. DO NOT EDIT.
2
2
  // versions:
3
3
  // protoc-gen-ts_proto v1.181.2
4
- // protoc v3.21.5
4
+ // protoc v7.34.0
5
5
  // source: project.proto
6
6
 
7
7
  /* eslint-disable */
@@ -1,7 +1,7 @@
1
1
  // Code generated by protoc-gen-ts_proto. DO NOT EDIT.
2
2
  // versions:
3
3
  // protoc-gen-ts_proto v1.181.2
4
- // protoc v3.21.5
4
+ // protoc v7.34.0
5
5
  // source: workflow.proto
6
6
 
7
7
  /* eslint-disable */
@@ -1,108 +0,0 @@
1
- export declare const protobufPackage = "google.protobuf";
2
- /**
3
- * A Timestamp represents a point in time independent of any time zone or local
4
- * calendar, encoded as a count of seconds and fractions of seconds at
5
- * nanosecond resolution. The count is relative to an epoch at UTC midnight on
6
- * January 1, 1970, in the proleptic Gregorian calendar which extends the
7
- * Gregorian calendar backwards to year one.
8
- *
9
- * All minutes are 60 seconds long. Leap seconds are "smeared" so that no leap
10
- * second table is needed for interpretation, using a [24-hour linear
11
- * smear](https://developers.google.com/time/smear).
12
- *
13
- * The range is from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z. By
14
- * restricting to that range, we ensure that we can convert to and from [RFC
15
- * 3339](https://www.ietf.org/rfc/rfc3339.txt) date strings.
16
- *
17
- * # Examples
18
- *
19
- * Example 1: Compute Timestamp from POSIX `time()`.
20
- *
21
- * Timestamp timestamp;
22
- * timestamp.set_seconds(time(NULL));
23
- * timestamp.set_nanos(0);
24
- *
25
- * Example 2: Compute Timestamp from POSIX `gettimeofday()`.
26
- *
27
- * struct timeval tv;
28
- * gettimeofday(&tv, NULL);
29
- *
30
- * Timestamp timestamp;
31
- * timestamp.set_seconds(tv.tv_sec);
32
- * timestamp.set_nanos(tv.tv_usec * 1000);
33
- *
34
- * Example 3: Compute Timestamp from Win32 `GetSystemTimeAsFileTime()`.
35
- *
36
- * FILETIME ft;
37
- * GetSystemTimeAsFileTime(&ft);
38
- * UINT64 ticks = (((UINT64)ft.dwHighDateTime) << 32) | ft.dwLowDateTime;
39
- *
40
- * // A Windows tick is 100 nanoseconds. Windows epoch 1601-01-01T00:00:00Z
41
- * // is 11644473600 seconds before Unix epoch 1970-01-01T00:00:00Z.
42
- * Timestamp timestamp;
43
- * timestamp.set_seconds((INT64) ((ticks / 10000000) - 11644473600LL));
44
- * timestamp.set_nanos((INT32) ((ticks % 10000000) * 100));
45
- *
46
- * Example 4: Compute Timestamp from Java `System.currentTimeMillis()`.
47
- *
48
- * long millis = System.currentTimeMillis();
49
- *
50
- * Timestamp timestamp = Timestamp.newBuilder().setSeconds(millis / 1000)
51
- * .setNanos((int) ((millis % 1000) * 1000000)).build();
52
- *
53
- * Example 5: Compute Timestamp from Java `Instant.now()`.
54
- *
55
- * Instant now = Instant.now();
56
- *
57
- * Timestamp timestamp =
58
- * Timestamp.newBuilder().setSeconds(now.getEpochSecond())
59
- * .setNanos(now.getNano()).build();
60
- *
61
- * Example 6: Compute Timestamp from current time in Python.
62
- *
63
- * timestamp = Timestamp()
64
- * timestamp.GetCurrentTime()
65
- *
66
- * # JSON Mapping
67
- *
68
- * In JSON format, the Timestamp type is encoded as a string in the
69
- * [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) format. That is, the
70
- * format is "{year}-{month}-{day}T{hour}:{min}:{sec}[.{frac_sec}]Z"
71
- * where {year} is always expressed using four digits while {month}, {day},
72
- * {hour}, {min}, and {sec} are zero-padded to two digits each. The fractional
73
- * seconds, which can go up to 9 digits (i.e. up to 1 nanosecond resolution),
74
- * are optional. The "Z" suffix indicates the timezone ("UTC"); the timezone
75
- * is required. A proto3 JSON serializer should always use UTC (as indicated by
76
- * "Z") when printing the Timestamp type and a proto3 JSON parser should be
77
- * able to accept both UTC and other timezones (as indicated by an offset).
78
- *
79
- * For example, "2017-01-15T01:30:15.01Z" encodes 15.01 seconds past
80
- * 01:30 UTC on January 15, 2017.
81
- *
82
- * In JavaScript, one can convert a Date object to this format using the
83
- * standard
84
- * [toISOString()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString)
85
- * method. In Python, a standard `datetime.datetime` object can be converted
86
- * to this format using
87
- * [`strftime`](https://docs.python.org/2/library/time.html#time.strftime) with
88
- * the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one can use
89
- * the Joda Time's [`ISODateTimeFormat.dateTime()`](
90
- * http://www.joda.org/joda-time/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime%2D%2D
91
- * ) to obtain a formatter capable of generating timestamps in this format.
92
- */
93
- export interface Timestamp {
94
- /**
95
- * Represents seconds of UTC time since Unix epoch
96
- * 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to
97
- * 9999-12-31T23:59:59Z inclusive.
98
- */
99
- seconds: string;
100
- /**
101
- * Non-negative fractions of a second at nanosecond resolution. Negative
102
- * second values with fractions must still have non-negative nanos values
103
- * that count forward in time. Must be from 0 to 999,999,999
104
- * inclusive.
105
- */
106
- nanos: number;
107
- }
108
- export declare const GOOGLE_PROTOBUF_PACKAGE_NAME = "google.protobuf";
@@ -1,11 +0,0 @@
1
- "use strict";
2
- // Code generated by protoc-gen-ts_proto. DO NOT EDIT.
3
- // versions:
4
- // protoc-gen-ts_proto v1.181.2
5
- // protoc v3.21.5
6
- // source: google/protobuf/timestamp.proto
7
- Object.defineProperty(exports, "__esModule", { value: true });
8
- exports.GOOGLE_PROTOBUF_PACKAGE_NAME = exports.protobufPackage = void 0;
9
- /* eslint-disable */
10
- exports.protobufPackage = "google.protobuf";
11
- exports.GOOGLE_PROTOBUF_PACKAGE_NAME = "google.protobuf";