@pushwoosh/rpc-v2-http-api-data 0.1.707 → 0.1.708

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.
@@ -3,6 +3,7 @@ export interface ApplicationsConfigurationsService {
3
3
  EnablePlatform(request: EnablePlatformRequest): Promise<EnablePlatformResponse>;
4
4
  }
5
5
  export type AndroidConfiguration = {
6
+ androidFramework: string;
6
7
  androidFcmServiceAccount: string;
7
8
  };
8
9
  export type ChromeConfiguration = {
@@ -17,6 +18,7 @@ export type EmailConfiguration = {
17
18
  emailReplyEmail: string;
18
19
  };
19
20
  export type HuaweiConfiguration = {
21
+ huaweiAndroidFramework: string;
20
22
  huaweiAndroidAppId: string;
21
23
  huaweiAndroidAppSecret: string;
22
24
  };
@@ -35,6 +37,7 @@ export type WindowsConfiguration = {
35
37
  export type AmazonConfiguration = {
36
38
  admCid: string;
37
39
  admSecret: string;
40
+ admFramework: string;
38
41
  };
39
42
  export type OSXConfiguration = {
40
43
  macosGateway: number;
@@ -67,6 +70,7 @@ export type FirefoxConfiguration = {
67
70
  };
68
71
  export type BaiduConfiguration = {
69
72
  baiduAndroidApiKey: string;
73
+ baiduAndroidFramework: string;
70
74
  baiduAndroidSecretKey: string;
71
75
  };
72
76
  export type LineConfiguration = {
package/data.js CHANGED
@@ -2317,6 +2317,9 @@ export const data = {
2317
2317
  "pushwoosh.rpc_v2.applications_configurations.AndroidConfiguration": {
2318
2318
  "type": "I",
2319
2319
  "fields": {
2320
+ "androidFramework": {
2321
+ "type": "string"
2322
+ },
2320
2323
  "androidFcmServiceAccount": {
2321
2324
  "type": "string"
2322
2325
  }
@@ -2356,6 +2359,9 @@ export const data = {
2356
2359
  "pushwoosh.rpc_v2.applications_configurations.HuaweiConfiguration": {
2357
2360
  "type": "I",
2358
2361
  "fields": {
2362
+ "huaweiAndroidFramework": {
2363
+ "type": "string"
2364
+ },
2359
2365
  "huaweiAndroidAppId": {
2360
2366
  "type": "string"
2361
2367
  },
@@ -2407,6 +2413,9 @@ export const data = {
2407
2413
  },
2408
2414
  "admSecret": {
2409
2415
  "type": "string"
2416
+ },
2417
+ "admFramework": {
2418
+ "type": "string"
2410
2419
  }
2411
2420
  }
2412
2421
  },
@@ -2498,6 +2507,9 @@ export const data = {
2498
2507
  "baiduAndroidApiKey": {
2499
2508
  "type": "string"
2500
2509
  },
2510
+ "baiduAndroidFramework": {
2511
+ "type": "string"
2512
+ },
2501
2513
  "baiduAndroidSecretKey": {
2502
2514
  "type": "string"
2503
2515
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-v2-http-api-data",
3
- "version": "0.1.707",
3
+ "version": "0.1.708",
4
4
  "description": "RPC V2 HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",