@pushwoosh/rpc-v2-http-api-data 0.1.962 → 0.1.963

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.
@@ -106,6 +106,15 @@ export type WebConfiguration = {
106
106
  webVapidPrivateKey: string;
107
107
  autogenerate: boolean;
108
108
  };
109
+ /**
110
+ * GoogleWalletConfiguration carries per-application Google Wallet issuer
111
+ * credentials: the GCP service account key (JSON) and the issuer id from the
112
+ * Google Pay & Wallet Console. Consumed by apple-passkit-service.
113
+ */
114
+ export type GoogleWalletConfiguration = {
115
+ googleWalletServiceAccount: string;
116
+ googleWalletIssuerId: string;
117
+ };
109
118
  export type ConfigurationRequest_kind_androidConfiguration = {
110
119
  type: 'androidConfiguration';
111
120
  data: AndroidConfiguration;
@@ -182,7 +191,11 @@ export type ConfigurationRequest_kind_telegramConfiguration = {
182
191
  type: 'telegramConfiguration';
183
192
  data: TelegramConfiguration;
184
193
  };
185
- export type ConfigurationRequest_kind = ConfigurationRequest_kind_androidConfiguration | ConfigurationRequest_kind_chromeConfiguration | ConfigurationRequest_kind_emailConfiguration | ConfigurationRequest_kind_huaweiConfiguration | ConfigurationRequest_kind_safariConfiguration | ConfigurationRequest_kind_windowsConfiguration | ConfigurationRequest_kind_amazonConfiguration | ConfigurationRequest_kind_osxConfiguration | ConfigurationRequest_kind_osxTokenConfiguration | ConfigurationRequest_kind_iosConfiguration | ConfigurationRequest_kind_iosTokenConfiguration | ConfigurationRequest_kind_iosVoipConfiguration | ConfigurationRequest_kind_iosPasskitConfiguration | ConfigurationRequest_kind_firefoxConfiguration | ConfigurationRequest_kind_baiduConfiguration | ConfigurationRequest_kind_lineConfiguration | ConfigurationRequest_kind_webConfiguration | ConfigurationRequest_kind_kakaoConfiguration | ConfigurationRequest_kind_telegramConfiguration;
194
+ export type ConfigurationRequest_kind_googleWalletConfiguration = {
195
+ type: 'googleWalletConfiguration';
196
+ data: GoogleWalletConfiguration;
197
+ };
198
+ export type ConfigurationRequest_kind = ConfigurationRequest_kind_androidConfiguration | ConfigurationRequest_kind_chromeConfiguration | ConfigurationRequest_kind_emailConfiguration | ConfigurationRequest_kind_huaweiConfiguration | ConfigurationRequest_kind_safariConfiguration | ConfigurationRequest_kind_windowsConfiguration | ConfigurationRequest_kind_amazonConfiguration | ConfigurationRequest_kind_osxConfiguration | ConfigurationRequest_kind_osxTokenConfiguration | ConfigurationRequest_kind_iosConfiguration | ConfigurationRequest_kind_iosTokenConfiguration | ConfigurationRequest_kind_iosVoipConfiguration | ConfigurationRequest_kind_iosPasskitConfiguration | ConfigurationRequest_kind_firefoxConfiguration | ConfigurationRequest_kind_baiduConfiguration | ConfigurationRequest_kind_lineConfiguration | ConfigurationRequest_kind_webConfiguration | ConfigurationRequest_kind_kakaoConfiguration | ConfigurationRequest_kind_telegramConfiguration | ConfigurationRequest_kind_googleWalletConfiguration;
186
199
  export type ConfigurationRequest = {
187
200
  code?: string;
188
201
  kind: ConfigurationRequest_kind;
package/data.js CHANGED
@@ -3680,6 +3680,17 @@ export const data = {
3680
3680
  }
3681
3681
  }
3682
3682
  },
3683
+ "pushwoosh.rpc_v2.applications_configurations.GoogleWalletConfiguration": {
3684
+ "type": "I",
3685
+ "fields": {
3686
+ "googleWalletServiceAccount": {
3687
+ "type": "string"
3688
+ },
3689
+ "googleWalletIssuerId": {
3690
+ "type": "string"
3691
+ }
3692
+ }
3693
+ },
3683
3694
  "pushwoosh.rpc_v2.applications_configurations.ConfigurationRequest": {
3684
3695
  "type": "I",
3685
3696
  "fields": {
@@ -3742,6 +3753,9 @@ export const data = {
3742
3753
  },
3743
3754
  "telegramConfiguration": {
3744
3755
  "type": "pushwoosh.rpc_v2.applications_configurations.TelegramConfiguration"
3756
+ },
3757
+ "googleWalletConfiguration": {
3758
+ "type": "pushwoosh.rpc_v2.applications_configurations.GoogleWalletConfiguration"
3745
3759
  }
3746
3760
  },
3747
3761
  "oneofs": {
@@ -3765,7 +3779,8 @@ export const data = {
3765
3779
  "lineConfiguration",
3766
3780
  "webConfiguration",
3767
3781
  "kakaoConfiguration",
3768
- "telegramConfiguration"
3782
+ "telegramConfiguration",
3783
+ "googleWalletConfiguration"
3769
3784
  ]
3770
3785
  }
3771
3786
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-v2-http-api-data",
3
- "version": "0.1.962",
3
+ "version": "0.1.963",
4
4
  "description": "RPC V2 HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",