@pushwoosh/rpc-v2-http-api-data 0.1.858 → 0.1.860
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 +10 -0
- package/package.json +1 -1
- package/pushwoosh_rpc_segments_v3.d.ts +2 -0
package/data.js
CHANGED
|
@@ -23085,6 +23085,13 @@ export const data = {
|
|
|
23085
23085
|
"FILTER_EXPRESSION_INVALID_LANGUAGE_TAG_VALUE"
|
|
23086
23086
|
]
|
|
23087
23087
|
},
|
|
23088
|
+
"pushwoosh.rpc.segments.v3.SegmentsService_Delete_FailedPreconditions": {
|
|
23089
|
+
"type": "E",
|
|
23090
|
+
"values": [
|
|
23091
|
+
"FP_DELETE_UNSPECIFIED",
|
|
23092
|
+
"SEGMENT_NOT_FOUND"
|
|
23093
|
+
]
|
|
23094
|
+
},
|
|
23088
23095
|
"pushwoosh.rpc.segments.v3.SegmentsService_Create_FailedPreconditions": {
|
|
23089
23096
|
"type": "E",
|
|
23090
23097
|
"values": [
|
|
@@ -23301,6 +23308,9 @@ export const data = {
|
|
|
23301
23308
|
"pushwoosh.rpc.segments.v3.DeleteRequest": {
|
|
23302
23309
|
"type": "I",
|
|
23303
23310
|
"fields": {
|
|
23311
|
+
"application": {
|
|
23312
|
+
"type": "string"
|
|
23313
|
+
},
|
|
23304
23314
|
"segment": {
|
|
23305
23315
|
"type": "string"
|
|
23306
23316
|
}
|
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 = {};
|