@kudo.io/artworker-grpc-client-ts 3.0.26 → 3.0.28
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/lib/notification/v2/notification_pb.d.ts +84 -0
- package/lib/notification/v2/notification_pb.js +43 -18
- package/lib/notification/v2/notification_pb.js.map +1 -1
- package/lib/notification/v2/notification_service_pb.d.ts +17 -1
- package/lib/notification/v2/notification_service_pb.js +1 -1
- package/lib/notification/v2/notification_service_pb.js.map +1 -1
- package/package.json +1 -1
- package/src/notification/v2/notification_pb.ts +119 -18
- package/src/notification/v2/notification_service_pb.ts +18 -2
|
@@ -360,6 +360,60 @@ export type GetEmailSendsResponse = Message<"notification.v2.GetEmailSendsRespon
|
|
|
360
360
|
* Use `create(GetEmailSendsResponseSchema)` to create a new message.
|
|
361
361
|
*/
|
|
362
362
|
export declare const GetEmailSendsResponseSchema: GenMessage<GetEmailSendsResponse>;
|
|
363
|
+
/**
|
|
364
|
+
* @generated from message notification.v2.BatchGetEmailSendsRequest
|
|
365
|
+
*/
|
|
366
|
+
export type BatchGetEmailSendsRequest = Message<"notification.v2.BatchGetEmailSendsRequest"> & {
|
|
367
|
+
/**
|
|
368
|
+
* required, non-empty; max 100 recommended
|
|
369
|
+
*
|
|
370
|
+
* @generated from field: repeated string job_ids = 1;
|
|
371
|
+
*/
|
|
372
|
+
jobIds: string[];
|
|
373
|
+
/**
|
|
374
|
+
* when true, at most the most recent send per job (faster)
|
|
375
|
+
*
|
|
376
|
+
* @generated from field: bool latest_only = 2;
|
|
377
|
+
*/
|
|
378
|
+
latestOnly: boolean;
|
|
379
|
+
};
|
|
380
|
+
/**
|
|
381
|
+
* Describes the message notification.v2.BatchGetEmailSendsRequest.
|
|
382
|
+
* Use `create(BatchGetEmailSendsRequestSchema)` to create a new message.
|
|
383
|
+
*/
|
|
384
|
+
export declare const BatchGetEmailSendsRequestSchema: GenMessage<BatchGetEmailSendsRequest>;
|
|
385
|
+
/**
|
|
386
|
+
* @generated from message notification.v2.JobEmailSends
|
|
387
|
+
*/
|
|
388
|
+
export type JobEmailSends = Message<"notification.v2.JobEmailSends"> & {
|
|
389
|
+
/**
|
|
390
|
+
* @generated from field: string job_id = 1;
|
|
391
|
+
*/
|
|
392
|
+
jobId: string;
|
|
393
|
+
/**
|
|
394
|
+
* @generated from field: repeated notification.v2.EmailSend email_sends = 2;
|
|
395
|
+
*/
|
|
396
|
+
emailSends: EmailSend[];
|
|
397
|
+
};
|
|
398
|
+
/**
|
|
399
|
+
* Describes the message notification.v2.JobEmailSends.
|
|
400
|
+
* Use `create(JobEmailSendsSchema)` to create a new message.
|
|
401
|
+
*/
|
|
402
|
+
export declare const JobEmailSendsSchema: GenMessage<JobEmailSends>;
|
|
403
|
+
/**
|
|
404
|
+
* @generated from message notification.v2.BatchGetEmailSendsResponse
|
|
405
|
+
*/
|
|
406
|
+
export type BatchGetEmailSendsResponse = Message<"notification.v2.BatchGetEmailSendsResponse"> & {
|
|
407
|
+
/**
|
|
408
|
+
* @generated from field: repeated notification.v2.JobEmailSends job_sends = 1;
|
|
409
|
+
*/
|
|
410
|
+
jobSends: JobEmailSends[];
|
|
411
|
+
};
|
|
412
|
+
/**
|
|
413
|
+
* Describes the message notification.v2.BatchGetEmailSendsResponse.
|
|
414
|
+
* Use `create(BatchGetEmailSendsResponseSchema)` to create a new message.
|
|
415
|
+
*/
|
|
416
|
+
export declare const BatchGetEmailSendsResponseSchema: GenMessage<BatchGetEmailSendsResponse>;
|
|
363
417
|
/**
|
|
364
418
|
* @generated from message notification.v2.SendConsolidatedNowRequest
|
|
365
419
|
*/
|
|
@@ -614,6 +668,36 @@ export type TriggerChasesResponse = Message<"notification.v2.TriggerChasesRespon
|
|
|
614
668
|
* Use `create(TriggerChasesResponseSchema)` to create a new message.
|
|
615
669
|
*/
|
|
616
670
|
export declare const TriggerChasesResponseSchema: GenMessage<TriggerChasesResponse>;
|
|
671
|
+
/**
|
|
672
|
+
* @generated from message notification.v2.RetryFailedEmailRequest
|
|
673
|
+
*/
|
|
674
|
+
export type RetryFailedEmailRequest = Message<"notification.v2.RetryFailedEmailRequest"> & {
|
|
675
|
+
/**
|
|
676
|
+
* @generated from field: string email_send_id = 1;
|
|
677
|
+
*/
|
|
678
|
+
emailSendId: string;
|
|
679
|
+
};
|
|
680
|
+
/**
|
|
681
|
+
* Describes the message notification.v2.RetryFailedEmailRequest.
|
|
682
|
+
* Use `create(RetryFailedEmailRequestSchema)` to create a new message.
|
|
683
|
+
*/
|
|
684
|
+
export declare const RetryFailedEmailRequestSchema: GenMessage<RetryFailedEmailRequest>;
|
|
685
|
+
/**
|
|
686
|
+
* @generated from message notification.v2.RetryFailedEmailResponse
|
|
687
|
+
*/
|
|
688
|
+
export type RetryFailedEmailResponse = Message<"notification.v2.RetryFailedEmailResponse"> & {
|
|
689
|
+
/**
|
|
690
|
+
* the new send row created for the retry attempt
|
|
691
|
+
*
|
|
692
|
+
* @generated from field: string email_send_id = 1;
|
|
693
|
+
*/
|
|
694
|
+
emailSendId: string;
|
|
695
|
+
};
|
|
696
|
+
/**
|
|
697
|
+
* Describes the message notification.v2.RetryFailedEmailResponse.
|
|
698
|
+
* Use `create(RetryFailedEmailResponseSchema)` to create a new message.
|
|
699
|
+
*/
|
|
700
|
+
export declare const RetryFailedEmailResponseSchema: GenMessage<RetryFailedEmailResponse>;
|
|
617
701
|
/**
|
|
618
702
|
* @generated from message notification.v2.GetJobGroupEmailHistoryRequest
|
|
619
703
|
*/
|
|
@@ -6,7 +6,7 @@ import { file_google_protobuf_timestamp } from "@bufbuild/protobuf/wkt";
|
|
|
6
6
|
/**
|
|
7
7
|
* Describes the file notification/v2/notification.proto.
|
|
8
8
|
*/
|
|
9
|
-
export const file_notification_v2_notification = /*@__PURE__*/ fileDesc("CiJub3RpZmljYXRpb24vdjIvbm90aWZpY2F0aW9uLnByb3RvEg9ub3RpZmljYXRpb24udjIi6QMKDE5vdGlmaWNhdGlvbhIKCgJpZBgBIAEoCRIUCgxhcnR3b3JrZXJfaWQYAiABKAMSDgoGam9iX2lkGAMgASgJEhAKCGpvYl90eXBlGAQgASgJEhIKCmV2ZW50X3R5cGUYBSABKAkSFwoPcmVjaXBpZW50X2VtYWlsGAYgASgJEhYKDnJlY2lwaWVudF9uYW1lGAcgASgJEjMKBnN0YXR1cxgIIAEoDjIjLm5vdGlmaWNhdGlvbi52Mi5Ob3RpZmljYXRpb25TdGF0dXMSFQoNY2hhc2VfZW5hYmxlZBgJIAEoCBIaChJjaGFzZV9pbnRlcnZhbF9taW4YCiABKAUSEgoKbWF4X2NoYXNlcxgLIAEoBRITCgtjaGFzZXNfc2VudBgMIAEoBRI0ChBuZXh0X2NoYXNlX2FmdGVyGA0gASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcBIuCgpjcmVhdGVkX2F0GA4gASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcBIuCgp1cGRhdGVkX2F0GA8gASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcBIpCgVzZW5kcxgQIAMoCzIaLm5vdGlmaWNhdGlvbi52Mi5FbWFpbFNlbmQi5gQKCUVtYWlsU2VuZBIKCgJpZBgBIAEoCRIXCg9ub3RpZmljYXRpb25faWQYAiABKAkSEQoJZW1haWxfcmVmGAMgASgJEhUKDXRlbXBsYXRlX25hbWUYBCABKAkSEgoKZXZlbnRfdHlwZRgFIAEoCRIXCg9yZWNpcGllbnRfZW1haWwYBiABKAkSFgoOcmVjaXBpZW50X25hbWUYByABKAkSFAoMc2VuZGVyX2VtYWlsGAggASgJEhQKDGFydHdvcmtlcl9pZBgJIAEoAxIOCgZqb2JfaWQYCiABKAkSEAoIam9iX3R5cGUYCyABKAkSEAoIaXNfY2hhc2UYDCABKAgSFgoOY2hhc2Vfc2VxdWVuY2UYDSABKAUSLwoGc3RhdHVzGA4gASgOMh8ubm90aWZpY2F0aW9uLnYyLkRlbGl2ZXJ5U3RhdHVzEisKB3NlbnRfYXQYDyABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wEjAKDGRlbGl2ZXJlZF9hdBgQIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXASLQoJb3BlbmVkX2F0GBEgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcBItCglmYWlsZWRfYXQYEiABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wEhYKDmZhaWx1cmVfcmVhc29uGBMgASgJEi4KCmNyZWF0ZWRfYXQYFCABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wEhcKD2lzX2NvbnNvbGlkYXRlZBgVIAEoCCI+ChNTZW5kUmVtaW5kZXJSZXF1ZXN0EhcKD25vdGlmaWNhdGlvbl9pZBgCIAEoCRIOCgZqb2JfaWQYAyABKAkiIgoUU2VuZFJlbWluZGVyUmVzcG9uc2USCgoCb2sYASABKAgiRAoXU2VuZEJ1bGtSZW1pbmRlclJlcXVlc3QSGAoQbm90aWZpY2F0aW9uX2lkcxgCIAMoCRIPCgdqb2JfaWRzGAMgAygJIqgBChhTZW5kQnVsa1JlbWluZGVyUmVzcG9uc2USCgoCb2sYASABKAgSPwoGZXJyb3JzGAIgAygLMi8ubm90aWZpY2F0aW9uLnYyLlNlbmRCdWxrUmVtaW5kZXJSZXNwb25zZS5FcnJvcho/
|
|
9
|
+
export const file_notification_v2_notification = /*@__PURE__*/ fileDesc("CiJub3RpZmljYXRpb24vdjIvbm90aWZpY2F0aW9uLnByb3RvEg9ub3RpZmljYXRpb24udjIi6QMKDE5vdGlmaWNhdGlvbhIKCgJpZBgBIAEoCRIUCgxhcnR3b3JrZXJfaWQYAiABKAMSDgoGam9iX2lkGAMgASgJEhAKCGpvYl90eXBlGAQgASgJEhIKCmV2ZW50X3R5cGUYBSABKAkSFwoPcmVjaXBpZW50X2VtYWlsGAYgASgJEhYKDnJlY2lwaWVudF9uYW1lGAcgASgJEjMKBnN0YXR1cxgIIAEoDjIjLm5vdGlmaWNhdGlvbi52Mi5Ob3RpZmljYXRpb25TdGF0dXMSFQoNY2hhc2VfZW5hYmxlZBgJIAEoCBIaChJjaGFzZV9pbnRlcnZhbF9taW4YCiABKAUSEgoKbWF4X2NoYXNlcxgLIAEoBRITCgtjaGFzZXNfc2VudBgMIAEoBRI0ChBuZXh0X2NoYXNlX2FmdGVyGA0gASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcBIuCgpjcmVhdGVkX2F0GA4gASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcBIuCgp1cGRhdGVkX2F0GA8gASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcBIpCgVzZW5kcxgQIAMoCzIaLm5vdGlmaWNhdGlvbi52Mi5FbWFpbFNlbmQi5gQKCUVtYWlsU2VuZBIKCgJpZBgBIAEoCRIXCg9ub3RpZmljYXRpb25faWQYAiABKAkSEQoJZW1haWxfcmVmGAMgASgJEhUKDXRlbXBsYXRlX25hbWUYBCABKAkSEgoKZXZlbnRfdHlwZRgFIAEoCRIXCg9yZWNpcGllbnRfZW1haWwYBiABKAkSFgoOcmVjaXBpZW50X25hbWUYByABKAkSFAoMc2VuZGVyX2VtYWlsGAggASgJEhQKDGFydHdvcmtlcl9pZBgJIAEoAxIOCgZqb2JfaWQYCiABKAkSEAoIam9iX3R5cGUYCyABKAkSEAoIaXNfY2hhc2UYDCABKAgSFgoOY2hhc2Vfc2VxdWVuY2UYDSABKAUSLwoGc3RhdHVzGA4gASgOMh8ubm90aWZpY2F0aW9uLnYyLkRlbGl2ZXJ5U3RhdHVzEisKB3NlbnRfYXQYDyABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wEjAKDGRlbGl2ZXJlZF9hdBgQIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXASLQoJb3BlbmVkX2F0GBEgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcBItCglmYWlsZWRfYXQYEiABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wEhYKDmZhaWx1cmVfcmVhc29uGBMgASgJEi4KCmNyZWF0ZWRfYXQYFCABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wEhcKD2lzX2NvbnNvbGlkYXRlZBgVIAEoCCI+ChNTZW5kUmVtaW5kZXJSZXF1ZXN0EhcKD25vdGlmaWNhdGlvbl9pZBgCIAEoCRIOCgZqb2JfaWQYAyABKAkiIgoUU2VuZFJlbWluZGVyUmVzcG9uc2USCgoCb2sYASABKAgiRAoXU2VuZEJ1bGtSZW1pbmRlclJlcXVlc3QSGAoQbm90aWZpY2F0aW9uX2lkcxgCIAMoCRIPCgdqb2JfaWRzGAMgAygJIqgBChhTZW5kQnVsa1JlbWluZGVyUmVzcG9uc2USCgoCb2sYASABKAgSPwoGZXJyb3JzGAIgAygLMi8ubm90aWZpY2F0aW9uLnYyLlNlbmRCdWxrUmVtaW5kZXJSZXNwb25zZS5FcnJvcho/CgVFcnJvchIXCg9ub3RpZmljYXRpb25faWQYASABKAkSDQoFZXJyb3IYAiABKAkSDgoGam9iX2lkGAMgASgJIioKFVNldEVtYWlsT3BlbmVkUmVxdWVzdBIRCgllbWFpbF9yZWYYASABKAkiGAoWU2V0RW1haWxPcGVuZWRSZXNwb25zZSJYChZHZXROb3RpZmljYXRpb25SZXF1ZXN0EhcKD25vdGlmaWNhdGlvbl9pZBgCIAEoCRIVCg1pbmNsdWRlX3NlbmRzGAMgASgIEg4KBmpvYl9pZBgEIAEoCSJOChdHZXROb3RpZmljYXRpb25SZXNwb25zZRIzCgxub3RpZmljYXRpb24YASABKAsyHS5ub3RpZmljYXRpb24udjIuTm90aWZpY2F0aW9uIiYKFEdldEVtYWlsU2VuZHNSZXF1ZXN0Eg4KBmpvYl9pZBgCIAEoCSJIChVHZXRFbWFpbFNlbmRzUmVzcG9uc2USLwoLZW1haWxfc2VuZHMYASADKAsyGi5ub3RpZmljYXRpb24udjIuRW1haWxTZW5kIkEKGUJhdGNoR2V0RW1haWxTZW5kc1JlcXVlc3QSDwoHam9iX2lkcxgBIAMoCRITCgtsYXRlc3Rfb25seRgCIAEoCCJQCg1Kb2JFbWFpbFNlbmRzEg4KBmpvYl9pZBgBIAEoCRIvCgtlbWFpbF9zZW5kcxgCIAMoCzIaLm5vdGlmaWNhdGlvbi52Mi5FbWFpbFNlbmQiTwoaQmF0Y2hHZXRFbWFpbFNlbmRzUmVzcG9uc2USMQoJam9iX3NlbmRzGAEgAygLMh4ubm90aWZpY2F0aW9uLnYyLkpvYkVtYWlsU2VuZHMiOwoaU2VuZENvbnNvbGlkYXRlZE5vd1JlcXVlc3QSHQoVY29uc29saWRhdGVkX2VtYWlsX2lkGAEgASgJIh0KG1NlbmRDb25zb2xpZGF0ZWROb3dSZXNwb25zZSJbCh5FeHRlbmRDb25zb2xpZGF0ZWRUaW1lclJlcXVlc3QSHQoVY29uc29saWRhdGVkX2VtYWlsX2lkGAEgASgJEhoKEmFkZGl0aW9uYWxfc2Vjb25kcxgCIAEoBSJVCh9FeHRlbmRDb25zb2xpZGF0ZWRUaW1lclJlc3BvbnNlEjIKDm5ld19zZW5kX2FmdGVyGAEgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcCJGChtHZXRDb25zb2xpZGF0ZWRFbWFpbFJlcXVlc3QSDgoGam9iX2lkGAEgASgJEhcKD2NvbnNvbGlkYXRlX2tleRgCIAEoCSJeChxHZXRDb25zb2xpZGF0ZWRFbWFpbFJlc3BvbnNlEj4KEmNvbnNvbGlkYXRlZF9lbWFpbBgBIAEoCzIiLm5vdGlmaWNhdGlvbi52Mi5Db25zb2xpZGF0ZWRFbWFpbCKBAgoRQ29uc29saWRhdGVkRW1haWwSCgoCaWQYASABKAkSDgoGam9iX2lkGAIgASgJEg4KBnN0YXR1cxgDIAEoCRIuCgpzZW5kX2FmdGVyGAQgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcBIVCg1kZWxheV9zZWNvbmRzGAUgASgFEhIKCml0ZW1fY291bnQYBiABKAUSNQoFaXRlbXMYByADKAsyJi5ub3RpZmljYXRpb24udjIuQ29uc29saWRhdGVkRW1haWxJdGVtEi4KCmNyZWF0ZWRfYXQYCCABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wIpQBChVDb25zb2xpZGF0ZWRFbWFpbEl0ZW0SCgoCaWQYASABKAkSEwoLam9iX2l0ZW1faWQYAiABKAkSEgoKZXZlbnRfdHlwZRgDIAEoCRIWCg5hY3Rpb25fc3VtbWFyeRgEIAEoCRIuCgpjcmVhdGVkX2F0GAUgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcCJ6ChlSZW5kZXJFbWFpbFByZXZpZXdSZXF1ZXN0EhcKD25vdGlmaWNhdGlvbl9pZBgCIAEoCRIOCgZqb2JfaWQYAyABKAkSHQoVY29uc29saWRhdGVkX2VtYWlsX2lkGAQgASgJEhUKDWVtYWlsX3NlbmRfaWQYBSABKAkiqwEKGlJlbmRlckVtYWlsUHJldmlld1Jlc3BvbnNlEg8KB3N1YmplY3QYASABKAkSDAoEaHRtbBgCIAEoCRISCgpwbGFpbl90ZXh0GAMgASgJEhUKDXRlbXBsYXRlX25hbWUYBCABKAkSEgoKZXZlbnRfdHlwZRgFIAEoCRIXCg9yZWNpcGllbnRfZW1haWwYBiABKAkSFgoOcmVjaXBpZW50X25hbWUYByABKAkiFgoUVHJpZ2dlckNoYXNlc1JlcXVlc3QiTAoVVHJpZ2dlckNoYXNlc1Jlc3BvbnNlEhMKC2NoYXNlc19zZW50GAEgASgFEh4KFmFjdGlvbl9zZXRfY2hhc2VzX3NlbnQYAiABKAUiMAoXUmV0cnlGYWlsZWRFbWFpbFJlcXVlc3QSFQoNZW1haWxfc2VuZF9pZBgBIAEoCSIxChhSZXRyeUZhaWxlZEVtYWlsUmVzcG9uc2USFQoNZW1haWxfc2VuZF9pZBgBIAEoCSI5Ch5HZXRKb2JHcm91cEVtYWlsSGlzdG9yeVJlcXVlc3QSFwoPY29uc29saWRhdGVfa2V5GAEgASgJIlcKH0dldEpvYkdyb3VwRW1haWxIaXN0b3J5UmVzcG9uc2USNAoHZW50cmllcxgBIAMoCzIjLm5vdGlmaWNhdGlvbi52Mi5FbWFpbFRpbWVsaW5lRW50cnkiSwogR2V0Sm9iRW1haWxIaXN0b3J5SW5Hcm91cFJlcXVlc3QSFwoPY29uc29saWRhdGVfa2V5GAEgASgJEg4KBmpvYl9pZBgCIAEoCSJZCiFHZXRKb2JFbWFpbEhpc3RvcnlJbkdyb3VwUmVzcG9uc2USNAoHZW50cmllcxgBIAMoCzIjLm5vdGlmaWNhdGlvbi52Mi5FbWFpbFRpbWVsaW5lRW50cnkiqgMKEkVtYWlsVGltZWxpbmVFbnRyeRIVCg1lbWFpbF9zZW5kX2lkGAEgASgJEhEKCWVtYWlsX3JlZhgCIAEoCRIVCg10ZW1wbGF0ZV9uYW1lGAMgASgJEhIKCmV2ZW50X3R5cGUYBCABKAkSEAoIaXNfY2hhc2UYBSABKAgSFgoOY2hhc2Vfc2VxdWVuY2UYBiABKAUSLwoGc3RhdHVzGAcgASgOMh8ubm90aWZpY2F0aW9uLnYyLkRlbGl2ZXJ5U3RhdHVzEisKB3NlbnRfYXQYCCABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wEjAKDGRlbGl2ZXJlZF9hdBgJIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXASLQoJb3BlbmVkX2F0GAogASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcBItCglmYWlsZWRfYXQYCyABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wEhYKDmZhaWx1cmVfcmVhc29uGAwgASgJEg8KB2pvYl9pZHMYDSADKAkqnwEKEk5vdGlmaWNhdGlvblN0YXR1cxIjCh9OT1RJRklDQVRJT05fU1RBVFVTX1VOU1BFQ0lGSUVEEAASHgoaTk9USUZJQ0FUSU9OX1NUQVRVU19BQ1RJVkUQARIhCh1OT1RJRklDQVRJT05fU1RBVFVTX0NPTVBMRVRFRBACEiEKHU5PVElGSUNBVElPTl9TVEFUVVNfQ0FOQ0VMTEVEEAMqvwEKDkRlbGl2ZXJ5U3RhdHVzEh8KG0RFTElWRVJZX1NUQVRVU19VTlNQRUNJRklFRBAAEhsKF0RFTElWRVJZX1NUQVRVU19QRU5ESU5HEAESGAoUREVMSVZFUllfU1RBVFVTX1NFTlQQAhIdChlERUxJVkVSWV9TVEFUVVNfREVMSVZFUkVEEAMSGgoWREVMSVZFUllfU1RBVFVTX09QRU5FRBAEEhoKFkRFTElWRVJZX1NUQVRVU19GQUlMRUQQBUJUWlJiaXRidWNrZXQub3JnL2t1ZG91ay9hcnR3b3JrZXItYmFja2VuZC9wcm90by9nZW4vZ28vbm90aWZpY2F0aW9uL3YyO25vdGlmaWNhdGlvbnYyYgZwcm90bzM", [file_google_protobuf_timestamp]);
|
|
10
10
|
/**
|
|
11
11
|
* Describes the message notification.v2.Notification.
|
|
12
12
|
* Use `create(NotificationSchema)` to create a new message.
|
|
@@ -72,91 +72,116 @@ export const GetEmailSendsRequestSchema = /*@__PURE__*/ messageDesc(file_notific
|
|
|
72
72
|
* Use `create(GetEmailSendsResponseSchema)` to create a new message.
|
|
73
73
|
*/
|
|
74
74
|
export const GetEmailSendsResponseSchema = /*@__PURE__*/ messageDesc(file_notification_v2_notification, 11);
|
|
75
|
+
/**
|
|
76
|
+
* Describes the message notification.v2.BatchGetEmailSendsRequest.
|
|
77
|
+
* Use `create(BatchGetEmailSendsRequestSchema)` to create a new message.
|
|
78
|
+
*/
|
|
79
|
+
export const BatchGetEmailSendsRequestSchema = /*@__PURE__*/ messageDesc(file_notification_v2_notification, 12);
|
|
80
|
+
/**
|
|
81
|
+
* Describes the message notification.v2.JobEmailSends.
|
|
82
|
+
* Use `create(JobEmailSendsSchema)` to create a new message.
|
|
83
|
+
*/
|
|
84
|
+
export const JobEmailSendsSchema = /*@__PURE__*/ messageDesc(file_notification_v2_notification, 13);
|
|
85
|
+
/**
|
|
86
|
+
* Describes the message notification.v2.BatchGetEmailSendsResponse.
|
|
87
|
+
* Use `create(BatchGetEmailSendsResponseSchema)` to create a new message.
|
|
88
|
+
*/
|
|
89
|
+
export const BatchGetEmailSendsResponseSchema = /*@__PURE__*/ messageDesc(file_notification_v2_notification, 14);
|
|
75
90
|
/**
|
|
76
91
|
* Describes the message notification.v2.SendConsolidatedNowRequest.
|
|
77
92
|
* Use `create(SendConsolidatedNowRequestSchema)` to create a new message.
|
|
78
93
|
*/
|
|
79
|
-
export const SendConsolidatedNowRequestSchema = /*@__PURE__*/ messageDesc(file_notification_v2_notification,
|
|
94
|
+
export const SendConsolidatedNowRequestSchema = /*@__PURE__*/ messageDesc(file_notification_v2_notification, 15);
|
|
80
95
|
/**
|
|
81
96
|
* Describes the message notification.v2.SendConsolidatedNowResponse.
|
|
82
97
|
* Use `create(SendConsolidatedNowResponseSchema)` to create a new message.
|
|
83
98
|
*/
|
|
84
|
-
export const SendConsolidatedNowResponseSchema = /*@__PURE__*/ messageDesc(file_notification_v2_notification,
|
|
99
|
+
export const SendConsolidatedNowResponseSchema = /*@__PURE__*/ messageDesc(file_notification_v2_notification, 16);
|
|
85
100
|
/**
|
|
86
101
|
* Describes the message notification.v2.ExtendConsolidatedTimerRequest.
|
|
87
102
|
* Use `create(ExtendConsolidatedTimerRequestSchema)` to create a new message.
|
|
88
103
|
*/
|
|
89
|
-
export const ExtendConsolidatedTimerRequestSchema = /*@__PURE__*/ messageDesc(file_notification_v2_notification,
|
|
104
|
+
export const ExtendConsolidatedTimerRequestSchema = /*@__PURE__*/ messageDesc(file_notification_v2_notification, 17);
|
|
90
105
|
/**
|
|
91
106
|
* Describes the message notification.v2.ExtendConsolidatedTimerResponse.
|
|
92
107
|
* Use `create(ExtendConsolidatedTimerResponseSchema)` to create a new message.
|
|
93
108
|
*/
|
|
94
|
-
export const ExtendConsolidatedTimerResponseSchema = /*@__PURE__*/ messageDesc(file_notification_v2_notification,
|
|
109
|
+
export const ExtendConsolidatedTimerResponseSchema = /*@__PURE__*/ messageDesc(file_notification_v2_notification, 18);
|
|
95
110
|
/**
|
|
96
111
|
* Describes the message notification.v2.GetConsolidatedEmailRequest.
|
|
97
112
|
* Use `create(GetConsolidatedEmailRequestSchema)` to create a new message.
|
|
98
113
|
*/
|
|
99
|
-
export const GetConsolidatedEmailRequestSchema = /*@__PURE__*/ messageDesc(file_notification_v2_notification,
|
|
114
|
+
export const GetConsolidatedEmailRequestSchema = /*@__PURE__*/ messageDesc(file_notification_v2_notification, 19);
|
|
100
115
|
/**
|
|
101
116
|
* Describes the message notification.v2.GetConsolidatedEmailResponse.
|
|
102
117
|
* Use `create(GetConsolidatedEmailResponseSchema)` to create a new message.
|
|
103
118
|
*/
|
|
104
|
-
export const GetConsolidatedEmailResponseSchema = /*@__PURE__*/ messageDesc(file_notification_v2_notification,
|
|
119
|
+
export const GetConsolidatedEmailResponseSchema = /*@__PURE__*/ messageDesc(file_notification_v2_notification, 20);
|
|
105
120
|
/**
|
|
106
121
|
* Describes the message notification.v2.ConsolidatedEmail.
|
|
107
122
|
* Use `create(ConsolidatedEmailSchema)` to create a new message.
|
|
108
123
|
*/
|
|
109
|
-
export const ConsolidatedEmailSchema = /*@__PURE__*/ messageDesc(file_notification_v2_notification,
|
|
124
|
+
export const ConsolidatedEmailSchema = /*@__PURE__*/ messageDesc(file_notification_v2_notification, 21);
|
|
110
125
|
/**
|
|
111
126
|
* Describes the message notification.v2.ConsolidatedEmailItem.
|
|
112
127
|
* Use `create(ConsolidatedEmailItemSchema)` to create a new message.
|
|
113
128
|
*/
|
|
114
|
-
export const ConsolidatedEmailItemSchema = /*@__PURE__*/ messageDesc(file_notification_v2_notification,
|
|
129
|
+
export const ConsolidatedEmailItemSchema = /*@__PURE__*/ messageDesc(file_notification_v2_notification, 22);
|
|
115
130
|
/**
|
|
116
131
|
* Describes the message notification.v2.RenderEmailPreviewRequest.
|
|
117
132
|
* Use `create(RenderEmailPreviewRequestSchema)` to create a new message.
|
|
118
133
|
*/
|
|
119
|
-
export const RenderEmailPreviewRequestSchema = /*@__PURE__*/ messageDesc(file_notification_v2_notification,
|
|
134
|
+
export const RenderEmailPreviewRequestSchema = /*@__PURE__*/ messageDesc(file_notification_v2_notification, 23);
|
|
120
135
|
/**
|
|
121
136
|
* Describes the message notification.v2.RenderEmailPreviewResponse.
|
|
122
137
|
* Use `create(RenderEmailPreviewResponseSchema)` to create a new message.
|
|
123
138
|
*/
|
|
124
|
-
export const RenderEmailPreviewResponseSchema = /*@__PURE__*/ messageDesc(file_notification_v2_notification,
|
|
139
|
+
export const RenderEmailPreviewResponseSchema = /*@__PURE__*/ messageDesc(file_notification_v2_notification, 24);
|
|
125
140
|
/**
|
|
126
141
|
* Describes the message notification.v2.TriggerChasesRequest.
|
|
127
142
|
* Use `create(TriggerChasesRequestSchema)` to create a new message.
|
|
128
143
|
*/
|
|
129
|
-
export const TriggerChasesRequestSchema = /*@__PURE__*/ messageDesc(file_notification_v2_notification,
|
|
144
|
+
export const TriggerChasesRequestSchema = /*@__PURE__*/ messageDesc(file_notification_v2_notification, 25);
|
|
130
145
|
/**
|
|
131
146
|
* Describes the message notification.v2.TriggerChasesResponse.
|
|
132
147
|
* Use `create(TriggerChasesResponseSchema)` to create a new message.
|
|
133
148
|
*/
|
|
134
|
-
export const TriggerChasesResponseSchema = /*@__PURE__*/ messageDesc(file_notification_v2_notification,
|
|
149
|
+
export const TriggerChasesResponseSchema = /*@__PURE__*/ messageDesc(file_notification_v2_notification, 26);
|
|
150
|
+
/**
|
|
151
|
+
* Describes the message notification.v2.RetryFailedEmailRequest.
|
|
152
|
+
* Use `create(RetryFailedEmailRequestSchema)` to create a new message.
|
|
153
|
+
*/
|
|
154
|
+
export const RetryFailedEmailRequestSchema = /*@__PURE__*/ messageDesc(file_notification_v2_notification, 27);
|
|
155
|
+
/**
|
|
156
|
+
* Describes the message notification.v2.RetryFailedEmailResponse.
|
|
157
|
+
* Use `create(RetryFailedEmailResponseSchema)` to create a new message.
|
|
158
|
+
*/
|
|
159
|
+
export const RetryFailedEmailResponseSchema = /*@__PURE__*/ messageDesc(file_notification_v2_notification, 28);
|
|
135
160
|
/**
|
|
136
161
|
* Describes the message notification.v2.GetJobGroupEmailHistoryRequest.
|
|
137
162
|
* Use `create(GetJobGroupEmailHistoryRequestSchema)` to create a new message.
|
|
138
163
|
*/
|
|
139
|
-
export const GetJobGroupEmailHistoryRequestSchema = /*@__PURE__*/ messageDesc(file_notification_v2_notification,
|
|
164
|
+
export const GetJobGroupEmailHistoryRequestSchema = /*@__PURE__*/ messageDesc(file_notification_v2_notification, 29);
|
|
140
165
|
/**
|
|
141
166
|
* Describes the message notification.v2.GetJobGroupEmailHistoryResponse.
|
|
142
167
|
* Use `create(GetJobGroupEmailHistoryResponseSchema)` to create a new message.
|
|
143
168
|
*/
|
|
144
|
-
export const GetJobGroupEmailHistoryResponseSchema = /*@__PURE__*/ messageDesc(file_notification_v2_notification,
|
|
169
|
+
export const GetJobGroupEmailHistoryResponseSchema = /*@__PURE__*/ messageDesc(file_notification_v2_notification, 30);
|
|
145
170
|
/**
|
|
146
171
|
* Describes the message notification.v2.GetJobEmailHistoryInGroupRequest.
|
|
147
172
|
* Use `create(GetJobEmailHistoryInGroupRequestSchema)` to create a new message.
|
|
148
173
|
*/
|
|
149
|
-
export const GetJobEmailHistoryInGroupRequestSchema = /*@__PURE__*/ messageDesc(file_notification_v2_notification,
|
|
174
|
+
export const GetJobEmailHistoryInGroupRequestSchema = /*@__PURE__*/ messageDesc(file_notification_v2_notification, 31);
|
|
150
175
|
/**
|
|
151
176
|
* Describes the message notification.v2.GetJobEmailHistoryInGroupResponse.
|
|
152
177
|
* Use `create(GetJobEmailHistoryInGroupResponseSchema)` to create a new message.
|
|
153
178
|
*/
|
|
154
|
-
export const GetJobEmailHistoryInGroupResponseSchema = /*@__PURE__*/ messageDesc(file_notification_v2_notification,
|
|
179
|
+
export const GetJobEmailHistoryInGroupResponseSchema = /*@__PURE__*/ messageDesc(file_notification_v2_notification, 32);
|
|
155
180
|
/**
|
|
156
181
|
* Describes the message notification.v2.EmailTimelineEntry.
|
|
157
182
|
* Use `create(EmailTimelineEntrySchema)` to create a new message.
|
|
158
183
|
*/
|
|
159
|
-
export const EmailTimelineEntrySchema = /*@__PURE__*/ messageDesc(file_notification_v2_notification,
|
|
184
|
+
export const EmailTimelineEntrySchema = /*@__PURE__*/ messageDesc(file_notification_v2_notification, 33);
|
|
160
185
|
/**
|
|
161
186
|
* @generated from enum notification.v2.NotificationStatus
|
|
162
187
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"notification_pb.js","sourceRoot":"","sources":["../../../src/notification/v2/notification_pb.ts"],"names":[],"mappings":"AAAA,qFAAqF;AACrF,mGAAmG;AACnG,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAE/E,OAAO,EAAE,8BAA8B,EAAE,MAAM,wBAAwB,CAAC;AAGxE;;GAEG;AACH,MAAM,CAAC,MAAM,iCAAiC,GAAY,aAAa,CACrE,QAAQ,CAAC,
|
|
1
|
+
{"version":3,"file":"notification_pb.js","sourceRoot":"","sources":["../../../src/notification/v2/notification_pb.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { GenFile, GenService } from "@bufbuild/protobuf/codegenv2";
|
|
2
|
-
import type { ExtendConsolidatedTimerRequestSchema, ExtendConsolidatedTimerResponseSchema, GetConsolidatedEmailRequestSchema, GetConsolidatedEmailResponseSchema, GetEmailSendsRequestSchema, GetEmailSendsResponseSchema, GetJobEmailHistoryInGroupRequestSchema, GetJobEmailHistoryInGroupResponseSchema, GetJobGroupEmailHistoryRequestSchema, GetJobGroupEmailHistoryResponseSchema, GetNotificationRequestSchema, GetNotificationResponseSchema, RenderEmailPreviewRequestSchema, RenderEmailPreviewResponseSchema, SendBulkReminderRequestSchema, SendBulkReminderResponseSchema, SendConsolidatedNowRequestSchema, SendConsolidatedNowResponseSchema, SendReminderRequestSchema, SendReminderResponseSchema, SetEmailOpenedRequestSchema, SetEmailOpenedResponseSchema, TriggerChasesRequestSchema, TriggerChasesResponseSchema } from "./notification_pb.js";
|
|
2
|
+
import type { BatchGetEmailSendsRequestSchema, BatchGetEmailSendsResponseSchema, ExtendConsolidatedTimerRequestSchema, ExtendConsolidatedTimerResponseSchema, GetConsolidatedEmailRequestSchema, GetConsolidatedEmailResponseSchema, GetEmailSendsRequestSchema, GetEmailSendsResponseSchema, GetJobEmailHistoryInGroupRequestSchema, GetJobEmailHistoryInGroupResponseSchema, GetJobGroupEmailHistoryRequestSchema, GetJobGroupEmailHistoryResponseSchema, GetNotificationRequestSchema, GetNotificationResponseSchema, RenderEmailPreviewRequestSchema, RenderEmailPreviewResponseSchema, RetryFailedEmailRequestSchema, RetryFailedEmailResponseSchema, SendBulkReminderRequestSchema, SendBulkReminderResponseSchema, SendConsolidatedNowRequestSchema, SendConsolidatedNowResponseSchema, SendReminderRequestSchema, SendReminderResponseSchema, SetEmailOpenedRequestSchema, SetEmailOpenedResponseSchema, TriggerChasesRequestSchema, TriggerChasesResponseSchema } from "./notification_pb.js";
|
|
3
3
|
/**
|
|
4
4
|
* Describes the file notification/v2/notification_service.proto.
|
|
5
5
|
*/
|
|
@@ -48,6 +48,14 @@ export declare const NotificationService: GenService<{
|
|
|
48
48
|
input: typeof GetEmailSendsRequestSchema;
|
|
49
49
|
output: typeof GetEmailSendsResponseSchema;
|
|
50
50
|
};
|
|
51
|
+
/**
|
|
52
|
+
* @generated from rpc notification.v2.NotificationService.BatchGetEmailSends
|
|
53
|
+
*/
|
|
54
|
+
batchGetEmailSends: {
|
|
55
|
+
methodKind: "unary";
|
|
56
|
+
input: typeof BatchGetEmailSendsRequestSchema;
|
|
57
|
+
output: typeof BatchGetEmailSendsResponseSchema;
|
|
58
|
+
};
|
|
51
59
|
/**
|
|
52
60
|
* @generated from rpc notification.v2.NotificationService.SendConsolidatedNow
|
|
53
61
|
*/
|
|
@@ -88,6 +96,14 @@ export declare const NotificationService: GenService<{
|
|
|
88
96
|
input: typeof TriggerChasesRequestSchema;
|
|
89
97
|
output: typeof TriggerChasesResponseSchema;
|
|
90
98
|
};
|
|
99
|
+
/**
|
|
100
|
+
* @generated from rpc notification.v2.NotificationService.RetryFailedEmail
|
|
101
|
+
*/
|
|
102
|
+
retryFailedEmail: {
|
|
103
|
+
methodKind: "unary";
|
|
104
|
+
input: typeof RetryFailedEmailRequestSchema;
|
|
105
|
+
output: typeof RetryFailedEmailResponseSchema;
|
|
106
|
+
};
|
|
91
107
|
/**
|
|
92
108
|
* @generated from rpc notification.v2.NotificationService.GetJobGroupEmailHistory
|
|
93
109
|
*/
|
|
@@ -6,7 +6,7 @@ import { file_notification_v2_notification } from "./notification_pb.js";
|
|
|
6
6
|
/**
|
|
7
7
|
* Describes the file notification/v2/notification_service.proto.
|
|
8
8
|
*/
|
|
9
|
-
export const file_notification_v2_notification_service = /*@__PURE__*/ fileDesc("
|
|
9
|
+
export const file_notification_v2_notification_service = /*@__PURE__*/ fileDesc("Cipub3RpZmljYXRpb24vdjIvbm90aWZpY2F0aW9uX3NlcnZpY2UucHJvdG8SD25vdGlmaWNhdGlvbi52MjKvDAoTTm90aWZpY2F0aW9uU2VydmljZRJdCgxTZW5kUmVtaW5kZXISJC5ub3RpZmljYXRpb24udjIuU2VuZFJlbWluZGVyUmVxdWVzdBolLm5vdGlmaWNhdGlvbi52Mi5TZW5kUmVtaW5kZXJSZXNwb25zZSIAEmkKEFNlbmRCdWxrUmVtaW5kZXISKC5ub3RpZmljYXRpb24udjIuU2VuZEJ1bGtSZW1pbmRlclJlcXVlc3QaKS5ub3RpZmljYXRpb24udjIuU2VuZEJ1bGtSZW1pbmRlclJlc3BvbnNlIgASYwoOU2V0RW1haWxPcGVuZWQSJi5ub3RpZmljYXRpb24udjIuU2V0RW1haWxPcGVuZWRSZXF1ZXN0Gicubm90aWZpY2F0aW9uLnYyLlNldEVtYWlsT3BlbmVkUmVzcG9uc2UiABJmCg9HZXROb3RpZmljYXRpb24SJy5ub3RpZmljYXRpb24udjIuR2V0Tm90aWZpY2F0aW9uUmVxdWVzdBooLm5vdGlmaWNhdGlvbi52Mi5HZXROb3RpZmljYXRpb25SZXNwb25zZSIAEmAKDUdldEVtYWlsU2VuZHMSJS5ub3RpZmljYXRpb24udjIuR2V0RW1haWxTZW5kc1JlcXVlc3QaJi5ub3RpZmljYXRpb24udjIuR2V0RW1haWxTZW5kc1Jlc3BvbnNlIgASbwoSQmF0Y2hHZXRFbWFpbFNlbmRzEioubm90aWZpY2F0aW9uLnYyLkJhdGNoR2V0RW1haWxTZW5kc1JlcXVlc3QaKy5ub3RpZmljYXRpb24udjIuQmF0Y2hHZXRFbWFpbFNlbmRzUmVzcG9uc2UiABJyChNTZW5kQ29uc29saWRhdGVkTm93Eisubm90aWZpY2F0aW9uLnYyLlNlbmRDb25zb2xpZGF0ZWROb3dSZXF1ZXN0Giwubm90aWZpY2F0aW9uLnYyLlNlbmRDb25zb2xpZGF0ZWROb3dSZXNwb25zZSIAEn4KF0V4dGVuZENvbnNvbGlkYXRlZFRpbWVyEi8ubm90aWZpY2F0aW9uLnYyLkV4dGVuZENvbnNvbGlkYXRlZFRpbWVyUmVxdWVzdBowLm5vdGlmaWNhdGlvbi52Mi5FeHRlbmRDb25zb2xpZGF0ZWRUaW1lclJlc3BvbnNlIgASdQoUR2V0Q29uc29saWRhdGVkRW1haWwSLC5ub3RpZmljYXRpb24udjIuR2V0Q29uc29saWRhdGVkRW1haWxSZXF1ZXN0Gi0ubm90aWZpY2F0aW9uLnYyLkdldENvbnNvbGlkYXRlZEVtYWlsUmVzcG9uc2UiABJvChJSZW5kZXJFbWFpbFByZXZpZXcSKi5ub3RpZmljYXRpb24udjIuUmVuZGVyRW1haWxQcmV2aWV3UmVxdWVzdBorLm5vdGlmaWNhdGlvbi52Mi5SZW5kZXJFbWFpbFByZXZpZXdSZXNwb25zZSIAEmAKDVRyaWdnZXJDaGFzZXMSJS5ub3RpZmljYXRpb24udjIuVHJpZ2dlckNoYXNlc1JlcXVlc3QaJi5ub3RpZmljYXRpb24udjIuVHJpZ2dlckNoYXNlc1Jlc3BvbnNlIgASaQoQUmV0cnlGYWlsZWRFbWFpbBIoLm5vdGlmaWNhdGlvbi52Mi5SZXRyeUZhaWxlZEVtYWlsUmVxdWVzdBopLm5vdGlmaWNhdGlvbi52Mi5SZXRyeUZhaWxlZEVtYWlsUmVzcG9uc2UiABJ+ChdHZXRKb2JHcm91cEVtYWlsSGlzdG9yeRIvLm5vdGlmaWNhdGlvbi52Mi5HZXRKb2JHcm91cEVtYWlsSGlzdG9yeVJlcXVlc3QaMC5ub3RpZmljYXRpb24udjIuR2V0Sm9iR3JvdXBFbWFpbEhpc3RvcnlSZXNwb25zZSIAEoQBChlHZXRKb2JFbWFpbEhpc3RvcnlJbkdyb3VwEjEubm90aWZpY2F0aW9uLnYyLkdldEpvYkVtYWlsSGlzdG9yeUluR3JvdXBSZXF1ZXN0GjIubm90aWZpY2F0aW9uLnYyLkdldEpvYkVtYWlsSGlzdG9yeUluR3JvdXBSZXNwb25zZSIAQlRaUmJpdGJ1Y2tldC5vcmcva3Vkb3VrL2FydHdvcmtlci1iYWNrZW5kL3Byb3RvL2dlbi9nby9ub3RpZmljYXRpb24vdjI7bm90aWZpY2F0aW9udjJiBnByb3RvMw", [file_notification_v2_notification]);
|
|
10
10
|
/**
|
|
11
11
|
* @generated from service notification.v2.NotificationService
|
|
12
12
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"notification_service_pb.js","sourceRoot":"","sources":["../../../src/notification/v2/notification_service_pb.ts"],"names":[],"mappings":"AAAA,qFAAqF;AACrF,2GAA2G;AAC3G,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAErE,OAAO,EAAE,iCAAiC,EAAE,MAAM,sBAAsB,CAAC;AAEzE;;GAEG;AACH,MAAM,CAAC,MAAM,yCAAyC,GAAY,aAAa,CAC7E,QAAQ,CAAC,
|
|
1
|
+
{"version":3,"file":"notification_service_pb.js","sourceRoot":"","sources":["../../../src/notification/v2/notification_service_pb.ts"],"names":[],"mappings":"AAAA,qFAAqF;AACrF,2GAA2G;AAC3G,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAErE,OAAO,EAAE,iCAAiC,EAAE,MAAM,sBAAsB,CAAC;AAEzE;;GAEG;AACH,MAAM,CAAC,MAAM,yCAAyC,GAAY,aAAa,CAC7E,QAAQ,CAAC,oxEAAoxE,EAAE,CAAC,iCAAiC,CAAC,CAAC,CAAC;AAEt0E;;GAEG;AACH,MAAM,CAAC,MAAM,mBAAmB,GAiH3B,aAAa,CAChB,WAAW,CAAC,yCAAyC,EAAE,CAAC,CAAC,CAAC"}
|
package/package.json
CHANGED
|
@@ -12,7 +12,7 @@ import type { Message } from "@bufbuild/protobuf";
|
|
|
12
12
|
* Describes the file notification/v2/notification.proto.
|
|
13
13
|
*/
|
|
14
14
|
export const file_notification_v2_notification: GenFile = /*@__PURE__*/
|
|
15
|
-
fileDesc("CiJub3RpZmljYXRpb24vdjIvbm90aWZpY2F0aW9uLnByb3RvEg9ub3RpZmljYXRpb24udjIi6QMKDE5vdGlmaWNhdGlvbhIKCgJpZBgBIAEoCRIUCgxhcnR3b3JrZXJfaWQYAiABKAMSDgoGam9iX2lkGAMgASgJEhAKCGpvYl90eXBlGAQgASgJEhIKCmV2ZW50X3R5cGUYBSABKAkSFwoPcmVjaXBpZW50X2VtYWlsGAYgASgJEhYKDnJlY2lwaWVudF9uYW1lGAcgASgJEjMKBnN0YXR1cxgIIAEoDjIjLm5vdGlmaWNhdGlvbi52Mi5Ob3RpZmljYXRpb25TdGF0dXMSFQoNY2hhc2VfZW5hYmxlZBgJIAEoCBIaChJjaGFzZV9pbnRlcnZhbF9taW4YCiABKAUSEgoKbWF4X2NoYXNlcxgLIAEoBRITCgtjaGFzZXNfc2VudBgMIAEoBRI0ChBuZXh0X2NoYXNlX2FmdGVyGA0gASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcBIuCgpjcmVhdGVkX2F0GA4gASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcBIuCgp1cGRhdGVkX2F0GA8gASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcBIpCgVzZW5kcxgQIAMoCzIaLm5vdGlmaWNhdGlvbi52Mi5FbWFpbFNlbmQi5gQKCUVtYWlsU2VuZBIKCgJpZBgBIAEoCRIXCg9ub3RpZmljYXRpb25faWQYAiABKAkSEQoJZW1haWxfcmVmGAMgASgJEhUKDXRlbXBsYXRlX25hbWUYBCABKAkSEgoKZXZlbnRfdHlwZRgFIAEoCRIXCg9yZWNpcGllbnRfZW1haWwYBiABKAkSFgoOcmVjaXBpZW50X25hbWUYByABKAkSFAoMc2VuZGVyX2VtYWlsGAggASgJEhQKDGFydHdvcmtlcl9pZBgJIAEoAxIOCgZqb2JfaWQYCiABKAkSEAoIam9iX3R5cGUYCyABKAkSEAoIaXNfY2hhc2UYDCABKAgSFgoOY2hhc2Vfc2VxdWVuY2UYDSABKAUSLwoGc3RhdHVzGA4gASgOMh8ubm90aWZpY2F0aW9uLnYyLkRlbGl2ZXJ5U3RhdHVzEisKB3NlbnRfYXQYDyABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wEjAKDGRlbGl2ZXJlZF9hdBgQIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXASLQoJb3BlbmVkX2F0GBEgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcBItCglmYWlsZWRfYXQYEiABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wEhYKDmZhaWx1cmVfcmVhc29uGBMgASgJEi4KCmNyZWF0ZWRfYXQYFCABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wEhcKD2lzX2NvbnNvbGlkYXRlZBgVIAEoCCI+ChNTZW5kUmVtaW5kZXJSZXF1ZXN0EhcKD25vdGlmaWNhdGlvbl9pZBgCIAEoCRIOCgZqb2JfaWQYAyABKAkiIgoUU2VuZFJlbWluZGVyUmVzcG9uc2USCgoCb2sYASABKAgiRAoXU2VuZEJ1bGtSZW1pbmRlclJlcXVlc3QSGAoQbm90aWZpY2F0aW9uX2lkcxgCIAMoCRIPCgdqb2JfaWRzGAMgAygJIqgBChhTZW5kQnVsa1JlbWluZGVyUmVzcG9uc2USCgoCb2sYASABKAgSPwoGZXJyb3JzGAIgAygLMi8ubm90aWZpY2F0aW9uLnYyLlNlbmRCdWxrUmVtaW5kZXJSZXNwb25zZS5FcnJvcho/
|
|
15
|
+
fileDesc("CiJub3RpZmljYXRpb24vdjIvbm90aWZpY2F0aW9uLnByb3RvEg9ub3RpZmljYXRpb24udjIi6QMKDE5vdGlmaWNhdGlvbhIKCgJpZBgBIAEoCRIUCgxhcnR3b3JrZXJfaWQYAiABKAMSDgoGam9iX2lkGAMgASgJEhAKCGpvYl90eXBlGAQgASgJEhIKCmV2ZW50X3R5cGUYBSABKAkSFwoPcmVjaXBpZW50X2VtYWlsGAYgASgJEhYKDnJlY2lwaWVudF9uYW1lGAcgASgJEjMKBnN0YXR1cxgIIAEoDjIjLm5vdGlmaWNhdGlvbi52Mi5Ob3RpZmljYXRpb25TdGF0dXMSFQoNY2hhc2VfZW5hYmxlZBgJIAEoCBIaChJjaGFzZV9pbnRlcnZhbF9taW4YCiABKAUSEgoKbWF4X2NoYXNlcxgLIAEoBRITCgtjaGFzZXNfc2VudBgMIAEoBRI0ChBuZXh0X2NoYXNlX2FmdGVyGA0gASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcBIuCgpjcmVhdGVkX2F0GA4gASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcBIuCgp1cGRhdGVkX2F0GA8gASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcBIpCgVzZW5kcxgQIAMoCzIaLm5vdGlmaWNhdGlvbi52Mi5FbWFpbFNlbmQi5gQKCUVtYWlsU2VuZBIKCgJpZBgBIAEoCRIXCg9ub3RpZmljYXRpb25faWQYAiABKAkSEQoJZW1haWxfcmVmGAMgASgJEhUKDXRlbXBsYXRlX25hbWUYBCABKAkSEgoKZXZlbnRfdHlwZRgFIAEoCRIXCg9yZWNpcGllbnRfZW1haWwYBiABKAkSFgoOcmVjaXBpZW50X25hbWUYByABKAkSFAoMc2VuZGVyX2VtYWlsGAggASgJEhQKDGFydHdvcmtlcl9pZBgJIAEoAxIOCgZqb2JfaWQYCiABKAkSEAoIam9iX3R5cGUYCyABKAkSEAoIaXNfY2hhc2UYDCABKAgSFgoOY2hhc2Vfc2VxdWVuY2UYDSABKAUSLwoGc3RhdHVzGA4gASgOMh8ubm90aWZpY2F0aW9uLnYyLkRlbGl2ZXJ5U3RhdHVzEisKB3NlbnRfYXQYDyABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wEjAKDGRlbGl2ZXJlZF9hdBgQIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXASLQoJb3BlbmVkX2F0GBEgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcBItCglmYWlsZWRfYXQYEiABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wEhYKDmZhaWx1cmVfcmVhc29uGBMgASgJEi4KCmNyZWF0ZWRfYXQYFCABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wEhcKD2lzX2NvbnNvbGlkYXRlZBgVIAEoCCI+ChNTZW5kUmVtaW5kZXJSZXF1ZXN0EhcKD25vdGlmaWNhdGlvbl9pZBgCIAEoCRIOCgZqb2JfaWQYAyABKAkiIgoUU2VuZFJlbWluZGVyUmVzcG9uc2USCgoCb2sYASABKAgiRAoXU2VuZEJ1bGtSZW1pbmRlclJlcXVlc3QSGAoQbm90aWZpY2F0aW9uX2lkcxgCIAMoCRIPCgdqb2JfaWRzGAMgAygJIqgBChhTZW5kQnVsa1JlbWluZGVyUmVzcG9uc2USCgoCb2sYASABKAgSPwoGZXJyb3JzGAIgAygLMi8ubm90aWZpY2F0aW9uLnYyLlNlbmRCdWxrUmVtaW5kZXJSZXNwb25zZS5FcnJvcho/CgVFcnJvchIXCg9ub3RpZmljYXRpb25faWQYASABKAkSDQoFZXJyb3IYAiABKAkSDgoGam9iX2lkGAMgASgJIioKFVNldEVtYWlsT3BlbmVkUmVxdWVzdBIRCgllbWFpbF9yZWYYASABKAkiGAoWU2V0RW1haWxPcGVuZWRSZXNwb25zZSJYChZHZXROb3RpZmljYXRpb25SZXF1ZXN0EhcKD25vdGlmaWNhdGlvbl9pZBgCIAEoCRIVCg1pbmNsdWRlX3NlbmRzGAMgASgIEg4KBmpvYl9pZBgEIAEoCSJOChdHZXROb3RpZmljYXRpb25SZXNwb25zZRIzCgxub3RpZmljYXRpb24YASABKAsyHS5ub3RpZmljYXRpb24udjIuTm90aWZpY2F0aW9uIiYKFEdldEVtYWlsU2VuZHNSZXF1ZXN0Eg4KBmpvYl9pZBgCIAEoCSJIChVHZXRFbWFpbFNlbmRzUmVzcG9uc2USLwoLZW1haWxfc2VuZHMYASADKAsyGi5ub3RpZmljYXRpb24udjIuRW1haWxTZW5kIkEKGUJhdGNoR2V0RW1haWxTZW5kc1JlcXVlc3QSDwoHam9iX2lkcxgBIAMoCRITCgtsYXRlc3Rfb25seRgCIAEoCCJQCg1Kb2JFbWFpbFNlbmRzEg4KBmpvYl9pZBgBIAEoCRIvCgtlbWFpbF9zZW5kcxgCIAMoCzIaLm5vdGlmaWNhdGlvbi52Mi5FbWFpbFNlbmQiTwoaQmF0Y2hHZXRFbWFpbFNlbmRzUmVzcG9uc2USMQoJam9iX3NlbmRzGAEgAygLMh4ubm90aWZpY2F0aW9uLnYyLkpvYkVtYWlsU2VuZHMiOwoaU2VuZENvbnNvbGlkYXRlZE5vd1JlcXVlc3QSHQoVY29uc29saWRhdGVkX2VtYWlsX2lkGAEgASgJIh0KG1NlbmRDb25zb2xpZGF0ZWROb3dSZXNwb25zZSJbCh5FeHRlbmRDb25zb2xpZGF0ZWRUaW1lclJlcXVlc3QSHQoVY29uc29saWRhdGVkX2VtYWlsX2lkGAEgASgJEhoKEmFkZGl0aW9uYWxfc2Vjb25kcxgCIAEoBSJVCh9FeHRlbmRDb25zb2xpZGF0ZWRUaW1lclJlc3BvbnNlEjIKDm5ld19zZW5kX2FmdGVyGAEgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcCJGChtHZXRDb25zb2xpZGF0ZWRFbWFpbFJlcXVlc3QSDgoGam9iX2lkGAEgASgJEhcKD2NvbnNvbGlkYXRlX2tleRgCIAEoCSJeChxHZXRDb25zb2xpZGF0ZWRFbWFpbFJlc3BvbnNlEj4KEmNvbnNvbGlkYXRlZF9lbWFpbBgBIAEoCzIiLm5vdGlmaWNhdGlvbi52Mi5Db25zb2xpZGF0ZWRFbWFpbCKBAgoRQ29uc29saWRhdGVkRW1haWwSCgoCaWQYASABKAkSDgoGam9iX2lkGAIgASgJEg4KBnN0YXR1cxgDIAEoCRIuCgpzZW5kX2FmdGVyGAQgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcBIVCg1kZWxheV9zZWNvbmRzGAUgASgFEhIKCml0ZW1fY291bnQYBiABKAUSNQoFaXRlbXMYByADKAsyJi5ub3RpZmljYXRpb24udjIuQ29uc29saWRhdGVkRW1haWxJdGVtEi4KCmNyZWF0ZWRfYXQYCCABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wIpQBChVDb25zb2xpZGF0ZWRFbWFpbEl0ZW0SCgoCaWQYASABKAkSEwoLam9iX2l0ZW1faWQYAiABKAkSEgoKZXZlbnRfdHlwZRgDIAEoCRIWCg5hY3Rpb25fc3VtbWFyeRgEIAEoCRIuCgpjcmVhdGVkX2F0GAUgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcCJ6ChlSZW5kZXJFbWFpbFByZXZpZXdSZXF1ZXN0EhcKD25vdGlmaWNhdGlvbl9pZBgCIAEoCRIOCgZqb2JfaWQYAyABKAkSHQoVY29uc29saWRhdGVkX2VtYWlsX2lkGAQgASgJEhUKDWVtYWlsX3NlbmRfaWQYBSABKAkiqwEKGlJlbmRlckVtYWlsUHJldmlld1Jlc3BvbnNlEg8KB3N1YmplY3QYASABKAkSDAoEaHRtbBgCIAEoCRISCgpwbGFpbl90ZXh0GAMgASgJEhUKDXRlbXBsYXRlX25hbWUYBCABKAkSEgoKZXZlbnRfdHlwZRgFIAEoCRIXCg9yZWNpcGllbnRfZW1haWwYBiABKAkSFgoOcmVjaXBpZW50X25hbWUYByABKAkiFgoUVHJpZ2dlckNoYXNlc1JlcXVlc3QiTAoVVHJpZ2dlckNoYXNlc1Jlc3BvbnNlEhMKC2NoYXNlc19zZW50GAEgASgFEh4KFmFjdGlvbl9zZXRfY2hhc2VzX3NlbnQYAiABKAUiMAoXUmV0cnlGYWlsZWRFbWFpbFJlcXVlc3QSFQoNZW1haWxfc2VuZF9pZBgBIAEoCSIxChhSZXRyeUZhaWxlZEVtYWlsUmVzcG9uc2USFQoNZW1haWxfc2VuZF9pZBgBIAEoCSI5Ch5HZXRKb2JHcm91cEVtYWlsSGlzdG9yeVJlcXVlc3QSFwoPY29uc29saWRhdGVfa2V5GAEgASgJIlcKH0dldEpvYkdyb3VwRW1haWxIaXN0b3J5UmVzcG9uc2USNAoHZW50cmllcxgBIAMoCzIjLm5vdGlmaWNhdGlvbi52Mi5FbWFpbFRpbWVsaW5lRW50cnkiSwogR2V0Sm9iRW1haWxIaXN0b3J5SW5Hcm91cFJlcXVlc3QSFwoPY29uc29saWRhdGVfa2V5GAEgASgJEg4KBmpvYl9pZBgCIAEoCSJZCiFHZXRKb2JFbWFpbEhpc3RvcnlJbkdyb3VwUmVzcG9uc2USNAoHZW50cmllcxgBIAMoCzIjLm5vdGlmaWNhdGlvbi52Mi5FbWFpbFRpbWVsaW5lRW50cnkiqgMKEkVtYWlsVGltZWxpbmVFbnRyeRIVCg1lbWFpbF9zZW5kX2lkGAEgASgJEhEKCWVtYWlsX3JlZhgCIAEoCRIVCg10ZW1wbGF0ZV9uYW1lGAMgASgJEhIKCmV2ZW50X3R5cGUYBCABKAkSEAoIaXNfY2hhc2UYBSABKAgSFgoOY2hhc2Vfc2VxdWVuY2UYBiABKAUSLwoGc3RhdHVzGAcgASgOMh8ubm90aWZpY2F0aW9uLnYyLkRlbGl2ZXJ5U3RhdHVzEisKB3NlbnRfYXQYCCABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wEjAKDGRlbGl2ZXJlZF9hdBgJIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXASLQoJb3BlbmVkX2F0GAogASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcBItCglmYWlsZWRfYXQYCyABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wEhYKDmZhaWx1cmVfcmVhc29uGAwgASgJEg8KB2pvYl9pZHMYDSADKAkqnwEKEk5vdGlmaWNhdGlvblN0YXR1cxIjCh9OT1RJRklDQVRJT05fU1RBVFVTX1VOU1BFQ0lGSUVEEAASHgoaTk9USUZJQ0FUSU9OX1NUQVRVU19BQ1RJVkUQARIhCh1OT1RJRklDQVRJT05fU1RBVFVTX0NPTVBMRVRFRBACEiEKHU5PVElGSUNBVElPTl9TVEFUVVNfQ0FOQ0VMTEVEEAMqvwEKDkRlbGl2ZXJ5U3RhdHVzEh8KG0RFTElWRVJZX1NUQVRVU19VTlNQRUNJRklFRBAAEhsKF0RFTElWRVJZX1NUQVRVU19QRU5ESU5HEAESGAoUREVMSVZFUllfU1RBVFVTX1NFTlQQAhIdChlERUxJVkVSWV9TVEFUVVNfREVMSVZFUkVEEAMSGgoWREVMSVZFUllfU1RBVFVTX09QRU5FRBAEEhoKFkRFTElWRVJZX1NUQVRVU19GQUlMRUQQBUJUWlJiaXRidWNrZXQub3JnL2t1ZG91ay9hcnR3b3JrZXItYmFja2VuZC9wcm90by9nZW4vZ28vbm90aWZpY2F0aW9uL3YyO25vdGlmaWNhdGlvbnYyYgZwcm90bzM", [file_google_protobuf_timestamp]);
|
|
16
16
|
|
|
17
17
|
/**
|
|
18
18
|
* @generated from message notification.v2.Notification
|
|
@@ -451,6 +451,71 @@ export type GetEmailSendsResponse = Message<"notification.v2.GetEmailSendsRespon
|
|
|
451
451
|
export const GetEmailSendsResponseSchema: GenMessage<GetEmailSendsResponse> = /*@__PURE__*/
|
|
452
452
|
messageDesc(file_notification_v2_notification, 11);
|
|
453
453
|
|
|
454
|
+
/**
|
|
455
|
+
* @generated from message notification.v2.BatchGetEmailSendsRequest
|
|
456
|
+
*/
|
|
457
|
+
export type BatchGetEmailSendsRequest = Message<"notification.v2.BatchGetEmailSendsRequest"> & {
|
|
458
|
+
/**
|
|
459
|
+
* required, non-empty; max 100 recommended
|
|
460
|
+
*
|
|
461
|
+
* @generated from field: repeated string job_ids = 1;
|
|
462
|
+
*/
|
|
463
|
+
jobIds: string[];
|
|
464
|
+
|
|
465
|
+
/**
|
|
466
|
+
* when true, at most the most recent send per job (faster)
|
|
467
|
+
*
|
|
468
|
+
* @generated from field: bool latest_only = 2;
|
|
469
|
+
*/
|
|
470
|
+
latestOnly: boolean;
|
|
471
|
+
};
|
|
472
|
+
|
|
473
|
+
/**
|
|
474
|
+
* Describes the message notification.v2.BatchGetEmailSendsRequest.
|
|
475
|
+
* Use `create(BatchGetEmailSendsRequestSchema)` to create a new message.
|
|
476
|
+
*/
|
|
477
|
+
export const BatchGetEmailSendsRequestSchema: GenMessage<BatchGetEmailSendsRequest> = /*@__PURE__*/
|
|
478
|
+
messageDesc(file_notification_v2_notification, 12);
|
|
479
|
+
|
|
480
|
+
/**
|
|
481
|
+
* @generated from message notification.v2.JobEmailSends
|
|
482
|
+
*/
|
|
483
|
+
export type JobEmailSends = Message<"notification.v2.JobEmailSends"> & {
|
|
484
|
+
/**
|
|
485
|
+
* @generated from field: string job_id = 1;
|
|
486
|
+
*/
|
|
487
|
+
jobId: string;
|
|
488
|
+
|
|
489
|
+
/**
|
|
490
|
+
* @generated from field: repeated notification.v2.EmailSend email_sends = 2;
|
|
491
|
+
*/
|
|
492
|
+
emailSends: EmailSend[];
|
|
493
|
+
};
|
|
494
|
+
|
|
495
|
+
/**
|
|
496
|
+
* Describes the message notification.v2.JobEmailSends.
|
|
497
|
+
* Use `create(JobEmailSendsSchema)` to create a new message.
|
|
498
|
+
*/
|
|
499
|
+
export const JobEmailSendsSchema: GenMessage<JobEmailSends> = /*@__PURE__*/
|
|
500
|
+
messageDesc(file_notification_v2_notification, 13);
|
|
501
|
+
|
|
502
|
+
/**
|
|
503
|
+
* @generated from message notification.v2.BatchGetEmailSendsResponse
|
|
504
|
+
*/
|
|
505
|
+
export type BatchGetEmailSendsResponse = Message<"notification.v2.BatchGetEmailSendsResponse"> & {
|
|
506
|
+
/**
|
|
507
|
+
* @generated from field: repeated notification.v2.JobEmailSends job_sends = 1;
|
|
508
|
+
*/
|
|
509
|
+
jobSends: JobEmailSends[];
|
|
510
|
+
};
|
|
511
|
+
|
|
512
|
+
/**
|
|
513
|
+
* Describes the message notification.v2.BatchGetEmailSendsResponse.
|
|
514
|
+
* Use `create(BatchGetEmailSendsResponseSchema)` to create a new message.
|
|
515
|
+
*/
|
|
516
|
+
export const BatchGetEmailSendsResponseSchema: GenMessage<BatchGetEmailSendsResponse> = /*@__PURE__*/
|
|
517
|
+
messageDesc(file_notification_v2_notification, 14);
|
|
518
|
+
|
|
454
519
|
/**
|
|
455
520
|
* @generated from message notification.v2.SendConsolidatedNowRequest
|
|
456
521
|
*/
|
|
@@ -466,7 +531,7 @@ export type SendConsolidatedNowRequest = Message<"notification.v2.SendConsolidat
|
|
|
466
531
|
* Use `create(SendConsolidatedNowRequestSchema)` to create a new message.
|
|
467
532
|
*/
|
|
468
533
|
export const SendConsolidatedNowRequestSchema: GenMessage<SendConsolidatedNowRequest> = /*@__PURE__*/
|
|
469
|
-
messageDesc(file_notification_v2_notification,
|
|
534
|
+
messageDesc(file_notification_v2_notification, 15);
|
|
470
535
|
|
|
471
536
|
/**
|
|
472
537
|
* @generated from message notification.v2.SendConsolidatedNowResponse
|
|
@@ -479,7 +544,7 @@ export type SendConsolidatedNowResponse = Message<"notification.v2.SendConsolida
|
|
|
479
544
|
* Use `create(SendConsolidatedNowResponseSchema)` to create a new message.
|
|
480
545
|
*/
|
|
481
546
|
export const SendConsolidatedNowResponseSchema: GenMessage<SendConsolidatedNowResponse> = /*@__PURE__*/
|
|
482
|
-
messageDesc(file_notification_v2_notification,
|
|
547
|
+
messageDesc(file_notification_v2_notification, 16);
|
|
483
548
|
|
|
484
549
|
/**
|
|
485
550
|
* @generated from message notification.v2.ExtendConsolidatedTimerRequest
|
|
@@ -501,7 +566,7 @@ export type ExtendConsolidatedTimerRequest = Message<"notification.v2.ExtendCons
|
|
|
501
566
|
* Use `create(ExtendConsolidatedTimerRequestSchema)` to create a new message.
|
|
502
567
|
*/
|
|
503
568
|
export const ExtendConsolidatedTimerRequestSchema: GenMessage<ExtendConsolidatedTimerRequest> = /*@__PURE__*/
|
|
504
|
-
messageDesc(file_notification_v2_notification,
|
|
569
|
+
messageDesc(file_notification_v2_notification, 17);
|
|
505
570
|
|
|
506
571
|
/**
|
|
507
572
|
* @generated from message notification.v2.ExtendConsolidatedTimerResponse
|
|
@@ -518,7 +583,7 @@ export type ExtendConsolidatedTimerResponse = Message<"notification.v2.ExtendCon
|
|
|
518
583
|
* Use `create(ExtendConsolidatedTimerResponseSchema)` to create a new message.
|
|
519
584
|
*/
|
|
520
585
|
export const ExtendConsolidatedTimerResponseSchema: GenMessage<ExtendConsolidatedTimerResponse> = /*@__PURE__*/
|
|
521
|
-
messageDesc(file_notification_v2_notification,
|
|
586
|
+
messageDesc(file_notification_v2_notification, 18);
|
|
522
587
|
|
|
523
588
|
/**
|
|
524
589
|
* @generated from message notification.v2.GetConsolidatedEmailRequest
|
|
@@ -544,7 +609,7 @@ export type GetConsolidatedEmailRequest = Message<"notification.v2.GetConsolidat
|
|
|
544
609
|
* Use `create(GetConsolidatedEmailRequestSchema)` to create a new message.
|
|
545
610
|
*/
|
|
546
611
|
export const GetConsolidatedEmailRequestSchema: GenMessage<GetConsolidatedEmailRequest> = /*@__PURE__*/
|
|
547
|
-
messageDesc(file_notification_v2_notification,
|
|
612
|
+
messageDesc(file_notification_v2_notification, 19);
|
|
548
613
|
|
|
549
614
|
/**
|
|
550
615
|
* @generated from message notification.v2.GetConsolidatedEmailResponse
|
|
@@ -561,7 +626,7 @@ export type GetConsolidatedEmailResponse = Message<"notification.v2.GetConsolida
|
|
|
561
626
|
* Use `create(GetConsolidatedEmailResponseSchema)` to create a new message.
|
|
562
627
|
*/
|
|
563
628
|
export const GetConsolidatedEmailResponseSchema: GenMessage<GetConsolidatedEmailResponse> = /*@__PURE__*/
|
|
564
|
-
messageDesc(file_notification_v2_notification,
|
|
629
|
+
messageDesc(file_notification_v2_notification, 20);
|
|
565
630
|
|
|
566
631
|
/**
|
|
567
632
|
* @generated from message notification.v2.ConsolidatedEmail
|
|
@@ -613,7 +678,7 @@ export type ConsolidatedEmail = Message<"notification.v2.ConsolidatedEmail"> & {
|
|
|
613
678
|
* Use `create(ConsolidatedEmailSchema)` to create a new message.
|
|
614
679
|
*/
|
|
615
680
|
export const ConsolidatedEmailSchema: GenMessage<ConsolidatedEmail> = /*@__PURE__*/
|
|
616
|
-
messageDesc(file_notification_v2_notification,
|
|
681
|
+
messageDesc(file_notification_v2_notification, 21);
|
|
617
682
|
|
|
618
683
|
/**
|
|
619
684
|
* @generated from message notification.v2.ConsolidatedEmailItem
|
|
@@ -650,7 +715,7 @@ export type ConsolidatedEmailItem = Message<"notification.v2.ConsolidatedEmailIt
|
|
|
650
715
|
* Use `create(ConsolidatedEmailItemSchema)` to create a new message.
|
|
651
716
|
*/
|
|
652
717
|
export const ConsolidatedEmailItemSchema: GenMessage<ConsolidatedEmailItem> = /*@__PURE__*/
|
|
653
|
-
messageDesc(file_notification_v2_notification,
|
|
718
|
+
messageDesc(file_notification_v2_notification, 22);
|
|
654
719
|
|
|
655
720
|
/**
|
|
656
721
|
* @generated from message notification.v2.RenderEmailPreviewRequest
|
|
@@ -682,7 +747,7 @@ export type RenderEmailPreviewRequest = Message<"notification.v2.RenderEmailPrev
|
|
|
682
747
|
* Use `create(RenderEmailPreviewRequestSchema)` to create a new message.
|
|
683
748
|
*/
|
|
684
749
|
export const RenderEmailPreviewRequestSchema: GenMessage<RenderEmailPreviewRequest> = /*@__PURE__*/
|
|
685
|
-
messageDesc(file_notification_v2_notification,
|
|
750
|
+
messageDesc(file_notification_v2_notification, 23);
|
|
686
751
|
|
|
687
752
|
/**
|
|
688
753
|
* @generated from message notification.v2.RenderEmailPreviewResponse
|
|
@@ -729,7 +794,7 @@ export type RenderEmailPreviewResponse = Message<"notification.v2.RenderEmailPre
|
|
|
729
794
|
* Use `create(RenderEmailPreviewResponseSchema)` to create a new message.
|
|
730
795
|
*/
|
|
731
796
|
export const RenderEmailPreviewResponseSchema: GenMessage<RenderEmailPreviewResponse> = /*@__PURE__*/
|
|
732
|
-
messageDesc(file_notification_v2_notification,
|
|
797
|
+
messageDesc(file_notification_v2_notification, 24);
|
|
733
798
|
|
|
734
799
|
/**
|
|
735
800
|
* @generated from message notification.v2.TriggerChasesRequest
|
|
@@ -742,7 +807,7 @@ export type TriggerChasesRequest = Message<"notification.v2.TriggerChasesRequest
|
|
|
742
807
|
* Use `create(TriggerChasesRequestSchema)` to create a new message.
|
|
743
808
|
*/
|
|
744
809
|
export const TriggerChasesRequestSchema: GenMessage<TriggerChasesRequest> = /*@__PURE__*/
|
|
745
|
-
messageDesc(file_notification_v2_notification,
|
|
810
|
+
messageDesc(file_notification_v2_notification, 25);
|
|
746
811
|
|
|
747
812
|
/**
|
|
748
813
|
* @generated from message notification.v2.TriggerChasesResponse
|
|
@@ -764,7 +829,43 @@ export type TriggerChasesResponse = Message<"notification.v2.TriggerChasesRespon
|
|
|
764
829
|
* Use `create(TriggerChasesResponseSchema)` to create a new message.
|
|
765
830
|
*/
|
|
766
831
|
export const TriggerChasesResponseSchema: GenMessage<TriggerChasesResponse> = /*@__PURE__*/
|
|
767
|
-
messageDesc(file_notification_v2_notification,
|
|
832
|
+
messageDesc(file_notification_v2_notification, 26);
|
|
833
|
+
|
|
834
|
+
/**
|
|
835
|
+
* @generated from message notification.v2.RetryFailedEmailRequest
|
|
836
|
+
*/
|
|
837
|
+
export type RetryFailedEmailRequest = Message<"notification.v2.RetryFailedEmailRequest"> & {
|
|
838
|
+
/**
|
|
839
|
+
* @generated from field: string email_send_id = 1;
|
|
840
|
+
*/
|
|
841
|
+
emailSendId: string;
|
|
842
|
+
};
|
|
843
|
+
|
|
844
|
+
/**
|
|
845
|
+
* Describes the message notification.v2.RetryFailedEmailRequest.
|
|
846
|
+
* Use `create(RetryFailedEmailRequestSchema)` to create a new message.
|
|
847
|
+
*/
|
|
848
|
+
export const RetryFailedEmailRequestSchema: GenMessage<RetryFailedEmailRequest> = /*@__PURE__*/
|
|
849
|
+
messageDesc(file_notification_v2_notification, 27);
|
|
850
|
+
|
|
851
|
+
/**
|
|
852
|
+
* @generated from message notification.v2.RetryFailedEmailResponse
|
|
853
|
+
*/
|
|
854
|
+
export type RetryFailedEmailResponse = Message<"notification.v2.RetryFailedEmailResponse"> & {
|
|
855
|
+
/**
|
|
856
|
+
* the new send row created for the retry attempt
|
|
857
|
+
*
|
|
858
|
+
* @generated from field: string email_send_id = 1;
|
|
859
|
+
*/
|
|
860
|
+
emailSendId: string;
|
|
861
|
+
};
|
|
862
|
+
|
|
863
|
+
/**
|
|
864
|
+
* Describes the message notification.v2.RetryFailedEmailResponse.
|
|
865
|
+
* Use `create(RetryFailedEmailResponseSchema)` to create a new message.
|
|
866
|
+
*/
|
|
867
|
+
export const RetryFailedEmailResponseSchema: GenMessage<RetryFailedEmailResponse> = /*@__PURE__*/
|
|
868
|
+
messageDesc(file_notification_v2_notification, 28);
|
|
768
869
|
|
|
769
870
|
/**
|
|
770
871
|
* @generated from message notification.v2.GetJobGroupEmailHistoryRequest
|
|
@@ -781,7 +882,7 @@ export type GetJobGroupEmailHistoryRequest = Message<"notification.v2.GetJobGrou
|
|
|
781
882
|
* Use `create(GetJobGroupEmailHistoryRequestSchema)` to create a new message.
|
|
782
883
|
*/
|
|
783
884
|
export const GetJobGroupEmailHistoryRequestSchema: GenMessage<GetJobGroupEmailHistoryRequest> = /*@__PURE__*/
|
|
784
|
-
messageDesc(file_notification_v2_notification,
|
|
885
|
+
messageDesc(file_notification_v2_notification, 29);
|
|
785
886
|
|
|
786
887
|
/**
|
|
787
888
|
* @generated from message notification.v2.GetJobGroupEmailHistoryResponse
|
|
@@ -798,7 +899,7 @@ export type GetJobGroupEmailHistoryResponse = Message<"notification.v2.GetJobGro
|
|
|
798
899
|
* Use `create(GetJobGroupEmailHistoryResponseSchema)` to create a new message.
|
|
799
900
|
*/
|
|
800
901
|
export const GetJobGroupEmailHistoryResponseSchema: GenMessage<GetJobGroupEmailHistoryResponse> = /*@__PURE__*/
|
|
801
|
-
messageDesc(file_notification_v2_notification,
|
|
902
|
+
messageDesc(file_notification_v2_notification, 30);
|
|
802
903
|
|
|
803
904
|
/**
|
|
804
905
|
* @generated from message notification.v2.GetJobEmailHistoryInGroupRequest
|
|
@@ -820,7 +921,7 @@ export type GetJobEmailHistoryInGroupRequest = Message<"notification.v2.GetJobEm
|
|
|
820
921
|
* Use `create(GetJobEmailHistoryInGroupRequestSchema)` to create a new message.
|
|
821
922
|
*/
|
|
822
923
|
export const GetJobEmailHistoryInGroupRequestSchema: GenMessage<GetJobEmailHistoryInGroupRequest> = /*@__PURE__*/
|
|
823
|
-
messageDesc(file_notification_v2_notification,
|
|
924
|
+
messageDesc(file_notification_v2_notification, 31);
|
|
824
925
|
|
|
825
926
|
/**
|
|
826
927
|
* @generated from message notification.v2.GetJobEmailHistoryInGroupResponse
|
|
@@ -837,7 +938,7 @@ export type GetJobEmailHistoryInGroupResponse = Message<"notification.v2.GetJobE
|
|
|
837
938
|
* Use `create(GetJobEmailHistoryInGroupResponseSchema)` to create a new message.
|
|
838
939
|
*/
|
|
839
940
|
export const GetJobEmailHistoryInGroupResponseSchema: GenMessage<GetJobEmailHistoryInGroupResponse> = /*@__PURE__*/
|
|
840
|
-
messageDesc(file_notification_v2_notification,
|
|
941
|
+
messageDesc(file_notification_v2_notification, 32);
|
|
841
942
|
|
|
842
943
|
/**
|
|
843
944
|
* @generated from message notification.v2.EmailTimelineEntry
|
|
@@ -914,7 +1015,7 @@ export type EmailTimelineEntry = Message<"notification.v2.EmailTimelineEntry"> &
|
|
|
914
1015
|
* Use `create(EmailTimelineEntrySchema)` to create a new message.
|
|
915
1016
|
*/
|
|
916
1017
|
export const EmailTimelineEntrySchema: GenMessage<EmailTimelineEntry> = /*@__PURE__*/
|
|
917
|
-
messageDesc(file_notification_v2_notification,
|
|
1018
|
+
messageDesc(file_notification_v2_notification, 33);
|
|
918
1019
|
|
|
919
1020
|
/**
|
|
920
1021
|
* @generated from enum notification.v2.NotificationStatus
|
|
@@ -4,14 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import type { GenFile, GenService } from "@bufbuild/protobuf/codegenv2";
|
|
6
6
|
import { fileDesc, serviceDesc } from "@bufbuild/protobuf/codegenv2";
|
|
7
|
-
import type { ExtendConsolidatedTimerRequestSchema, ExtendConsolidatedTimerResponseSchema, GetConsolidatedEmailRequestSchema, GetConsolidatedEmailResponseSchema, GetEmailSendsRequestSchema, GetEmailSendsResponseSchema, GetJobEmailHistoryInGroupRequestSchema, GetJobEmailHistoryInGroupResponseSchema, GetJobGroupEmailHistoryRequestSchema, GetJobGroupEmailHistoryResponseSchema, GetNotificationRequestSchema, GetNotificationResponseSchema, RenderEmailPreviewRequestSchema, RenderEmailPreviewResponseSchema, SendBulkReminderRequestSchema, SendBulkReminderResponseSchema, SendConsolidatedNowRequestSchema, SendConsolidatedNowResponseSchema, SendReminderRequestSchema, SendReminderResponseSchema, SetEmailOpenedRequestSchema, SetEmailOpenedResponseSchema, TriggerChasesRequestSchema, TriggerChasesResponseSchema } from "./notification_pb.js";
|
|
7
|
+
import type { BatchGetEmailSendsRequestSchema, BatchGetEmailSendsResponseSchema, ExtendConsolidatedTimerRequestSchema, ExtendConsolidatedTimerResponseSchema, GetConsolidatedEmailRequestSchema, GetConsolidatedEmailResponseSchema, GetEmailSendsRequestSchema, GetEmailSendsResponseSchema, GetJobEmailHistoryInGroupRequestSchema, GetJobEmailHistoryInGroupResponseSchema, GetJobGroupEmailHistoryRequestSchema, GetJobGroupEmailHistoryResponseSchema, GetNotificationRequestSchema, GetNotificationResponseSchema, RenderEmailPreviewRequestSchema, RenderEmailPreviewResponseSchema, RetryFailedEmailRequestSchema, RetryFailedEmailResponseSchema, SendBulkReminderRequestSchema, SendBulkReminderResponseSchema, SendConsolidatedNowRequestSchema, SendConsolidatedNowResponseSchema, SendReminderRequestSchema, SendReminderResponseSchema, SetEmailOpenedRequestSchema, SetEmailOpenedResponseSchema, TriggerChasesRequestSchema, TriggerChasesResponseSchema } from "./notification_pb.js";
|
|
8
8
|
import { file_notification_v2_notification } from "./notification_pb.js";
|
|
9
9
|
|
|
10
10
|
/**
|
|
11
11
|
* Describes the file notification/v2/notification_service.proto.
|
|
12
12
|
*/
|
|
13
13
|
export const file_notification_v2_notification_service: GenFile = /*@__PURE__*/
|
|
14
|
-
fileDesc("
|
|
14
|
+
fileDesc("Cipub3RpZmljYXRpb24vdjIvbm90aWZpY2F0aW9uX3NlcnZpY2UucHJvdG8SD25vdGlmaWNhdGlvbi52MjKvDAoTTm90aWZpY2F0aW9uU2VydmljZRJdCgxTZW5kUmVtaW5kZXISJC5ub3RpZmljYXRpb24udjIuU2VuZFJlbWluZGVyUmVxdWVzdBolLm5vdGlmaWNhdGlvbi52Mi5TZW5kUmVtaW5kZXJSZXNwb25zZSIAEmkKEFNlbmRCdWxrUmVtaW5kZXISKC5ub3RpZmljYXRpb24udjIuU2VuZEJ1bGtSZW1pbmRlclJlcXVlc3QaKS5ub3RpZmljYXRpb24udjIuU2VuZEJ1bGtSZW1pbmRlclJlc3BvbnNlIgASYwoOU2V0RW1haWxPcGVuZWQSJi5ub3RpZmljYXRpb24udjIuU2V0RW1haWxPcGVuZWRSZXF1ZXN0Gicubm90aWZpY2F0aW9uLnYyLlNldEVtYWlsT3BlbmVkUmVzcG9uc2UiABJmCg9HZXROb3RpZmljYXRpb24SJy5ub3RpZmljYXRpb24udjIuR2V0Tm90aWZpY2F0aW9uUmVxdWVzdBooLm5vdGlmaWNhdGlvbi52Mi5HZXROb3RpZmljYXRpb25SZXNwb25zZSIAEmAKDUdldEVtYWlsU2VuZHMSJS5ub3RpZmljYXRpb24udjIuR2V0RW1haWxTZW5kc1JlcXVlc3QaJi5ub3RpZmljYXRpb24udjIuR2V0RW1haWxTZW5kc1Jlc3BvbnNlIgASbwoSQmF0Y2hHZXRFbWFpbFNlbmRzEioubm90aWZpY2F0aW9uLnYyLkJhdGNoR2V0RW1haWxTZW5kc1JlcXVlc3QaKy5ub3RpZmljYXRpb24udjIuQmF0Y2hHZXRFbWFpbFNlbmRzUmVzcG9uc2UiABJyChNTZW5kQ29uc29saWRhdGVkTm93Eisubm90aWZpY2F0aW9uLnYyLlNlbmRDb25zb2xpZGF0ZWROb3dSZXF1ZXN0Giwubm90aWZpY2F0aW9uLnYyLlNlbmRDb25zb2xpZGF0ZWROb3dSZXNwb25zZSIAEn4KF0V4dGVuZENvbnNvbGlkYXRlZFRpbWVyEi8ubm90aWZpY2F0aW9uLnYyLkV4dGVuZENvbnNvbGlkYXRlZFRpbWVyUmVxdWVzdBowLm5vdGlmaWNhdGlvbi52Mi5FeHRlbmRDb25zb2xpZGF0ZWRUaW1lclJlc3BvbnNlIgASdQoUR2V0Q29uc29saWRhdGVkRW1haWwSLC5ub3RpZmljYXRpb24udjIuR2V0Q29uc29saWRhdGVkRW1haWxSZXF1ZXN0Gi0ubm90aWZpY2F0aW9uLnYyLkdldENvbnNvbGlkYXRlZEVtYWlsUmVzcG9uc2UiABJvChJSZW5kZXJFbWFpbFByZXZpZXcSKi5ub3RpZmljYXRpb24udjIuUmVuZGVyRW1haWxQcmV2aWV3UmVxdWVzdBorLm5vdGlmaWNhdGlvbi52Mi5SZW5kZXJFbWFpbFByZXZpZXdSZXNwb25zZSIAEmAKDVRyaWdnZXJDaGFzZXMSJS5ub3RpZmljYXRpb24udjIuVHJpZ2dlckNoYXNlc1JlcXVlc3QaJi5ub3RpZmljYXRpb24udjIuVHJpZ2dlckNoYXNlc1Jlc3BvbnNlIgASaQoQUmV0cnlGYWlsZWRFbWFpbBIoLm5vdGlmaWNhdGlvbi52Mi5SZXRyeUZhaWxlZEVtYWlsUmVxdWVzdBopLm5vdGlmaWNhdGlvbi52Mi5SZXRyeUZhaWxlZEVtYWlsUmVzcG9uc2UiABJ+ChdHZXRKb2JHcm91cEVtYWlsSGlzdG9yeRIvLm5vdGlmaWNhdGlvbi52Mi5HZXRKb2JHcm91cEVtYWlsSGlzdG9yeVJlcXVlc3QaMC5ub3RpZmljYXRpb24udjIuR2V0Sm9iR3JvdXBFbWFpbEhpc3RvcnlSZXNwb25zZSIAEoQBChlHZXRKb2JFbWFpbEhpc3RvcnlJbkdyb3VwEjEubm90aWZpY2F0aW9uLnYyLkdldEpvYkVtYWlsSGlzdG9yeUluR3JvdXBSZXF1ZXN0GjIubm90aWZpY2F0aW9uLnYyLkdldEpvYkVtYWlsSGlzdG9yeUluR3JvdXBSZXNwb25zZSIAQlRaUmJpdGJ1Y2tldC5vcmcva3Vkb3VrL2FydHdvcmtlci1iYWNrZW5kL3Byb3RvL2dlbi9nby9ub3RpZmljYXRpb24vdjI7bm90aWZpY2F0aW9udjJiBnByb3RvMw", [file_notification_v2_notification]);
|
|
15
15
|
|
|
16
16
|
/**
|
|
17
17
|
* @generated from service notification.v2.NotificationService
|
|
@@ -57,6 +57,14 @@ export const NotificationService: GenService<{
|
|
|
57
57
|
input: typeof GetEmailSendsRequestSchema;
|
|
58
58
|
output: typeof GetEmailSendsResponseSchema;
|
|
59
59
|
},
|
|
60
|
+
/**
|
|
61
|
+
* @generated from rpc notification.v2.NotificationService.BatchGetEmailSends
|
|
62
|
+
*/
|
|
63
|
+
batchGetEmailSends: {
|
|
64
|
+
methodKind: "unary";
|
|
65
|
+
input: typeof BatchGetEmailSendsRequestSchema;
|
|
66
|
+
output: typeof BatchGetEmailSendsResponseSchema;
|
|
67
|
+
},
|
|
60
68
|
/**
|
|
61
69
|
* @generated from rpc notification.v2.NotificationService.SendConsolidatedNow
|
|
62
70
|
*/
|
|
@@ -97,6 +105,14 @@ export const NotificationService: GenService<{
|
|
|
97
105
|
input: typeof TriggerChasesRequestSchema;
|
|
98
106
|
output: typeof TriggerChasesResponseSchema;
|
|
99
107
|
},
|
|
108
|
+
/**
|
|
109
|
+
* @generated from rpc notification.v2.NotificationService.RetryFailedEmail
|
|
110
|
+
*/
|
|
111
|
+
retryFailedEmail: {
|
|
112
|
+
methodKind: "unary";
|
|
113
|
+
input: typeof RetryFailedEmailRequestSchema;
|
|
114
|
+
output: typeof RetryFailedEmailResponseSchema;
|
|
115
|
+
},
|
|
100
116
|
/**
|
|
101
117
|
* @generated from rpc notification.v2.NotificationService.GetJobGroupEmailHistory
|
|
102
118
|
*/
|