Skip to content

Commit b468e64

Browse files
committed
more updates
1 parent ed2441f commit b468e64

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

docs/tracking-plan.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1927,7 +1927,7 @@ This event is fired when user shares the schema.
19271927

19281928
- **has_schema** (required): `boolean`
19291929
- Indicates whether the schema was analyzed before sharing.
1930-
- **format** (required): `"standardJSON" | "mongoDBJSON" | "extendedJSON" | "legacyJSON"`
1930+
- **format** (required): `"standardJSON" | "mongoDBJSON" | "expandedJSON" | "legacyJSON"`
19311931
- **source** (required): `"app_menu" | "schema_tab"`
19321932
- **schema_width** (required): `number`
19331933
- The number of fields at the top level.
@@ -1950,7 +1950,7 @@ This event is fired when user shares the schema.
19501950
- **has_schema** (required): `boolean`
19511951
- Indicates whether the schema was analyzed before sharing.
19521952
- **schema_length** (required): `number`
1953-
- **format** (required): `"standardJSON" | "mongoDBJSON" | "extendedJSON" | "legacyJSON"`
1953+
- **format** (required): `"standardJSON" | "mongoDBJSON" | "expandedJSON" | "legacyJSON"`
19541954
- **stage** (required): `string`
19551955
- **is_compass_web** (optional): `true | undefined`
19561956
- **connection_id** (optional): `string | undefined`

packages/compass-e2e-tests/helpers/selectors.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1026,7 +1026,7 @@ export const ExportSchemaButton = '[data-testid="open-schema-export-button"]';
10261026
export const ExportSchemaFormatOptions =
10271027
'[data-testid="export-schema-format-type-box-group"]';
10281028
export const exportSchemaFormatOption = (
1029-
option: 'standardJSON' | 'mongoDBJSON' | 'extendedJSON'
1029+
option: 'standardJSON' | 'mongoDBJSON' | 'expandedJSON'
10301030
) => `label[for="export-schema-format-${option}-button"]`;
10311031
export const ExportSchemaOutput = '[data-testid="export-schema-content"]';
10321032
export const ExportSchemaDownloadButton =

packages/compass-telemetry/src/telemetry-events.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2003,7 +2003,7 @@ type SchemaExportedEvent = ConnectionScopedEvent<{
20032003
*/
20042004
has_schema: boolean;
20052005

2006-
format: 'standardJSON' | 'mongoDBJSON' | 'extendedJSON' | 'legacyJSON';
2006+
format: 'standardJSON' | 'mongoDBJSON' | 'expandedJSON' | 'legacyJSON';
20072007

20082008
source: 'app_menu' | 'schema_tab';
20092009

@@ -2039,7 +2039,7 @@ type SchemaExportFailedEvent = ConnectionScopedEvent<{
20392039

20402040
schema_length: number;
20412041

2042-
format: 'standardJSON' | 'mongoDBJSON' | 'extendedJSON' | 'legacyJSON';
2042+
format: 'standardJSON' | 'mongoDBJSON' | 'expandedJSON' | 'legacyJSON';
20432043

20442044
stage: string;
20452045
};

0 commit comments

Comments
 (0)