@pushwoosh/rpc-v2-http-api-data 0.1.690 → 0.1.691

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 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
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-v2-http-api-data",
3
- "version": "0.1.690",
3
+ "version": "0.1.691",
4
4
  "description": "RPC V2 HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",