@arcgis/languages-api-utils 4.32.0-next.5 → 4.32.0-next.8
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/cjs/index.d.cts +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/package.json +3 -29
package/dist/cjs/index.d.cts
CHANGED
|
@@ -8,7 +8,7 @@ type BundleType = "core" | "data-access" | "database" | "geometry" | "knowledge-
|
|
|
8
8
|
/**
|
|
9
9
|
* The list of supported profiles
|
|
10
10
|
*/
|
|
11
|
-
type ProfileId = "minimalist" | "alias" | "attribute-rule-calculation" | "attribute-rule-constraint" | "attribute-rule-validation" | "dashboard-indicator-formatting" | "dashboard-list-formatting" | "dashboard-table-formatting" | "dashboard-data" | "dictionary-renderer" | "feature-z" | "field-calculation" | "field-mapping" | "form-calculation" | "form-constraint" | "geoanalytics" | "geotrigger-notification" | "labeling" | "layout" | "location-update-constraint" | "measure-visualization" | "popup" | "popup-element" | "popup-feature-reduction" | "popup-element-feature-reduction" | "quick-capture" | "tasks" | "velocity" | "visualization";
|
|
11
|
+
type ProfileId = "minimalist" | "aggregate-field" | "alias" | "attribute-rule-calculation" | "attribute-rule-constraint" | "attribute-rule-validation" | "data-pipelines" | "dashboard-indicator-formatting" | "dashboard-list-formatting" | "dashboard-table-formatting" | "dashboard-data" | "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" | "model-builder" | "popup" | "popup-element" | "popup-feature-reduction" | "popup-element-feature-reduction" | "quick-capture" | "tasks" | "velocity" | "visualization";
|
|
12
12
|
/**
|
|
13
13
|
* Describes a profile
|
|
14
14
|
*/
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ type BundleType = "core" | "data-access" | "database" | "geometry" | "knowledge-
|
|
|
8
8
|
/**
|
|
9
9
|
* The list of supported profiles
|
|
10
10
|
*/
|
|
11
|
-
type ProfileId = "minimalist" | "alias" | "attribute-rule-calculation" | "attribute-rule-constraint" | "attribute-rule-validation" | "dashboard-indicator-formatting" | "dashboard-list-formatting" | "dashboard-table-formatting" | "dashboard-data" | "dictionary-renderer" | "feature-z" | "field-calculation" | "field-mapping" | "form-calculation" | "form-constraint" | "geoanalytics" | "geotrigger-notification" | "labeling" | "layout" | "location-update-constraint" | "measure-visualization" | "popup" | "popup-element" | "popup-feature-reduction" | "popup-element-feature-reduction" | "quick-capture" | "tasks" | "velocity" | "visualization";
|
|
11
|
+
type ProfileId = "minimalist" | "aggregate-field" | "alias" | "attribute-rule-calculation" | "attribute-rule-constraint" | "attribute-rule-validation" | "data-pipelines" | "dashboard-indicator-formatting" | "dashboard-list-formatting" | "dashboard-table-formatting" | "dashboard-data" | "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" | "model-builder" | "popup" | "popup-element" | "popup-feature-reduction" | "popup-element-feature-reduction" | "quick-capture" | "tasks" | "velocity" | "visualization";
|
|
12
12
|
/**
|
|
13
13
|
* Describes a profile
|
|
14
14
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcgis/languages-api-utils",
|
|
3
|
-
"version": "4.32.0-next.
|
|
3
|
+
"version": "4.32.0-next.8",
|
|
4
4
|
"description": "ArcGIS Languages API Utilities",
|
|
5
5
|
"homepage": "https://developers.arcgis.com/javascript/latest/",
|
|
6
6
|
"type": "module",
|
|
@@ -10,36 +10,10 @@
|
|
|
10
10
|
"files": [
|
|
11
11
|
"dist/"
|
|
12
12
|
],
|
|
13
|
-
"publishConfig": {
|
|
14
|
-
"registry": "https://registry.npmjs.org/",
|
|
15
|
-
"access": "public"
|
|
16
|
-
},
|
|
17
13
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
18
|
-
"scripts": {
|
|
19
|
-
"build:dev": "yarn build:esm --sourcemap --no-minify",
|
|
20
|
-
"build:cjs": "tsup --format cjs --outDir dist/cjs --silent --minify",
|
|
21
|
-
"build:esm": "tsup --format esm --outDir dist/esm --silent --minify",
|
|
22
|
-
"build": "npm run build:cjs && npm run build:esm",
|
|
23
|
-
"clean": "rimraf ./node_modules ./turbo ./dist",
|
|
24
|
-
"test": "jest"
|
|
25
|
-
},
|
|
26
14
|
"dependencies": {
|
|
27
15
|
"tslib": "^2.7.0",
|
|
28
16
|
"vscode-languageserver-textdocument": "^1.0.11",
|
|
29
17
|
"vscode-languageserver-types": "^3.17.5"
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
"@arcgis/arcade-sdk": "~1.26.5",
|
|
33
|
-
"@arcgis/typescript-config": "4.32.0-next.5",
|
|
34
|
-
"@swc/core": "^1.7.23",
|
|
35
|
-
"@swc/jest": "^0.2.36",
|
|
36
|
-
"@types/jest": "^29.5.0",
|
|
37
|
-
"@types/node": "^20.2.5",
|
|
38
|
-
"eslint": "^8.55.0",
|
|
39
|
-
"jest": "^29.5.0",
|
|
40
|
-
"rimraf": "^5.0.0",
|
|
41
|
-
"tsup": "^8.3.0",
|
|
42
|
-
"typescript": "~5.4.0"
|
|
43
|
-
},
|
|
44
|
-
"gitHead": "e4e69443c65b6667007b81e8a05805bec146db56"
|
|
45
|
-
}
|
|
18
|
+
}
|
|
19
|
+
}
|