@pushwoosh/rpc-v2-http-api-data 0.1.855 → 0.1.856
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 +20 -4
- package/package.json +1 -1
- package/pushwoosh_rpc_errors_v3.d.ts +1 -0
- package/pushwoosh_rpc_segments_v3.d.ts +2 -2
package/data.js
CHANGED
|
@@ -7051,6 +7051,14 @@ export const data = {
|
|
|
7051
7051
|
}
|
|
7052
7052
|
}
|
|
7053
7053
|
},
|
|
7054
|
+
"pushwoosh.rpc.errors.v3.Common_FailedPreconditions": {
|
|
7055
|
+
"type": "E",
|
|
7056
|
+
"values": [
|
|
7057
|
+
"FP_UNSPECIFIED",
|
|
7058
|
+
"APPLICATION_IS_MANDATORY",
|
|
7059
|
+
"APPLICATION_NOT_FOUND"
|
|
7060
|
+
]
|
|
7061
|
+
},
|
|
7054
7062
|
"pushwoosh.rpc_v2.events.EventsService": {
|
|
7055
7063
|
"type": "S",
|
|
7056
7064
|
"key": "events",
|
|
@@ -23051,9 +23059,18 @@ export const data = {
|
|
|
23051
23059
|
"values": [
|
|
23052
23060
|
"FV_UNSPECIFIED",
|
|
23053
23061
|
"NAME_EMPTY",
|
|
23054
|
-
"NAME_INVALID_SPACE",
|
|
23055
23062
|
"NAME_TOO_LONG",
|
|
23056
|
-
"NAME_ALREADY_EXISTS"
|
|
23063
|
+
"NAME_ALREADY_EXISTS",
|
|
23064
|
+
"EXPIRE_AT_IN_PAST",
|
|
23065
|
+
"CONDITIONS_REQUIRED",
|
|
23066
|
+
"SEGLANG_PARSE_ERROR",
|
|
23067
|
+
"FILTER_EXPRESSION_PARSE_ERROR",
|
|
23068
|
+
"FILTER_EXPRESSION_ONE_APP",
|
|
23069
|
+
"FILTER_EXPRESSION_TOO_DEEP",
|
|
23070
|
+
"FILTER_EXPRESSION_HIGH_SPEED_TAGS_ONLY",
|
|
23071
|
+
"FILTER_EXPRESSION_HIGH_SPEED_NO_DAYS_AGO",
|
|
23072
|
+
"FILTER_EXPRESSION_INVALID_COUNTRY_TAG_VALUE",
|
|
23073
|
+
"FILTER_EXPRESSION_INVALID_LANGUAGE_TAG_VALUE"
|
|
23057
23074
|
]
|
|
23058
23075
|
},
|
|
23059
23076
|
"pushwoosh.rpc.segments.v3.SegmentsService_Create_FailedPreconditions": {
|
|
@@ -23189,8 +23206,7 @@ export const data = {
|
|
|
23189
23206
|
"optional": true
|
|
23190
23207
|
},
|
|
23191
23208
|
"expireAt": {
|
|
23192
|
-
"type": "
|
|
23193
|
-
"optional": true
|
|
23209
|
+
"type": "Date"
|
|
23194
23210
|
}
|
|
23195
23211
|
},
|
|
23196
23212
|
"oneofs": {
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { FilterExpression as pushwoosh_objects_filters_v1_FilterExpression } from './pushwoosh_objects_filters_v1';
|
|
2
|
-
export type SegmentsService_Create_FieldViolations = 'FV_UNSPECIFIED' | 'NAME_EMPTY' | '
|
|
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
3
|
export type SegmentsService_Create_FailedPreconditions = 'FP_UNSPECIFIED' | 'HIGH_SPEED_SEGMENTS_NOT_ALLOWED' | 'HIGH_SPEED_SEGMENTS_LIMIT_REACHED';
|
|
4
4
|
export interface SegmentsService {
|
|
5
5
|
List(request: ListRequest): Promise<ListResponse>;
|
|
@@ -43,7 +43,7 @@ export type CreateRequest = {
|
|
|
43
43
|
name?: string;
|
|
44
44
|
deviceLoadPolicy?: DeviceLoadPolicy;
|
|
45
45
|
highSpeed?: boolean;
|
|
46
|
-
expireAt?:
|
|
46
|
+
expireAt?: Date;
|
|
47
47
|
conditions: CreateRequest_conditions;
|
|
48
48
|
};
|
|
49
49
|
export type CreateResponse = {
|