@maxim_mazurok/gapi.client.androidpublisher-v3 0.4.20260722 → 0.5.20260722
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/index.d.ts +322 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -178,6 +178,14 @@ declare namespace gapi.client {
|
|
|
178
178
|
/** Texture-compression-format-level targeting */
|
|
179
179
|
textureCompressionFormatTargeting?: TextureCompressionFormatTargeting;
|
|
180
180
|
}
|
|
181
|
+
interface AppContactInformation {
|
|
182
|
+
/** The contact email for this app. Always set. */
|
|
183
|
+
contactEmail?: string;
|
|
184
|
+
/** The contact phone for this app. Optionally provided by the developer. */
|
|
185
|
+
phoneNumber?: string;
|
|
186
|
+
/** The contact website url for this app. Optionally provided by the developer. */
|
|
187
|
+
websiteUrl?: string;
|
|
188
|
+
}
|
|
181
189
|
interface AppDetails {
|
|
182
190
|
/** The user-visible support email for this app. */
|
|
183
191
|
contactEmail?: string;
|
|
@@ -528,6 +536,74 @@ declare namespace gapi.client {
|
|
|
528
536
|
/** Only set for CANCEL_SURVEY_REASON_OTHERS. This is the user's freeform response to the survey. */
|
|
529
537
|
reasonUserInput?: string;
|
|
530
538
|
}
|
|
539
|
+
interface CatalogAppView {
|
|
540
|
+
/** Active versions of the app mapped from `android:versionName` manifest attributes. */
|
|
541
|
+
activeVersionNames?: string[];
|
|
542
|
+
/** The category of the app. */
|
|
543
|
+
appCategory?: 'APP_CATEGORY_UNSPECIFIED' | 'GAME' | 'APP';
|
|
544
|
+
/** Developer-provided contact information for the app. */
|
|
545
|
+
appContactInformation?: AppContactInformation;
|
|
546
|
+
/** The subcategory of the app e.g. "GAME_ACTION". */
|
|
547
|
+
appSubcategory?: string;
|
|
548
|
+
/** The token used for delivery of the app with the Google Play Inline Install API. */
|
|
549
|
+
deliveryToken?: string;
|
|
550
|
+
/** The developer details of the app. */
|
|
551
|
+
developerDetails?: DeveloperDetails;
|
|
552
|
+
/** The app may specify multiple sets of device compatibility requirements, and a device is considered compatible with the app if it satisfies at least one of `DeviceCompatibilityRequirements`. */
|
|
553
|
+
deviceCompatibilityRequirements?: DeviceCompatibilityRequirements[];
|
|
554
|
+
/** List of devices excluded from the app's distribution even if they are otherwise compatible with the requirements from device_compatibility_requirements. These are OR-ed, i.e. a device is excluded if it matches any of the identifiers. */
|
|
555
|
+
excludedDevicesByIdentifier?: DeviceIdentifier[];
|
|
556
|
+
/** List of devices excluded from the app's distribution even if they are otherwise compatible with the requirements from device_compatibility_requirements. A device is excluded if it matches any of given the selectors. */
|
|
557
|
+
excludedDevicesBySelector?: CatalogDeviceSelector[];
|
|
558
|
+
/** The date when the app was first released. */
|
|
559
|
+
firstReleaseDate?: Date;
|
|
560
|
+
/** Whether the app has ads. */
|
|
561
|
+
hasInAppAds?: boolean;
|
|
562
|
+
/** Whether the app has in-app purchases through Google Play. */
|
|
563
|
+
hasInAppPurchases?: boolean;
|
|
564
|
+
/** The IARC certificate ID for the app. */
|
|
565
|
+
iarcCertificateId?: string;
|
|
566
|
+
/** Whether the app is targeted to an adult-only (18+) audience. */
|
|
567
|
+
isAdultOnlyAudience?: boolean;
|
|
568
|
+
/** The timestamp when the app was last published. */
|
|
569
|
+
lastPublishTime?: string;
|
|
570
|
+
/** The localized store listings of the app which are shown on Google Play. */
|
|
571
|
+
localizedStoreListings?: LocalizedStoreListings;
|
|
572
|
+
/** The package name of the app. */
|
|
573
|
+
packageName?: string;
|
|
574
|
+
/** Required permissions declared by the app which apply for all Android SDK versions. */
|
|
575
|
+
permissions?: CatalogPermission[];
|
|
576
|
+
/** Required permissions declared by the app which apply for Android SDK versions SDK 23 and above. */
|
|
577
|
+
permissionsSdk23?: CatalogPermission[];
|
|
578
|
+
/** The price of the app in the United States. Empty if the app is free. */
|
|
579
|
+
priceInTheUnitedStates?: Money;
|
|
580
|
+
/** The URL of the app's privacy policy. */
|
|
581
|
+
privacyPolicyUrl?: string;
|
|
582
|
+
/** The sale price of the app in the United States. Only populated for paid apps with an active US sale. */
|
|
583
|
+
salePriceInTheUnitedStates?: Money;
|
|
584
|
+
}
|
|
585
|
+
interface CatalogDeviceSelector {
|
|
586
|
+
/** The device type selector. */
|
|
587
|
+
deviceTypeSelector?: 'DEVICE_TYPE_SELECTOR_UNSPECIFIED' | 'ANDROID_GO';
|
|
588
|
+
/** Defines a RAM selector for a device. */
|
|
589
|
+
ramSelector?: RamSelector;
|
|
590
|
+
/** The SOC selectors. A device matches the device selector if it matches any of the SOC selectors. */
|
|
591
|
+
socSelectors?: SocSelector[];
|
|
592
|
+
}
|
|
593
|
+
interface CatalogPermission {
|
|
594
|
+
/** The `maxSdkVersion` attribute indicating up to which Android SDK version the permission is requested. */
|
|
595
|
+
maxSdkVersion?: number;
|
|
596
|
+
/** The `name` attribute indicating the permission name. */
|
|
597
|
+
name?: string;
|
|
598
|
+
}
|
|
599
|
+
interface CatalogSdkVersion {
|
|
600
|
+
/** The maximum SDK version required for the app (inclusive). */
|
|
601
|
+
maxSdkVersion?: string;
|
|
602
|
+
/** The minimum SDK version required for the app (inclusive). */
|
|
603
|
+
minSdkVersion?: string;
|
|
604
|
+
/** The target SDK version for the app. */
|
|
605
|
+
targetSdkVersion?: string;
|
|
606
|
+
}
|
|
531
607
|
interface CoarseLocation {
|
|
532
608
|
/** Optional. Highest administrative subdivision which is used for postal addresses of a country or region. For example, this can be a state, a province, an oblast, or a prefecture. For Spain, this is the province and not the autonomous community (for example, "Barcelona" and not "Catalonia"). Many countries don't use an administrative area in postal addresses. For example, in Switzerland, this should be left unpopulated. */
|
|
533
609
|
administrativeArea?: string;
|
|
@@ -544,6 +620,31 @@ declare namespace gapi.client {
|
|
|
544
620
|
/** A comment from a user. */
|
|
545
621
|
userComment?: UserComment;
|
|
546
622
|
}
|
|
623
|
+
interface CompatibleScreen {
|
|
624
|
+
/** Screen density. */
|
|
625
|
+
density?:
|
|
626
|
+
| 'DENSITY_UNSPECIFIED'
|
|
627
|
+
| 'DENSITY_NODPI'
|
|
628
|
+
| 'DENSITY_LDPI'
|
|
629
|
+
| 'DENSITY_MDPI'
|
|
630
|
+
| 'DENSITY_TVDPI'
|
|
631
|
+
| 'DENSITY_HDPI'
|
|
632
|
+
| 'DENSITY_280'
|
|
633
|
+
| 'DENSITY_XHDPI'
|
|
634
|
+
| 'DENSITY_360'
|
|
635
|
+
| 'DENSITY_400'
|
|
636
|
+
| 'DENSITY_420'
|
|
637
|
+
| 'DENSITY_XXHDPI'
|
|
638
|
+
| 'DENSITY_560'
|
|
639
|
+
| 'DENSITY_XXXHDPI';
|
|
640
|
+
/** The screen size. */
|
|
641
|
+
screenSize?:
|
|
642
|
+
| 'SCREEN_SIZE_UNSPECIFIED'
|
|
643
|
+
| 'SCREEN_SIZE_SMALL'
|
|
644
|
+
| 'SCREEN_SIZE_NORMAL'
|
|
645
|
+
| 'SCREEN_SIZE_LARGE'
|
|
646
|
+
| 'SCREEN_SIZE_EXTRA_LARGE';
|
|
647
|
+
}
|
|
547
648
|
interface ConsumptionUsageEvent {
|
|
548
649
|
/** Optional. Free form text that allows developers to provide more info on the item consumed. Maximum length is 5000 characters. */
|
|
549
650
|
consumptionItemDescription?: string;
|
|
@@ -746,7 +847,53 @@ declare namespace gapi.client {
|
|
|
746
847
|
/** The content of the comment, i.e. reply body. */
|
|
747
848
|
text?: string;
|
|
748
849
|
}
|
|
850
|
+
interface DeveloperDetails {
|
|
851
|
+
/** The physical address of the developer. */
|
|
852
|
+
address?: string;
|
|
853
|
+
/** The contact email of the developer. */
|
|
854
|
+
contactEmail?: string;
|
|
855
|
+
/** The developer name of the app. */
|
|
856
|
+
developerName?: string;
|
|
857
|
+
/** The phone number of the developer. */
|
|
858
|
+
phoneNumber?: string;
|
|
859
|
+
/** The website of the developer. */
|
|
860
|
+
website?: string;
|
|
861
|
+
}
|
|
749
862
|
interface DeveloperInitiatedCancellation {}
|
|
863
|
+
interface DeviceCompatibilityRequirements {
|
|
864
|
+
/** Compatible screens as listed in the `compatible-screens` Manifest tag. */
|
|
865
|
+
compatibleScreens?: CompatibleScreen[];
|
|
866
|
+
/** Required version of OpenGL ES. */
|
|
867
|
+
glEsVersion?: number;
|
|
868
|
+
/** Specifies if the app requires a screen. */
|
|
869
|
+
isScreenRequired?: boolean;
|
|
870
|
+
/** List of required ABIs (Application Binary Interface), e.g. `armeabi` or `x86`. */
|
|
871
|
+
nativePlatforms?: string[];
|
|
872
|
+
/** List of required libraries as declared in the `uses-library` manifest tag. */
|
|
873
|
+
requiredSoftwareLibraries?: string[];
|
|
874
|
+
/** The system features that the app requires. A device must have all of the system features to be considered compatible with the app. */
|
|
875
|
+
requiredSystemFeatures?: string[];
|
|
876
|
+
/** Specifies the minimum smallest width required of the screen. */
|
|
877
|
+
requiresSmallestWidthDp?: string;
|
|
878
|
+
/** Defines a range of SDK versions that the app is compatible with. */
|
|
879
|
+
sdkVersion?: CatalogSdkVersion;
|
|
880
|
+
/** Supported gl textures as specified by the `supported-gl-texture` Manifest tag. */
|
|
881
|
+
supportedGlTextures?: string[];
|
|
882
|
+
/** Compatible screens as listed in the `supports-screens` Manifest tag. */
|
|
883
|
+
supportedScreens?:
|
|
884
|
+
| 'SCREEN_SIZE_UNSPECIFIED'
|
|
885
|
+
| 'SCREEN_SIZE_SMALL'
|
|
886
|
+
| 'SCREEN_SIZE_NORMAL'
|
|
887
|
+
| 'SCREEN_SIZE_LARGE'
|
|
888
|
+
| 'SCREEN_SIZE_EXTRA_LARGE'[];
|
|
889
|
+
/** Value of `android:use32BitAbi` flag retrieved from the Manifest. */
|
|
890
|
+
use32BitAbi?:
|
|
891
|
+
| 'USE_32_BIT_ABI_UNSPECIFIED'
|
|
892
|
+
| 'USE_32_BIT_ABI_TRUE'
|
|
893
|
+
| 'USE_32_BIT_ABI_OTHER';
|
|
894
|
+
/** Lists all configurations marked as required by use of the `uses-configuration` manifest tag. Each instance of this proto represents a single `uses-configuration` entry. See http://developer.android.com/guide/topics/manifest/uses-configuration-element.html */
|
|
895
|
+
usesConfigurations?: UsesConfiguration[];
|
|
896
|
+
}
|
|
750
897
|
interface DeviceFeature {
|
|
751
898
|
/** Name of the feature. */
|
|
752
899
|
featureName?: string;
|
|
@@ -769,6 +916,12 @@ declare namespace gapi.client {
|
|
|
769
916
|
/** Value of Build.DEVICE. */
|
|
770
917
|
buildDevice?: string;
|
|
771
918
|
}
|
|
919
|
+
interface DeviceIdentifier {
|
|
920
|
+
/** The brand of the device. */
|
|
921
|
+
deviceBrand?: string;
|
|
922
|
+
/** The model of the device. */
|
|
923
|
+
deviceModel?: string;
|
|
924
|
+
}
|
|
772
925
|
interface DeviceMetadata {
|
|
773
926
|
/** Device CPU make, e.g. "Qualcomm" */
|
|
774
927
|
cpuMake?: string;
|
|
@@ -1093,6 +1246,10 @@ declare namespace gapi.client {
|
|
|
1093
1246
|
/** A URL that will serve a preview of the image. */
|
|
1094
1247
|
url?: string;
|
|
1095
1248
|
}
|
|
1249
|
+
interface ImageAsset {
|
|
1250
|
+
/** The URL of the image asset. */
|
|
1251
|
+
imageUrl?: string;
|
|
1252
|
+
}
|
|
1096
1253
|
interface ImagesDeleteAllResponse {
|
|
1097
1254
|
/** The deleted images. */
|
|
1098
1255
|
deleted?: Image[];
|
|
@@ -1337,6 +1494,12 @@ declare namespace gapi.client {
|
|
|
1337
1494
|
/** The one-time products from the specified app. */
|
|
1338
1495
|
oneTimeProducts?: OneTimeProduct[];
|
|
1339
1496
|
}
|
|
1497
|
+
interface ListRecentUpdateEventsResponse {
|
|
1498
|
+
/** A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. */
|
|
1499
|
+
nextPageToken?: string;
|
|
1500
|
+
/** The list of recent update events. */
|
|
1501
|
+
recentUpdateEvents?: RecentUpdateEvent[];
|
|
1502
|
+
}
|
|
1340
1503
|
interface ListReleaseSummariesResponse {
|
|
1341
1504
|
/** List of releases for this track. A maximum of 20 releases can be returned. */
|
|
1342
1505
|
releases?: ReleaseSummary[];
|
|
@@ -1359,6 +1522,33 @@ declare namespace gapi.client {
|
|
|
1359
1522
|
/** The resulting users. */
|
|
1360
1523
|
users?: User[];
|
|
1361
1524
|
}
|
|
1525
|
+
interface LocalizedStoreListing {
|
|
1526
|
+
/** The name of the app in this localization. */
|
|
1527
|
+
appName?: string;
|
|
1528
|
+
/** The feature graphic of the app. */
|
|
1529
|
+
featureGraphic?: ImageAsset;
|
|
1530
|
+
/** A longer description of the app in this localization. */
|
|
1531
|
+
fullDescription?: string;
|
|
1532
|
+
/** The icon of the app. */
|
|
1533
|
+
icon?: ImageAsset;
|
|
1534
|
+
/** The BCP-47 language code for this localization. */
|
|
1535
|
+
languageCode?: string;
|
|
1536
|
+
/** The phone screenshots of the app. */
|
|
1537
|
+
phoneScreenshots?: ScreenshotSet;
|
|
1538
|
+
/** A short description of the app in this localization. */
|
|
1539
|
+
shortDescription?: string;
|
|
1540
|
+
/** The regular tablet screenshots of the app. */
|
|
1541
|
+
tabletRegularScreenshots?: ScreenshotSet;
|
|
1542
|
+
/** The small tablet screenshots of the app. */
|
|
1543
|
+
tabletSmallScreenshots?: ScreenshotSet;
|
|
1544
|
+
/** The video of the app. */
|
|
1545
|
+
video?: VideoAsset;
|
|
1546
|
+
}
|
|
1547
|
+
interface LocalizedStoreListings {
|
|
1548
|
+
/** The default language code of the app. If a localized store listing is not available for a given language, assets from the default language are used instead. */
|
|
1549
|
+
defaultLanguageCode?: string;
|
|
1550
|
+
localizedStoreListings?: LocalizedStoreListing[];
|
|
1551
|
+
}
|
|
1362
1552
|
interface LocalizedText {
|
|
1363
1553
|
/** Language localization code (a BCP-47 language tag; for example, "de-AT" for Austrian German). */
|
|
1364
1554
|
language?: string;
|
|
@@ -2003,6 +2193,22 @@ declare namespace gapi.client {
|
|
|
2003
2193
|
purchaseState?:
|
|
2004
2194
|
'PURCHASE_STATE_UNSPECIFIED' | 'PURCHASED' | 'CANCELLED' | 'PENDING';
|
|
2005
2195
|
}
|
|
2196
|
+
interface RamSelector {
|
|
2197
|
+
/** This will match any device that has less than or equal ram_mb_less_than_or_equal mb of RAM. */
|
|
2198
|
+
ramMbLessThanOrEqual?: string;
|
|
2199
|
+
}
|
|
2200
|
+
interface RecentAppView {
|
|
2201
|
+
/** Recently updated app view. */
|
|
2202
|
+
appView?: CatalogAppView;
|
|
2203
|
+
}
|
|
2204
|
+
interface RecentUpdateEvent {
|
|
2205
|
+
/** The timestamp of the update. */
|
|
2206
|
+
eventTime?: string;
|
|
2207
|
+
/** The package name of the app. */
|
|
2208
|
+
playAppPackageName?: string;
|
|
2209
|
+
/** The type of the update event. */
|
|
2210
|
+
updateType?: 'UPDATE_TYPE_UNSPECIFIED' | 'MODIFICATION' | 'DELETION';
|
|
2211
|
+
}
|
|
2006
2212
|
interface RecurringExternalTransaction {
|
|
2007
2213
|
/** Details of an external subscription. */
|
|
2008
2214
|
externalSubscription?: ExternalSubscription;
|
|
@@ -2260,6 +2466,10 @@ declare namespace gapi.client {
|
|
|
2260
2466
|
/** Value of a screen density. */
|
|
2261
2467
|
value?: ScreenDensity[];
|
|
2262
2468
|
}
|
|
2469
|
+
interface ScreenshotSet {
|
|
2470
|
+
/** The image assets of the screenshots. */
|
|
2471
|
+
screenshots?: ImageAsset[];
|
|
2472
|
+
}
|
|
2263
2473
|
interface SdkVersion {
|
|
2264
2474
|
/** Inclusive minimum value of an sdk version. */
|
|
2265
2475
|
min?: number;
|
|
@@ -2276,6 +2486,12 @@ declare namespace gapi.client {
|
|
|
2276
2486
|
/** A vanity code was applied. */
|
|
2277
2487
|
vanityCode?: VanityCode;
|
|
2278
2488
|
}
|
|
2489
|
+
interface SocSelector {
|
|
2490
|
+
/** The manufacturer of the SoC. */
|
|
2491
|
+
socMake?: string;
|
|
2492
|
+
/** The model of the SoC. */
|
|
2493
|
+
socModel?: string;
|
|
2494
|
+
}
|
|
2279
2495
|
interface SplitApkMetadata {
|
|
2280
2496
|
/** Indicates whether this APK is the main split of the module. */
|
|
2281
2497
|
isMasterSplit?: boolean;
|
|
@@ -2881,6 +3097,34 @@ declare namespace gapi.client {
|
|
|
2881
3097
|
/** The time at which the subscription was canceled by the user. The user might still have access to the subscription after this time. Use line_items.expiry_time to determine if a user still has access. */
|
|
2882
3098
|
cancelTime?: string;
|
|
2883
3099
|
}
|
|
3100
|
+
interface UsesConfiguration {
|
|
3101
|
+
/** The type of keyboard required. */
|
|
3102
|
+
requiredKeyboardType?:
|
|
3103
|
+
| 'KEYBOARD_TYPE_UNSPECIFIED'
|
|
3104
|
+
| 'KEYBOARD_TYPE_UNDEFINED'
|
|
3105
|
+
| 'KEYBOARD_TYPE_NO_KEYS'
|
|
3106
|
+
| 'KEYBOARD_TYPE_QWERTY'
|
|
3107
|
+
| 'KEYBOARD_TYPE_TWELVE_KEY';
|
|
3108
|
+
/** The navigation device required. */
|
|
3109
|
+
requiredNavigationType?:
|
|
3110
|
+
| 'NAVIGATION_TYPE_UNSPECIFIED'
|
|
3111
|
+
| 'NAVIGATION_TYPE_UNDEFINED'
|
|
3112
|
+
| 'NAVIGATION_TYPE_NO_NAVIGATION'
|
|
3113
|
+
| 'NAVIGATION_TYPE_DPAD'
|
|
3114
|
+
| 'NAVIGATION_TYPE_TRACKBALL'
|
|
3115
|
+
| 'NAVIGATION_TYPE_WHEEL';
|
|
3116
|
+
/** The type of touchscreen required. */
|
|
3117
|
+
requiredTouchscreenType?:
|
|
3118
|
+
| 'TOUCHSCREEN_TYPE_UNSPECIFIED'
|
|
3119
|
+
| 'TOUCHSCREEN_TYPE_UNDEFINED'
|
|
3120
|
+
| 'TOUCHSCREEN_TYPE_NO_TOUCHSCREEN'
|
|
3121
|
+
| 'TOUCHSCREEN_TYPE_STYLUS'
|
|
3122
|
+
| 'TOUCHSCREEN_TYPE_FINGER';
|
|
3123
|
+
/** Whether or not the application requires a five-way navigation control. */
|
|
3124
|
+
requiresFiveWayNavigation?: boolean;
|
|
3125
|
+
/** Whether or not the application requires a hardware keyboard. */
|
|
3126
|
+
requiresHardwareKeyboard?: boolean;
|
|
3127
|
+
}
|
|
2884
3128
|
interface UsesPermission {
|
|
2885
3129
|
/** Optionally, the maximum SDK version for which the permission is required. */
|
|
2886
3130
|
maxSdkVersion?: number;
|
|
@@ -2911,6 +3155,10 @@ declare namespace gapi.client {
|
|
|
2911
3155
|
/** Texture-compression-format-level targeting */
|
|
2912
3156
|
textureCompressionFormatTargeting?: TextureCompressionFormatTargeting;
|
|
2913
3157
|
}
|
|
3158
|
+
interface VideoAsset {
|
|
3159
|
+
/** The URL of the video asset. */
|
|
3160
|
+
videoUrl?: string;
|
|
3161
|
+
}
|
|
2914
3162
|
interface VoidedPurchase {
|
|
2915
3163
|
/** This kind represents a voided purchase object in the androidpublisher service. */
|
|
2916
3164
|
kind?: string;
|
|
@@ -3795,6 +4043,78 @@ declare namespace gapi.client {
|
|
|
3795
4043
|
body: UploadImageRequest,
|
|
3796
4044
|
): Request<UploadImageResponse>;
|
|
3797
4045
|
}
|
|
4046
|
+
interface RecentappviewsResource {
|
|
4047
|
+
/** Returns metadata about a recently updated app. */
|
|
4048
|
+
get(request?: {
|
|
4049
|
+
/** V1 error format. */
|
|
4050
|
+
'$.xgafv'?: '1' | '2';
|
|
4051
|
+
/** OAuth access token. */
|
|
4052
|
+
access_token?: string;
|
|
4053
|
+
/** Data format for response. */
|
|
4054
|
+
alt?: 'json' | 'media' | 'proto';
|
|
4055
|
+
/** Required. The package name of the app store on behalf of which the request is made. */
|
|
4056
|
+
appStorePackageName: string;
|
|
4057
|
+
/** JSONP */
|
|
4058
|
+
callback?: string;
|
|
4059
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4060
|
+
fields?: string;
|
|
4061
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
4062
|
+
key?: string;
|
|
4063
|
+
/** OAuth 2.0 token for the current user. */
|
|
4064
|
+
oauth_token?: string;
|
|
4065
|
+
/** Required. The package name of the requested Play app. */
|
|
4066
|
+
playAppPackageName: string;
|
|
4067
|
+
/** Returns response with indentations and line breaks. */
|
|
4068
|
+
prettyPrint?: boolean;
|
|
4069
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
4070
|
+
quotaUser?: string;
|
|
4071
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4072
|
+
upload_protocol?: string;
|
|
4073
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4074
|
+
uploadType?: string;
|
|
4075
|
+
}): Request<RecentAppView>;
|
|
4076
|
+
}
|
|
4077
|
+
interface RecentupdateeventsResource {
|
|
4078
|
+
/** Lists update events for eligible apps in the given time range. */
|
|
4079
|
+
list(request?: {
|
|
4080
|
+
/** V1 error format. */
|
|
4081
|
+
'$.xgafv'?: '1' | '2';
|
|
4082
|
+
/** OAuth access token. */
|
|
4083
|
+
access_token?: string;
|
|
4084
|
+
/** Data format for response. */
|
|
4085
|
+
alt?: 'json' | 'media' | 'proto';
|
|
4086
|
+
/** Required. The package name of the app store on behalf of which the request is made. */
|
|
4087
|
+
appStorePackageName: string;
|
|
4088
|
+
/** JSONP */
|
|
4089
|
+
callback?: string;
|
|
4090
|
+
/** Required. The end time of the range (exclusive). */
|
|
4091
|
+
endTime?: string;
|
|
4092
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4093
|
+
fields?: string;
|
|
4094
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
4095
|
+
key?: string;
|
|
4096
|
+
/** OAuth 2.0 token for the current user. */
|
|
4097
|
+
oauth_token?: string;
|
|
4098
|
+
/** Optional. The maximum number of update events to return. The service may return fewer than this value. If unspecified, at most 100 update events will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000. */
|
|
4099
|
+
pageSize?: number;
|
|
4100
|
+
/** Optional. A page token, received from a previous `ListRecentUpdateEvents` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListRecentUpdateEvents` must match the call that provided the page token. */
|
|
4101
|
+
pageToken?: string;
|
|
4102
|
+
/** Returns response with indentations and line breaks. */
|
|
4103
|
+
prettyPrint?: boolean;
|
|
4104
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
4105
|
+
quotaUser?: string;
|
|
4106
|
+
/** Required. The start time of the range (inclusive). */
|
|
4107
|
+
startTime?: string;
|
|
4108
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4109
|
+
upload_protocol?: string;
|
|
4110
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4111
|
+
uploadType?: string;
|
|
4112
|
+
}): Request<ListRecentUpdateEventsResponse>;
|
|
4113
|
+
}
|
|
4114
|
+
interface AppstorecatalogResource {
|
|
4115
|
+
recentappviews: RecentappviewsResource;
|
|
4116
|
+
recentupdateevents: RecentupdateeventsResource;
|
|
4117
|
+
}
|
|
3798
4118
|
interface ApksResource {
|
|
3799
4119
|
/** Creates a new APK without uploading the APK itself to Google Play, instead hosting the APK at a specified URL. This function is only available to organizations using Managed Play whose application is configured to restrict distribution to the organizations. */
|
|
3800
4120
|
addexternallyhosted(request: {
|
|
@@ -9938,6 +10258,8 @@ declare namespace gapi.client {
|
|
|
9938
10258
|
|
|
9939
10259
|
const appstoreappsreview: AppstoreappsreviewResource;
|
|
9940
10260
|
|
|
10261
|
+
const appstorecatalog: AppstorecatalogResource;
|
|
10262
|
+
|
|
9941
10263
|
const edits: EditsResource;
|
|
9942
10264
|
|
|
9943
10265
|
const externaltransactions: ExternaltransactionsResource;
|