@maxim_mazurok/gapi.client.walletobjects-v1 0.0.20250203 → 0.0.20250204
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 +74 -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://walletobjects.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250204
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -1811,6 +1811,15 @@ declare namespace gapi.client {
|
|
|
1811
1811
|
/** Type of animation. */
|
|
1812
1812
|
animationType?: string;
|
|
1813
1813
|
}
|
|
1814
|
+
interface SetPassUpdateNoticeRequest {
|
|
1815
|
+
/** Required. A fully qualified identifier of the pass that the issuer wants to notify the pass holder(s) about. Formatted as . */
|
|
1816
|
+
externalPassId?: string;
|
|
1817
|
+
/** Required. The JWT signature of the updated pass that the issuer wants to notify Google about. Only devices that report a different JWT signature than this JWT signature will receive the update notification. */
|
|
1818
|
+
updatedPassJwtSignature?: string;
|
|
1819
|
+
/** Required. The issuer endpoint URI the pass holder needs to follow in order to receive an updated pass JWT. It can not contain any sensitive information. The endpoint needs to authenticate the user before giving the user the updated JWT. Example update URI https://someissuer.com/update/passId=someExternalPassId */
|
|
1820
|
+
updateUri?: string;
|
|
1821
|
+
}
|
|
1822
|
+
interface SetPassUpdateNoticeResponse {}
|
|
1814
1823
|
interface SignUpInfo {
|
|
1815
1824
|
/** ID of the class the user can sign up for. */
|
|
1816
1825
|
classId?: string;
|
|
@@ -6844,6 +6853,68 @@ declare namespace gapi.client {
|
|
|
6844
6853
|
body: TransitObject,
|
|
6845
6854
|
): Request<TransitObject>;
|
|
6846
6855
|
}
|
|
6856
|
+
interface PrivateContentResource {
|
|
6857
|
+
/** Provide Google with information about awaiting private pass update. This will allow Google to provide the update notification to the device that currently holds this pass. */
|
|
6858
|
+
setPassUpdateNotice(request: {
|
|
6859
|
+
/** V1 error format. */
|
|
6860
|
+
'$.xgafv'?: string;
|
|
6861
|
+
/** OAuth access token. */
|
|
6862
|
+
access_token?: string;
|
|
6863
|
+
/** Data format for response. */
|
|
6864
|
+
alt?: string;
|
|
6865
|
+
/** JSONP */
|
|
6866
|
+
callback?: string;
|
|
6867
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
6868
|
+
fields?: string;
|
|
6869
|
+
/** 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. */
|
|
6870
|
+
key?: string;
|
|
6871
|
+
/** OAuth 2.0 token for the current user. */
|
|
6872
|
+
oauth_token?: string;
|
|
6873
|
+
/** Returns response with indentations and line breaks. */
|
|
6874
|
+
prettyPrint?: boolean;
|
|
6875
|
+
/** 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. */
|
|
6876
|
+
quotaUser?: string;
|
|
6877
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
6878
|
+
upload_protocol?: string;
|
|
6879
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
6880
|
+
uploadType?: string;
|
|
6881
|
+
/** Request body */
|
|
6882
|
+
resource: SetPassUpdateNoticeRequest;
|
|
6883
|
+
}): Request<{}>;
|
|
6884
|
+
setPassUpdateNotice(
|
|
6885
|
+
request: {
|
|
6886
|
+
/** V1 error format. */
|
|
6887
|
+
'$.xgafv'?: string;
|
|
6888
|
+
/** OAuth access token. */
|
|
6889
|
+
access_token?: string;
|
|
6890
|
+
/** Data format for response. */
|
|
6891
|
+
alt?: string;
|
|
6892
|
+
/** JSONP */
|
|
6893
|
+
callback?: string;
|
|
6894
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
6895
|
+
fields?: string;
|
|
6896
|
+
/** 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. */
|
|
6897
|
+
key?: string;
|
|
6898
|
+
/** OAuth 2.0 token for the current user. */
|
|
6899
|
+
oauth_token?: string;
|
|
6900
|
+
/** Returns response with indentations and line breaks. */
|
|
6901
|
+
prettyPrint?: boolean;
|
|
6902
|
+
/** 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. */
|
|
6903
|
+
quotaUser?: string;
|
|
6904
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
6905
|
+
upload_protocol?: string;
|
|
6906
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
6907
|
+
uploadType?: string;
|
|
6908
|
+
},
|
|
6909
|
+
body: SetPassUpdateNoticeRequest,
|
|
6910
|
+
): Request<{}>;
|
|
6911
|
+
}
|
|
6912
|
+
interface V1Resource {
|
|
6913
|
+
privateContent: PrivateContentResource;
|
|
6914
|
+
}
|
|
6915
|
+
interface WalletobjectsResource {
|
|
6916
|
+
v1: V1Resource;
|
|
6917
|
+
}
|
|
6847
6918
|
|
|
6848
6919
|
const eventticketclass: EventticketclassResource;
|
|
6849
6920
|
|
|
@@ -6882,5 +6953,7 @@ declare namespace gapi.client {
|
|
|
6882
6953
|
const transitclass: TransitclassResource;
|
|
6883
6954
|
|
|
6884
6955
|
const transitobject: TransitobjectResource;
|
|
6956
|
+
|
|
6957
|
+
const walletobjects: WalletobjectsResource;
|
|
6885
6958
|
}
|
|
6886
6959
|
}
|