@pushwoosh/rpc-v2-http-api-data 0.2.19 → 0.2.22

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 CHANGED
@@ -10151,7 +10151,8 @@ export const data = {
10151
10151
  "CREATE_QUERY_EMPTY",
10152
10152
  "CREATE_HOST_NOT_ALLOWED",
10153
10153
  "CREATE_NAME_EMPTY",
10154
- "CREATE_NAME_TOO_LONG"
10154
+ "CREATE_NAME_TOO_LONG",
10155
+ "CREATE_CONNECTION_FAILED"
10155
10156
  ]
10156
10157
  },
10157
10158
  "pushwoosh.rpc.external_segments.v3.ExternalSegmentsService_Update_FieldViolations": {
@@ -10165,7 +10166,8 @@ export const data = {
10165
10166
  "UPDATE_QUERY_EMPTY",
10166
10167
  "UPDATE_HOST_NOT_ALLOWED",
10167
10168
  "UPDATE_NAME_EMPTY",
10168
- "UPDATE_NAME_TOO_LONG"
10169
+ "UPDATE_NAME_TOO_LONG",
10170
+ "UPDATE_CONNECTION_FAILED"
10169
10171
  ]
10170
10172
  },
10171
10173
  "pushwoosh.rpc.external_segments.v3.ExternalSegmentsService_Update_FailedPreconditions": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-v2-http-api-data",
3
- "version": "0.2.19",
3
+ "version": "0.2.22",
4
4
  "description": "RPC V2 HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -36,6 +36,10 @@ export type ExternalSegmentsService_Create_FieldViolations = {
36
36
  reason: 'CREATE_NAME_TOO_LONG';
37
37
  field: string;
38
38
  description: string;
39
+ } | {
40
+ reason: 'CREATE_CONNECTION_FAILED';
41
+ field: string;
42
+ description: string;
39
43
  };
40
44
  export type ExternalSegmentsService_Update_FieldViolations = {
41
45
  reason: 'UPDATE_FV_UNSPECIFIED';
@@ -73,6 +77,10 @@ export type ExternalSegmentsService_Update_FieldViolations = {
73
77
  reason: 'UPDATE_NAME_TOO_LONG';
74
78
  field: string;
75
79
  description: string;
80
+ } | {
81
+ reason: 'UPDATE_CONNECTION_FAILED';
82
+ field: string;
83
+ description: string;
76
84
  };
77
85
  export type ExternalSegmentsService_Update_FailedPreconditions = {
78
86
  type: 'UPDATE_FP_UNSPECIFIED';