@mongodb-js/compass-indexes 0.0.0-next-a863ce6adfb98ced08f9644a294f5b63b110c7d8 → 0.0.0-next-c3291a871fc2c07d3e2038cc1ad275c102e1d321
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/browser.js +1 -1
- package/dist/index.js +1 -1
- package/dist/src/components/indexes-table/property-field.d.ts +1 -1
- package/dist/src/components/indexes-table/property-field.d.ts.map +1 -1
- package/dist/src/modules/create-index/index.d.ts +12 -12
- package/dist/src/modules/create-index/index.d.ts.map +1 -1
- package/dist/src/modules/drop-index/index.d.ts +1 -1
- package/dist/src/modules/drop-index/index.d.ts.map +1 -1
- package/dist/src/modules/in-progress-indexes.d.ts +10 -6
- package/dist/src/modules/in-progress-indexes.d.ts.map +1 -1
- package/dist/src/modules/index.d.ts +1 -1
- package/dist/src/modules/indexes.d.ts +4 -21
- package/dist/src/modules/indexes.d.ts.map +1 -1
- package/dist/src/stores/create-index.d.ts +11 -11
- package/dist/src/utils/index-link-helper.d.ts +1 -23
- package/dist/src/utils/index-link-helper.d.ts.map +1 -1
- package/package.json +14 -16
@@ -1,6 +1,6 @@
|
|
1
1
|
import React from 'react';
|
2
2
|
import type { IndexDefinition } from '../../modules/indexes';
|
3
|
-
export declare const getPropertyTooltip: (property:
|
3
|
+
export declare const getPropertyTooltip: (property: string | undefined, extra: IndexDefinition['extra']) => string | null;
|
4
4
|
declare type PropertyFieldProps = {
|
5
5
|
extra: IndexDefinition['extra'];
|
6
6
|
properties: IndexDefinition['properties'];
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"property-field.d.ts","sourceRoot":"","sources":["../../../../src/components/indexes-table/property-field.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAY1B,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAC;AAkB7D,eAAO,MAAM,kBAAkB,aACnB,
|
1
|
+
{"version":3,"file":"property-field.d.ts","sourceRoot":"","sources":["../../../../src/components/indexes-table/property-field.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAY1B,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAC;AAkB7D,eAAO,MAAM,kBAAkB,aACnB,MAAM,GAAG,SAAS,SACrB,eAAe,CAAC,OAAO,CAAC,KAC9B,MAAM,GAAG,IAMX,CAAC;AA2CF,aAAK,kBAAkB,GAAG;IACxB,KAAK,EAAE,eAAe,CAAC,OAAO,CAAC,CAAC;IAChC,UAAU,EAAE,eAAe,CAAC,YAAY,CAAC,CAAC;IAC1C,WAAW,EAAE,eAAe,CAAC,aAAa,CAAC,CAAC;CAC7C,CAAC;AAEF,QAAA,MAAM,aAAa,EAAE,KAAK,CAAC,iBAAiB,CAAC,kBAAkB,CAoC9D,CAAC;AAEF,eAAe,aAAa,CAAC"}
|
@@ -12,22 +12,12 @@ declare const reducer: import("redux").Reducer<import("redux").CombinedState<{
|
|
12
12
|
schemaFields: string[];
|
13
13
|
error: string | null;
|
14
14
|
options: {
|
15
|
-
name: {
|
16
|
-
enabled: boolean;
|
17
|
-
} & {
|
18
|
-
value: string;
|
19
|
-
};
|
20
15
|
unique: {
|
21
16
|
enabled: boolean;
|
22
17
|
} & {
|
23
18
|
value: boolean;
|
24
19
|
};
|
25
|
-
|
26
|
-
enabled: boolean;
|
27
|
-
} & {
|
28
|
-
value: boolean;
|
29
|
-
};
|
30
|
-
collation: {
|
20
|
+
name: {
|
31
21
|
enabled: boolean;
|
32
22
|
} & {
|
33
23
|
value: string;
|
@@ -47,11 +37,21 @@ declare const reducer: import("redux").Reducer<import("redux").CombinedState<{
|
|
47
37
|
} & {
|
48
38
|
value: string;
|
49
39
|
};
|
40
|
+
collation: {
|
41
|
+
enabled: boolean;
|
42
|
+
} & {
|
43
|
+
value: string;
|
44
|
+
};
|
50
45
|
columnstoreProjection: {
|
51
46
|
enabled: boolean;
|
52
47
|
} & {
|
53
48
|
value: string;
|
54
49
|
};
|
50
|
+
sparse: {
|
51
|
+
enabled: boolean;
|
52
|
+
} & {
|
53
|
+
value: boolean;
|
54
|
+
};
|
55
55
|
};
|
56
56
|
}>, import("redux").Action<any>>;
|
57
57
|
export declare type RootState = ReturnType<typeof reducer>;
|
@@ -60,5 +60,5 @@ export declare type CreateIndexSpec = {
|
|
60
60
|
};
|
61
61
|
export default reducer;
|
62
62
|
export declare const closeCreateIndexModal: () => (dispatch: Dispatch) => void;
|
63
|
-
export declare const createIndex: () => (dispatch: Dispatch, getState: () => RootState) => void
|
63
|
+
export declare const createIndex: () => (dispatch: Dispatch, getState: () => RootState) => Promise<void>;
|
64
64
|
//# sourceMappingURL=index.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/modules/create-index/index.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AAatC,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,wBAAwB,CAAC;AAiBzD,QAAA,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gCAqBX,CAAC;AAEH,oBAAY,SAAS,GAAG,UAAU,CAAC,OAAO,OAAO,CAAC,CAAC;AAEnD,oBAAY,eAAe,GAAG;IAC5B,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,GAAG,MAAM,CAAC;CAChC,CAAC;AAEF,eAAe,OAAO,CAAC;AAEvB,eAAO,MAAM,qBAAqB,mBACd,QAAQ,SAK3B,CAAC;
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/modules/create-index/index.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AAatC,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,wBAAwB,CAAC;AAiBzD,QAAA,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gCAqBX,CAAC;AAEH,oBAAY,SAAS,GAAG,UAAU,CAAC,OAAO,OAAO,CAAC,CAAC;AAEnD,oBAAY,eAAe,GAAG;IAC5B,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,GAAG,MAAM,CAAC;CAChC,CAAC;AAEF,eAAe,OAAO,CAAC;AAEvB,eAAO,MAAM,qBAAqB,mBACd,QAAQ,SAK3B,CAAC;AA2CF,eAAO,MAAM,WAAW,mBACE,QAAQ,YAAY,MAAM,SAAS,kBAiK5D,CAAC"}
|
@@ -21,5 +21,5 @@ declare const rootReducer: (state: RootState, action: AnyAction) => import("redu
|
|
21
21
|
namespace: string;
|
22
22
|
}>;
|
23
23
|
export default rootReducer;
|
24
|
-
export declare const dropIndex: (indexName: string) => (dispatch: Dispatch, getState: () => RootState) => void
|
24
|
+
export declare const dropIndex: (indexName: string) => (dispatch: Dispatch, getState: () => RootState) => Promise<void>;
|
25
25
|
//# sourceMappingURL=index.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/modules/drop-index/index.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,SAAS,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AAgCjD,QAAA,MAAM,OAAO;;;;;;;;;gCASX,CAAC;AAEH,oBAAY,SAAS,GAAG,UAAU,CAAC,OAAO,OAAO,CAAC,CAAC;AAUnD,QAAA,MAAM,WAAW,UAAW,SAAS,UAAU,SAAS;;;;;;;;;EAYvD,CAAC;AAEF,eAAe,WAAW,CAAC;AAQ3B,eAAO,MAAM,SAAS,cAAe,MAAM,
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/modules/drop-index/index.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,SAAS,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AAgCjD,QAAA,MAAM,OAAO;;;;;;;;;gCASX,CAAC;AAEH,oBAAY,SAAS,GAAG,UAAU,CAAC,OAAO,OAAO,CAAC,CAAC;AAUnD,QAAA,MAAM,WAAW,UAAW,SAAS,UAAU,SAAS;;;;;;;;;EAYvD,CAAC;AAEF,eAAe,WAAW,CAAC;AAQ3B,eAAO,MAAM,SAAS,cAAe,MAAM,gBACjB,QAAQ,YAAY,MAAM,SAAS,kBAkB5D,CAAC"}
|
@@ -1,23 +1,27 @@
|
|
1
1
|
import type { AnyAction } from 'redux';
|
2
2
|
import type { CreateIndexSpec } from './create-index';
|
3
|
-
import type { IndexFieldsDefinition } from './indexes';
|
4
3
|
export declare const IN_PROGRESS_INDEXES_ADDED = "indexes/in-progress-indexes/IN_PROGRESS_INDEXES_ADDED";
|
5
4
|
export declare const IN_PROGRESS_INDEXES_REMOVED = "indexes/in-progress-indexes/IN_PROGRESS_INDEXES_REMOVED";
|
6
5
|
export declare const IN_PROGRESS_INDEXES_FAILED = "indexes/in-progress-indexes/IN_PROGRESS_INDEXES_FAILED";
|
7
6
|
export declare type InProgressIndex = {
|
8
7
|
id: string;
|
9
|
-
status: 'inprogress' | 'failed';
|
10
8
|
key: CreateIndexSpec;
|
11
|
-
fields:
|
9
|
+
fields: {
|
10
|
+
field: string;
|
11
|
+
value: string | number;
|
12
|
+
}[];
|
12
13
|
name: string;
|
13
14
|
ns: string;
|
14
15
|
size: number;
|
15
16
|
relativeSize: number;
|
16
17
|
usageCount: number;
|
17
|
-
|
18
|
+
extra: {
|
19
|
+
status: 'inprogress' | 'failed';
|
20
|
+
error?: string;
|
21
|
+
};
|
18
22
|
};
|
19
|
-
export declare const INITIAL_STATE:
|
20
|
-
export default function reducer(state:
|
23
|
+
export declare const INITIAL_STATE: InProgressIndex[];
|
24
|
+
export default function reducer(state: InProgressIndex[] | undefined, action: AnyAction): any[];
|
21
25
|
export declare const inProgressIndexAdded: (inProgressIndex: InProgressIndex) => {
|
22
26
|
type: string;
|
23
27
|
inProgressIndex: InProgressIndex;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"in-progress-indexes.d.ts","sourceRoot":"","sources":["../../../src/modules/in-progress-indexes.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AACvC,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,gBAAgB,CAAC;
|
1
|
+
{"version":3,"file":"in-progress-indexes.d.ts","sourceRoot":"","sources":["../../../src/modules/in-progress-indexes.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AACvC,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,gBAAgB,CAAC;AAKtD,eAAO,MAAM,yBAAyB,0DACmB,CAAC;AAK1D,eAAO,MAAM,2BAA2B,4DACmB,CAAC;AAK5D,eAAO,MAAM,0BAA0B,2DACmB,CAAC;AAE3D,oBAAY,eAAe,GAAG;IAC5B,EAAE,EAAE,MAAM,CAAC;IACX,GAAG,EAAE,eAAe,CAAC;IACrB,MAAM,EAAE;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE,EAAE,CAAC;IACpD,IAAI,EAAE,MAAM,CAAC;IACb,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,YAAY,EAAE,MAAM,CAAC;IACrB,UAAU,EAAE,MAAM,CAAC;IACnB,KAAK,EAAE;QACL,MAAM,EAAE,YAAY,GAAG,QAAQ,CAAC;QAChC,KAAK,CAAC,EAAE,MAAM,CAAC;KAChB,CAAC;CACH,CAAC;AAKF,eAAO,MAAM,aAAa,EAAE,eAAe,EAAO,CAAC;AAUnD,MAAM,CAAC,OAAO,UAAU,OAAO,CAAC,KAAK,+BAAgB,EAAE,MAAM,EAAE,SAAS,SAyBvE;AASD,eAAO,MAAM,oBAAoB,oBAAqB,eAAe;;;CAGnE,CAAC;AASH,eAAO,MAAM,sBAAsB,sBAAuB,MAAM;;;CAG9D,CAAC;AAUH,eAAO,MAAM,qBAAqB;uBAIb,MAAM;WAClB,MAAM;;;;;CAKb,CAAC"}
|
@@ -13,7 +13,7 @@ declare const reducer: import("redux").Reducer<import("redux").CombinedState<{
|
|
13
13
|
serverVersion: string;
|
14
14
|
namespace: string;
|
15
15
|
isRefreshing: boolean;
|
16
|
-
inProgressIndexes:
|
16
|
+
inProgressIndexes: any[];
|
17
17
|
}>, import("redux").Action<any>>;
|
18
18
|
export declare type RootState = ReturnType<typeof reducer>;
|
19
19
|
declare const rootReducer: (state: RootState, action: AnyAction) => RootState;
|
@@ -1,3 +1,4 @@
|
|
1
|
+
import type { IndexDefinition as _IndexDefinition } from 'mongodb-data-service';
|
1
2
|
import type { ThunkAction } from 'redux-thunk';
|
2
3
|
import type { AnyAction } from 'redux';
|
3
4
|
import type { RootState } from './index';
|
@@ -12,26 +13,8 @@ declare const sortColumnToProps: {
|
|
12
13
|
readonly Usage: "usageCount";
|
13
14
|
readonly Properties: "properties";
|
14
15
|
};
|
15
|
-
export declare type
|
16
|
-
|
17
|
-
value: number | string;
|
18
|
-
};
|
19
|
-
export declare type IndexDefinition = {
|
20
|
-
name: string;
|
21
|
-
ns: string;
|
22
|
-
fields: {
|
23
|
-
serialize: () => IndexFieldsDefinition[];
|
24
|
-
};
|
25
|
-
type: 'regular' | 'geospatial' | 'hashed' | 'text' | 'wildcard' | 'clustered' | 'columnstore';
|
26
|
-
cardinality: 'single' | 'compound';
|
27
|
-
properties: ('unique' | 'sparse' | 'partial' | 'ttl' | 'collation')[];
|
28
|
-
extra: Record<string, string | number | Record<string, any>>;
|
29
|
-
size: number;
|
30
|
-
relativeSize: number;
|
31
|
-
usageCount: number;
|
32
|
-
usageSince?: Date;
|
33
|
-
usageHost?: string;
|
34
|
-
};
|
16
|
+
export declare type IndexDefinition = Omit<_IndexDefinition, 'type' | 'cardinality' | 'properties' | 'version'> & Partial<_IndexDefinition>;
|
17
|
+
export declare type IndexFieldsDefinition = _IndexDefinition['fields'];
|
35
18
|
export declare enum ActionTypes {
|
36
19
|
LoadIndexes = "indexes/indexes/LOAD_INDEXES",
|
37
20
|
SortIndexes = "indexes/indexes/SORT_INDEXES"
|
@@ -52,7 +35,7 @@ export declare const INITIAL_STATE: State;
|
|
52
35
|
export default function reducer(state: State | undefined, action: Actions): State;
|
53
36
|
export declare const loadIndexes: (indexes: IndexDefinition[]) => LoadIndexesAction;
|
54
37
|
export declare const sortIndexes: (column: SortColumn, order: SortDirection) => ThunkAction<void, RootState, void, SortIndexesAction>;
|
55
|
-
export declare const fetchIndexes: () => ThunkAction<void
|
38
|
+
export declare const fetchIndexes: () => ThunkAction<Promise<void>, RootState, void, LoadIndexesAction | RefreshFinishedAction | HandleErrorAction>;
|
56
39
|
export declare const dropFailedIndex: (id: string) => ThunkAction<void, RootState, void, AnyAction>;
|
57
40
|
export {};
|
58
41
|
//# sourceMappingURL=indexes.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"indexes.d.ts","sourceRoot":"","sources":["../../../src/modules/indexes.ts"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"indexes.d.ts","sourceRoot":"","sources":["../../../src/modules/indexes.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,eAAe,IAAI,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AAChF,OAAO,KAAK,EAAE,WAAW,EAAiB,MAAM,aAAa,CAAC;AAG9D,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAEvC,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;AAEzC,OAAO,KAAK,EAAE,iBAAiB,EAAgB,MAAM,SAAS,CAAC;AAE/D,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,iBAAiB,CAAC;AAW7D,oBAAY,UAAU,GAAG,MAAM,OAAO,iBAAiB,CAAC;AAExD,oBAAY,aAAa,GAAG,KAAK,GAAG,MAAM,CAAC;AAE3C,QAAA,MAAM,iBAAiB;;;;;;CAMb,CAAC;AAEX,oBAAY,eAAe,GAAG,IAAI,CAChC,gBAAgB,EAChB,MAAM,GAAG,aAAa,GAAG,YAAY,GAAG,SAAS,CAClD,GACC,OAAO,CAAC,gBAAgB,CAAC,CAAC;AAE5B,oBAAY,qBAAqB,GAAG,gBAAgB,CAAC,QAAQ,CAAC,CAAC;AAE/D,oBAAY,WAAW;IACrB,WAAW,iCAAiC;IAC5C,WAAW,iCAAiC;CAC7C;AAED,aAAK,iBAAiB,GAAG;IACvB,IAAI,EAAE,WAAW,CAAC,WAAW,CAAC;IAC9B,OAAO,EAAE,eAAe,EAAE,CAAC;CAC5B,CAAC;AAEF,oBAAY,iBAAiB,GAAG;IAC9B,IAAI,EAAE,WAAW,CAAC,WAAW,CAAC;IAC9B,OAAO,EAAE,eAAe,EAAE,CAAC;IAC3B,MAAM,EAAE,UAAU,CAAC;IACnB,KAAK,EAAE,aAAa,CAAC;CACtB,CAAC;AAEF,aAAK,OAAO,GAAG,iBAAiB,GAAG,iBAAiB,CAAC;AACrD,aAAK,KAAK,GAAG,eAAe,EAAE,CAAC;AAE/B,eAAO,MAAM,aAAa,EAAE,KAAU,CAAC;AAEvC,MAAM,CAAC,OAAO,UAAU,OAAO,CAAC,KAAK,mBAAuB,EAAE,MAAM,EAAE,OAAO,SAU5E;AAED,eAAO,MAAM,WAAW,YAAa,eAAe,EAAE,KAAG,iBAGvD,CAAC;AAEH,eAAO,MAAM,WAAW,WACd,UAAU,SACX,aAAa,KACnB,YAAY,IAAI,EAAE,SAAS,EAAE,IAAI,EAAE,iBAAiB,CAUtD,CAAC;AAeF,eAAO,MAAM,YAAY,QAAO,YAC9B,QAAQ,IAAI,CAAC,EACb,SAAS,EACT,IAAI,EACJ,iBAAiB,GAAG,qBAAqB,GAAG,iBAAiB,CAuC9D,CAAC;AAmEF,eAAO,MAAM,eAAe,OACtB,MAAM,KACT,YAAY,IAAI,EAAE,SAAS,EAAE,IAAI,EAAE,SAAS,CAK9C,CAAC"}
|
@@ -12,22 +12,12 @@ declare function configureStore(options?: {}): import("redux").Store<import("red
|
|
12
12
|
schemaFields: string[];
|
13
13
|
error: string | null;
|
14
14
|
options: {
|
15
|
-
name: {
|
16
|
-
enabled: boolean;
|
17
|
-
} & {
|
18
|
-
value: string;
|
19
|
-
};
|
20
15
|
unique: {
|
21
16
|
enabled: boolean;
|
22
17
|
} & {
|
23
18
|
value: boolean;
|
24
19
|
};
|
25
|
-
|
26
|
-
enabled: boolean;
|
27
|
-
} & {
|
28
|
-
value: boolean;
|
29
|
-
};
|
30
|
-
collation: {
|
20
|
+
name: {
|
31
21
|
enabled: boolean;
|
32
22
|
} & {
|
33
23
|
value: string;
|
@@ -47,11 +37,21 @@ declare function configureStore(options?: {}): import("redux").Store<import("red
|
|
47
37
|
} & {
|
48
38
|
value: string;
|
49
39
|
};
|
40
|
+
collation: {
|
41
|
+
enabled: boolean;
|
42
|
+
} & {
|
43
|
+
value: string;
|
44
|
+
};
|
50
45
|
columnstoreProjection: {
|
51
46
|
enabled: boolean;
|
52
47
|
} & {
|
53
48
|
value: string;
|
54
49
|
};
|
50
|
+
sparse: {
|
51
|
+
enabled: boolean;
|
52
|
+
} & {
|
53
|
+
value: boolean;
|
54
|
+
};
|
55
55
|
};
|
56
56
|
}, import("redux").Action<any>> & {
|
57
57
|
dispatch: any;
|
@@ -1,24 +1,2 @@
|
|
1
|
-
|
2
|
-
SINGLE: string;
|
3
|
-
COMPOUND: string;
|
4
|
-
UNIQUE: string;
|
5
|
-
PARTIAL: string;
|
6
|
-
SPARSE: string;
|
7
|
-
TTL: string;
|
8
|
-
'2D': string;
|
9
|
-
'2DSPHERE': string;
|
10
|
-
GEOHAYSTACK: string;
|
11
|
-
GEOSPATIAL: string;
|
12
|
-
WILDCARD: string;
|
13
|
-
CLUSTERED: string;
|
14
|
-
COLUMNSTORE: null;
|
15
|
-
TEXT: string;
|
16
|
-
HASHED: string;
|
17
|
-
REGULAR: string;
|
18
|
-
COLLATION: string;
|
19
|
-
COLLATION_REF: string;
|
20
|
-
UNKNOWN: null;
|
21
|
-
};
|
22
|
-
export default function getIndexHelpLink(section: keyof typeof HELP_URLS): string | null;
|
23
|
-
export {};
|
1
|
+
export default function getIndexHelpLink(section?: string): string | null;
|
24
2
|
//# sourceMappingURL=index-link-helper.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index-link-helper.d.ts","sourceRoot":"","sources":["../../../src/utils/index-link-helper.ts"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"index-link-helper.d.ts","sourceRoot":"","sources":["../../../src/utils/index-link-helper.ts"],"names":[],"mappings":"AA+BA,MAAM,CAAC,OAAO,UAAU,gBAAgB,CAAC,OAAO,SAAY,iBAE3D"}
|
package/package.json
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
"name": "@mongodb-js/compass-indexes",
|
3
3
|
"productName": "Compass Indexes plugin",
|
4
4
|
"description": "Collection index management for Compass",
|
5
|
-
"version": "0.0.0-next-
|
5
|
+
"version": "0.0.0-next-c3291a871fc2c07d3e2038cc1ad275c102e1d321",
|
6
6
|
"author": {
|
7
7
|
"name": "MongoDB Inc",
|
8
8
|
"email": "compass@mongodb.com"
|
@@ -63,15 +63,14 @@
|
|
63
63
|
"@mongodb-js/mongodb-redux-common": "^2.0.6",
|
64
64
|
"bson": "^5.0.1",
|
65
65
|
"compass-preferences-model": "^2.7.0",
|
66
|
-
"mongodb-index-model": "^4.1.2",
|
67
66
|
"react": "^17.0.2"
|
68
67
|
},
|
69
68
|
"devDependencies": {
|
70
|
-
"@mongodb-js/eslint-config-compass": "0.0.0-next-
|
71
|
-
"@mongodb-js/mocha-config-compass": "0.0.0-next-
|
72
|
-
"@mongodb-js/prettier-config-compass": "0.0.0-next-
|
73
|
-
"@mongodb-js/tsconfig-compass": "0.0.0-next-
|
74
|
-
"@mongodb-js/webpack-config-compass": "0.0.0-next-
|
69
|
+
"@mongodb-js/eslint-config-compass": "0.0.0-next-c3291a871fc2c07d3e2038cc1ad275c102e1d321",
|
70
|
+
"@mongodb-js/mocha-config-compass": "0.0.0-next-c3291a871fc2c07d3e2038cc1ad275c102e1d321",
|
71
|
+
"@mongodb-js/prettier-config-compass": "0.0.0-next-c3291a871fc2c07d3e2038cc1ad275c102e1d321",
|
72
|
+
"@mongodb-js/tsconfig-compass": "0.0.0-next-c3291a871fc2c07d3e2038cc1ad275c102e1d321",
|
73
|
+
"@mongodb-js/webpack-config-compass": "0.0.0-next-c3291a871fc2c07d3e2038cc1ad275c102e1d321",
|
75
74
|
"@testing-library/react": "^12.1.4",
|
76
75
|
"@testing-library/user-event": "^13.5.0",
|
77
76
|
"chai": "^4.2.0",
|
@@ -80,12 +79,12 @@
|
|
80
79
|
"electron": "^22.0.2",
|
81
80
|
"enzyme": "^3.11.0",
|
82
81
|
"eslint": "^7.25.0",
|
83
|
-
"hadron-app-registry": "0.0.0-next-
|
82
|
+
"hadron-app-registry": "0.0.0-next-c3291a871fc2c07d3e2038cc1ad275c102e1d321",
|
84
83
|
"lodash.clonedeep": "^4.5.0",
|
85
84
|
"lodash.contains": "^2.4.3",
|
86
85
|
"mocha": "^10.2.0",
|
87
86
|
"mongodb": "^5.1.0",
|
88
|
-
"mongodb-data-service": "0.0.0-next-
|
87
|
+
"mongodb-data-service": "0.0.0-next-c3291a871fc2c07d3e2038cc1ad275c102e1d321",
|
89
88
|
"mongodb-query-parser": "^2.4.8",
|
90
89
|
"numeral": "^2.0.6",
|
91
90
|
"nyc": "^15.1.0",
|
@@ -102,13 +101,12 @@
|
|
102
101
|
"xvfb-maybe": "^0.2.1"
|
103
102
|
},
|
104
103
|
"dependencies": {
|
105
|
-
"@mongodb-js/compass-components": "0.0.0-next-
|
106
|
-
"@mongodb-js/compass-editor": "0.0.0-next-
|
107
|
-
"@mongodb-js/compass-logging": "0.0.0-next-
|
108
|
-
"@mongodb-js/mongodb-redux-common": "0.0.0-next-
|
104
|
+
"@mongodb-js/compass-components": "0.0.0-next-c3291a871fc2c07d3e2038cc1ad275c102e1d321",
|
105
|
+
"@mongodb-js/compass-editor": "0.0.0-next-c3291a871fc2c07d3e2038cc1ad275c102e1d321",
|
106
|
+
"@mongodb-js/compass-logging": "0.0.0-next-c3291a871fc2c07d3e2038cc1ad275c102e1d321",
|
107
|
+
"@mongodb-js/mongodb-redux-common": "0.0.0-next-c3291a871fc2c07d3e2038cc1ad275c102e1d321",
|
109
108
|
"bson": "^5.0.1",
|
110
|
-
"compass-preferences-model": "0.0.0-next-
|
111
|
-
"mongodb-index-model": "0.0.0-next-a863ce6adfb98ced08f9644a294f5b63b110c7d8"
|
109
|
+
"compass-preferences-model": "0.0.0-next-c3291a871fc2c07d3e2038cc1ad275c102e1d321"
|
112
110
|
},
|
113
|
-
"gitHead": "
|
111
|
+
"gitHead": "c3291a871fc2c07d3e2038cc1ad275c102e1d321"
|
114
112
|
}
|