@google-analytics/data 4.0.1 → 4.1.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.
- package/CHANGELOG.md +7 -0
- package/README.md +1 -0
- package/build/protos/google/analytics/data/v1alpha/analytics_data_api.proto +239 -80
- package/build/protos/google/analytics/data/v1alpha/data.proto +14 -5
- package/build/protos/protos.d.ts +816 -5
- package/build/protos/protos.js +2803 -203
- package/build/protos/protos.json +491 -24
- package/build/src/v1alpha/alpha_analytics_data_client.d.ts +198 -92
- package/build/src/v1alpha/alpha_analytics_data_client.js +65 -41
- package/build/src/v1alpha/alpha_analytics_data_client_config.json +5 -0
- package/package.json +5 -5
package/build/protos/protos.d.ts
CHANGED
|
@@ -760,6 +760,15 @@ export namespace google {
|
|
|
760
760
|
|
|
761
761
|
/** ExtensionRangeOptions uninterpretedOption */
|
|
762
762
|
uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
|
|
763
|
+
|
|
764
|
+
/** ExtensionRangeOptions declaration */
|
|
765
|
+
declaration?: (google.protobuf.ExtensionRangeOptions.IDeclaration[]|null);
|
|
766
|
+
|
|
767
|
+
/** ExtensionRangeOptions features */
|
|
768
|
+
features?: (google.protobuf.IFeatureSet|null);
|
|
769
|
+
|
|
770
|
+
/** ExtensionRangeOptions verification */
|
|
771
|
+
verification?: (google.protobuf.ExtensionRangeOptions.VerificationState|keyof typeof google.protobuf.ExtensionRangeOptions.VerificationState|null);
|
|
763
772
|
}
|
|
764
773
|
|
|
765
774
|
/** Represents an ExtensionRangeOptions. */
|
|
@@ -774,6 +783,15 @@ export namespace google {
|
|
|
774
783
|
/** ExtensionRangeOptions uninterpretedOption. */
|
|
775
784
|
public uninterpretedOption: google.protobuf.IUninterpretedOption[];
|
|
776
785
|
|
|
786
|
+
/** ExtensionRangeOptions declaration. */
|
|
787
|
+
public declaration: google.protobuf.ExtensionRangeOptions.IDeclaration[];
|
|
788
|
+
|
|
789
|
+
/** ExtensionRangeOptions features. */
|
|
790
|
+
public features?: (google.protobuf.IFeatureSet|null);
|
|
791
|
+
|
|
792
|
+
/** ExtensionRangeOptions verification. */
|
|
793
|
+
public verification: (google.protobuf.ExtensionRangeOptions.VerificationState|keyof typeof google.protobuf.ExtensionRangeOptions.VerificationState);
|
|
794
|
+
|
|
777
795
|
/**
|
|
778
796
|
* Creates a new ExtensionRangeOptions instance using the specified properties.
|
|
779
797
|
* @param [properties] Properties to set
|
|
@@ -852,6 +870,136 @@ export namespace google {
|
|
|
852
870
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
853
871
|
}
|
|
854
872
|
|
|
873
|
+
namespace ExtensionRangeOptions {
|
|
874
|
+
|
|
875
|
+
/** Properties of a Declaration. */
|
|
876
|
+
interface IDeclaration {
|
|
877
|
+
|
|
878
|
+
/** Declaration number */
|
|
879
|
+
number?: (number|null);
|
|
880
|
+
|
|
881
|
+
/** Declaration fullName */
|
|
882
|
+
fullName?: (string|null);
|
|
883
|
+
|
|
884
|
+
/** Declaration type */
|
|
885
|
+
type?: (string|null);
|
|
886
|
+
|
|
887
|
+
/** Declaration reserved */
|
|
888
|
+
reserved?: (boolean|null);
|
|
889
|
+
|
|
890
|
+
/** Declaration repeated */
|
|
891
|
+
repeated?: (boolean|null);
|
|
892
|
+
}
|
|
893
|
+
|
|
894
|
+
/** Represents a Declaration. */
|
|
895
|
+
class Declaration implements IDeclaration {
|
|
896
|
+
|
|
897
|
+
/**
|
|
898
|
+
* Constructs a new Declaration.
|
|
899
|
+
* @param [properties] Properties to set
|
|
900
|
+
*/
|
|
901
|
+
constructor(properties?: google.protobuf.ExtensionRangeOptions.IDeclaration);
|
|
902
|
+
|
|
903
|
+
/** Declaration number. */
|
|
904
|
+
public number: number;
|
|
905
|
+
|
|
906
|
+
/** Declaration fullName. */
|
|
907
|
+
public fullName: string;
|
|
908
|
+
|
|
909
|
+
/** Declaration type. */
|
|
910
|
+
public type: string;
|
|
911
|
+
|
|
912
|
+
/** Declaration reserved. */
|
|
913
|
+
public reserved: boolean;
|
|
914
|
+
|
|
915
|
+
/** Declaration repeated. */
|
|
916
|
+
public repeated: boolean;
|
|
917
|
+
|
|
918
|
+
/**
|
|
919
|
+
* Creates a new Declaration instance using the specified properties.
|
|
920
|
+
* @param [properties] Properties to set
|
|
921
|
+
* @returns Declaration instance
|
|
922
|
+
*/
|
|
923
|
+
public static create(properties?: google.protobuf.ExtensionRangeOptions.IDeclaration): google.protobuf.ExtensionRangeOptions.Declaration;
|
|
924
|
+
|
|
925
|
+
/**
|
|
926
|
+
* Encodes the specified Declaration message. Does not implicitly {@link google.protobuf.ExtensionRangeOptions.Declaration.verify|verify} messages.
|
|
927
|
+
* @param message Declaration message or plain object to encode
|
|
928
|
+
* @param [writer] Writer to encode to
|
|
929
|
+
* @returns Writer
|
|
930
|
+
*/
|
|
931
|
+
public static encode(message: google.protobuf.ExtensionRangeOptions.IDeclaration, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
932
|
+
|
|
933
|
+
/**
|
|
934
|
+
* Encodes the specified Declaration message, length delimited. Does not implicitly {@link google.protobuf.ExtensionRangeOptions.Declaration.verify|verify} messages.
|
|
935
|
+
* @param message Declaration message or plain object to encode
|
|
936
|
+
* @param [writer] Writer to encode to
|
|
937
|
+
* @returns Writer
|
|
938
|
+
*/
|
|
939
|
+
public static encodeDelimited(message: google.protobuf.ExtensionRangeOptions.IDeclaration, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
940
|
+
|
|
941
|
+
/**
|
|
942
|
+
* Decodes a Declaration message from the specified reader or buffer.
|
|
943
|
+
* @param reader Reader or buffer to decode from
|
|
944
|
+
* @param [length] Message length if known beforehand
|
|
945
|
+
* @returns Declaration
|
|
946
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
947
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
948
|
+
*/
|
|
949
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.ExtensionRangeOptions.Declaration;
|
|
950
|
+
|
|
951
|
+
/**
|
|
952
|
+
* Decodes a Declaration message from the specified reader or buffer, length delimited.
|
|
953
|
+
* @param reader Reader or buffer to decode from
|
|
954
|
+
* @returns Declaration
|
|
955
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
956
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
957
|
+
*/
|
|
958
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.ExtensionRangeOptions.Declaration;
|
|
959
|
+
|
|
960
|
+
/**
|
|
961
|
+
* Verifies a Declaration message.
|
|
962
|
+
* @param message Plain object to verify
|
|
963
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
964
|
+
*/
|
|
965
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
966
|
+
|
|
967
|
+
/**
|
|
968
|
+
* Creates a Declaration message from a plain object. Also converts values to their respective internal types.
|
|
969
|
+
* @param object Plain object
|
|
970
|
+
* @returns Declaration
|
|
971
|
+
*/
|
|
972
|
+
public static fromObject(object: { [k: string]: any }): google.protobuf.ExtensionRangeOptions.Declaration;
|
|
973
|
+
|
|
974
|
+
/**
|
|
975
|
+
* Creates a plain object from a Declaration message. Also converts values to other types if specified.
|
|
976
|
+
* @param message Declaration
|
|
977
|
+
* @param [options] Conversion options
|
|
978
|
+
* @returns Plain object
|
|
979
|
+
*/
|
|
980
|
+
public static toObject(message: google.protobuf.ExtensionRangeOptions.Declaration, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
981
|
+
|
|
982
|
+
/**
|
|
983
|
+
* Converts this Declaration to JSON.
|
|
984
|
+
* @returns JSON object
|
|
985
|
+
*/
|
|
986
|
+
public toJSON(): { [k: string]: any };
|
|
987
|
+
|
|
988
|
+
/**
|
|
989
|
+
* Gets the default type url for Declaration
|
|
990
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
991
|
+
* @returns The default type url
|
|
992
|
+
*/
|
|
993
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
994
|
+
}
|
|
995
|
+
|
|
996
|
+
/** VerificationState enum. */
|
|
997
|
+
enum VerificationState {
|
|
998
|
+
DECLARATION = 0,
|
|
999
|
+
UNVERIFIED = 1
|
|
1000
|
+
}
|
|
1001
|
+
}
|
|
1002
|
+
|
|
855
1003
|
/** Properties of a FieldDescriptorProto. */
|
|
856
1004
|
interface IFieldDescriptorProto {
|
|
857
1005
|
|
|
@@ -1779,6 +1927,9 @@ export namespace google {
|
|
|
1779
1927
|
/** FileOptions rubyPackage */
|
|
1780
1928
|
rubyPackage?: (string|null);
|
|
1781
1929
|
|
|
1930
|
+
/** FileOptions features */
|
|
1931
|
+
features?: (google.protobuf.IFeatureSet|null);
|
|
1932
|
+
|
|
1782
1933
|
/** FileOptions uninterpretedOption */
|
|
1783
1934
|
uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
|
|
1784
1935
|
|
|
@@ -1855,6 +2006,9 @@ export namespace google {
|
|
|
1855
2006
|
/** FileOptions rubyPackage. */
|
|
1856
2007
|
public rubyPackage: string;
|
|
1857
2008
|
|
|
2009
|
+
/** FileOptions features. */
|
|
2010
|
+
public features?: (google.protobuf.IFeatureSet|null);
|
|
2011
|
+
|
|
1858
2012
|
/** FileOptions uninterpretedOption. */
|
|
1859
2013
|
public uninterpretedOption: google.protobuf.IUninterpretedOption[];
|
|
1860
2014
|
|
|
@@ -1964,6 +2118,9 @@ export namespace google {
|
|
|
1964
2118
|
/** MessageOptions deprecatedLegacyJsonFieldConflicts */
|
|
1965
2119
|
deprecatedLegacyJsonFieldConflicts?: (boolean|null);
|
|
1966
2120
|
|
|
2121
|
+
/** MessageOptions features */
|
|
2122
|
+
features?: (google.protobuf.IFeatureSet|null);
|
|
2123
|
+
|
|
1967
2124
|
/** MessageOptions uninterpretedOption */
|
|
1968
2125
|
uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
|
|
1969
2126
|
|
|
@@ -1995,6 +2152,9 @@ export namespace google {
|
|
|
1995
2152
|
/** MessageOptions deprecatedLegacyJsonFieldConflicts. */
|
|
1996
2153
|
public deprecatedLegacyJsonFieldConflicts: boolean;
|
|
1997
2154
|
|
|
2155
|
+
/** MessageOptions features. */
|
|
2156
|
+
public features?: (google.protobuf.IFeatureSet|null);
|
|
2157
|
+
|
|
1998
2158
|
/** MessageOptions uninterpretedOption. */
|
|
1999
2159
|
public uninterpretedOption: google.protobuf.IUninterpretedOption[];
|
|
2000
2160
|
|
|
@@ -2106,8 +2266,14 @@ export namespace google {
|
|
|
2106
2266
|
/** FieldOptions retention */
|
|
2107
2267
|
retention?: (google.protobuf.FieldOptions.OptionRetention|keyof typeof google.protobuf.FieldOptions.OptionRetention|null);
|
|
2108
2268
|
|
|
2109
|
-
/** FieldOptions
|
|
2110
|
-
|
|
2269
|
+
/** FieldOptions targets */
|
|
2270
|
+
targets?: (google.protobuf.FieldOptions.OptionTargetType[]|null);
|
|
2271
|
+
|
|
2272
|
+
/** FieldOptions editionDefaults */
|
|
2273
|
+
editionDefaults?: (google.protobuf.FieldOptions.IEditionDefault[]|null);
|
|
2274
|
+
|
|
2275
|
+
/** FieldOptions features */
|
|
2276
|
+
features?: (google.protobuf.IFeatureSet|null);
|
|
2111
2277
|
|
|
2112
2278
|
/** FieldOptions uninterpretedOption */
|
|
2113
2279
|
uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
|
|
@@ -2155,8 +2321,14 @@ export namespace google {
|
|
|
2155
2321
|
/** FieldOptions retention. */
|
|
2156
2322
|
public retention: (google.protobuf.FieldOptions.OptionRetention|keyof typeof google.protobuf.FieldOptions.OptionRetention);
|
|
2157
2323
|
|
|
2158
|
-
/** FieldOptions
|
|
2159
|
-
public
|
|
2324
|
+
/** FieldOptions targets. */
|
|
2325
|
+
public targets: google.protobuf.FieldOptions.OptionTargetType[];
|
|
2326
|
+
|
|
2327
|
+
/** FieldOptions editionDefaults. */
|
|
2328
|
+
public editionDefaults: google.protobuf.FieldOptions.IEditionDefault[];
|
|
2329
|
+
|
|
2330
|
+
/** FieldOptions features. */
|
|
2331
|
+
public features?: (google.protobuf.IFeatureSet|null);
|
|
2160
2332
|
|
|
2161
2333
|
/** FieldOptions uninterpretedOption. */
|
|
2162
2334
|
public uninterpretedOption: google.protobuf.IUninterpretedOption[];
|
|
@@ -2275,11 +2447,117 @@ export namespace google {
|
|
|
2275
2447
|
TARGET_TYPE_SERVICE = 8,
|
|
2276
2448
|
TARGET_TYPE_METHOD = 9
|
|
2277
2449
|
}
|
|
2450
|
+
|
|
2451
|
+
/** Properties of an EditionDefault. */
|
|
2452
|
+
interface IEditionDefault {
|
|
2453
|
+
|
|
2454
|
+
/** EditionDefault edition */
|
|
2455
|
+
edition?: (string|null);
|
|
2456
|
+
|
|
2457
|
+
/** EditionDefault value */
|
|
2458
|
+
value?: (string|null);
|
|
2459
|
+
}
|
|
2460
|
+
|
|
2461
|
+
/** Represents an EditionDefault. */
|
|
2462
|
+
class EditionDefault implements IEditionDefault {
|
|
2463
|
+
|
|
2464
|
+
/**
|
|
2465
|
+
* Constructs a new EditionDefault.
|
|
2466
|
+
* @param [properties] Properties to set
|
|
2467
|
+
*/
|
|
2468
|
+
constructor(properties?: google.protobuf.FieldOptions.IEditionDefault);
|
|
2469
|
+
|
|
2470
|
+
/** EditionDefault edition. */
|
|
2471
|
+
public edition: string;
|
|
2472
|
+
|
|
2473
|
+
/** EditionDefault value. */
|
|
2474
|
+
public value: string;
|
|
2475
|
+
|
|
2476
|
+
/**
|
|
2477
|
+
* Creates a new EditionDefault instance using the specified properties.
|
|
2478
|
+
* @param [properties] Properties to set
|
|
2479
|
+
* @returns EditionDefault instance
|
|
2480
|
+
*/
|
|
2481
|
+
public static create(properties?: google.protobuf.FieldOptions.IEditionDefault): google.protobuf.FieldOptions.EditionDefault;
|
|
2482
|
+
|
|
2483
|
+
/**
|
|
2484
|
+
* Encodes the specified EditionDefault message. Does not implicitly {@link google.protobuf.FieldOptions.EditionDefault.verify|verify} messages.
|
|
2485
|
+
* @param message EditionDefault message or plain object to encode
|
|
2486
|
+
* @param [writer] Writer to encode to
|
|
2487
|
+
* @returns Writer
|
|
2488
|
+
*/
|
|
2489
|
+
public static encode(message: google.protobuf.FieldOptions.IEditionDefault, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
2490
|
+
|
|
2491
|
+
/**
|
|
2492
|
+
* Encodes the specified EditionDefault message, length delimited. Does not implicitly {@link google.protobuf.FieldOptions.EditionDefault.verify|verify} messages.
|
|
2493
|
+
* @param message EditionDefault message or plain object to encode
|
|
2494
|
+
* @param [writer] Writer to encode to
|
|
2495
|
+
* @returns Writer
|
|
2496
|
+
*/
|
|
2497
|
+
public static encodeDelimited(message: google.protobuf.FieldOptions.IEditionDefault, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
2498
|
+
|
|
2499
|
+
/**
|
|
2500
|
+
* Decodes an EditionDefault message from the specified reader or buffer.
|
|
2501
|
+
* @param reader Reader or buffer to decode from
|
|
2502
|
+
* @param [length] Message length if known beforehand
|
|
2503
|
+
* @returns EditionDefault
|
|
2504
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
2505
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
2506
|
+
*/
|
|
2507
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FieldOptions.EditionDefault;
|
|
2508
|
+
|
|
2509
|
+
/**
|
|
2510
|
+
* Decodes an EditionDefault message from the specified reader or buffer, length delimited.
|
|
2511
|
+
* @param reader Reader or buffer to decode from
|
|
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 decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FieldOptions.EditionDefault;
|
|
2517
|
+
|
|
2518
|
+
/**
|
|
2519
|
+
* Verifies an EditionDefault message.
|
|
2520
|
+
* @param message Plain object to verify
|
|
2521
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
2522
|
+
*/
|
|
2523
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
2524
|
+
|
|
2525
|
+
/**
|
|
2526
|
+
* Creates an EditionDefault message from a plain object. Also converts values to their respective internal types.
|
|
2527
|
+
* @param object Plain object
|
|
2528
|
+
* @returns EditionDefault
|
|
2529
|
+
*/
|
|
2530
|
+
public static fromObject(object: { [k: string]: any }): google.protobuf.FieldOptions.EditionDefault;
|
|
2531
|
+
|
|
2532
|
+
/**
|
|
2533
|
+
* Creates a plain object from an EditionDefault message. Also converts values to other types if specified.
|
|
2534
|
+
* @param message EditionDefault
|
|
2535
|
+
* @param [options] Conversion options
|
|
2536
|
+
* @returns Plain object
|
|
2537
|
+
*/
|
|
2538
|
+
public static toObject(message: google.protobuf.FieldOptions.EditionDefault, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
2539
|
+
|
|
2540
|
+
/**
|
|
2541
|
+
* Converts this EditionDefault to JSON.
|
|
2542
|
+
* @returns JSON object
|
|
2543
|
+
*/
|
|
2544
|
+
public toJSON(): { [k: string]: any };
|
|
2545
|
+
|
|
2546
|
+
/**
|
|
2547
|
+
* Gets the default type url for EditionDefault
|
|
2548
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
2549
|
+
* @returns The default type url
|
|
2550
|
+
*/
|
|
2551
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
2552
|
+
}
|
|
2278
2553
|
}
|
|
2279
2554
|
|
|
2280
2555
|
/** Properties of an OneofOptions. */
|
|
2281
2556
|
interface IOneofOptions {
|
|
2282
2557
|
|
|
2558
|
+
/** OneofOptions features */
|
|
2559
|
+
features?: (google.protobuf.IFeatureSet|null);
|
|
2560
|
+
|
|
2283
2561
|
/** OneofOptions uninterpretedOption */
|
|
2284
2562
|
uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
|
|
2285
2563
|
}
|
|
@@ -2293,6 +2571,9 @@ export namespace google {
|
|
|
2293
2571
|
*/
|
|
2294
2572
|
constructor(properties?: google.protobuf.IOneofOptions);
|
|
2295
2573
|
|
|
2574
|
+
/** OneofOptions features. */
|
|
2575
|
+
public features?: (google.protobuf.IFeatureSet|null);
|
|
2576
|
+
|
|
2296
2577
|
/** OneofOptions uninterpretedOption. */
|
|
2297
2578
|
public uninterpretedOption: google.protobuf.IUninterpretedOption[];
|
|
2298
2579
|
|
|
@@ -2386,6 +2667,9 @@ export namespace google {
|
|
|
2386
2667
|
/** EnumOptions deprecatedLegacyJsonFieldConflicts */
|
|
2387
2668
|
deprecatedLegacyJsonFieldConflicts?: (boolean|null);
|
|
2388
2669
|
|
|
2670
|
+
/** EnumOptions features */
|
|
2671
|
+
features?: (google.protobuf.IFeatureSet|null);
|
|
2672
|
+
|
|
2389
2673
|
/** EnumOptions uninterpretedOption */
|
|
2390
2674
|
uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
|
|
2391
2675
|
}
|
|
@@ -2408,6 +2692,9 @@ export namespace google {
|
|
|
2408
2692
|
/** EnumOptions deprecatedLegacyJsonFieldConflicts. */
|
|
2409
2693
|
public deprecatedLegacyJsonFieldConflicts: boolean;
|
|
2410
2694
|
|
|
2695
|
+
/** EnumOptions features. */
|
|
2696
|
+
public features?: (google.protobuf.IFeatureSet|null);
|
|
2697
|
+
|
|
2411
2698
|
/** EnumOptions uninterpretedOption. */
|
|
2412
2699
|
public uninterpretedOption: google.protobuf.IUninterpretedOption[];
|
|
2413
2700
|
|
|
@@ -2495,6 +2782,12 @@ export namespace google {
|
|
|
2495
2782
|
/** EnumValueOptions deprecated */
|
|
2496
2783
|
deprecated?: (boolean|null);
|
|
2497
2784
|
|
|
2785
|
+
/** EnumValueOptions features */
|
|
2786
|
+
features?: (google.protobuf.IFeatureSet|null);
|
|
2787
|
+
|
|
2788
|
+
/** EnumValueOptions debugRedact */
|
|
2789
|
+
debugRedact?: (boolean|null);
|
|
2790
|
+
|
|
2498
2791
|
/** EnumValueOptions uninterpretedOption */
|
|
2499
2792
|
uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
|
|
2500
2793
|
}
|
|
@@ -2511,6 +2804,12 @@ export namespace google {
|
|
|
2511
2804
|
/** EnumValueOptions deprecated. */
|
|
2512
2805
|
public deprecated: boolean;
|
|
2513
2806
|
|
|
2807
|
+
/** EnumValueOptions features. */
|
|
2808
|
+
public features?: (google.protobuf.IFeatureSet|null);
|
|
2809
|
+
|
|
2810
|
+
/** EnumValueOptions debugRedact. */
|
|
2811
|
+
public debugRedact: boolean;
|
|
2812
|
+
|
|
2514
2813
|
/** EnumValueOptions uninterpretedOption. */
|
|
2515
2814
|
public uninterpretedOption: google.protobuf.IUninterpretedOption[];
|
|
2516
2815
|
|
|
@@ -2595,6 +2894,9 @@ export namespace google {
|
|
|
2595
2894
|
/** Properties of a ServiceOptions. */
|
|
2596
2895
|
interface IServiceOptions {
|
|
2597
2896
|
|
|
2897
|
+
/** ServiceOptions features */
|
|
2898
|
+
features?: (google.protobuf.IFeatureSet|null);
|
|
2899
|
+
|
|
2598
2900
|
/** ServiceOptions deprecated */
|
|
2599
2901
|
deprecated?: (boolean|null);
|
|
2600
2902
|
|
|
@@ -2617,6 +2919,9 @@ export namespace google {
|
|
|
2617
2919
|
*/
|
|
2618
2920
|
constructor(properties?: google.protobuf.IServiceOptions);
|
|
2619
2921
|
|
|
2922
|
+
/** ServiceOptions features. */
|
|
2923
|
+
public features?: (google.protobuf.IFeatureSet|null);
|
|
2924
|
+
|
|
2620
2925
|
/** ServiceOptions deprecated. */
|
|
2621
2926
|
public deprecated: boolean;
|
|
2622
2927
|
|
|
@@ -2710,6 +3015,9 @@ export namespace google {
|
|
|
2710
3015
|
/** MethodOptions idempotencyLevel */
|
|
2711
3016
|
idempotencyLevel?: (google.protobuf.MethodOptions.IdempotencyLevel|keyof typeof google.protobuf.MethodOptions.IdempotencyLevel|null);
|
|
2712
3017
|
|
|
3018
|
+
/** MethodOptions features */
|
|
3019
|
+
features?: (google.protobuf.IFeatureSet|null);
|
|
3020
|
+
|
|
2713
3021
|
/** MethodOptions uninterpretedOption */
|
|
2714
3022
|
uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
|
|
2715
3023
|
|
|
@@ -2738,6 +3046,9 @@ export namespace google {
|
|
|
2738
3046
|
/** MethodOptions idempotencyLevel. */
|
|
2739
3047
|
public idempotencyLevel: (google.protobuf.MethodOptions.IdempotencyLevel|keyof typeof google.protobuf.MethodOptions.IdempotencyLevel);
|
|
2740
3048
|
|
|
3049
|
+
/** MethodOptions features. */
|
|
3050
|
+
public features?: (google.protobuf.IFeatureSet|null);
|
|
3051
|
+
|
|
2741
3052
|
/** MethodOptions uninterpretedOption. */
|
|
2742
3053
|
public uninterpretedOption: google.protobuf.IUninterpretedOption[];
|
|
2743
3054
|
|
|
@@ -3068,6 +3379,186 @@ export namespace google {
|
|
|
3068
3379
|
}
|
|
3069
3380
|
}
|
|
3070
3381
|
|
|
3382
|
+
/** Properties of a FeatureSet. */
|
|
3383
|
+
interface IFeatureSet {
|
|
3384
|
+
|
|
3385
|
+
/** FeatureSet fieldPresence */
|
|
3386
|
+
fieldPresence?: (google.protobuf.FeatureSet.FieldPresence|keyof typeof google.protobuf.FeatureSet.FieldPresence|null);
|
|
3387
|
+
|
|
3388
|
+
/** FeatureSet enumType */
|
|
3389
|
+
enumType?: (google.protobuf.FeatureSet.EnumType|keyof typeof google.protobuf.FeatureSet.EnumType|null);
|
|
3390
|
+
|
|
3391
|
+
/** FeatureSet repeatedFieldEncoding */
|
|
3392
|
+
repeatedFieldEncoding?: (google.protobuf.FeatureSet.RepeatedFieldEncoding|keyof typeof google.protobuf.FeatureSet.RepeatedFieldEncoding|null);
|
|
3393
|
+
|
|
3394
|
+
/** FeatureSet stringFieldValidation */
|
|
3395
|
+
stringFieldValidation?: (google.protobuf.FeatureSet.StringFieldValidation|keyof typeof google.protobuf.FeatureSet.StringFieldValidation|null);
|
|
3396
|
+
|
|
3397
|
+
/** FeatureSet messageEncoding */
|
|
3398
|
+
messageEncoding?: (google.protobuf.FeatureSet.MessageEncoding|keyof typeof google.protobuf.FeatureSet.MessageEncoding|null);
|
|
3399
|
+
|
|
3400
|
+
/** FeatureSet jsonFormat */
|
|
3401
|
+
jsonFormat?: (google.protobuf.FeatureSet.JsonFormat|keyof typeof google.protobuf.FeatureSet.JsonFormat|null);
|
|
3402
|
+
|
|
3403
|
+
/** FeatureSet rawFeatures */
|
|
3404
|
+
rawFeatures?: (google.protobuf.IFeatureSet|null);
|
|
3405
|
+
}
|
|
3406
|
+
|
|
3407
|
+
/** Represents a FeatureSet. */
|
|
3408
|
+
class FeatureSet implements IFeatureSet {
|
|
3409
|
+
|
|
3410
|
+
/**
|
|
3411
|
+
* Constructs a new FeatureSet.
|
|
3412
|
+
* @param [properties] Properties to set
|
|
3413
|
+
*/
|
|
3414
|
+
constructor(properties?: google.protobuf.IFeatureSet);
|
|
3415
|
+
|
|
3416
|
+
/** FeatureSet fieldPresence. */
|
|
3417
|
+
public fieldPresence: (google.protobuf.FeatureSet.FieldPresence|keyof typeof google.protobuf.FeatureSet.FieldPresence);
|
|
3418
|
+
|
|
3419
|
+
/** FeatureSet enumType. */
|
|
3420
|
+
public enumType: (google.protobuf.FeatureSet.EnumType|keyof typeof google.protobuf.FeatureSet.EnumType);
|
|
3421
|
+
|
|
3422
|
+
/** FeatureSet repeatedFieldEncoding. */
|
|
3423
|
+
public repeatedFieldEncoding: (google.protobuf.FeatureSet.RepeatedFieldEncoding|keyof typeof google.protobuf.FeatureSet.RepeatedFieldEncoding);
|
|
3424
|
+
|
|
3425
|
+
/** FeatureSet stringFieldValidation. */
|
|
3426
|
+
public stringFieldValidation: (google.protobuf.FeatureSet.StringFieldValidation|keyof typeof google.protobuf.FeatureSet.StringFieldValidation);
|
|
3427
|
+
|
|
3428
|
+
/** FeatureSet messageEncoding. */
|
|
3429
|
+
public messageEncoding: (google.protobuf.FeatureSet.MessageEncoding|keyof typeof google.protobuf.FeatureSet.MessageEncoding);
|
|
3430
|
+
|
|
3431
|
+
/** FeatureSet jsonFormat. */
|
|
3432
|
+
public jsonFormat: (google.protobuf.FeatureSet.JsonFormat|keyof typeof google.protobuf.FeatureSet.JsonFormat);
|
|
3433
|
+
|
|
3434
|
+
/** FeatureSet rawFeatures. */
|
|
3435
|
+
public rawFeatures?: (google.protobuf.IFeatureSet|null);
|
|
3436
|
+
|
|
3437
|
+
/**
|
|
3438
|
+
* Creates a new FeatureSet instance using the specified properties.
|
|
3439
|
+
* @param [properties] Properties to set
|
|
3440
|
+
* @returns FeatureSet instance
|
|
3441
|
+
*/
|
|
3442
|
+
public static create(properties?: google.protobuf.IFeatureSet): google.protobuf.FeatureSet;
|
|
3443
|
+
|
|
3444
|
+
/**
|
|
3445
|
+
* Encodes the specified FeatureSet message. Does not implicitly {@link google.protobuf.FeatureSet.verify|verify} messages.
|
|
3446
|
+
* @param message FeatureSet message or plain object to encode
|
|
3447
|
+
* @param [writer] Writer to encode to
|
|
3448
|
+
* @returns Writer
|
|
3449
|
+
*/
|
|
3450
|
+
public static encode(message: google.protobuf.IFeatureSet, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
3451
|
+
|
|
3452
|
+
/**
|
|
3453
|
+
* Encodes the specified FeatureSet message, length delimited. Does not implicitly {@link google.protobuf.FeatureSet.verify|verify} messages.
|
|
3454
|
+
* @param message FeatureSet message or plain object to encode
|
|
3455
|
+
* @param [writer] Writer to encode to
|
|
3456
|
+
* @returns Writer
|
|
3457
|
+
*/
|
|
3458
|
+
public static encodeDelimited(message: google.protobuf.IFeatureSet, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
3459
|
+
|
|
3460
|
+
/**
|
|
3461
|
+
* Decodes a FeatureSet message from the specified reader or buffer.
|
|
3462
|
+
* @param reader Reader or buffer to decode from
|
|
3463
|
+
* @param [length] Message length if known beforehand
|
|
3464
|
+
* @returns FeatureSet
|
|
3465
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
3466
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
3467
|
+
*/
|
|
3468
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FeatureSet;
|
|
3469
|
+
|
|
3470
|
+
/**
|
|
3471
|
+
* Decodes a FeatureSet message from the specified reader or buffer, length delimited.
|
|
3472
|
+
* @param reader Reader or buffer to decode from
|
|
3473
|
+
* @returns FeatureSet
|
|
3474
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
3475
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
3476
|
+
*/
|
|
3477
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FeatureSet;
|
|
3478
|
+
|
|
3479
|
+
/**
|
|
3480
|
+
* Verifies a FeatureSet message.
|
|
3481
|
+
* @param message Plain object to verify
|
|
3482
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
3483
|
+
*/
|
|
3484
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
3485
|
+
|
|
3486
|
+
/**
|
|
3487
|
+
* Creates a FeatureSet message from a plain object. Also converts values to their respective internal types.
|
|
3488
|
+
* @param object Plain object
|
|
3489
|
+
* @returns FeatureSet
|
|
3490
|
+
*/
|
|
3491
|
+
public static fromObject(object: { [k: string]: any }): google.protobuf.FeatureSet;
|
|
3492
|
+
|
|
3493
|
+
/**
|
|
3494
|
+
* Creates a plain object from a FeatureSet message. Also converts values to other types if specified.
|
|
3495
|
+
* @param message FeatureSet
|
|
3496
|
+
* @param [options] Conversion options
|
|
3497
|
+
* @returns Plain object
|
|
3498
|
+
*/
|
|
3499
|
+
public static toObject(message: google.protobuf.FeatureSet, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
3500
|
+
|
|
3501
|
+
/**
|
|
3502
|
+
* Converts this FeatureSet to JSON.
|
|
3503
|
+
* @returns JSON object
|
|
3504
|
+
*/
|
|
3505
|
+
public toJSON(): { [k: string]: any };
|
|
3506
|
+
|
|
3507
|
+
/**
|
|
3508
|
+
* Gets the default type url for FeatureSet
|
|
3509
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
3510
|
+
* @returns The default type url
|
|
3511
|
+
*/
|
|
3512
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
3513
|
+
}
|
|
3514
|
+
|
|
3515
|
+
namespace FeatureSet {
|
|
3516
|
+
|
|
3517
|
+
/** FieldPresence enum. */
|
|
3518
|
+
enum FieldPresence {
|
|
3519
|
+
FIELD_PRESENCE_UNKNOWN = 0,
|
|
3520
|
+
EXPLICIT = 1,
|
|
3521
|
+
IMPLICIT = 2,
|
|
3522
|
+
LEGACY_REQUIRED = 3
|
|
3523
|
+
}
|
|
3524
|
+
|
|
3525
|
+
/** EnumType enum. */
|
|
3526
|
+
enum EnumType {
|
|
3527
|
+
ENUM_TYPE_UNKNOWN = 0,
|
|
3528
|
+
OPEN = 1,
|
|
3529
|
+
CLOSED = 2
|
|
3530
|
+
}
|
|
3531
|
+
|
|
3532
|
+
/** RepeatedFieldEncoding enum. */
|
|
3533
|
+
enum RepeatedFieldEncoding {
|
|
3534
|
+
REPEATED_FIELD_ENCODING_UNKNOWN = 0,
|
|
3535
|
+
PACKED = 1,
|
|
3536
|
+
EXPANDED = 2
|
|
3537
|
+
}
|
|
3538
|
+
|
|
3539
|
+
/** StringFieldValidation enum. */
|
|
3540
|
+
enum StringFieldValidation {
|
|
3541
|
+
STRING_FIELD_VALIDATION_UNKNOWN = 0,
|
|
3542
|
+
MANDATORY = 1,
|
|
3543
|
+
HINT = 2,
|
|
3544
|
+
NONE = 3
|
|
3545
|
+
}
|
|
3546
|
+
|
|
3547
|
+
/** MessageEncoding enum. */
|
|
3548
|
+
enum MessageEncoding {
|
|
3549
|
+
MESSAGE_ENCODING_UNKNOWN = 0,
|
|
3550
|
+
LENGTH_PREFIXED = 1,
|
|
3551
|
+
DELIMITED = 2
|
|
3552
|
+
}
|
|
3553
|
+
|
|
3554
|
+
/** JsonFormat enum. */
|
|
3555
|
+
enum JsonFormat {
|
|
3556
|
+
JSON_FORMAT_UNKNOWN = 0,
|
|
3557
|
+
ALLOW = 1,
|
|
3558
|
+
LEGACY_BEST_EFFORT = 2
|
|
3559
|
+
}
|
|
3560
|
+
}
|
|
3561
|
+
|
|
3071
3562
|
/** Properties of a SourceCodeInfo. */
|
|
3072
3563
|
interface ISourceCodeInfo {
|
|
3073
3564
|
|
|
@@ -3889,6 +4380,20 @@ export namespace google {
|
|
|
3889
4380
|
*/
|
|
3890
4381
|
public queryAudienceList(request: google.analytics.data.v1alpha.IQueryAudienceListRequest): Promise<google.analytics.data.v1alpha.QueryAudienceListResponse>;
|
|
3891
4382
|
|
|
4383
|
+
/**
|
|
4384
|
+
* Calls SheetExportAudienceList.
|
|
4385
|
+
* @param request SheetExportAudienceListRequest message or plain object
|
|
4386
|
+
* @param callback Node-style callback called with the error, if any, and SheetExportAudienceListResponse
|
|
4387
|
+
*/
|
|
4388
|
+
public sheetExportAudienceList(request: google.analytics.data.v1alpha.ISheetExportAudienceListRequest, callback: google.analytics.data.v1alpha.AlphaAnalyticsData.SheetExportAudienceListCallback): void;
|
|
4389
|
+
|
|
4390
|
+
/**
|
|
4391
|
+
* Calls SheetExportAudienceList.
|
|
4392
|
+
* @param request SheetExportAudienceListRequest message or plain object
|
|
4393
|
+
* @returns Promise
|
|
4394
|
+
*/
|
|
4395
|
+
public sheetExportAudienceList(request: google.analytics.data.v1alpha.ISheetExportAudienceListRequest): Promise<google.analytics.data.v1alpha.SheetExportAudienceListResponse>;
|
|
4396
|
+
|
|
3892
4397
|
/**
|
|
3893
4398
|
* Calls GetAudienceList.
|
|
3894
4399
|
* @param request GetAudienceListRequest message or plain object
|
|
@@ -3941,6 +4446,13 @@ export namespace google {
|
|
|
3941
4446
|
*/
|
|
3942
4447
|
type QueryAudienceListCallback = (error: (Error|null), response?: google.analytics.data.v1alpha.QueryAudienceListResponse) => void;
|
|
3943
4448
|
|
|
4449
|
+
/**
|
|
4450
|
+
* Callback as used by {@link google.analytics.data.v1alpha.AlphaAnalyticsData|sheetExportAudienceList}.
|
|
4451
|
+
* @param error Error, if any
|
|
4452
|
+
* @param [response] SheetExportAudienceListResponse
|
|
4453
|
+
*/
|
|
4454
|
+
type SheetExportAudienceListCallback = (error: (Error|null), response?: google.analytics.data.v1alpha.SheetExportAudienceListResponse) => void;
|
|
4455
|
+
|
|
3944
4456
|
/**
|
|
3945
4457
|
* Callback as used by {@link google.analytics.data.v1alpha.AlphaAnalyticsData|getAudienceList}.
|
|
3946
4458
|
* @param error Error, if any
|
|
@@ -4391,6 +4903,15 @@ export namespace google {
|
|
|
4391
4903
|
|
|
4392
4904
|
/** AudienceList beginCreatingTime */
|
|
4393
4905
|
beginCreatingTime?: (google.protobuf.ITimestamp|null);
|
|
4906
|
+
|
|
4907
|
+
/** AudienceList creationQuotaTokensCharged */
|
|
4908
|
+
creationQuotaTokensCharged?: (number|null);
|
|
4909
|
+
|
|
4910
|
+
/** AudienceList rowCount */
|
|
4911
|
+
rowCount?: (number|null);
|
|
4912
|
+
|
|
4913
|
+
/** AudienceList errorMessage */
|
|
4914
|
+
errorMessage?: (string|null);
|
|
4394
4915
|
}
|
|
4395
4916
|
|
|
4396
4917
|
/** Represents an AudienceList. */
|
|
@@ -4420,12 +4941,27 @@ export namespace google {
|
|
|
4420
4941
|
/** AudienceList beginCreatingTime. */
|
|
4421
4942
|
public beginCreatingTime?: (google.protobuf.ITimestamp|null);
|
|
4422
4943
|
|
|
4944
|
+
/** AudienceList creationQuotaTokensCharged. */
|
|
4945
|
+
public creationQuotaTokensCharged: number;
|
|
4946
|
+
|
|
4947
|
+
/** AudienceList rowCount. */
|
|
4948
|
+
public rowCount?: (number|null);
|
|
4949
|
+
|
|
4950
|
+
/** AudienceList errorMessage. */
|
|
4951
|
+
public errorMessage?: (string|null);
|
|
4952
|
+
|
|
4423
4953
|
/** AudienceList _state. */
|
|
4424
4954
|
public _state?: "state";
|
|
4425
4955
|
|
|
4426
4956
|
/** AudienceList _beginCreatingTime. */
|
|
4427
4957
|
public _beginCreatingTime?: "beginCreatingTime";
|
|
4428
4958
|
|
|
4959
|
+
/** AudienceList _rowCount. */
|
|
4960
|
+
public _rowCount?: "rowCount";
|
|
4961
|
+
|
|
4962
|
+
/** AudienceList _errorMessage. */
|
|
4963
|
+
public _errorMessage?: "errorMessage";
|
|
4964
|
+
|
|
4429
4965
|
/**
|
|
4430
4966
|
* Creates a new AudienceList instance using the specified properties.
|
|
4431
4967
|
* @param [properties] Properties to set
|
|
@@ -4830,6 +5366,242 @@ export namespace google {
|
|
|
4830
5366
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
4831
5367
|
}
|
|
4832
5368
|
|
|
5369
|
+
/** Properties of a SheetExportAudienceListRequest. */
|
|
5370
|
+
interface ISheetExportAudienceListRequest {
|
|
5371
|
+
|
|
5372
|
+
/** SheetExportAudienceListRequest name */
|
|
5373
|
+
name?: (string|null);
|
|
5374
|
+
|
|
5375
|
+
/** SheetExportAudienceListRequest offset */
|
|
5376
|
+
offset?: (number|Long|string|null);
|
|
5377
|
+
|
|
5378
|
+
/** SheetExportAudienceListRequest limit */
|
|
5379
|
+
limit?: (number|Long|string|null);
|
|
5380
|
+
}
|
|
5381
|
+
|
|
5382
|
+
/** Represents a SheetExportAudienceListRequest. */
|
|
5383
|
+
class SheetExportAudienceListRequest implements ISheetExportAudienceListRequest {
|
|
5384
|
+
|
|
5385
|
+
/**
|
|
5386
|
+
* Constructs a new SheetExportAudienceListRequest.
|
|
5387
|
+
* @param [properties] Properties to set
|
|
5388
|
+
*/
|
|
5389
|
+
constructor(properties?: google.analytics.data.v1alpha.ISheetExportAudienceListRequest);
|
|
5390
|
+
|
|
5391
|
+
/** SheetExportAudienceListRequest name. */
|
|
5392
|
+
public name: string;
|
|
5393
|
+
|
|
5394
|
+
/** SheetExportAudienceListRequest offset. */
|
|
5395
|
+
public offset: (number|Long|string);
|
|
5396
|
+
|
|
5397
|
+
/** SheetExportAudienceListRequest limit. */
|
|
5398
|
+
public limit: (number|Long|string);
|
|
5399
|
+
|
|
5400
|
+
/**
|
|
5401
|
+
* Creates a new SheetExportAudienceListRequest instance using the specified properties.
|
|
5402
|
+
* @param [properties] Properties to set
|
|
5403
|
+
* @returns SheetExportAudienceListRequest instance
|
|
5404
|
+
*/
|
|
5405
|
+
public static create(properties?: google.analytics.data.v1alpha.ISheetExportAudienceListRequest): google.analytics.data.v1alpha.SheetExportAudienceListRequest;
|
|
5406
|
+
|
|
5407
|
+
/**
|
|
5408
|
+
* Encodes the specified SheetExportAudienceListRequest message. Does not implicitly {@link google.analytics.data.v1alpha.SheetExportAudienceListRequest.verify|verify} messages.
|
|
5409
|
+
* @param message SheetExportAudienceListRequest message or plain object to encode
|
|
5410
|
+
* @param [writer] Writer to encode to
|
|
5411
|
+
* @returns Writer
|
|
5412
|
+
*/
|
|
5413
|
+
public static encode(message: google.analytics.data.v1alpha.ISheetExportAudienceListRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
5414
|
+
|
|
5415
|
+
/**
|
|
5416
|
+
* Encodes the specified SheetExportAudienceListRequest message, length delimited. Does not implicitly {@link google.analytics.data.v1alpha.SheetExportAudienceListRequest.verify|verify} messages.
|
|
5417
|
+
* @param message SheetExportAudienceListRequest message or plain object to encode
|
|
5418
|
+
* @param [writer] Writer to encode to
|
|
5419
|
+
* @returns Writer
|
|
5420
|
+
*/
|
|
5421
|
+
public static encodeDelimited(message: google.analytics.data.v1alpha.ISheetExportAudienceListRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
5422
|
+
|
|
5423
|
+
/**
|
|
5424
|
+
* Decodes a SheetExportAudienceListRequest message from the specified reader or buffer.
|
|
5425
|
+
* @param reader Reader or buffer to decode from
|
|
5426
|
+
* @param [length] Message length if known beforehand
|
|
5427
|
+
* @returns SheetExportAudienceListRequest
|
|
5428
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
5429
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
5430
|
+
*/
|
|
5431
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.SheetExportAudienceListRequest;
|
|
5432
|
+
|
|
5433
|
+
/**
|
|
5434
|
+
* Decodes a SheetExportAudienceListRequest message from the specified reader or buffer, length delimited.
|
|
5435
|
+
* @param reader Reader or buffer to decode from
|
|
5436
|
+
* @returns SheetExportAudienceListRequest
|
|
5437
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
5438
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
5439
|
+
*/
|
|
5440
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.SheetExportAudienceListRequest;
|
|
5441
|
+
|
|
5442
|
+
/**
|
|
5443
|
+
* Verifies a SheetExportAudienceListRequest message.
|
|
5444
|
+
* @param message Plain object to verify
|
|
5445
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
5446
|
+
*/
|
|
5447
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
5448
|
+
|
|
5449
|
+
/**
|
|
5450
|
+
* Creates a SheetExportAudienceListRequest message from a plain object. Also converts values to their respective internal types.
|
|
5451
|
+
* @param object Plain object
|
|
5452
|
+
* @returns SheetExportAudienceListRequest
|
|
5453
|
+
*/
|
|
5454
|
+
public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.SheetExportAudienceListRequest;
|
|
5455
|
+
|
|
5456
|
+
/**
|
|
5457
|
+
* Creates a plain object from a SheetExportAudienceListRequest message. Also converts values to other types if specified.
|
|
5458
|
+
* @param message SheetExportAudienceListRequest
|
|
5459
|
+
* @param [options] Conversion options
|
|
5460
|
+
* @returns Plain object
|
|
5461
|
+
*/
|
|
5462
|
+
public static toObject(message: google.analytics.data.v1alpha.SheetExportAudienceListRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
5463
|
+
|
|
5464
|
+
/**
|
|
5465
|
+
* Converts this SheetExportAudienceListRequest to JSON.
|
|
5466
|
+
* @returns JSON object
|
|
5467
|
+
*/
|
|
5468
|
+
public toJSON(): { [k: string]: any };
|
|
5469
|
+
|
|
5470
|
+
/**
|
|
5471
|
+
* Gets the default type url for SheetExportAudienceListRequest
|
|
5472
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
5473
|
+
* @returns The default type url
|
|
5474
|
+
*/
|
|
5475
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
5476
|
+
}
|
|
5477
|
+
|
|
5478
|
+
/** Properties of a SheetExportAudienceListResponse. */
|
|
5479
|
+
interface ISheetExportAudienceListResponse {
|
|
5480
|
+
|
|
5481
|
+
/** SheetExportAudienceListResponse spreadsheetUri */
|
|
5482
|
+
spreadsheetUri?: (string|null);
|
|
5483
|
+
|
|
5484
|
+
/** SheetExportAudienceListResponse spreadsheetId */
|
|
5485
|
+
spreadsheetId?: (string|null);
|
|
5486
|
+
|
|
5487
|
+
/** SheetExportAudienceListResponse rowCount */
|
|
5488
|
+
rowCount?: (number|null);
|
|
5489
|
+
|
|
5490
|
+
/** SheetExportAudienceListResponse audienceList */
|
|
5491
|
+
audienceList?: (google.analytics.data.v1alpha.IAudienceList|null);
|
|
5492
|
+
}
|
|
5493
|
+
|
|
5494
|
+
/** Represents a SheetExportAudienceListResponse. */
|
|
5495
|
+
class SheetExportAudienceListResponse implements ISheetExportAudienceListResponse {
|
|
5496
|
+
|
|
5497
|
+
/**
|
|
5498
|
+
* Constructs a new SheetExportAudienceListResponse.
|
|
5499
|
+
* @param [properties] Properties to set
|
|
5500
|
+
*/
|
|
5501
|
+
constructor(properties?: google.analytics.data.v1alpha.ISheetExportAudienceListResponse);
|
|
5502
|
+
|
|
5503
|
+
/** SheetExportAudienceListResponse spreadsheetUri. */
|
|
5504
|
+
public spreadsheetUri?: (string|null);
|
|
5505
|
+
|
|
5506
|
+
/** SheetExportAudienceListResponse spreadsheetId. */
|
|
5507
|
+
public spreadsheetId?: (string|null);
|
|
5508
|
+
|
|
5509
|
+
/** SheetExportAudienceListResponse rowCount. */
|
|
5510
|
+
public rowCount?: (number|null);
|
|
5511
|
+
|
|
5512
|
+
/** SheetExportAudienceListResponse audienceList. */
|
|
5513
|
+
public audienceList?: (google.analytics.data.v1alpha.IAudienceList|null);
|
|
5514
|
+
|
|
5515
|
+
/** SheetExportAudienceListResponse _spreadsheetUri. */
|
|
5516
|
+
public _spreadsheetUri?: "spreadsheetUri";
|
|
5517
|
+
|
|
5518
|
+
/** SheetExportAudienceListResponse _spreadsheetId. */
|
|
5519
|
+
public _spreadsheetId?: "spreadsheetId";
|
|
5520
|
+
|
|
5521
|
+
/** SheetExportAudienceListResponse _rowCount. */
|
|
5522
|
+
public _rowCount?: "rowCount";
|
|
5523
|
+
|
|
5524
|
+
/** SheetExportAudienceListResponse _audienceList. */
|
|
5525
|
+
public _audienceList?: "audienceList";
|
|
5526
|
+
|
|
5527
|
+
/**
|
|
5528
|
+
* Creates a new SheetExportAudienceListResponse instance using the specified properties.
|
|
5529
|
+
* @param [properties] Properties to set
|
|
5530
|
+
* @returns SheetExportAudienceListResponse instance
|
|
5531
|
+
*/
|
|
5532
|
+
public static create(properties?: google.analytics.data.v1alpha.ISheetExportAudienceListResponse): google.analytics.data.v1alpha.SheetExportAudienceListResponse;
|
|
5533
|
+
|
|
5534
|
+
/**
|
|
5535
|
+
* Encodes the specified SheetExportAudienceListResponse message. Does not implicitly {@link google.analytics.data.v1alpha.SheetExportAudienceListResponse.verify|verify} messages.
|
|
5536
|
+
* @param message SheetExportAudienceListResponse message or plain object to encode
|
|
5537
|
+
* @param [writer] Writer to encode to
|
|
5538
|
+
* @returns Writer
|
|
5539
|
+
*/
|
|
5540
|
+
public static encode(message: google.analytics.data.v1alpha.ISheetExportAudienceListResponse, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
5541
|
+
|
|
5542
|
+
/**
|
|
5543
|
+
* Encodes the specified SheetExportAudienceListResponse message, length delimited. Does not implicitly {@link google.analytics.data.v1alpha.SheetExportAudienceListResponse.verify|verify} messages.
|
|
5544
|
+
* @param message SheetExportAudienceListResponse message or plain object to encode
|
|
5545
|
+
* @param [writer] Writer to encode to
|
|
5546
|
+
* @returns Writer
|
|
5547
|
+
*/
|
|
5548
|
+
public static encodeDelimited(message: google.analytics.data.v1alpha.ISheetExportAudienceListResponse, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
5549
|
+
|
|
5550
|
+
/**
|
|
5551
|
+
* Decodes a SheetExportAudienceListResponse message from the specified reader or buffer.
|
|
5552
|
+
* @param reader Reader or buffer to decode from
|
|
5553
|
+
* @param [length] Message length if known beforehand
|
|
5554
|
+
* @returns SheetExportAudienceListResponse
|
|
5555
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
5556
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
5557
|
+
*/
|
|
5558
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.SheetExportAudienceListResponse;
|
|
5559
|
+
|
|
5560
|
+
/**
|
|
5561
|
+
* Decodes a SheetExportAudienceListResponse message from the specified reader or buffer, length delimited.
|
|
5562
|
+
* @param reader Reader or buffer to decode from
|
|
5563
|
+
* @returns SheetExportAudienceListResponse
|
|
5564
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
5565
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
5566
|
+
*/
|
|
5567
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.SheetExportAudienceListResponse;
|
|
5568
|
+
|
|
5569
|
+
/**
|
|
5570
|
+
* Verifies a SheetExportAudienceListResponse message.
|
|
5571
|
+
* @param message Plain object to verify
|
|
5572
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
5573
|
+
*/
|
|
5574
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
5575
|
+
|
|
5576
|
+
/**
|
|
5577
|
+
* Creates a SheetExportAudienceListResponse message from a plain object. Also converts values to their respective internal types.
|
|
5578
|
+
* @param object Plain object
|
|
5579
|
+
* @returns SheetExportAudienceListResponse
|
|
5580
|
+
*/
|
|
5581
|
+
public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.SheetExportAudienceListResponse;
|
|
5582
|
+
|
|
5583
|
+
/**
|
|
5584
|
+
* Creates a plain object from a SheetExportAudienceListResponse message. Also converts values to other types if specified.
|
|
5585
|
+
* @param message SheetExportAudienceListResponse
|
|
5586
|
+
* @param [options] Conversion options
|
|
5587
|
+
* @returns Plain object
|
|
5588
|
+
*/
|
|
5589
|
+
public static toObject(message: google.analytics.data.v1alpha.SheetExportAudienceListResponse, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
5590
|
+
|
|
5591
|
+
/**
|
|
5592
|
+
* Converts this SheetExportAudienceListResponse to JSON.
|
|
5593
|
+
* @returns JSON object
|
|
5594
|
+
*/
|
|
5595
|
+
public toJSON(): { [k: string]: any };
|
|
5596
|
+
|
|
5597
|
+
/**
|
|
5598
|
+
* Gets the default type url for SheetExportAudienceListResponse
|
|
5599
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
5600
|
+
* @returns The default type url
|
|
5601
|
+
*/
|
|
5602
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
5603
|
+
}
|
|
5604
|
+
|
|
4833
5605
|
/** Properties of an AudienceRow. */
|
|
4834
5606
|
interface IAudienceRow {
|
|
4835
5607
|
|
|
@@ -18893,6 +19665,9 @@ export namespace google {
|
|
|
18893
19665
|
|
|
18894
19666
|
/** Publishing librarySettings */
|
|
18895
19667
|
librarySettings?: (google.api.IClientLibrarySettings[]|null);
|
|
19668
|
+
|
|
19669
|
+
/** Publishing protoReferenceDocumentationUri */
|
|
19670
|
+
protoReferenceDocumentationUri?: (string|null);
|
|
18896
19671
|
}
|
|
18897
19672
|
|
|
18898
19673
|
/** Represents a Publishing. */
|
|
@@ -18931,6 +19706,9 @@ export namespace google {
|
|
|
18931
19706
|
/** Publishing librarySettings. */
|
|
18932
19707
|
public librarySettings: google.api.IClientLibrarySettings[];
|
|
18933
19708
|
|
|
19709
|
+
/** Publishing protoReferenceDocumentationUri. */
|
|
19710
|
+
public protoReferenceDocumentationUri: string;
|
|
19711
|
+
|
|
18934
19712
|
/**
|
|
18935
19713
|
* Creates a new Publishing instance using the specified properties.
|
|
18936
19714
|
* @param [properties] Properties to set
|
|
@@ -19511,6 +20289,21 @@ export namespace google {
|
|
|
19511
20289
|
|
|
19512
20290
|
/** DotnetSettings common */
|
|
19513
20291
|
common?: (google.api.ICommonLanguageSettings|null);
|
|
20292
|
+
|
|
20293
|
+
/** DotnetSettings renamedServices */
|
|
20294
|
+
renamedServices?: ({ [k: string]: string }|null);
|
|
20295
|
+
|
|
20296
|
+
/** DotnetSettings renamedResources */
|
|
20297
|
+
renamedResources?: ({ [k: string]: string }|null);
|
|
20298
|
+
|
|
20299
|
+
/** DotnetSettings ignoredResources */
|
|
20300
|
+
ignoredResources?: (string[]|null);
|
|
20301
|
+
|
|
20302
|
+
/** DotnetSettings forcedNamespaceAliases */
|
|
20303
|
+
forcedNamespaceAliases?: (string[]|null);
|
|
20304
|
+
|
|
20305
|
+
/** DotnetSettings handwrittenSignatures */
|
|
20306
|
+
handwrittenSignatures?: (string[]|null);
|
|
19514
20307
|
}
|
|
19515
20308
|
|
|
19516
20309
|
/** Represents a DotnetSettings. */
|
|
@@ -19525,6 +20318,21 @@ export namespace google {
|
|
|
19525
20318
|
/** DotnetSettings common. */
|
|
19526
20319
|
public common?: (google.api.ICommonLanguageSettings|null);
|
|
19527
20320
|
|
|
20321
|
+
/** DotnetSettings renamedServices. */
|
|
20322
|
+
public renamedServices: { [k: string]: string };
|
|
20323
|
+
|
|
20324
|
+
/** DotnetSettings renamedResources. */
|
|
20325
|
+
public renamedResources: { [k: string]: string };
|
|
20326
|
+
|
|
20327
|
+
/** DotnetSettings ignoredResources. */
|
|
20328
|
+
public ignoredResources: string[];
|
|
20329
|
+
|
|
20330
|
+
/** DotnetSettings forcedNamespaceAliases. */
|
|
20331
|
+
public forcedNamespaceAliases: string[];
|
|
20332
|
+
|
|
20333
|
+
/** DotnetSettings handwrittenSignatures. */
|
|
20334
|
+
public handwrittenSignatures: string[];
|
|
20335
|
+
|
|
19528
20336
|
/**
|
|
19529
20337
|
* Creates a new DotnetSettings instance using the specified properties.
|
|
19530
20338
|
* @param [properties] Properties to set
|
|
@@ -20024,7 +20832,10 @@ export namespace google {
|
|
|
20024
20832
|
CLOUD = 1,
|
|
20025
20833
|
ADS = 2,
|
|
20026
20834
|
PHOTOS = 3,
|
|
20027
|
-
STREET_VIEW = 4
|
|
20835
|
+
STREET_VIEW = 4,
|
|
20836
|
+
SHOPPING = 5,
|
|
20837
|
+
GEO = 6,
|
|
20838
|
+
GENERATIVE_AI = 7
|
|
20028
20839
|
}
|
|
20029
20840
|
|
|
20030
20841
|
/** ClientLibraryDestination enum. */
|