@pushwoosh/rpc-v2-http-api-data 0.1.857 → 0.1.859
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 +22 -0
- package/inapp_messages.d.ts +2 -0
- package/package.json +1 -1
- package/pushwoosh_rpc_segments_v3.d.ts +2 -0
package/data.js
CHANGED
|
@@ -10538,6 +10538,14 @@ export const data = {
|
|
|
10538
10538
|
}
|
|
10539
10539
|
}
|
|
10540
10540
|
},
|
|
10541
|
+
"pushwoosh.rpc_v2.inapp_messages.UpdateInappRequest.Action": {
|
|
10542
|
+
"type": "E",
|
|
10543
|
+
"values": [
|
|
10544
|
+
"UNKNOWN",
|
|
10545
|
+
"SAVE_DRAFT",
|
|
10546
|
+
"PUBLISH"
|
|
10547
|
+
]
|
|
10548
|
+
},
|
|
10541
10549
|
"pushwoosh.rpc_v2.inapp_messages.UpdateInappRequest": {
|
|
10542
10550
|
"type": "I",
|
|
10543
10551
|
"fields": {
|
|
@@ -10586,6 +10594,10 @@ export const data = {
|
|
|
10586
10594
|
"priority": {
|
|
10587
10595
|
"type": "number",
|
|
10588
10596
|
"optional": true
|
|
10597
|
+
},
|
|
10598
|
+
"action": {
|
|
10599
|
+
"type": "pushwoosh.rpc_v2.inapp_messages.UpdateInappRequest.Action",
|
|
10600
|
+
"optional": true
|
|
10589
10601
|
}
|
|
10590
10602
|
},
|
|
10591
10603
|
"oneofs": {}
|
|
@@ -23073,6 +23085,13 @@ export const data = {
|
|
|
23073
23085
|
"FILTER_EXPRESSION_INVALID_LANGUAGE_TAG_VALUE"
|
|
23074
23086
|
]
|
|
23075
23087
|
},
|
|
23088
|
+
"pushwoosh.rpc.segments.v3.SegmentsService_Delete_FailedPreconditions": {
|
|
23089
|
+
"type": "E",
|
|
23090
|
+
"values": [
|
|
23091
|
+
"FP_DELETE_UNSPECIFIED",
|
|
23092
|
+
"SEGMENT_NOT_FOUND"
|
|
23093
|
+
]
|
|
23094
|
+
},
|
|
23076
23095
|
"pushwoosh.rpc.segments.v3.SegmentsService_Create_FailedPreconditions": {
|
|
23077
23096
|
"type": "E",
|
|
23078
23097
|
"values": [
|
|
@@ -23289,6 +23308,9 @@ export const data = {
|
|
|
23289
23308
|
"pushwoosh.rpc.segments.v3.DeleteRequest": {
|
|
23290
23309
|
"type": "I",
|
|
23291
23310
|
"fields": {
|
|
23311
|
+
"application": {
|
|
23312
|
+
"type": "string"
|
|
23313
|
+
},
|
|
23292
23314
|
"segment": {
|
|
23293
23315
|
"type": "string"
|
|
23294
23316
|
}
|
package/inapp_messages.d.ts
CHANGED
|
@@ -75,6 +75,7 @@ export type CreateInappRequest = {
|
|
|
75
75
|
export type CreateInappResponse = {
|
|
76
76
|
code: string;
|
|
77
77
|
};
|
|
78
|
+
export type UpdateInappRequest_Action = 'UNKNOWN' | 'SAVE_DRAFT' | 'PUBLISH';
|
|
78
79
|
export type UpdateInappRequest = {
|
|
79
80
|
code?: string;
|
|
80
81
|
name?: string;
|
|
@@ -88,6 +89,7 @@ export type UpdateInappRequest = {
|
|
|
88
89
|
startDate?: Date;
|
|
89
90
|
endDate?: Date;
|
|
90
91
|
priority?: number;
|
|
92
|
+
action?: UpdateInappRequest_Action;
|
|
91
93
|
};
|
|
92
94
|
export type UpdateInappResponse = {};
|
|
93
95
|
export type StopInappRequest = {
|
package/package.json
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { FilterExpression as pushwoosh_objects_filters_v1_FilterExpression } from './pushwoosh_objects_filters_v1';
|
|
2
2
|
export type SegmentsService_Create_FieldViolations = 'FV_UNSPECIFIED' | 'NAME_EMPTY' | 'NAME_TOO_LONG' | 'NAME_ALREADY_EXISTS' | 'EXPIRE_AT_IN_PAST' | 'CONDITIONS_REQUIRED' | 'SEGLANG_PARSE_ERROR' | 'FILTER_EXPRESSION_PARSE_ERROR' | 'FILTER_EXPRESSION_ONE_APP' | 'FILTER_EXPRESSION_TOO_DEEP' | 'FILTER_EXPRESSION_HIGH_SPEED_TAGS_ONLY' | 'FILTER_EXPRESSION_HIGH_SPEED_NO_DAYS_AGO' | 'FILTER_EXPRESSION_INVALID_COUNTRY_TAG_VALUE' | 'FILTER_EXPRESSION_INVALID_LANGUAGE_TAG_VALUE';
|
|
3
|
+
export type SegmentsService_Delete_FailedPreconditions = 'FP_DELETE_UNSPECIFIED' | 'SEGMENT_NOT_FOUND';
|
|
3
4
|
export type SegmentsService_Create_FailedPreconditions = 'FP_UNSPECIFIED' | 'HIGH_SPEED_SEGMENTS_NOT_ALLOWED' | 'HIGH_SPEED_SEGMENTS_LIMIT_REACHED';
|
|
4
5
|
export interface SegmentsService {
|
|
5
6
|
List(request: ListRequest): Promise<ListResponse>;
|
|
@@ -75,6 +76,7 @@ export type UpdateRequest = {
|
|
|
75
76
|
};
|
|
76
77
|
export type UpdateResponse = {};
|
|
77
78
|
export type DeleteRequest = {
|
|
79
|
+
application?: string;
|
|
78
80
|
segment?: string;
|
|
79
81
|
};
|
|
80
82
|
export type DeleteResponse = {};
|