Skip to content

Commit 8f4d603

Browse files
Merge branch 'master' into fix/12246-site-catalog-editor
2 parents 76bb38c + 2ccf2ec commit 8f4d603

File tree

505 files changed

+16164
-1053
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

505 files changed

+16164
-1053
lines changed

.vscode/settings.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,7 @@
33
"cSpell.words": [
44
"accum",
55
"arcgis"
6-
]
6+
],
7+
"typescript.preferences.importModuleSpecifier": "relative",
8+
"typescript.updateImportsOnFileMove.enabled": "always"
79
}

package-lock.json

+11-11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/common/CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
# @esri/hub-common [15.38.0](https://github.com/Esri/hub.js/compare/@esri/[email protected]...@esri/[email protected]) (2025-02-26)
2+
3+
4+
### Features
5+
6+
* **hub-common:** move all fns and types from discussions package to common package ([#1810](https://github.com/Esri/hub.js/issues/1810)) ([dbab1e0](https://github.com/Esri/hub.js/commit/dbab1e0cd700c46e08756c0c2e9169c0299cbe50))
7+
8+
## @esri/hub-common [15.37.1](https://github.com/Esri/hub.js/compare/@esri/[email protected]...@esri/[email protected]) (2025-02-26)
9+
10+
11+
### Bug Fixes
12+
13+
* resolve circular deps related to ArcGISContext ([#1815](https://github.com/Esri/hub.js/issues/1815)) ([05d8e4d](https://github.com/Esri/hub.js/commit/05d8e4d40f4b67e10b3fa214899e6a490acf88a7))
14+
115
# @esri/hub-common [15.37.0](https://github.com/Esri/hub.js/compare/@esri/[email protected]...@esri/[email protected]) (2025-02-26)
216

317

packages/common/e2e/helpers/Artifactory.ts

+3-4
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,10 @@
55
/* eslint-disable @typescript-eslint/no-explicit-any */
66
import { UserSession } from "@esri/arcgis-rest-auth";
77

8-
import {
9-
ArcGISContextManager,
10-
IArcGISContextManagerOptions,
11-
} from "../../src/ArcGISContextManager";
8+
import { ArcGISContextManager } from "../../src/ArcGISContextManager";
129
import { getProp } from "../../src/objects";
10+
import type { IArcGISContextManagerOptions } from "../../src/types/IArcGISContextManagerOptions";
11+
1312
/**
1413
* @internal
1514
*/

packages/common/e2e/hub-sites-contains.e2e.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import Artifactory from "./helpers/Artifactory";
22
import config from "./helpers/config";
33
import { HubSite } from "../src/sites/HubSite";
44
import { IDeepCatalogInfo, IHubCatalog } from "../src/search";
5-
import { IArcGISContext } from "../src/ArcGISContext";
5+
import type { IArcGISContext } from "../src";
66
import { deepCatalogContains } from "../src/core/deepCatalogContains";
77

88
// Fixtures - shared with deep-contains.e2e.ts

packages/common/e2e/permissions.e2e.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { IArcGISContext } from "../src/ArcGISContext";
1+
import type { IArcGISContext } from "../src";
22
import { fetchHubEntity } from "../src/core/fetchHubEntity";
33
import { HubEntity } from "../src/core/types/HubEntity";
44
import { checkPermission } from "../src/permissions/checkPermission";

packages/common/package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/common/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@esri/hub-common",
3-
"version": "15.37.0",
3+
"version": "15.38.0",
44
"description": "Common TypeScript types and utility functions for @esri/hub.js.",
55
"main": "dist/node/index.js",
66
"module": "dist/esm/index.js",

0 commit comments

Comments
 (0)