@pushwoosh/rpc-v2-http-api-data 0.1.775 → 0.1.776
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/data.js +12 -0
- package/package.json +1 -1
- package/presets.d.ts +4 -0
package/data.js
CHANGED
|
@@ -20521,6 +20521,9 @@ export const data = {
|
|
|
20521
20521
|
"inboxDays": {
|
|
20522
20522
|
"type": "number"
|
|
20523
20523
|
},
|
|
20524
|
+
"inboxDate": {
|
|
20525
|
+
"type": "Date"
|
|
20526
|
+
},
|
|
20524
20527
|
"categories": {
|
|
20525
20528
|
"type": "string",
|
|
20526
20529
|
"array": true
|
|
@@ -20653,6 +20656,9 @@ export const data = {
|
|
|
20653
20656
|
"inboxDays": {
|
|
20654
20657
|
"type": "number"
|
|
20655
20658
|
},
|
|
20659
|
+
"inboxDate": {
|
|
20660
|
+
"type": "Date"
|
|
20661
|
+
},
|
|
20656
20662
|
"customData": {
|
|
20657
20663
|
"type": "object"
|
|
20658
20664
|
},
|
|
@@ -20747,6 +20753,9 @@ export const data = {
|
|
|
20747
20753
|
"inboxDays": {
|
|
20748
20754
|
"type": "number"
|
|
20749
20755
|
},
|
|
20756
|
+
"inboxDate": {
|
|
20757
|
+
"type": "Date"
|
|
20758
|
+
},
|
|
20750
20759
|
"customData": {
|
|
20751
20760
|
"type": "object"
|
|
20752
20761
|
},
|
|
@@ -20827,6 +20836,9 @@ export const data = {
|
|
|
20827
20836
|
"inboxDays": {
|
|
20828
20837
|
"type": "number"
|
|
20829
20838
|
},
|
|
20839
|
+
"inboxDate": {
|
|
20840
|
+
"type": "Date"
|
|
20841
|
+
},
|
|
20830
20842
|
"customData": {
|
|
20831
20843
|
"type": "object"
|
|
20832
20844
|
},
|
package/package.json
CHANGED
package/presets.d.ts
CHANGED
|
@@ -45,6 +45,7 @@ export type Preset = {
|
|
|
45
45
|
inboxImage: string;
|
|
46
46
|
inboxIcon: string;
|
|
47
47
|
inboxDays: number;
|
|
48
|
+
inboxDate: Date;
|
|
48
49
|
categories: string[];
|
|
49
50
|
created: Date;
|
|
50
51
|
updated: Date;
|
|
@@ -87,6 +88,7 @@ export type CreatePresetRequest = {
|
|
|
87
88
|
inboxImage?: string;
|
|
88
89
|
inboxIcon?: string;
|
|
89
90
|
inboxDays?: number;
|
|
91
|
+
inboxDate?: Date;
|
|
90
92
|
customData?: object;
|
|
91
93
|
categories?: string[];
|
|
92
94
|
banner?: string;
|
|
@@ -116,6 +118,7 @@ export type UpdatePresetRequest = {
|
|
|
116
118
|
inboxImage?: string;
|
|
117
119
|
inboxIcon?: string;
|
|
118
120
|
inboxDays?: number;
|
|
121
|
+
inboxDate?: Date;
|
|
119
122
|
customData?: object;
|
|
120
123
|
categories?: string[];
|
|
121
124
|
banner?: string;
|
|
@@ -140,6 +143,7 @@ export type UpdatePresetPartialRequest = {
|
|
|
140
143
|
inboxImage?: string;
|
|
141
144
|
inboxIcon?: string;
|
|
142
145
|
inboxDays?: number;
|
|
146
|
+
inboxDate?: Date;
|
|
143
147
|
customData?: object;
|
|
144
148
|
categories?: string[];
|
|
145
149
|
banner?: string;
|