@arcgis/languages-sdk-spec 5.1.0-next.13 → 5.1.0-next.131
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 +2 -2
- package/dist/profile-types/base.d.ts +1 -1
- package/dist/profile-types/sql-profile-types.d.ts +1 -1
- package/dist/schema-types/arcade.d.ts +1 -1
- package/dist/schemas/api-item.schema.json +1 -0
- package/dist/schemas/arcade-api-item.schema.json +1 -0
- package/dist/schemas/arcade-profiles.schema.json +1 -0
- package/dist/schemas/profiles.schema.json +5 -1
- package/dist/schemas/sql-profiles.schema.json +5 -1
- package/package.json +4 -4
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.
|
|
12
|
-
For third party notices, see https://js.arcgis.com/5.
|
|
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.
|
|
@@ -22,7 +22,7 @@ export interface BaseSdkPredefinedProfile<ProfileId extends string, Bundle exten
|
|
|
22
22
|
/**
|
|
23
23
|
* Supported profile variable types
|
|
24
24
|
*/
|
|
25
|
-
export type SdkVariableType = "array" | "boolean" | "date" | "dateOnly" | "dictionary" | "feature" | "featureSet" | "featureSetCollection" | "geometry" | "knowledgeGraph" | "number" | "pixel" | "text" | "time" | "voxel";
|
|
25
|
+
export type SdkVariableType = "array" | "boolean" | "dataCatalogDatastore" | "date" | "dateOnly" | "dictionary" | "feature" | "featureSet" | "featureSetCollection" | "geometry" | "knowledgeGraph" | "number" | "pixel" | "text" | "time" | "voxel";
|
|
26
26
|
/**
|
|
27
27
|
* Describes variables
|
|
28
28
|
*/
|
|
@@ -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
|
*/
|
|
@@ -7,7 +7,7 @@ export type ArcadeBundleType = "ai" | "core" | "data-access" | "database" | "geo
|
|
|
7
7
|
* The profile names this definition belongs to
|
|
8
8
|
*/
|
|
9
9
|
export type ArcadeProfileType = "Attribute Rule Calculation" | "Attribute Rules" | "Dashboard Data" | "Field Calculation" | "Form Calculation" | "GeoAnalytics" | "Popups" | "Tasks" | "Velocity";
|
|
10
|
-
export type ArcadeValueType = "Any" | "Array<Any>" | "Array<Attachment>" | "Array<Boolean>" | "Array<Date>" | "Array<DateOnly>" | "Array<Dictionary>" | "Array<Extent>" | "Array<Feature>" | "Array<Geometry>" | "Array<KnowledgeGraph>" | "Array<Multipoint>" | "Array<Number>" | "Array<Number|Text>" | "Array<Point>" | "Array<Polygon>" | "Array<Polyline>" | "Array<Text>" | "Array<Time>" | "Attachment" | "Boolean" | "Date" | "DateOnly" | "Dictionary" | "Extent" | "Feature" | "FeatureSet" | "FeatureSetCollection" | "Function" | "Geometry" | "KnowledgeGraph" | "Multipoint" | "Null" | "Number" | "Pixel" | "Point" | "Polygon" | "Polyline" | "Portal" | "Text" | "Time" | "Voxel";
|
|
10
|
+
export type ArcadeValueType = "Any" | "Array<Any>" | "Array<Attachment>" | "Array<Boolean>" | "Array<Date>" | "Array<DateOnly>" | "Array<Dictionary>" | "Array<Extent>" | "Array<Feature>" | "Array<Geometry>" | "Array<KnowledgeGraph>" | "Array<Multipoint>" | "Array<Number>" | "Array<Number|Text>" | "Array<Point>" | "Array<Polygon>" | "Array<Polyline>" | "Array<Portal>" | "Array<Text>" | "Array<Time>" | "Attachment" | "Boolean" | "Date" | "DateOnly" | "Dictionary" | "Extent" | "Feature" | "FeatureSet" | "FeatureSetCollection" | "Function" | "Geometry" | "KnowledgeGraph" | "Multipoint" | "Null" | "Number" | "Pixel" | "Point" | "Polygon" | "Polyline" | "Portal" | "Text" | "Time" | "Voxel";
|
|
11
11
|
export type ArcadeSchemaItemBase = GenericSchemaItemBase<ArcadeBundleType, ArcadeProfileType>;
|
|
12
12
|
/**
|
|
13
13
|
* Definition for Arcade Api function
|
|
@@ -172,6 +172,7 @@
|
|
|
172
172
|
"enum": [
|
|
173
173
|
"array",
|
|
174
174
|
"boolean",
|
|
175
|
+
"dataCatalogDatastore",
|
|
175
176
|
"date",
|
|
176
177
|
"dateOnly",
|
|
177
178
|
"feature",
|
|
@@ -240,7 +241,10 @@
|
|
|
240
241
|
},
|
|
241
242
|
"SqlProfileId": {
|
|
242
243
|
"type": "string",
|
|
243
|
-
"
|
|
244
|
+
"enum": [
|
|
245
|
+
"field-calculation",
|
|
246
|
+
"where-clause"
|
|
247
|
+
],
|
|
244
248
|
"description": "The list of supported profiles"
|
|
245
249
|
},
|
|
246
250
|
"SqlBundleType": {
|
|
@@ -45,7 +45,10 @@
|
|
|
45
45
|
},
|
|
46
46
|
"SqlProfileId": {
|
|
47
47
|
"type": "string",
|
|
48
|
-
"
|
|
48
|
+
"enum": [
|
|
49
|
+
"field-calculation",
|
|
50
|
+
"where-clause"
|
|
51
|
+
],
|
|
49
52
|
"description": "The list of supported profiles"
|
|
50
53
|
},
|
|
51
54
|
"SqlBundleType": {
|
|
@@ -111,6 +114,7 @@
|
|
|
111
114
|
"enum": [
|
|
112
115
|
"array",
|
|
113
116
|
"boolean",
|
|
117
|
+
"dataCatalogDatastore",
|
|
114
118
|
"date",
|
|
115
119
|
"dateOnly",
|
|
116
120
|
"feature",
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcgis/languages-sdk-spec",
|
|
3
|
-
"version": "5.1.0-next.
|
|
3
|
+
"version": "5.1.0-next.131",
|
|
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",
|