@ondewo/nlu-client-typescript 4.7.0 → 4.9.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.
Files changed (39) hide show
  1. package/api/ondewo/nlu/agent_grpc_web_pb.d.ts +61 -0
  2. package/api/ondewo/nlu/agent_grpc_web_pb.js +308 -1
  3. package/api/ondewo/nlu/agent_pb.d.ts +242 -1
  4. package/api/ondewo/nlu/agent_pb.js +1984 -38
  5. package/api/ondewo/nlu/ccai_project_grpc_web_pb.d.ts +79 -0
  6. package/api/ondewo/nlu/ccai_project_grpc_web_pb.js +388 -0
  7. package/api/ondewo/nlu/ccai_project_pb.d.ts +582 -0
  8. package/api/ondewo/nlu/ccai_project_pb.js +4137 -0
  9. package/api/ondewo/nlu/common_pb.d.ts +456 -0
  10. package/api/ondewo/nlu/common_pb.js +3523 -4
  11. package/api/ondewo/nlu/context_grpc_web_pb.js +2 -0
  12. package/api/ondewo/nlu/context_pb.d.ts +41 -0
  13. package/api/ondewo/nlu/context_pb.js +328 -2
  14. package/api/ondewo/nlu/entity_type_grpc_web_pb.js +2 -0
  15. package/api/ondewo/nlu/entity_type_pb.d.ts +41 -0
  16. package/api/ondewo/nlu/entity_type_pb.js +328 -2
  17. package/api/ondewo/nlu/intent_grpc_web_pb.d.ts +3 -3
  18. package/api/ondewo/nlu/intent_grpc_web_pb.js +6 -6
  19. package/api/ondewo/nlu/intent_pb.d.ts +120 -0
  20. package/api/ondewo/nlu/intent_pb.js +1058 -86
  21. package/api/ondewo/nlu/operation_metadata_pb.d.ts +21 -0
  22. package/api/ondewo/nlu/operation_metadata_pb.js +165 -2
  23. package/api/ondewo/nlu/project_role_grpc_web_pb.js +3 -1
  24. package/api/ondewo/nlu/project_role_pb.d.ts +22 -1
  25. package/api/ondewo/nlu/project_role_pb.js +167 -3
  26. package/api/ondewo/nlu/session_grpc_web_pb.d.ts +109 -0
  27. package/api/ondewo/nlu/session_grpc_web_pb.js +551 -0
  28. package/api/ondewo/nlu/session_pb.d.ts +624 -0
  29. package/api/ondewo/nlu/session_pb.js +10278 -5168
  30. package/api/ondewo/nlu/user_grpc_web_pb.d.ts +85 -0
  31. package/api/ondewo/nlu/user_grpc_web_pb.js +431 -0
  32. package/api/ondewo/nlu/user_pb.d.ts +284 -0
  33. package/api/ondewo/nlu/user_pb.js +3418 -1024
  34. package/api/ondewo/nlu/webhook_grpc_web_pb.d.ts +37 -0
  35. package/api/ondewo/nlu/webhook_grpc_web_pb.js +191 -2
  36. package/api/ondewo/nlu/webhook_pb.d.ts +188 -5
  37. package/api/ondewo/nlu/webhook_pb.js +1530 -34
  38. package/package.json +1 -1
  39. package/public-api.d.ts +27 -25
@@ -1,5 +1,7 @@
1
1
  import * as jspb from 'google-protobuf'
2
2
 
3
+ import * as google_protobuf_field_mask_pb from 'google-protobuf/google/protobuf/field_mask_pb';
4
+ import * as google_protobuf_timestamp_pb from 'google-protobuf/google/protobuf/timestamp_pb';
3
5
 
4
6
 
5
7
  export class StatResponse extends jspb.Message {
@@ -20,7 +22,461 @@ export namespace StatResponse {
20
22
  }
21
23
  }
22
24
 
25
+ export class Comment extends jspb.Message {
26
+ getName(): string;
27
+ setName(value: string): Comment;
28
+
29
+ getText(): string;
30
+ setText(value: string): Comment;
31
+
32
+ getUserId(): string;
33
+ setUserId(value: string): Comment;
34
+
35
+ getCommentAboutName(): string;
36
+ setCommentAboutName(value: string): Comment;
37
+
38
+ getParentCommentName(): string;
39
+ setParentCommentName(value: string): Comment;
40
+
41
+ getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
42
+ setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): Comment;
43
+ hasCreatedAt(): boolean;
44
+ clearCreatedAt(): Comment;
45
+
46
+ getModifiedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
47
+ setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp): Comment;
48
+ hasModifiedAt(): boolean;
49
+ clearModifiedAt(): Comment;
50
+
51
+ getCreatedBy(): string;
52
+ setCreatedBy(value: string): Comment;
53
+
54
+ getModifiedBy(): string;
55
+ setModifiedBy(value: string): Comment;
56
+
57
+ serializeBinary(): Uint8Array;
58
+ toObject(includeInstance?: boolean): Comment.AsObject;
59
+ static toObject(includeInstance: boolean, msg: Comment): Comment.AsObject;
60
+ static serializeBinaryToWriter(message: Comment, writer: jspb.BinaryWriter): void;
61
+ static deserializeBinary(bytes: Uint8Array): Comment;
62
+ static deserializeBinaryFromReader(message: Comment, reader: jspb.BinaryReader): Comment;
63
+ }
64
+
65
+ export namespace Comment {
66
+ export type AsObject = {
67
+ name: string,
68
+ text: string,
69
+ userId: string,
70
+ commentAboutName: string,
71
+ parentCommentName: string,
72
+ createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
73
+ modifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
74
+ createdBy: string,
75
+ modifiedBy: string,
76
+ }
77
+ }
78
+
79
+ export class Notification extends jspb.Message {
80
+ getName(): string;
81
+ setName(value: string): Notification;
82
+
83
+ getUserName(): string;
84
+ setUserName(value: string): Notification;
85
+
86
+ getTitle(): string;
87
+ setTitle(value: string): Notification;
88
+
89
+ getDescriptionShort(): string;
90
+ setDescriptionShort(value: string): Notification;
91
+
92
+ getDescriptionLong(): string;
93
+ setDescriptionLong(value: string): Notification;
94
+
95
+ getNotificationFlaggedStatus(): NotificationFlaggedStatus;
96
+ setNotificationFlaggedStatus(value: NotificationFlaggedStatus): Notification;
97
+
98
+ getNotificationFlaggedTimestamp(): google_protobuf_timestamp_pb.Timestamp | undefined;
99
+ setNotificationFlaggedTimestamp(value?: google_protobuf_timestamp_pb.Timestamp): Notification;
100
+ hasNotificationFlaggedTimestamp(): boolean;
101
+ clearNotificationFlaggedTimestamp(): Notification;
102
+
103
+ getNotificationReadStatus(): NotificationReadStatus;
104
+ setNotificationReadStatus(value: NotificationReadStatus): Notification;
105
+
106
+ getNotificationReadTimestamp(): google_protobuf_timestamp_pb.Timestamp | undefined;
107
+ setNotificationReadTimestamp(value?: google_protobuf_timestamp_pb.Timestamp): Notification;
108
+ hasNotificationReadTimestamp(): boolean;
109
+ clearNotificationReadTimestamp(): Notification;
110
+
111
+ getNotificationOrigin(): NotificationOrigin;
112
+ setNotificationOrigin(value: NotificationOrigin): Notification;
113
+
114
+ getOriginName(): string;
115
+ setOriginName(value: string): Notification;
116
+
117
+ getOriginLanguage(): string;
118
+ setOriginLanguage(value: string): Notification;
119
+
120
+ getNotificationType(): NotificationType;
121
+ setNotificationType(value: NotificationType): Notification;
122
+
123
+ getNotificationVisibility(): NotificationVisibility;
124
+ setNotificationVisibility(value: NotificationVisibility): Notification;
125
+
126
+ getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
127
+ setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): Notification;
128
+ hasCreatedAt(): boolean;
129
+ clearCreatedAt(): Notification;
130
+
131
+ getModifiedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
132
+ setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp): Notification;
133
+ hasModifiedAt(): boolean;
134
+ clearModifiedAt(): Notification;
135
+
136
+ getCreatedBy(): string;
137
+ setCreatedBy(value: string): Notification;
138
+
139
+ getModifiedBy(): string;
140
+ setModifiedBy(value: string): Notification;
141
+
142
+ serializeBinary(): Uint8Array;
143
+ toObject(includeInstance?: boolean): Notification.AsObject;
144
+ static toObject(includeInstance: boolean, msg: Notification): Notification.AsObject;
145
+ static serializeBinaryToWriter(message: Notification, writer: jspb.BinaryWriter): void;
146
+ static deserializeBinary(bytes: Uint8Array): Notification;
147
+ static deserializeBinaryFromReader(message: Notification, reader: jspb.BinaryReader): Notification;
148
+ }
149
+
150
+ export namespace Notification {
151
+ export type AsObject = {
152
+ name: string,
153
+ userName: string,
154
+ title: string,
155
+ descriptionShort: string,
156
+ descriptionLong: string,
157
+ notificationFlaggedStatus: NotificationFlaggedStatus,
158
+ notificationFlaggedTimestamp?: google_protobuf_timestamp_pb.Timestamp.AsObject,
159
+ notificationReadStatus: NotificationReadStatus,
160
+ notificationReadTimestamp?: google_protobuf_timestamp_pb.Timestamp.AsObject,
161
+ notificationOrigin: NotificationOrigin,
162
+ originName: string,
163
+ originLanguage: string,
164
+ notificationType: NotificationType,
165
+ notificationVisibility: NotificationVisibility,
166
+ createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
167
+ modifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
168
+ createdBy: string,
169
+ modifiedBy: string,
170
+ }
171
+ }
172
+
173
+ export class AddNotificationsRequest extends jspb.Message {
174
+ getNotificationList(): Array<Notification>;
175
+ setNotificationList(value: Array<Notification>): AddNotificationsRequest;
176
+ clearNotificationList(): AddNotificationsRequest;
177
+ addNotification(value?: Notification, index?: number): Notification;
178
+
179
+ serializeBinary(): Uint8Array;
180
+ toObject(includeInstance?: boolean): AddNotificationsRequest.AsObject;
181
+ static toObject(includeInstance: boolean, msg: AddNotificationsRequest): AddNotificationsRequest.AsObject;
182
+ static serializeBinaryToWriter(message: AddNotificationsRequest, writer: jspb.BinaryWriter): void;
183
+ static deserializeBinary(bytes: Uint8Array): AddNotificationsRequest;
184
+ static deserializeBinaryFromReader(message: AddNotificationsRequest, reader: jspb.BinaryReader): AddNotificationsRequest;
185
+ }
186
+
187
+ export namespace AddNotificationsRequest {
188
+ export type AsObject = {
189
+ notificationList: Array<Notification.AsObject>,
190
+ }
191
+ }
192
+
193
+ export class AddNotificationsResponse extends jspb.Message {
194
+ getNotificationList(): Array<Notification>;
195
+ setNotificationList(value: Array<Notification>): AddNotificationsResponse;
196
+ clearNotificationList(): AddNotificationsResponse;
197
+ addNotification(value?: Notification, index?: number): Notification;
198
+
199
+ serializeBinary(): Uint8Array;
200
+ toObject(includeInstance?: boolean): AddNotificationsResponse.AsObject;
201
+ static toObject(includeInstance: boolean, msg: AddNotificationsResponse): AddNotificationsResponse.AsObject;
202
+ static serializeBinaryToWriter(message: AddNotificationsResponse, writer: jspb.BinaryWriter): void;
203
+ static deserializeBinary(bytes: Uint8Array): AddNotificationsResponse;
204
+ static deserializeBinaryFromReader(message: AddNotificationsResponse, reader: jspb.BinaryReader): AddNotificationsResponse;
205
+ }
206
+
207
+ export namespace AddNotificationsResponse {
208
+ export type AsObject = {
209
+ notificationList: Array<Notification.AsObject>,
210
+ }
211
+ }
212
+
213
+ export class NotificationFilter extends jspb.Message {
214
+ getLanguageCodesList(): Array<string>;
215
+ setLanguageCodesList(value: Array<string>): NotificationFilter;
216
+ clearLanguageCodesList(): NotificationFilter;
217
+ addLanguageCodes(value: string, index?: number): NotificationFilter;
218
+
219
+ getNotificationOriginsList(): Array<NotificationOrigin>;
220
+ setNotificationOriginsList(value: Array<NotificationOrigin>): NotificationFilter;
221
+ clearNotificationOriginsList(): NotificationFilter;
222
+ addNotificationOrigins(value: NotificationOrigin, index?: number): NotificationFilter;
223
+
224
+ getNotificationVisibilitiesList(): Array<NotificationVisibility>;
225
+ setNotificationVisibilitiesList(value: Array<NotificationVisibility>): NotificationFilter;
226
+ clearNotificationVisibilitiesList(): NotificationFilter;
227
+ addNotificationVisibilities(value: NotificationVisibility, index?: number): NotificationFilter;
228
+
229
+ getNotificationFlaggedStatusList(): Array<NotificationFlaggedStatus>;
230
+ setNotificationFlaggedStatusList(value: Array<NotificationFlaggedStatus>): NotificationFilter;
231
+ clearNotificationFlaggedStatusList(): NotificationFilter;
232
+ addNotificationFlaggedStatus(value: NotificationFlaggedStatus, index?: number): NotificationFilter;
233
+
234
+ getNotificationReadStatusList(): Array<NotificationReadStatus>;
235
+ setNotificationReadStatusList(value: Array<NotificationReadStatus>): NotificationFilter;
236
+ clearNotificationReadStatusList(): NotificationFilter;
237
+ addNotificationReadStatus(value: NotificationReadStatus, index?: number): NotificationFilter;
238
+
239
+ getEarliest(): google_protobuf_timestamp_pb.Timestamp | undefined;
240
+ setEarliest(value?: google_protobuf_timestamp_pb.Timestamp): NotificationFilter;
241
+ hasEarliest(): boolean;
242
+ clearEarliest(): NotificationFilter;
243
+
244
+ getLatest(): google_protobuf_timestamp_pb.Timestamp | undefined;
245
+ setLatest(value?: google_protobuf_timestamp_pb.Timestamp): NotificationFilter;
246
+ hasLatest(): boolean;
247
+ clearLatest(): NotificationFilter;
248
+
249
+ getUserNamesList(): Array<string>;
250
+ setUserNamesList(value: Array<string>): NotificationFilter;
251
+ clearUserNamesList(): NotificationFilter;
252
+ addUserNames(value: string, index?: number): NotificationFilter;
253
+
254
+ getOriginNamesList(): Array<string>;
255
+ setOriginNamesList(value: Array<string>): NotificationFilter;
256
+ clearOriginNamesList(): NotificationFilter;
257
+ addOriginNames(value: string, index?: number): NotificationFilter;
258
+
259
+ serializeBinary(): Uint8Array;
260
+ toObject(includeInstance?: boolean): NotificationFilter.AsObject;
261
+ static toObject(includeInstance: boolean, msg: NotificationFilter): NotificationFilter.AsObject;
262
+ static serializeBinaryToWriter(message: NotificationFilter, writer: jspb.BinaryWriter): void;
263
+ static deserializeBinary(bytes: Uint8Array): NotificationFilter;
264
+ static deserializeBinaryFromReader(message: NotificationFilter, reader: jspb.BinaryReader): NotificationFilter;
265
+ }
266
+
267
+ export namespace NotificationFilter {
268
+ export type AsObject = {
269
+ languageCodesList: Array<string>,
270
+ notificationOriginsList: Array<NotificationOrigin>,
271
+ notificationVisibilitiesList: Array<NotificationVisibility>,
272
+ notificationFlaggedStatusList: Array<NotificationFlaggedStatus>,
273
+ notificationReadStatusList: Array<NotificationReadStatus>,
274
+ earliest?: google_protobuf_timestamp_pb.Timestamp.AsObject,
275
+ latest?: google_protobuf_timestamp_pb.Timestamp.AsObject,
276
+ userNamesList: Array<string>,
277
+ originNamesList: Array<string>,
278
+ }
279
+ }
280
+
281
+ export class ListNotificationsRequest extends jspb.Message {
282
+ getNotificationFilter(): NotificationFilter | undefined;
283
+ setNotificationFilter(value?: NotificationFilter): ListNotificationsRequest;
284
+ hasNotificationFilter(): boolean;
285
+ clearNotificationFilter(): ListNotificationsRequest;
286
+
287
+ getPageToken(): string;
288
+ setPageToken(value: string): ListNotificationsRequest;
289
+
290
+ getFieldMask(): google_protobuf_field_mask_pb.FieldMask | undefined;
291
+ setFieldMask(value?: google_protobuf_field_mask_pb.FieldMask): ListNotificationsRequest;
292
+ hasFieldMask(): boolean;
293
+ clearFieldMask(): ListNotificationsRequest;
294
+
295
+ serializeBinary(): Uint8Array;
296
+ toObject(includeInstance?: boolean): ListNotificationsRequest.AsObject;
297
+ static toObject(includeInstance: boolean, msg: ListNotificationsRequest): ListNotificationsRequest.AsObject;
298
+ static serializeBinaryToWriter(message: ListNotificationsRequest, writer: jspb.BinaryWriter): void;
299
+ static deserializeBinary(bytes: Uint8Array): ListNotificationsRequest;
300
+ static deserializeBinaryFromReader(message: ListNotificationsRequest, reader: jspb.BinaryReader): ListNotificationsRequest;
301
+ }
302
+
303
+ export namespace ListNotificationsRequest {
304
+ export type AsObject = {
305
+ notificationFilter?: NotificationFilter.AsObject,
306
+ pageToken: string,
307
+ fieldMask?: google_protobuf_field_mask_pb.FieldMask.AsObject,
308
+ }
309
+ }
310
+
311
+ export class ListNotificationsResponse extends jspb.Message {
312
+ getNotificationList(): Array<Notification>;
313
+ setNotificationList(value: Array<Notification>): ListNotificationsResponse;
314
+ clearNotificationList(): ListNotificationsResponse;
315
+ addNotification(value?: Notification, index?: number): Notification;
316
+
317
+ serializeBinary(): Uint8Array;
318
+ toObject(includeInstance?: boolean): ListNotificationsResponse.AsObject;
319
+ static toObject(includeInstance: boolean, msg: ListNotificationsResponse): ListNotificationsResponse.AsObject;
320
+ static serializeBinaryToWriter(message: ListNotificationsResponse, writer: jspb.BinaryWriter): void;
321
+ static deserializeBinary(bytes: Uint8Array): ListNotificationsResponse;
322
+ static deserializeBinaryFromReader(message: ListNotificationsResponse, reader: jspb.BinaryReader): ListNotificationsResponse;
323
+ }
324
+
325
+ export namespace ListNotificationsResponse {
326
+ export type AsObject = {
327
+ notificationList: Array<Notification.AsObject>,
328
+ }
329
+ }
330
+
331
+ export class SetNotificationsFlaggedStatusRequest extends jspb.Message {
332
+ getNotificationNameList(): Array<string>;
333
+ setNotificationNameList(value: Array<string>): SetNotificationsFlaggedStatusRequest;
334
+ clearNotificationNameList(): SetNotificationsFlaggedStatusRequest;
335
+ addNotificationName(value: string, index?: number): SetNotificationsFlaggedStatusRequest;
336
+
337
+ getFlaggedList(): Array<boolean>;
338
+ setFlaggedList(value: Array<boolean>): SetNotificationsFlaggedStatusRequest;
339
+ clearFlaggedList(): SetNotificationsFlaggedStatusRequest;
340
+ addFlagged(value: boolean, index?: number): SetNotificationsFlaggedStatusRequest;
341
+
342
+ serializeBinary(): Uint8Array;
343
+ toObject(includeInstance?: boolean): SetNotificationsFlaggedStatusRequest.AsObject;
344
+ static toObject(includeInstance: boolean, msg: SetNotificationsFlaggedStatusRequest): SetNotificationsFlaggedStatusRequest.AsObject;
345
+ static serializeBinaryToWriter(message: SetNotificationsFlaggedStatusRequest, writer: jspb.BinaryWriter): void;
346
+ static deserializeBinary(bytes: Uint8Array): SetNotificationsFlaggedStatusRequest;
347
+ static deserializeBinaryFromReader(message: SetNotificationsFlaggedStatusRequest, reader: jspb.BinaryReader): SetNotificationsFlaggedStatusRequest;
348
+ }
349
+
350
+ export namespace SetNotificationsFlaggedStatusRequest {
351
+ export type AsObject = {
352
+ notificationNameList: Array<string>,
353
+ flaggedList: Array<boolean>,
354
+ }
355
+ }
356
+
357
+ export class SetNotificationsReadStatusRequest extends jspb.Message {
358
+ getNotificationNameList(): Array<string>;
359
+ setNotificationNameList(value: Array<string>): SetNotificationsReadStatusRequest;
360
+ clearNotificationNameList(): SetNotificationsReadStatusRequest;
361
+ addNotificationName(value: string, index?: number): SetNotificationsReadStatusRequest;
362
+
363
+ getFlaggedList(): Array<boolean>;
364
+ setFlaggedList(value: Array<boolean>): SetNotificationsReadStatusRequest;
365
+ clearFlaggedList(): SetNotificationsReadStatusRequest;
366
+ addFlagged(value: boolean, index?: number): SetNotificationsReadStatusRequest;
367
+
368
+ serializeBinary(): Uint8Array;
369
+ toObject(includeInstance?: boolean): SetNotificationsReadStatusRequest.AsObject;
370
+ static toObject(includeInstance: boolean, msg: SetNotificationsReadStatusRequest): SetNotificationsReadStatusRequest.AsObject;
371
+ static serializeBinaryToWriter(message: SetNotificationsReadStatusRequest, writer: jspb.BinaryWriter): void;
372
+ static deserializeBinary(bytes: Uint8Array): SetNotificationsReadStatusRequest;
373
+ static deserializeBinaryFromReader(message: SetNotificationsReadStatusRequest, reader: jspb.BinaryReader): SetNotificationsReadStatusRequest;
374
+ }
375
+
376
+ export namespace SetNotificationsReadStatusRequest {
377
+ export type AsObject = {
378
+ notificationNameList: Array<string>,
379
+ flaggedList: Array<boolean>,
380
+ }
381
+ }
382
+
383
+ export class KeyValuePair extends jspb.Message {
384
+ getKey(): string;
385
+ setKey(value: string): KeyValuePair;
386
+
387
+ getIntValue(): number;
388
+ setIntValue(value: number): KeyValuePair;
389
+
390
+ getFloatValue(): number;
391
+ setFloatValue(value: number): KeyValuePair;
392
+
393
+ getDoubleValue(): number;
394
+ setDoubleValue(value: number): KeyValuePair;
395
+
396
+ getStringValue(): string;
397
+ setStringValue(value: string): KeyValuePair;
398
+
399
+ getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
400
+ setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): KeyValuePair;
401
+ hasCreatedAt(): boolean;
402
+ clearCreatedAt(): KeyValuePair;
403
+
404
+ getValueCase(): KeyValuePair.ValueCase;
405
+
406
+ serializeBinary(): Uint8Array;
407
+ toObject(includeInstance?: boolean): KeyValuePair.AsObject;
408
+ static toObject(includeInstance: boolean, msg: KeyValuePair): KeyValuePair.AsObject;
409
+ static serializeBinaryToWriter(message: KeyValuePair, writer: jspb.BinaryWriter): void;
410
+ static deserializeBinary(bytes: Uint8Array): KeyValuePair;
411
+ static deserializeBinaryFromReader(message: KeyValuePair, reader: jspb.BinaryReader): KeyValuePair;
412
+ }
413
+
414
+ export namespace KeyValuePair {
415
+ export type AsObject = {
416
+ key: string,
417
+ intValue: number,
418
+ floatValue: number,
419
+ doubleValue: number,
420
+ stringValue: string,
421
+ createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
422
+ }
423
+
424
+ export enum ValueCase {
425
+ VALUE_NOT_SET = 0,
426
+ INT_VALUE = 2,
427
+ FLOAT_VALUE = 3,
428
+ DOUBLE_VALUE = 4,
429
+ STRING_VALUE = 5,
430
+ CREATED_AT = 6,
431
+ }
432
+ }
433
+
23
434
  export enum SortingMode {
24
435
  ASCENDING = 0,
25
436
  DESCENDING = 1,
26
437
  }
438
+ export enum NotificationFlaggedStatus {
439
+ NOTIFICATION_FLAGGED_STATUS_UNSPECIFIED = 0,
440
+ NOTIFICATION_FLAGGED_STATUS_FLAGGED = 1,
441
+ NOTIFICATION_FLAGGED_STATUS_UNFLAGGED = 2,
442
+ }
443
+ export enum NotificationReadStatus {
444
+ NOTIFICATION_READ_STATUS_UNSPECIFIED = 0,
445
+ NOTIFICATION_READ_STATUS_READ = 1,
446
+ NOTIFICATION_READ_STATUS_UNREAD = 2,
447
+ }
448
+ export enum NotificationVisibility {
449
+ NOTIFICATION_VISIBILITY_UNSPECIFIED = 0,
450
+ NOTIFICATION_VISIBILITY_USER = 1,
451
+ NOTIFICATION_VISIBILITY_PROJECT = 2,
452
+ NOTIFICATION_VISIBILITY_PROJECT_OWNER = 3,
453
+ NOTIFICATION_VISIBILITY_PROJECT_ADMIN = 4,
454
+ NOTIFICATION_VISIBILITY_PROJECT_DEVELOPER = 5,
455
+ NOTIFICATION_VISIBILITY_PROJECT_USER = 6,
456
+ NOTIFICATION_VISIBILITY_PROJECT_EXECUTOR = 7,
457
+ NOTIFICATION_VISIBILITY_PROJECT_INACTIVE = 8,
458
+ NOTIFICATION_VISIBILITY_SERVER_ADMIN = 9,
459
+ NOTIFICATION_VISIBILITY_SERVER_MANAGER = 10,
460
+ NOTIFICATION_VISIBILITY_SERVER_USER = 11,
461
+ NOTIFICATION_VISIBILITY_SERVER_INACTIVE = 12,
462
+ }
463
+ export enum NotificationType {
464
+ NOTIFICATION_TYPE_UNSPECIFIED = 0,
465
+ NOTIFICATION_TYPE_DEBUG = 1,
466
+ NOTIFICATION_TYPE_WARNING = 2,
467
+ NOTIFICATION_TYPE_INFO = 3,
468
+ NOTIFICATION_TYPE_ERROR = 4,
469
+ NOTIFICATION_TYPE_NEWS = 5,
470
+ }
471
+ export enum NotificationOrigin {
472
+ NOTIFICATION_ORIGIN_UNSPECIFIED = 0,
473
+ NOTIFICATION_ORIGIN_ONDEWO_AIM = 1,
474
+ NOTIFICATION_ORIGIN_ONDEWO_BPI = 2,
475
+ NOTIFICATION_ORIGIN_ONDEWO_CSI = 3,
476
+ NOTIFICATION_ORIGIN_ONDEWO_NLU = 4,
477
+ NOTIFICATION_ORIGIN_ONDEWO_S2T = 5,
478
+ NOTIFICATION_ORIGIN_ONDEWO_SIP = 6,
479
+ NOTIFICATION_ORIGIN_ONDEWO_T2S = 7,
480
+ NOTIFICATION_ORIGIN_ONDEWO_VTSI = 8,
481
+ NOTIFICATION_ORIGIN_ONDEWO_VTSI_RABBITMQ = 9,
482
+ }