@google-shopping/lfp 0.9.0 → 0.10.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.
@@ -1,4 +1,4 @@
1
- // Copyright 2025 Google LLC
1
+ // Copyright 2026 Google LLC
2
2
  //
3
3
  // Licensed under the Apache License, Version 2.0 (the "License");
4
4
  // you may not use this file except in compliance with the License.
@@ -4617,7 +4617,13 @@ export namespace google {
4617
4617
  LOCAL_INVENTORY_ADS = 3,
4618
4618
  FREE_LISTINGS = 4,
4619
4619
  FREE_LOCAL_LISTINGS = 5,
4620
- YOUTUBE_SHOPPING = 6
4620
+ YOUTUBE_SHOPPING = 6,
4621
+ YOUTUBE_SHOPPING_CHECKOUT = 7,
4622
+ YOUTUBE_AFFILIATE = 8,
4623
+ FREE_VEHICLE_LISTINGS = 9,
4624
+ VEHICLE_ADS = 10,
4625
+ CLOUD_RETAIL = 11,
4626
+ LOCAL_CLOUD_RETAIL = 12
4621
4627
  }
4622
4628
  }
4623
4629
 
@@ -4726,11 +4732,16 @@ export namespace google {
4726
4732
  LOCAL_INVENTORY_ADS = 5,
4727
4733
  VEHICLE_INVENTORY_ADS = 6,
4728
4734
  FREE_LISTINGS = 7,
4735
+ FREE_LISTINGS_UCP_CHECKOUT = 19,
4729
4736
  FREE_LOCAL_LISTINGS = 8,
4730
4737
  FREE_LOCAL_VEHICLE_LISTINGS = 9,
4738
+ YOUTUBE_AFFILIATE = 18,
4731
4739
  YOUTUBE_SHOPPING = 10,
4732
4740
  CLOUD_RETAIL = 11,
4733
- LOCAL_CLOUD_RETAIL = 12
4741
+ LOCAL_CLOUD_RETAIL = 12,
4742
+ PRODUCT_REVIEWS = 15,
4743
+ MERCHANT_REVIEWS = 16,
4744
+ YOUTUBE_CHECKOUT = 17
4734
4745
  }
4735
4746
  }
4736
4747
 
@@ -5208,9 +5219,6 @@ export namespace google {
5208
5219
 
5209
5220
  /** CommonLanguageSettings destinations */
5210
5221
  destinations?: (google.api.ClientLibraryDestination[]|null);
5211
-
5212
- /** CommonLanguageSettings selectiveGapicGeneration */
5213
- selectiveGapicGeneration?: (google.api.ISelectiveGapicGeneration|null);
5214
5222
  }
5215
5223
 
5216
5224
  /** Represents a CommonLanguageSettings. */
@@ -5228,9 +5236,6 @@ export namespace google {
5228
5236
  /** CommonLanguageSettings destinations. */
5229
5237
  public destinations: google.api.ClientLibraryDestination[];
5230
5238
 
5231
- /** CommonLanguageSettings selectiveGapicGeneration. */
5232
- public selectiveGapicGeneration?: (google.api.ISelectiveGapicGeneration|null);
5233
-
5234
5239
  /**
5235
5240
  * Creates a new CommonLanguageSettings instance using the specified properties.
5236
5241
  * @param [properties] Properties to set
@@ -5931,9 +5936,6 @@ export namespace google {
5931
5936
 
5932
5937
  /** PythonSettings common */
5933
5938
  common?: (google.api.ICommonLanguageSettings|null);
5934
-
5935
- /** PythonSettings experimentalFeatures */
5936
- experimentalFeatures?: (google.api.PythonSettings.IExperimentalFeatures|null);
5937
5939
  }
5938
5940
 
5939
5941
  /** Represents a PythonSettings. */
@@ -5948,9 +5950,6 @@ export namespace google {
5948
5950
  /** PythonSettings common. */
5949
5951
  public common?: (google.api.ICommonLanguageSettings|null);
5950
5952
 
5951
- /** PythonSettings experimentalFeatures. */
5952
- public experimentalFeatures?: (google.api.PythonSettings.IExperimentalFeatures|null);
5953
-
5954
5953
  /**
5955
5954
  * Creates a new PythonSettings instance using the specified properties.
5956
5955
  * @param [properties] Properties to set
@@ -6029,118 +6028,6 @@ export namespace google {
6029
6028
  public static getTypeUrl(typeUrlPrefix?: string): string;
6030
6029
  }
6031
6030
 
6032
- namespace PythonSettings {
6033
-
6034
- /** Properties of an ExperimentalFeatures. */
6035
- interface IExperimentalFeatures {
6036
-
6037
- /** ExperimentalFeatures restAsyncIoEnabled */
6038
- restAsyncIoEnabled?: (boolean|null);
6039
-
6040
- /** ExperimentalFeatures protobufPythonicTypesEnabled */
6041
- protobufPythonicTypesEnabled?: (boolean|null);
6042
-
6043
- /** ExperimentalFeatures unversionedPackageDisabled */
6044
- unversionedPackageDisabled?: (boolean|null);
6045
- }
6046
-
6047
- /** Represents an ExperimentalFeatures. */
6048
- class ExperimentalFeatures implements IExperimentalFeatures {
6049
-
6050
- /**
6051
- * Constructs a new ExperimentalFeatures.
6052
- * @param [properties] Properties to set
6053
- */
6054
- constructor(properties?: google.api.PythonSettings.IExperimentalFeatures);
6055
-
6056
- /** ExperimentalFeatures restAsyncIoEnabled. */
6057
- public restAsyncIoEnabled: boolean;
6058
-
6059
- /** ExperimentalFeatures protobufPythonicTypesEnabled. */
6060
- public protobufPythonicTypesEnabled: boolean;
6061
-
6062
- /** ExperimentalFeatures unversionedPackageDisabled. */
6063
- public unversionedPackageDisabled: boolean;
6064
-
6065
- /**
6066
- * Creates a new ExperimentalFeatures instance using the specified properties.
6067
- * @param [properties] Properties to set
6068
- * @returns ExperimentalFeatures instance
6069
- */
6070
- public static create(properties?: google.api.PythonSettings.IExperimentalFeatures): google.api.PythonSettings.ExperimentalFeatures;
6071
-
6072
- /**
6073
- * Encodes the specified ExperimentalFeatures message. Does not implicitly {@link google.api.PythonSettings.ExperimentalFeatures.verify|verify} messages.
6074
- * @param message ExperimentalFeatures message or plain object to encode
6075
- * @param [writer] Writer to encode to
6076
- * @returns Writer
6077
- */
6078
- public static encode(message: google.api.PythonSettings.IExperimentalFeatures, writer?: $protobuf.Writer): $protobuf.Writer;
6079
-
6080
- /**
6081
- * Encodes the specified ExperimentalFeatures message, length delimited. Does not implicitly {@link google.api.PythonSettings.ExperimentalFeatures.verify|verify} messages.
6082
- * @param message ExperimentalFeatures message or plain object to encode
6083
- * @param [writer] Writer to encode to
6084
- * @returns Writer
6085
- */
6086
- public static encodeDelimited(message: google.api.PythonSettings.IExperimentalFeatures, writer?: $protobuf.Writer): $protobuf.Writer;
6087
-
6088
- /**
6089
- * Decodes an ExperimentalFeatures message from the specified reader or buffer.
6090
- * @param reader Reader or buffer to decode from
6091
- * @param [length] Message length if known beforehand
6092
- * @returns ExperimentalFeatures
6093
- * @throws {Error} If the payload is not a reader or valid buffer
6094
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
6095
- */
6096
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.PythonSettings.ExperimentalFeatures;
6097
-
6098
- /**
6099
- * Decodes an ExperimentalFeatures message from the specified reader or buffer, length delimited.
6100
- * @param reader Reader or buffer to decode from
6101
- * @returns ExperimentalFeatures
6102
- * @throws {Error} If the payload is not a reader or valid buffer
6103
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
6104
- */
6105
- public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.PythonSettings.ExperimentalFeatures;
6106
-
6107
- /**
6108
- * Verifies an ExperimentalFeatures message.
6109
- * @param message Plain object to verify
6110
- * @returns `null` if valid, otherwise the reason why it is not
6111
- */
6112
- public static verify(message: { [k: string]: any }): (string|null);
6113
-
6114
- /**
6115
- * Creates an ExperimentalFeatures message from a plain object. Also converts values to their respective internal types.
6116
- * @param object Plain object
6117
- * @returns ExperimentalFeatures
6118
- */
6119
- public static fromObject(object: { [k: string]: any }): google.api.PythonSettings.ExperimentalFeatures;
6120
-
6121
- /**
6122
- * Creates a plain object from an ExperimentalFeatures message. Also converts values to other types if specified.
6123
- * @param message ExperimentalFeatures
6124
- * @param [options] Conversion options
6125
- * @returns Plain object
6126
- */
6127
- public static toObject(message: google.api.PythonSettings.ExperimentalFeatures, options?: $protobuf.IConversionOptions): { [k: string]: any };
6128
-
6129
- /**
6130
- * Converts this ExperimentalFeatures to JSON.
6131
- * @returns JSON object
6132
- */
6133
- public toJSON(): { [k: string]: any };
6134
-
6135
- /**
6136
- * Gets the default type url for ExperimentalFeatures
6137
- * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
6138
- * @returns The default type url
6139
- */
6140
- public static getTypeUrl(typeUrlPrefix?: string): string;
6141
- }
6142
- }
6143
-
6144
6031
  /** Properties of a NodeSettings. */
6145
6032
  interface INodeSettings {
6146
6033
 
@@ -6467,9 +6354,6 @@ export namespace google {
6467
6354
 
6468
6355
  /** GoSettings common */
6469
6356
  common?: (google.api.ICommonLanguageSettings|null);
6470
-
6471
- /** GoSettings renamedServices */
6472
- renamedServices?: ({ [k: string]: string }|null);
6473
6357
  }
6474
6358
 
6475
6359
  /** Represents a GoSettings. */
@@ -6484,9 +6368,6 @@ export namespace google {
6484
6368
  /** GoSettings common. */
6485
6369
  public common?: (google.api.ICommonLanguageSettings|null);
6486
6370
 
6487
- /** GoSettings renamedServices. */
6488
- public renamedServices: { [k: string]: string };
6489
-
6490
6371
  /**
6491
6372
  * Creates a new GoSettings instance using the specified properties.
6492
6373
  * @param [properties] Properties to set
@@ -6811,109 +6692,6 @@ export namespace google {
6811
6692
  PACKAGE_MANAGER = 20
6812
6693
  }
6813
6694
 
6814
- /** Properties of a SelectiveGapicGeneration. */
6815
- interface ISelectiveGapicGeneration {
6816
-
6817
- /** SelectiveGapicGeneration methods */
6818
- methods?: (string[]|null);
6819
-
6820
- /** SelectiveGapicGeneration generateOmittedAsInternal */
6821
- generateOmittedAsInternal?: (boolean|null);
6822
- }
6823
-
6824
- /** Represents a SelectiveGapicGeneration. */
6825
- class SelectiveGapicGeneration implements ISelectiveGapicGeneration {
6826
-
6827
- /**
6828
- * Constructs a new SelectiveGapicGeneration.
6829
- * @param [properties] Properties to set
6830
- */
6831
- constructor(properties?: google.api.ISelectiveGapicGeneration);
6832
-
6833
- /** SelectiveGapicGeneration methods. */
6834
- public methods: string[];
6835
-
6836
- /** SelectiveGapicGeneration generateOmittedAsInternal. */
6837
- public generateOmittedAsInternal: boolean;
6838
-
6839
- /**
6840
- * Creates a new SelectiveGapicGeneration instance using the specified properties.
6841
- * @param [properties] Properties to set
6842
- * @returns SelectiveGapicGeneration instance
6843
- */
6844
- public static create(properties?: google.api.ISelectiveGapicGeneration): google.api.SelectiveGapicGeneration;
6845
-
6846
- /**
6847
- * Encodes the specified SelectiveGapicGeneration message. Does not implicitly {@link google.api.SelectiveGapicGeneration.verify|verify} messages.
6848
- * @param message SelectiveGapicGeneration message or plain object to encode
6849
- * @param [writer] Writer to encode to
6850
- * @returns Writer
6851
- */
6852
- public static encode(message: google.api.ISelectiveGapicGeneration, writer?: $protobuf.Writer): $protobuf.Writer;
6853
-
6854
- /**
6855
- * Encodes the specified SelectiveGapicGeneration message, length delimited. Does not implicitly {@link google.api.SelectiveGapicGeneration.verify|verify} messages.
6856
- * @param message SelectiveGapicGeneration message or plain object to encode
6857
- * @param [writer] Writer to encode to
6858
- * @returns Writer
6859
- */
6860
- public static encodeDelimited(message: google.api.ISelectiveGapicGeneration, writer?: $protobuf.Writer): $protobuf.Writer;
6861
-
6862
- /**
6863
- * Decodes a SelectiveGapicGeneration message from the specified reader or buffer.
6864
- * @param reader Reader or buffer to decode from
6865
- * @param [length] Message length if known beforehand
6866
- * @returns SelectiveGapicGeneration
6867
- * @throws {Error} If the payload is not a reader or valid buffer
6868
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
6869
- */
6870
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.SelectiveGapicGeneration;
6871
-
6872
- /**
6873
- * Decodes a SelectiveGapicGeneration message from the specified reader or buffer, length delimited.
6874
- * @param reader Reader or buffer to decode from
6875
- * @returns SelectiveGapicGeneration
6876
- * @throws {Error} If the payload is not a reader or valid buffer
6877
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
6878
- */
6879
- public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.SelectiveGapicGeneration;
6880
-
6881
- /**
6882
- * Verifies a SelectiveGapicGeneration message.
6883
- * @param message Plain object to verify
6884
- * @returns `null` if valid, otherwise the reason why it is not
6885
- */
6886
- public static verify(message: { [k: string]: any }): (string|null);
6887
-
6888
- /**
6889
- * Creates a SelectiveGapicGeneration message from a plain object. Also converts values to their respective internal types.
6890
- * @param object Plain object
6891
- * @returns SelectiveGapicGeneration
6892
- */
6893
- public static fromObject(object: { [k: string]: any }): google.api.SelectiveGapicGeneration;
6894
-
6895
- /**
6896
- * Creates a plain object from a SelectiveGapicGeneration message. Also converts values to other types if specified.
6897
- * @param message SelectiveGapicGeneration
6898
- * @param [options] Conversion options
6899
- * @returns Plain object
6900
- */
6901
- public static toObject(message: google.api.SelectiveGapicGeneration, options?: $protobuf.IConversionOptions): { [k: string]: any };
6902
-
6903
- /**
6904
- * Converts this SelectiveGapicGeneration to JSON.
6905
- * @returns JSON object
6906
- */
6907
- public toJSON(): { [k: string]: any };
6908
-
6909
- /**
6910
- * Gets the default type url for SelectiveGapicGeneration
6911
- * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
6912
- * @returns The default type url
6913
- */
6914
- public static getTypeUrl(typeUrlPrefix?: string): string;
6915
- }
6916
-
6917
6695
  /** LaunchStage enum. */
6918
6696
  enum LaunchStage {
6919
6697
  LAUNCH_STAGE_UNSPECIFIED = 0,
@@ -7196,9 +6974,6 @@ export namespace google {
7196
6974
 
7197
6975
  /** FieldInfo format */
7198
6976
  format?: (google.api.FieldInfo.Format|keyof typeof google.api.FieldInfo.Format|null);
7199
-
7200
- /** FieldInfo referencedTypes */
7201
- referencedTypes?: (google.api.ITypeReference[]|null);
7202
6977
  }
7203
6978
 
7204
6979
  /** Represents a FieldInfo. */
@@ -7213,9 +6988,6 @@ export namespace google {
7213
6988
  /** FieldInfo format. */
7214
6989
  public format: (google.api.FieldInfo.Format|keyof typeof google.api.FieldInfo.Format);
7215
6990
 
7216
- /** FieldInfo referencedTypes. */
7217
- public referencedTypes: google.api.ITypeReference[];
7218
-
7219
6991
  /**
7220
6992
  * Creates a new FieldInfo instance using the specified properties.
7221
6993
  * @param [properties] Properties to set
@@ -7305,103 +7077,6 @@ export namespace google {
7305
7077
  IPV4_OR_IPV6 = 4
7306
7078
  }
7307
7079
  }
7308
-
7309
- /** Properties of a TypeReference. */
7310
- interface ITypeReference {
7311
-
7312
- /** TypeReference typeName */
7313
- typeName?: (string|null);
7314
- }
7315
-
7316
- /** Represents a TypeReference. */
7317
- class TypeReference implements ITypeReference {
7318
-
7319
- /**
7320
- * Constructs a new TypeReference.
7321
- * @param [properties] Properties to set
7322
- */
7323
- constructor(properties?: google.api.ITypeReference);
7324
-
7325
- /** TypeReference typeName. */
7326
- public typeName: string;
7327
-
7328
- /**
7329
- * Creates a new TypeReference instance using the specified properties.
7330
- * @param [properties] Properties to set
7331
- * @returns TypeReference instance
7332
- */
7333
- public static create(properties?: google.api.ITypeReference): google.api.TypeReference;
7334
-
7335
- /**
7336
- * Encodes the specified TypeReference message. Does not implicitly {@link google.api.TypeReference.verify|verify} messages.
7337
- * @param message TypeReference message or plain object to encode
7338
- * @param [writer] Writer to encode to
7339
- * @returns Writer
7340
- */
7341
- public static encode(message: google.api.ITypeReference, writer?: $protobuf.Writer): $protobuf.Writer;
7342
-
7343
- /**
7344
- * Encodes the specified TypeReference message, length delimited. Does not implicitly {@link google.api.TypeReference.verify|verify} messages.
7345
- * @param message TypeReference message or plain object to encode
7346
- * @param [writer] Writer to encode to
7347
- * @returns Writer
7348
- */
7349
- public static encodeDelimited(message: google.api.ITypeReference, writer?: $protobuf.Writer): $protobuf.Writer;
7350
-
7351
- /**
7352
- * Decodes a TypeReference message from the specified reader or buffer.
7353
- * @param reader Reader or buffer to decode from
7354
- * @param [length] Message length if known beforehand
7355
- * @returns TypeReference
7356
- * @throws {Error} If the payload is not a reader or valid buffer
7357
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
7358
- */
7359
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.TypeReference;
7360
-
7361
- /**
7362
- * Decodes a TypeReference message from the specified reader or buffer, length delimited.
7363
- * @param reader Reader or buffer to decode from
7364
- * @returns TypeReference
7365
- * @throws {Error} If the payload is not a reader or valid buffer
7366
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
7367
- */
7368
- public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.TypeReference;
7369
-
7370
- /**
7371
- * Verifies a TypeReference message.
7372
- * @param message Plain object to verify
7373
- * @returns `null` if valid, otherwise the reason why it is not
7374
- */
7375
- public static verify(message: { [k: string]: any }): (string|null);
7376
-
7377
- /**
7378
- * Creates a TypeReference message from a plain object. Also converts values to their respective internal types.
7379
- * @param object Plain object
7380
- * @returns TypeReference
7381
- */
7382
- public static fromObject(object: { [k: string]: any }): google.api.TypeReference;
7383
-
7384
- /**
7385
- * Creates a plain object from a TypeReference message. Also converts values to other types if specified.
7386
- * @param message TypeReference
7387
- * @param [options] Conversion options
7388
- * @returns Plain object
7389
- */
7390
- public static toObject(message: google.api.TypeReference, options?: $protobuf.IConversionOptions): { [k: string]: any };
7391
-
7392
- /**
7393
- * Converts this TypeReference to JSON.
7394
- * @returns JSON object
7395
- */
7396
- public toJSON(): { [k: string]: any };
7397
-
7398
- /**
7399
- * Gets the default type url for TypeReference
7400
- * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
7401
- * @returns The default type url
7402
- */
7403
- public static getTypeUrl(typeUrlPrefix?: string): string;
7404
- }
7405
7080
  }
7406
7081
 
7407
7082
  /** Namespace protobuf. */
@@ -7507,7 +7182,6 @@ export namespace google {
7507
7182
  /** Edition enum. */
7508
7183
  enum Edition {
7509
7184
  EDITION_UNKNOWN = 0,
7510
- EDITION_LEGACY = 900,
7511
7185
  EDITION_PROTO2 = 998,
7512
7186
  EDITION_PROTO3 = 999,
7513
7187
  EDITION_2023 = 1000,
@@ -7538,9 +7212,6 @@ export namespace google {
7538
7212
  /** FileDescriptorProto weakDependency */
7539
7213
  weakDependency?: (number[]|null);
7540
7214
 
7541
- /** FileDescriptorProto optionDependency */
7542
- optionDependency?: (string[]|null);
7543
-
7544
7215
  /** FileDescriptorProto messageType */
7545
7216
  messageType?: (google.protobuf.IDescriptorProto[]|null);
7546
7217
 
@@ -7590,9 +7261,6 @@ export namespace google {
7590
7261
  /** FileDescriptorProto weakDependency. */
7591
7262
  public weakDependency: number[];
7592
7263
 
7593
- /** FileDescriptorProto optionDependency. */
7594
- public optionDependency: string[];
7595
-
7596
7264
  /** FileDescriptorProto messageType. */
7597
7265
  public messageType: google.protobuf.IDescriptorProto[];
7598
7266
 
@@ -7727,9 +7395,6 @@ export namespace google {
7727
7395
 
7728
7396
  /** DescriptorProto reservedName */
7729
7397
  reservedName?: (string[]|null);
7730
-
7731
- /** DescriptorProto visibility */
7732
- visibility?: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility|null);
7733
7398
  }
7734
7399
 
7735
7400
  /** Represents a DescriptorProto. */
@@ -7771,9 +7436,6 @@ export namespace google {
7771
7436
  /** DescriptorProto reservedName. */
7772
7437
  public reservedName: string[];
7773
7438
 
7774
- /** DescriptorProto visibility. */
7775
- public visibility: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility);
7776
-
7777
7439
  /**
7778
7440
  * Creates a new DescriptorProto instance using the specified properties.
7779
7441
  * @param [properties] Properties to set
@@ -8621,9 +8283,6 @@ export namespace google {
8621
8283
 
8622
8284
  /** EnumDescriptorProto reservedName */
8623
8285
  reservedName?: (string[]|null);
8624
-
8625
- /** EnumDescriptorProto visibility */
8626
- visibility?: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility|null);
8627
8286
  }
8628
8287
 
8629
8288
  /** Represents an EnumDescriptorProto. */
@@ -8650,9 +8309,6 @@ export namespace google {
8650
8309
  /** EnumDescriptorProto reservedName. */
8651
8310
  public reservedName: string[];
8652
8311
 
8653
- /** EnumDescriptorProto visibility. */
8654
- public visibility: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility);
8655
-
8656
8312
  /**
8657
8313
  * Creates a new EnumDescriptorProto instance using the specified properties.
8658
8314
  * @param [properties] Properties to set
@@ -9587,9 +9243,6 @@ export namespace google {
9587
9243
  /** FieldOptions features */
9588
9244
  features?: (google.protobuf.IFeatureSet|null);
9589
9245
 
9590
- /** FieldOptions featureSupport */
9591
- featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
9592
-
9593
9246
  /** FieldOptions uninterpretedOption */
9594
9247
  uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
9595
9248
 
@@ -9648,9 +9301,6 @@ export namespace google {
9648
9301
  /** FieldOptions features. */
9649
9302
  public features?: (google.protobuf.IFeatureSet|null);
9650
9303
 
9651
- /** FieldOptions featureSupport. */
9652
- public featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
9653
-
9654
9304
  /** FieldOptions uninterpretedOption. */
9655
9305
  public uninterpretedOption: google.protobuf.IUninterpretedOption[];
9656
9306
 
@@ -9871,121 +9521,6 @@ export namespace google {
9871
9521
  */
9872
9522
  public static getTypeUrl(typeUrlPrefix?: string): string;
9873
9523
  }
9874
-
9875
- /** Properties of a FeatureSupport. */
9876
- interface IFeatureSupport {
9877
-
9878
- /** FeatureSupport editionIntroduced */
9879
- editionIntroduced?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
9880
-
9881
- /** FeatureSupport editionDeprecated */
9882
- editionDeprecated?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
9883
-
9884
- /** FeatureSupport deprecationWarning */
9885
- deprecationWarning?: (string|null);
9886
-
9887
- /** FeatureSupport editionRemoved */
9888
- editionRemoved?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
9889
- }
9890
-
9891
- /** Represents a FeatureSupport. */
9892
- class FeatureSupport implements IFeatureSupport {
9893
-
9894
- /**
9895
- * Constructs a new FeatureSupport.
9896
- * @param [properties] Properties to set
9897
- */
9898
- constructor(properties?: google.protobuf.FieldOptions.IFeatureSupport);
9899
-
9900
- /** FeatureSupport editionIntroduced. */
9901
- public editionIntroduced: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
9902
-
9903
- /** FeatureSupport editionDeprecated. */
9904
- public editionDeprecated: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
9905
-
9906
- /** FeatureSupport deprecationWarning. */
9907
- public deprecationWarning: string;
9908
-
9909
- /** FeatureSupport editionRemoved. */
9910
- public editionRemoved: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
9911
-
9912
- /**
9913
- * Creates a new FeatureSupport instance using the specified properties.
9914
- * @param [properties] Properties to set
9915
- * @returns FeatureSupport instance
9916
- */
9917
- public static create(properties?: google.protobuf.FieldOptions.IFeatureSupport): google.protobuf.FieldOptions.FeatureSupport;
9918
-
9919
- /**
9920
- * Encodes the specified FeatureSupport message. Does not implicitly {@link google.protobuf.FieldOptions.FeatureSupport.verify|verify} messages.
9921
- * @param message FeatureSupport message or plain object to encode
9922
- * @param [writer] Writer to encode to
9923
- * @returns Writer
9924
- */
9925
- public static encode(message: google.protobuf.FieldOptions.IFeatureSupport, writer?: $protobuf.Writer): $protobuf.Writer;
9926
-
9927
- /**
9928
- * Encodes the specified FeatureSupport message, length delimited. Does not implicitly {@link google.protobuf.FieldOptions.FeatureSupport.verify|verify} messages.
9929
- * @param message FeatureSupport message or plain object to encode
9930
- * @param [writer] Writer to encode to
9931
- * @returns Writer
9932
- */
9933
- public static encodeDelimited(message: google.protobuf.FieldOptions.IFeatureSupport, writer?: $protobuf.Writer): $protobuf.Writer;
9934
-
9935
- /**
9936
- * Decodes a FeatureSupport message from the specified reader or buffer.
9937
- * @param reader Reader or buffer to decode from
9938
- * @param [length] Message length if known beforehand
9939
- * @returns FeatureSupport
9940
- * @throws {Error} If the payload is not a reader or valid buffer
9941
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
9942
- */
9943
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FieldOptions.FeatureSupport;
9944
-
9945
- /**
9946
- * Decodes a FeatureSupport message from the specified reader or buffer, length delimited.
9947
- * @param reader Reader or buffer to decode from
9948
- * @returns FeatureSupport
9949
- * @throws {Error} If the payload is not a reader or valid buffer
9950
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
9951
- */
9952
- public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FieldOptions.FeatureSupport;
9953
-
9954
- /**
9955
- * Verifies a FeatureSupport message.
9956
- * @param message Plain object to verify
9957
- * @returns `null` if valid, otherwise the reason why it is not
9958
- */
9959
- public static verify(message: { [k: string]: any }): (string|null);
9960
-
9961
- /**
9962
- * Creates a FeatureSupport message from a plain object. Also converts values to their respective internal types.
9963
- * @param object Plain object
9964
- * @returns FeatureSupport
9965
- */
9966
- public static fromObject(object: { [k: string]: any }): google.protobuf.FieldOptions.FeatureSupport;
9967
-
9968
- /**
9969
- * Creates a plain object from a FeatureSupport message. Also converts values to other types if specified.
9970
- * @param message FeatureSupport
9971
- * @param [options] Conversion options
9972
- * @returns Plain object
9973
- */
9974
- public static toObject(message: google.protobuf.FieldOptions.FeatureSupport, options?: $protobuf.IConversionOptions): { [k: string]: any };
9975
-
9976
- /**
9977
- * Converts this FeatureSupport to JSON.
9978
- * @returns JSON object
9979
- */
9980
- public toJSON(): { [k: string]: any };
9981
-
9982
- /**
9983
- * Gets the default type url for FeatureSupport
9984
- * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
9985
- * @returns The default type url
9986
- */
9987
- public static getTypeUrl(typeUrlPrefix?: string): string;
9988
- }
9989
9524
  }
9990
9525
 
9991
9526
  /** Properties of an OneofOptions. */
@@ -10224,9 +9759,6 @@ export namespace google {
10224
9759
  /** EnumValueOptions debugRedact */
10225
9760
  debugRedact?: (boolean|null);
10226
9761
 
10227
- /** EnumValueOptions featureSupport */
10228
- featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
10229
-
10230
9762
  /** EnumValueOptions uninterpretedOption */
10231
9763
  uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
10232
9764
  }
@@ -10249,9 +9781,6 @@ export namespace google {
10249
9781
  /** EnumValueOptions debugRedact. */
10250
9782
  public debugRedact: boolean;
10251
9783
 
10252
- /** EnumValueOptions featureSupport. */
10253
- public featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
10254
-
10255
9784
  /** EnumValueOptions uninterpretedOption. */
10256
9785
  public uninterpretedOption: google.protobuf.IUninterpretedOption[];
10257
9786
 
@@ -10841,12 +10370,6 @@ export namespace google {
10841
10370
 
10842
10371
  /** FeatureSet jsonFormat */
10843
10372
  jsonFormat?: (google.protobuf.FeatureSet.JsonFormat|keyof typeof google.protobuf.FeatureSet.JsonFormat|null);
10844
-
10845
- /** FeatureSet enforceNamingStyle */
10846
- enforceNamingStyle?: (google.protobuf.FeatureSet.EnforceNamingStyle|keyof typeof google.protobuf.FeatureSet.EnforceNamingStyle|null);
10847
-
10848
- /** FeatureSet defaultSymbolVisibility */
10849
- defaultSymbolVisibility?: (google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility|keyof typeof google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility|null);
10850
10373
  }
10851
10374
 
10852
10375
  /** Represents a FeatureSet. */
@@ -10876,12 +10399,6 @@ export namespace google {
10876
10399
  /** FeatureSet jsonFormat. */
10877
10400
  public jsonFormat: (google.protobuf.FeatureSet.JsonFormat|keyof typeof google.protobuf.FeatureSet.JsonFormat);
10878
10401
 
10879
- /** FeatureSet enforceNamingStyle. */
10880
- public enforceNamingStyle: (google.protobuf.FeatureSet.EnforceNamingStyle|keyof typeof google.protobuf.FeatureSet.EnforceNamingStyle);
10881
-
10882
- /** FeatureSet defaultSymbolVisibility. */
10883
- public defaultSymbolVisibility: (google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility|keyof typeof google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility);
10884
-
10885
10402
  /**
10886
10403
  * Creates a new FeatureSet instance using the specified properties.
10887
10404
  * @param [properties] Properties to set
@@ -11004,116 +10521,6 @@ export namespace google {
11004
10521
  ALLOW = 1,
11005
10522
  LEGACY_BEST_EFFORT = 2
11006
10523
  }
11007
-
11008
- /** EnforceNamingStyle enum. */
11009
- enum EnforceNamingStyle {
11010
- ENFORCE_NAMING_STYLE_UNKNOWN = 0,
11011
- STYLE2024 = 1,
11012
- STYLE_LEGACY = 2
11013
- }
11014
-
11015
- /** Properties of a VisibilityFeature. */
11016
- interface IVisibilityFeature {
11017
- }
11018
-
11019
- /** Represents a VisibilityFeature. */
11020
- class VisibilityFeature implements IVisibilityFeature {
11021
-
11022
- /**
11023
- * Constructs a new VisibilityFeature.
11024
- * @param [properties] Properties to set
11025
- */
11026
- constructor(properties?: google.protobuf.FeatureSet.IVisibilityFeature);
11027
-
11028
- /**
11029
- * Creates a new VisibilityFeature instance using the specified properties.
11030
- * @param [properties] Properties to set
11031
- * @returns VisibilityFeature instance
11032
- */
11033
- public static create(properties?: google.protobuf.FeatureSet.IVisibilityFeature): google.protobuf.FeatureSet.VisibilityFeature;
11034
-
11035
- /**
11036
- * Encodes the specified VisibilityFeature message. Does not implicitly {@link google.protobuf.FeatureSet.VisibilityFeature.verify|verify} messages.
11037
- * @param message VisibilityFeature message or plain object to encode
11038
- * @param [writer] Writer to encode to
11039
- * @returns Writer
11040
- */
11041
- public static encode(message: google.protobuf.FeatureSet.IVisibilityFeature, writer?: $protobuf.Writer): $protobuf.Writer;
11042
-
11043
- /**
11044
- * Encodes the specified VisibilityFeature message, length delimited. Does not implicitly {@link google.protobuf.FeatureSet.VisibilityFeature.verify|verify} messages.
11045
- * @param message VisibilityFeature message or plain object to encode
11046
- * @param [writer] Writer to encode to
11047
- * @returns Writer
11048
- */
11049
- public static encodeDelimited(message: google.protobuf.FeatureSet.IVisibilityFeature, writer?: $protobuf.Writer): $protobuf.Writer;
11050
-
11051
- /**
11052
- * Decodes a VisibilityFeature message from the specified reader or buffer.
11053
- * @param reader Reader or buffer to decode from
11054
- * @param [length] Message length if known beforehand
11055
- * @returns VisibilityFeature
11056
- * @throws {Error} If the payload is not a reader or valid buffer
11057
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
11058
- */
11059
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FeatureSet.VisibilityFeature;
11060
-
11061
- /**
11062
- * Decodes a VisibilityFeature message from the specified reader or buffer, length delimited.
11063
- * @param reader Reader or buffer to decode from
11064
- * @returns VisibilityFeature
11065
- * @throws {Error} If the payload is not a reader or valid buffer
11066
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
11067
- */
11068
- public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FeatureSet.VisibilityFeature;
11069
-
11070
- /**
11071
- * Verifies a VisibilityFeature message.
11072
- * @param message Plain object to verify
11073
- * @returns `null` if valid, otherwise the reason why it is not
11074
- */
11075
- public static verify(message: { [k: string]: any }): (string|null);
11076
-
11077
- /**
11078
- * Creates a VisibilityFeature message from a plain object. Also converts values to their respective internal types.
11079
- * @param object Plain object
11080
- * @returns VisibilityFeature
11081
- */
11082
- public static fromObject(object: { [k: string]: any }): google.protobuf.FeatureSet.VisibilityFeature;
11083
-
11084
- /**
11085
- * Creates a plain object from a VisibilityFeature message. Also converts values to other types if specified.
11086
- * @param message VisibilityFeature
11087
- * @param [options] Conversion options
11088
- * @returns Plain object
11089
- */
11090
- public static toObject(message: google.protobuf.FeatureSet.VisibilityFeature, options?: $protobuf.IConversionOptions): { [k: string]: any };
11091
-
11092
- /**
11093
- * Converts this VisibilityFeature to JSON.
11094
- * @returns JSON object
11095
- */
11096
- public toJSON(): { [k: string]: any };
11097
-
11098
- /**
11099
- * Gets the default type url for VisibilityFeature
11100
- * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
11101
- * @returns The default type url
11102
- */
11103
- public static getTypeUrl(typeUrlPrefix?: string): string;
11104
- }
11105
-
11106
- namespace VisibilityFeature {
11107
-
11108
- /** DefaultSymbolVisibility enum. */
11109
- enum DefaultSymbolVisibility {
11110
- DEFAULT_SYMBOL_VISIBILITY_UNKNOWN = 0,
11111
- EXPORT_ALL = 1,
11112
- EXPORT_TOP_LEVEL = 2,
11113
- LOCAL_ALL = 3,
11114
- STRICT = 4
11115
- }
11116
- }
11117
10524
  }
11118
10525
 
11119
10526
  /** Properties of a FeatureSetDefaults. */
@@ -11233,11 +10640,8 @@ export namespace google {
11233
10640
  /** FeatureSetEditionDefault edition */
11234
10641
  edition?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
11235
10642
 
11236
- /** FeatureSetEditionDefault overridableFeatures */
11237
- overridableFeatures?: (google.protobuf.IFeatureSet|null);
11238
-
11239
- /** FeatureSetEditionDefault fixedFeatures */
11240
- fixedFeatures?: (google.protobuf.IFeatureSet|null);
10643
+ /** FeatureSetEditionDefault features */
10644
+ features?: (google.protobuf.IFeatureSet|null);
11241
10645
  }
11242
10646
 
11243
10647
  /** Represents a FeatureSetEditionDefault. */
@@ -11252,11 +10656,8 @@ export namespace google {
11252
10656
  /** FeatureSetEditionDefault edition. */
11253
10657
  public edition: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
11254
10658
 
11255
- /** FeatureSetEditionDefault overridableFeatures. */
11256
- public overridableFeatures?: (google.protobuf.IFeatureSet|null);
11257
-
11258
- /** FeatureSetEditionDefault fixedFeatures. */
11259
- public fixedFeatures?: (google.protobuf.IFeatureSet|null);
10659
+ /** FeatureSetEditionDefault features. */
10660
+ public features?: (google.protobuf.IFeatureSet|null);
11260
10661
 
11261
10662
  /**
11262
10663
  * Creates a new FeatureSetEditionDefault instance using the specified properties.
@@ -11789,13 +11190,6 @@ export namespace google {
11789
11190
  }
11790
11191
  }
11791
11192
 
11792
- /** SymbolVisibility enum. */
11793
- enum SymbolVisibility {
11794
- VISIBILITY_UNSET = 0,
11795
- VISIBILITY_LOCAL = 1,
11796
- VISIBILITY_EXPORT = 2
11797
- }
11798
-
11799
11193
  /** Properties of a Duration. */
11800
11194
  interface IDuration {
11801
11195