@google-apps/chat 0.24.0 → 0.25.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.
@@ -993,6 +993,7 @@ export namespace google {
993
993
  /** Edition enum. */
994
994
  enum Edition {
995
995
  EDITION_UNKNOWN = 0,
996
+ EDITION_LEGACY = 900,
996
997
  EDITION_PROTO2 = 998,
997
998
  EDITION_PROTO3 = 999,
998
999
  EDITION_2023 = 1000,
@@ -1023,6 +1024,9 @@ export namespace google {
1023
1024
  /** FileDescriptorProto weakDependency */
1024
1025
  weakDependency?: (number[]|null);
1025
1026
 
1027
+ /** FileDescriptorProto optionDependency */
1028
+ optionDependency?: (string[]|null);
1029
+
1026
1030
  /** FileDescriptorProto messageType */
1027
1031
  messageType?: (google.protobuf.IDescriptorProto[]|null);
1028
1032
 
@@ -1072,6 +1076,9 @@ export namespace google {
1072
1076
  /** FileDescriptorProto weakDependency. */
1073
1077
  public weakDependency: number[];
1074
1078
 
1079
+ /** FileDescriptorProto optionDependency. */
1080
+ public optionDependency: string[];
1081
+
1075
1082
  /** FileDescriptorProto messageType. */
1076
1083
  public messageType: google.protobuf.IDescriptorProto[];
1077
1084
 
@@ -1206,6 +1213,9 @@ export namespace google {
1206
1213
 
1207
1214
  /** DescriptorProto reservedName */
1208
1215
  reservedName?: (string[]|null);
1216
+
1217
+ /** DescriptorProto visibility */
1218
+ visibility?: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility|null);
1209
1219
  }
1210
1220
 
1211
1221
  /** Represents a DescriptorProto. */
@@ -1247,6 +1257,9 @@ export namespace google {
1247
1257
  /** DescriptorProto reservedName. */
1248
1258
  public reservedName: string[];
1249
1259
 
1260
+ /** DescriptorProto visibility. */
1261
+ public visibility: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility);
1262
+
1250
1263
  /**
1251
1264
  * Creates a new DescriptorProto instance using the specified properties.
1252
1265
  * @param [properties] Properties to set
@@ -2094,6 +2107,9 @@ export namespace google {
2094
2107
 
2095
2108
  /** EnumDescriptorProto reservedName */
2096
2109
  reservedName?: (string[]|null);
2110
+
2111
+ /** EnumDescriptorProto visibility */
2112
+ visibility?: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility|null);
2097
2113
  }
2098
2114
 
2099
2115
  /** Represents an EnumDescriptorProto. */
@@ -2120,6 +2136,9 @@ export namespace google {
2120
2136
  /** EnumDescriptorProto reservedName. */
2121
2137
  public reservedName: string[];
2122
2138
 
2139
+ /** EnumDescriptorProto visibility. */
2140
+ public visibility: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility);
2141
+
2123
2142
  /**
2124
2143
  * Creates a new EnumDescriptorProto instance using the specified properties.
2125
2144
  * @param [properties] Properties to set
@@ -3054,6 +3073,9 @@ export namespace google {
3054
3073
  /** FieldOptions features */
3055
3074
  features?: (google.protobuf.IFeatureSet|null);
3056
3075
 
3076
+ /** FieldOptions featureSupport */
3077
+ featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
3078
+
3057
3079
  /** FieldOptions uninterpretedOption */
3058
3080
  uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
3059
3081
 
@@ -3112,6 +3134,9 @@ export namespace google {
3112
3134
  /** FieldOptions features. */
3113
3135
  public features?: (google.protobuf.IFeatureSet|null);
3114
3136
 
3137
+ /** FieldOptions featureSupport. */
3138
+ public featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
3139
+
3115
3140
  /** FieldOptions uninterpretedOption. */
3116
3141
  public uninterpretedOption: google.protobuf.IUninterpretedOption[];
3117
3142
 
@@ -3332,6 +3357,121 @@ export namespace google {
3332
3357
  */
3333
3358
  public static getTypeUrl(typeUrlPrefix?: string): string;
3334
3359
  }
3360
+
3361
+ /** Properties of a FeatureSupport. */
3362
+ interface IFeatureSupport {
3363
+
3364
+ /** FeatureSupport editionIntroduced */
3365
+ editionIntroduced?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
3366
+
3367
+ /** FeatureSupport editionDeprecated */
3368
+ editionDeprecated?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
3369
+
3370
+ /** FeatureSupport deprecationWarning */
3371
+ deprecationWarning?: (string|null);
3372
+
3373
+ /** FeatureSupport editionRemoved */
3374
+ editionRemoved?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
3375
+ }
3376
+
3377
+ /** Represents a FeatureSupport. */
3378
+ class FeatureSupport implements IFeatureSupport {
3379
+
3380
+ /**
3381
+ * Constructs a new FeatureSupport.
3382
+ * @param [properties] Properties to set
3383
+ */
3384
+ constructor(properties?: google.protobuf.FieldOptions.IFeatureSupport);
3385
+
3386
+ /** FeatureSupport editionIntroduced. */
3387
+ public editionIntroduced: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
3388
+
3389
+ /** FeatureSupport editionDeprecated. */
3390
+ public editionDeprecated: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
3391
+
3392
+ /** FeatureSupport deprecationWarning. */
3393
+ public deprecationWarning: string;
3394
+
3395
+ /** FeatureSupport editionRemoved. */
3396
+ public editionRemoved: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
3397
+
3398
+ /**
3399
+ * Creates a new FeatureSupport instance using the specified properties.
3400
+ * @param [properties] Properties to set
3401
+ * @returns FeatureSupport instance
3402
+ */
3403
+ public static create(properties?: google.protobuf.FieldOptions.IFeatureSupport): google.protobuf.FieldOptions.FeatureSupport;
3404
+
3405
+ /**
3406
+ * Encodes the specified FeatureSupport message. Does not implicitly {@link google.protobuf.FieldOptions.FeatureSupport.verify|verify} messages.
3407
+ * @param message FeatureSupport message or plain object to encode
3408
+ * @param [writer] Writer to encode to
3409
+ * @returns Writer
3410
+ */
3411
+ public static encode(message: google.protobuf.FieldOptions.IFeatureSupport, writer?: $protobuf.Writer): $protobuf.Writer;
3412
+
3413
+ /**
3414
+ * Encodes the specified FeatureSupport message, length delimited. Does not implicitly {@link google.protobuf.FieldOptions.FeatureSupport.verify|verify} messages.
3415
+ * @param message FeatureSupport message or plain object to encode
3416
+ * @param [writer] Writer to encode to
3417
+ * @returns Writer
3418
+ */
3419
+ public static encodeDelimited(message: google.protobuf.FieldOptions.IFeatureSupport, writer?: $protobuf.Writer): $protobuf.Writer;
3420
+
3421
+ /**
3422
+ * Decodes a FeatureSupport message from the specified reader or buffer.
3423
+ * @param reader Reader or buffer to decode from
3424
+ * @param [length] Message length if known beforehand
3425
+ * @returns FeatureSupport
3426
+ * @throws {Error} If the payload is not a reader or valid buffer
3427
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
3428
+ */
3429
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FieldOptions.FeatureSupport;
3430
+
3431
+ /**
3432
+ * Decodes a FeatureSupport message from the specified reader or buffer, length delimited.
3433
+ * @param reader Reader or buffer to decode from
3434
+ * @returns FeatureSupport
3435
+ * @throws {Error} If the payload is not a reader or valid buffer
3436
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
3437
+ */
3438
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FieldOptions.FeatureSupport;
3439
+
3440
+ /**
3441
+ * Verifies a FeatureSupport message.
3442
+ * @param message Plain object to verify
3443
+ * @returns `null` if valid, otherwise the reason why it is not
3444
+ */
3445
+ public static verify(message: { [k: string]: any }): (string|null);
3446
+
3447
+ /**
3448
+ * Creates a FeatureSupport message from a plain object. Also converts values to their respective internal types.
3449
+ * @param object Plain object
3450
+ * @returns FeatureSupport
3451
+ */
3452
+ public static fromObject(object: { [k: string]: any }): google.protobuf.FieldOptions.FeatureSupport;
3453
+
3454
+ /**
3455
+ * Creates a plain object from a FeatureSupport message. Also converts values to other types if specified.
3456
+ * @param message FeatureSupport
3457
+ * @param [options] Conversion options
3458
+ * @returns Plain object
3459
+ */
3460
+ public static toObject(message: google.protobuf.FieldOptions.FeatureSupport, options?: $protobuf.IConversionOptions): { [k: string]: any };
3461
+
3462
+ /**
3463
+ * Converts this FeatureSupport to JSON.
3464
+ * @returns JSON object
3465
+ */
3466
+ public toJSON(): { [k: string]: any };
3467
+
3468
+ /**
3469
+ * Gets the default type url for FeatureSupport
3470
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
3471
+ * @returns The default type url
3472
+ */
3473
+ public static getTypeUrl(typeUrlPrefix?: string): string;
3474
+ }
3335
3475
  }
3336
3476
 
3337
3477
  /** Properties of an OneofOptions. */
@@ -3570,6 +3710,9 @@ export namespace google {
3570
3710
  /** EnumValueOptions debugRedact */
3571
3711
  debugRedact?: (boolean|null);
3572
3712
 
3713
+ /** EnumValueOptions featureSupport */
3714
+ featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
3715
+
3573
3716
  /** EnumValueOptions uninterpretedOption */
3574
3717
  uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
3575
3718
  }
@@ -3592,6 +3735,9 @@ export namespace google {
3592
3735
  /** EnumValueOptions debugRedact. */
3593
3736
  public debugRedact: boolean;
3594
3737
 
3738
+ /** EnumValueOptions featureSupport. */
3739
+ public featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
3740
+
3595
3741
  /** EnumValueOptions uninterpretedOption. */
3596
3742
  public uninterpretedOption: google.protobuf.IUninterpretedOption[];
3597
3743
 
@@ -4181,6 +4327,12 @@ export namespace google {
4181
4327
 
4182
4328
  /** FeatureSet jsonFormat */
4183
4329
  jsonFormat?: (google.protobuf.FeatureSet.JsonFormat|keyof typeof google.protobuf.FeatureSet.JsonFormat|null);
4330
+
4331
+ /** FeatureSet enforceNamingStyle */
4332
+ enforceNamingStyle?: (google.protobuf.FeatureSet.EnforceNamingStyle|keyof typeof google.protobuf.FeatureSet.EnforceNamingStyle|null);
4333
+
4334
+ /** FeatureSet defaultSymbolVisibility */
4335
+ defaultSymbolVisibility?: (google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility|keyof typeof google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility|null);
4184
4336
  }
4185
4337
 
4186
4338
  /** Represents a FeatureSet. */
@@ -4210,6 +4362,12 @@ export namespace google {
4210
4362
  /** FeatureSet jsonFormat. */
4211
4363
  public jsonFormat: (google.protobuf.FeatureSet.JsonFormat|keyof typeof google.protobuf.FeatureSet.JsonFormat);
4212
4364
 
4365
+ /** FeatureSet enforceNamingStyle. */
4366
+ public enforceNamingStyle: (google.protobuf.FeatureSet.EnforceNamingStyle|keyof typeof google.protobuf.FeatureSet.EnforceNamingStyle);
4367
+
4368
+ /** FeatureSet defaultSymbolVisibility. */
4369
+ public defaultSymbolVisibility: (google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility|keyof typeof google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility);
4370
+
4213
4371
  /**
4214
4372
  * Creates a new FeatureSet instance using the specified properties.
4215
4373
  * @param [properties] Properties to set
@@ -4332,6 +4490,116 @@ export namespace google {
4332
4490
  ALLOW = 1,
4333
4491
  LEGACY_BEST_EFFORT = 2
4334
4492
  }
4493
+
4494
+ /** EnforceNamingStyle enum. */
4495
+ enum EnforceNamingStyle {
4496
+ ENFORCE_NAMING_STYLE_UNKNOWN = 0,
4497
+ STYLE2024 = 1,
4498
+ STYLE_LEGACY = 2
4499
+ }
4500
+
4501
+ /** Properties of a VisibilityFeature. */
4502
+ interface IVisibilityFeature {
4503
+ }
4504
+
4505
+ /** Represents a VisibilityFeature. */
4506
+ class VisibilityFeature implements IVisibilityFeature {
4507
+
4508
+ /**
4509
+ * Constructs a new VisibilityFeature.
4510
+ * @param [properties] Properties to set
4511
+ */
4512
+ constructor(properties?: google.protobuf.FeatureSet.IVisibilityFeature);
4513
+
4514
+ /**
4515
+ * Creates a new VisibilityFeature instance using the specified properties.
4516
+ * @param [properties] Properties to set
4517
+ * @returns VisibilityFeature instance
4518
+ */
4519
+ public static create(properties?: google.protobuf.FeatureSet.IVisibilityFeature): google.protobuf.FeatureSet.VisibilityFeature;
4520
+
4521
+ /**
4522
+ * Encodes the specified VisibilityFeature message. Does not implicitly {@link google.protobuf.FeatureSet.VisibilityFeature.verify|verify} messages.
4523
+ * @param message VisibilityFeature message or plain object to encode
4524
+ * @param [writer] Writer to encode to
4525
+ * @returns Writer
4526
+ */
4527
+ public static encode(message: google.protobuf.FeatureSet.IVisibilityFeature, writer?: $protobuf.Writer): $protobuf.Writer;
4528
+
4529
+ /**
4530
+ * Encodes the specified VisibilityFeature message, length delimited. Does not implicitly {@link google.protobuf.FeatureSet.VisibilityFeature.verify|verify} messages.
4531
+ * @param message VisibilityFeature message or plain object to encode
4532
+ * @param [writer] Writer to encode to
4533
+ * @returns Writer
4534
+ */
4535
+ public static encodeDelimited(message: google.protobuf.FeatureSet.IVisibilityFeature, writer?: $protobuf.Writer): $protobuf.Writer;
4536
+
4537
+ /**
4538
+ * Decodes a VisibilityFeature message from the specified reader or buffer.
4539
+ * @param reader Reader or buffer to decode from
4540
+ * @param [length] Message length if known beforehand
4541
+ * @returns VisibilityFeature
4542
+ * @throws {Error} If the payload is not a reader or valid buffer
4543
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
4544
+ */
4545
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FeatureSet.VisibilityFeature;
4546
+
4547
+ /**
4548
+ * Decodes a VisibilityFeature message from the specified reader or buffer, length delimited.
4549
+ * @param reader Reader or buffer to decode from
4550
+ * @returns VisibilityFeature
4551
+ * @throws {Error} If the payload is not a reader or valid buffer
4552
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
4553
+ */
4554
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FeatureSet.VisibilityFeature;
4555
+
4556
+ /**
4557
+ * Verifies a VisibilityFeature message.
4558
+ * @param message Plain object to verify
4559
+ * @returns `null` if valid, otherwise the reason why it is not
4560
+ */
4561
+ public static verify(message: { [k: string]: any }): (string|null);
4562
+
4563
+ /**
4564
+ * Creates a VisibilityFeature message from a plain object. Also converts values to their respective internal types.
4565
+ * @param object Plain object
4566
+ * @returns VisibilityFeature
4567
+ */
4568
+ public static fromObject(object: { [k: string]: any }): google.protobuf.FeatureSet.VisibilityFeature;
4569
+
4570
+ /**
4571
+ * Creates a plain object from a VisibilityFeature message. Also converts values to other types if specified.
4572
+ * @param message VisibilityFeature
4573
+ * @param [options] Conversion options
4574
+ * @returns Plain object
4575
+ */
4576
+ public static toObject(message: google.protobuf.FeatureSet.VisibilityFeature, options?: $protobuf.IConversionOptions): { [k: string]: any };
4577
+
4578
+ /**
4579
+ * Converts this VisibilityFeature to JSON.
4580
+ * @returns JSON object
4581
+ */
4582
+ public toJSON(): { [k: string]: any };
4583
+
4584
+ /**
4585
+ * Gets the default type url for VisibilityFeature
4586
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
4587
+ * @returns The default type url
4588
+ */
4589
+ public static getTypeUrl(typeUrlPrefix?: string): string;
4590
+ }
4591
+
4592
+ namespace VisibilityFeature {
4593
+
4594
+ /** DefaultSymbolVisibility enum. */
4595
+ enum DefaultSymbolVisibility {
4596
+ DEFAULT_SYMBOL_VISIBILITY_UNKNOWN = 0,
4597
+ EXPORT_ALL = 1,
4598
+ EXPORT_TOP_LEVEL = 2,
4599
+ LOCAL_ALL = 3,
4600
+ STRICT = 4
4601
+ }
4602
+ }
4335
4603
  }
4336
4604
 
4337
4605
  /** Properties of a FeatureSetDefaults. */
@@ -4451,8 +4719,11 @@ export namespace google {
4451
4719
  /** FeatureSetEditionDefault edition */
4452
4720
  edition?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
4453
4721
 
4454
- /** FeatureSetEditionDefault features */
4455
- features?: (google.protobuf.IFeatureSet|null);
4722
+ /** FeatureSetEditionDefault overridableFeatures */
4723
+ overridableFeatures?: (google.protobuf.IFeatureSet|null);
4724
+
4725
+ /** FeatureSetEditionDefault fixedFeatures */
4726
+ fixedFeatures?: (google.protobuf.IFeatureSet|null);
4456
4727
  }
4457
4728
 
4458
4729
  /** Represents a FeatureSetEditionDefault. */
@@ -4467,8 +4738,11 @@ export namespace google {
4467
4738
  /** FeatureSetEditionDefault edition. */
4468
4739
  public edition: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
4469
4740
 
4470
- /** FeatureSetEditionDefault features. */
4471
- public features?: (google.protobuf.IFeatureSet|null);
4741
+ /** FeatureSetEditionDefault overridableFeatures. */
4742
+ public overridableFeatures?: (google.protobuf.IFeatureSet|null);
4743
+
4744
+ /** FeatureSetEditionDefault fixedFeatures. */
4745
+ public fixedFeatures?: (google.protobuf.IFeatureSet|null);
4472
4746
 
4473
4747
  /**
4474
4748
  * Creates a new FeatureSetEditionDefault instance using the specified properties.
@@ -5001,6 +5275,13 @@ export namespace google {
5001
5275
  }
5002
5276
  }
5003
5277
 
5278
+ /** SymbolVisibility enum. */
5279
+ enum SymbolVisibility {
5280
+ VISIBILITY_UNSET = 0,
5281
+ VISIBILITY_LOCAL = 1,
5282
+ VISIBILITY_EXPORT = 2
5283
+ }
5284
+
5004
5285
  /** Properties of a Duration. */
5005
5286
  interface IDuration {
5006
5287
 
@@ -16544,7 +16825,8 @@ export namespace google {
16544
16825
  /** QuoteType enum. */
16545
16826
  enum QuoteType {
16546
16827
  QUOTE_TYPE_UNSPECIFIED = 0,
16547
- REPLY = 1
16828
+ REPLY = 1,
16829
+ FORWARD = 2
16548
16830
  }
16549
16831
  }
16550
16832
 
@@ -27606,6 +27888,9 @@ export namespace google {
27606
27888
 
27607
27889
  /** FieldInfo format */
27608
27890
  format?: (google.api.FieldInfo.Format|keyof typeof google.api.FieldInfo.Format|null);
27891
+
27892
+ /** FieldInfo referencedTypes */
27893
+ referencedTypes?: (google.api.ITypeReference[]|null);
27609
27894
  }
27610
27895
 
27611
27896
  /** Represents a FieldInfo. */
@@ -27620,6 +27905,9 @@ export namespace google {
27620
27905
  /** FieldInfo format. */
27621
27906
  public format: (google.api.FieldInfo.Format|keyof typeof google.api.FieldInfo.Format);
27622
27907
 
27908
+ /** FieldInfo referencedTypes. */
27909
+ public referencedTypes: google.api.ITypeReference[];
27910
+
27623
27911
  /**
27624
27912
  * Creates a new FieldInfo instance using the specified properties.
27625
27913
  * @param [properties] Properties to set
@@ -27710,6 +27998,103 @@ export namespace google {
27710
27998
  }
27711
27999
  }
27712
28000
 
28001
+ /** Properties of a TypeReference. */
28002
+ interface ITypeReference {
28003
+
28004
+ /** TypeReference typeName */
28005
+ typeName?: (string|null);
28006
+ }
28007
+
28008
+ /** Represents a TypeReference. */
28009
+ class TypeReference implements ITypeReference {
28010
+
28011
+ /**
28012
+ * Constructs a new TypeReference.
28013
+ * @param [properties] Properties to set
28014
+ */
28015
+ constructor(properties?: google.api.ITypeReference);
28016
+
28017
+ /** TypeReference typeName. */
28018
+ public typeName: string;
28019
+
28020
+ /**
28021
+ * Creates a new TypeReference instance using the specified properties.
28022
+ * @param [properties] Properties to set
28023
+ * @returns TypeReference instance
28024
+ */
28025
+ public static create(properties?: google.api.ITypeReference): google.api.TypeReference;
28026
+
28027
+ /**
28028
+ * Encodes the specified TypeReference message. Does not implicitly {@link google.api.TypeReference.verify|verify} messages.
28029
+ * @param message TypeReference message or plain object to encode
28030
+ * @param [writer] Writer to encode to
28031
+ * @returns Writer
28032
+ */
28033
+ public static encode(message: google.api.ITypeReference, writer?: $protobuf.Writer): $protobuf.Writer;
28034
+
28035
+ /**
28036
+ * Encodes the specified TypeReference message, length delimited. Does not implicitly {@link google.api.TypeReference.verify|verify} messages.
28037
+ * @param message TypeReference message or plain object to encode
28038
+ * @param [writer] Writer to encode to
28039
+ * @returns Writer
28040
+ */
28041
+ public static encodeDelimited(message: google.api.ITypeReference, writer?: $protobuf.Writer): $protobuf.Writer;
28042
+
28043
+ /**
28044
+ * Decodes a TypeReference message from the specified reader or buffer.
28045
+ * @param reader Reader or buffer to decode from
28046
+ * @param [length] Message length if known beforehand
28047
+ * @returns TypeReference
28048
+ * @throws {Error} If the payload is not a reader or valid buffer
28049
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
28050
+ */
28051
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.TypeReference;
28052
+
28053
+ /**
28054
+ * Decodes a TypeReference message from the specified reader or buffer, length delimited.
28055
+ * @param reader Reader or buffer to decode from
28056
+ * @returns TypeReference
28057
+ * @throws {Error} If the payload is not a reader or valid buffer
28058
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
28059
+ */
28060
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.TypeReference;
28061
+
28062
+ /**
28063
+ * Verifies a TypeReference message.
28064
+ * @param message Plain object to verify
28065
+ * @returns `null` if valid, otherwise the reason why it is not
28066
+ */
28067
+ public static verify(message: { [k: string]: any }): (string|null);
28068
+
28069
+ /**
28070
+ * Creates a TypeReference message from a plain object. Also converts values to their respective internal types.
28071
+ * @param object Plain object
28072
+ * @returns TypeReference
28073
+ */
28074
+ public static fromObject(object: { [k: string]: any }): google.api.TypeReference;
28075
+
28076
+ /**
28077
+ * Creates a plain object from a TypeReference message. Also converts values to other types if specified.
28078
+ * @param message TypeReference
28079
+ * @param [options] Conversion options
28080
+ * @returns Plain object
28081
+ */
28082
+ public static toObject(message: google.api.TypeReference, options?: $protobuf.IConversionOptions): { [k: string]: any };
28083
+
28084
+ /**
28085
+ * Converts this TypeReference to JSON.
28086
+ * @returns JSON object
28087
+ */
28088
+ public toJSON(): { [k: string]: any };
28089
+
28090
+ /**
28091
+ * Gets the default type url for TypeReference
28092
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
28093
+ * @returns The default type url
28094
+ */
28095
+ public static getTypeUrl(typeUrlPrefix?: string): string;
28096
+ }
28097
+
27713
28098
  /** Properties of a Http. */
27714
28099
  interface IHttp {
27715
28100
 
@@ -28078,6 +28463,9 @@ export namespace google {
28078
28463
 
28079
28464
  /** CommonLanguageSettings destinations */
28080
28465
  destinations?: (google.api.ClientLibraryDestination[]|null);
28466
+
28467
+ /** CommonLanguageSettings selectiveGapicGeneration */
28468
+ selectiveGapicGeneration?: (google.api.ISelectiveGapicGeneration|null);
28081
28469
  }
28082
28470
 
28083
28471
  /** Represents a CommonLanguageSettings. */
@@ -28095,6 +28483,9 @@ export namespace google {
28095
28483
  /** CommonLanguageSettings destinations. */
28096
28484
  public destinations: google.api.ClientLibraryDestination[];
28097
28485
 
28486
+ /** CommonLanguageSettings selectiveGapicGeneration. */
28487
+ public selectiveGapicGeneration?: (google.api.ISelectiveGapicGeneration|null);
28488
+
28098
28489
  /**
28099
28490
  * Creates a new CommonLanguageSettings instance using the specified properties.
28100
28491
  * @param [properties] Properties to set
@@ -28795,6 +29186,9 @@ export namespace google {
28795
29186
 
28796
29187
  /** PythonSettings common */
28797
29188
  common?: (google.api.ICommonLanguageSettings|null);
29189
+
29190
+ /** PythonSettings experimentalFeatures */
29191
+ experimentalFeatures?: (google.api.PythonSettings.IExperimentalFeatures|null);
28798
29192
  }
28799
29193
 
28800
29194
  /** Represents a PythonSettings. */
@@ -28809,6 +29203,9 @@ export namespace google {
28809
29203
  /** PythonSettings common. */
28810
29204
  public common?: (google.api.ICommonLanguageSettings|null);
28811
29205
 
29206
+ /** PythonSettings experimentalFeatures. */
29207
+ public experimentalFeatures?: (google.api.PythonSettings.IExperimentalFeatures|null);
29208
+
28812
29209
  /**
28813
29210
  * Creates a new PythonSettings instance using the specified properties.
28814
29211
  * @param [properties] Properties to set
@@ -28887,6 +29284,118 @@ export namespace google {
28887
29284
  public static getTypeUrl(typeUrlPrefix?: string): string;
28888
29285
  }
28889
29286
 
29287
+ namespace PythonSettings {
29288
+
29289
+ /** Properties of an ExperimentalFeatures. */
29290
+ interface IExperimentalFeatures {
29291
+
29292
+ /** ExperimentalFeatures restAsyncIoEnabled */
29293
+ restAsyncIoEnabled?: (boolean|null);
29294
+
29295
+ /** ExperimentalFeatures protobufPythonicTypesEnabled */
29296
+ protobufPythonicTypesEnabled?: (boolean|null);
29297
+
29298
+ /** ExperimentalFeatures unversionedPackageDisabled */
29299
+ unversionedPackageDisabled?: (boolean|null);
29300
+ }
29301
+
29302
+ /** Represents an ExperimentalFeatures. */
29303
+ class ExperimentalFeatures implements IExperimentalFeatures {
29304
+
29305
+ /**
29306
+ * Constructs a new ExperimentalFeatures.
29307
+ * @param [properties] Properties to set
29308
+ */
29309
+ constructor(properties?: google.api.PythonSettings.IExperimentalFeatures);
29310
+
29311
+ /** ExperimentalFeatures restAsyncIoEnabled. */
29312
+ public restAsyncIoEnabled: boolean;
29313
+
29314
+ /** ExperimentalFeatures protobufPythonicTypesEnabled. */
29315
+ public protobufPythonicTypesEnabled: boolean;
29316
+
29317
+ /** ExperimentalFeatures unversionedPackageDisabled. */
29318
+ public unversionedPackageDisabled: boolean;
29319
+
29320
+ /**
29321
+ * Creates a new ExperimentalFeatures instance using the specified properties.
29322
+ * @param [properties] Properties to set
29323
+ * @returns ExperimentalFeatures instance
29324
+ */
29325
+ public static create(properties?: google.api.PythonSettings.IExperimentalFeatures): google.api.PythonSettings.ExperimentalFeatures;
29326
+
29327
+ /**
29328
+ * Encodes the specified ExperimentalFeatures message. Does not implicitly {@link google.api.PythonSettings.ExperimentalFeatures.verify|verify} messages.
29329
+ * @param message ExperimentalFeatures message or plain object to encode
29330
+ * @param [writer] Writer to encode to
29331
+ * @returns Writer
29332
+ */
29333
+ public static encode(message: google.api.PythonSettings.IExperimentalFeatures, writer?: $protobuf.Writer): $protobuf.Writer;
29334
+
29335
+ /**
29336
+ * Encodes the specified ExperimentalFeatures message, length delimited. Does not implicitly {@link google.api.PythonSettings.ExperimentalFeatures.verify|verify} messages.
29337
+ * @param message ExperimentalFeatures message or plain object to encode
29338
+ * @param [writer] Writer to encode to
29339
+ * @returns Writer
29340
+ */
29341
+ public static encodeDelimited(message: google.api.PythonSettings.IExperimentalFeatures, writer?: $protobuf.Writer): $protobuf.Writer;
29342
+
29343
+ /**
29344
+ * Decodes an ExperimentalFeatures message from the specified reader or buffer.
29345
+ * @param reader Reader or buffer to decode from
29346
+ * @param [length] Message length if known beforehand
29347
+ * @returns ExperimentalFeatures
29348
+ * @throws {Error} If the payload is not a reader or valid buffer
29349
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
29350
+ */
29351
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.PythonSettings.ExperimentalFeatures;
29352
+
29353
+ /**
29354
+ * Decodes an ExperimentalFeatures message from the specified reader or buffer, length delimited.
29355
+ * @param reader Reader or buffer to decode from
29356
+ * @returns ExperimentalFeatures
29357
+ * @throws {Error} If the payload is not a reader or valid buffer
29358
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
29359
+ */
29360
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.PythonSettings.ExperimentalFeatures;
29361
+
29362
+ /**
29363
+ * Verifies an ExperimentalFeatures message.
29364
+ * @param message Plain object to verify
29365
+ * @returns `null` if valid, otherwise the reason why it is not
29366
+ */
29367
+ public static verify(message: { [k: string]: any }): (string|null);
29368
+
29369
+ /**
29370
+ * Creates an ExperimentalFeatures message from a plain object. Also converts values to their respective internal types.
29371
+ * @param object Plain object
29372
+ * @returns ExperimentalFeatures
29373
+ */
29374
+ public static fromObject(object: { [k: string]: any }): google.api.PythonSettings.ExperimentalFeatures;
29375
+
29376
+ /**
29377
+ * Creates a plain object from an ExperimentalFeatures message. Also converts values to other types if specified.
29378
+ * @param message ExperimentalFeatures
29379
+ * @param [options] Conversion options
29380
+ * @returns Plain object
29381
+ */
29382
+ public static toObject(message: google.api.PythonSettings.ExperimentalFeatures, options?: $protobuf.IConversionOptions): { [k: string]: any };
29383
+
29384
+ /**
29385
+ * Converts this ExperimentalFeatures to JSON.
29386
+ * @returns JSON object
29387
+ */
29388
+ public toJSON(): { [k: string]: any };
29389
+
29390
+ /**
29391
+ * Gets the default type url for ExperimentalFeatures
29392
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
29393
+ * @returns The default type url
29394
+ */
29395
+ public static getTypeUrl(typeUrlPrefix?: string): string;
29396
+ }
29397
+ }
29398
+
28890
29399
  /** Properties of a NodeSettings. */
28891
29400
  interface INodeSettings {
28892
29401
 
@@ -29213,6 +29722,9 @@ export namespace google {
29213
29722
 
29214
29723
  /** GoSettings common */
29215
29724
  common?: (google.api.ICommonLanguageSettings|null);
29725
+
29726
+ /** GoSettings renamedServices */
29727
+ renamedServices?: ({ [k: string]: string }|null);
29216
29728
  }
29217
29729
 
29218
29730
  /** Represents a GoSettings. */
@@ -29227,6 +29739,9 @@ export namespace google {
29227
29739
  /** GoSettings common. */
29228
29740
  public common?: (google.api.ICommonLanguageSettings|null);
29229
29741
 
29742
+ /** GoSettings renamedServices. */
29743
+ public renamedServices: { [k: string]: string };
29744
+
29230
29745
  /**
29231
29746
  * Creates a new GoSettings instance using the specified properties.
29232
29747
  * @param [properties] Properties to set
@@ -29551,6 +30066,109 @@ export namespace google {
29551
30066
  PACKAGE_MANAGER = 20
29552
30067
  }
29553
30068
 
30069
+ /** Properties of a SelectiveGapicGeneration. */
30070
+ interface ISelectiveGapicGeneration {
30071
+
30072
+ /** SelectiveGapicGeneration methods */
30073
+ methods?: (string[]|null);
30074
+
30075
+ /** SelectiveGapicGeneration generateOmittedAsInternal */
30076
+ generateOmittedAsInternal?: (boolean|null);
30077
+ }
30078
+
30079
+ /** Represents a SelectiveGapicGeneration. */
30080
+ class SelectiveGapicGeneration implements ISelectiveGapicGeneration {
30081
+
30082
+ /**
30083
+ * Constructs a new SelectiveGapicGeneration.
30084
+ * @param [properties] Properties to set
30085
+ */
30086
+ constructor(properties?: google.api.ISelectiveGapicGeneration);
30087
+
30088
+ /** SelectiveGapicGeneration methods. */
30089
+ public methods: string[];
30090
+
30091
+ /** SelectiveGapicGeneration generateOmittedAsInternal. */
30092
+ public generateOmittedAsInternal: boolean;
30093
+
30094
+ /**
30095
+ * Creates a new SelectiveGapicGeneration instance using the specified properties.
30096
+ * @param [properties] Properties to set
30097
+ * @returns SelectiveGapicGeneration instance
30098
+ */
30099
+ public static create(properties?: google.api.ISelectiveGapicGeneration): google.api.SelectiveGapicGeneration;
30100
+
30101
+ /**
30102
+ * Encodes the specified SelectiveGapicGeneration message. Does not implicitly {@link google.api.SelectiveGapicGeneration.verify|verify} messages.
30103
+ * @param message SelectiveGapicGeneration message or plain object to encode
30104
+ * @param [writer] Writer to encode to
30105
+ * @returns Writer
30106
+ */
30107
+ public static encode(message: google.api.ISelectiveGapicGeneration, writer?: $protobuf.Writer): $protobuf.Writer;
30108
+
30109
+ /**
30110
+ * Encodes the specified SelectiveGapicGeneration message, length delimited. Does not implicitly {@link google.api.SelectiveGapicGeneration.verify|verify} messages.
30111
+ * @param message SelectiveGapicGeneration message or plain object to encode
30112
+ * @param [writer] Writer to encode to
30113
+ * @returns Writer
30114
+ */
30115
+ public static encodeDelimited(message: google.api.ISelectiveGapicGeneration, writer?: $protobuf.Writer): $protobuf.Writer;
30116
+
30117
+ /**
30118
+ * Decodes a SelectiveGapicGeneration message from the specified reader or buffer.
30119
+ * @param reader Reader or buffer to decode from
30120
+ * @param [length] Message length if known beforehand
30121
+ * @returns SelectiveGapicGeneration
30122
+ * @throws {Error} If the payload is not a reader or valid buffer
30123
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
30124
+ */
30125
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.SelectiveGapicGeneration;
30126
+
30127
+ /**
30128
+ * Decodes a SelectiveGapicGeneration message from the specified reader or buffer, length delimited.
30129
+ * @param reader Reader or buffer to decode from
30130
+ * @returns SelectiveGapicGeneration
30131
+ * @throws {Error} If the payload is not a reader or valid buffer
30132
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
30133
+ */
30134
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.SelectiveGapicGeneration;
30135
+
30136
+ /**
30137
+ * Verifies a SelectiveGapicGeneration message.
30138
+ * @param message Plain object to verify
30139
+ * @returns `null` if valid, otherwise the reason why it is not
30140
+ */
30141
+ public static verify(message: { [k: string]: any }): (string|null);
30142
+
30143
+ /**
30144
+ * Creates a SelectiveGapicGeneration message from a plain object. Also converts values to their respective internal types.
30145
+ * @param object Plain object
30146
+ * @returns SelectiveGapicGeneration
30147
+ */
30148
+ public static fromObject(object: { [k: string]: any }): google.api.SelectiveGapicGeneration;
30149
+
30150
+ /**
30151
+ * Creates a plain object from a SelectiveGapicGeneration message. Also converts values to other types if specified.
30152
+ * @param message SelectiveGapicGeneration
30153
+ * @param [options] Conversion options
30154
+ * @returns Plain object
30155
+ */
30156
+ public static toObject(message: google.api.SelectiveGapicGeneration, options?: $protobuf.IConversionOptions): { [k: string]: any };
30157
+
30158
+ /**
30159
+ * Converts this SelectiveGapicGeneration to JSON.
30160
+ * @returns JSON object
30161
+ */
30162
+ public toJSON(): { [k: string]: any };
30163
+
30164
+ /**
30165
+ * Gets the default type url for SelectiveGapicGeneration
30166
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
30167
+ * @returns The default type url
30168
+ */
30169
+ public static getTypeUrl(typeUrlPrefix?: string): string;
30170
+ }
30171
+
29554
30172
  /** LaunchStage enum. */
29555
30173
  enum LaunchStage {
29556
30174
  LAUNCH_STAGE_UNSPECIFIED = 0,