@itwin/map-layers-auth 3.6.0-dev.51 → 3.6.0-dev.53

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.
Files changed (37) hide show
  1. package/lib/cjs/ArcGis/ArcGisAccessClient.d.ts +68 -68
  2. package/lib/cjs/ArcGis/ArcGisAccessClient.js +315 -315
  3. package/lib/cjs/ArcGis/ArcGisAccessClient.js.map +1 -1
  4. package/lib/cjs/ArcGis/ArcGisOAuth2Endpoint.d.ts +22 -22
  5. package/lib/cjs/ArcGis/ArcGisOAuth2Endpoint.js +46 -46
  6. package/lib/cjs/ArcGis/ArcGisOAuth2Endpoint.js.map +1 -1
  7. package/lib/cjs/ArcGis/ArcGisTokenGenerator.d.ts +41 -41
  8. package/lib/cjs/ArcGis/ArcGisTokenGenerator.js +110 -110
  9. package/lib/cjs/ArcGis/ArcGisTokenGenerator.js.map +1 -1
  10. package/lib/cjs/ArcGis/ArcGisTokenManager.d.ts +20 -20
  11. package/lib/cjs/ArcGis/ArcGisTokenManager.js +109 -109
  12. package/lib/cjs/ArcGis/ArcGisTokenManager.js.map +1 -1
  13. package/lib/cjs/ArcGis/ArcGisUrl.d.ts +6 -6
  14. package/lib/cjs/ArcGis/ArcGisUrl.js +49 -49
  15. package/lib/cjs/ArcGis/ArcGisUrl.js.map +1 -1
  16. package/lib/cjs/map-layers-auth.d.ts +5 -5
  17. package/lib/cjs/map-layers-auth.js +21 -21
  18. package/lib/cjs/map-layers-auth.js.map +1 -1
  19. package/lib/esm/ArcGis/ArcGisAccessClient.d.ts +68 -68
  20. package/lib/esm/ArcGis/ArcGisAccessClient.js +311 -311
  21. package/lib/esm/ArcGis/ArcGisAccessClient.js.map +1 -1
  22. package/lib/esm/ArcGis/ArcGisOAuth2Endpoint.d.ts +22 -22
  23. package/lib/esm/ArcGis/ArcGisOAuth2Endpoint.js +42 -42
  24. package/lib/esm/ArcGis/ArcGisOAuth2Endpoint.js.map +1 -1
  25. package/lib/esm/ArcGis/ArcGisTokenGenerator.d.ts +41 -41
  26. package/lib/esm/ArcGis/ArcGisTokenGenerator.js +106 -106
  27. package/lib/esm/ArcGis/ArcGisTokenGenerator.js.map +1 -1
  28. package/lib/esm/ArcGis/ArcGisTokenManager.d.ts +20 -20
  29. package/lib/esm/ArcGis/ArcGisTokenManager.js +105 -105
  30. package/lib/esm/ArcGis/ArcGisTokenManager.js.map +1 -1
  31. package/lib/esm/ArcGis/ArcGisUrl.d.ts +6 -6
  32. package/lib/esm/ArcGis/ArcGisUrl.js +45 -45
  33. package/lib/esm/ArcGis/ArcGisUrl.js.map +1 -1
  34. package/lib/esm/map-layers-auth.d.ts +5 -5
  35. package/lib/esm/map-layers-auth.js +9 -9
  36. package/lib/esm/map-layers-auth.js.map +1 -1
  37. package/package.json +7 -7
@@ -1,69 +1,69 @@
1
- /** @packageDocumentation
2
- * @module Tiles
3
- */
4
- import { BeEvent } from "@itwin/core-bentley";
5
- import { MapLayerAccessClient, MapLayerAccessToken, MapLayerAccessTokenParams, MapLayerTokenEndpoint } from "@itwin/core-frontend";
6
- /** @beta */
7
- export interface ArcGisEnterpriseClientId {
8
- serviceBaseUrl: string;
9
- clientId: string;
10
- }
11
- /** @beta */
12
- export interface ArcGisOAuthClientIds {
13
- arcgisOnlineClientId?: string;
14
- enterpriseClientIds?: ArcGisEnterpriseClientId[];
15
- }
16
- /** @beta
17
- * ArcGIS OAuth configurations parameters.
18
- * See https://developers.arcgis.com/documentation/mapping-apis-and-services/security/arcgis-identity/serverless-web-apps/
19
- * more details.
20
- */
21
- export interface ArcGisOAuthConfig {
22
- redirectUri: string;
23
- tokenExpiration?: number;
24
- clientIds: ArcGisOAuthClientIds;
25
- }
26
- /** @beta */
27
- export declare class ArcGisAccessClient implements MapLayerAccessClient {
28
- readonly onOAuthProcessEnd: BeEvent<import("@itwin/core-bentley").Listener>;
29
- private _redirectUri;
30
- private _expiration;
31
- private _clientIds;
32
- private _forceLegacyToken;
33
- constructor();
34
- initialize(oAuthConfig?: ArcGisOAuthConfig): boolean;
35
- private initOauthCallbackFunction;
36
- unInitialize(): void;
37
- getAccessToken(params: MapLayerAccessTokenParams): Promise<MapLayerAccessToken | undefined>;
38
- getTokenServiceEndPoint(mapLayerUrl: string): Promise<MapLayerTokenEndpoint | undefined>;
39
- invalidateToken(token: MapLayerAccessToken): boolean;
40
- get redirectUri(): string | undefined;
41
- getMatchingEnterpriseClientId(url: string): string | undefined;
42
- get expiration(): number | undefined;
43
- get arcGisOnlineClientId(): string | undefined;
44
- set arcGisOnlineClientId(clientId: string | undefined);
45
- get arcGisEnterpriseClientIds(): ArcGisEnterpriseClientId[] | undefined;
46
- setEnterpriseClientId(serviceBaseUrl: string, clientId: string): void;
47
- removeEnterpriseClientId(clientId: ArcGisEnterpriseClientId): void;
48
- /** @internal */
49
- private getOAuthTokenForMapLayerUrl;
50
- /**
51
- * Test if Oauth2 endpoint is accessible and has an associated appId
52
- * @return true/false if validation succeeded, undefined if validation could not be performed (i.e CORS/network error)
53
- * @internal
54
- */
55
- private validateOAuth2Endpoint;
56
- private _oauthAuthorizeEndPointsCache;
57
- private _oauthTokenEndPointsCache;
58
- /**
59
- * Get OAuth2 endpoint that must be cause to get the Oauth2 token
60
- * @internal
61
- */
62
- private getOAuth2Endpoint;
63
- /**
64
- * Construct the complete Authorize url to starts the Oauth process
65
- * @internal
66
- */
67
- private constructLoginUrl;
68
- }
1
+ /** @packageDocumentation
2
+ * @module Tiles
3
+ */
4
+ import { BeEvent } from "@itwin/core-bentley";
5
+ import { MapLayerAccessClient, MapLayerAccessToken, MapLayerAccessTokenParams, MapLayerTokenEndpoint } from "@itwin/core-frontend";
6
+ /** @beta */
7
+ export interface ArcGisEnterpriseClientId {
8
+ serviceBaseUrl: string;
9
+ clientId: string;
10
+ }
11
+ /** @beta */
12
+ export interface ArcGisOAuthClientIds {
13
+ arcgisOnlineClientId?: string;
14
+ enterpriseClientIds?: ArcGisEnterpriseClientId[];
15
+ }
16
+ /** @beta
17
+ * ArcGIS OAuth configurations parameters.
18
+ * See https://developers.arcgis.com/documentation/mapping-apis-and-services/security/arcgis-identity/serverless-web-apps/
19
+ * more details.
20
+ */
21
+ export interface ArcGisOAuthConfig {
22
+ redirectUri: string;
23
+ tokenExpiration?: number;
24
+ clientIds: ArcGisOAuthClientIds;
25
+ }
26
+ /** @beta */
27
+ export declare class ArcGisAccessClient implements MapLayerAccessClient {
28
+ readonly onOAuthProcessEnd: BeEvent<import("@itwin/core-bentley").Listener>;
29
+ private _redirectUri;
30
+ private _expiration;
31
+ private _clientIds;
32
+ private _forceLegacyToken;
33
+ constructor();
34
+ initialize(oAuthConfig?: ArcGisOAuthConfig): boolean;
35
+ private initOauthCallbackFunction;
36
+ unInitialize(): void;
37
+ getAccessToken(params: MapLayerAccessTokenParams): Promise<MapLayerAccessToken | undefined>;
38
+ getTokenServiceEndPoint(mapLayerUrl: string): Promise<MapLayerTokenEndpoint | undefined>;
39
+ invalidateToken(token: MapLayerAccessToken): boolean;
40
+ get redirectUri(): string | undefined;
41
+ getMatchingEnterpriseClientId(url: string): string | undefined;
42
+ get expiration(): number | undefined;
43
+ get arcGisOnlineClientId(): string | undefined;
44
+ set arcGisOnlineClientId(clientId: string | undefined);
45
+ get arcGisEnterpriseClientIds(): ArcGisEnterpriseClientId[] | undefined;
46
+ setEnterpriseClientId(serviceBaseUrl: string, clientId: string): void;
47
+ removeEnterpriseClientId(clientId: ArcGisEnterpriseClientId): void;
48
+ /** @internal */
49
+ private getOAuthTokenForMapLayerUrl;
50
+ /**
51
+ * Test if Oauth2 endpoint is accessible and has an associated appId
52
+ * @return true/false if validation succeeded, undefined if validation could not be performed (i.e CORS/network error)
53
+ * @internal
54
+ */
55
+ private validateOAuth2Endpoint;
56
+ private _oauthAuthorizeEndPointsCache;
57
+ private _oauthTokenEndPointsCache;
58
+ /**
59
+ * Get OAuth2 endpoint that must be cause to get the Oauth2 token
60
+ * @internal
61
+ */
62
+ private getOAuth2Endpoint;
63
+ /**
64
+ * Construct the complete Authorize url to starts the Oauth process
65
+ * @internal
66
+ */
67
+ private constructLoginUrl;
68
+ }
69
69
  //# sourceMappingURL=ArcGisAccessClient.d.ts.map