@arcgis/languages-sdk-spec 5.1.0-next.104 → 5.1.0-next.107

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.
@@ -3,7 +3,7 @@ import { BaseSdkPredefinedProfile } from './base';
3
3
  /**
4
4
  * The list of supported profiles
5
5
  */
6
- export type SqlProfileId = "field-calculation";
6
+ export type SqlProfileId = "field-calculation" | "where-clause";
7
7
  /**
8
8
  * The predefined profiles for the SQL language
9
9
  */
@@ -241,7 +241,10 @@
241
241
  },
242
242
  "SqlProfileId": {
243
243
  "type": "string",
244
- "const": "field-calculation",
244
+ "enum": [
245
+ "field-calculation",
246
+ "where-clause"
247
+ ],
245
248
  "description": "The list of supported profiles"
246
249
  },
247
250
  "SqlBundleType": {
@@ -45,7 +45,10 @@
45
45
  },
46
46
  "SqlProfileId": {
47
47
  "type": "string",
48
- "const": "field-calculation",
48
+ "enum": [
49
+ "field-calculation",
50
+ "where-clause"
51
+ ],
49
52
  "description": "The list of supported profiles"
50
53
  },
51
54
  "SqlBundleType": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arcgis/languages-sdk-spec",
3
- "version": "5.1.0-next.104",
3
+ "version": "5.1.0-next.107",
4
4
  "description": "ArcGIS languages types and schemas for design a language sdk",
5
5
  "homepage": "https://developers.arcgis.com/javascript/latest/",
6
6
  "type": "module",