@google-cloud/pubsub 5.0.0 → 5.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (56) hide show
  1. package/README.md +1 -0
  2. package/build/protos/google/pubsub/v1/pubsub.proto +144 -29
  3. package/build/protos/google/pubsub/v1/schema.proto +2 -3
  4. package/build/protos/protos.d.ts +1007 -27
  5. package/build/protos/protos.js +3093 -172
  6. package/build/protos/protos.json +357 -32
  7. package/build/src/exponential-retry.js +3 -3
  8. package/build/src/exponential-retry.js.map +1 -1
  9. package/build/src/index.d.ts +1 -1
  10. package/build/src/index.js +2 -1
  11. package/build/src/index.js.map +1 -1
  12. package/build/src/lease-manager.d.ts +18 -0
  13. package/build/src/lease-manager.js +52 -2
  14. package/build/src/lease-manager.js.map +1 -1
  15. package/build/src/logs.d.ts +9 -0
  16. package/build/src/logs.js +26 -0
  17. package/build/src/logs.js.map +1 -0
  18. package/build/src/message-queues.d.ts +25 -1
  19. package/build/src/message-queues.js +41 -5
  20. package/build/src/message-queues.js.map +1 -1
  21. package/build/src/message-stream.d.ts +8 -0
  22. package/build/src/message-stream.js +37 -14
  23. package/build/src/message-stream.js.map +1 -1
  24. package/build/src/publisher/message-batch.d.ts +26 -1
  25. package/build/src/publisher/message-batch.js +41 -6
  26. package/build/src/publisher/message-batch.js.map +1 -1
  27. package/build/src/publisher/message-queues.d.ts +22 -5
  28. package/build/src/publisher/message-queues.js +51 -18
  29. package/build/src/publisher/message-queues.js.map +1 -1
  30. package/build/src/pubsub.d.ts +25 -6
  31. package/build/src/pubsub.js.map +1 -1
  32. package/build/src/subscriber.d.ts +70 -4
  33. package/build/src/subscriber.js +154 -9
  34. package/build/src/subscriber.js.map +1 -1
  35. package/build/src/subscription.d.ts +11 -13
  36. package/build/src/subscription.js +2 -1
  37. package/build/src/subscription.js.map +1 -1
  38. package/build/src/telemetry-tracing.js +19 -12
  39. package/build/src/telemetry-tracing.js.map +1 -1
  40. package/build/src/temporal.d.ts +66 -4
  41. package/build/src/temporal.js +104 -4
  42. package/build/src/temporal.js.map +1 -1
  43. package/build/src/util.d.ts +22 -0
  44. package/build/src/util.js +36 -0
  45. package/build/src/util.js.map +1 -1
  46. package/build/src/v1/publisher_client.d.ts +0 -18
  47. package/build/src/v1/publisher_client.js +16 -8
  48. package/build/src/v1/publisher_client.js.map +1 -1
  49. package/build/src/v1/schema_service_client.d.ts +0 -20
  50. package/build/src/v1/schema_service_client.js +5 -5
  51. package/build/src/v1/schema_service_client.js.map +1 -1
  52. package/build/src/v1/subscriber_client.d.ts +4 -36
  53. package/build/src/v1/subscriber_client.js +6 -8
  54. package/build/src/v1/subscriber_client.js.map +1 -1
  55. package/package.json +5 -5
  56. package/CHANGELOG.md +0 -1620
@@ -6,9 +6,8 @@
6
6
  "nested": {
7
7
  "v1": {
8
8
  "options": {
9
- "cc_enable_arenas": true,
10
9
  "csharp_namespace": "Google.Cloud.PubSub.V1",
11
- "go_package": "cloud.google.com/go/pubsub/apiv1/pubsubpb;pubsubpb",
10
+ "go_package": "cloud.google.com/go/pubsub/v2/apiv1/pubsubpb;pubsubpb",
12
11
  "java_multiple_files": true,
13
12
  "java_outer_classname": "SchemaProto",
14
13
  "java_package": "com.google.pubsub.v1",
@@ -663,7 +662,8 @@
663
662
  "cloudStorageFailure",
664
663
  "awsMskFailure",
665
664
  "azureEventHubsFailure",
666
- "confluentCloudFailure"
665
+ "confluentCloudFailure",
666
+ "awsKinesisFailure"
667
667
  ]
668
668
  }
669
669
  },
@@ -709,6 +709,13 @@
709
709
  "options": {
710
710
  "(google.api.field_behavior)": "OPTIONAL"
711
711
  }
712
+ },
713
+ "awsKinesisFailure": {
714
+ "type": "AwsKinesisFailureReason",
715
+ "id": 7,
716
+ "options": {
717
+ "(google.api.field_behavior)": "OPTIONAL"
718
+ }
712
719
  }
713
720
  },
714
721
  "nested": {
@@ -718,12 +725,16 @@
718
725
  "AvroFailureReason": {
719
726
  "fields": {}
720
727
  },
728
+ "SchemaViolationReason": {
729
+ "fields": {}
730
+ },
721
731
  "CloudStorageFailure": {
722
732
  "oneofs": {
723
733
  "reason": {
724
734
  "oneof": [
725
735
  "avroFailureReason",
726
- "apiViolationReason"
736
+ "apiViolationReason",
737
+ "schemaViolationReason"
727
738
  ]
728
739
  }
729
740
  },
@@ -762,6 +773,13 @@
762
773
  "options": {
763
774
  "(google.api.field_behavior)": "OPTIONAL"
764
775
  }
776
+ },
777
+ "schemaViolationReason": {
778
+ "type": "SchemaViolationReason",
779
+ "id": 7,
780
+ "options": {
781
+ "(google.api.field_behavior)": "OPTIONAL"
782
+ }
765
783
  }
766
784
  }
767
785
  },
@@ -769,7 +787,8 @@
769
787
  "oneofs": {
770
788
  "reason": {
771
789
  "oneof": [
772
- "apiViolationReason"
790
+ "apiViolationReason",
791
+ "schemaViolationReason"
773
792
  ]
774
793
  }
775
794
  },
@@ -808,6 +827,13 @@
808
827
  "options": {
809
828
  "(google.api.field_behavior)": "OPTIONAL"
810
829
  }
830
+ },
831
+ "schemaViolationReason": {
832
+ "type": "SchemaViolationReason",
833
+ "id": 6,
834
+ "options": {
835
+ "(google.api.field_behavior)": "OPTIONAL"
836
+ }
811
837
  }
812
838
  }
813
839
  },
@@ -815,7 +841,8 @@
815
841
  "oneofs": {
816
842
  "reason": {
817
843
  "oneof": [
818
- "apiViolationReason"
844
+ "apiViolationReason",
845
+ "schemaViolationReason"
819
846
  ]
820
847
  }
821
848
  },
@@ -854,6 +881,13 @@
854
881
  "options": {
855
882
  "(google.api.field_behavior)": "OPTIONAL"
856
883
  }
884
+ },
885
+ "schemaViolationReason": {
886
+ "type": "SchemaViolationReason",
887
+ "id": 6,
888
+ "options": {
889
+ "(google.api.field_behavior)": "OPTIONAL"
890
+ }
857
891
  }
858
892
  }
859
893
  },
@@ -861,7 +895,8 @@
861
895
  "oneofs": {
862
896
  "reason": {
863
897
  "oneof": [
864
- "apiViolationReason"
898
+ "apiViolationReason",
899
+ "schemaViolationReason"
865
900
  ]
866
901
  }
867
902
  },
@@ -900,15 +935,114 @@
900
935
  "options": {
901
936
  "(google.api.field_behavior)": "OPTIONAL"
902
937
  }
938
+ },
939
+ "schemaViolationReason": {
940
+ "type": "SchemaViolationReason",
941
+ "id": 6,
942
+ "options": {
943
+ "(google.api.field_behavior)": "OPTIONAL"
944
+ }
945
+ }
946
+ }
947
+ },
948
+ "AwsKinesisFailureReason": {
949
+ "oneofs": {
950
+ "reason": {
951
+ "oneof": [
952
+ "schemaViolationReason"
953
+ ]
954
+ }
955
+ },
956
+ "fields": {
957
+ "streamArn": {
958
+ "type": "string",
959
+ "id": 1,
960
+ "options": {
961
+ "(google.api.field_behavior)": "OPTIONAL"
962
+ }
963
+ },
964
+ "partitionKey": {
965
+ "type": "string",
966
+ "id": 2,
967
+ "options": {
968
+ "(google.api.field_behavior)": "OPTIONAL"
969
+ }
970
+ },
971
+ "sequenceNumber": {
972
+ "type": "string",
973
+ "id": 3,
974
+ "options": {
975
+ "(google.api.field_behavior)": "OPTIONAL"
976
+ }
977
+ },
978
+ "schemaViolationReason": {
979
+ "type": "SchemaViolationReason",
980
+ "id": 4,
981
+ "options": {
982
+ "(google.api.field_behavior)": "OPTIONAL"
983
+ }
903
984
  }
904
985
  }
905
986
  }
906
987
  }
907
988
  },
989
+ "JavaScriptUDF": {
990
+ "fields": {
991
+ "functionName": {
992
+ "type": "string",
993
+ "id": 1,
994
+ "options": {
995
+ "(google.api.field_behavior)": "REQUIRED"
996
+ }
997
+ },
998
+ "code": {
999
+ "type": "string",
1000
+ "id": 2,
1001
+ "options": {
1002
+ "(google.api.field_behavior)": "REQUIRED"
1003
+ }
1004
+ }
1005
+ }
1006
+ },
1007
+ "MessageTransform": {
1008
+ "oneofs": {
1009
+ "transform": {
1010
+ "oneof": [
1011
+ "javascriptUdf"
1012
+ ]
1013
+ }
1014
+ },
1015
+ "fields": {
1016
+ "javascriptUdf": {
1017
+ "type": "JavaScriptUDF",
1018
+ "id": 2,
1019
+ "options": {
1020
+ "(google.api.field_behavior)": "OPTIONAL"
1021
+ }
1022
+ },
1023
+ "enabled": {
1024
+ "type": "bool",
1025
+ "id": 3,
1026
+ "options": {
1027
+ "deprecated": true,
1028
+ "(google.api.field_behavior)": "OPTIONAL"
1029
+ }
1030
+ },
1031
+ "disabled": {
1032
+ "type": "bool",
1033
+ "id": 4,
1034
+ "options": {
1035
+ "(google.api.field_behavior)": "OPTIONAL"
1036
+ }
1037
+ }
1038
+ }
1039
+ },
908
1040
  "Topic": {
909
1041
  "options": {
910
1042
  "(google.api.resource).type": "pubsub.googleapis.com/Topic",
911
- "(google.api.resource).pattern": "_deleted-topic_"
1043
+ "(google.api.resource).pattern": "_deleted-topic_",
1044
+ "(google.api.resource).plural": "topics",
1045
+ "(google.api.resource).singular": "topic"
912
1046
  },
913
1047
  "fields": {
914
1048
  "name": {
@@ -974,6 +1108,14 @@
974
1108
  "options": {
975
1109
  "(google.api.field_behavior)": "OPTIONAL"
976
1110
  }
1111
+ },
1112
+ "messageTransforms": {
1113
+ "rule": "repeated",
1114
+ "type": "MessageTransform",
1115
+ "id": 13,
1116
+ "options": {
1117
+ "(google.api.field_behavior)": "OPTIONAL"
1118
+ }
977
1119
  }
978
1120
  },
979
1121
  "nested": {
@@ -1549,7 +1691,9 @@
1549
1691
  "Subscription": {
1550
1692
  "options": {
1551
1693
  "(google.api.resource).type": "pubsub.googleapis.com/Subscription",
1552
- "(google.api.resource).pattern": "projects/{project}/subscriptions/{subscription}"
1694
+ "(google.api.resource).pattern": "projects/{project}/subscriptions/{subscription}",
1695
+ "(google.api.resource).plural": "subscriptions",
1696
+ "(google.api.resource).singular": "subscription"
1553
1697
  },
1554
1698
  "fields": {
1555
1699
  "name": {
@@ -1686,6 +1830,14 @@
1686
1830
  "options": {
1687
1831
  "(google.api.field_behavior)": "OUTPUT_ONLY"
1688
1832
  }
1833
+ },
1834
+ "messageTransforms": {
1835
+ "rule": "repeated",
1836
+ "type": "MessageTransform",
1837
+ "id": 25,
1838
+ "options": {
1839
+ "(google.api.field_behavior)": "OPTIONAL"
1840
+ }
1689
1841
  }
1690
1842
  },
1691
1843
  "nested": {
@@ -2484,7 +2636,9 @@
2484
2636
  "Snapshot": {
2485
2637
  "options": {
2486
2638
  "(google.api.resource).type": "pubsub.googleapis.com/Snapshot",
2487
- "(google.api.resource).pattern": "projects/{project}/snapshots/{snapshot}"
2639
+ "(google.api.resource).pattern": "projects/{project}/snapshots/{snapshot}",
2640
+ "(google.api.resource).plural": "snapshots",
2641
+ "(google.api.resource).singular": "snapshot"
2488
2642
  },
2489
2643
  "fields": {
2490
2644
  "name": {
@@ -3137,8 +3291,7 @@
3137
3291
  "java_multiple_files": true,
3138
3292
  "java_outer_classname": "ResourceProto",
3139
3293
  "java_package": "com.google.api",
3140
- "objc_class_prefix": "GAPI",
3141
- "cc_enable_arenas": true
3294
+ "objc_class_prefix": "GAPI"
3142
3295
  },
3143
3296
  "nested": {
3144
3297
  "http": {
@@ -3262,6 +3415,10 @@
3262
3415
  "rule": "repeated",
3263
3416
  "type": "ClientLibraryDestination",
3264
3417
  "id": 2
3418
+ },
3419
+ "selectiveGapicGeneration": {
3420
+ "type": "SelectiveGapicGeneration",
3421
+ "id": 3
3265
3422
  }
3266
3423
  }
3267
3424
  },
@@ -3402,6 +3559,28 @@
3402
3559
  "common": {
3403
3560
  "type": "CommonLanguageSettings",
3404
3561
  "id": 1
3562
+ },
3563
+ "experimentalFeatures": {
3564
+ "type": "ExperimentalFeatures",
3565
+ "id": 2
3566
+ }
3567
+ },
3568
+ "nested": {
3569
+ "ExperimentalFeatures": {
3570
+ "fields": {
3571
+ "restAsyncIoEnabled": {
3572
+ "type": "bool",
3573
+ "id": 1
3574
+ },
3575
+ "protobufPythonicTypesEnabled": {
3576
+ "type": "bool",
3577
+ "id": 2
3578
+ },
3579
+ "unversionedPackageDisabled": {
3580
+ "type": "bool",
3581
+ "id": 3
3582
+ }
3583
+ }
3405
3584
  }
3406
3585
  }
3407
3586
  },
@@ -3459,6 +3638,11 @@
3459
3638
  "common": {
3460
3639
  "type": "CommonLanguageSettings",
3461
3640
  "id": 1
3641
+ },
3642
+ "renamedServices": {
3643
+ "keyType": "string",
3644
+ "type": "string",
3645
+ "id": 2
3462
3646
  }
3463
3647
  }
3464
3648
  },
@@ -3520,6 +3704,19 @@
3520
3704
  "PACKAGE_MANAGER": 20
3521
3705
  }
3522
3706
  },
3707
+ "SelectiveGapicGeneration": {
3708
+ "fields": {
3709
+ "methods": {
3710
+ "rule": "repeated",
3711
+ "type": "string",
3712
+ "id": 1
3713
+ },
3714
+ "generateOmittedAsInternal": {
3715
+ "type": "bool",
3716
+ "id": 2
3717
+ }
3718
+ }
3719
+ },
3523
3720
  "LaunchStage": {
3524
3721
  "values": {
3525
3722
  "LAUNCH_STAGE_UNSPECIFIED": 0,
@@ -3652,12 +3849,19 @@
3652
3849
  "type": "FileDescriptorProto",
3653
3850
  "id": 1
3654
3851
  }
3655
- }
3852
+ },
3853
+ "extensions": [
3854
+ [
3855
+ 536000000,
3856
+ 536000000
3857
+ ]
3858
+ ]
3656
3859
  },
3657
3860
  "Edition": {
3658
3861
  "edition": "proto2",
3659
3862
  "values": {
3660
3863
  "EDITION_UNKNOWN": 0,
3864
+ "EDITION_LEGACY": 900,
3661
3865
  "EDITION_PROTO2": 998,
3662
3866
  "EDITION_PROTO3": 999,
3663
3867
  "EDITION_2023": 1000,
@@ -3696,6 +3900,11 @@
3696
3900
  "type": "int32",
3697
3901
  "id": 11
3698
3902
  },
3903
+ "optionDependency": {
3904
+ "rule": "repeated",
3905
+ "type": "string",
3906
+ "id": 15
3907
+ },
3699
3908
  "messageType": {
3700
3909
  "rule": "repeated",
3701
3910
  "type": "DescriptorProto",
@@ -3784,6 +3993,10 @@
3784
3993
  "rule": "repeated",
3785
3994
  "type": "string",
3786
3995
  "id": 10
3996
+ },
3997
+ "visibility": {
3998
+ "type": "SymbolVisibility",
3999
+ "id": 11
3787
4000
  }
3788
4001
  },
3789
4002
  "nested": {
@@ -4009,6 +4222,10 @@
4009
4222
  "rule": "repeated",
4010
4223
  "type": "string",
4011
4224
  "id": 5
4225
+ },
4226
+ "visibility": {
4227
+ "type": "SymbolVisibility",
4228
+ "id": 6
4012
4229
  }
4013
4230
  },
4014
4231
  "nested": {
@@ -4223,6 +4440,7 @@
4223
4440
  42,
4224
4441
  42
4225
4442
  ],
4443
+ "php_generic_services",
4226
4444
  [
4227
4445
  38,
4228
4446
  38
@@ -4358,7 +4576,8 @@
4358
4576
  "type": "bool",
4359
4577
  "id": 10,
4360
4578
  "options": {
4361
- "default": false
4579
+ "default": false,
4580
+ "deprecated": true
4362
4581
  }
4363
4582
  },
4364
4583
  "debugRedact": {
@@ -4386,6 +4605,10 @@
4386
4605
  "type": "FeatureSet",
4387
4606
  "id": 21
4388
4607
  },
4608
+ "featureSupport": {
4609
+ "type": "FeatureSupport",
4610
+ "id": 22
4611
+ },
4389
4612
  "uninterpretedOption": {
4390
4613
  "rule": "repeated",
4391
4614
  "type": "UninterpretedOption",
@@ -4455,6 +4678,26 @@
4455
4678
  "id": 2
4456
4679
  }
4457
4680
  }
4681
+ },
4682
+ "FeatureSupport": {
4683
+ "fields": {
4684
+ "editionIntroduced": {
4685
+ "type": "Edition",
4686
+ "id": 1
4687
+ },
4688
+ "editionDeprecated": {
4689
+ "type": "Edition",
4690
+ "id": 2
4691
+ },
4692
+ "deprecationWarning": {
4693
+ "type": "string",
4694
+ "id": 3
4695
+ },
4696
+ "editionRemoved": {
4697
+ "type": "Edition",
4698
+ "id": 4
4699
+ }
4700
+ }
4458
4701
  }
4459
4702
  }
4460
4703
  },
@@ -4543,6 +4786,10 @@
4543
4786
  "default": false
4544
4787
  }
4545
4788
  },
4789
+ "featureSupport": {
4790
+ "type": "FieldOptions.FeatureSupport",
4791
+ "id": 4
4792
+ },
4546
4793
  "uninterpretedOption": {
4547
4794
  "rule": "repeated",
4548
4795
  "type": "UninterpretedOption",
@@ -4685,6 +4932,7 @@
4685
4932
  "options": {
4686
4933
  "retention": "RETENTION_RUNTIME",
4687
4934
  "targets": "TARGET_TYPE_FILE",
4935
+ "feature_support.edition_introduced": "EDITION_2023",
4688
4936
  "edition_defaults.edition": "EDITION_2023",
4689
4937
  "edition_defaults.value": "EXPLICIT"
4690
4938
  }
@@ -4695,6 +4943,7 @@
4695
4943
  "options": {
4696
4944
  "retention": "RETENTION_RUNTIME",
4697
4945
  "targets": "TARGET_TYPE_FILE",
4946
+ "feature_support.edition_introduced": "EDITION_2023",
4698
4947
  "edition_defaults.edition": "EDITION_PROTO3",
4699
4948
  "edition_defaults.value": "OPEN"
4700
4949
  }
@@ -4705,6 +4954,7 @@
4705
4954
  "options": {
4706
4955
  "retention": "RETENTION_RUNTIME",
4707
4956
  "targets": "TARGET_TYPE_FILE",
4957
+ "feature_support.edition_introduced": "EDITION_2023",
4708
4958
  "edition_defaults.edition": "EDITION_PROTO3",
4709
4959
  "edition_defaults.value": "PACKED"
4710
4960
  }
@@ -4715,6 +4965,7 @@
4715
4965
  "options": {
4716
4966
  "retention": "RETENTION_RUNTIME",
4717
4967
  "targets": "TARGET_TYPE_FILE",
4968
+ "feature_support.edition_introduced": "EDITION_2023",
4718
4969
  "edition_defaults.edition": "EDITION_PROTO3",
4719
4970
  "edition_defaults.value": "VERIFY"
4720
4971
  }
@@ -4725,7 +4976,8 @@
4725
4976
  "options": {
4726
4977
  "retention": "RETENTION_RUNTIME",
4727
4978
  "targets": "TARGET_TYPE_FILE",
4728
- "edition_defaults.edition": "EDITION_PROTO2",
4979
+ "feature_support.edition_introduced": "EDITION_2023",
4980
+ "edition_defaults.edition": "EDITION_LEGACY",
4729
4981
  "edition_defaults.value": "LENGTH_PREFIXED"
4730
4982
  }
4731
4983
  },
@@ -4735,27 +4987,38 @@
4735
4987
  "options": {
4736
4988
  "retention": "RETENTION_RUNTIME",
4737
4989
  "targets": "TARGET_TYPE_FILE",
4990
+ "feature_support.edition_introduced": "EDITION_2023",
4738
4991
  "edition_defaults.edition": "EDITION_PROTO3",
4739
4992
  "edition_defaults.value": "ALLOW"
4740
4993
  }
4994
+ },
4995
+ "enforceNamingStyle": {
4996
+ "type": "EnforceNamingStyle",
4997
+ "id": 7,
4998
+ "options": {
4999
+ "retention": "RETENTION_SOURCE",
5000
+ "targets": "TARGET_TYPE_METHOD",
5001
+ "feature_support.edition_introduced": "EDITION_2024",
5002
+ "edition_defaults.edition": "EDITION_2024",
5003
+ "edition_defaults.value": "STYLE2024"
5004
+ }
5005
+ },
5006
+ "defaultSymbolVisibility": {
5007
+ "type": "VisibilityFeature.DefaultSymbolVisibility",
5008
+ "id": 8,
5009
+ "options": {
5010
+ "retention": "RETENTION_SOURCE",
5011
+ "targets": "TARGET_TYPE_FILE",
5012
+ "feature_support.edition_introduced": "EDITION_2024",
5013
+ "edition_defaults.edition": "EDITION_2024",
5014
+ "edition_defaults.value": "EXPORT_TOP_LEVEL"
5015
+ }
4741
5016
  }
4742
5017
  },
4743
5018
  "extensions": [
4744
5019
  [
4745
5020
  1000,
4746
- 1000
4747
- ],
4748
- [
4749
- 1001,
4750
- 1001
4751
- ],
4752
- [
4753
- 1002,
4754
- 1002
4755
- ],
4756
- [
4757
- 9990,
4758
- 9990
5021
+ 9994
4759
5022
  ],
4760
5023
  [
4761
5024
  9995,
@@ -4800,7 +5063,13 @@
4800
5063
  "UTF8_VALIDATION_UNKNOWN": 0,
4801
5064
  "VERIFY": 2,
4802
5065
  "NONE": 3
4803
- }
5066
+ },
5067
+ "reserved": [
5068
+ [
5069
+ 1,
5070
+ 1
5071
+ ]
5072
+ ]
4804
5073
  },
4805
5074
  "MessageEncoding": {
4806
5075
  "values": {
@@ -4815,6 +5084,33 @@
4815
5084
  "ALLOW": 1,
4816
5085
  "LEGACY_BEST_EFFORT": 2
4817
5086
  }
5087
+ },
5088
+ "EnforceNamingStyle": {
5089
+ "values": {
5090
+ "ENFORCE_NAMING_STYLE_UNKNOWN": 0,
5091
+ "STYLE2024": 1,
5092
+ "STYLE_LEGACY": 2
5093
+ }
5094
+ },
5095
+ "VisibilityFeature": {
5096
+ "fields": {},
5097
+ "reserved": [
5098
+ [
5099
+ 1,
5100
+ 536870911
5101
+ ]
5102
+ ],
5103
+ "nested": {
5104
+ "DefaultSymbolVisibility": {
5105
+ "values": {
5106
+ "DEFAULT_SYMBOL_VISIBILITY_UNKNOWN": 0,
5107
+ "EXPORT_ALL": 1,
5108
+ "EXPORT_TOP_LEVEL": 2,
5109
+ "LOCAL_ALL": 3,
5110
+ "STRICT": 4
5111
+ }
5112
+ }
5113
+ }
4818
5114
  }
4819
5115
  }
4820
5116
  },
@@ -4842,11 +5138,26 @@
4842
5138
  "type": "Edition",
4843
5139
  "id": 3
4844
5140
  },
4845
- "features": {
5141
+ "overridableFeatures": {
4846
5142
  "type": "FeatureSet",
4847
- "id": 2
5143
+ "id": 4
5144
+ },
5145
+ "fixedFeatures": {
5146
+ "type": "FeatureSet",
5147
+ "id": 5
4848
5148
  }
4849
- }
5149
+ },
5150
+ "reserved": [
5151
+ [
5152
+ 1,
5153
+ 1
5154
+ ],
5155
+ [
5156
+ 2,
5157
+ 2
5158
+ ],
5159
+ "features"
5160
+ ]
4850
5161
  }
4851
5162
  }
4852
5163
  },
@@ -4859,6 +5170,12 @@
4859
5170
  "id": 1
4860
5171
  }
4861
5172
  },
5173
+ "extensions": [
5174
+ [
5175
+ 536000000,
5176
+ 536000000
5177
+ ]
5178
+ ],
4862
5179
  "nested": {
4863
5180
  "Location": {
4864
5181
  "fields": {
@@ -4944,6 +5261,14 @@
4944
5261
  }
4945
5262
  }
4946
5263
  },
5264
+ "SymbolVisibility": {
5265
+ "edition": "proto2",
5266
+ "values": {
5267
+ "VISIBILITY_UNSET": 0,
5268
+ "VISIBILITY_LOCAL": 1,
5269
+ "VISIBILITY_EXPORT": 2
5270
+ }
5271
+ },
4947
5272
  "Duration": {
4948
5273
  "fields": {
4949
5274
  "seconds": {