@pushwoosh/rpc-v2-http-api-data 0.1.514 → 0.1.516
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.
|
@@ -70,6 +70,11 @@ export type FirefoxConfiguration = {
|
|
|
70
70
|
firefoxVapidPrivateKey: string;
|
|
71
71
|
firefoxFcmServiceAccount: string;
|
|
72
72
|
};
|
|
73
|
+
export type BaiduConfiguration = {
|
|
74
|
+
baiduAndroidApiKey: string;
|
|
75
|
+
baiduAndroidFramework: string;
|
|
76
|
+
baiduAndroidSecretKey: string;
|
|
77
|
+
};
|
|
73
78
|
export type ConfigurationRequest_kind_iosTokenConfiguration = {
|
|
74
79
|
type: 'iosTokenConfiguration';
|
|
75
80
|
data: IOSTokenConfiguration;
|
|
@@ -118,7 +123,11 @@ export type ConfigurationRequest_kind_firefoxConfiguration = {
|
|
|
118
123
|
type: 'firefoxConfiguration';
|
|
119
124
|
data: FirefoxConfiguration;
|
|
120
125
|
};
|
|
121
|
-
export type
|
|
126
|
+
export type ConfigurationRequest_kind_baiduConfiguration = {
|
|
127
|
+
type: 'baiduConfiguration';
|
|
128
|
+
data: BaiduConfiguration;
|
|
129
|
+
};
|
|
130
|
+
export type ConfigurationRequest_kind = ConfigurationRequest_kind_iosTokenConfiguration | ConfigurationRequest_kind_androidConfiguration | ConfigurationRequest_kind_chromeConfiguration | ConfigurationRequest_kind_emailConfiguration | ConfigurationRequest_kind_xiaomiConfiguration | ConfigurationRequest_kind_huaweiConfiguration | ConfigurationRequest_kind_safariConfiguration | ConfigurationRequest_kind_windowsConfiguration | ConfigurationRequest_kind_amazonConfiguration | ConfigurationRequest_kind_osxConfiguration | ConfigurationRequest_kind_iosConfiguration | ConfigurationRequest_kind_firefoxConfiguration | ConfigurationRequest_kind_baiduConfiguration;
|
|
122
131
|
export type ConfigurationRequest = {
|
|
123
132
|
code?: string;
|
|
124
133
|
kind: ConfigurationRequest_kind;
|
package/data.js
CHANGED
|
@@ -2347,6 +2347,20 @@ export const data = {
|
|
|
2347
2347
|
}
|
|
2348
2348
|
}
|
|
2349
2349
|
},
|
|
2350
|
+
"pushwoosh.rpc_v2.applications_configurations.BaiduConfiguration": {
|
|
2351
|
+
"type": "I",
|
|
2352
|
+
"fields": {
|
|
2353
|
+
"baiduAndroidApiKey": {
|
|
2354
|
+
"type": "string"
|
|
2355
|
+
},
|
|
2356
|
+
"baiduAndroidFramework": {
|
|
2357
|
+
"type": "string"
|
|
2358
|
+
},
|
|
2359
|
+
"baiduAndroidSecretKey": {
|
|
2360
|
+
"type": "string"
|
|
2361
|
+
}
|
|
2362
|
+
}
|
|
2363
|
+
},
|
|
2350
2364
|
"pushwoosh.rpc_v2.applications_configurations.ConfigurationRequest": {
|
|
2351
2365
|
"type": "I",
|
|
2352
2366
|
"fields": {
|
|
@@ -2388,6 +2402,9 @@ export const data = {
|
|
|
2388
2402
|
},
|
|
2389
2403
|
"firefoxConfiguration": {
|
|
2390
2404
|
"type": "pushwoosh.rpc_v2.applications_configurations.FirefoxConfiguration"
|
|
2405
|
+
},
|
|
2406
|
+
"baiduConfiguration": {
|
|
2407
|
+
"type": "pushwoosh.rpc_v2.applications_configurations.BaiduConfiguration"
|
|
2391
2408
|
}
|
|
2392
2409
|
},
|
|
2393
2410
|
"oneofs": {
|
|
@@ -2404,7 +2421,8 @@ export const data = {
|
|
|
2404
2421
|
"amazonConfiguration",
|
|
2405
2422
|
"osxConfiguration",
|
|
2406
2423
|
"iosConfiguration",
|
|
2407
|
-
"firefoxConfiguration"
|
|
2424
|
+
"firefoxConfiguration",
|
|
2425
|
+
"baiduConfiguration"
|
|
2408
2426
|
]
|
|
2409
2427
|
}
|
|
2410
2428
|
}
|
|
@@ -18852,6 +18870,10 @@ export const data = {
|
|
|
18852
18870
|
"jPoints": {
|
|
18853
18871
|
"type": "string",
|
|
18854
18872
|
"array": true
|
|
18873
|
+
},
|
|
18874
|
+
"disabled": {
|
|
18875
|
+
"type": "boolean",
|
|
18876
|
+
"optional": true
|
|
18855
18877
|
}
|
|
18856
18878
|
},
|
|
18857
18879
|
"oneofs": {}
|
package/package.json
CHANGED