@arcgis/languages-sdk-spec 5.1.0-next.9 → 5.1.0-next.91
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/dist/profile-types/base.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 +1 -0
- package/dist/schemas/sql-profiles.schema.json +1 -0
- package/package.json +1 -1
|
@@ -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
|
*/
|
|
@@ -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
|
package/package.json
CHANGED