@@ -6334,6 +6334,9 @@ export namespace google {
6334
6334
/** FieldOptions features */
6335
6335
features ?: ( google . protobuf . IFeatureSet | null ) ;
6336
6336
6337
+ /** FieldOptions featureSupport */
6338
+ featureSupport ?: ( google . protobuf . FieldOptions . IFeatureSupport | null ) ;
6339
+
6337
6340
/** FieldOptions uninterpretedOption */
6338
6341
uninterpretedOption ?: ( google . protobuf . IUninterpretedOption [ ] | null ) ;
6339
6342
@@ -6389,6 +6392,9 @@ export namespace google {
6389
6392
/** FieldOptions features. */
6390
6393
public features ?: ( google . protobuf . IFeatureSet | null ) ;
6391
6394
6395
+ /** FieldOptions featureSupport. */
6396
+ public featureSupport ?: ( google . protobuf . FieldOptions . IFeatureSupport | null ) ;
6397
+
6392
6398
/** FieldOptions uninterpretedOption. */
6393
6399
public uninterpretedOption : google . protobuf . IUninterpretedOption [ ] ;
6394
6400
@@ -6492,6 +6498,72 @@ export namespace google {
6492
6498
*/
6493
6499
public static getTypeUrl ( typeUrlPrefix ?: string ) : string ;
6494
6500
}
6501
+
6502
+ /** Properties of a FeatureSupport. */
6503
+ interface IFeatureSupport {
6504
+
6505
+ /** FeatureSupport editionIntroduced */
6506
+ editionIntroduced ?: ( google . protobuf . Edition | null ) ;
6507
+
6508
+ /** FeatureSupport editionDeprecated */
6509
+ editionDeprecated ?: ( google . protobuf . Edition | null ) ;
6510
+
6511
+ /** FeatureSupport deprecationWarning */
6512
+ deprecationWarning ?: ( string | null ) ;
6513
+
6514
+ /** FeatureSupport editionRemoved */
6515
+ editionRemoved ?: ( google . protobuf . Edition | null ) ;
6516
+ }
6517
+
6518
+ /** Represents a FeatureSupport. */
6519
+ class FeatureSupport implements IFeatureSupport {
6520
+
6521
+ /**
6522
+ * Constructs a new FeatureSupport.
6523
+ * @param [properties] Properties to set
6524
+ */
6525
+ constructor ( properties ?: google . protobuf . FieldOptions . IFeatureSupport ) ;
6526
+
6527
+ /** FeatureSupport editionIntroduced. */
6528
+ public editionIntroduced : google . protobuf . Edition ;
6529
+
6530
+ /** FeatureSupport editionDeprecated. */
6531
+ public editionDeprecated : google . protobuf . Edition ;
6532
+
6533
+ /** FeatureSupport deprecationWarning. */
6534
+ public deprecationWarning : string ;
6535
+
6536
+ /** FeatureSupport editionRemoved. */
6537
+ public editionRemoved : google . protobuf . Edition ;
6538
+
6539
+ /**
6540
+ * Creates a FeatureSupport message from a plain object. Also converts values to their respective internal types.
6541
+ * @param object Plain object
6542
+ * @returns FeatureSupport
6543
+ */
6544
+ public static fromObject ( object : { [ k : string ] : any } ) : google . protobuf . FieldOptions . FeatureSupport ;
6545
+
6546
+ /**
6547
+ * Creates a plain object from a FeatureSupport message. Also converts values to other types if specified.
6548
+ * @param message FeatureSupport
6549
+ * @param [options] Conversion options
6550
+ * @returns Plain object
6551
+ */
6552
+ public static toObject ( message : google . protobuf . FieldOptions . FeatureSupport , options ?: $protobuf . IConversionOptions ) : { [ k : string ] : any } ;
6553
+
6554
+ /**
6555
+ * Converts this FeatureSupport to JSON.
6556
+ * @returns JSON object
6557
+ */
6558
+ public toJSON ( ) : { [ k : string ] : any } ;
6559
+
6560
+ /**
6561
+ * Gets the default type url for FeatureSupport
6562
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
6563
+ * @returns The default type url
6564
+ */
6565
+ public static getTypeUrl ( typeUrlPrefix ?: string ) : string ;
6566
+ }
6495
6567
}
6496
6568
6497
6569
/** Properties of an OneofOptions. */
@@ -7151,6 +7223,12 @@ export namespace google {
7151
7223
/** FeatureSetEditionDefault edition */
7152
7224
edition ?: ( google . protobuf . Edition | null ) ;
7153
7225
7226
+ /** FeatureSetEditionDefault overridableFeatures */
7227
+ overridableFeatures ?: ( google . protobuf . IFeatureSet | null ) ;
7228
+
7229
+ /** FeatureSetEditionDefault fixedFeatures */
7230
+ fixedFeatures ?: ( google . protobuf . IFeatureSet | null ) ;
7231
+
7154
7232
/** FeatureSetEditionDefault features */
7155
7233
features ?: ( google . protobuf . IFeatureSet | null ) ;
7156
7234
}
@@ -7167,6 +7245,12 @@ export namespace google {
7167
7245
/** FeatureSetEditionDefault edition. */
7168
7246
public edition : google . protobuf . Edition ;
7169
7247
7248
+ /** FeatureSetEditionDefault overridableFeatures. */
7249
+ public overridableFeatures ?: ( google . protobuf . IFeatureSet | null ) ;
7250
+
7251
+ /** FeatureSetEditionDefault fixedFeatures. */
7252
+ public fixedFeatures ?: ( google . protobuf . IFeatureSet | null ) ;
7253
+
7170
7254
/** FeatureSetEditionDefault features. */
7171
7255
public features ?: ( google . protobuf . IFeatureSet | null ) ;
7172
7256
0 commit comments