@resolveio/server-lib 22.2.13 → 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.
- package/managers/mongo.manager.d.ts +3 -0
- package/managers/mongo.manager.js +756 -653
- package/managers/mongo.manager.js.map +1 -1
- package/methods/ai-terminal.d.ts +71 -0
- package/methods/ai-terminal.js +748 -234
- package/methods/ai-terminal.js.map +1 -1
- package/package.json +2 -1
|
@@ -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[]>;
|