@maxim_mazurok/gapi.client.androidpublisher-v3 0.1.20260310 → 0.1.20260311
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 +54 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://androidpublisher.googleapis.com/$discovery/rest?version=v3
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20260311
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -204,6 +204,10 @@ declare namespace gapi.client {
|
|
|
204
204
|
versionCodeStart?: string;
|
|
205
205
|
}
|
|
206
206
|
interface ArchiveSubscriptionRequest {}
|
|
207
|
+
interface ArtifactSummary {
|
|
208
|
+
/** The version code of the artifact. */
|
|
209
|
+
versionCode?: number;
|
|
210
|
+
}
|
|
207
211
|
interface AssetModuleMetadata {
|
|
208
212
|
/** Indicates the delivery type for persistent install. */
|
|
209
213
|
deliveryType?: string;
|
|
@@ -1126,6 +1130,10 @@ declare namespace gapi.client {
|
|
|
1126
1130
|
/** The one-time products from the specified app. */
|
|
1127
1131
|
oneTimeProducts?: OneTimeProduct[];
|
|
1128
1132
|
}
|
|
1133
|
+
interface ListReleaseSummariesResponse {
|
|
1134
|
+
/** List of releases on this track. This excludes any releases that are obsolete. */
|
|
1135
|
+
releases?: ReleaseSummary[];
|
|
1136
|
+
}
|
|
1129
1137
|
interface ListSubscriptionOffersResponse {
|
|
1130
1138
|
/** A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. */
|
|
1131
1139
|
nextPageToken?: string;
|
|
@@ -1753,6 +1761,16 @@ declare namespace gapi.client {
|
|
|
1753
1761
|
/** Required. A string representing the version of available regions being used for the specified resource. Regional prices and latest supported version for the resource have to be specified according to the information published in [this article](https://support.google.com/googleplay/android-developer/answer/10532353). Each time the supported locations substantially change, the version will be incremented. Using this field will ensure that creating and updating the resource with an older region's version and set of regional prices and currencies will succeed even though a new version is available. */
|
|
1754
1762
|
version?: string;
|
|
1755
1763
|
}
|
|
1764
|
+
interface ReleaseSummary {
|
|
1765
|
+
/** List of active artifacts on this release. This does not include controlled artifacts. */
|
|
1766
|
+
activeArtifacts?: ArtifactSummary[];
|
|
1767
|
+
/** The lifecycle state of the release. */
|
|
1768
|
+
releaseLifecycleState?: string;
|
|
1769
|
+
/** The name of the release. */
|
|
1770
|
+
releaseName?: string;
|
|
1771
|
+
/** The alias of the track that this release belongs to. */
|
|
1772
|
+
track?: string;
|
|
1773
|
+
}
|
|
1756
1774
|
interface RemoteInAppUpdate {
|
|
1757
1775
|
/** Required. Set to true if Remote In-App Update action type is needed. */
|
|
1758
1776
|
isRemoteInAppUpdateRequested?: boolean;
|
|
@@ -2596,6 +2614,38 @@ declare namespace gapi.client {
|
|
|
2596
2614
|
uploadType?: string;
|
|
2597
2615
|
}): Request<ListDeviceTierConfigsResponse>;
|
|
2598
2616
|
}
|
|
2617
|
+
interface ReleasesResource {
|
|
2618
|
+
/** Returns the list of all releases for a given track. This excludes any releases that are obsolete. */
|
|
2619
|
+
list(request?: {
|
|
2620
|
+
/** V1 error format. */
|
|
2621
|
+
'$.xgafv'?: string;
|
|
2622
|
+
/** OAuth access token. */
|
|
2623
|
+
access_token?: string;
|
|
2624
|
+
/** Data format for response. */
|
|
2625
|
+
alt?: string;
|
|
2626
|
+
/** JSONP */
|
|
2627
|
+
callback?: string;
|
|
2628
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2629
|
+
fields?: string;
|
|
2630
|
+
/** 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. */
|
|
2631
|
+
key?: string;
|
|
2632
|
+
/** OAuth 2.0 token for the current user. */
|
|
2633
|
+
oauth_token?: string;
|
|
2634
|
+
/** Required. The parent track, which owns this collection of releases. Format: applications/{package_name}/tracks/{track} */
|
|
2635
|
+
parent: string;
|
|
2636
|
+
/** Returns response with indentations and line breaks. */
|
|
2637
|
+
prettyPrint?: boolean;
|
|
2638
|
+
/** 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. */
|
|
2639
|
+
quotaUser?: string;
|
|
2640
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2641
|
+
upload_protocol?: string;
|
|
2642
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2643
|
+
uploadType?: string;
|
|
2644
|
+
}): Request<ListReleaseSummariesResponse>;
|
|
2645
|
+
}
|
|
2646
|
+
interface TracksResource {
|
|
2647
|
+
releases: ReleasesResource;
|
|
2648
|
+
}
|
|
2599
2649
|
interface ApplicationsResource {
|
|
2600
2650
|
/** Writes the Safety Labels declaration of an app. */
|
|
2601
2651
|
dataSafety(request: {
|
|
@@ -2656,6 +2706,7 @@ declare namespace gapi.client {
|
|
|
2656
2706
|
body: SafetyLabelsUpdateRequest,
|
|
2657
2707
|
): Request<{}>;
|
|
2658
2708
|
deviceTierConfigs: DeviceTierConfigsResource;
|
|
2709
|
+
tracks: TracksResource;
|
|
2659
2710
|
}
|
|
2660
2711
|
interface ApprecoveryResource {
|
|
2661
2712
|
/** Incrementally update targeting for a recovery action. Note that only the criteria selected during the creation of recovery action can be expanded. */
|
|
@@ -4371,6 +4422,8 @@ declare namespace gapi.client {
|
|
|
4371
4422
|
alt?: string;
|
|
4372
4423
|
/** JSONP */
|
|
4373
4424
|
callback?: string;
|
|
4425
|
+
/** Optional. The behavior of committing a new edit while changes are already in review. */
|
|
4426
|
+
changesInReviewBehavior?: string;
|
|
4374
4427
|
/** When a rejection happens, the parameter will make sure that the changes in this edit won't be reviewed until they are explicitly sent for review from within the Google Play Console UI. These changes will be added to any other changes that are not yet sent for review. */
|
|
4375
4428
|
changesNotSentForReview?: boolean;
|
|
4376
4429
|
/** Identifier of the edit. */
|