@pushwoosh/rpc-v2-http-api-data 0.1.604 → 0.1.606
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/accounts.d.ts +2 -0
- package/data.js +14 -4
- package/package.json +1 -1
- package/statistics_dashboards_widgets.d.ts +1 -1
package/accounts.d.ts
CHANGED
|
@@ -74,6 +74,8 @@ export type GetOnboardingInfoResponse = {
|
|
|
74
74
|
welcomeScreen: boolean;
|
|
75
75
|
getStarted: boolean;
|
|
76
76
|
showSurvey: boolean;
|
|
77
|
+
hasActiveSubscription: boolean;
|
|
78
|
+
hasApplication: boolean;
|
|
77
79
|
};
|
|
78
80
|
export type UpdateOnboardingInfoRequest_answer_list = {
|
|
79
81
|
answers: string[];
|
package/data.js
CHANGED
|
@@ -759,6 +759,12 @@ export const data = {
|
|
|
759
759
|
},
|
|
760
760
|
"showSurvey": {
|
|
761
761
|
"type": "boolean"
|
|
762
|
+
},
|
|
763
|
+
"hasActiveSubscription": {
|
|
764
|
+
"type": "boolean"
|
|
765
|
+
},
|
|
766
|
+
"hasApplication": {
|
|
767
|
+
"type": "boolean"
|
|
762
768
|
}
|
|
763
769
|
}
|
|
764
770
|
},
|
|
@@ -19178,7 +19184,8 @@ export const data = {
|
|
|
19178
19184
|
"type": "string"
|
|
19179
19185
|
},
|
|
19180
19186
|
"params": {
|
|
19181
|
-
"type": "string"
|
|
19187
|
+
"type": "string",
|
|
19188
|
+
"optional": true
|
|
19182
19189
|
},
|
|
19183
19190
|
"widgetParams": {
|
|
19184
19191
|
"type": "pushwoosh.rpc_v2.statistics_dashboards_widgets.ChartParams"
|
|
@@ -19186,7 +19193,8 @@ export const data = {
|
|
|
19186
19193
|
"indexNumber": {
|
|
19187
19194
|
"type": "number"
|
|
19188
19195
|
}
|
|
19189
|
-
}
|
|
19196
|
+
},
|
|
19197
|
+
"oneofs": {}
|
|
19190
19198
|
},
|
|
19191
19199
|
"pushwoosh.rpc_v2.statistics_dashboards_widgets.LoadDashboardWidgetRequest": {
|
|
19192
19200
|
"type": "I",
|
|
@@ -19212,7 +19220,8 @@ export const data = {
|
|
|
19212
19220
|
"type": "string"
|
|
19213
19221
|
},
|
|
19214
19222
|
"params": {
|
|
19215
|
-
"type": "string"
|
|
19223
|
+
"type": "string",
|
|
19224
|
+
"optional": true
|
|
19216
19225
|
},
|
|
19217
19226
|
"widgetParams": {
|
|
19218
19227
|
"type": "pushwoosh.rpc_v2.statistics_dashboards_widgets.ChartParams"
|
|
@@ -19223,7 +19232,8 @@ export const data = {
|
|
|
19223
19232
|
"indexNumber": {
|
|
19224
19233
|
"type": "number"
|
|
19225
19234
|
}
|
|
19226
|
-
}
|
|
19235
|
+
},
|
|
19236
|
+
"oneofs": {}
|
|
19227
19237
|
},
|
|
19228
19238
|
"pushwoosh.rpc_v2.statistics_dashboards_widgets.CreateDashboardWidgetResponse": {
|
|
19229
19239
|
"type": "I",
|
package/package.json
CHANGED