@pagopa/interop-outbound-models 1.8.14 → 1.8.16

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/CHANGELOG.md CHANGED
@@ -2,6 +2,26 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## 1.8.16
6
+
7
+ ### Added
8
+ - Added `startedAt` property to `ArchivingScheduleV2`
9
+
10
+ ## 1.8.15
11
+
12
+ ### Added
13
+ - Added `ArchivingScheduleV2` message and `ArchivingScopeV2` enum
14
+ - Added `archivingSchedule` property to `EServiceDescriptorV2`
15
+ - Added `archivingReason` property to `EServiceV2`
16
+ - Added `ARCHIVING` and `ARCHIVING_SUSPENDED` states to `EServiceDescriptorStateV2`
17
+ - Added archiving scheduled events:
18
+ - `EServiceArchivingScheduled`
19
+ - `EServiceArchivingCanceled`
20
+ - `EServiceArchivingCompleted`
21
+ - `EServiceDescriptorArchivingScheduled`
22
+ - `EServiceDescriptorArchivingCanceled`
23
+ - `EServiceDescriptorArchivingCompleted`
24
+
5
25
  ## 1.8.14
6
26
 
7
27
  ### Renamed
@@ -1,5 +1,5 @@
1
1
  import { z } from "zod";
2
- import { DraftEServiceUpdatedV2, EServiceAddedV2, EServiceClonedV2, EServiceDeletedV2, EServiceDescriptorActivatedV2, EServiceDescriptorAddedV2, EServiceDescriptorArchivedV2, EServiceDescriptorDocumentAddedV2, EServiceDescriptorDocumentDeletedV2, EServiceDescriptorDocumentUpdatedV2, EServiceDescriptorInterfaceAddedV2, EServiceDescriptorInterfaceDeletedV2, EServiceDescriptorInterfaceUpdatedV2, EServiceDescriptorPublishedV2, EServiceDescriptorSuspendedV2, EServiceDraftDescriptorDeletedV2, EServiceDraftDescriptorUpdatedV2, EServiceDescriptorQuotasUpdatedV2, EServiceDescriptionUpdatedV2, EServiceDescriptorSubmittedByDelegateV2, EServiceDescriptorApprovedByDelegatorV2, EServiceDescriptorRejectedByDelegatorV2, EServiceDescriptorAttributesUpdatedV2, EServiceIsClientAccessDelegableDisabledV2, EServiceIsClientAccessDelegableEnabledV2, EServiceIsConsumerDelegableDisabledV2, EServiceIsConsumerDelegableEnabledV2, EServiceNameUpdatedV2, EServiceDescriptionUpdatedByTemplateUpdateV2, EServiceDescriptorQuotasUpdatedByTemplateUpdateV2, EServiceDescriptorAttributesUpdatedByTemplateUpdateV2, EServiceDescriptorDocumentAddedByTemplateUpdateV2, EServiceDescriptorDocumentUpdatedByTemplateUpdateV2, EServiceDescriptorDocumentDeletedByTemplateUpdateV2, EServiceNameUpdatedByTemplateUpdateV2, EServiceDescriptorAgreementApprovalPolicyUpdatedV2, EServiceSignalHubEnabledV2, EServiceSignalHubDisabledV2, EServicePersonalDataFlagUpdatedAfterPublicationV2, EServicePersonalDataFlagUpdatedByTemplateUpdateV2, EServiceInstanceLabelUpdatedV2, MaintenanceEServicePersonalDataFlagResetV2 } from "../gen/v2/eservice/events.js";
2
+ import { DraftEServiceUpdatedV2, EServiceAddedV2, EServiceClonedV2, EServiceDeletedV2, EServiceDescriptorActivatedV2, EServiceDescriptorAddedV2, EServiceDescriptorArchivedV2, EServiceDescriptorDocumentAddedV2, EServiceDescriptorDocumentDeletedV2, EServiceDescriptorDocumentUpdatedV2, EServiceDescriptorInterfaceAddedV2, EServiceDescriptorInterfaceDeletedV2, EServiceDescriptorInterfaceUpdatedV2, EServiceDescriptorPublishedV2, EServiceDescriptorSuspendedV2, EServiceDraftDescriptorDeletedV2, EServiceDraftDescriptorUpdatedV2, EServiceDescriptorQuotasUpdatedV2, EServiceDescriptionUpdatedV2, EServiceDescriptorSubmittedByDelegateV2, EServiceDescriptorApprovedByDelegatorV2, EServiceDescriptorRejectedByDelegatorV2, EServiceDescriptorAttributesUpdatedV2, EServiceIsClientAccessDelegableDisabledV2, EServiceIsClientAccessDelegableEnabledV2, EServiceIsConsumerDelegableDisabledV2, EServiceIsConsumerDelegableEnabledV2, EServiceNameUpdatedV2, EServiceDescriptionUpdatedByTemplateUpdateV2, EServiceDescriptorQuotasUpdatedByTemplateUpdateV2, EServiceDescriptorAttributesUpdatedByTemplateUpdateV2, EServiceDescriptorDocumentAddedByTemplateUpdateV2, EServiceDescriptorDocumentUpdatedByTemplateUpdateV2, EServiceDescriptorDocumentDeletedByTemplateUpdateV2, EServiceNameUpdatedByTemplateUpdateV2, EServiceDescriptorAgreementApprovalPolicyUpdatedV2, EServiceSignalHubEnabledV2, EServiceSignalHubDisabledV2, EServicePersonalDataFlagUpdatedAfterPublicationV2, EServicePersonalDataFlagUpdatedByTemplateUpdateV2, EServiceInstanceLabelUpdatedV2, EServiceDescriptorArchivingScheduledV2, EServiceDescriptorArchivingCanceledV2, EServiceDescriptorArchivingCompletedV2, EServiceArchivingScheduledV2, EServiceArchivingCanceledV2, EServiceArchivingCompletedV2, MaintenanceEServicePersonalDataFlagResetV2 } from "../gen/v2/eservice/events.js";
3
3
  export declare function eServiceEventToBinaryDataV2(event: EServiceEventV2): Uint8Array;
4
4
  export declare const EServiceEventV2: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
5
5
  event_version: z.ZodLiteral<2>;
@@ -883,6 +883,132 @@ export declare const EServiceEventV2: z.ZodDiscriminatedUnion<"type", [z.ZodObje
883
883
  stream_id: string;
884
884
  timestamp: Date;
885
885
  data?: any;
886
+ }>, z.ZodObject<{
887
+ event_version: z.ZodLiteral<2>;
888
+ type: z.ZodLiteral<"EServiceDescriptorArchivingScheduled">;
889
+ data: z.ZodEffects<z.ZodAny, EServiceDescriptorArchivingScheduledV2, any>;
890
+ stream_id: z.ZodString;
891
+ version: z.ZodNumber;
892
+ timestamp: z.ZodDate;
893
+ }, "strip", z.ZodTypeAny, {
894
+ event_version: 2;
895
+ type: "EServiceDescriptorArchivingScheduled";
896
+ version: number;
897
+ data: EServiceDescriptorArchivingScheduledV2;
898
+ stream_id: string;
899
+ timestamp: Date;
900
+ }, {
901
+ event_version: 2;
902
+ type: "EServiceDescriptorArchivingScheduled";
903
+ version: number;
904
+ stream_id: string;
905
+ timestamp: Date;
906
+ data?: any;
907
+ }>, z.ZodObject<{
908
+ event_version: z.ZodLiteral<2>;
909
+ type: z.ZodLiteral<"EServiceDescriptorArchivingCanceled">;
910
+ data: z.ZodEffects<z.ZodAny, EServiceDescriptorArchivingCanceledV2, any>;
911
+ stream_id: z.ZodString;
912
+ version: z.ZodNumber;
913
+ timestamp: z.ZodDate;
914
+ }, "strip", z.ZodTypeAny, {
915
+ event_version: 2;
916
+ type: "EServiceDescriptorArchivingCanceled";
917
+ version: number;
918
+ data: EServiceDescriptorArchivingCanceledV2;
919
+ stream_id: string;
920
+ timestamp: Date;
921
+ }, {
922
+ event_version: 2;
923
+ type: "EServiceDescriptorArchivingCanceled";
924
+ version: number;
925
+ stream_id: string;
926
+ timestamp: Date;
927
+ data?: any;
928
+ }>, z.ZodObject<{
929
+ event_version: z.ZodLiteral<2>;
930
+ type: z.ZodLiteral<"EServiceDescriptorArchivingCompleted">;
931
+ data: z.ZodEffects<z.ZodAny, EServiceDescriptorArchivingCompletedV2, any>;
932
+ stream_id: z.ZodString;
933
+ version: z.ZodNumber;
934
+ timestamp: z.ZodDate;
935
+ }, "strip", z.ZodTypeAny, {
936
+ event_version: 2;
937
+ type: "EServiceDescriptorArchivingCompleted";
938
+ version: number;
939
+ data: EServiceDescriptorArchivingCompletedV2;
940
+ stream_id: string;
941
+ timestamp: Date;
942
+ }, {
943
+ event_version: 2;
944
+ type: "EServiceDescriptorArchivingCompleted";
945
+ version: number;
946
+ stream_id: string;
947
+ timestamp: Date;
948
+ data?: any;
949
+ }>, z.ZodObject<{
950
+ event_version: z.ZodLiteral<2>;
951
+ type: z.ZodLiteral<"EServiceArchivingScheduled">;
952
+ data: z.ZodEffects<z.ZodAny, EServiceArchivingScheduledV2, any>;
953
+ stream_id: z.ZodString;
954
+ version: z.ZodNumber;
955
+ timestamp: z.ZodDate;
956
+ }, "strip", z.ZodTypeAny, {
957
+ event_version: 2;
958
+ type: "EServiceArchivingScheduled";
959
+ version: number;
960
+ data: EServiceArchivingScheduledV2;
961
+ stream_id: string;
962
+ timestamp: Date;
963
+ }, {
964
+ event_version: 2;
965
+ type: "EServiceArchivingScheduled";
966
+ version: number;
967
+ stream_id: string;
968
+ timestamp: Date;
969
+ data?: any;
970
+ }>, z.ZodObject<{
971
+ event_version: z.ZodLiteral<2>;
972
+ type: z.ZodLiteral<"EServiceArchivingCanceled">;
973
+ data: z.ZodEffects<z.ZodAny, EServiceArchivingCanceledV2, any>;
974
+ stream_id: z.ZodString;
975
+ version: z.ZodNumber;
976
+ timestamp: z.ZodDate;
977
+ }, "strip", z.ZodTypeAny, {
978
+ event_version: 2;
979
+ type: "EServiceArchivingCanceled";
980
+ version: number;
981
+ data: EServiceArchivingCanceledV2;
982
+ stream_id: string;
983
+ timestamp: Date;
984
+ }, {
985
+ event_version: 2;
986
+ type: "EServiceArchivingCanceled";
987
+ version: number;
988
+ stream_id: string;
989
+ timestamp: Date;
990
+ data?: any;
991
+ }>, z.ZodObject<{
992
+ event_version: z.ZodLiteral<2>;
993
+ type: z.ZodLiteral<"EServiceArchivingCompleted">;
994
+ data: z.ZodEffects<z.ZodAny, EServiceArchivingCompletedV2, any>;
995
+ stream_id: z.ZodString;
996
+ version: z.ZodNumber;
997
+ timestamp: z.ZodDate;
998
+ }, "strip", z.ZodTypeAny, {
999
+ event_version: 2;
1000
+ type: "EServiceArchivingCompleted";
1001
+ version: number;
1002
+ data: EServiceArchivingCompletedV2;
1003
+ stream_id: string;
1004
+ timestamp: Date;
1005
+ }, {
1006
+ event_version: 2;
1007
+ type: "EServiceArchivingCompleted";
1008
+ version: number;
1009
+ stream_id: string;
1010
+ timestamp: Date;
1011
+ data?: any;
886
1012
  }>]>;
887
1013
  export type EServiceEventV2 = z.infer<typeof EServiceEventV2>;
888
1014
  //# sourceMappingURL=eventsV2.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"eventsV2.d.ts","sourceRoot":"","sources":["../../src/eservice/eventsV2.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,OAAO,EACL,sBAAsB,EACtB,eAAe,EACf,gBAAgB,EAChB,iBAAiB,EACjB,6BAA6B,EAC7B,yBAAyB,EACzB,4BAA4B,EAC5B,iCAAiC,EACjC,mCAAmC,EACnC,mCAAmC,EACnC,kCAAkC,EAClC,oCAAoC,EACpC,oCAAoC,EACpC,6BAA6B,EAC7B,6BAA6B,EAC7B,gCAAgC,EAChC,gCAAgC,EAChC,iCAAiC,EACjC,4BAA4B,EAC5B,uCAAuC,EACvC,uCAAuC,EACvC,uCAAuC,EACvC,qCAAqC,EACrC,yCAAyC,EACzC,wCAAwC,EACxC,qCAAqC,EACrC,oCAAoC,EACpC,qBAAqB,EACrB,4CAA4C,EAC5C,iDAAiD,EACjD,qDAAqD,EACrD,iDAAiD,EACjD,mDAAmD,EACnD,mDAAmD,EACnD,qCAAqC,EACrC,kDAAkD,EAClD,0BAA0B,EAC1B,2BAA2B,EAC3B,iDAAiD,EACjD,iDAAiD,EACjD,8BAA8B,EAC9B,0CAA0C,EAC3C,MAAM,8BAA8B,CAAC;AAEtC,wBAAgB,2BAA2B,CACzC,KAAK,EAAE,eAAe,GACrB,UAAU,CAiJZ;AAED,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAmV1B,CAAC;AAEH,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC"}
1
+ {"version":3,"file":"eventsV2.d.ts","sourceRoot":"","sources":["../../src/eservice/eventsV2.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,OAAO,EACL,sBAAsB,EACtB,eAAe,EACf,gBAAgB,EAChB,iBAAiB,EACjB,6BAA6B,EAC7B,yBAAyB,EACzB,4BAA4B,EAC5B,iCAAiC,EACjC,mCAAmC,EACnC,mCAAmC,EACnC,kCAAkC,EAClC,oCAAoC,EACpC,oCAAoC,EACpC,6BAA6B,EAC7B,6BAA6B,EAC7B,gCAAgC,EAChC,gCAAgC,EAChC,iCAAiC,EACjC,4BAA4B,EAC5B,uCAAuC,EACvC,uCAAuC,EACvC,uCAAuC,EACvC,qCAAqC,EACrC,yCAAyC,EACzC,wCAAwC,EACxC,qCAAqC,EACrC,oCAAoC,EACpC,qBAAqB,EACrB,4CAA4C,EAC5C,iDAAiD,EACjD,qDAAqD,EACrD,iDAAiD,EACjD,mDAAmD,EACnD,mDAAmD,EACnD,qCAAqC,EACrC,kDAAkD,EAClD,0BAA0B,EAC1B,2BAA2B,EAC3B,iDAAiD,EACjD,iDAAiD,EACjD,8BAA8B,EAC9B,sCAAsC,EACtC,qCAAqC,EACrC,sCAAsC,EACtC,4BAA4B,EAC5B,2BAA2B,EAC3B,4BAA4B,EAC5B,0CAA0C,EAC3C,MAAM,8BAA8B,CAAC;AAEtC,wBAAgB,2BAA2B,CACzC,KAAK,EAAE,eAAe,GACrB,UAAU,CAmKZ;AAED,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAmY1B,CAAC;AAEH,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC"}
@@ -1,7 +1,7 @@
1
1
  import { match } from "ts-pattern";
2
2
  import { z } from "zod";
3
3
  import { protobufDecoder } from "../utils.js";
4
- import { DraftEServiceUpdatedV2, EServiceAddedV2, EServiceClonedV2, EServiceDeletedV2, EServiceDescriptorActivatedV2, EServiceDescriptorAddedV2, EServiceDescriptorArchivedV2, EServiceDescriptorDocumentAddedV2, EServiceDescriptorDocumentDeletedV2, EServiceDescriptorDocumentUpdatedV2, EServiceDescriptorInterfaceAddedV2, EServiceDescriptorInterfaceDeletedV2, EServiceDescriptorInterfaceUpdatedV2, EServiceDescriptorPublishedV2, EServiceDescriptorSuspendedV2, EServiceDraftDescriptorDeletedV2, EServiceDraftDescriptorUpdatedV2, EServiceDescriptorQuotasUpdatedV2, EServiceDescriptionUpdatedV2, EServiceDescriptorSubmittedByDelegateV2, EServiceDescriptorApprovedByDelegatorV2, EServiceDescriptorRejectedByDelegatorV2, EServiceDescriptorAttributesUpdatedV2, EServiceIsClientAccessDelegableDisabledV2, EServiceIsClientAccessDelegableEnabledV2, EServiceIsConsumerDelegableDisabledV2, EServiceIsConsumerDelegableEnabledV2, EServiceNameUpdatedV2, EServiceDescriptionUpdatedByTemplateUpdateV2, EServiceDescriptorQuotasUpdatedByTemplateUpdateV2, EServiceDescriptorAttributesUpdatedByTemplateUpdateV2, EServiceDescriptorDocumentAddedByTemplateUpdateV2, EServiceDescriptorDocumentUpdatedByTemplateUpdateV2, EServiceDescriptorDocumentDeletedByTemplateUpdateV2, EServiceNameUpdatedByTemplateUpdateV2, EServiceDescriptorAgreementApprovalPolicyUpdatedV2, EServiceSignalHubEnabledV2, EServiceSignalHubDisabledV2, EServicePersonalDataFlagUpdatedAfterPublicationV2, EServicePersonalDataFlagUpdatedByTemplateUpdateV2, EServiceInstanceLabelUpdatedV2, MaintenanceEServicePersonalDataFlagResetV2, } from "../gen/v2/eservice/events.js";
4
+ import { DraftEServiceUpdatedV2, EServiceAddedV2, EServiceClonedV2, EServiceDeletedV2, EServiceDescriptorActivatedV2, EServiceDescriptorAddedV2, EServiceDescriptorArchivedV2, EServiceDescriptorDocumentAddedV2, EServiceDescriptorDocumentDeletedV2, EServiceDescriptorDocumentUpdatedV2, EServiceDescriptorInterfaceAddedV2, EServiceDescriptorInterfaceDeletedV2, EServiceDescriptorInterfaceUpdatedV2, EServiceDescriptorPublishedV2, EServiceDescriptorSuspendedV2, EServiceDraftDescriptorDeletedV2, EServiceDraftDescriptorUpdatedV2, EServiceDescriptorQuotasUpdatedV2, EServiceDescriptionUpdatedV2, EServiceDescriptorSubmittedByDelegateV2, EServiceDescriptorApprovedByDelegatorV2, EServiceDescriptorRejectedByDelegatorV2, EServiceDescriptorAttributesUpdatedV2, EServiceIsClientAccessDelegableDisabledV2, EServiceIsClientAccessDelegableEnabledV2, EServiceIsConsumerDelegableDisabledV2, EServiceIsConsumerDelegableEnabledV2, EServiceNameUpdatedV2, EServiceDescriptionUpdatedByTemplateUpdateV2, EServiceDescriptorQuotasUpdatedByTemplateUpdateV2, EServiceDescriptorAttributesUpdatedByTemplateUpdateV2, EServiceDescriptorDocumentAddedByTemplateUpdateV2, EServiceDescriptorDocumentUpdatedByTemplateUpdateV2, EServiceDescriptorDocumentDeletedByTemplateUpdateV2, EServiceNameUpdatedByTemplateUpdateV2, EServiceDescriptorAgreementApprovalPolicyUpdatedV2, EServiceSignalHubEnabledV2, EServiceSignalHubDisabledV2, EServicePersonalDataFlagUpdatedAfterPublicationV2, EServicePersonalDataFlagUpdatedByTemplateUpdateV2, EServiceInstanceLabelUpdatedV2, EServiceDescriptorArchivingScheduledV2, EServiceDescriptorArchivingCanceledV2, EServiceDescriptorArchivingCompletedV2, EServiceArchivingScheduledV2, EServiceArchivingCanceledV2, EServiceArchivingCompletedV2, MaintenanceEServicePersonalDataFlagResetV2, } from "../gen/v2/eservice/events.js";
5
5
  export function eServiceEventToBinaryDataV2(event) {
6
6
  return match(event)
7
7
  .with({ type: "EServiceAdded" }, ({ data }) => EServiceAddedV2.toBinary(data))
@@ -46,6 +46,12 @@ export function eServiceEventToBinaryDataV2(event) {
46
46
  .with({ type: "EServicePersonalDataFlagUpdatedByTemplateUpdate" }, ({ data }) => EServicePersonalDataFlagUpdatedByTemplateUpdateV2.toBinary(data))
47
47
  .with({ type: "EServiceInstanceLabelUpdated" }, ({ data }) => EServiceInstanceLabelUpdatedV2.toBinary(data))
48
48
  .with({ type: "MaintenanceEServicePersonalDataFlagReset" }, ({ data }) => MaintenanceEServicePersonalDataFlagResetV2.toBinary(data))
49
+ .with({ type: "EServiceDescriptorArchivingScheduled" }, ({ data }) => EServiceDescriptorArchivingScheduledV2.toBinary(data))
50
+ .with({ type: "EServiceDescriptorArchivingCanceled" }, ({ data }) => EServiceDescriptorArchivingCanceledV2.toBinary(data))
51
+ .with({ type: "EServiceDescriptorArchivingCompleted" }, ({ data }) => EServiceDescriptorArchivingCompletedV2.toBinary(data))
52
+ .with({ type: "EServiceArchivingScheduled" }, ({ data }) => EServiceArchivingScheduledV2.toBinary(data))
53
+ .with({ type: "EServiceArchivingCanceled" }, ({ data }) => EServiceArchivingCanceledV2.toBinary(data))
54
+ .with({ type: "EServiceArchivingCompleted" }, ({ data }) => EServiceArchivingCompletedV2.toBinary(data))
49
55
  .exhaustive();
50
56
  }
51
57
  export const EServiceEventV2 = z.discriminatedUnion("type", [
@@ -385,4 +391,52 @@ export const EServiceEventV2 = z.discriminatedUnion("type", [
385
391
  version: z.number(),
386
392
  timestamp: z.coerce.date(),
387
393
  }),
394
+ z.object({
395
+ event_version: z.literal(2),
396
+ type: z.literal("EServiceDescriptorArchivingScheduled"),
397
+ data: protobufDecoder(EServiceDescriptorArchivingScheduledV2),
398
+ stream_id: z.string(),
399
+ version: z.number(),
400
+ timestamp: z.coerce.date(),
401
+ }),
402
+ z.object({
403
+ event_version: z.literal(2),
404
+ type: z.literal("EServiceDescriptorArchivingCanceled"),
405
+ data: protobufDecoder(EServiceDescriptorArchivingCanceledV2),
406
+ stream_id: z.string(),
407
+ version: z.number(),
408
+ timestamp: z.coerce.date(),
409
+ }),
410
+ z.object({
411
+ event_version: z.literal(2),
412
+ type: z.literal("EServiceDescriptorArchivingCompleted"),
413
+ data: protobufDecoder(EServiceDescriptorArchivingCompletedV2),
414
+ stream_id: z.string(),
415
+ version: z.number(),
416
+ timestamp: z.coerce.date(),
417
+ }),
418
+ z.object({
419
+ event_version: z.literal(2),
420
+ type: z.literal("EServiceArchivingScheduled"),
421
+ data: protobufDecoder(EServiceArchivingScheduledV2),
422
+ stream_id: z.string(),
423
+ version: z.number(),
424
+ timestamp: z.coerce.date(),
425
+ }),
426
+ z.object({
427
+ event_version: z.literal(2),
428
+ type: z.literal("EServiceArchivingCanceled"),
429
+ data: protobufDecoder(EServiceArchivingCanceledV2),
430
+ stream_id: z.string(),
431
+ version: z.number(),
432
+ timestamp: z.coerce.date(),
433
+ }),
434
+ z.object({
435
+ event_version: z.literal(2),
436
+ type: z.literal("EServiceArchivingCompleted"),
437
+ data: protobufDecoder(EServiceArchivingCompletedV2),
438
+ stream_id: z.string(),
439
+ version: z.number(),
440
+ timestamp: z.coerce.date(),
441
+ }),
388
442
  ]);
@@ -386,6 +386,48 @@ export declare const EServiceEvent: z.ZodEffects<z.ZodDiscriminatedUnion<"event_
386
386
  data: import("../index.js").MaintenanceEServicePersonalDataFlagResetV2;
387
387
  stream_id: string;
388
388
  timestamp: Date;
389
+ } | {
390
+ event_version: 2;
391
+ type: "EServiceDescriptorArchivingScheduled";
392
+ version: number;
393
+ data: import("../index.js").EServiceDescriptorArchivingScheduledV2;
394
+ stream_id: string;
395
+ timestamp: Date;
396
+ } | {
397
+ event_version: 2;
398
+ type: "EServiceDescriptorArchivingCanceled";
399
+ version: number;
400
+ data: import("../index.js").EServiceDescriptorArchivingCanceledV2;
401
+ stream_id: string;
402
+ timestamp: Date;
403
+ } | {
404
+ event_version: 2;
405
+ type: "EServiceDescriptorArchivingCompleted";
406
+ version: number;
407
+ data: import("../index.js").EServiceDescriptorArchivingCompletedV2;
408
+ stream_id: string;
409
+ timestamp: Date;
410
+ } | {
411
+ event_version: 2;
412
+ type: "EServiceArchivingScheduled";
413
+ version: number;
414
+ data: import("../index.js").EServiceArchivingScheduledV2;
415
+ stream_id: string;
416
+ timestamp: Date;
417
+ } | {
418
+ event_version: 2;
419
+ type: "EServiceArchivingCanceled";
420
+ version: number;
421
+ data: import("../index.js").EServiceArchivingCanceledV2;
422
+ stream_id: string;
423
+ timestamp: Date;
424
+ } | {
425
+ event_version: 2;
426
+ type: "EServiceArchivingCompleted";
427
+ version: number;
428
+ data: import("../index.js").EServiceArchivingCompletedV2;
429
+ stream_id: string;
430
+ timestamp: Date;
389
431
  }, z.objectInputType<{
390
432
  event_version: z.ZodLiteral<1>;
391
433
  }, z.ZodTypeAny, "passthrough"> | z.objectInputType<{
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/eservice/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,OAAO,EAAE,eAAe,EAA+B,MAAM,eAAe,CAAC;AAC7E,OAAO,EAAE,eAAe,EAA+B,MAAM,eAAe,CAAC;AAS7E,wBAAgB,2BAA2B,CAAC,KAAK,EAAE,aAAa,GAAG,MAAM,CASxE;AAED,wBAAgB,2BAA2B,CACzC,YAAY,EAAE,MAAM,GACnB,aAAa,CAEf;AAED,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gCAWxB,CAAC;AAEH,MAAM,MAAM,iBAAiB,GAAG,aAAa,CAAC,MAAM,CAAC,CAAC;AACtD,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;AAC1D,OAAO,EAAE,eAAe,EAAE,eAAe,EAAE,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/eservice/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,OAAO,EAAE,eAAe,EAA+B,MAAM,eAAe,CAAC;AAC7E,OAAO,EAAE,eAAe,EAA+B,MAAM,eAAe,CAAC;AAS7E,wBAAgB,2BAA2B,CAAC,KAAK,EAAE,aAAa,GAAG,MAAM,CASxE;AAED,wBAAgB,2BAA2B,CACzC,YAAY,EAAE,MAAM,GACnB,aAAa,CAEf;AAED,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gCAWxB,CAAC;AAEH,MAAM,MAAM,iBAAiB,GAAG,aAAa,CAAC,MAAM,CAAC,CAAC;AACtD,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;AAC1D,OAAO,EAAE,eAAe,EAAE,eAAe,EAAE,CAAC"}
@@ -64,6 +64,10 @@ export interface EServiceV2 {
64
64
  * @generated from protobuf field: optional string instanceLabel = 15;
65
65
  */
66
66
  instanceLabel?: string;
67
+ /**
68
+ * @generated from protobuf field: optional string archivingReason = 16;
69
+ */
70
+ archivingReason?: string;
67
71
  }
68
72
  /**
69
73
  * @generated from protobuf message eservice.v2.EServiceAttributeValueV2
@@ -205,6 +209,10 @@ export interface EServiceDescriptorV2 {
205
209
  * @generated from protobuf field: optional eservice.v2.EServiceTemplateVersionRefV2 templateVersionRef = 20;
206
210
  */
207
211
  templateVersionRef?: EServiceTemplateVersionRefV2;
212
+ /**
213
+ * @generated from protobuf field: optional eservice.v2.ArchivingScheduleV2 archivingSchedule = 21;
214
+ */
215
+ archivingSchedule?: ArchivingScheduleV2;
208
216
  }
209
217
  /**
210
218
  * @generated from protobuf message eservice.v2.TemplateInstanceInterfaceMetadataV2
@@ -269,6 +277,23 @@ export interface EServiceDocumentV2 {
269
277
  */
270
278
  prettyName: string;
271
279
  }
280
+ /**
281
+ * @generated from protobuf message eservice.v2.ArchivingScheduleV2
282
+ */
283
+ export interface ArchivingScheduleV2 {
284
+ /**
285
+ * @generated from protobuf field: int64 archivableOn = 1;
286
+ */
287
+ archivableOn: bigint;
288
+ /**
289
+ * @generated from protobuf field: eservice.v2.ArchivingScopeV2 scope = 2;
290
+ */
291
+ scope: ArchivingScopeV2;
292
+ /**
293
+ * @generated from protobuf field: int64 startedAt = 3;
294
+ */
295
+ startedAt: bigint;
296
+ }
272
297
  /**
273
298
  * @generated from protobuf enum eservice.v2.EServiceDescriptorStateV2
274
299
  */
@@ -296,7 +321,15 @@ export declare enum EServiceDescriptorStateV2 {
296
321
  /**
297
322
  * @generated from protobuf enum value: WAITING_FOR_APPROVAL = 5;
298
323
  */
299
- WAITING_FOR_APPROVAL = 5
324
+ WAITING_FOR_APPROVAL = 5,
325
+ /**
326
+ * @generated from protobuf enum value: ARCHIVING = 6;
327
+ */
328
+ ARCHIVING = 6,
329
+ /**
330
+ * @generated from protobuf enum value: ARCHIVING_SUSPENDED = 7;
331
+ */
332
+ ARCHIVING_SUSPENDED = 7
300
333
  }
301
334
  /**
302
335
  * @generated from protobuf enum eservice.v2.EServiceTechnologyV2
@@ -337,6 +370,19 @@ export declare enum EServiceModeV2 {
337
370
  */
338
371
  DELIVER = 1
339
372
  }
373
+ /**
374
+ * @generated from protobuf enum eservice.v2.ArchivingScopeV2
375
+ */
376
+ export declare enum ArchivingScopeV2 {
377
+ /**
378
+ * @generated from protobuf enum value: ESERVICE = 0;
379
+ */
380
+ ESERVICE = 0,
381
+ /**
382
+ * @generated from protobuf enum value: DESCRIPTOR = 1;
383
+ */
384
+ DESCRIPTOR = 1
385
+ }
340
386
  declare class EServiceV2$Type extends MessageType<EServiceV2> {
341
387
  constructor();
342
388
  create(value?: PartialMessage<EServiceV2>): EServiceV2;
@@ -427,5 +473,15 @@ declare class EServiceDocumentV2$Type extends MessageType<EServiceDocumentV2> {
427
473
  * @generated MessageType for protobuf message eservice.v2.EServiceDocumentV2
428
474
  */
429
475
  export declare const EServiceDocumentV2: EServiceDocumentV2$Type;
476
+ declare class ArchivingScheduleV2$Type extends MessageType<ArchivingScheduleV2> {
477
+ constructor();
478
+ create(value?: PartialMessage<ArchivingScheduleV2>): ArchivingScheduleV2;
479
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ArchivingScheduleV2): ArchivingScheduleV2;
480
+ internalBinaryWrite(message: ArchivingScheduleV2, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
481
+ }
482
+ /**
483
+ * @generated MessageType for protobuf message eservice.v2.ArchivingScheduleV2
484
+ */
485
+ export declare const ArchivingScheduleV2: ArchivingScheduleV2$Type;
430
486
  export {};
431
487
  //# sourceMappingURL=eservice.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"eservice.d.ts","sourceRoot":"","sources":["../../../../src/gen/v2/eservice/eservice.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"eservice.d.ts","sourceRoot":"","sources":["../../../../src/gen/v2/eservice/eservice.ts"],"names":[],"mappings":"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"}
@@ -31,6 +31,14 @@ export var EServiceDescriptorStateV2;
31
31
  * @generated from protobuf enum value: WAITING_FOR_APPROVAL = 5;
32
32
  */
33
33
  EServiceDescriptorStateV2[EServiceDescriptorStateV2["WAITING_FOR_APPROVAL"] = 5] = "WAITING_FOR_APPROVAL";
34
+ /**
35
+ * @generated from protobuf enum value: ARCHIVING = 6;
36
+ */
37
+ EServiceDescriptorStateV2[EServiceDescriptorStateV2["ARCHIVING"] = 6] = "ARCHIVING";
38
+ /**
39
+ * @generated from protobuf enum value: ARCHIVING_SUSPENDED = 7;
40
+ */
41
+ EServiceDescriptorStateV2[EServiceDescriptorStateV2["ARCHIVING_SUSPENDED"] = 7] = "ARCHIVING_SUSPENDED";
34
42
  })(EServiceDescriptorStateV2 || (EServiceDescriptorStateV2 = {}));
35
43
  /**
36
44
  * @generated from protobuf enum eservice.v2.EServiceTechnologyV2
@@ -74,6 +82,20 @@ export var EServiceModeV2;
74
82
  */
75
83
  EServiceModeV2[EServiceModeV2["DELIVER"] = 1] = "DELIVER";
76
84
  })(EServiceModeV2 || (EServiceModeV2 = {}));
85
+ /**
86
+ * @generated from protobuf enum eservice.v2.ArchivingScopeV2
87
+ */
88
+ export var ArchivingScopeV2;
89
+ (function (ArchivingScopeV2) {
90
+ /**
91
+ * @generated from protobuf enum value: ESERVICE = 0;
92
+ */
93
+ ArchivingScopeV2[ArchivingScopeV2["ESERVICE"] = 0] = "ESERVICE";
94
+ /**
95
+ * @generated from protobuf enum value: DESCRIPTOR = 1;
96
+ */
97
+ ArchivingScopeV2[ArchivingScopeV2["DESCRIPTOR"] = 1] = "DESCRIPTOR";
98
+ })(ArchivingScopeV2 || (ArchivingScopeV2 = {}));
77
99
  // @generated message type with reflection information, may provide speed optimized methods
78
100
  class EServiceV2$Type extends MessageType {
79
101
  constructor() {
@@ -91,7 +113,8 @@ class EServiceV2$Type extends MessageType {
91
113
  { no: 11, name: "isClientAccessDelegable", kind: "scalar", opt: true, T: 8 /*ScalarType.BOOL*/ },
92
114
  { no: 13, name: "templateId", kind: "scalar", opt: true, T: 9 /*ScalarType.STRING*/ },
93
115
  { no: 14, name: "personalData", kind: "scalar", opt: true, T: 8 /*ScalarType.BOOL*/ },
94
- { no: 15, name: "instanceLabel", kind: "scalar", opt: true, T: 9 /*ScalarType.STRING*/ }
116
+ { no: 15, name: "instanceLabel", kind: "scalar", opt: true, T: 9 /*ScalarType.STRING*/ },
117
+ { no: 16, name: "archivingReason", kind: "scalar", opt: true, T: 9 /*ScalarType.STRING*/ }
95
118
  ]);
96
119
  }
97
120
  create(value) {
@@ -155,6 +178,9 @@ class EServiceV2$Type extends MessageType {
155
178
  case /* optional string instanceLabel */ 15:
156
179
  message.instanceLabel = reader.string();
157
180
  break;
181
+ case /* optional string archivingReason */ 16:
182
+ message.archivingReason = reader.string();
183
+ break;
158
184
  default:
159
185
  let u = options.readUnknownField;
160
186
  if (u === "throw")
@@ -209,6 +235,9 @@ class EServiceV2$Type extends MessageType {
209
235
  /* optional string instanceLabel = 15; */
210
236
  if (message.instanceLabel !== undefined)
211
237
  writer.tag(15, WireType.LengthDelimited).string(message.instanceLabel);
238
+ /* optional string archivingReason = 16; */
239
+ if (message.archivingReason !== undefined)
240
+ writer.tag(16, WireType.LengthDelimited).string(message.archivingReason);
212
241
  let u = options.writeUnknownFields;
213
242
  if (u !== false)
214
243
  (u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
@@ -469,7 +498,8 @@ class EServiceDescriptorV2$Type extends MessageType {
469
498
  { no: 17, name: "archivedAt", kind: "scalar", opt: true, T: 3 /*ScalarType.INT64*/, L: 0 /*LongType.BIGINT*/ },
470
499
  { no: 18, name: "attributes", kind: "message", T: () => EServiceAttributesV2 },
471
500
  { no: 19, name: "rejectionReasons", kind: "message", repeat: 1 /*RepeatType.PACKED*/, T: () => DescriptorRejectionReasonV2 },
472
- { no: 20, name: "templateVersionRef", kind: "message", T: () => EServiceTemplateVersionRefV2 }
501
+ { no: 20, name: "templateVersionRef", kind: "message", T: () => EServiceTemplateVersionRefV2 },
502
+ { no: 21, name: "archivingSchedule", kind: "message", T: () => ArchivingScheduleV2 }
473
503
  ]);
474
504
  }
475
505
  create(value) {
@@ -555,6 +585,9 @@ class EServiceDescriptorV2$Type extends MessageType {
555
585
  case /* optional eservice.v2.EServiceTemplateVersionRefV2 templateVersionRef */ 20:
556
586
  message.templateVersionRef = EServiceTemplateVersionRefV2.internalBinaryRead(reader, reader.uint32(), options, message.templateVersionRef);
557
587
  break;
588
+ case /* optional eservice.v2.ArchivingScheduleV2 archivingSchedule */ 21:
589
+ message.archivingSchedule = ArchivingScheduleV2.internalBinaryRead(reader, reader.uint32(), options, message.archivingSchedule);
590
+ break;
558
591
  default:
559
592
  let u = options.readUnknownField;
560
593
  if (u === "throw")
@@ -627,6 +660,9 @@ class EServiceDescriptorV2$Type extends MessageType {
627
660
  /* optional eservice.v2.EServiceTemplateVersionRefV2 templateVersionRef = 20; */
628
661
  if (message.templateVersionRef)
629
662
  EServiceTemplateVersionRefV2.internalBinaryWrite(message.templateVersionRef, writer.tag(20, WireType.LengthDelimited).fork(), options).join();
663
+ /* optional eservice.v2.ArchivingScheduleV2 archivingSchedule = 21; */
664
+ if (message.archivingSchedule)
665
+ ArchivingScheduleV2.internalBinaryWrite(message.archivingSchedule, writer.tag(21, WireType.LengthDelimited).fork(), options).join();
630
666
  let u = options.writeUnknownFields;
631
667
  if (u !== false)
632
668
  (u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
@@ -845,3 +881,66 @@ class EServiceDocumentV2$Type extends MessageType {
845
881
  * @generated MessageType for protobuf message eservice.v2.EServiceDocumentV2
846
882
  */
847
883
  export const EServiceDocumentV2 = new EServiceDocumentV2$Type();
884
+ // @generated message type with reflection information, may provide speed optimized methods
885
+ class ArchivingScheduleV2$Type extends MessageType {
886
+ constructor() {
887
+ super("eservice.v2.ArchivingScheduleV2", [
888
+ { no: 1, name: "archivableOn", kind: "scalar", T: 3 /*ScalarType.INT64*/, L: 0 /*LongType.BIGINT*/ },
889
+ { no: 2, name: "scope", kind: "enum", T: () => ["eservice.v2.ArchivingScopeV2", ArchivingScopeV2] },
890
+ { no: 3, name: "startedAt", kind: "scalar", T: 3 /*ScalarType.INT64*/, L: 0 /*LongType.BIGINT*/ }
891
+ ]);
892
+ }
893
+ create(value) {
894
+ const message = globalThis.Object.create((this.messagePrototype));
895
+ message.archivableOn = 0n;
896
+ message.scope = 0;
897
+ message.startedAt = 0n;
898
+ if (value !== undefined)
899
+ reflectionMergePartial(this, message, value);
900
+ return message;
901
+ }
902
+ internalBinaryRead(reader, length, options, target) {
903
+ let message = target ?? this.create(), end = reader.pos + length;
904
+ while (reader.pos < end) {
905
+ let [fieldNo, wireType] = reader.tag();
906
+ switch (fieldNo) {
907
+ case /* int64 archivableOn */ 1:
908
+ message.archivableOn = reader.int64().toBigInt();
909
+ break;
910
+ case /* eservice.v2.ArchivingScopeV2 scope */ 2:
911
+ message.scope = reader.int32();
912
+ break;
913
+ case /* int64 startedAt */ 3:
914
+ message.startedAt = reader.int64().toBigInt();
915
+ break;
916
+ default:
917
+ let u = options.readUnknownField;
918
+ if (u === "throw")
919
+ throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);
920
+ let d = reader.skip(wireType);
921
+ if (u !== false)
922
+ (u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);
923
+ }
924
+ }
925
+ return message;
926
+ }
927
+ internalBinaryWrite(message, writer, options) {
928
+ /* int64 archivableOn = 1; */
929
+ if (message.archivableOn !== 0n)
930
+ writer.tag(1, WireType.Varint).int64(message.archivableOn);
931
+ /* eservice.v2.ArchivingScopeV2 scope = 2; */
932
+ if (message.scope !== 0)
933
+ writer.tag(2, WireType.Varint).int32(message.scope);
934
+ /* int64 startedAt = 3; */
935
+ if (message.startedAt !== 0n)
936
+ writer.tag(3, WireType.Varint).int64(message.startedAt);
937
+ let u = options.writeUnknownFields;
938
+ if (u !== false)
939
+ (u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
940
+ return writer;
941
+ }
942
+ }
943
+ /**
944
+ * @generated MessageType for protobuf message eservice.v2.ArchivingScheduleV2
945
+ */
946
+ export const ArchivingScheduleV2 = new ArchivingScheduleV2$Type();