mftsccs-node 0.0.79-dev → 0.0.80-dev
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.
|
@@ -171,12 +171,15 @@ export declare class Transaction {
|
|
|
171
171
|
*/
|
|
172
172
|
DeleteConnectionsBetween(query: Partial<FetchConnectionQuery>): Promise<number[]>;
|
|
173
173
|
/**
|
|
174
|
-
* Queues connections matching multiple queries for deletion on commit
|
|
174
|
+
* Queues connections matching multiple queries for deletion on commit, plus
|
|
175
|
+
* any already-known connection IDs passed directly.
|
|
175
176
|
*
|
|
176
|
-
* The queries are resolved in one API call
|
|
177
|
-
* merged into this transaction's pending
|
|
177
|
+
* The queries (if any) are resolved in one API call; their connection IDs
|
|
178
|
+
* are merged with `knownConnectionIds` into this transaction's pending
|
|
179
|
+
* deletion queue. Pass an empty `queries` array to queue only IDs you
|
|
180
|
+
* already have, with no extra lookup call.
|
|
178
181
|
*/
|
|
179
|
-
DeleteConnectionsBetweenBulk(queries: Partial<FetchConnectionQuery>[]): Promise<number[]>;
|
|
182
|
+
DeleteConnectionsBetweenBulk(queries: Partial<FetchConnectionQuery>[], knownConnectionIds?: number[]): Promise<number[]>;
|
|
180
183
|
/**
|
|
181
184
|
* Creates a new instance concept within the transaction.
|
|
182
185
|
* The concept represents a data instance of a specified type with associated metadata.
|
|
@@ -117,9 +117,6 @@ import { PatcherStructure } from '../DataStructures/PatcherStructure';
|
|
|
117
117
|
* @see {@link PatcherStructure} for the structure of the patcher parameter
|
|
118
118
|
* @see {@link CreateTheCompositionWithCache} for creating nested compositions
|
|
119
119
|
* @see {@link GetTheConcept} for concept retrieval
|
|
120
|
-
* @see {@link
|
|
121
|
-
* @see {@link CreateTheConnectionGeneral} for creating connections between concepts
|
|
122
|
-
* @see {@link DeleteConnectionById} for connection deletion
|
|
123
|
-
* @see {@link SyncData.SyncDataOnline} for backend synchronization
|
|
120
|
+
* @see {@link Transaction} for the create/delete ordering and rollback semantics
|
|
124
121
|
*/
|
|
125
122
|
export default function UpdateComposition(patcherStructure: PatcherStructure): Promise<any>;
|