@arcgis/languages-sdk-spec 5.1.0-next.98 → 5.2.0-next.0

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/README.md CHANGED
@@ -8,5 +8,5 @@ It is not intended to be used directly, but rather used as a dependency by other
8
8
 
9
9
  ## License
10
10
 
11
- This package is licensed under the terms described in the `LICENSE.md` file, located in the root of the package, and at https://js.arcgis.com/5.0/LICENSE.txt.
12
- For third party notices, see https://js.arcgis.com/5.0/third-party-notices.txt.
11
+ This package is licensed under the terms described in the `LICENSE.md` file, located in the root of the package, and at https://js.arcgis.com/5.1/LICENSE.txt.
12
+ For third party notices, see https://js.arcgis.com/5.1/third-party-notices.txt.
@@ -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,12 +1,12 @@
1
1
  {
2
2
  "name": "@arcgis/languages-sdk-spec",
3
- "version": "5.1.0-next.98",
3
+ "version": "5.2.0-next.0",
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",
7
- "main": "dist/index.js",
8
- "module": "dist/index.js",
9
- "types": "dist/index.d.ts",
7
+ "main": "./dist/index.js",
8
+ "module": "./dist/index.js",
9
+ "types": "./dist/index.d.ts",
10
10
  "exports": {
11
11
  ".": "./dist/index.js",
12
12
  "./scripting": "./dist/scripting/index.js",