@arcgis/languages-sdk-spec 4.32.0-next.99 → 4.33.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/LICENSE.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Licensing
2
2
 
3
- COPYRIGHT © 2024 Esri
3
+ COPYRIGHT © 2025 Esri
4
4
 
5
5
  All rights reserved under the copyright laws of the United States and applicable international laws, treaties, and conventions.
6
6
 
package/README.md CHANGED
@@ -8,7 +8,7 @@ It is not intended to be used directly, but rather used as a dependency by other
8
8
 
9
9
  ## License
10
10
 
11
- COPYRIGHT © 2024 Esri
11
+ COPYRIGHT © 2025 Esri
12
12
 
13
13
  All rights reserved under the copyright laws of the United States and applicable international laws, treaties, and conventions.
14
14
 
package/dist/index.d.ts CHANGED
@@ -22,13 +22,6 @@ type SqlApiItem = BaseSchemaApiItem<SqlBundleType, SqlProfileType>;
22
22
  */
23
23
  type SqlApiFunction = BaseSchemaApiFunction<SqlBundleType, SqlProfileType>;
24
24
 
25
- /**
26
- * This file contains union types that are used to constrain
27
- * base schema types. It's a bit of a chicken and egg scenario
28
- * where fields in the base schema types need a reference
29
- * to the language specific Bundle and Profile types, creating
30
- * a bit of circular dependency. This file breaks that cycle.
31
- */
32
25
  /**
33
26
  * Union of bundle types that can be used in any sdk schema
34
27
  */
@@ -50,7 +43,7 @@ interface SchemaCategory {
50
43
  /**
51
44
  * The collection of supported types.
52
45
  */
53
- type SchemaValueType = "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" | "Point" | "Polygon" | "Polyline" | "Portal" | "Text" | "Time";
46
+ type SchemaValueType = "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" | "Point" | "Polygon" | "Polyline" | "Portal" | "Text" | "Time" | "Voxel";
54
47
  interface GenericSchemaItemBase<Bundle extends BundleType, Profile extends ProfileType> {
55
48
  /**
56
49
  * The name of the function or constant. Must start with a capital letter.
@@ -238,7 +231,7 @@ interface BaseSdkPredefinedProfile<ProfileId extends string, Bundle extends stri
238
231
  /**
239
232
  * Supported profile variable types
240
233
  */
241
- type SdkVariableType = "array" | "boolean" | "date" | "dateOnly" | "dictionary" | "feature" | "featureSet" | "featureSetCollection" | "geometry" | "knowledgeGraph" | "number" | "text" | "time";
234
+ type SdkVariableType = "array" | "boolean" | "date" | "dateOnly" | "dictionary" | "feature" | "featureSet" | "featureSetCollection" | "geometry" | "knowledgeGraph" | "number" | "text" | "time" | "voxel";
242
235
  /**
243
236
  * Describes variables
244
237
  */
@@ -277,7 +270,7 @@ type SdkVariable = SdkDictionaryVariable | SdkValueVariable;
277
270
  /**
278
271
  * The list of supported profiles
279
272
  */
280
- type ArcadeProfileId = "aggregate-field" | "alias" | "attribute-rule-calculation" | "attribute-rule-constraint" | "attribute-rule-validation" | "dashboard-data" | "dashboard-indicator-formatting" | "dashboard-list-formatting" | "dashboard-table-formatting" | "data-pipelines" | "dictionary-renderer" | "feature-display-title" | "feature-z" | "field-calculation" | "field-mapping" | "form-calculation" | "form-constraint" | "geoanalytics" | "geotrigger-notification" | "labeling" | "layout" | "location-update-constraint" | "measure-visualization" | "minimalist" | "model-builder" | "popup-element-feature-reduction" | "popup-element" | "popup-feature-reduction" | "popup" | "quick-capture" | "tasks" | "velocity" | "visualization";
273
+ type ArcadeProfileId = "aggregate-field" | "alias" | "attribute-rule-calculation" | "attribute-rule-constraint" | "attribute-rule-validation" | "dashboard-data" | "dashboard-indicator-formatting" | "dashboard-list-formatting" | "dashboard-table-formatting" | "data-pipelines" | "dictionary-renderer" | "feature-display-title" | "feature-z" | "field-calculation" | "field-mapping" | "form-calculation" | "form-constraint" | "geoanalytics" | "geotrigger-notification" | "labeling" | "layout" | "location-update-constraint" | "measure-visualization" | "minimalist" | "model-builder" | "popup-element-feature-reduction" | "popup-element-voxel" | "popup-element" | "popup-feature-reduction" | "popup-voxel" | "popup" | "quick-capture" | "tasks" | "velocity" | "visualization";
281
274
  /**
282
275
  * The predefined profiles for the Arcade language
283
276
  */
@@ -304,7 +304,8 @@
304
304
  "Polyline",
305
305
  "Portal",
306
306
  "Text",
307
- "Time"
307
+ "Time",
308
+ "Voxel"
308
309
  ],
309
310
  "description": "The collection of supported types."
310
311
  },
@@ -293,7 +293,8 @@
293
293
  "Polyline",
294
294
  "Portal",
295
295
  "Text",
296
- "Time"
296
+ "Time",
297
+ "Voxel"
297
298
  ],
298
299
  "description": "The collection of supported types."
299
300
  },
@@ -72,8 +72,10 @@
72
72
  "minimalist",
73
73
  "model-builder",
74
74
  "popup-element-feature-reduction",
75
+ "popup-element-voxel",
75
76
  "popup-element",
76
77
  "popup-feature-reduction",
78
+ "popup-voxel",
77
79
  "popup",
78
80
  "quick-capture",
79
81
  "tasks",
@@ -158,7 +160,8 @@
158
160
  "knowledgeGraph",
159
161
  "number",
160
162
  "text",
161
- "time"
163
+ "time",
164
+ "voxel"
162
165
  ],
163
166
  "description": "Type of the variable."
164
167
  },
@@ -86,8 +86,10 @@
86
86
  "minimalist",
87
87
  "model-builder",
88
88
  "popup-element-feature-reduction",
89
+ "popup-element-voxel",
89
90
  "popup-element",
90
91
  "popup-feature-reduction",
92
+ "popup-voxel",
91
93
  "popup",
92
94
  "quick-capture",
93
95
  "tasks",
@@ -172,7 +174,8 @@
172
174
  "knowledgeGraph",
173
175
  "number",
174
176
  "text",
175
- "time"
177
+ "time",
178
+ "voxel"
176
179
  ],
177
180
  "description": "Type of the variable."
178
181
  },
@@ -276,7 +276,8 @@
276
276
  "Polyline",
277
277
  "Portal",
278
278
  "Text",
279
- "Time"
279
+ "Time",
280
+ "Voxel"
280
281
  ],
281
282
  "description": "The collection of supported types."
282
283
  },
@@ -116,7 +116,8 @@
116
116
  "knowledgeGraph",
117
117
  "number",
118
118
  "text",
119
- "time"
119
+ "time",
120
+ "voxel"
120
121
  ],
121
122
  "description": "Type of the variable."
122
123
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arcgis/languages-sdk-spec",
3
- "version": "4.32.0-next.99",
3
+ "version": "4.33.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",