@pushwoosh/rpc-v2-http-api-data 0.1.690 → 0.1.692
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/applications.d.ts +6 -0
- package/data.js +18 -1
- package/package.json +1 -1
- package/pushwoosh_export_messages_v2.d.ts +1 -1
package/applications.d.ts
CHANGED
|
@@ -54,10 +54,16 @@ export type CreateApplicationRequest = {
|
|
|
54
54
|
export type CreateApplicationResponse = {
|
|
55
55
|
application: Application;
|
|
56
56
|
};
|
|
57
|
+
export type UpdateApplicationRequest_BitlyConfiguration = {
|
|
58
|
+
accessToken: string;
|
|
59
|
+
};
|
|
57
60
|
export type UpdateApplicationRequest = {
|
|
58
61
|
code?: string;
|
|
59
62
|
title?: string;
|
|
60
63
|
icon?: string;
|
|
64
|
+
websiteUrl?: string;
|
|
65
|
+
allowDailyStat?: boolean;
|
|
66
|
+
bitlyConfiguration?: UpdateApplicationRequest_BitlyConfiguration;
|
|
61
67
|
};
|
|
62
68
|
export type UpdateApplicationResponse = {
|
|
63
69
|
application: Application;
|
package/data.js
CHANGED
|
@@ -1928,6 +1928,14 @@ export const data = {
|
|
|
1928
1928
|
}
|
|
1929
1929
|
}
|
|
1930
1930
|
},
|
|
1931
|
+
"pushwoosh.rpc_v2.applications.UpdateApplicationRequest.BitlyConfiguration": {
|
|
1932
|
+
"type": "I",
|
|
1933
|
+
"fields": {
|
|
1934
|
+
"accessToken": {
|
|
1935
|
+
"type": "string"
|
|
1936
|
+
}
|
|
1937
|
+
}
|
|
1938
|
+
},
|
|
1931
1939
|
"pushwoosh.rpc_v2.applications.UpdateApplicationRequest": {
|
|
1932
1940
|
"type": "I",
|
|
1933
1941
|
"fields": {
|
|
@@ -1939,6 +1947,15 @@ export const data = {
|
|
|
1939
1947
|
},
|
|
1940
1948
|
"icon": {
|
|
1941
1949
|
"type": "string"
|
|
1950
|
+
},
|
|
1951
|
+
"websiteUrl": {
|
|
1952
|
+
"type": "string"
|
|
1953
|
+
},
|
|
1954
|
+
"allowDailyStat": {
|
|
1955
|
+
"type": "boolean"
|
|
1956
|
+
},
|
|
1957
|
+
"bitlyConfiguration": {
|
|
1958
|
+
"type": "pushwoosh.rpc_v2.applications.UpdateApplicationRequest.BitlyConfiguration"
|
|
1942
1959
|
}
|
|
1943
1960
|
}
|
|
1944
1961
|
},
|
|
@@ -7561,7 +7578,7 @@ export const data = {
|
|
|
7561
7578
|
"journey": {
|
|
7562
7579
|
"type": "string"
|
|
7563
7580
|
},
|
|
7564
|
-
"
|
|
7581
|
+
"goalUuid": {
|
|
7565
7582
|
"type": "string"
|
|
7566
7583
|
},
|
|
7567
7584
|
"dateFrom": {
|
package/package.json
CHANGED