@google-apps/chat 0.19.0 → 0.20.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,7 +993,6 @@ export namespace google {
993
993
  /** Edition enum. */
994
994
  enum Edition {
995
995
  EDITION_UNKNOWN = 0,
996
- EDITION_LEGACY = 900,
997
996
  EDITION_PROTO2 = 998,
998
997
  EDITION_PROTO3 = 999,
999
998
  EDITION_2023 = 1000,
@@ -1024,9 +1023,6 @@ export namespace google {
1024
1023
  /** FileDescriptorProto weakDependency */
1025
1024
  weakDependency?: (number[]|null);
1026
1025
 
1027
- /** FileDescriptorProto optionDependency */
1028
- optionDependency?: (string[]|null);
1029
-
1030
1026
  /** FileDescriptorProto messageType */
1031
1027
  messageType?: (google.protobuf.IDescriptorProto[]|null);
1032
1028
 
@@ -1076,9 +1072,6 @@ export namespace google {
1076
1072
  /** FileDescriptorProto weakDependency. */
1077
1073
  public weakDependency: number[];
1078
1074
 
1079
- /** FileDescriptorProto optionDependency. */
1080
- public optionDependency: string[];
1081
-
1082
1075
  /** FileDescriptorProto messageType. */
1083
1076
  public messageType: google.protobuf.IDescriptorProto[];
1084
1077
 
@@ -1213,9 +1206,6 @@ export namespace google {
1213
1206
 
1214
1207
  /** DescriptorProto reservedName */
1215
1208
  reservedName?: (string[]|null);
1216
-
1217
- /** DescriptorProto visibility */
1218
- visibility?: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility|null);
1219
1209
  }
1220
1210
 
1221
1211
  /** Represents a DescriptorProto. */
@@ -1257,9 +1247,6 @@ export namespace google {
1257
1247
  /** DescriptorProto reservedName. */
1258
1248
  public reservedName: string[];
1259
1249
 
1260
- /** DescriptorProto visibility. */
1261
- public visibility: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility);
1262
-
1263
1250
  /**
1264
1251
  * Creates a new DescriptorProto instance using the specified properties.
1265
1252
  * @param [properties] Properties to set
@@ -2107,9 +2094,6 @@ export namespace google {
2107
2094
 
2108
2095
  /** EnumDescriptorProto reservedName */
2109
2096
  reservedName?: (string[]|null);
2110
-
2111
- /** EnumDescriptorProto visibility */
2112
- visibility?: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility|null);
2113
2097
  }
2114
2098
 
2115
2099
  /** Represents an EnumDescriptorProto. */
@@ -2136,9 +2120,6 @@ export namespace google {
2136
2120
  /** EnumDescriptorProto reservedName. */
2137
2121
  public reservedName: string[];
2138
2122
 
2139
- /** EnumDescriptorProto visibility. */
2140
- public visibility: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility);
2141
-
2142
2123
  /**
2143
2124
  * Creates a new EnumDescriptorProto instance using the specified properties.
2144
2125
  * @param [properties] Properties to set
@@ -3073,9 +3054,6 @@ export namespace google {
3073
3054
  /** FieldOptions features */
3074
3055
  features?: (google.protobuf.IFeatureSet|null);
3075
3056
 
3076
- /** FieldOptions featureSupport */
3077
- featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
3078
-
3079
3057
  /** FieldOptions uninterpretedOption */
3080
3058
  uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
3081
3059
 
@@ -3134,9 +3112,6 @@ export namespace google {
3134
3112
  /** FieldOptions features. */
3135
3113
  public features?: (google.protobuf.IFeatureSet|null);
3136
3114
 
3137
- /** FieldOptions featureSupport. */
3138
- public featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
3139
-
3140
3115
  /** FieldOptions uninterpretedOption. */
3141
3116
  public uninterpretedOption: google.protobuf.IUninterpretedOption[];
3142
3117
 
@@ -3357,121 +3332,6 @@ export namespace google {
3357
3332
  */
3358
3333
  public static getTypeUrl(typeUrlPrefix?: string): string;
3359
3334
  }
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
- }
3475
3335
  }
3476
3336
 
3477
3337
  /** Properties of an OneofOptions. */
@@ -3710,9 +3570,6 @@ export namespace google {
3710
3570
  /** EnumValueOptions debugRedact */
3711
3571
  debugRedact?: (boolean|null);
3712
3572
 
3713
- /** EnumValueOptions featureSupport */
3714
- featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
3715
-
3716
3573
  /** EnumValueOptions uninterpretedOption */
3717
3574
  uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
3718
3575
  }
@@ -3735,9 +3592,6 @@ export namespace google {
3735
3592
  /** EnumValueOptions debugRedact. */
3736
3593
  public debugRedact: boolean;
3737
3594
 
3738
- /** EnumValueOptions featureSupport. */
3739
- public featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
3740
-
3741
3595
  /** EnumValueOptions uninterpretedOption. */
3742
3596
  public uninterpretedOption: google.protobuf.IUninterpretedOption[];
3743
3597
 
@@ -4327,12 +4181,6 @@ export namespace google {
4327
4181
 
4328
4182
  /** FeatureSet jsonFormat */
4329
4183
  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);
4336
4184
  }
4337
4185
 
4338
4186
  /** Represents a FeatureSet. */
@@ -4362,12 +4210,6 @@ export namespace google {
4362
4210
  /** FeatureSet jsonFormat. */
4363
4211
  public jsonFormat: (google.protobuf.FeatureSet.JsonFormat|keyof typeof google.protobuf.FeatureSet.JsonFormat);
4364
4212
 
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
-
4371
4213
  /**
4372
4214
  * Creates a new FeatureSet instance using the specified properties.
4373
4215
  * @param [properties] Properties to set
@@ -4490,116 +4332,6 @@ export namespace google {
4490
4332
  ALLOW = 1,
4491
4333
  LEGACY_BEST_EFFORT = 2
4492
4334
  }
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
- }
4603
4335
  }
4604
4336
 
4605
4337
  /** Properties of a FeatureSetDefaults. */
@@ -4719,11 +4451,8 @@ export namespace google {
4719
4451
  /** FeatureSetEditionDefault edition */
4720
4452
  edition?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
4721
4453
 
4722
- /** FeatureSetEditionDefault overridableFeatures */
4723
- overridableFeatures?: (google.protobuf.IFeatureSet|null);
4724
-
4725
- /** FeatureSetEditionDefault fixedFeatures */
4726
- fixedFeatures?: (google.protobuf.IFeatureSet|null);
4454
+ /** FeatureSetEditionDefault features */
4455
+ features?: (google.protobuf.IFeatureSet|null);
4727
4456
  }
4728
4457
 
4729
4458
  /** Represents a FeatureSetEditionDefault. */
@@ -4738,11 +4467,8 @@ export namespace google {
4738
4467
  /** FeatureSetEditionDefault edition. */
4739
4468
  public edition: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
4740
4469
 
4741
- /** FeatureSetEditionDefault overridableFeatures. */
4742
- public overridableFeatures?: (google.protobuf.IFeatureSet|null);
4743
-
4744
- /** FeatureSetEditionDefault fixedFeatures. */
4745
- public fixedFeatures?: (google.protobuf.IFeatureSet|null);
4470
+ /** FeatureSetEditionDefault features. */
4471
+ public features?: (google.protobuf.IFeatureSet|null);
4746
4472
 
4747
4473
  /**
4748
4474
  * Creates a new FeatureSetEditionDefault instance using the specified properties.
@@ -5275,13 +5001,6 @@ export namespace google {
5275
5001
  }
5276
5002
  }
5277
5003
 
5278
- /** SymbolVisibility enum. */
5279
- enum SymbolVisibility {
5280
- VISIBILITY_UNSET = 0,
5281
- VISIBILITY_LOCAL = 1,
5282
- VISIBILITY_EXPORT = 2
5283
- }
5284
-
5285
5004
  /** Properties of a Duration. */
5286
5005
  interface IDuration {
5287
5006
 
@@ -5962,6 +5681,9 @@ export namespace google {
5962
5681
 
5963
5682
  /** Section uncollapsibleWidgetsCount */
5964
5683
  uncollapsibleWidgetsCount?: (number|null);
5684
+
5685
+ /** Section collapseControl */
5686
+ collapseControl?: (google.apps.card.v1.ICollapseControl|null);
5965
5687
  }
5966
5688
 
5967
5689
  /** Represents a Section. */
@@ -5985,6 +5707,9 @@ export namespace google {
5985
5707
  /** Section uncollapsibleWidgetsCount. */
5986
5708
  public uncollapsibleWidgetsCount: number;
5987
5709
 
5710
+ /** Section collapseControl. */
5711
+ public collapseControl?: (google.apps.card.v1.ICollapseControl|null);
5712
+
5988
5713
  /**
5989
5714
  * Creates a new Section instance using the specified properties.
5990
5715
  * @param [properties] Properties to set
@@ -6173,6 +5898,118 @@ export namespace google {
6173
5898
  public static getTypeUrl(typeUrlPrefix?: string): string;
6174
5899
  }
6175
5900
 
5901
+ /** Properties of a NestedWidget. */
5902
+ interface INestedWidget {
5903
+
5904
+ /** NestedWidget textParagraph */
5905
+ textParagraph?: (google.apps.card.v1.ITextParagraph|null);
5906
+
5907
+ /** NestedWidget buttonList */
5908
+ buttonList?: (google.apps.card.v1.IButtonList|null);
5909
+
5910
+ /** NestedWidget image */
5911
+ image?: (google.apps.card.v1.IImage|null);
5912
+ }
5913
+
5914
+ /** Represents a NestedWidget. */
5915
+ class NestedWidget implements INestedWidget {
5916
+
5917
+ /**
5918
+ * Constructs a new NestedWidget.
5919
+ * @param [properties] Properties to set
5920
+ */
5921
+ constructor(properties?: google.apps.card.v1.Card.INestedWidget);
5922
+
5923
+ /** NestedWidget textParagraph. */
5924
+ public textParagraph?: (google.apps.card.v1.ITextParagraph|null);
5925
+
5926
+ /** NestedWidget buttonList. */
5927
+ public buttonList?: (google.apps.card.v1.IButtonList|null);
5928
+
5929
+ /** NestedWidget image. */
5930
+ public image?: (google.apps.card.v1.IImage|null);
5931
+
5932
+ /** NestedWidget data. */
5933
+ public data?: ("textParagraph"|"buttonList"|"image");
5934
+
5935
+ /**
5936
+ * Creates a new NestedWidget instance using the specified properties.
5937
+ * @param [properties] Properties to set
5938
+ * @returns NestedWidget instance
5939
+ */
5940
+ public static create(properties?: google.apps.card.v1.Card.INestedWidget): google.apps.card.v1.Card.NestedWidget;
5941
+
5942
+ /**
5943
+ * Encodes the specified NestedWidget message. Does not implicitly {@link google.apps.card.v1.Card.NestedWidget.verify|verify} messages.
5944
+ * @param message NestedWidget message or plain object to encode
5945
+ * @param [writer] Writer to encode to
5946
+ * @returns Writer
5947
+ */
5948
+ public static encode(message: google.apps.card.v1.Card.INestedWidget, writer?: $protobuf.Writer): $protobuf.Writer;
5949
+
5950
+ /**
5951
+ * Encodes the specified NestedWidget message, length delimited. Does not implicitly {@link google.apps.card.v1.Card.NestedWidget.verify|verify} messages.
5952
+ * @param message NestedWidget message or plain object to encode
5953
+ * @param [writer] Writer to encode to
5954
+ * @returns Writer
5955
+ */
5956
+ public static encodeDelimited(message: google.apps.card.v1.Card.INestedWidget, writer?: $protobuf.Writer): $protobuf.Writer;
5957
+
5958
+ /**
5959
+ * Decodes a NestedWidget message from the specified reader or buffer.
5960
+ * @param reader Reader or buffer to decode from
5961
+ * @param [length] Message length if known beforehand
5962
+ * @returns NestedWidget
5963
+ * @throws {Error} If the payload is not a reader or valid buffer
5964
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
5965
+ */
5966
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.apps.card.v1.Card.NestedWidget;
5967
+
5968
+ /**
5969
+ * Decodes a NestedWidget message from the specified reader or buffer, length delimited.
5970
+ * @param reader Reader or buffer to decode from
5971
+ * @returns NestedWidget
5972
+ * @throws {Error} If the payload is not a reader or valid buffer
5973
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
5974
+ */
5975
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.apps.card.v1.Card.NestedWidget;
5976
+
5977
+ /**
5978
+ * Verifies a NestedWidget message.
5979
+ * @param message Plain object to verify
5980
+ * @returns `null` if valid, otherwise the reason why it is not
5981
+ */
5982
+ public static verify(message: { [k: string]: any }): (string|null);
5983
+
5984
+ /**
5985
+ * Creates a NestedWidget message from a plain object. Also converts values to their respective internal types.
5986
+ * @param object Plain object
5987
+ * @returns NestedWidget
5988
+ */
5989
+ public static fromObject(object: { [k: string]: any }): google.apps.card.v1.Card.NestedWidget;
5990
+
5991
+ /**
5992
+ * Creates a plain object from a NestedWidget message. Also converts values to other types if specified.
5993
+ * @param message NestedWidget
5994
+ * @param [options] Conversion options
5995
+ * @returns Plain object
5996
+ */
5997
+ public static toObject(message: google.apps.card.v1.Card.NestedWidget, options?: $protobuf.IConversionOptions): { [k: string]: any };
5998
+
5999
+ /**
6000
+ * Converts this NestedWidget to JSON.
6001
+ * @returns JSON object
6002
+ */
6003
+ public toJSON(): { [k: string]: any };
6004
+
6005
+ /**
6006
+ * Gets the default type url for NestedWidget
6007
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
6008
+ * @returns The default type url
6009
+ */
6010
+ public static getTypeUrl(typeUrlPrefix?: string): string;
6011
+ }
6012
+
6176
6013
  /** Properties of a CardFixedFooter. */
6177
6014
  interface ICardFixedFooter {
6178
6015
 
@@ -6317,6 +6154,12 @@ export namespace google {
6317
6154
  /** Widget columns */
6318
6155
  columns?: (google.apps.card.v1.IColumns|null);
6319
6156
 
6157
+ /** Widget carousel */
6158
+ carousel?: (google.apps.card.v1.ICarousel|null);
6159
+
6160
+ /** Widget chipList */
6161
+ chipList?: (google.apps.card.v1.IChipList|null);
6162
+
6320
6163
  /** Widget horizontalAlignment */
6321
6164
  horizontalAlignment?: (google.apps.card.v1.Widget.HorizontalAlignment|keyof typeof google.apps.card.v1.Widget.HorizontalAlignment|null);
6322
6165
  }
@@ -6360,11 +6203,17 @@ export namespace google {
6360
6203
  /** Widget columns. */
6361
6204
  public columns?: (google.apps.card.v1.IColumns|null);
6362
6205
 
6206
+ /** Widget carousel. */
6207
+ public carousel?: (google.apps.card.v1.ICarousel|null);
6208
+
6209
+ /** Widget chipList. */
6210
+ public chipList?: (google.apps.card.v1.IChipList|null);
6211
+
6363
6212
  /** Widget horizontalAlignment. */
6364
6213
  public horizontalAlignment: (google.apps.card.v1.Widget.HorizontalAlignment|keyof typeof google.apps.card.v1.Widget.HorizontalAlignment);
6365
6214
 
6366
6215
  /** Widget data. */
6367
- public data?: ("textParagraph"|"image"|"decoratedText"|"buttonList"|"textInput"|"selectionInput"|"dateTimePicker"|"divider"|"grid"|"columns");
6216
+ public data?: ("textParagraph"|"image"|"decoratedText"|"buttonList"|"textInput"|"selectionInput"|"dateTimePicker"|"divider"|"grid"|"columns"|"carousel"|"chipList");
6368
6217
 
6369
6218
  /**
6370
6219
  * Creates a new Widget instance using the specified properties.
@@ -6459,6 +6308,14 @@ export namespace google {
6459
6308
  CENTER = 2,
6460
6309
  END = 3
6461
6310
  }
6311
+
6312
+ /** VerticalAlignment enum. */
6313
+ enum VerticalAlignment {
6314
+ VERTICAL_ALIGNMENT_UNSPECIFIED = 0,
6315
+ TOP = 1,
6316
+ MIDDLE = 2,
6317
+ BOTTOM = 3
6318
+ }
6462
6319
  }
6463
6320
 
6464
6321
  /** Properties of a TextParagraph. */
@@ -6466,6 +6323,12 @@ export namespace google {
6466
6323
 
6467
6324
  /** TextParagraph text */
6468
6325
  text?: (string|null);
6326
+
6327
+ /** TextParagraph maxLines */
6328
+ maxLines?: (number|null);
6329
+
6330
+ /** TextParagraph textSyntax */
6331
+ textSyntax?: (google.apps.card.v1.TextParagraph.TextSyntax|keyof typeof google.apps.card.v1.TextParagraph.TextSyntax|null);
6469
6332
  }
6470
6333
 
6471
6334
  /** Represents a TextParagraph. */
@@ -6480,6 +6343,12 @@ export namespace google {
6480
6343
  /** TextParagraph text. */
6481
6344
  public text: string;
6482
6345
 
6346
+ /** TextParagraph maxLines. */
6347
+ public maxLines: number;
6348
+
6349
+ /** TextParagraph textSyntax. */
6350
+ public textSyntax: (google.apps.card.v1.TextParagraph.TextSyntax|keyof typeof google.apps.card.v1.TextParagraph.TextSyntax);
6351
+
6483
6352
  /**
6484
6353
  * Creates a new TextParagraph instance using the specified properties.
6485
6354
  * @param [properties] Properties to set
@@ -6558,6 +6427,16 @@ export namespace google {
6558
6427
  public static getTypeUrl(typeUrlPrefix?: string): string;
6559
6428
  }
6560
6429
 
6430
+ namespace TextParagraph {
6431
+
6432
+ /** TextSyntax enum. */
6433
+ enum TextSyntax {
6434
+ TEXT_SYNTAX_UNSPECIFIED = 0,
6435
+ HTML = 1,
6436
+ MARKDOWN = 2
6437
+ }
6438
+ }
6439
+
6561
6440
  /** Properties of an Image. */
6562
6441
  interface IImage {
6563
6442
 
@@ -6767,18 +6646,30 @@ export namespace google {
6767
6646
  /** DecoratedText startIcon */
6768
6647
  startIcon?: (google.apps.card.v1.IIcon|null);
6769
6648
 
6649
+ /** DecoratedText startIconVerticalAlignment */
6650
+ startIconVerticalAlignment?: (google.apps.card.v1.Widget.VerticalAlignment|keyof typeof google.apps.card.v1.Widget.VerticalAlignment|null);
6651
+
6770
6652
  /** DecoratedText topLabel */
6771
6653
  topLabel?: (string|null);
6772
6654
 
6655
+ /** DecoratedText topLabelText */
6656
+ topLabelText?: (google.apps.card.v1.ITextParagraph|null);
6657
+
6773
6658
  /** DecoratedText text */
6774
6659
  text?: (string|null);
6775
6660
 
6661
+ /** DecoratedText contentText */
6662
+ contentText?: (google.apps.card.v1.ITextParagraph|null);
6663
+
6776
6664
  /** DecoratedText wrapText */
6777
6665
  wrapText?: (boolean|null);
6778
6666
 
6779
6667
  /** DecoratedText bottomLabel */
6780
6668
  bottomLabel?: (string|null);
6781
6669
 
6670
+ /** DecoratedText bottomLabelText */
6671
+ bottomLabelText?: (google.apps.card.v1.ITextParagraph|null);
6672
+
6782
6673
  /** DecoratedText onClick */
6783
6674
  onClick?: (google.apps.card.v1.IOnClick|null);
6784
6675
 
@@ -6807,18 +6698,30 @@ export namespace google {
6807
6698
  /** DecoratedText startIcon. */
6808
6699
  public startIcon?: (google.apps.card.v1.IIcon|null);
6809
6700
 
6701
+ /** DecoratedText startIconVerticalAlignment. */
6702
+ public startIconVerticalAlignment: (google.apps.card.v1.Widget.VerticalAlignment|keyof typeof google.apps.card.v1.Widget.VerticalAlignment);
6703
+
6810
6704
  /** DecoratedText topLabel. */
6811
6705
  public topLabel: string;
6812
6706
 
6707
+ /** DecoratedText topLabelText. */
6708
+ public topLabelText?: (google.apps.card.v1.ITextParagraph|null);
6709
+
6813
6710
  /** DecoratedText text. */
6814
6711
  public text: string;
6815
6712
 
6713
+ /** DecoratedText contentText. */
6714
+ public contentText?: (google.apps.card.v1.ITextParagraph|null);
6715
+
6816
6716
  /** DecoratedText wrapText. */
6817
6717
  public wrapText: boolean;
6818
6718
 
6819
6719
  /** DecoratedText bottomLabel. */
6820
6720
  public bottomLabel: string;
6821
6721
 
6722
+ /** DecoratedText bottomLabelText. */
6723
+ public bottomLabelText?: (google.apps.card.v1.ITextParagraph|null);
6724
+
6822
6725
  /** DecoratedText onClick. */
6823
6726
  public onClick?: (google.apps.card.v1.IOnClick|null);
6824
6727
 
@@ -7073,6 +6976,9 @@ export namespace google {
7073
6976
  /** TextInput autoCompleteAction */
7074
6977
  autoCompleteAction?: (google.apps.card.v1.IAction|null);
7075
6978
 
6979
+ /** TextInput validation */
6980
+ validation?: (google.apps.card.v1.IValidation|null);
6981
+
7076
6982
  /** TextInput placeholderText */
7077
6983
  placeholderText?: (string|null);
7078
6984
  }
@@ -7110,6 +7016,9 @@ export namespace google {
7110
7016
  /** TextInput autoCompleteAction. */
7111
7017
  public autoCompleteAction?: (google.apps.card.v1.IAction|null);
7112
7018
 
7019
+ /** TextInput validation. */
7020
+ public validation?: (google.apps.card.v1.IValidation|null);
7021
+
7113
7022
  /** TextInput placeholderText. */
7114
7023
  public placeholderText: string;
7115
7024
 
@@ -7553,7 +7462,7 @@ export namespace google {
7553
7462
  public onChangeAction?: (google.apps.card.v1.IAction|null);
7554
7463
 
7555
7464
  /** SelectionInput multiSelectMaxSelectedItems. */
7556
- public multiSelectMaxSelectedItems: number;
7465
+ public multiSelectMaxSelectedItems?: (number|null);
7557
7466
 
7558
7467
  /** SelectionInput multiSelectMinQueryLength. */
7559
7468
  public multiSelectMinQueryLength: number;
@@ -7694,11 +7603,14 @@ export namespace google {
7694
7603
  public selected: boolean;
7695
7604
 
7696
7605
  /** SelectionItem startIconUri. */
7697
- public startIconUri: string;
7606
+ public startIconUri?: (string|null);
7698
7607
 
7699
7608
  /** SelectionItem bottomText. */
7700
7609
  public bottomText: string;
7701
7610
 
7611
+ /** SelectionItem startIcon. */
7612
+ public startIcon?: "startIconUri";
7613
+
7702
7614
  /**
7703
7615
  * Creates a new SelectionItem instance using the specified properties.
7704
7616
  * @param [properties] Properties to set
@@ -7928,7 +7840,7 @@ export namespace google {
7928
7840
  public type: (google.apps.card.v1.DateTimePicker.DateTimePickerType|keyof typeof google.apps.card.v1.DateTimePicker.DateTimePickerType);
7929
7841
 
7930
7842
  /** DateTimePicker valueMsEpoch. */
7931
- public valueMsEpoch: (number|Long|string);
7843
+ public valueMsEpoch?: (number|Long|string|null);
7932
7844
 
7933
7845
  /** DateTimePicker timezoneOffsetDate. */
7934
7846
  public timezoneOffsetDate: number;
@@ -8024,14 +7936,229 @@ export namespace google {
8024
7936
  }
8025
7937
  }
8026
7938
 
8027
- /** Properties of a Button. */
8028
- interface IButton {
7939
+ /** Properties of an OverflowMenu. */
7940
+ interface IOverflowMenu {
8029
7941
 
8030
- /** Button text */
8031
- text?: (string|null);
7942
+ /** OverflowMenu items */
7943
+ items?: (google.apps.card.v1.OverflowMenu.IOverflowMenuItem[]|null);
7944
+ }
8032
7945
 
8033
- /** Button icon */
8034
- icon?: (google.apps.card.v1.IIcon|null);
7946
+ /** Represents an OverflowMenu. */
7947
+ class OverflowMenu implements IOverflowMenu {
7948
+
7949
+ /**
7950
+ * Constructs a new OverflowMenu.
7951
+ * @param [properties] Properties to set
7952
+ */
7953
+ constructor(properties?: google.apps.card.v1.IOverflowMenu);
7954
+
7955
+ /** OverflowMenu items. */
7956
+ public items: google.apps.card.v1.OverflowMenu.IOverflowMenuItem[];
7957
+
7958
+ /**
7959
+ * Creates a new OverflowMenu instance using the specified properties.
7960
+ * @param [properties] Properties to set
7961
+ * @returns OverflowMenu instance
7962
+ */
7963
+ public static create(properties?: google.apps.card.v1.IOverflowMenu): google.apps.card.v1.OverflowMenu;
7964
+
7965
+ /**
7966
+ * Encodes the specified OverflowMenu message. Does not implicitly {@link google.apps.card.v1.OverflowMenu.verify|verify} messages.
7967
+ * @param message OverflowMenu message or plain object to encode
7968
+ * @param [writer] Writer to encode to
7969
+ * @returns Writer
7970
+ */
7971
+ public static encode(message: google.apps.card.v1.IOverflowMenu, writer?: $protobuf.Writer): $protobuf.Writer;
7972
+
7973
+ /**
7974
+ * Encodes the specified OverflowMenu message, length delimited. Does not implicitly {@link google.apps.card.v1.OverflowMenu.verify|verify} messages.
7975
+ * @param message OverflowMenu message or plain object to encode
7976
+ * @param [writer] Writer to encode to
7977
+ * @returns Writer
7978
+ */
7979
+ public static encodeDelimited(message: google.apps.card.v1.IOverflowMenu, writer?: $protobuf.Writer): $protobuf.Writer;
7980
+
7981
+ /**
7982
+ * Decodes an OverflowMenu message from the specified reader or buffer.
7983
+ * @param reader Reader or buffer to decode from
7984
+ * @param [length] Message length if known beforehand
7985
+ * @returns OverflowMenu
7986
+ * @throws {Error} If the payload is not a reader or valid buffer
7987
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
7988
+ */
7989
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.apps.card.v1.OverflowMenu;
7990
+
7991
+ /**
7992
+ * Decodes an OverflowMenu message from the specified reader or buffer, length delimited.
7993
+ * @param reader Reader or buffer to decode from
7994
+ * @returns OverflowMenu
7995
+ * @throws {Error} If the payload is not a reader or valid buffer
7996
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
7997
+ */
7998
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.apps.card.v1.OverflowMenu;
7999
+
8000
+ /**
8001
+ * Verifies an OverflowMenu message.
8002
+ * @param message Plain object to verify
8003
+ * @returns `null` if valid, otherwise the reason why it is not
8004
+ */
8005
+ public static verify(message: { [k: string]: any }): (string|null);
8006
+
8007
+ /**
8008
+ * Creates an OverflowMenu message from a plain object. Also converts values to their respective internal types.
8009
+ * @param object Plain object
8010
+ * @returns OverflowMenu
8011
+ */
8012
+ public static fromObject(object: { [k: string]: any }): google.apps.card.v1.OverflowMenu;
8013
+
8014
+ /**
8015
+ * Creates a plain object from an OverflowMenu message. Also converts values to other types if specified.
8016
+ * @param message OverflowMenu
8017
+ * @param [options] Conversion options
8018
+ * @returns Plain object
8019
+ */
8020
+ public static toObject(message: google.apps.card.v1.OverflowMenu, options?: $protobuf.IConversionOptions): { [k: string]: any };
8021
+
8022
+ /**
8023
+ * Converts this OverflowMenu to JSON.
8024
+ * @returns JSON object
8025
+ */
8026
+ public toJSON(): { [k: string]: any };
8027
+
8028
+ /**
8029
+ * Gets the default type url for OverflowMenu
8030
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
8031
+ * @returns The default type url
8032
+ */
8033
+ public static getTypeUrl(typeUrlPrefix?: string): string;
8034
+ }
8035
+
8036
+ namespace OverflowMenu {
8037
+
8038
+ /** Properties of an OverflowMenuItem. */
8039
+ interface IOverflowMenuItem {
8040
+
8041
+ /** OverflowMenuItem startIcon */
8042
+ startIcon?: (google.apps.card.v1.IIcon|null);
8043
+
8044
+ /** OverflowMenuItem text */
8045
+ text?: (string|null);
8046
+
8047
+ /** OverflowMenuItem onClick */
8048
+ onClick?: (google.apps.card.v1.IOnClick|null);
8049
+
8050
+ /** OverflowMenuItem disabled */
8051
+ disabled?: (boolean|null);
8052
+ }
8053
+
8054
+ /** Represents an OverflowMenuItem. */
8055
+ class OverflowMenuItem implements IOverflowMenuItem {
8056
+
8057
+ /**
8058
+ * Constructs a new OverflowMenuItem.
8059
+ * @param [properties] Properties to set
8060
+ */
8061
+ constructor(properties?: google.apps.card.v1.OverflowMenu.IOverflowMenuItem);
8062
+
8063
+ /** OverflowMenuItem startIcon. */
8064
+ public startIcon?: (google.apps.card.v1.IIcon|null);
8065
+
8066
+ /** OverflowMenuItem text. */
8067
+ public text: string;
8068
+
8069
+ /** OverflowMenuItem onClick. */
8070
+ public onClick?: (google.apps.card.v1.IOnClick|null);
8071
+
8072
+ /** OverflowMenuItem disabled. */
8073
+ public disabled: boolean;
8074
+
8075
+ /**
8076
+ * Creates a new OverflowMenuItem instance using the specified properties.
8077
+ * @param [properties] Properties to set
8078
+ * @returns OverflowMenuItem instance
8079
+ */
8080
+ public static create(properties?: google.apps.card.v1.OverflowMenu.IOverflowMenuItem): google.apps.card.v1.OverflowMenu.OverflowMenuItem;
8081
+
8082
+ /**
8083
+ * Encodes the specified OverflowMenuItem message. Does not implicitly {@link google.apps.card.v1.OverflowMenu.OverflowMenuItem.verify|verify} messages.
8084
+ * @param message OverflowMenuItem message or plain object to encode
8085
+ * @param [writer] Writer to encode to
8086
+ * @returns Writer
8087
+ */
8088
+ public static encode(message: google.apps.card.v1.OverflowMenu.IOverflowMenuItem, writer?: $protobuf.Writer): $protobuf.Writer;
8089
+
8090
+ /**
8091
+ * Encodes the specified OverflowMenuItem message, length delimited. Does not implicitly {@link google.apps.card.v1.OverflowMenu.OverflowMenuItem.verify|verify} messages.
8092
+ * @param message OverflowMenuItem message or plain object to encode
8093
+ * @param [writer] Writer to encode to
8094
+ * @returns Writer
8095
+ */
8096
+ public static encodeDelimited(message: google.apps.card.v1.OverflowMenu.IOverflowMenuItem, writer?: $protobuf.Writer): $protobuf.Writer;
8097
+
8098
+ /**
8099
+ * Decodes an OverflowMenuItem message from the specified reader or buffer.
8100
+ * @param reader Reader or buffer to decode from
8101
+ * @param [length] Message length if known beforehand
8102
+ * @returns OverflowMenuItem
8103
+ * @throws {Error} If the payload is not a reader or valid buffer
8104
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
8105
+ */
8106
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.apps.card.v1.OverflowMenu.OverflowMenuItem;
8107
+
8108
+ /**
8109
+ * Decodes an OverflowMenuItem message from the specified reader or buffer, length delimited.
8110
+ * @param reader Reader or buffer to decode from
8111
+ * @returns OverflowMenuItem
8112
+ * @throws {Error} If the payload is not a reader or valid buffer
8113
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
8114
+ */
8115
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.apps.card.v1.OverflowMenu.OverflowMenuItem;
8116
+
8117
+ /**
8118
+ * Verifies an OverflowMenuItem message.
8119
+ * @param message Plain object to verify
8120
+ * @returns `null` if valid, otherwise the reason why it is not
8121
+ */
8122
+ public static verify(message: { [k: string]: any }): (string|null);
8123
+
8124
+ /**
8125
+ * Creates an OverflowMenuItem message from a plain object. Also converts values to their respective internal types.
8126
+ * @param object Plain object
8127
+ * @returns OverflowMenuItem
8128
+ */
8129
+ public static fromObject(object: { [k: string]: any }): google.apps.card.v1.OverflowMenu.OverflowMenuItem;
8130
+
8131
+ /**
8132
+ * Creates a plain object from an OverflowMenuItem message. Also converts values to other types if specified.
8133
+ * @param message OverflowMenuItem
8134
+ * @param [options] Conversion options
8135
+ * @returns Plain object
8136
+ */
8137
+ public static toObject(message: google.apps.card.v1.OverflowMenu.OverflowMenuItem, options?: $protobuf.IConversionOptions): { [k: string]: any };
8138
+
8139
+ /**
8140
+ * Converts this OverflowMenuItem to JSON.
8141
+ * @returns JSON object
8142
+ */
8143
+ public toJSON(): { [k: string]: any };
8144
+
8145
+ /**
8146
+ * Gets the default type url for OverflowMenuItem
8147
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
8148
+ * @returns The default type url
8149
+ */
8150
+ public static getTypeUrl(typeUrlPrefix?: string): string;
8151
+ }
8152
+ }
8153
+
8154
+ /** Properties of a Button. */
8155
+ interface IButton {
8156
+
8157
+ /** Button text */
8158
+ text?: (string|null);
8159
+
8160
+ /** Button icon */
8161
+ icon?: (google.apps.card.v1.IIcon|null);
8035
8162
 
8036
8163
  /** Button color */
8037
8164
  color?: (google.type.IColor|null);
@@ -8044,6 +8171,9 @@ export namespace google {
8044
8171
 
8045
8172
  /** Button altText */
8046
8173
  altText?: (string|null);
8174
+
8175
+ /** Button type */
8176
+ type?: (google.apps.card.v1.Button.Type|keyof typeof google.apps.card.v1.Button.Type|null);
8047
8177
  }
8048
8178
 
8049
8179
  /** Represents a Button. */
@@ -8073,6 +8203,9 @@ export namespace google {
8073
8203
  /** Button altText. */
8074
8204
  public altText: string;
8075
8205
 
8206
+ /** Button type. */
8207
+ public type: (google.apps.card.v1.Button.Type|keyof typeof google.apps.card.v1.Button.Type);
8208
+
8076
8209
  /**
8077
8210
  * Creates a new Button instance using the specified properties.
8078
8211
  * @param [properties] Properties to set
@@ -8151,6 +8284,18 @@ export namespace google {
8151
8284
  public static getTypeUrl(typeUrlPrefix?: string): string;
8152
8285
  }
8153
8286
 
8287
+ namespace Button {
8288
+
8289
+ /** Type enum. */
8290
+ enum Type {
8291
+ TYPE_UNSPECIFIED = 0,
8292
+ OUTLINED = 1,
8293
+ FILLED = 2,
8294
+ FILLED_TONAL = 3,
8295
+ BORDERLESS = 4
8296
+ }
8297
+ }
8298
+
8154
8299
  /** Properties of an Icon. */
8155
8300
  interface IIcon {
8156
8301
 
@@ -9248,6 +9393,9 @@ export namespace google {
9248
9393
 
9249
9394
  /** Widgets dateTimePicker */
9250
9395
  dateTimePicker?: (google.apps.card.v1.IDateTimePicker|null);
9396
+
9397
+ /** Widgets chipList */
9398
+ chipList?: (google.apps.card.v1.IChipList|null);
9251
9399
  }
9252
9400
 
9253
9401
  /** Represents a Widgets. */
@@ -9280,8 +9428,11 @@ export namespace google {
9280
9428
  /** Widgets dateTimePicker. */
9281
9429
  public dateTimePicker?: (google.apps.card.v1.IDateTimePicker|null);
9282
9430
 
9431
+ /** Widgets chipList. */
9432
+ public chipList?: (google.apps.card.v1.IChipList|null);
9433
+
9283
9434
  /** Widgets data. */
9284
- public data?: ("textParagraph"|"image"|"decoratedText"|"buttonList"|"textInput"|"selectionInput"|"dateTimePicker");
9435
+ public data?: ("textParagraph"|"image"|"decoratedText"|"buttonList"|"textInput"|"selectionInput"|"dateTimePicker"|"chipList");
9285
9436
 
9286
9437
  /**
9287
9438
  * Creates a new Widgets instance using the specified properties.
@@ -9363,171 +9514,489 @@ export namespace google {
9363
9514
  }
9364
9515
  }
9365
9516
 
9366
- /** Properties of an OnClick. */
9367
- interface IOnClick {
9368
-
9369
- /** OnClick action */
9370
- action?: (google.apps.card.v1.IAction|null);
9371
-
9372
- /** OnClick openLink */
9373
- openLink?: (google.apps.card.v1.IOpenLink|null);
9374
-
9375
- /** OnClick openDynamicLinkAction */
9376
- openDynamicLinkAction?: (google.apps.card.v1.IAction|null);
9517
+ /** Properties of a Carousel. */
9518
+ interface ICarousel {
9377
9519
 
9378
- /** OnClick card */
9379
- card?: (google.apps.card.v1.ICard|null);
9520
+ /** Carousel carouselCards */
9521
+ carouselCards?: (google.apps.card.v1.Carousel.ICarouselCard[]|null);
9380
9522
  }
9381
9523
 
9382
- /** Represents an OnClick. */
9383
- class OnClick implements IOnClick {
9524
+ /** Represents a Carousel. */
9525
+ class Carousel implements ICarousel {
9384
9526
 
9385
9527
  /**
9386
- * Constructs a new OnClick.
9528
+ * Constructs a new Carousel.
9387
9529
  * @param [properties] Properties to set
9388
9530
  */
9389
- constructor(properties?: google.apps.card.v1.IOnClick);
9390
-
9391
- /** OnClick action. */
9392
- public action?: (google.apps.card.v1.IAction|null);
9393
-
9394
- /** OnClick openLink. */
9395
- public openLink?: (google.apps.card.v1.IOpenLink|null);
9396
-
9397
- /** OnClick openDynamicLinkAction. */
9398
- public openDynamicLinkAction?: (google.apps.card.v1.IAction|null);
9531
+ constructor(properties?: google.apps.card.v1.ICarousel);
9399
9532
 
9400
- /** OnClick card. */
9401
- public card?: (google.apps.card.v1.ICard|null);
9402
-
9403
- /** OnClick data. */
9404
- public data?: ("action"|"openLink"|"openDynamicLinkAction"|"card");
9533
+ /** Carousel carouselCards. */
9534
+ public carouselCards: google.apps.card.v1.Carousel.ICarouselCard[];
9405
9535
 
9406
9536
  /**
9407
- * Creates a new OnClick instance using the specified properties.
9537
+ * Creates a new Carousel instance using the specified properties.
9408
9538
  * @param [properties] Properties to set
9409
- * @returns OnClick instance
9539
+ * @returns Carousel instance
9410
9540
  */
9411
- public static create(properties?: google.apps.card.v1.IOnClick): google.apps.card.v1.OnClick;
9541
+ public static create(properties?: google.apps.card.v1.ICarousel): google.apps.card.v1.Carousel;
9412
9542
 
9413
9543
  /**
9414
- * Encodes the specified OnClick message. Does not implicitly {@link google.apps.card.v1.OnClick.verify|verify} messages.
9415
- * @param message OnClick message or plain object to encode
9544
+ * Encodes the specified Carousel message. Does not implicitly {@link google.apps.card.v1.Carousel.verify|verify} messages.
9545
+ * @param message Carousel message or plain object to encode
9416
9546
  * @param [writer] Writer to encode to
9417
9547
  * @returns Writer
9418
9548
  */
9419
- public static encode(message: google.apps.card.v1.IOnClick, writer?: $protobuf.Writer): $protobuf.Writer;
9549
+ public static encode(message: google.apps.card.v1.ICarousel, writer?: $protobuf.Writer): $protobuf.Writer;
9420
9550
 
9421
9551
  /**
9422
- * Encodes the specified OnClick message, length delimited. Does not implicitly {@link google.apps.card.v1.OnClick.verify|verify} messages.
9423
- * @param message OnClick message or plain object to encode
9552
+ * Encodes the specified Carousel message, length delimited. Does not implicitly {@link google.apps.card.v1.Carousel.verify|verify} messages.
9553
+ * @param message Carousel message or plain object to encode
9424
9554
  * @param [writer] Writer to encode to
9425
9555
  * @returns Writer
9426
9556
  */
9427
- public static encodeDelimited(message: google.apps.card.v1.IOnClick, writer?: $protobuf.Writer): $protobuf.Writer;
9557
+ public static encodeDelimited(message: google.apps.card.v1.ICarousel, writer?: $protobuf.Writer): $protobuf.Writer;
9428
9558
 
9429
9559
  /**
9430
- * Decodes an OnClick message from the specified reader or buffer.
9560
+ * Decodes a Carousel message from the specified reader or buffer.
9431
9561
  * @param reader Reader or buffer to decode from
9432
9562
  * @param [length] Message length if known beforehand
9433
- * @returns OnClick
9563
+ * @returns Carousel
9434
9564
  * @throws {Error} If the payload is not a reader or valid buffer
9435
9565
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
9436
9566
  */
9437
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.apps.card.v1.OnClick;
9567
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.apps.card.v1.Carousel;
9438
9568
 
9439
9569
  /**
9440
- * Decodes an OnClick message from the specified reader or buffer, length delimited.
9570
+ * Decodes a Carousel message from the specified reader or buffer, length delimited.
9441
9571
  * @param reader Reader or buffer to decode from
9442
- * @returns OnClick
9572
+ * @returns Carousel
9443
9573
  * @throws {Error} If the payload is not a reader or valid buffer
9444
9574
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
9445
9575
  */
9446
- public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.apps.card.v1.OnClick;
9576
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.apps.card.v1.Carousel;
9447
9577
 
9448
9578
  /**
9449
- * Verifies an OnClick message.
9579
+ * Verifies a Carousel message.
9450
9580
  * @param message Plain object to verify
9451
9581
  * @returns `null` if valid, otherwise the reason why it is not
9452
9582
  */
9453
9583
  public static verify(message: { [k: string]: any }): (string|null);
9454
9584
 
9455
9585
  /**
9456
- * Creates an OnClick message from a plain object. Also converts values to their respective internal types.
9586
+ * Creates a Carousel message from a plain object. Also converts values to their respective internal types.
9457
9587
  * @param object Plain object
9458
- * @returns OnClick
9588
+ * @returns Carousel
9459
9589
  */
9460
- public static fromObject(object: { [k: string]: any }): google.apps.card.v1.OnClick;
9590
+ public static fromObject(object: { [k: string]: any }): google.apps.card.v1.Carousel;
9461
9591
 
9462
9592
  /**
9463
- * Creates a plain object from an OnClick message. Also converts values to other types if specified.
9464
- * @param message OnClick
9593
+ * Creates a plain object from a Carousel message. Also converts values to other types if specified.
9594
+ * @param message Carousel
9465
9595
  * @param [options] Conversion options
9466
9596
  * @returns Plain object
9467
9597
  */
9468
- public static toObject(message: google.apps.card.v1.OnClick, options?: $protobuf.IConversionOptions): { [k: string]: any };
9598
+ public static toObject(message: google.apps.card.v1.Carousel, options?: $protobuf.IConversionOptions): { [k: string]: any };
9469
9599
 
9470
9600
  /**
9471
- * Converts this OnClick to JSON.
9601
+ * Converts this Carousel to JSON.
9472
9602
  * @returns JSON object
9473
9603
  */
9474
9604
  public toJSON(): { [k: string]: any };
9475
9605
 
9476
9606
  /**
9477
- * Gets the default type url for OnClick
9607
+ * Gets the default type url for Carousel
9478
9608
  * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
9479
9609
  * @returns The default type url
9480
9610
  */
9481
9611
  public static getTypeUrl(typeUrlPrefix?: string): string;
9482
9612
  }
9483
9613
 
9484
- /** Properties of an OpenLink. */
9485
- interface IOpenLink {
9486
-
9487
- /** OpenLink url */
9488
- url?: (string|null);
9614
+ namespace Carousel {
9489
9615
 
9490
- /** OpenLink openAs */
9491
- openAs?: (google.apps.card.v1.OpenLink.OpenAs|keyof typeof google.apps.card.v1.OpenLink.OpenAs|null);
9616
+ /** Properties of a CarouselCard. */
9617
+ interface ICarouselCard {
9492
9618
 
9493
- /** OpenLink onClose */
9494
- onClose?: (google.apps.card.v1.OpenLink.OnClose|keyof typeof google.apps.card.v1.OpenLink.OnClose|null);
9495
- }
9619
+ /** CarouselCard widgets */
9620
+ widgets?: (google.apps.card.v1.Card.INestedWidget[]|null);
9496
9621
 
9497
- /** Represents an OpenLink. */
9498
- class OpenLink implements IOpenLink {
9622
+ /** CarouselCard footerWidgets */
9623
+ footerWidgets?: (google.apps.card.v1.Card.INestedWidget[]|null);
9624
+ }
9499
9625
 
9500
- /**
9501
- * Constructs a new OpenLink.
9502
- * @param [properties] Properties to set
9503
- */
9504
- constructor(properties?: google.apps.card.v1.IOpenLink);
9626
+ /** Represents a CarouselCard. */
9627
+ class CarouselCard implements ICarouselCard {
9505
9628
 
9506
- /** OpenLink url. */
9507
- public url: string;
9629
+ /**
9630
+ * Constructs a new CarouselCard.
9631
+ * @param [properties] Properties to set
9632
+ */
9633
+ constructor(properties?: google.apps.card.v1.Carousel.ICarouselCard);
9508
9634
 
9509
- /** OpenLink openAs. */
9510
- public openAs: (google.apps.card.v1.OpenLink.OpenAs|keyof typeof google.apps.card.v1.OpenLink.OpenAs);
9635
+ /** CarouselCard widgets. */
9636
+ public widgets: google.apps.card.v1.Card.INestedWidget[];
9511
9637
 
9512
- /** OpenLink onClose. */
9513
- public onClose: (google.apps.card.v1.OpenLink.OnClose|keyof typeof google.apps.card.v1.OpenLink.OnClose);
9638
+ /** CarouselCard footerWidgets. */
9639
+ public footerWidgets: google.apps.card.v1.Card.INestedWidget[];
9514
9640
 
9515
- /**
9516
- * Creates a new OpenLink instance using the specified properties.
9517
- * @param [properties] Properties to set
9518
- * @returns OpenLink instance
9519
- */
9520
- public static create(properties?: google.apps.card.v1.IOpenLink): google.apps.card.v1.OpenLink;
9641
+ /**
9642
+ * Creates a new CarouselCard instance using the specified properties.
9643
+ * @param [properties] Properties to set
9644
+ * @returns CarouselCard instance
9645
+ */
9646
+ public static create(properties?: google.apps.card.v1.Carousel.ICarouselCard): google.apps.card.v1.Carousel.CarouselCard;
9521
9647
 
9522
- /**
9523
- * Encodes the specified OpenLink message. Does not implicitly {@link google.apps.card.v1.OpenLink.verify|verify} messages.
9524
- * @param message OpenLink message or plain object to encode
9525
- * @param [writer] Writer to encode to
9526
- * @returns Writer
9527
- */
9528
- public static encode(message: google.apps.card.v1.IOpenLink, writer?: $protobuf.Writer): $protobuf.Writer;
9648
+ /**
9649
+ * Encodes the specified CarouselCard message. Does not implicitly {@link google.apps.card.v1.Carousel.CarouselCard.verify|verify} messages.
9650
+ * @param message CarouselCard message or plain object to encode
9651
+ * @param [writer] Writer to encode to
9652
+ * @returns Writer
9653
+ */
9654
+ public static encode(message: google.apps.card.v1.Carousel.ICarouselCard, writer?: $protobuf.Writer): $protobuf.Writer;
9529
9655
 
9530
- /**
9656
+ /**
9657
+ * Encodes the specified CarouselCard message, length delimited. Does not implicitly {@link google.apps.card.v1.Carousel.CarouselCard.verify|verify} messages.
9658
+ * @param message CarouselCard message or plain object to encode
9659
+ * @param [writer] Writer to encode to
9660
+ * @returns Writer
9661
+ */
9662
+ public static encodeDelimited(message: google.apps.card.v1.Carousel.ICarouselCard, writer?: $protobuf.Writer): $protobuf.Writer;
9663
+
9664
+ /**
9665
+ * Decodes a CarouselCard message from the specified reader or buffer.
9666
+ * @param reader Reader or buffer to decode from
9667
+ * @param [length] Message length if known beforehand
9668
+ * @returns CarouselCard
9669
+ * @throws {Error} If the payload is not a reader or valid buffer
9670
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
9671
+ */
9672
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.apps.card.v1.Carousel.CarouselCard;
9673
+
9674
+ /**
9675
+ * Decodes a CarouselCard message from the specified reader or buffer, length delimited.
9676
+ * @param reader Reader or buffer to decode from
9677
+ * @returns CarouselCard
9678
+ * @throws {Error} If the payload is not a reader or valid buffer
9679
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
9680
+ */
9681
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.apps.card.v1.Carousel.CarouselCard;
9682
+
9683
+ /**
9684
+ * Verifies a CarouselCard message.
9685
+ * @param message Plain object to verify
9686
+ * @returns `null` if valid, otherwise the reason why it is not
9687
+ */
9688
+ public static verify(message: { [k: string]: any }): (string|null);
9689
+
9690
+ /**
9691
+ * Creates a CarouselCard message from a plain object. Also converts values to their respective internal types.
9692
+ * @param object Plain object
9693
+ * @returns CarouselCard
9694
+ */
9695
+ public static fromObject(object: { [k: string]: any }): google.apps.card.v1.Carousel.CarouselCard;
9696
+
9697
+ /**
9698
+ * Creates a plain object from a CarouselCard message. Also converts values to other types if specified.
9699
+ * @param message CarouselCard
9700
+ * @param [options] Conversion options
9701
+ * @returns Plain object
9702
+ */
9703
+ public static toObject(message: google.apps.card.v1.Carousel.CarouselCard, options?: $protobuf.IConversionOptions): { [k: string]: any };
9704
+
9705
+ /**
9706
+ * Converts this CarouselCard to JSON.
9707
+ * @returns JSON object
9708
+ */
9709
+ public toJSON(): { [k: string]: any };
9710
+
9711
+ /**
9712
+ * Gets the default type url for CarouselCard
9713
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
9714
+ * @returns The default type url
9715
+ */
9716
+ public static getTypeUrl(typeUrlPrefix?: string): string;
9717
+ }
9718
+ }
9719
+
9720
+ /** Properties of a CollapseControl. */
9721
+ interface ICollapseControl {
9722
+
9723
+ /** CollapseControl horizontalAlignment */
9724
+ horizontalAlignment?: (google.apps.card.v1.Widget.HorizontalAlignment|keyof typeof google.apps.card.v1.Widget.HorizontalAlignment|null);
9725
+
9726
+ /** CollapseControl expandButton */
9727
+ expandButton?: (google.apps.card.v1.IButton|null);
9728
+
9729
+ /** CollapseControl collapseButton */
9730
+ collapseButton?: (google.apps.card.v1.IButton|null);
9731
+ }
9732
+
9733
+ /** Represents a CollapseControl. */
9734
+ class CollapseControl implements ICollapseControl {
9735
+
9736
+ /**
9737
+ * Constructs a new CollapseControl.
9738
+ * @param [properties] Properties to set
9739
+ */
9740
+ constructor(properties?: google.apps.card.v1.ICollapseControl);
9741
+
9742
+ /** CollapseControl horizontalAlignment. */
9743
+ public horizontalAlignment: (google.apps.card.v1.Widget.HorizontalAlignment|keyof typeof google.apps.card.v1.Widget.HorizontalAlignment);
9744
+
9745
+ /** CollapseControl expandButton. */
9746
+ public expandButton?: (google.apps.card.v1.IButton|null);
9747
+
9748
+ /** CollapseControl collapseButton. */
9749
+ public collapseButton?: (google.apps.card.v1.IButton|null);
9750
+
9751
+ /**
9752
+ * Creates a new CollapseControl instance using the specified properties.
9753
+ * @param [properties] Properties to set
9754
+ * @returns CollapseControl instance
9755
+ */
9756
+ public static create(properties?: google.apps.card.v1.ICollapseControl): google.apps.card.v1.CollapseControl;
9757
+
9758
+ /**
9759
+ * Encodes the specified CollapseControl message. Does not implicitly {@link google.apps.card.v1.CollapseControl.verify|verify} messages.
9760
+ * @param message CollapseControl message or plain object to encode
9761
+ * @param [writer] Writer to encode to
9762
+ * @returns Writer
9763
+ */
9764
+ public static encode(message: google.apps.card.v1.ICollapseControl, writer?: $protobuf.Writer): $protobuf.Writer;
9765
+
9766
+ /**
9767
+ * Encodes the specified CollapseControl message, length delimited. Does not implicitly {@link google.apps.card.v1.CollapseControl.verify|verify} messages.
9768
+ * @param message CollapseControl message or plain object to encode
9769
+ * @param [writer] Writer to encode to
9770
+ * @returns Writer
9771
+ */
9772
+ public static encodeDelimited(message: google.apps.card.v1.ICollapseControl, writer?: $protobuf.Writer): $protobuf.Writer;
9773
+
9774
+ /**
9775
+ * Decodes a CollapseControl message from the specified reader or buffer.
9776
+ * @param reader Reader or buffer to decode from
9777
+ * @param [length] Message length if known beforehand
9778
+ * @returns CollapseControl
9779
+ * @throws {Error} If the payload is not a reader or valid buffer
9780
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
9781
+ */
9782
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.apps.card.v1.CollapseControl;
9783
+
9784
+ /**
9785
+ * Decodes a CollapseControl message from the specified reader or buffer, length delimited.
9786
+ * @param reader Reader or buffer to decode from
9787
+ * @returns CollapseControl
9788
+ * @throws {Error} If the payload is not a reader or valid buffer
9789
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
9790
+ */
9791
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.apps.card.v1.CollapseControl;
9792
+
9793
+ /**
9794
+ * Verifies a CollapseControl message.
9795
+ * @param message Plain object to verify
9796
+ * @returns `null` if valid, otherwise the reason why it is not
9797
+ */
9798
+ public static verify(message: { [k: string]: any }): (string|null);
9799
+
9800
+ /**
9801
+ * Creates a CollapseControl message from a plain object. Also converts values to their respective internal types.
9802
+ * @param object Plain object
9803
+ * @returns CollapseControl
9804
+ */
9805
+ public static fromObject(object: { [k: string]: any }): google.apps.card.v1.CollapseControl;
9806
+
9807
+ /**
9808
+ * Creates a plain object from a CollapseControl message. Also converts values to other types if specified.
9809
+ * @param message CollapseControl
9810
+ * @param [options] Conversion options
9811
+ * @returns Plain object
9812
+ */
9813
+ public static toObject(message: google.apps.card.v1.CollapseControl, options?: $protobuf.IConversionOptions): { [k: string]: any };
9814
+
9815
+ /**
9816
+ * Converts this CollapseControl to JSON.
9817
+ * @returns JSON object
9818
+ */
9819
+ public toJSON(): { [k: string]: any };
9820
+
9821
+ /**
9822
+ * Gets the default type url for CollapseControl
9823
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
9824
+ * @returns The default type url
9825
+ */
9826
+ public static getTypeUrl(typeUrlPrefix?: string): string;
9827
+ }
9828
+
9829
+ /** Properties of an OnClick. */
9830
+ interface IOnClick {
9831
+
9832
+ /** OnClick action */
9833
+ action?: (google.apps.card.v1.IAction|null);
9834
+
9835
+ /** OnClick openLink */
9836
+ openLink?: (google.apps.card.v1.IOpenLink|null);
9837
+
9838
+ /** OnClick openDynamicLinkAction */
9839
+ openDynamicLinkAction?: (google.apps.card.v1.IAction|null);
9840
+
9841
+ /** OnClick card */
9842
+ card?: (google.apps.card.v1.ICard|null);
9843
+
9844
+ /** OnClick overflowMenu */
9845
+ overflowMenu?: (google.apps.card.v1.IOverflowMenu|null);
9846
+ }
9847
+
9848
+ /** Represents an OnClick. */
9849
+ class OnClick implements IOnClick {
9850
+
9851
+ /**
9852
+ * Constructs a new OnClick.
9853
+ * @param [properties] Properties to set
9854
+ */
9855
+ constructor(properties?: google.apps.card.v1.IOnClick);
9856
+
9857
+ /** OnClick action. */
9858
+ public action?: (google.apps.card.v1.IAction|null);
9859
+
9860
+ /** OnClick openLink. */
9861
+ public openLink?: (google.apps.card.v1.IOpenLink|null);
9862
+
9863
+ /** OnClick openDynamicLinkAction. */
9864
+ public openDynamicLinkAction?: (google.apps.card.v1.IAction|null);
9865
+
9866
+ /** OnClick card. */
9867
+ public card?: (google.apps.card.v1.ICard|null);
9868
+
9869
+ /** OnClick overflowMenu. */
9870
+ public overflowMenu?: (google.apps.card.v1.IOverflowMenu|null);
9871
+
9872
+ /** OnClick data. */
9873
+ public data?: ("action"|"openLink"|"openDynamicLinkAction"|"card"|"overflowMenu");
9874
+
9875
+ /**
9876
+ * Creates a new OnClick instance using the specified properties.
9877
+ * @param [properties] Properties to set
9878
+ * @returns OnClick instance
9879
+ */
9880
+ public static create(properties?: google.apps.card.v1.IOnClick): google.apps.card.v1.OnClick;
9881
+
9882
+ /**
9883
+ * Encodes the specified OnClick message. Does not implicitly {@link google.apps.card.v1.OnClick.verify|verify} messages.
9884
+ * @param message OnClick message or plain object to encode
9885
+ * @param [writer] Writer to encode to
9886
+ * @returns Writer
9887
+ */
9888
+ public static encode(message: google.apps.card.v1.IOnClick, writer?: $protobuf.Writer): $protobuf.Writer;
9889
+
9890
+ /**
9891
+ * Encodes the specified OnClick message, length delimited. Does not implicitly {@link google.apps.card.v1.OnClick.verify|verify} messages.
9892
+ * @param message OnClick message or plain object to encode
9893
+ * @param [writer] Writer to encode to
9894
+ * @returns Writer
9895
+ */
9896
+ public static encodeDelimited(message: google.apps.card.v1.IOnClick, writer?: $protobuf.Writer): $protobuf.Writer;
9897
+
9898
+ /**
9899
+ * Decodes an OnClick message from the specified reader or buffer.
9900
+ * @param reader Reader or buffer to decode from
9901
+ * @param [length] Message length if known beforehand
9902
+ * @returns OnClick
9903
+ * @throws {Error} If the payload is not a reader or valid buffer
9904
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
9905
+ */
9906
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.apps.card.v1.OnClick;
9907
+
9908
+ /**
9909
+ * Decodes an OnClick message from the specified reader or buffer, length delimited.
9910
+ * @param reader Reader or buffer to decode from
9911
+ * @returns OnClick
9912
+ * @throws {Error} If the payload is not a reader or valid buffer
9913
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
9914
+ */
9915
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.apps.card.v1.OnClick;
9916
+
9917
+ /**
9918
+ * Verifies an OnClick message.
9919
+ * @param message Plain object to verify
9920
+ * @returns `null` if valid, otherwise the reason why it is not
9921
+ */
9922
+ public static verify(message: { [k: string]: any }): (string|null);
9923
+
9924
+ /**
9925
+ * Creates an OnClick message from a plain object. Also converts values to their respective internal types.
9926
+ * @param object Plain object
9927
+ * @returns OnClick
9928
+ */
9929
+ public static fromObject(object: { [k: string]: any }): google.apps.card.v1.OnClick;
9930
+
9931
+ /**
9932
+ * Creates a plain object from an OnClick message. Also converts values to other types if specified.
9933
+ * @param message OnClick
9934
+ * @param [options] Conversion options
9935
+ * @returns Plain object
9936
+ */
9937
+ public static toObject(message: google.apps.card.v1.OnClick, options?: $protobuf.IConversionOptions): { [k: string]: any };
9938
+
9939
+ /**
9940
+ * Converts this OnClick to JSON.
9941
+ * @returns JSON object
9942
+ */
9943
+ public toJSON(): { [k: string]: any };
9944
+
9945
+ /**
9946
+ * Gets the default type url for OnClick
9947
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
9948
+ * @returns The default type url
9949
+ */
9950
+ public static getTypeUrl(typeUrlPrefix?: string): string;
9951
+ }
9952
+
9953
+ /** Properties of an OpenLink. */
9954
+ interface IOpenLink {
9955
+
9956
+ /** OpenLink url */
9957
+ url?: (string|null);
9958
+
9959
+ /** OpenLink openAs */
9960
+ openAs?: (google.apps.card.v1.OpenLink.OpenAs|keyof typeof google.apps.card.v1.OpenLink.OpenAs|null);
9961
+
9962
+ /** OpenLink onClose */
9963
+ onClose?: (google.apps.card.v1.OpenLink.OnClose|keyof typeof google.apps.card.v1.OpenLink.OnClose|null);
9964
+ }
9965
+
9966
+ /** Represents an OpenLink. */
9967
+ class OpenLink implements IOpenLink {
9968
+
9969
+ /**
9970
+ * Constructs a new OpenLink.
9971
+ * @param [properties] Properties to set
9972
+ */
9973
+ constructor(properties?: google.apps.card.v1.IOpenLink);
9974
+
9975
+ /** OpenLink url. */
9976
+ public url: string;
9977
+
9978
+ /** OpenLink openAs. */
9979
+ public openAs: (google.apps.card.v1.OpenLink.OpenAs|keyof typeof google.apps.card.v1.OpenLink.OpenAs);
9980
+
9981
+ /** OpenLink onClose. */
9982
+ public onClose: (google.apps.card.v1.OpenLink.OnClose|keyof typeof google.apps.card.v1.OpenLink.OnClose);
9983
+
9984
+ /**
9985
+ * Creates a new OpenLink instance using the specified properties.
9986
+ * @param [properties] Properties to set
9987
+ * @returns OpenLink instance
9988
+ */
9989
+ public static create(properties?: google.apps.card.v1.IOpenLink): google.apps.card.v1.OpenLink;
9990
+
9991
+ /**
9992
+ * Encodes the specified OpenLink message. Does not implicitly {@link google.apps.card.v1.OpenLink.verify|verify} messages.
9993
+ * @param message OpenLink message or plain object to encode
9994
+ * @param [writer] Writer to encode to
9995
+ * @returns Writer
9996
+ */
9997
+ public static encode(message: google.apps.card.v1.IOpenLink, writer?: $protobuf.Writer): $protobuf.Writer;
9998
+
9999
+ /**
9531
10000
  * Encodes the specified OpenLink message, length delimited. Does not implicitly {@link google.apps.card.v1.OpenLink.verify|verify} messages.
9532
10001
  * @param message OpenLink message or plain object to encode
9533
10002
  * @param [writer] Writer to encode to
@@ -9622,6 +10091,12 @@ export namespace google {
9622
10091
 
9623
10092
  /** Action interaction */
9624
10093
  interaction?: (google.apps.card.v1.Action.Interaction|keyof typeof google.apps.card.v1.Action.Interaction|null);
10094
+
10095
+ /** Action requiredWidgets */
10096
+ requiredWidgets?: (string[]|null);
10097
+
10098
+ /** Action allWidgetsAreRequired */
10099
+ allWidgetsAreRequired?: (boolean|null);
9625
10100
  }
9626
10101
 
9627
10102
  /** Represents an Action. */
@@ -9648,6 +10123,12 @@ export namespace google {
9648
10123
  /** Action interaction. */
9649
10124
  public interaction: (google.apps.card.v1.Action.Interaction|keyof typeof google.apps.card.v1.Action.Interaction);
9650
10125
 
10126
+ /** Action requiredWidgets. */
10127
+ public requiredWidgets: string[];
10128
+
10129
+ /** Action allWidgetsAreRequired. */
10130
+ public allWidgetsAreRequired: boolean;
10131
+
9651
10132
  /**
9652
10133
  * Creates a new Action instance using the specified properties.
9653
10134
  * @param [properties] Properties to set
@@ -9817,31 +10298,387 @@ export namespace google {
9817
10298
  */
9818
10299
  public static toObject(message: google.apps.card.v1.Action.ActionParameter, options?: $protobuf.IConversionOptions): { [k: string]: any };
9819
10300
 
9820
- /**
9821
- * Converts this ActionParameter to JSON.
9822
- * @returns JSON object
9823
- */
9824
- public toJSON(): { [k: string]: any };
10301
+ /**
10302
+ * Converts this ActionParameter to JSON.
10303
+ * @returns JSON object
10304
+ */
10305
+ public toJSON(): { [k: string]: any };
10306
+
10307
+ /**
10308
+ * Gets the default type url for ActionParameter
10309
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
10310
+ * @returns The default type url
10311
+ */
10312
+ public static getTypeUrl(typeUrlPrefix?: string): string;
10313
+ }
10314
+
10315
+ /** LoadIndicator enum. */
10316
+ enum LoadIndicator {
10317
+ SPINNER = 0,
10318
+ NONE = 1
10319
+ }
10320
+
10321
+ /** Interaction enum. */
10322
+ enum Interaction {
10323
+ INTERACTION_UNSPECIFIED = 0,
10324
+ OPEN_DIALOG = 1
10325
+ }
10326
+ }
10327
+
10328
+ /** Properties of a Validation. */
10329
+ interface IValidation {
10330
+
10331
+ /** Validation characterLimit */
10332
+ characterLimit?: (number|null);
10333
+
10334
+ /** Validation inputType */
10335
+ inputType?: (google.apps.card.v1.Validation.InputType|keyof typeof google.apps.card.v1.Validation.InputType|null);
10336
+ }
10337
+
10338
+ /** Represents a Validation. */
10339
+ class Validation implements IValidation {
10340
+
10341
+ /**
10342
+ * Constructs a new Validation.
10343
+ * @param [properties] Properties to set
10344
+ */
10345
+ constructor(properties?: google.apps.card.v1.IValidation);
10346
+
10347
+ /** Validation characterLimit. */
10348
+ public characterLimit: number;
10349
+
10350
+ /** Validation inputType. */
10351
+ public inputType: (google.apps.card.v1.Validation.InputType|keyof typeof google.apps.card.v1.Validation.InputType);
10352
+
10353
+ /**
10354
+ * Creates a new Validation instance using the specified properties.
10355
+ * @param [properties] Properties to set
10356
+ * @returns Validation instance
10357
+ */
10358
+ public static create(properties?: google.apps.card.v1.IValidation): google.apps.card.v1.Validation;
10359
+
10360
+ /**
10361
+ * Encodes the specified Validation message. Does not implicitly {@link google.apps.card.v1.Validation.verify|verify} messages.
10362
+ * @param message Validation message or plain object to encode
10363
+ * @param [writer] Writer to encode to
10364
+ * @returns Writer
10365
+ */
10366
+ public static encode(message: google.apps.card.v1.IValidation, writer?: $protobuf.Writer): $protobuf.Writer;
10367
+
10368
+ /**
10369
+ * Encodes the specified Validation message, length delimited. Does not implicitly {@link google.apps.card.v1.Validation.verify|verify} messages.
10370
+ * @param message Validation message or plain object to encode
10371
+ * @param [writer] Writer to encode to
10372
+ * @returns Writer
10373
+ */
10374
+ public static encodeDelimited(message: google.apps.card.v1.IValidation, writer?: $protobuf.Writer): $protobuf.Writer;
10375
+
10376
+ /**
10377
+ * Decodes a Validation message from the specified reader or buffer.
10378
+ * @param reader Reader or buffer to decode from
10379
+ * @param [length] Message length if known beforehand
10380
+ * @returns Validation
10381
+ * @throws {Error} If the payload is not a reader or valid buffer
10382
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
10383
+ */
10384
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.apps.card.v1.Validation;
10385
+
10386
+ /**
10387
+ * Decodes a Validation message from the specified reader or buffer, length delimited.
10388
+ * @param reader Reader or buffer to decode from
10389
+ * @returns Validation
10390
+ * @throws {Error} If the payload is not a reader or valid buffer
10391
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
10392
+ */
10393
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.apps.card.v1.Validation;
10394
+
10395
+ /**
10396
+ * Verifies a Validation message.
10397
+ * @param message Plain object to verify
10398
+ * @returns `null` if valid, otherwise the reason why it is not
10399
+ */
10400
+ public static verify(message: { [k: string]: any }): (string|null);
10401
+
10402
+ /**
10403
+ * Creates a Validation message from a plain object. Also converts values to their respective internal types.
10404
+ * @param object Plain object
10405
+ * @returns Validation
10406
+ */
10407
+ public static fromObject(object: { [k: string]: any }): google.apps.card.v1.Validation;
10408
+
10409
+ /**
10410
+ * Creates a plain object from a Validation message. Also converts values to other types if specified.
10411
+ * @param message Validation
10412
+ * @param [options] Conversion options
10413
+ * @returns Plain object
10414
+ */
10415
+ public static toObject(message: google.apps.card.v1.Validation, options?: $protobuf.IConversionOptions): { [k: string]: any };
10416
+
10417
+ /**
10418
+ * Converts this Validation to JSON.
10419
+ * @returns JSON object
10420
+ */
10421
+ public toJSON(): { [k: string]: any };
10422
+
10423
+ /**
10424
+ * Gets the default type url for Validation
10425
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
10426
+ * @returns The default type url
10427
+ */
10428
+ public static getTypeUrl(typeUrlPrefix?: string): string;
10429
+ }
10430
+
10431
+ namespace Validation {
10432
+
10433
+ /** InputType enum. */
10434
+ enum InputType {
10435
+ INPUT_TYPE_UNSPECIFIED = 0,
10436
+ TEXT = 1,
10437
+ INTEGER = 2,
10438
+ FLOAT = 3,
10439
+ EMAIL = 4,
10440
+ EMOJI_PICKER = 5
10441
+ }
10442
+ }
10443
+
10444
+ /** Properties of a ChipList. */
10445
+ interface IChipList {
10446
+
10447
+ /** ChipList layout */
10448
+ layout?: (google.apps.card.v1.ChipList.Layout|keyof typeof google.apps.card.v1.ChipList.Layout|null);
10449
+
10450
+ /** ChipList chips */
10451
+ chips?: (google.apps.card.v1.IChip[]|null);
10452
+ }
10453
+
10454
+ /** Represents a ChipList. */
10455
+ class ChipList implements IChipList {
10456
+
10457
+ /**
10458
+ * Constructs a new ChipList.
10459
+ * @param [properties] Properties to set
10460
+ */
10461
+ constructor(properties?: google.apps.card.v1.IChipList);
10462
+
10463
+ /** ChipList layout. */
10464
+ public layout: (google.apps.card.v1.ChipList.Layout|keyof typeof google.apps.card.v1.ChipList.Layout);
10465
+
10466
+ /** ChipList chips. */
10467
+ public chips: google.apps.card.v1.IChip[];
10468
+
10469
+ /**
10470
+ * Creates a new ChipList instance using the specified properties.
10471
+ * @param [properties] Properties to set
10472
+ * @returns ChipList instance
10473
+ */
10474
+ public static create(properties?: google.apps.card.v1.IChipList): google.apps.card.v1.ChipList;
10475
+
10476
+ /**
10477
+ * Encodes the specified ChipList message. Does not implicitly {@link google.apps.card.v1.ChipList.verify|verify} messages.
10478
+ * @param message ChipList message or plain object to encode
10479
+ * @param [writer] Writer to encode to
10480
+ * @returns Writer
10481
+ */
10482
+ public static encode(message: google.apps.card.v1.IChipList, writer?: $protobuf.Writer): $protobuf.Writer;
10483
+
10484
+ /**
10485
+ * Encodes the specified ChipList message, length delimited. Does not implicitly {@link google.apps.card.v1.ChipList.verify|verify} messages.
10486
+ * @param message ChipList message or plain object to encode
10487
+ * @param [writer] Writer to encode to
10488
+ * @returns Writer
10489
+ */
10490
+ public static encodeDelimited(message: google.apps.card.v1.IChipList, writer?: $protobuf.Writer): $protobuf.Writer;
10491
+
10492
+ /**
10493
+ * Decodes a ChipList message from the specified reader or buffer.
10494
+ * @param reader Reader or buffer to decode from
10495
+ * @param [length] Message length if known beforehand
10496
+ * @returns ChipList
10497
+ * @throws {Error} If the payload is not a reader or valid buffer
10498
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
10499
+ */
10500
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.apps.card.v1.ChipList;
10501
+
10502
+ /**
10503
+ * Decodes a ChipList message from the specified reader or buffer, length delimited.
10504
+ * @param reader Reader or buffer to decode from
10505
+ * @returns ChipList
10506
+ * @throws {Error} If the payload is not a reader or valid buffer
10507
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
10508
+ */
10509
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.apps.card.v1.ChipList;
10510
+
10511
+ /**
10512
+ * Verifies a ChipList message.
10513
+ * @param message Plain object to verify
10514
+ * @returns `null` if valid, otherwise the reason why it is not
10515
+ */
10516
+ public static verify(message: { [k: string]: any }): (string|null);
10517
+
10518
+ /**
10519
+ * Creates a ChipList message from a plain object. Also converts values to their respective internal types.
10520
+ * @param object Plain object
10521
+ * @returns ChipList
10522
+ */
10523
+ public static fromObject(object: { [k: string]: any }): google.apps.card.v1.ChipList;
10524
+
10525
+ /**
10526
+ * Creates a plain object from a ChipList message. Also converts values to other types if specified.
10527
+ * @param message ChipList
10528
+ * @param [options] Conversion options
10529
+ * @returns Plain object
10530
+ */
10531
+ public static toObject(message: google.apps.card.v1.ChipList, options?: $protobuf.IConversionOptions): { [k: string]: any };
10532
+
10533
+ /**
10534
+ * Converts this ChipList to JSON.
10535
+ * @returns JSON object
10536
+ */
10537
+ public toJSON(): { [k: string]: any };
10538
+
10539
+ /**
10540
+ * Gets the default type url for ChipList
10541
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
10542
+ * @returns The default type url
10543
+ */
10544
+ public static getTypeUrl(typeUrlPrefix?: string): string;
10545
+ }
10546
+
10547
+ namespace ChipList {
10548
+
10549
+ /** Layout enum. */
10550
+ enum Layout {
10551
+ LAYOUT_UNSPECIFIED = 0,
10552
+ WRAPPED = 1,
10553
+ HORIZONTAL_SCROLLABLE = 2
10554
+ }
10555
+ }
10556
+
10557
+ /** Properties of a Chip. */
10558
+ interface IChip {
10559
+
10560
+ /** Chip icon */
10561
+ icon?: (google.apps.card.v1.IIcon|null);
10562
+
10563
+ /** Chip label */
10564
+ label?: (string|null);
10565
+
10566
+ /** Chip onClick */
10567
+ onClick?: (google.apps.card.v1.IOnClick|null);
10568
+
10569
+ /** Chip enabled */
10570
+ enabled?: (boolean|null);
10571
+
10572
+ /** Chip disabled */
10573
+ disabled?: (boolean|null);
10574
+
10575
+ /** Chip altText */
10576
+ altText?: (string|null);
10577
+ }
10578
+
10579
+ /** Represents a Chip. */
10580
+ class Chip implements IChip {
10581
+
10582
+ /**
10583
+ * Constructs a new Chip.
10584
+ * @param [properties] Properties to set
10585
+ */
10586
+ constructor(properties?: google.apps.card.v1.IChip);
10587
+
10588
+ /** Chip icon. */
10589
+ public icon?: (google.apps.card.v1.IIcon|null);
10590
+
10591
+ /** Chip label. */
10592
+ public label: string;
10593
+
10594
+ /** Chip onClick. */
10595
+ public onClick?: (google.apps.card.v1.IOnClick|null);
10596
+
10597
+ /** Chip enabled. */
10598
+ public enabled: boolean;
10599
+
10600
+ /** Chip disabled. */
10601
+ public disabled: boolean;
10602
+
10603
+ /** Chip altText. */
10604
+ public altText: string;
10605
+
10606
+ /**
10607
+ * Creates a new Chip instance using the specified properties.
10608
+ * @param [properties] Properties to set
10609
+ * @returns Chip instance
10610
+ */
10611
+ public static create(properties?: google.apps.card.v1.IChip): google.apps.card.v1.Chip;
10612
+
10613
+ /**
10614
+ * Encodes the specified Chip message. Does not implicitly {@link google.apps.card.v1.Chip.verify|verify} messages.
10615
+ * @param message Chip message or plain object to encode
10616
+ * @param [writer] Writer to encode to
10617
+ * @returns Writer
10618
+ */
10619
+ public static encode(message: google.apps.card.v1.IChip, writer?: $protobuf.Writer): $protobuf.Writer;
10620
+
10621
+ /**
10622
+ * Encodes the specified Chip message, length delimited. Does not implicitly {@link google.apps.card.v1.Chip.verify|verify} messages.
10623
+ * @param message Chip message or plain object to encode
10624
+ * @param [writer] Writer to encode to
10625
+ * @returns Writer
10626
+ */
10627
+ public static encodeDelimited(message: google.apps.card.v1.IChip, writer?: $protobuf.Writer): $protobuf.Writer;
10628
+
10629
+ /**
10630
+ * Decodes a Chip message from the specified reader or buffer.
10631
+ * @param reader Reader or buffer to decode from
10632
+ * @param [length] Message length if known beforehand
10633
+ * @returns Chip
10634
+ * @throws {Error} If the payload is not a reader or valid buffer
10635
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
10636
+ */
10637
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.apps.card.v1.Chip;
10638
+
10639
+ /**
10640
+ * Decodes a Chip message from the specified reader or buffer, length delimited.
10641
+ * @param reader Reader or buffer to decode from
10642
+ * @returns Chip
10643
+ * @throws {Error} If the payload is not a reader or valid buffer
10644
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
10645
+ */
10646
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.apps.card.v1.Chip;
10647
+
10648
+ /**
10649
+ * Verifies a Chip message.
10650
+ * @param message Plain object to verify
10651
+ * @returns `null` if valid, otherwise the reason why it is not
10652
+ */
10653
+ public static verify(message: { [k: string]: any }): (string|null);
9825
10654
 
9826
- /**
9827
- * Gets the default type url for ActionParameter
9828
- * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
9829
- * @returns The default type url
9830
- */
9831
- public static getTypeUrl(typeUrlPrefix?: string): string;
9832
- }
10655
+ /**
10656
+ * Creates a Chip message from a plain object. Also converts values to their respective internal types.
10657
+ * @param object Plain object
10658
+ * @returns Chip
10659
+ */
10660
+ public static fromObject(object: { [k: string]: any }): google.apps.card.v1.Chip;
9833
10661
 
9834
- /** LoadIndicator enum. */
9835
- enum LoadIndicator {
9836
- SPINNER = 0,
9837
- NONE = 1
9838
- }
10662
+ /**
10663
+ * Creates a plain object from a Chip message. Also converts values to other types if specified.
10664
+ * @param message Chip
10665
+ * @param [options] Conversion options
10666
+ * @returns Plain object
10667
+ */
10668
+ public static toObject(message: google.apps.card.v1.Chip, options?: $protobuf.IConversionOptions): { [k: string]: any };
9839
10669
 
9840
- /** Interaction enum. */
9841
- enum Interaction {
9842
- INTERACTION_UNSPECIFIED = 0,
9843
- OPEN_DIALOG = 1
9844
- }
10670
+ /**
10671
+ * Converts this Chip to JSON.
10672
+ * @returns JSON object
10673
+ */
10674
+ public toJSON(): { [k: string]: any };
10675
+
10676
+ /**
10677
+ * Gets the default type url for Chip
10678
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
10679
+ * @returns The default type url
10680
+ */
10681
+ public static getTypeUrl(typeUrlPrefix?: string): string;
9845
10682
  }
9846
10683
  }
9847
10684
  }
@@ -24613,9 +25450,6 @@ export namespace google {
24613
25450
 
24614
25451
  /** FieldInfo format */
24615
25452
  format?: (google.api.FieldInfo.Format|keyof typeof google.api.FieldInfo.Format|null);
24616
-
24617
- /** FieldInfo referencedTypes */
24618
- referencedTypes?: (google.api.ITypeReference[]|null);
24619
25453
  }
24620
25454
 
24621
25455
  /** Represents a FieldInfo. */
@@ -24630,9 +25464,6 @@ export namespace google {
24630
25464
  /** FieldInfo format. */
24631
25465
  public format: (google.api.FieldInfo.Format|keyof typeof google.api.FieldInfo.Format);
24632
25466
 
24633
- /** FieldInfo referencedTypes. */
24634
- public referencedTypes: google.api.ITypeReference[];
24635
-
24636
25467
  /**
24637
25468
  * Creates a new FieldInfo instance using the specified properties.
24638
25469
  * @param [properties] Properties to set
@@ -24723,103 +25554,6 @@ export namespace google {
24723
25554
  }
24724
25555
  }
24725
25556
 
24726
- /** Properties of a TypeReference. */
24727
- interface ITypeReference {
24728
-
24729
- /** TypeReference typeName */
24730
- typeName?: (string|null);
24731
- }
24732
-
24733
- /** Represents a TypeReference. */
24734
- class TypeReference implements ITypeReference {
24735
-
24736
- /**
24737
- * Constructs a new TypeReference.
24738
- * @param [properties] Properties to set
24739
- */
24740
- constructor(properties?: google.api.ITypeReference);
24741
-
24742
- /** TypeReference typeName. */
24743
- public typeName: string;
24744
-
24745
- /**
24746
- * Creates a new TypeReference instance using the specified properties.
24747
- * @param [properties] Properties to set
24748
- * @returns TypeReference instance
24749
- */
24750
- public static create(properties?: google.api.ITypeReference): google.api.TypeReference;
24751
-
24752
- /**
24753
- * Encodes the specified TypeReference message. Does not implicitly {@link google.api.TypeReference.verify|verify} messages.
24754
- * @param message TypeReference message or plain object to encode
24755
- * @param [writer] Writer to encode to
24756
- * @returns Writer
24757
- */
24758
- public static encode(message: google.api.ITypeReference, writer?: $protobuf.Writer): $protobuf.Writer;
24759
-
24760
- /**
24761
- * Encodes the specified TypeReference message, length delimited. Does not implicitly {@link google.api.TypeReference.verify|verify} messages.
24762
- * @param message TypeReference message or plain object to encode
24763
- * @param [writer] Writer to encode to
24764
- * @returns Writer
24765
- */
24766
- public static encodeDelimited(message: google.api.ITypeReference, writer?: $protobuf.Writer): $protobuf.Writer;
24767
-
24768
- /**
24769
- * Decodes a TypeReference message from the specified reader or buffer.
24770
- * @param reader Reader or buffer to decode from
24771
- * @param [length] Message length if known beforehand
24772
- * @returns TypeReference
24773
- * @throws {Error} If the payload is not a reader or valid buffer
24774
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
24775
- */
24776
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.TypeReference;
24777
-
24778
- /**
24779
- * Decodes a TypeReference message from the specified reader or buffer, length delimited.
24780
- * @param reader Reader or buffer to decode from
24781
- * @returns TypeReference
24782
- * @throws {Error} If the payload is not a reader or valid buffer
24783
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
24784
- */
24785
- public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.TypeReference;
24786
-
24787
- /**
24788
- * Verifies a TypeReference message.
24789
- * @param message Plain object to verify
24790
- * @returns `null` if valid, otherwise the reason why it is not
24791
- */
24792
- public static verify(message: { [k: string]: any }): (string|null);
24793
-
24794
- /**
24795
- * Creates a TypeReference message from a plain object. Also converts values to their respective internal types.
24796
- * @param object Plain object
24797
- * @returns TypeReference
24798
- */
24799
- public static fromObject(object: { [k: string]: any }): google.api.TypeReference;
24800
-
24801
- /**
24802
- * Creates a plain object from a TypeReference message. Also converts values to other types if specified.
24803
- * @param message TypeReference
24804
- * @param [options] Conversion options
24805
- * @returns Plain object
24806
- */
24807
- public static toObject(message: google.api.TypeReference, options?: $protobuf.IConversionOptions): { [k: string]: any };
24808
-
24809
- /**
24810
- * Converts this TypeReference to JSON.
24811
- * @returns JSON object
24812
- */
24813
- public toJSON(): { [k: string]: any };
24814
-
24815
- /**
24816
- * Gets the default type url for TypeReference
24817
- * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
24818
- * @returns The default type url
24819
- */
24820
- public static getTypeUrl(typeUrlPrefix?: string): string;
24821
- }
24822
-
24823
25557
  /** Properties of a Http. */
24824
25558
  interface IHttp {
24825
25559
 
@@ -25188,9 +25922,6 @@ export namespace google {
25188
25922
 
25189
25923
  /** CommonLanguageSettings destinations */
25190
25924
  destinations?: (google.api.ClientLibraryDestination[]|null);
25191
-
25192
- /** CommonLanguageSettings selectiveGapicGeneration */
25193
- selectiveGapicGeneration?: (google.api.ISelectiveGapicGeneration|null);
25194
25925
  }
25195
25926
 
25196
25927
  /** Represents a CommonLanguageSettings. */
@@ -25208,9 +25939,6 @@ export namespace google {
25208
25939
  /** CommonLanguageSettings destinations. */
25209
25940
  public destinations: google.api.ClientLibraryDestination[];
25210
25941
 
25211
- /** CommonLanguageSettings selectiveGapicGeneration. */
25212
- public selectiveGapicGeneration?: (google.api.ISelectiveGapicGeneration|null);
25213
-
25214
25942
  /**
25215
25943
  * Creates a new CommonLanguageSettings instance using the specified properties.
25216
25944
  * @param [properties] Properties to set
@@ -25911,9 +26639,6 @@ export namespace google {
25911
26639
 
25912
26640
  /** PythonSettings common */
25913
26641
  common?: (google.api.ICommonLanguageSettings|null);
25914
-
25915
- /** PythonSettings experimentalFeatures */
25916
- experimentalFeatures?: (google.api.PythonSettings.IExperimentalFeatures|null);
25917
26642
  }
25918
26643
 
25919
26644
  /** Represents a PythonSettings. */
@@ -25928,9 +26653,6 @@ export namespace google {
25928
26653
  /** PythonSettings common. */
25929
26654
  public common?: (google.api.ICommonLanguageSettings|null);
25930
26655
 
25931
- /** PythonSettings experimentalFeatures. */
25932
- public experimentalFeatures?: (google.api.PythonSettings.IExperimentalFeatures|null);
25933
-
25934
26656
  /**
25935
26657
  * Creates a new PythonSettings instance using the specified properties.
25936
26658
  * @param [properties] Properties to set
@@ -26009,118 +26731,6 @@ export namespace google {
26009
26731
  public static getTypeUrl(typeUrlPrefix?: string): string;
26010
26732
  }
26011
26733
 
26012
- namespace PythonSettings {
26013
-
26014
- /** Properties of an ExperimentalFeatures. */
26015
- interface IExperimentalFeatures {
26016
-
26017
- /** ExperimentalFeatures restAsyncIoEnabled */
26018
- restAsyncIoEnabled?: (boolean|null);
26019
-
26020
- /** ExperimentalFeatures protobufPythonicTypesEnabled */
26021
- protobufPythonicTypesEnabled?: (boolean|null);
26022
-
26023
- /** ExperimentalFeatures unversionedPackageDisabled */
26024
- unversionedPackageDisabled?: (boolean|null);
26025
- }
26026
-
26027
- /** Represents an ExperimentalFeatures. */
26028
- class ExperimentalFeatures implements IExperimentalFeatures {
26029
-
26030
- /**
26031
- * Constructs a new ExperimentalFeatures.
26032
- * @param [properties] Properties to set
26033
- */
26034
- constructor(properties?: google.api.PythonSettings.IExperimentalFeatures);
26035
-
26036
- /** ExperimentalFeatures restAsyncIoEnabled. */
26037
- public restAsyncIoEnabled: boolean;
26038
-
26039
- /** ExperimentalFeatures protobufPythonicTypesEnabled. */
26040
- public protobufPythonicTypesEnabled: boolean;
26041
-
26042
- /** ExperimentalFeatures unversionedPackageDisabled. */
26043
- public unversionedPackageDisabled: boolean;
26044
-
26045
- /**
26046
- * Creates a new ExperimentalFeatures instance using the specified properties.
26047
- * @param [properties] Properties to set
26048
- * @returns ExperimentalFeatures instance
26049
- */
26050
- public static create(properties?: google.api.PythonSettings.IExperimentalFeatures): google.api.PythonSettings.ExperimentalFeatures;
26051
-
26052
- /**
26053
- * Encodes the specified ExperimentalFeatures message. Does not implicitly {@link google.api.PythonSettings.ExperimentalFeatures.verify|verify} messages.
26054
- * @param message ExperimentalFeatures message or plain object to encode
26055
- * @param [writer] Writer to encode to
26056
- * @returns Writer
26057
- */
26058
- public static encode(message: google.api.PythonSettings.IExperimentalFeatures, writer?: $protobuf.Writer): $protobuf.Writer;
26059
-
26060
- /**
26061
- * Encodes the specified ExperimentalFeatures message, length delimited. Does not implicitly {@link google.api.PythonSettings.ExperimentalFeatures.verify|verify} messages.
26062
- * @param message ExperimentalFeatures message or plain object to encode
26063
- * @param [writer] Writer to encode to
26064
- * @returns Writer
26065
- */
26066
- public static encodeDelimited(message: google.api.PythonSettings.IExperimentalFeatures, writer?: $protobuf.Writer): $protobuf.Writer;
26067
-
26068
- /**
26069
- * Decodes an ExperimentalFeatures message from the specified reader or buffer.
26070
- * @param reader Reader or buffer to decode from
26071
- * @param [length] Message length if known beforehand
26072
- * @returns ExperimentalFeatures
26073
- * @throws {Error} If the payload is not a reader or valid buffer
26074
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
26075
- */
26076
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.PythonSettings.ExperimentalFeatures;
26077
-
26078
- /**
26079
- * Decodes an ExperimentalFeatures message from the specified reader or buffer, length delimited.
26080
- * @param reader Reader or buffer to decode from
26081
- * @returns ExperimentalFeatures
26082
- * @throws {Error} If the payload is not a reader or valid buffer
26083
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
26084
- */
26085
- public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.PythonSettings.ExperimentalFeatures;
26086
-
26087
- /**
26088
- * Verifies an ExperimentalFeatures message.
26089
- * @param message Plain object to verify
26090
- * @returns `null` if valid, otherwise the reason why it is not
26091
- */
26092
- public static verify(message: { [k: string]: any }): (string|null);
26093
-
26094
- /**
26095
- * Creates an ExperimentalFeatures message from a plain object. Also converts values to their respective internal types.
26096
- * @param object Plain object
26097
- * @returns ExperimentalFeatures
26098
- */
26099
- public static fromObject(object: { [k: string]: any }): google.api.PythonSettings.ExperimentalFeatures;
26100
-
26101
- /**
26102
- * Creates a plain object from an ExperimentalFeatures message. Also converts values to other types if specified.
26103
- * @param message ExperimentalFeatures
26104
- * @param [options] Conversion options
26105
- * @returns Plain object
26106
- */
26107
- public static toObject(message: google.api.PythonSettings.ExperimentalFeatures, options?: $protobuf.IConversionOptions): { [k: string]: any };
26108
-
26109
- /**
26110
- * Converts this ExperimentalFeatures to JSON.
26111
- * @returns JSON object
26112
- */
26113
- public toJSON(): { [k: string]: any };
26114
-
26115
- /**
26116
- * Gets the default type url for ExperimentalFeatures
26117
- * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
26118
- * @returns The default type url
26119
- */
26120
- public static getTypeUrl(typeUrlPrefix?: string): string;
26121
- }
26122
- }
26123
-
26124
26734
  /** Properties of a NodeSettings. */
26125
26735
  interface INodeSettings {
26126
26736
 
@@ -26447,9 +27057,6 @@ export namespace google {
26447
27057
 
26448
27058
  /** GoSettings common */
26449
27059
  common?: (google.api.ICommonLanguageSettings|null);
26450
-
26451
- /** GoSettings renamedServices */
26452
- renamedServices?: ({ [k: string]: string }|null);
26453
27060
  }
26454
27061
 
26455
27062
  /** Represents a GoSettings. */
@@ -26464,9 +27071,6 @@ export namespace google {
26464
27071
  /** GoSettings common. */
26465
27072
  public common?: (google.api.ICommonLanguageSettings|null);
26466
27073
 
26467
- /** GoSettings renamedServices. */
26468
- public renamedServices: { [k: string]: string };
26469
-
26470
27074
  /**
26471
27075
  * Creates a new GoSettings instance using the specified properties.
26472
27076
  * @param [properties] Properties to set
@@ -26791,109 +27395,6 @@ export namespace google {
26791
27395
  PACKAGE_MANAGER = 20
26792
27396
  }
26793
27397
 
26794
- /** Properties of a SelectiveGapicGeneration. */
26795
- interface ISelectiveGapicGeneration {
26796
-
26797
- /** SelectiveGapicGeneration methods */
26798
- methods?: (string[]|null);
26799
-
26800
- /** SelectiveGapicGeneration generateOmittedAsInternal */
26801
- generateOmittedAsInternal?: (boolean|null);
26802
- }
26803
-
26804
- /** Represents a SelectiveGapicGeneration. */
26805
- class SelectiveGapicGeneration implements ISelectiveGapicGeneration {
26806
-
26807
- /**
26808
- * Constructs a new SelectiveGapicGeneration.
26809
- * @param [properties] Properties to set
26810
- */
26811
- constructor(properties?: google.api.ISelectiveGapicGeneration);
26812
-
26813
- /** SelectiveGapicGeneration methods. */
26814
- public methods: string[];
26815
-
26816
- /** SelectiveGapicGeneration generateOmittedAsInternal. */
26817
- public generateOmittedAsInternal: boolean;
26818
-
26819
- /**
26820
- * Creates a new SelectiveGapicGeneration instance using the specified properties.
26821
- * @param [properties] Properties to set
26822
- * @returns SelectiveGapicGeneration instance
26823
- */
26824
- public static create(properties?: google.api.ISelectiveGapicGeneration): google.api.SelectiveGapicGeneration;
26825
-
26826
- /**
26827
- * Encodes the specified SelectiveGapicGeneration message. Does not implicitly {@link google.api.SelectiveGapicGeneration.verify|verify} messages.
26828
- * @param message SelectiveGapicGeneration message or plain object to encode
26829
- * @param [writer] Writer to encode to
26830
- * @returns Writer
26831
- */
26832
- public static encode(message: google.api.ISelectiveGapicGeneration, writer?: $protobuf.Writer): $protobuf.Writer;
26833
-
26834
- /**
26835
- * Encodes the specified SelectiveGapicGeneration message, length delimited. Does not implicitly {@link google.api.SelectiveGapicGeneration.verify|verify} messages.
26836
- * @param message SelectiveGapicGeneration message or plain object to encode
26837
- * @param [writer] Writer to encode to
26838
- * @returns Writer
26839
- */
26840
- public static encodeDelimited(message: google.api.ISelectiveGapicGeneration, writer?: $protobuf.Writer): $protobuf.Writer;
26841
-
26842
- /**
26843
- * Decodes a SelectiveGapicGeneration message from the specified reader or buffer.
26844
- * @param reader Reader or buffer to decode from
26845
- * @param [length] Message length if known beforehand
26846
- * @returns SelectiveGapicGeneration
26847
- * @throws {Error} If the payload is not a reader or valid buffer
26848
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
26849
- */
26850
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.SelectiveGapicGeneration;
26851
-
26852
- /**
26853
- * Decodes a SelectiveGapicGeneration message from the specified reader or buffer, length delimited.
26854
- * @param reader Reader or buffer to decode from
26855
- * @returns SelectiveGapicGeneration
26856
- * @throws {Error} If the payload is not a reader or valid buffer
26857
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
26858
- */
26859
- public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.SelectiveGapicGeneration;
26860
-
26861
- /**
26862
- * Verifies a SelectiveGapicGeneration message.
26863
- * @param message Plain object to verify
26864
- * @returns `null` if valid, otherwise the reason why it is not
26865
- */
26866
- public static verify(message: { [k: string]: any }): (string|null);
26867
-
26868
- /**
26869
- * Creates a SelectiveGapicGeneration message from a plain object. Also converts values to their respective internal types.
26870
- * @param object Plain object
26871
- * @returns SelectiveGapicGeneration
26872
- */
26873
- public static fromObject(object: { [k: string]: any }): google.api.SelectiveGapicGeneration;
26874
-
26875
- /**
26876
- * Creates a plain object from a SelectiveGapicGeneration message. Also converts values to other types if specified.
26877
- * @param message SelectiveGapicGeneration
26878
- * @param [options] Conversion options
26879
- * @returns Plain object
26880
- */
26881
- public static toObject(message: google.api.SelectiveGapicGeneration, options?: $protobuf.IConversionOptions): { [k: string]: any };
26882
-
26883
- /**
26884
- * Converts this SelectiveGapicGeneration to JSON.
26885
- * @returns JSON object
26886
- */
26887
- public toJSON(): { [k: string]: any };
26888
-
26889
- /**
26890
- * Gets the default type url for SelectiveGapicGeneration
26891
- * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
26892
- * @returns The default type url
26893
- */
26894
- public static getTypeUrl(typeUrlPrefix?: string): string;
26895
- }
26896
-
26897
27398
  /** LaunchStage enum. */
26898
27399
  enum LaunchStage {
26899
27400
  LAUNCH_STAGE_UNSPECIFIED = 0,