@resolveio/server-lib 22.2.14 → 22.2.15

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.
@@ -103,6 +103,9 @@ export declare class MongoManager {
103
103
  collections(): MongoManagerCollection<CollectionDocument>[];
104
104
  collection(collectionName: string): MongoManagerCollection<CollectionDocument> | MongoManagerUserCollection<CollectionDocument>;
105
105
  private delay;
106
+ private hasMongoErrorLabel;
107
+ private shouldRetryWriteConflict;
108
+ private shouldRetryTransactionError;
106
109
  private shouldRetryWaitQueueTimeout;
107
110
  private retryRead;
108
111
  find<T extends CollectionDocument>(collectionName: string, filter?: MongoManagerFilter<T> & MongoManagerFilterOperators<T>, options?: FindOptions<T>): Promise<T[]>;