File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
compass-e2e-tests/helpers Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff 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 `
Original file line number Diff line number Diff line change @@ -1026,7 +1026,7 @@ export const ExportSchemaButton = '[data-testid="open-schema-export-button"]';
10261026export const ExportSchemaFormatOptions =
10271027 '[data-testid="export-schema-format-type-box-group"]' ;
10281028export const exportSchemaFormatOption = (
1029- option : 'standardJSON' | 'mongoDBJSON' | 'extendedJSON '
1029+ option : 'standardJSON' | 'mongoDBJSON' | 'expandedJSON '
10301030) => `label[for="export-schema-format-${ option } -button"]` ;
10311031export const ExportSchemaOutput = '[data-testid="export-schema-content"]' ;
10321032export const ExportSchemaDownloadButton =
Original file line number Diff line number Diff 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 } ;
You can’t perform that action at this time.
0 commit comments