Skip to content

Commit 418b7c6

Browse files
committed
add missing 4.1 exports
1 parent 8347e64 commit 418b7c6

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

scripts/reportMissingTopLevelExports.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,13 @@ const IGNORE_MODULES = [
8080
"Documents/Subscriptions/SubscriptionStateWithNodeDetails*",
8181
"Documents/Subscriptions/SubscriptionTryout*",
8282
"Documents/Commands/**",
83+
"Documents/Indexes/IndexTypeExtensions*",
84+
"Documents/Indexes/AbstractIndexCreationTaskBase*",
85+
"Documents/Session/ClusterTransactionOperationsBase*",
86+
"Documents/Session/IAttachmentsSessionOperationsBase*",
87+
"Documents/Session/SessionCountersBase*",
88+
"Documents/Indexes/AbstractGenericIndexCreationTask*",
89+
"Documents/Subscriptions/BatchFromServer*"
8390
];
8491

8592
function main() {

src/index.ts

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,8 @@ export * from "./Documents/Operations/PatchStatus";
164164
export * from "./Documents/Operations/Revisions/ConfigureRevisionsOperation";
165165
export * from "./Documents/Operations/RevisionsCollectionConfiguration";
166166
export * from "./Documents/Operations/RevisionsConfiguration";
167+
export * from "./Documents/Operations/DetailedDatabaseStatistics";
168+
export * from "./Documents/Operations/SessionOperationExecutor";
167169

168170
// INDEXES
169171
export { GetIndexOperation } from "./Documents/Operations/Indexes/GetIndexOperation";
@@ -249,6 +251,19 @@ export * from "./Documents/Session/IAttachmentsSessionOperations";
249251
export * from "./Documents/Session/IDocumentQueryCustomization";
250252
export * from "./Documents/Session/IRevisionsSessionOperations";
251253
export * from "./Documents/Session/ResponseTimeInformation";
254+
export * from "./Documents/Session/MetadataObject";
255+
export * from "./Documents/Session/TransactionMode";
256+
export * from "./Documents/Session/IClusterTransactionOperations";
257+
export * from "./Documents/Session/ISessionDocumentCounters";
258+
export * from "./Documents/Session/ClusterTransactionOperations";
259+
export * from "./Documents/Session/CounterInternalTypes";
260+
export * from "./Documents/Session/Loaders/IIncludeBuilder";
261+
export * from "./Documents/Session/Loaders/IncludeBuilder";
262+
export * from "./Documents/Session/Loaders/IncludeBuilderBase";
263+
export * from "./Documents/Session/Loaders/IQueryIncludeBuilder";
264+
export * from "./Documents/Session/Loaders/QueryIncludeBuilder";
265+
export * from "./Documents/Session/Operations/BatchCommandResult";
266+
export * from "./Documents/Session/SessionDocumentCounters";
252267

253268
// BATCH
254269
export * from "./Documents/Commands/StreamResult";
@@ -273,6 +288,8 @@ export { CounterBatchOperation } from "./Documents/Operations/Counters/CounterBa
273288
export { CounterOperationType } from "./Documents/Operations/Counters/CounterOperationType";
274289
export { CounterOperation } from "./Documents/Operations/Counters/CounterOperation";
275290
export { DocumentCountersOperation } from "./Documents/Operations/Counters/DocumentCountersOperation";
291+
export * from "./Documents/Operations/Counters/CounterDetail";
292+
export * from "./Documents/Operations/Counters/CountersDetail";
276293

277294
// AUTH
278295
export * from "./Auth/AuthOptions";
@@ -316,6 +333,9 @@ export * from "./Documents/Queries/Facets/GenericRangeFacet";
316333
export * from "./Documents/Queries/Facets/IAggregationDocumentQuery";
317334
export * from "./Documents/Queries/Facets/IFacetBuilder";
318335
export * from "./Documents/Queries/Facets/IFacetOperations";
336+
export * from "./Documents/Queries/Explanation/ExplanationOptions";
337+
export * from "./Documents/Queries/Explanation/Explanations";
338+
export * from "./Documents/Queries/Highlighting/QueryHighlightings";
319339

320340
// MORE LIKE THIS
321341
export * from "./Documents/Queries/MoreLikeThis/IMoreLikeThisBuilderBase";

0 commit comments

Comments
 (0)