@powersync/service-errors 0.1.1 → 0.2.1
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/dist/codes.d.ts +27 -0
- package/dist/codes.js +27 -0
- package/dist/codes.js.map +1 -1
- package/dist/errors.js +10 -8
- package/dist/errors.js.map +1 -1
- package/package.json +1 -1
package/dist/codes.d.ts
CHANGED
|
@@ -120,6 +120,15 @@ export declare enum ErrorCode {
|
|
|
120
120
|
* Publication uses publish_via_partition_root.
|
|
121
121
|
*/
|
|
122
122
|
PSYNC_S1143 = "PSYNC_S1143",
|
|
123
|
+
/**
|
|
124
|
+
* Invalid Postgres server configuration for replication and sync bucket storage.
|
|
125
|
+
*
|
|
126
|
+
* The same Postgres server, running an unsupported version of Postgres, has been configured for both replication and sync bucket storage.
|
|
127
|
+
* Using the same Postgres server is only supported on Postgres 14 and above.
|
|
128
|
+
* This error typically indicates that the Postgres version is below 14.
|
|
129
|
+
* Either upgrade the Postgres server to version 14 or above, or use a different Postgres server for sync bucket storage.
|
|
130
|
+
*/
|
|
131
|
+
PSYNC_S1144 = "PSYNC_S1144",
|
|
123
132
|
/**
|
|
124
133
|
* Generic MongoServerError.
|
|
125
134
|
*/
|
|
@@ -178,6 +187,18 @@ export declare enum ErrorCode {
|
|
|
178
187
|
* });
|
|
179
188
|
*/
|
|
180
189
|
PSYNC_S1343 = "PSYNC_S1343",
|
|
190
|
+
/**
|
|
191
|
+
* The MongoDB Change Stream has been invalidated.
|
|
192
|
+
*
|
|
193
|
+
* Possible causes:
|
|
194
|
+
* - Some change stream documents do not have postImages.
|
|
195
|
+
* - startAfter/resumeToken is not valid anymore.
|
|
196
|
+
* - The replication connection has changed.
|
|
197
|
+
* - The database has been dropped.
|
|
198
|
+
*
|
|
199
|
+
* Replication will be stopped for this Change Stream. Replication will restart with a new Change Stream.
|
|
200
|
+
*/
|
|
201
|
+
PSYNC_S1344 = "PSYNC_S1344",
|
|
181
202
|
/**
|
|
182
203
|
* Max transaction tries exceeded.
|
|
183
204
|
*/
|
|
@@ -228,6 +249,12 @@ export declare enum ErrorCode {
|
|
|
228
249
|
* Maximum active concurrent connections limit has been reached.
|
|
229
250
|
*/
|
|
230
251
|
PSYNC_S2304 = "PSYNC_S2304",
|
|
252
|
+
/**
|
|
253
|
+
* Too many buckets.
|
|
254
|
+
*
|
|
255
|
+
* There is currently a limit of 1000 buckets per active connection.
|
|
256
|
+
*/
|
|
257
|
+
PSYNC_S2305 = "PSYNC_S2305",
|
|
231
258
|
/**
|
|
232
259
|
* Could not get clusterTime.
|
|
233
260
|
*/
|
package/dist/codes.js
CHANGED
|
@@ -131,6 +131,15 @@ export var ErrorCode;
|
|
|
131
131
|
* Publication uses publish_via_partition_root.
|
|
132
132
|
*/
|
|
133
133
|
ErrorCode["PSYNC_S1143"] = "PSYNC_S1143";
|
|
134
|
+
/**
|
|
135
|
+
* Invalid Postgres server configuration for replication and sync bucket storage.
|
|
136
|
+
*
|
|
137
|
+
* The same Postgres server, running an unsupported version of Postgres, has been configured for both replication and sync bucket storage.
|
|
138
|
+
* Using the same Postgres server is only supported on Postgres 14 and above.
|
|
139
|
+
* This error typically indicates that the Postgres version is below 14.
|
|
140
|
+
* Either upgrade the Postgres server to version 14 or above, or use a different Postgres server for sync bucket storage.
|
|
141
|
+
*/
|
|
142
|
+
ErrorCode["PSYNC_S1144"] = "PSYNC_S1144";
|
|
134
143
|
// ## PSYNC_S12xx: MySQL replication issues
|
|
135
144
|
// ## PSYNC_S13xx: MongoDB replication issues
|
|
136
145
|
/**
|
|
@@ -191,6 +200,18 @@ export var ErrorCode;
|
|
|
191
200
|
* });
|
|
192
201
|
*/
|
|
193
202
|
ErrorCode["PSYNC_S1343"] = "PSYNC_S1343";
|
|
203
|
+
/**
|
|
204
|
+
* The MongoDB Change Stream has been invalidated.
|
|
205
|
+
*
|
|
206
|
+
* Possible causes:
|
|
207
|
+
* - Some change stream documents do not have postImages.
|
|
208
|
+
* - startAfter/resumeToken is not valid anymore.
|
|
209
|
+
* - The replication connection has changed.
|
|
210
|
+
* - The database has been dropped.
|
|
211
|
+
*
|
|
212
|
+
* Replication will be stopped for this Change Stream. Replication will restart with a new Change Stream.
|
|
213
|
+
*/
|
|
214
|
+
ErrorCode["PSYNC_S1344"] = "PSYNC_S1344";
|
|
194
215
|
// ## PSYNC_S14xx: MongoDB storage replication issues
|
|
195
216
|
/**
|
|
196
217
|
* Max transaction tries exceeded.
|
|
@@ -248,6 +269,12 @@ export var ErrorCode;
|
|
|
248
269
|
* Maximum active concurrent connections limit has been reached.
|
|
249
270
|
*/
|
|
250
271
|
ErrorCode["PSYNC_S2304"] = "PSYNC_S2304";
|
|
272
|
+
/**
|
|
273
|
+
* Too many buckets.
|
|
274
|
+
*
|
|
275
|
+
* There is currently a limit of 1000 buckets per active connection.
|
|
276
|
+
*/
|
|
277
|
+
ErrorCode["PSYNC_S2305"] = "PSYNC_S2305";
|
|
251
278
|
// ## PSYNC_S23xx: Sync API errors - MongoDB Storage
|
|
252
279
|
/**
|
|
253
280
|
* Could not get clusterTime.
|
package/dist/codes.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"codes.js","sourceRoot":"","sources":["../src/codes.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,MAAM,CAAN,IAAY,
|
|
1
|
+
{"version":3,"file":"codes.js","sourceRoot":"","sources":["../src/codes.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,MAAM,CAAN,IAAY,SAyXX;AAzXD,WAAY,SAAS;IACnB,mCAAmC;IAEnC;;OAEG;IACH,wCAA2B,CAAA;IAE3B,qCAAqC;IAErC,iDAAiD;IAEjD,oCAAoC;IAEpC,+CAA+C;IAE/C,6CAA6C;IAE7C,wCAAwC;IAExC,gCAAgC;IAEhC;;;;OAIG;IACH,wCAA2B,CAAA;IAE3B;;;;;;;;OAQG;IACH,wCAA2B,CAAA;IAE3B,qCAAqC;IAErC;;;;;OAKG;IACH,wCAA2B,CAAA;IAE3B;;;;;;;;;OASG;IACH,wCAA2B,CAAA;IAE3B;;;;OAIG;IACH,wCAA2B,CAAA;IAE3B,8CAA8C;IAE9C;;;;OAIG;IACH,wCAA2B,CAAA;IAE3B;;;;;OAKG;IACH,wCAA2B,CAAA;IAE3B;;;;OAIG;IACH,wCAA2B,CAAA;IAE3B;;;;OAIG;IACH,wCAA2B,CAAA;IAE3B;;;;OAIG;IACH,wCAA2B,CAAA;IAE3B;;;;OAIG;IACH,wCAA2B,CAAA;IAE3B;;;;OAIG;IACH,wCAA2B,CAAA;IAE3B;;;;OAIG;IACH,wCAA2B,CAAA;IAE3B;;;;OAIG;IACH,wCAA2B,CAAA;IAE3B;;;;OAIG;IACH,wCAA2B,CAAA;IAE3B;;;;OAIG;IACH,wCAA2B,CAAA;IAE3B;;OAEG;IACH,wCAA2B,CAAA;IAE3B;;;;;;;OAOG;IACH,wCAA2B,CAAA;IAE3B,2CAA2C;IAE3C,6CAA6C;IAE7C;;OAEG;IACH,wCAA2B,CAAA;IAE3B;;OAEG;IACH,wCAA2B,CAAA;IAE3B;;;;;OAKG;IACH,wCAA2B,CAAA;IAE3B;;;;OAIG;IACH,wCAA2B,CAAA;IAE3B;;;;OAIG;IACH,wCAA2B,CAAA;IAE3B;;;;OAIG;IACH,wCAA2B,CAAA;IAE3B;;;;OAIG;IACH,wCAA2B,CAAA;IAE3B;;OAEG;IACH,wCAA2B,CAAA;IAE3B;;OAEG;IACH,wCAA2B,CAAA;IAE3B;;;;;;;;;OASG;IACH,wCAA2B,CAAA;IAE3B;;;;;;;;;;OAUG;IACH,wCAA2B,CAAA;IAE3B,qDAAqD;IAErD;;OAEG;IACH,wCAA2B,CAAA;IAE3B,8BAA8B;IAE9B;;;;OAIG;IACH,wCAA2B,CAAA;IAE3B;;OAEG;IACH,wCAA2B,CAAA;IAE3B;;;;OAIG;IACH,wCAA2B,CAAA;IAE3B,yDAAyD;IACzD,EAAE;IACF,kEAAkE;IAElE;;OAEG;IACH,wCAA2B,CAAA;IAE3B,0CAA0C;IAE1C;;;;OAIG;IACH,wCAA2B,CAAA;IAE3B;;;;OAIG;IACH,wCAA2B,CAAA;IAE3B,kCAAkC;IAElC;;;;;;;;OAQG;IACH,wCAA2B,CAAA;IAE3B;;OAEG;IACH,wCAA2B,CAAA;IAE3B;;;;OAIG;IACH,wCAA2B,CAAA;IAE3B,oDAAoD;IAEpD;;OAEG;IACH,wCAA2B,CAAA;IAE3B,qDAAqD;IAErD,+CAA+C;IAE/C,4CAA4C;IAE5C;;OAEG;IACH,wCAA2B,CAAA;IAE3B;;OAEG;IACH,wCAA2B,CAAA;IAE3B,mDAAmD;IAEnD;;OAEG;IACH,wCAA2B,CAAA;IAE3B,wCAAwC;IAExC;;;;OAIG;IACH,wCAA2B,CAAA;IAE3B;;OAEG;IACH,wCAA2B,CAAA;IAE3B;;;;OAIG;IACH,wCAA2B,CAAA;AAC7B,CAAC,EAzXW,SAAS,KAAT,SAAS,QAyXpB"}
|
package/dist/errors.js
CHANGED
|
@@ -6,6 +6,8 @@ export var ErrorSeverity;
|
|
|
6
6
|
ErrorSeverity["ERROR"] = "error";
|
|
7
7
|
})(ErrorSeverity || (ErrorSeverity = {}));
|
|
8
8
|
export class ServiceError extends Error {
|
|
9
|
+
is_service_error = true;
|
|
10
|
+
errorData;
|
|
9
11
|
static isServiceError(input) {
|
|
10
12
|
return input instanceof ServiceError || input?.is_service_error == true;
|
|
11
13
|
}
|
|
@@ -24,7 +26,6 @@ export class ServiceError extends Error {
|
|
|
24
26
|
}
|
|
25
27
|
constructor(data, description) {
|
|
26
28
|
super(ServiceError.errorMessage(data, description));
|
|
27
|
-
this.is_service_error = true;
|
|
28
29
|
if (typeof data == 'string') {
|
|
29
30
|
data = {
|
|
30
31
|
code: data,
|
|
@@ -64,6 +65,7 @@ export class ServiceError extends Error {
|
|
|
64
65
|
* @deprecated Use more specific errors
|
|
65
66
|
*/
|
|
66
67
|
export class ValidationError extends ServiceError {
|
|
68
|
+
static CODE = ErrorCode.PSYNC_S2001;
|
|
67
69
|
constructor(errors) {
|
|
68
70
|
super({
|
|
69
71
|
code: ValidationError.CODE,
|
|
@@ -73,7 +75,6 @@ export class ValidationError extends ServiceError {
|
|
|
73
75
|
});
|
|
74
76
|
}
|
|
75
77
|
}
|
|
76
|
-
ValidationError.CODE = ErrorCode.PSYNC_S2001;
|
|
77
78
|
/**
|
|
78
79
|
* Use for replication errors that are never expected to happen in production.
|
|
79
80
|
*
|
|
@@ -82,6 +83,7 @@ ValidationError.CODE = ErrorCode.PSYNC_S2001;
|
|
|
82
83
|
* 2. An error that needs a different error code.
|
|
83
84
|
*/
|
|
84
85
|
export class ReplicationAssertionError extends ServiceError {
|
|
86
|
+
static CODE = ErrorCode.PSYNC_S1101;
|
|
85
87
|
constructor(description) {
|
|
86
88
|
super({
|
|
87
89
|
code: ReplicationAssertionError.CODE,
|
|
@@ -90,7 +92,6 @@ export class ReplicationAssertionError extends ServiceError {
|
|
|
90
92
|
});
|
|
91
93
|
}
|
|
92
94
|
}
|
|
93
|
-
ReplicationAssertionError.CODE = ErrorCode.PSYNC_S1101;
|
|
94
95
|
/**
|
|
95
96
|
* Use for general service errors that are never expected to happen in production.
|
|
96
97
|
*
|
|
@@ -99,6 +100,7 @@ ReplicationAssertionError.CODE = ErrorCode.PSYNC_S1101;
|
|
|
99
100
|
* 2. An error that needs a different error code.
|
|
100
101
|
*/
|
|
101
102
|
export class ServiceAssertionError extends ServiceError {
|
|
103
|
+
static CODE = ErrorCode.PSYNC_S0001;
|
|
102
104
|
constructor(description) {
|
|
103
105
|
super({
|
|
104
106
|
code: ServiceAssertionError.CODE,
|
|
@@ -107,7 +109,6 @@ export class ServiceAssertionError extends ServiceError {
|
|
|
107
109
|
});
|
|
108
110
|
}
|
|
109
111
|
}
|
|
110
|
-
ServiceAssertionError.CODE = ErrorCode.PSYNC_S0001;
|
|
111
112
|
/**
|
|
112
113
|
* Indicates replication is aborted.
|
|
113
114
|
*
|
|
@@ -115,6 +116,7 @@ ServiceAssertionError.CODE = ErrorCode.PSYNC_S0001;
|
|
|
115
116
|
* that something requested the replication should stop.
|
|
116
117
|
*/
|
|
117
118
|
export class ReplicationAbortedError extends ServiceError {
|
|
119
|
+
static CODE = ErrorCode.PSYNC_S1103;
|
|
118
120
|
constructor(description) {
|
|
119
121
|
super({
|
|
120
122
|
code: ReplicationAbortedError.CODE,
|
|
@@ -122,8 +124,8 @@ export class ReplicationAbortedError extends ServiceError {
|
|
|
122
124
|
});
|
|
123
125
|
}
|
|
124
126
|
}
|
|
125
|
-
ReplicationAbortedError.CODE = ErrorCode.PSYNC_S1103;
|
|
126
127
|
export class AuthorizationError extends ServiceError {
|
|
128
|
+
static CODE = ErrorCode.PSYNC_S2101;
|
|
127
129
|
constructor(errors) {
|
|
128
130
|
super({
|
|
129
131
|
code: AuthorizationError.CODE,
|
|
@@ -133,8 +135,8 @@ export class AuthorizationError extends ServiceError {
|
|
|
133
135
|
});
|
|
134
136
|
}
|
|
135
137
|
}
|
|
136
|
-
AuthorizationError.CODE = ErrorCode.PSYNC_S2101;
|
|
137
138
|
export class InternalServerError extends ServiceError {
|
|
139
|
+
static CODE = ErrorCode.PSYNC_S2001;
|
|
138
140
|
constructor(err) {
|
|
139
141
|
super({
|
|
140
142
|
code: InternalServerError.CODE,
|
|
@@ -146,8 +148,8 @@ export class InternalServerError extends ServiceError {
|
|
|
146
148
|
});
|
|
147
149
|
}
|
|
148
150
|
}
|
|
149
|
-
InternalServerError.CODE = ErrorCode.PSYNC_S2001;
|
|
150
151
|
export class RouteNotFound extends ServiceError {
|
|
152
|
+
static CODE = ErrorCode.PSYNC_S2002;
|
|
151
153
|
constructor(path) {
|
|
152
154
|
super({
|
|
153
155
|
code: RouteNotFound.CODE,
|
|
@@ -158,8 +160,8 @@ export class RouteNotFound extends ServiceError {
|
|
|
158
160
|
});
|
|
159
161
|
}
|
|
160
162
|
}
|
|
161
|
-
RouteNotFound.CODE = ErrorCode.PSYNC_S2002;
|
|
162
163
|
export class DatabaseConnectionError extends ServiceError {
|
|
164
|
+
cause;
|
|
163
165
|
constructor(code, message, cause) {
|
|
164
166
|
super({
|
|
165
167
|
code: code,
|
package/dist/errors.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"errors.js","sourceRoot":"","sources":["../src/errors.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,YAAY,CAAC;AAEvC,MAAM,CAAN,IAAY,aAIX;AAJD,WAAY,aAAa;IACvB,8BAAa,CAAA;IACb,oCAAmB,CAAA;IACnB,gCAAe,CAAA;AACjB,CAAC,EAJW,aAAa,KAAb,aAAa,QAIxB;AAkBD,MAAM,OAAO,YAAa,SAAQ,KAAK;
|
|
1
|
+
{"version":3,"file":"errors.js","sourceRoot":"","sources":["../src/errors.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED