@google-analytics/data 4.3.0 → 4.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,4 @@
1
- // Copyright 2023 Google LLC
1
+ // Copyright 2024 Google LLC
2
2
  //
3
3
  // Licensed under the Apache License, Version 2.0 (the "License");
4
4
  // you may not use this file except in compliance with the License.
@@ -220,6 +220,21 @@ export namespace google {
220
220
  public static getTypeUrl(typeUrlPrefix?: string): string;
221
221
  }
222
222
 
223
+ /** Edition enum. */
224
+ enum Edition {
225
+ EDITION_UNKNOWN = 0,
226
+ EDITION_PROTO2 = 998,
227
+ EDITION_PROTO3 = 999,
228
+ EDITION_2023 = 1000,
229
+ EDITION_2024 = 1001,
230
+ EDITION_1_TEST_ONLY = 1,
231
+ EDITION_2_TEST_ONLY = 2,
232
+ EDITION_99997_TEST_ONLY = 99997,
233
+ EDITION_99998_TEST_ONLY = 99998,
234
+ EDITION_99999_TEST_ONLY = 99999,
235
+ EDITION_MAX = 2147483647
236
+ }
237
+
223
238
  /** Properties of a FileDescriptorProto. */
224
239
  interface IFileDescriptorProto {
225
240
 
@@ -260,7 +275,7 @@ export namespace google {
260
275
  syntax?: (string|null);
261
276
 
262
277
  /** FileDescriptorProto edition */
263
- edition?: (string|null);
278
+ edition?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
264
279
  }
265
280
 
266
281
  /** Represents a FileDescriptorProto. */
@@ -309,7 +324,7 @@ export namespace google {
309
324
  public syntax: string;
310
325
 
311
326
  /** FileDescriptorProto edition. */
312
- public edition: string;
327
+ public edition: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
313
328
 
314
329
  /**
315
330
  * Creates a new FileDescriptorProto instance using the specified properties.
@@ -760,6 +775,15 @@ export namespace google {
760
775
 
761
776
  /** ExtensionRangeOptions uninterpretedOption */
762
777
  uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
778
+
779
+ /** ExtensionRangeOptions declaration */
780
+ declaration?: (google.protobuf.ExtensionRangeOptions.IDeclaration[]|null);
781
+
782
+ /** ExtensionRangeOptions features */
783
+ features?: (google.protobuf.IFeatureSet|null);
784
+
785
+ /** ExtensionRangeOptions verification */
786
+ verification?: (google.protobuf.ExtensionRangeOptions.VerificationState|keyof typeof google.protobuf.ExtensionRangeOptions.VerificationState|null);
763
787
  }
764
788
 
765
789
  /** Represents an ExtensionRangeOptions. */
@@ -774,6 +798,15 @@ export namespace google {
774
798
  /** ExtensionRangeOptions uninterpretedOption. */
775
799
  public uninterpretedOption: google.protobuf.IUninterpretedOption[];
776
800
 
801
+ /** ExtensionRangeOptions declaration. */
802
+ public declaration: google.protobuf.ExtensionRangeOptions.IDeclaration[];
803
+
804
+ /** ExtensionRangeOptions features. */
805
+ public features?: (google.protobuf.IFeatureSet|null);
806
+
807
+ /** ExtensionRangeOptions verification. */
808
+ public verification: (google.protobuf.ExtensionRangeOptions.VerificationState|keyof typeof google.protobuf.ExtensionRangeOptions.VerificationState);
809
+
777
810
  /**
778
811
  * Creates a new ExtensionRangeOptions instance using the specified properties.
779
812
  * @param [properties] Properties to set
@@ -852,6 +885,136 @@ export namespace google {
852
885
  public static getTypeUrl(typeUrlPrefix?: string): string;
853
886
  }
854
887
 
888
+ namespace ExtensionRangeOptions {
889
+
890
+ /** Properties of a Declaration. */
891
+ interface IDeclaration {
892
+
893
+ /** Declaration number */
894
+ number?: (number|null);
895
+
896
+ /** Declaration fullName */
897
+ fullName?: (string|null);
898
+
899
+ /** Declaration type */
900
+ type?: (string|null);
901
+
902
+ /** Declaration reserved */
903
+ reserved?: (boolean|null);
904
+
905
+ /** Declaration repeated */
906
+ repeated?: (boolean|null);
907
+ }
908
+
909
+ /** Represents a Declaration. */
910
+ class Declaration implements IDeclaration {
911
+
912
+ /**
913
+ * Constructs a new Declaration.
914
+ * @param [properties] Properties to set
915
+ */
916
+ constructor(properties?: google.protobuf.ExtensionRangeOptions.IDeclaration);
917
+
918
+ /** Declaration number. */
919
+ public number: number;
920
+
921
+ /** Declaration fullName. */
922
+ public fullName: string;
923
+
924
+ /** Declaration type. */
925
+ public type: string;
926
+
927
+ /** Declaration reserved. */
928
+ public reserved: boolean;
929
+
930
+ /** Declaration repeated. */
931
+ public repeated: boolean;
932
+
933
+ /**
934
+ * Creates a new Declaration instance using the specified properties.
935
+ * @param [properties] Properties to set
936
+ * @returns Declaration instance
937
+ */
938
+ public static create(properties?: google.protobuf.ExtensionRangeOptions.IDeclaration): google.protobuf.ExtensionRangeOptions.Declaration;
939
+
940
+ /**
941
+ * Encodes the specified Declaration message. Does not implicitly {@link google.protobuf.ExtensionRangeOptions.Declaration.verify|verify} messages.
942
+ * @param message Declaration message or plain object to encode
943
+ * @param [writer] Writer to encode to
944
+ * @returns Writer
945
+ */
946
+ public static encode(message: google.protobuf.ExtensionRangeOptions.IDeclaration, writer?: $protobuf.Writer): $protobuf.Writer;
947
+
948
+ /**
949
+ * Encodes the specified Declaration message, length delimited. Does not implicitly {@link google.protobuf.ExtensionRangeOptions.Declaration.verify|verify} messages.
950
+ * @param message Declaration message or plain object to encode
951
+ * @param [writer] Writer to encode to
952
+ * @returns Writer
953
+ */
954
+ public static encodeDelimited(message: google.protobuf.ExtensionRangeOptions.IDeclaration, writer?: $protobuf.Writer): $protobuf.Writer;
955
+
956
+ /**
957
+ * Decodes a Declaration message from the specified reader or buffer.
958
+ * @param reader Reader or buffer to decode from
959
+ * @param [length] Message length if known beforehand
960
+ * @returns Declaration
961
+ * @throws {Error} If the payload is not a reader or valid buffer
962
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
963
+ */
964
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.ExtensionRangeOptions.Declaration;
965
+
966
+ /**
967
+ * Decodes a Declaration message from the specified reader or buffer, length delimited.
968
+ * @param reader Reader or buffer to decode from
969
+ * @returns Declaration
970
+ * @throws {Error} If the payload is not a reader or valid buffer
971
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
972
+ */
973
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.ExtensionRangeOptions.Declaration;
974
+
975
+ /**
976
+ * Verifies a Declaration message.
977
+ * @param message Plain object to verify
978
+ * @returns `null` if valid, otherwise the reason why it is not
979
+ */
980
+ public static verify(message: { [k: string]: any }): (string|null);
981
+
982
+ /**
983
+ * Creates a Declaration message from a plain object. Also converts values to their respective internal types.
984
+ * @param object Plain object
985
+ * @returns Declaration
986
+ */
987
+ public static fromObject(object: { [k: string]: any }): google.protobuf.ExtensionRangeOptions.Declaration;
988
+
989
+ /**
990
+ * Creates a plain object from a Declaration message. Also converts values to other types if specified.
991
+ * @param message Declaration
992
+ * @param [options] Conversion options
993
+ * @returns Plain object
994
+ */
995
+ public static toObject(message: google.protobuf.ExtensionRangeOptions.Declaration, options?: $protobuf.IConversionOptions): { [k: string]: any };
996
+
997
+ /**
998
+ * Converts this Declaration to JSON.
999
+ * @returns JSON object
1000
+ */
1001
+ public toJSON(): { [k: string]: any };
1002
+
1003
+ /**
1004
+ * Gets the default type url for Declaration
1005
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
1006
+ * @returns The default type url
1007
+ */
1008
+ public static getTypeUrl(typeUrlPrefix?: string): string;
1009
+ }
1010
+
1011
+ /** VerificationState enum. */
1012
+ enum VerificationState {
1013
+ DECLARATION = 0,
1014
+ UNVERIFIED = 1
1015
+ }
1016
+ }
1017
+
855
1018
  /** Properties of a FieldDescriptorProto. */
856
1019
  interface IFieldDescriptorProto {
857
1020
 
@@ -1036,8 +1199,8 @@ export namespace google {
1036
1199
  /** Label enum. */
1037
1200
  enum Label {
1038
1201
  LABEL_OPTIONAL = 1,
1039
- LABEL_REQUIRED = 2,
1040
- LABEL_REPEATED = 3
1202
+ LABEL_REPEATED = 3,
1203
+ LABEL_REQUIRED = 2
1041
1204
  }
1042
1205
  }
1043
1206
 
@@ -1749,9 +1912,6 @@ export namespace google {
1749
1912
  /** FileOptions pyGenericServices */
1750
1913
  pyGenericServices?: (boolean|null);
1751
1914
 
1752
- /** FileOptions phpGenericServices */
1753
- phpGenericServices?: (boolean|null);
1754
-
1755
1915
  /** FileOptions deprecated */
1756
1916
  deprecated?: (boolean|null);
1757
1917
 
@@ -1779,6 +1939,9 @@ export namespace google {
1779
1939
  /** FileOptions rubyPackage */
1780
1940
  rubyPackage?: (string|null);
1781
1941
 
1942
+ /** FileOptions features */
1943
+ features?: (google.protobuf.IFeatureSet|null);
1944
+
1782
1945
  /** FileOptions uninterpretedOption */
1783
1946
  uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
1784
1947
 
@@ -1825,9 +1988,6 @@ export namespace google {
1825
1988
  /** FileOptions pyGenericServices. */
1826
1989
  public pyGenericServices: boolean;
1827
1990
 
1828
- /** FileOptions phpGenericServices. */
1829
- public phpGenericServices: boolean;
1830
-
1831
1991
  /** FileOptions deprecated. */
1832
1992
  public deprecated: boolean;
1833
1993
 
@@ -1855,6 +2015,9 @@ export namespace google {
1855
2015
  /** FileOptions rubyPackage. */
1856
2016
  public rubyPackage: string;
1857
2017
 
2018
+ /** FileOptions features. */
2019
+ public features?: (google.protobuf.IFeatureSet|null);
2020
+
1858
2021
  /** FileOptions uninterpretedOption. */
1859
2022
  public uninterpretedOption: google.protobuf.IUninterpretedOption[];
1860
2023
 
@@ -1964,6 +2127,9 @@ export namespace google {
1964
2127
  /** MessageOptions deprecatedLegacyJsonFieldConflicts */
1965
2128
  deprecatedLegacyJsonFieldConflicts?: (boolean|null);
1966
2129
 
2130
+ /** MessageOptions features */
2131
+ features?: (google.protobuf.IFeatureSet|null);
2132
+
1967
2133
  /** MessageOptions uninterpretedOption */
1968
2134
  uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
1969
2135
 
@@ -1995,6 +2161,9 @@ export namespace google {
1995
2161
  /** MessageOptions deprecatedLegacyJsonFieldConflicts. */
1996
2162
  public deprecatedLegacyJsonFieldConflicts: boolean;
1997
2163
 
2164
+ /** MessageOptions features. */
2165
+ public features?: (google.protobuf.IFeatureSet|null);
2166
+
1998
2167
  /** MessageOptions uninterpretedOption. */
1999
2168
  public uninterpretedOption: google.protobuf.IUninterpretedOption[];
2000
2169
 
@@ -2106,8 +2275,14 @@ export namespace google {
2106
2275
  /** FieldOptions retention */
2107
2276
  retention?: (google.protobuf.FieldOptions.OptionRetention|keyof typeof google.protobuf.FieldOptions.OptionRetention|null);
2108
2277
 
2109
- /** FieldOptions target */
2110
- target?: (google.protobuf.FieldOptions.OptionTargetType|keyof typeof google.protobuf.FieldOptions.OptionTargetType|null);
2278
+ /** FieldOptions targets */
2279
+ targets?: (google.protobuf.FieldOptions.OptionTargetType[]|null);
2280
+
2281
+ /** FieldOptions editionDefaults */
2282
+ editionDefaults?: (google.protobuf.FieldOptions.IEditionDefault[]|null);
2283
+
2284
+ /** FieldOptions features */
2285
+ features?: (google.protobuf.IFeatureSet|null);
2111
2286
 
2112
2287
  /** FieldOptions uninterpretedOption */
2113
2288
  uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
@@ -2155,8 +2330,14 @@ export namespace google {
2155
2330
  /** FieldOptions retention. */
2156
2331
  public retention: (google.protobuf.FieldOptions.OptionRetention|keyof typeof google.protobuf.FieldOptions.OptionRetention);
2157
2332
 
2158
- /** FieldOptions target. */
2159
- public target: (google.protobuf.FieldOptions.OptionTargetType|keyof typeof google.protobuf.FieldOptions.OptionTargetType);
2333
+ /** FieldOptions targets. */
2334
+ public targets: google.protobuf.FieldOptions.OptionTargetType[];
2335
+
2336
+ /** FieldOptions editionDefaults. */
2337
+ public editionDefaults: google.protobuf.FieldOptions.IEditionDefault[];
2338
+
2339
+ /** FieldOptions features. */
2340
+ public features?: (google.protobuf.IFeatureSet|null);
2160
2341
 
2161
2342
  /** FieldOptions uninterpretedOption. */
2162
2343
  public uninterpretedOption: google.protobuf.IUninterpretedOption[];
@@ -2275,11 +2456,117 @@ export namespace google {
2275
2456
  TARGET_TYPE_SERVICE = 8,
2276
2457
  TARGET_TYPE_METHOD = 9
2277
2458
  }
2459
+
2460
+ /** Properties of an EditionDefault. */
2461
+ interface IEditionDefault {
2462
+
2463
+ /** EditionDefault edition */
2464
+ edition?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
2465
+
2466
+ /** EditionDefault value */
2467
+ value?: (string|null);
2468
+ }
2469
+
2470
+ /** Represents an EditionDefault. */
2471
+ class EditionDefault implements IEditionDefault {
2472
+
2473
+ /**
2474
+ * Constructs a new EditionDefault.
2475
+ * @param [properties] Properties to set
2476
+ */
2477
+ constructor(properties?: google.protobuf.FieldOptions.IEditionDefault);
2478
+
2479
+ /** EditionDefault edition. */
2480
+ public edition: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
2481
+
2482
+ /** EditionDefault value. */
2483
+ public value: string;
2484
+
2485
+ /**
2486
+ * Creates a new EditionDefault instance using the specified properties.
2487
+ * @param [properties] Properties to set
2488
+ * @returns EditionDefault instance
2489
+ */
2490
+ public static create(properties?: google.protobuf.FieldOptions.IEditionDefault): google.protobuf.FieldOptions.EditionDefault;
2491
+
2492
+ /**
2493
+ * Encodes the specified EditionDefault message. Does not implicitly {@link google.protobuf.FieldOptions.EditionDefault.verify|verify} messages.
2494
+ * @param message EditionDefault message or plain object to encode
2495
+ * @param [writer] Writer to encode to
2496
+ * @returns Writer
2497
+ */
2498
+ public static encode(message: google.protobuf.FieldOptions.IEditionDefault, writer?: $protobuf.Writer): $protobuf.Writer;
2499
+
2500
+ /**
2501
+ * Encodes the specified EditionDefault message, length delimited. Does not implicitly {@link google.protobuf.FieldOptions.EditionDefault.verify|verify} messages.
2502
+ * @param message EditionDefault message or plain object to encode
2503
+ * @param [writer] Writer to encode to
2504
+ * @returns Writer
2505
+ */
2506
+ public static encodeDelimited(message: google.protobuf.FieldOptions.IEditionDefault, writer?: $protobuf.Writer): $protobuf.Writer;
2507
+
2508
+ /**
2509
+ * Decodes an EditionDefault message from the specified reader or buffer.
2510
+ * @param reader Reader or buffer to decode from
2511
+ * @param [length] Message length if known beforehand
2512
+ * @returns EditionDefault
2513
+ * @throws {Error} If the payload is not a reader or valid buffer
2514
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
2515
+ */
2516
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FieldOptions.EditionDefault;
2517
+
2518
+ /**
2519
+ * Decodes an EditionDefault message from the specified reader or buffer, length delimited.
2520
+ * @param reader Reader or buffer to decode from
2521
+ * @returns EditionDefault
2522
+ * @throws {Error} If the payload is not a reader or valid buffer
2523
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
2524
+ */
2525
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FieldOptions.EditionDefault;
2526
+
2527
+ /**
2528
+ * Verifies an EditionDefault message.
2529
+ * @param message Plain object to verify
2530
+ * @returns `null` if valid, otherwise the reason why it is not
2531
+ */
2532
+ public static verify(message: { [k: string]: any }): (string|null);
2533
+
2534
+ /**
2535
+ * Creates an EditionDefault message from a plain object. Also converts values to their respective internal types.
2536
+ * @param object Plain object
2537
+ * @returns EditionDefault
2538
+ */
2539
+ public static fromObject(object: { [k: string]: any }): google.protobuf.FieldOptions.EditionDefault;
2540
+
2541
+ /**
2542
+ * Creates a plain object from an EditionDefault message. Also converts values to other types if specified.
2543
+ * @param message EditionDefault
2544
+ * @param [options] Conversion options
2545
+ * @returns Plain object
2546
+ */
2547
+ public static toObject(message: google.protobuf.FieldOptions.EditionDefault, options?: $protobuf.IConversionOptions): { [k: string]: any };
2548
+
2549
+ /**
2550
+ * Converts this EditionDefault to JSON.
2551
+ * @returns JSON object
2552
+ */
2553
+ public toJSON(): { [k: string]: any };
2554
+
2555
+ /**
2556
+ * Gets the default type url for EditionDefault
2557
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
2558
+ * @returns The default type url
2559
+ */
2560
+ public static getTypeUrl(typeUrlPrefix?: string): string;
2561
+ }
2278
2562
  }
2279
2563
 
2280
2564
  /** Properties of an OneofOptions. */
2281
2565
  interface IOneofOptions {
2282
2566
 
2567
+ /** OneofOptions features */
2568
+ features?: (google.protobuf.IFeatureSet|null);
2569
+
2283
2570
  /** OneofOptions uninterpretedOption */
2284
2571
  uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
2285
2572
  }
@@ -2293,6 +2580,9 @@ export namespace google {
2293
2580
  */
2294
2581
  constructor(properties?: google.protobuf.IOneofOptions);
2295
2582
 
2583
+ /** OneofOptions features. */
2584
+ public features?: (google.protobuf.IFeatureSet|null);
2585
+
2296
2586
  /** OneofOptions uninterpretedOption. */
2297
2587
  public uninterpretedOption: google.protobuf.IUninterpretedOption[];
2298
2588
 
@@ -2386,6 +2676,9 @@ export namespace google {
2386
2676
  /** EnumOptions deprecatedLegacyJsonFieldConflicts */
2387
2677
  deprecatedLegacyJsonFieldConflicts?: (boolean|null);
2388
2678
 
2679
+ /** EnumOptions features */
2680
+ features?: (google.protobuf.IFeatureSet|null);
2681
+
2389
2682
  /** EnumOptions uninterpretedOption */
2390
2683
  uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
2391
2684
  }
@@ -2408,6 +2701,9 @@ export namespace google {
2408
2701
  /** EnumOptions deprecatedLegacyJsonFieldConflicts. */
2409
2702
  public deprecatedLegacyJsonFieldConflicts: boolean;
2410
2703
 
2704
+ /** EnumOptions features. */
2705
+ public features?: (google.protobuf.IFeatureSet|null);
2706
+
2411
2707
  /** EnumOptions uninterpretedOption. */
2412
2708
  public uninterpretedOption: google.protobuf.IUninterpretedOption[];
2413
2709
 
@@ -2495,6 +2791,12 @@ export namespace google {
2495
2791
  /** EnumValueOptions deprecated */
2496
2792
  deprecated?: (boolean|null);
2497
2793
 
2794
+ /** EnumValueOptions features */
2795
+ features?: (google.protobuf.IFeatureSet|null);
2796
+
2797
+ /** EnumValueOptions debugRedact */
2798
+ debugRedact?: (boolean|null);
2799
+
2498
2800
  /** EnumValueOptions uninterpretedOption */
2499
2801
  uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
2500
2802
  }
@@ -2511,6 +2813,12 @@ export namespace google {
2511
2813
  /** EnumValueOptions deprecated. */
2512
2814
  public deprecated: boolean;
2513
2815
 
2816
+ /** EnumValueOptions features. */
2817
+ public features?: (google.protobuf.IFeatureSet|null);
2818
+
2819
+ /** EnumValueOptions debugRedact. */
2820
+ public debugRedact: boolean;
2821
+
2514
2822
  /** EnumValueOptions uninterpretedOption. */
2515
2823
  public uninterpretedOption: google.protobuf.IUninterpretedOption[];
2516
2824
 
@@ -2595,6 +2903,9 @@ export namespace google {
2595
2903
  /** Properties of a ServiceOptions. */
2596
2904
  interface IServiceOptions {
2597
2905
 
2906
+ /** ServiceOptions features */
2907
+ features?: (google.protobuf.IFeatureSet|null);
2908
+
2598
2909
  /** ServiceOptions deprecated */
2599
2910
  deprecated?: (boolean|null);
2600
2911
 
@@ -2617,6 +2928,9 @@ export namespace google {
2617
2928
  */
2618
2929
  constructor(properties?: google.protobuf.IServiceOptions);
2619
2930
 
2931
+ /** ServiceOptions features. */
2932
+ public features?: (google.protobuf.IFeatureSet|null);
2933
+
2620
2934
  /** ServiceOptions deprecated. */
2621
2935
  public deprecated: boolean;
2622
2936
 
@@ -2710,6 +3024,9 @@ export namespace google {
2710
3024
  /** MethodOptions idempotencyLevel */
2711
3025
  idempotencyLevel?: (google.protobuf.MethodOptions.IdempotencyLevel|keyof typeof google.protobuf.MethodOptions.IdempotencyLevel|null);
2712
3026
 
3027
+ /** MethodOptions features */
3028
+ features?: (google.protobuf.IFeatureSet|null);
3029
+
2713
3030
  /** MethodOptions uninterpretedOption */
2714
3031
  uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
2715
3032
 
@@ -2738,6 +3055,9 @@ export namespace google {
2738
3055
  /** MethodOptions idempotencyLevel. */
2739
3056
  public idempotencyLevel: (google.protobuf.MethodOptions.IdempotencyLevel|keyof typeof google.protobuf.MethodOptions.IdempotencyLevel);
2740
3057
 
3058
+ /** MethodOptions features. */
3059
+ public features?: (google.protobuf.IFeatureSet|null);
3060
+
2741
3061
  /** MethodOptions uninterpretedOption. */
2742
3062
  public uninterpretedOption: google.protobuf.IUninterpretedOption[];
2743
3063
 
@@ -3068,6 +3388,394 @@ export namespace google {
3068
3388
  }
3069
3389
  }
3070
3390
 
3391
+ /** Properties of a FeatureSet. */
3392
+ interface IFeatureSet {
3393
+
3394
+ /** FeatureSet fieldPresence */
3395
+ fieldPresence?: (google.protobuf.FeatureSet.FieldPresence|keyof typeof google.protobuf.FeatureSet.FieldPresence|null);
3396
+
3397
+ /** FeatureSet enumType */
3398
+ enumType?: (google.protobuf.FeatureSet.EnumType|keyof typeof google.protobuf.FeatureSet.EnumType|null);
3399
+
3400
+ /** FeatureSet repeatedFieldEncoding */
3401
+ repeatedFieldEncoding?: (google.protobuf.FeatureSet.RepeatedFieldEncoding|keyof typeof google.protobuf.FeatureSet.RepeatedFieldEncoding|null);
3402
+
3403
+ /** FeatureSet utf8Validation */
3404
+ utf8Validation?: (google.protobuf.FeatureSet.Utf8Validation|keyof typeof google.protobuf.FeatureSet.Utf8Validation|null);
3405
+
3406
+ /** FeatureSet messageEncoding */
3407
+ messageEncoding?: (google.protobuf.FeatureSet.MessageEncoding|keyof typeof google.protobuf.FeatureSet.MessageEncoding|null);
3408
+
3409
+ /** FeatureSet jsonFormat */
3410
+ jsonFormat?: (google.protobuf.FeatureSet.JsonFormat|keyof typeof google.protobuf.FeatureSet.JsonFormat|null);
3411
+ }
3412
+
3413
+ /** Represents a FeatureSet. */
3414
+ class FeatureSet implements IFeatureSet {
3415
+
3416
+ /**
3417
+ * Constructs a new FeatureSet.
3418
+ * @param [properties] Properties to set
3419
+ */
3420
+ constructor(properties?: google.protobuf.IFeatureSet);
3421
+
3422
+ /** FeatureSet fieldPresence. */
3423
+ public fieldPresence: (google.protobuf.FeatureSet.FieldPresence|keyof typeof google.protobuf.FeatureSet.FieldPresence);
3424
+
3425
+ /** FeatureSet enumType. */
3426
+ public enumType: (google.protobuf.FeatureSet.EnumType|keyof typeof google.protobuf.FeatureSet.EnumType);
3427
+
3428
+ /** FeatureSet repeatedFieldEncoding. */
3429
+ public repeatedFieldEncoding: (google.protobuf.FeatureSet.RepeatedFieldEncoding|keyof typeof google.protobuf.FeatureSet.RepeatedFieldEncoding);
3430
+
3431
+ /** FeatureSet utf8Validation. */
3432
+ public utf8Validation: (google.protobuf.FeatureSet.Utf8Validation|keyof typeof google.protobuf.FeatureSet.Utf8Validation);
3433
+
3434
+ /** FeatureSet messageEncoding. */
3435
+ public messageEncoding: (google.protobuf.FeatureSet.MessageEncoding|keyof typeof google.protobuf.FeatureSet.MessageEncoding);
3436
+
3437
+ /** FeatureSet jsonFormat. */
3438
+ public jsonFormat: (google.protobuf.FeatureSet.JsonFormat|keyof typeof google.protobuf.FeatureSet.JsonFormat);
3439
+
3440
+ /**
3441
+ * Creates a new FeatureSet instance using the specified properties.
3442
+ * @param [properties] Properties to set
3443
+ * @returns FeatureSet instance
3444
+ */
3445
+ public static create(properties?: google.protobuf.IFeatureSet): google.protobuf.FeatureSet;
3446
+
3447
+ /**
3448
+ * Encodes the specified FeatureSet message. Does not implicitly {@link google.protobuf.FeatureSet.verify|verify} messages.
3449
+ * @param message FeatureSet message or plain object to encode
3450
+ * @param [writer] Writer to encode to
3451
+ * @returns Writer
3452
+ */
3453
+ public static encode(message: google.protobuf.IFeatureSet, writer?: $protobuf.Writer): $protobuf.Writer;
3454
+
3455
+ /**
3456
+ * Encodes the specified FeatureSet message, length delimited. Does not implicitly {@link google.protobuf.FeatureSet.verify|verify} messages.
3457
+ * @param message FeatureSet message or plain object to encode
3458
+ * @param [writer] Writer to encode to
3459
+ * @returns Writer
3460
+ */
3461
+ public static encodeDelimited(message: google.protobuf.IFeatureSet, writer?: $protobuf.Writer): $protobuf.Writer;
3462
+
3463
+ /**
3464
+ * Decodes a FeatureSet message from the specified reader or buffer.
3465
+ * @param reader Reader or buffer to decode from
3466
+ * @param [length] Message length if known beforehand
3467
+ * @returns FeatureSet
3468
+ * @throws {Error} If the payload is not a reader or valid buffer
3469
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
3470
+ */
3471
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FeatureSet;
3472
+
3473
+ /**
3474
+ * Decodes a FeatureSet message from the specified reader or buffer, length delimited.
3475
+ * @param reader Reader or buffer to decode from
3476
+ * @returns FeatureSet
3477
+ * @throws {Error} If the payload is not a reader or valid buffer
3478
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
3479
+ */
3480
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FeatureSet;
3481
+
3482
+ /**
3483
+ * Verifies a FeatureSet message.
3484
+ * @param message Plain object to verify
3485
+ * @returns `null` if valid, otherwise the reason why it is not
3486
+ */
3487
+ public static verify(message: { [k: string]: any }): (string|null);
3488
+
3489
+ /**
3490
+ * Creates a FeatureSet message from a plain object. Also converts values to their respective internal types.
3491
+ * @param object Plain object
3492
+ * @returns FeatureSet
3493
+ */
3494
+ public static fromObject(object: { [k: string]: any }): google.protobuf.FeatureSet;
3495
+
3496
+ /**
3497
+ * Creates a plain object from a FeatureSet message. Also converts values to other types if specified.
3498
+ * @param message FeatureSet
3499
+ * @param [options] Conversion options
3500
+ * @returns Plain object
3501
+ */
3502
+ public static toObject(message: google.protobuf.FeatureSet, options?: $protobuf.IConversionOptions): { [k: string]: any };
3503
+
3504
+ /**
3505
+ * Converts this FeatureSet to JSON.
3506
+ * @returns JSON object
3507
+ */
3508
+ public toJSON(): { [k: string]: any };
3509
+
3510
+ /**
3511
+ * Gets the default type url for FeatureSet
3512
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
3513
+ * @returns The default type url
3514
+ */
3515
+ public static getTypeUrl(typeUrlPrefix?: string): string;
3516
+ }
3517
+
3518
+ namespace FeatureSet {
3519
+
3520
+ /** FieldPresence enum. */
3521
+ enum FieldPresence {
3522
+ FIELD_PRESENCE_UNKNOWN = 0,
3523
+ EXPLICIT = 1,
3524
+ IMPLICIT = 2,
3525
+ LEGACY_REQUIRED = 3
3526
+ }
3527
+
3528
+ /** EnumType enum. */
3529
+ enum EnumType {
3530
+ ENUM_TYPE_UNKNOWN = 0,
3531
+ OPEN = 1,
3532
+ CLOSED = 2
3533
+ }
3534
+
3535
+ /** RepeatedFieldEncoding enum. */
3536
+ enum RepeatedFieldEncoding {
3537
+ REPEATED_FIELD_ENCODING_UNKNOWN = 0,
3538
+ PACKED = 1,
3539
+ EXPANDED = 2
3540
+ }
3541
+
3542
+ /** Utf8Validation enum. */
3543
+ enum Utf8Validation {
3544
+ UTF8_VALIDATION_UNKNOWN = 0,
3545
+ VERIFY = 2,
3546
+ NONE = 3
3547
+ }
3548
+
3549
+ /** MessageEncoding enum. */
3550
+ enum MessageEncoding {
3551
+ MESSAGE_ENCODING_UNKNOWN = 0,
3552
+ LENGTH_PREFIXED = 1,
3553
+ DELIMITED = 2
3554
+ }
3555
+
3556
+ /** JsonFormat enum. */
3557
+ enum JsonFormat {
3558
+ JSON_FORMAT_UNKNOWN = 0,
3559
+ ALLOW = 1,
3560
+ LEGACY_BEST_EFFORT = 2
3561
+ }
3562
+ }
3563
+
3564
+ /** Properties of a FeatureSetDefaults. */
3565
+ interface IFeatureSetDefaults {
3566
+
3567
+ /** FeatureSetDefaults defaults */
3568
+ defaults?: (google.protobuf.FeatureSetDefaults.IFeatureSetEditionDefault[]|null);
3569
+
3570
+ /** FeatureSetDefaults minimumEdition */
3571
+ minimumEdition?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
3572
+
3573
+ /** FeatureSetDefaults maximumEdition */
3574
+ maximumEdition?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
3575
+ }
3576
+
3577
+ /** Represents a FeatureSetDefaults. */
3578
+ class FeatureSetDefaults implements IFeatureSetDefaults {
3579
+
3580
+ /**
3581
+ * Constructs a new FeatureSetDefaults.
3582
+ * @param [properties] Properties to set
3583
+ */
3584
+ constructor(properties?: google.protobuf.IFeatureSetDefaults);
3585
+
3586
+ /** FeatureSetDefaults defaults. */
3587
+ public defaults: google.protobuf.FeatureSetDefaults.IFeatureSetEditionDefault[];
3588
+
3589
+ /** FeatureSetDefaults minimumEdition. */
3590
+ public minimumEdition: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
3591
+
3592
+ /** FeatureSetDefaults maximumEdition. */
3593
+ public maximumEdition: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
3594
+
3595
+ /**
3596
+ * Creates a new FeatureSetDefaults instance using the specified properties.
3597
+ * @param [properties] Properties to set
3598
+ * @returns FeatureSetDefaults instance
3599
+ */
3600
+ public static create(properties?: google.protobuf.IFeatureSetDefaults): google.protobuf.FeatureSetDefaults;
3601
+
3602
+ /**
3603
+ * Encodes the specified FeatureSetDefaults message. Does not implicitly {@link google.protobuf.FeatureSetDefaults.verify|verify} messages.
3604
+ * @param message FeatureSetDefaults message or plain object to encode
3605
+ * @param [writer] Writer to encode to
3606
+ * @returns Writer
3607
+ */
3608
+ public static encode(message: google.protobuf.IFeatureSetDefaults, writer?: $protobuf.Writer): $protobuf.Writer;
3609
+
3610
+ /**
3611
+ * Encodes the specified FeatureSetDefaults message, length delimited. Does not implicitly {@link google.protobuf.FeatureSetDefaults.verify|verify} messages.
3612
+ * @param message FeatureSetDefaults message or plain object to encode
3613
+ * @param [writer] Writer to encode to
3614
+ * @returns Writer
3615
+ */
3616
+ public static encodeDelimited(message: google.protobuf.IFeatureSetDefaults, writer?: $protobuf.Writer): $protobuf.Writer;
3617
+
3618
+ /**
3619
+ * Decodes a FeatureSetDefaults message from the specified reader or buffer.
3620
+ * @param reader Reader or buffer to decode from
3621
+ * @param [length] Message length if known beforehand
3622
+ * @returns FeatureSetDefaults
3623
+ * @throws {Error} If the payload is not a reader or valid buffer
3624
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
3625
+ */
3626
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FeatureSetDefaults;
3627
+
3628
+ /**
3629
+ * Decodes a FeatureSetDefaults message from the specified reader or buffer, length delimited.
3630
+ * @param reader Reader or buffer to decode from
3631
+ * @returns FeatureSetDefaults
3632
+ * @throws {Error} If the payload is not a reader or valid buffer
3633
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
3634
+ */
3635
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FeatureSetDefaults;
3636
+
3637
+ /**
3638
+ * Verifies a FeatureSetDefaults message.
3639
+ * @param message Plain object to verify
3640
+ * @returns `null` if valid, otherwise the reason why it is not
3641
+ */
3642
+ public static verify(message: { [k: string]: any }): (string|null);
3643
+
3644
+ /**
3645
+ * Creates a FeatureSetDefaults message from a plain object. Also converts values to their respective internal types.
3646
+ * @param object Plain object
3647
+ * @returns FeatureSetDefaults
3648
+ */
3649
+ public static fromObject(object: { [k: string]: any }): google.protobuf.FeatureSetDefaults;
3650
+
3651
+ /**
3652
+ * Creates a plain object from a FeatureSetDefaults message. Also converts values to other types if specified.
3653
+ * @param message FeatureSetDefaults
3654
+ * @param [options] Conversion options
3655
+ * @returns Plain object
3656
+ */
3657
+ public static toObject(message: google.protobuf.FeatureSetDefaults, options?: $protobuf.IConversionOptions): { [k: string]: any };
3658
+
3659
+ /**
3660
+ * Converts this FeatureSetDefaults to JSON.
3661
+ * @returns JSON object
3662
+ */
3663
+ public toJSON(): { [k: string]: any };
3664
+
3665
+ /**
3666
+ * Gets the default type url for FeatureSetDefaults
3667
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
3668
+ * @returns The default type url
3669
+ */
3670
+ public static getTypeUrl(typeUrlPrefix?: string): string;
3671
+ }
3672
+
3673
+ namespace FeatureSetDefaults {
3674
+
3675
+ /** Properties of a FeatureSetEditionDefault. */
3676
+ interface IFeatureSetEditionDefault {
3677
+
3678
+ /** FeatureSetEditionDefault edition */
3679
+ edition?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
3680
+
3681
+ /** FeatureSetEditionDefault features */
3682
+ features?: (google.protobuf.IFeatureSet|null);
3683
+ }
3684
+
3685
+ /** Represents a FeatureSetEditionDefault. */
3686
+ class FeatureSetEditionDefault implements IFeatureSetEditionDefault {
3687
+
3688
+ /**
3689
+ * Constructs a new FeatureSetEditionDefault.
3690
+ * @param [properties] Properties to set
3691
+ */
3692
+ constructor(properties?: google.protobuf.FeatureSetDefaults.IFeatureSetEditionDefault);
3693
+
3694
+ /** FeatureSetEditionDefault edition. */
3695
+ public edition: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
3696
+
3697
+ /** FeatureSetEditionDefault features. */
3698
+ public features?: (google.protobuf.IFeatureSet|null);
3699
+
3700
+ /**
3701
+ * Creates a new FeatureSetEditionDefault instance using the specified properties.
3702
+ * @param [properties] Properties to set
3703
+ * @returns FeatureSetEditionDefault instance
3704
+ */
3705
+ public static create(properties?: google.protobuf.FeatureSetDefaults.IFeatureSetEditionDefault): google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault;
3706
+
3707
+ /**
3708
+ * Encodes the specified FeatureSetEditionDefault message. Does not implicitly {@link google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault.verify|verify} messages.
3709
+ * @param message FeatureSetEditionDefault message or plain object to encode
3710
+ * @param [writer] Writer to encode to
3711
+ * @returns Writer
3712
+ */
3713
+ public static encode(message: google.protobuf.FeatureSetDefaults.IFeatureSetEditionDefault, writer?: $protobuf.Writer): $protobuf.Writer;
3714
+
3715
+ /**
3716
+ * Encodes the specified FeatureSetEditionDefault message, length delimited. Does not implicitly {@link google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault.verify|verify} messages.
3717
+ * @param message FeatureSetEditionDefault message or plain object to encode
3718
+ * @param [writer] Writer to encode to
3719
+ * @returns Writer
3720
+ */
3721
+ public static encodeDelimited(message: google.protobuf.FeatureSetDefaults.IFeatureSetEditionDefault, writer?: $protobuf.Writer): $protobuf.Writer;
3722
+
3723
+ /**
3724
+ * Decodes a FeatureSetEditionDefault message from the specified reader or buffer.
3725
+ * @param reader Reader or buffer to decode from
3726
+ * @param [length] Message length if known beforehand
3727
+ * @returns FeatureSetEditionDefault
3728
+ * @throws {Error} If the payload is not a reader or valid buffer
3729
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
3730
+ */
3731
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault;
3732
+
3733
+ /**
3734
+ * Decodes a FeatureSetEditionDefault message from the specified reader or buffer, length delimited.
3735
+ * @param reader Reader or buffer to decode from
3736
+ * @returns FeatureSetEditionDefault
3737
+ * @throws {Error} If the payload is not a reader or valid buffer
3738
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
3739
+ */
3740
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault;
3741
+
3742
+ /**
3743
+ * Verifies a FeatureSetEditionDefault message.
3744
+ * @param message Plain object to verify
3745
+ * @returns `null` if valid, otherwise the reason why it is not
3746
+ */
3747
+ public static verify(message: { [k: string]: any }): (string|null);
3748
+
3749
+ /**
3750
+ * Creates a FeatureSetEditionDefault message from a plain object. Also converts values to their respective internal types.
3751
+ * @param object Plain object
3752
+ * @returns FeatureSetEditionDefault
3753
+ */
3754
+ public static fromObject(object: { [k: string]: any }): google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault;
3755
+
3756
+ /**
3757
+ * Creates a plain object from a FeatureSetEditionDefault message. Also converts values to other types if specified.
3758
+ * @param message FeatureSetEditionDefault
3759
+ * @param [options] Conversion options
3760
+ * @returns Plain object
3761
+ */
3762
+ public static toObject(message: google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault, options?: $protobuf.IConversionOptions): { [k: string]: any };
3763
+
3764
+ /**
3765
+ * Converts this FeatureSetEditionDefault to JSON.
3766
+ * @returns JSON object
3767
+ */
3768
+ public toJSON(): { [k: string]: any };
3769
+
3770
+ /**
3771
+ * Gets the default type url for FeatureSetEditionDefault
3772
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
3773
+ * @returns The default type url
3774
+ */
3775
+ public static getTypeUrl(typeUrlPrefix?: string): string;
3776
+ }
3777
+ }
3778
+
3071
3779
  /** Properties of a SourceCodeInfo. */
3072
3780
  interface ISourceCodeInfo {
3073
3781
 
@@ -4163,6 +4871,9 @@ export namespace google {
4163
4871
 
4164
4872
  /** RecurringAudienceList audienceLists */
4165
4873
  audienceLists?: (string[]|null);
4874
+
4875
+ /** RecurringAudienceList webhookNotification */
4876
+ webhookNotification?: (google.analytics.data.v1alpha.IWebhookNotification|null);
4166
4877
  }
4167
4878
 
4168
4879
  /** Represents a RecurringAudienceList. */
@@ -4192,9 +4903,15 @@ export namespace google {
4192
4903
  /** RecurringAudienceList audienceLists. */
4193
4904
  public audienceLists: string[];
4194
4905
 
4906
+ /** RecurringAudienceList webhookNotification. */
4907
+ public webhookNotification?: (google.analytics.data.v1alpha.IWebhookNotification|null);
4908
+
4195
4909
  /** RecurringAudienceList _activeDaysRemaining. */
4196
4910
  public _activeDaysRemaining?: "activeDaysRemaining";
4197
4911
 
4912
+ /** RecurringAudienceList _webhookNotification. */
4913
+ public _webhookNotification?: "webhookNotification";
4914
+
4198
4915
  /**
4199
4916
  * Creates a new RecurringAudienceList instance using the specified properties.
4200
4917
  * @param [properties] Properties to set
@@ -4273,6 +4990,115 @@ export namespace google {
4273
4990
  public static getTypeUrl(typeUrlPrefix?: string): string;
4274
4991
  }
4275
4992
 
4993
+ /** Properties of a WebhookNotification. */
4994
+ interface IWebhookNotification {
4995
+
4996
+ /** WebhookNotification uri */
4997
+ uri?: (string|null);
4998
+
4999
+ /** WebhookNotification channelToken */
5000
+ channelToken?: (string|null);
5001
+ }
5002
+
5003
+ /** Represents a WebhookNotification. */
5004
+ class WebhookNotification implements IWebhookNotification {
5005
+
5006
+ /**
5007
+ * Constructs a new WebhookNotification.
5008
+ * @param [properties] Properties to set
5009
+ */
5010
+ constructor(properties?: google.analytics.data.v1alpha.IWebhookNotification);
5011
+
5012
+ /** WebhookNotification uri. */
5013
+ public uri?: (string|null);
5014
+
5015
+ /** WebhookNotification channelToken. */
5016
+ public channelToken?: (string|null);
5017
+
5018
+ /** WebhookNotification _uri. */
5019
+ public _uri?: "uri";
5020
+
5021
+ /** WebhookNotification _channelToken. */
5022
+ public _channelToken?: "channelToken";
5023
+
5024
+ /**
5025
+ * Creates a new WebhookNotification instance using the specified properties.
5026
+ * @param [properties] Properties to set
5027
+ * @returns WebhookNotification instance
5028
+ */
5029
+ public static create(properties?: google.analytics.data.v1alpha.IWebhookNotification): google.analytics.data.v1alpha.WebhookNotification;
5030
+
5031
+ /**
5032
+ * Encodes the specified WebhookNotification message. Does not implicitly {@link google.analytics.data.v1alpha.WebhookNotification.verify|verify} messages.
5033
+ * @param message WebhookNotification message or plain object to encode
5034
+ * @param [writer] Writer to encode to
5035
+ * @returns Writer
5036
+ */
5037
+ public static encode(message: google.analytics.data.v1alpha.IWebhookNotification, writer?: $protobuf.Writer): $protobuf.Writer;
5038
+
5039
+ /**
5040
+ * Encodes the specified WebhookNotification message, length delimited. Does not implicitly {@link google.analytics.data.v1alpha.WebhookNotification.verify|verify} messages.
5041
+ * @param message WebhookNotification message or plain object to encode
5042
+ * @param [writer] Writer to encode to
5043
+ * @returns Writer
5044
+ */
5045
+ public static encodeDelimited(message: google.analytics.data.v1alpha.IWebhookNotification, writer?: $protobuf.Writer): $protobuf.Writer;
5046
+
5047
+ /**
5048
+ * Decodes a WebhookNotification message from the specified reader or buffer.
5049
+ * @param reader Reader or buffer to decode from
5050
+ * @param [length] Message length if known beforehand
5051
+ * @returns WebhookNotification
5052
+ * @throws {Error} If the payload is not a reader or valid buffer
5053
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
5054
+ */
5055
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.WebhookNotification;
5056
+
5057
+ /**
5058
+ * Decodes a WebhookNotification message from the specified reader or buffer, length delimited.
5059
+ * @param reader Reader or buffer to decode from
5060
+ * @returns WebhookNotification
5061
+ * @throws {Error} If the payload is not a reader or valid buffer
5062
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
5063
+ */
5064
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.WebhookNotification;
5065
+
5066
+ /**
5067
+ * Verifies a WebhookNotification message.
5068
+ * @param message Plain object to verify
5069
+ * @returns `null` if valid, otherwise the reason why it is not
5070
+ */
5071
+ public static verify(message: { [k: string]: any }): (string|null);
5072
+
5073
+ /**
5074
+ * Creates a WebhookNotification message from a plain object. Also converts values to their respective internal types.
5075
+ * @param object Plain object
5076
+ * @returns WebhookNotification
5077
+ */
5078
+ public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.WebhookNotification;
5079
+
5080
+ /**
5081
+ * Creates a plain object from a WebhookNotification message. Also converts values to other types if specified.
5082
+ * @param message WebhookNotification
5083
+ * @param [options] Conversion options
5084
+ * @returns Plain object
5085
+ */
5086
+ public static toObject(message: google.analytics.data.v1alpha.WebhookNotification, options?: $protobuf.IConversionOptions): { [k: string]: any };
5087
+
5088
+ /**
5089
+ * Converts this WebhookNotification to JSON.
5090
+ * @returns JSON object
5091
+ */
5092
+ public toJSON(): { [k: string]: any };
5093
+
5094
+ /**
5095
+ * Gets the default type url for WebhookNotification
5096
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
5097
+ * @returns The default type url
5098
+ */
5099
+ public static getTypeUrl(typeUrlPrefix?: string): string;
5100
+ }
5101
+
4276
5102
  /** Properties of a GetRecurringAudienceListRequest. */
4277
5103
  interface IGetRecurringAudienceListRequest {
4278
5104
 
@@ -5035,6 +5861,9 @@ export namespace google {
5035
5861
 
5036
5862
  /** AudienceList recurringAudienceList */
5037
5863
  recurringAudienceList?: (string|null);
5864
+
5865
+ /** AudienceList webhookNotification */
5866
+ webhookNotification?: (google.analytics.data.v1alpha.IWebhookNotification|null);
5038
5867
  }
5039
5868
 
5040
5869
  /** Represents an AudienceList. */
@@ -5079,6 +5908,9 @@ export namespace google {
5079
5908
  /** AudienceList recurringAudienceList. */
5080
5909
  public recurringAudienceList?: (string|null);
5081
5910
 
5911
+ /** AudienceList webhookNotification. */
5912
+ public webhookNotification?: (google.analytics.data.v1alpha.IWebhookNotification|null);
5913
+
5082
5914
  /** AudienceList _state. */
5083
5915
  public _state?: "state";
5084
5916
 
@@ -5097,6 +5929,9 @@ export namespace google {
5097
5929
  /** AudienceList _recurringAudienceList. */
5098
5930
  public _recurringAudienceList?: "recurringAudienceList";
5099
5931
 
5932
+ /** AudienceList _webhookNotification. */
5933
+ public _webhookNotification?: "webhookNotification";
5934
+
5100
5935
  /**
5101
5936
  * Creates a new AudienceList instance using the specified properties.
5102
5937
  * @param [properties] Properties to set
@@ -21200,6 +22035,9 @@ export namespace google {
21200
22035
 
21201
22036
  /** Publishing librarySettings */
21202
22037
  librarySettings?: (google.api.IClientLibrarySettings[]|null);
22038
+
22039
+ /** Publishing protoReferenceDocumentationUri */
22040
+ protoReferenceDocumentationUri?: (string|null);
21203
22041
  }
21204
22042
 
21205
22043
  /** Represents a Publishing. */
@@ -21238,6 +22076,9 @@ export namespace google {
21238
22076
  /** Publishing librarySettings. */
21239
22077
  public librarySettings: google.api.IClientLibrarySettings[];
21240
22078
 
22079
+ /** Publishing protoReferenceDocumentationUri. */
22080
+ public protoReferenceDocumentationUri: string;
22081
+
21241
22082
  /**
21242
22083
  * Creates a new Publishing instance using the specified properties.
21243
22084
  * @param [properties] Properties to set
@@ -21818,6 +22659,21 @@ export namespace google {
21818
22659
 
21819
22660
  /** DotnetSettings common */
21820
22661
  common?: (google.api.ICommonLanguageSettings|null);
22662
+
22663
+ /** DotnetSettings renamedServices */
22664
+ renamedServices?: ({ [k: string]: string }|null);
22665
+
22666
+ /** DotnetSettings renamedResources */
22667
+ renamedResources?: ({ [k: string]: string }|null);
22668
+
22669
+ /** DotnetSettings ignoredResources */
22670
+ ignoredResources?: (string[]|null);
22671
+
22672
+ /** DotnetSettings forcedNamespaceAliases */
22673
+ forcedNamespaceAliases?: (string[]|null);
22674
+
22675
+ /** DotnetSettings handwrittenSignatures */
22676
+ handwrittenSignatures?: (string[]|null);
21821
22677
  }
21822
22678
 
21823
22679
  /** Represents a DotnetSettings. */
@@ -21832,6 +22688,21 @@ export namespace google {
21832
22688
  /** DotnetSettings common. */
21833
22689
  public common?: (google.api.ICommonLanguageSettings|null);
21834
22690
 
22691
+ /** DotnetSettings renamedServices. */
22692
+ public renamedServices: { [k: string]: string };
22693
+
22694
+ /** DotnetSettings renamedResources. */
22695
+ public renamedResources: { [k: string]: string };
22696
+
22697
+ /** DotnetSettings ignoredResources. */
22698
+ public ignoredResources: string[];
22699
+
22700
+ /** DotnetSettings forcedNamespaceAliases. */
22701
+ public forcedNamespaceAliases: string[];
22702
+
22703
+ /** DotnetSettings handwrittenSignatures. */
22704
+ public handwrittenSignatures: string[];
22705
+
21835
22706
  /**
21836
22707
  * Creates a new DotnetSettings instance using the specified properties.
21837
22708
  * @param [properties] Properties to set
@@ -22112,6 +22983,9 @@ export namespace google {
22112
22983
 
22113
22984
  /** MethodSettings longRunning */
22114
22985
  longRunning?: (google.api.MethodSettings.ILongRunning|null);
22986
+
22987
+ /** MethodSettings autoPopulatedFields */
22988
+ autoPopulatedFields?: (string[]|null);
22115
22989
  }
22116
22990
 
22117
22991
  /** Represents a MethodSettings. */
@@ -22129,6 +23003,9 @@ export namespace google {
22129
23003
  /** MethodSettings longRunning. */
22130
23004
  public longRunning?: (google.api.MethodSettings.ILongRunning|null);
22131
23005
 
23006
+ /** MethodSettings autoPopulatedFields. */
23007
+ public autoPopulatedFields: string[];
23008
+
22132
23009
  /**
22133
23010
  * Creates a new MethodSettings instance using the specified properties.
22134
23011
  * @param [properties] Properties to set
@@ -22331,7 +23208,10 @@ export namespace google {
22331
23208
  CLOUD = 1,
22332
23209
  ADS = 2,
22333
23210
  PHOTOS = 3,
22334
- STREET_VIEW = 4
23211
+ STREET_VIEW = 4,
23212
+ SHOPPING = 5,
23213
+ GEO = 6,
23214
+ GENERATIVE_AI = 7
22335
23215
  }
22336
23216
 
22337
23217
  /** ClientLibraryDestination enum. */
@@ -22362,7 +23242,8 @@ export namespace google {
22362
23242
  INPUT_ONLY = 4,
22363
23243
  IMMUTABLE = 5,
22364
23244
  UNORDERED_LIST = 6,
22365
- NON_EMPTY_DEFAULT = 7
23245
+ NON_EMPTY_DEFAULT = 7,
23246
+ IDENTIFIER = 8
22366
23247
  }
22367
23248
 
22368
23249
  /** Properties of a ResourceDescriptor. */