@dynatrace-sdk/client-query 1.20.0 → 1.21.1

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.
Files changed (26) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/README.md +15 -12
  3. package/cjs/index.js +157 -342
  4. package/dynatrace-metadata.json +3 -4
  5. package/esm/index.js +64 -236
  6. package/package.json +2 -2
  7. package/types/packages/client/query/src/lib/apis/query-assistance-api.d.ts +2 -2
  8. package/types/packages/client/query/src/lib/apis/query-execution-api.d.ts +2 -2
  9. package/types/packages/client/query/src/lib/models/autocomplete-request.d.ts +4 -0
  10. package/types/packages/client/query/src/lib/models/autocomplete-suggestion-part.d.ts +1 -1
  11. package/types/packages/client/query/src/lib/models/dql-terminal-node.d.ts +1 -1
  12. package/types/packages/client/query/src/lib/models/error-response.d.ts +4 -0
  13. package/types/packages/client/query/src/lib/models/execute-request.d.ts +4 -0
  14. package/types/packages/client/query/src/lib/models/token-type.d.ts +9 -1
  15. package/types/packages/{client/query/src/lib/apis → shared-client-utils/src}/api-client-options.d.ts +1 -1
  16. package/types/packages/shared-client-utils/src/api-gateway-errors-handler.d.ts +9 -0
  17. package/types/packages/shared-client-utils/src/encoding.d.ts +17 -0
  18. package/types/packages/shared-client-utils/src/get-error-message.d.ts +8 -0
  19. package/types/packages/shared-client-utils/src/index.d.ts +6 -0
  20. package/types/packages/shared-client-utils/src/transformations.d.ts +64 -0
  21. package/types/packages/shared-client-utils/src/url-helpers.d.ts +12 -0
  22. package/types/packages/client/query/src/lib/error-envelopes/api-gateway-errors-handler.d.ts +0 -2
  23. package/types/packages/client/query/src/lib/error-envelopes/get-error-message.d.ts +0 -1
  24. package/types/packages/client/query/src/lib/utils/encoding.d.ts +0 -10
  25. package/types/packages/client/query/src/lib/utils/transformations.d.ts +0 -7
  26. package/types/packages/client/query/src/lib/utils/url-helpers.d.ts +0 -6
package/CHANGELOG.md CHANGED
@@ -2,9 +2,39 @@
2
2
 
3
3
  @dynatrace-sdk/client-query
4
4
 
5
+ ## 1.21.1
6
+
7
+ ### Patch Changes
8
+
9
+ - Update dependencies. (APPDEV-11813)
10
+
11
+ ## 1.21.0
12
+
13
+ ### Minor Changes
14
+
15
+ - Add new token types to the `TokenType` enum
16
+ - Add `Retry-After` header that indicates the number of seconds to wait before retrying the request
17
+ - Add `retryAfterSeconds` property to ErrorResponse to indicate the number of seconds to wait until the next retry
18
+ - Deprecate `enfore-query-consumption-limit` header
19
+ - Add `enforceQueryConsumptionLimit` body parameter to `ExecuteRequest` and `AutocompleteRequest`
20
+
21
+ ## 1.20.2
22
+
23
+ ### Patch Changes
24
+
25
+ - Improve performance of date transformations. (APPDEV-12840)
26
+
27
+ ## 1.20.1
28
+
29
+ ### Patch Changes
30
+
31
+ - Improve performance of payload transformations. (APPDEV-12840)
32
+ - Remove generatedAt property from metadata file. (APPDEV-12696)
33
+
5
34
  ## 1.20.0
6
35
 
7
36
  ### Minor changes
37
+
8
38
  - Add request body parameter `includeTypes` to `ExecuteRequest`
9
39
  - Add header `dt-client-context` to all query endpoints
10
40
  - Add `enforce-query-consumption-limit` header to `/query:execute` and `/query:autocomplete` endpoints
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @dynatrace-sdk/client-query
2
2
 
3
- [![npm](https://img.shields.io/badge/npm-v1.20.0-blue)](https://www.npmjs.com/package/@dynatrace-sdk/client-query/v/1.20.0)
3
+ [![npm](https://img.shields.io/badge/npm-v1.21.1-blue)](https://www.npmjs.com/package/@dynatrace-sdk/client-query/v/1.21.1)
4
4
  [![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
5
5
 
6
6
  Exposes an API to fetch records stored in Grail
@@ -92,7 +92,7 @@ a link to docs, etc.
92
92
  | --- | --- | --- |
93
93
  |config.body<sup>*required</sup>|<a href="#autocompleterequest" target="_blank" rel="noopener noreferrer">AutocompleteRequest</a>| |
94
94
  |config.dtClientContext|[string](https://developer.mozilla.org/en-US/docs/Glossary/String)|The dt-client-context header is an optional string parameter used for monitoring purposes. When included in a request, it helps retrieve information about the execution of the query. It shouldn't hold sensitive information. |
95
- |config.enforceQueryConsumptionLimit|[boolean](https://developer.mozilla.org/en-US/docs/Glossary/Boolean)|If set, query consumption limit will be enforced. |
95
+ |config.enforceQueryConsumptionLimit|[boolean](https://developer.mozilla.org/en-US/docs/Glossary/Boolean)|(DEPRECATED use body parameter 'enforceQueryConsumptionLimit' instead) If set, query consumption limit will be enforced. |
96
96
 
97
97
 
98
98
 
@@ -101,7 +101,7 @@ a link to docs, etc.
101
101
 
102
102
  | Return type | Description |
103
103
  |---|---|
104
- |Promise&lt;AutocompleteResponse&gt;|A list of structured autocomplete suggestions.|
104
+ |[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise)&lt;[AutocompleteResponse](#autocompleteresponse)&gt; | A list of structured autocomplete suggestions.|
105
105
 
106
106
 
107
107
  #### Throws
@@ -355,7 +355,7 @@ When displaying the query, pick one option. You may use the other options for ho
355
355
 
356
356
  | Return type | Description |
357
357
  |---|---|
358
- |Promise&lt;DQLNode&gt;|A node containing more nodes, a node offering different (semantically equivalent) versions of the query parts, or a terminal node that shows the canonical form.|
358
+ |[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise)&lt;[DQLNode](#dqlnode)&gt; | A node containing more nodes, a node offering different (semantically equivalent) versions of the query parts, or a terminal node that shows the canonical form.|
359
359
 
360
360
 
361
361
  #### Throws
@@ -424,7 +424,7 @@ submitting the query for execution.
424
424
 
425
425
  | Return type | Description |
426
426
  |---|---|
427
- |Promise&lt;VerifyResponse&gt;|Supplied query and parameters were verified.|
427
+ |[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise)&lt;[VerifyResponse](#verifyresponse)&gt; | Supplied query and parameters were verified.|
428
428
 
429
429
 
430
430
  #### Throws
@@ -528,7 +528,7 @@ It is guaranteed that every field of every record will have a corresponding type
528
528
 
529
529
  | Return type | Description |
530
530
  |---|---|
531
- |Promise&lt;QueryPollResponse | void&gt;|The query already finished.|
531
+ |[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise)&lt;[QueryPollResponse](#querypollresponse) \| void&gt; | The query already finished.|
532
532
 
533
533
 
534
534
  #### Throws
@@ -615,7 +615,7 @@ It is guaranteed that every field of every record will have a corresponding type
615
615
  | --- | --- | --- |
616
616
  |config.body<sup>*required</sup>|<a href="#executerequest">ExecuteRequest</a>| |
617
617
  |config.dtClientContext|[string](https://developer.mozilla.org/en-US/docs/Glossary/String)|The dt-client-context header is an optional string parameter used for monitoring purposes. When included in a request, it helps retrieve information about the execution of the query. It shouldn't hold sensitive information. |
618
- |config.enforceQueryConsumptionLimit|[boolean](https://developer.mozilla.org/en-US/docs/Glossary/Boolean)|If set, query consumption limit will be enforced. |
618
+ |config.enforceQueryConsumptionLimit|[boolean](https://developer.mozilla.org/en-US/docs/Glossary/Boolean)|(DEPRECATED use body parameter 'enforceQueryConsumptionLimit' instead) If set, query consumption limit will be enforced. |
619
619
  |config.enrich|[string](https://developer.mozilla.org/en-US/docs/Glossary/String)|If set additional data will be available in the metadata section. |
620
620
 
621
621
 
@@ -625,7 +625,7 @@ It is guaranteed that every field of every record will have a corresponding type
625
625
 
626
626
  | Return type | Description |
627
627
  |---|---|
628
- |Promise&lt;QueryStartResponse&gt;|The final status and results of the supplied query if it finished within a supplied requestTimeoutMilliseconds. \| The status of the query to start.|
628
+ |[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise)&lt;[QueryStartResponse](#querystartresponse)&gt; | The final status and results of the supplied query if it finished within a supplied requestTimeoutMilliseconds. \| The status of the query to start.|
629
629
 
630
630
 
631
631
  #### Throws
@@ -723,7 +723,7 @@ It is guaranteed that every field of every record will have a corresponding type
723
723
 
724
724
  | Return type | Description |
725
725
  |---|---|
726
- |Promise&lt;QueryPollResponse&gt;|The current status and results of the supplied query.|
726
+ |[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise)&lt;[QueryPollResponse](#querypollresponse)&gt; | The current status and results of the supplied query.|
727
727
 
728
728
 
729
729
  #### Throws
@@ -759,6 +759,7 @@ const data = await queryExecutionClient.queryPoll({
759
759
  | Name | Type | Description |
760
760
  | --- | --- | --- |
761
761
  |cursorPosition|[number](https://developer.mozilla.org/en-US/docs/Glossary/Number)| |
762
+ |enforceQueryConsumptionLimit|[boolean](https://developer.mozilla.org/en-US/docs/Glossary/Boolean)|Boolean to indicate if the query consumption limit should be enforced |
762
763
  |locale|[string](https://developer.mozilla.org/en-US/docs/Glossary/String)|The query locale. If none specified, then a language/country neutral locale is chosen. The input values take the ISO-639 Language code with an optional ISO-3166 country code appended to it with an underscore. For instance, both values are valid 'en' or 'en_US'. |
763
764
  |maxDataSuggestions|[number](https://developer.mozilla.org/en-US/docs/Glossary/Number)| |
764
765
  |query<sup>*required</sup>|[string](https://developer.mozilla.org/en-US/docs/Glossary/String)|The full query string. |
@@ -794,7 +795,7 @@ Part of the suggestion.
794
795
  |info|[string](https://developer.mozilla.org/en-US/docs/Glossary/String)|The type of the suggestion. |
795
796
  |suggestion<sup>*required</sup>|[string](https://developer.mozilla.org/en-US/docs/Glossary/String)|The suggested continuation of the query. |
796
797
  |synopsis|[string](https://developer.mozilla.org/en-US/docs/Glossary/String)|The synopsis of the suggestion. |
797
- |type<sup>*required</sup>|"SPACE" &#124; "LINEBREAK" &#124; "INDENT" &#124; "PIPE" &#124; "DOT" &#124; "COLON" &#124; "COMMA" &#124; "ASSIGNMENT" &#124; "BRACE_OPEN" &#124; "BRACE_CLOSE" &#124; "BRACKET_OPEN" &#124; "BRACKET_CLOSE" &#124; "PARENTHESIS_OPEN" &#124; "PARENTHESIS_CLOSE" &#124; "QUOTE" &#124; "SINGLE_QUOTE" &#124; "SLASH" &#124; "BOOLEAN_TRUE" &#124; "BOOLEAN_FALSE" &#124; "NULL" &#124; "COMMAND_NAME" &#124; "PARAMETER_KEY" &#124; "PARAMETER_VALUE_SCOPE" &#124; "FUNCTION_NAME" &#124; "TIMESERIES_AGGREGATION" &#124; "TIMESERIES_AGGREGATION_EXPRESSION" &#124; "OPERATOR" &#124; "SEARCH_OPERATOR" &#124; "TRAVERSAL_OPERATOR" &#124; "TRAVERSAL_RELATION_NAME" &#124; "TRAVERSAL_HOP_COUNT" &#124; "SIMPLE_IDENTIFIER" &#124; "DATA_OBJECT" &#124; "NUMBER" &#124; "STRING" &#124; "TIME_UNIT" &#124; "TIMESTAMP_VALUE" &#124; "METRIC_KEY" &#124; "VARIABLE" &#124; "END_COMMENT" &#124; "UID_VALUE" &#124; "PARSE_PATTERN" &#124; "FIELD_PATTERN" &#124; "SEARCH_PATTERN" &#124; "ENTITY_SELECTOR_PART" &#124; "SAVED_TABLE_NAME" &#124; "PARAMETER_MODIFIER" &#124; "FIELD_MODIFIER" &#124; "ENTITY_TYPE" &#124; "ENTITY_ATTRIBUTE" &#124; "SMARTSCAPE_ID_VALUE"|The type of the autocomplete token. |
798
+ |type<sup>*required</sup>|"SPACE" &#124; "LINEBREAK" &#124; "INDENT" &#124; "PIPE" &#124; "DOT" &#124; "COLON" &#124; "COMMA" &#124; "ASSIGNMENT" &#124; "BRACE_OPEN" &#124; "BRACE_CLOSE" &#124; "BRACKET_OPEN" &#124; "BRACKET_CLOSE" &#124; "PARENTHESIS_OPEN" &#124; "PARENTHESIS_CLOSE" &#124; "QUOTE" &#124; "SINGLE_QUOTE" &#124; "SLASH" &#124; "BOOLEAN_TRUE" &#124; "BOOLEAN_FALSE" &#124; "NULL" &#124; "COMMAND_NAME" &#124; "PARAMETER_KEY" &#124; "PARAMETER_VALUE_SCOPE" &#124; "FUNCTION_NAME" &#124; "TIMESERIES_AGGREGATION" &#124; "TIMESERIES_AGGREGATION_EXPRESSION" &#124; "OPERATOR" &#124; "SEARCH_OPERATOR" &#124; "TRAVERSAL_OPERATOR" &#124; "TRAVERSAL_RELATION_NAME" &#124; "TRAVERSAL_HOP_COUNT" &#124; "SIMPLE_IDENTIFIER" &#124; "DATA_OBJECT" &#124; "NUMBER" &#124; "STRING" &#124; "TIME_UNIT" &#124; "TIMESTAMP_VALUE" &#124; "METRIC_KEY" &#124; "VARIABLE" &#124; "END_COMMENT" &#124; "UID_VALUE" &#124; "PARSE_PATTERN" &#124; "FIELD_PATTERN" &#124; "SEARCH_PATTERN" &#124; "ENTITY_SELECTOR_PART" &#124; "SAVED_TABLE_NAME" &#124; "TABULAR_FILE_NAME" &#124; "PARAMETER_MODIFIER" &#124; "FIELD_MODIFIER" &#124; "ENTITY_TYPE" &#124; "ENTITY_ATTRIBUTE" &#124; "SMARTSCAPE_ID_VALUE" &#124; "ENUM_STRING" &#124; "FIELD_PREFIX" &#124; "BUCKET" &#124; "SMARTSCAPE_NODE_PATTERN" &#124; "SMARTSCAPE_EDGE_PATTERN" &#124; "SMARTSCAPE_NODE_TYPE" &#124; "SMARTSCAPE_EDGE_TYPE"|The type of the autocomplete token. |
798
799
 
799
800
  ### DQLAlternativeNode
800
801
 
@@ -840,7 +841,7 @@ Node that represents single token.
840
841
  |isOptional<sup>*required</sup>|[boolean](https://developer.mozilla.org/en-US/docs/Glossary/Boolean)|True if the node is optional. |
841
842
  |nodeType<sup>*required</sup>|"TERMINAL" &#124; "CONTAINER" &#124; "ALTERNATIVE"|The type of the node. |
842
843
  |tokenPosition|<a href="#tokenposition" target="_blank" rel="noopener noreferrer">TokenPosition</a>|The position of a token in a query string used for errors and notification to map the message to a specific part of the query. |
843
- |type|"SPACE" &#124; "LINEBREAK" &#124; "INDENT" &#124; "PIPE" &#124; "DOT" &#124; "COLON" &#124; "COMMA" &#124; "ASSIGNMENT" &#124; "BRACE_OPEN" &#124; "BRACE_CLOSE" &#124; "BRACKET_OPEN" &#124; "BRACKET_CLOSE" &#124; "PARENTHESIS_OPEN" &#124; "PARENTHESIS_CLOSE" &#124; "QUOTE" &#124; "SINGLE_QUOTE" &#124; "SLASH" &#124; "BOOLEAN_TRUE" &#124; "BOOLEAN_FALSE" &#124; "NULL" &#124; "COMMAND_NAME" &#124; "PARAMETER_KEY" &#124; "PARAMETER_VALUE_SCOPE" &#124; "FUNCTION_NAME" &#124; "TIMESERIES_AGGREGATION" &#124; "TIMESERIES_AGGREGATION_EXPRESSION" &#124; "OPERATOR" &#124; "SEARCH_OPERATOR" &#124; "TRAVERSAL_OPERATOR" &#124; "TRAVERSAL_RELATION_NAME" &#124; "TRAVERSAL_HOP_COUNT" &#124; "SIMPLE_IDENTIFIER" &#124; "DATA_OBJECT" &#124; "NUMBER" &#124; "STRING" &#124; "TIME_UNIT" &#124; "TIMESTAMP_VALUE" &#124; "METRIC_KEY" &#124; "VARIABLE" &#124; "END_COMMENT" &#124; "UID_VALUE" &#124; "PARSE_PATTERN" &#124; "FIELD_PATTERN" &#124; "SEARCH_PATTERN" &#124; "ENTITY_SELECTOR_PART" &#124; "SAVED_TABLE_NAME" &#124; "PARAMETER_MODIFIER" &#124; "FIELD_MODIFIER" &#124; "ENTITY_TYPE" &#124; "ENTITY_ATTRIBUTE" &#124; "SMARTSCAPE_ID_VALUE"|The type of the autocomplete token. |
844
+ |type|"SPACE" &#124; "LINEBREAK" &#124; "INDENT" &#124; "PIPE" &#124; "DOT" &#124; "COLON" &#124; "COMMA" &#124; "ASSIGNMENT" &#124; "BRACE_OPEN" &#124; "BRACE_CLOSE" &#124; "BRACKET_OPEN" &#124; "BRACKET_CLOSE" &#124; "PARENTHESIS_OPEN" &#124; "PARENTHESIS_CLOSE" &#124; "QUOTE" &#124; "SINGLE_QUOTE" &#124; "SLASH" &#124; "BOOLEAN_TRUE" &#124; "BOOLEAN_FALSE" &#124; "NULL" &#124; "COMMAND_NAME" &#124; "PARAMETER_KEY" &#124; "PARAMETER_VALUE_SCOPE" &#124; "FUNCTION_NAME" &#124; "TIMESERIES_AGGREGATION" &#124; "TIMESERIES_AGGREGATION_EXPRESSION" &#124; "OPERATOR" &#124; "SEARCH_OPERATOR" &#124; "TRAVERSAL_OPERATOR" &#124; "TRAVERSAL_RELATION_NAME" &#124; "TRAVERSAL_HOP_COUNT" &#124; "SIMPLE_IDENTIFIER" &#124; "DATA_OBJECT" &#124; "NUMBER" &#124; "STRING" &#124; "TIME_UNIT" &#124; "TIMESTAMP_VALUE" &#124; "METRIC_KEY" &#124; "VARIABLE" &#124; "END_COMMENT" &#124; "UID_VALUE" &#124; "PARSE_PATTERN" &#124; "FIELD_PATTERN" &#124; "SEARCH_PATTERN" &#124; "ENTITY_SELECTOR_PART" &#124; "SAVED_TABLE_NAME" &#124; "TABULAR_FILE_NAME" &#124; "PARAMETER_MODIFIER" &#124; "FIELD_MODIFIER" &#124; "ENTITY_TYPE" &#124; "ENTITY_ATTRIBUTE" &#124; "SMARTSCAPE_ID_VALUE" &#124; "ENUM_STRING" &#124; "FIELD_PREFIX" &#124; "BUCKET" &#124; "SMARTSCAPE_NODE_PATTERN" &#124; "SMARTSCAPE_EDGE_PATTERN" &#124; "SMARTSCAPE_NODE_TYPE" &#124; "SMARTSCAPE_EDGE_TYPE"|The type of the autocomplete token. |
844
845
 
845
846
  ### ErrorEnvelope
846
847
 
@@ -859,6 +860,7 @@ The response for error state
859
860
  |code<sup>*required</sup>|[number](https://developer.mozilla.org/en-US/docs/Glossary/Number)|Error code, which normally matches the HTTP error code. |
860
861
  |details|<a href="#errorresponsedetails" target="_blank" rel="noopener noreferrer">ErrorResponseDetails</a>|Detailed information about the error. |
861
862
  |message<sup>*required</sup>|[string](https://developer.mozilla.org/en-US/docs/Glossary/String)|A short, clear error message without details |
863
+ |retryAfterSeconds|[number](https://developer.mozilla.org/en-US/docs/Glossary/Number)|The number of seconds to wait until the next retry. |
862
864
 
863
865
  ### ErrorResponseDetails
864
866
 
@@ -896,6 +898,7 @@ Detailed information about the error.
896
898
  |defaultTimeframeEnd|[string](https://developer.mozilla.org/en-US/docs/Glossary/String)|The query timeframe 'end' timestamp in ISO-8601 or RFC3339 format. If the timeframe 'start' parameter is missing, the whole timeframe is ignored. <em>Note that if a timeframe is specified within the query string (query) then it has precedence over this query request parameter.</em> |
897
899
  |defaultTimeframeStart|[string](https://developer.mozilla.org/en-US/docs/Glossary/String)|The query timeframe 'start' timestamp in ISO-8601 or RFC3339 format. If the timeframe 'end' parameter is missing, the whole timeframe is ignored. <em>Note that if a timeframe is specified within the query string (query) then it has precedence over this query request parameter.</em> |
898
900
  |enablePreview|[boolean](https://developer.mozilla.org/en-US/docs/Glossary/Boolean)|Request preview results. If a preview is available within the requestTimeoutMilliseconds, then it will be returned as part of the response. |
901
+ |enforceQueryConsumptionLimit|[boolean](https://developer.mozilla.org/en-US/docs/Glossary/Boolean)|Boolean to indicate if the query consumption limit should be enforced |
899
902
  |fetchTimeoutSeconds|[number](https://developer.mozilla.org/en-US/docs/Glossary/Number)|The query will stop reading data after reaching the fetch-timeout. The query execution will continue, providing a partial result based on the read data. |
900
903
  |filterSegments|<a href="#filtersegments">FilterSegments</a>|Represents a collection of filter segments. |
901
904
  |includeTypes|[boolean](https://developer.mozilla.org/en-US/docs/Glossary/Boolean)|Parameter to exclude the type information from the query result. In case not specified, the type information will be included. <i>default:</i> <code>true</code>|
@@ -1192,7 +1195,7 @@ The type of the autocomplete token.
1192
1195
 
1193
1196
  <div class="padding-left--md">
1194
1197
 
1195
- `Assignment` | `BooleanFalse` | `BooleanTrue` | `BraceClose` | `BraceOpen` | `BracketClose` | `BracketOpen` | `Colon` | `Comma` | `CommandName` | `DataObject` | `Dot` | `EndComment` | `EntityAttribute` | `EntitySelectorPart` | `EntityType` | `FieldModifier` | `FieldPattern` | `FunctionName` | `Indent` | `Linebreak` | `MetricKey` | `Null` | `Number` | `Operator` | `ParameterKey` | `ParameterModifier` | `ParameterValueScope` | `ParenthesisClose` | `ParenthesisOpen` | `ParsePattern` | `Pipe` | `Quote` | `SavedTableName` | `SearchOperator` | `SearchPattern` | `SimpleIdentifier` | `SingleQuote` | `Slash` | `SmartscapeIdValue` | `Space` | `String` | `TimeUnit` | `TimeseriesAggregation` | `TimeseriesAggregationExpression` | `TimestampValue` | `TraversalHopCount` | `TraversalOperator` | `TraversalRelationName` | `UidValue` | `Variable`
1198
+ `Assignment` | `BooleanFalse` | `BooleanTrue` | `BraceClose` | `BraceOpen` | `BracketClose` | `BracketOpen` | `Bucket` | `Colon` | `Comma` | `CommandName` | `DataObject` | `Dot` | `EndComment` | `EntityAttribute` | `EntitySelectorPart` | `EntityType` | `EnumString` | `FieldModifier` | `FieldPattern` | `FieldPrefix` | `FunctionName` | `Indent` | `Linebreak` | `MetricKey` | `Null` | `Number` | `Operator` | `ParameterKey` | `ParameterModifier` | `ParameterValueScope` | `ParenthesisClose` | `ParenthesisOpen` | `ParsePattern` | `Pipe` | `Quote` | `SavedTableName` | `SearchOperator` | `SearchPattern` | `SimpleIdentifier` | `SingleQuote` | `Slash` | `SmartscapeEdgePattern` | `SmartscapeEdgeType` | `SmartscapeIdValue` | `SmartscapeNodePattern` | `SmartscapeNodeType` | `Space` | `String` | `TabularFileName` | `TimeUnit` | `TimeseriesAggregation` | `TimeseriesAggregationExpression` | `TimestampValue` | `TraversalHopCount` | `TraversalOperator` | `TraversalRelationName` | `UidValue` | `Variable`
1196
1199
 
1197
1200
  </div>
1198
1201