@itwin/map-layers-auth 4.0.0-dev.22 → 4.0.0-dev.23

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 +72 -72
  2. package/lib/cjs/ArcGis/ArcGisAccessClient.js +291 -291
  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 +112 -112
  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 +72 -72
  20. package/lib/esm/ArcGis/ArcGisAccessClient.js +287 -287
  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 +108 -108
  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,73 +1,73 @@
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
- private _oauthAuthorizeEndPointsCache;
51
- private _oauthTokenEndPointsCache;
52
- /**
53
- * Get OAuth2 endpoint that must be cause to get the Oauth2 token
54
- * @internal
55
- */
56
- private cacheEndpoint;
57
- /**
58
- * Get OAuth2 endpoint that must be cause to get the Oauth2 token
59
- * @internal
60
- */
61
- private createEndpoint;
62
- /**
63
- * Get OAuth2 endpoint that must be cause to get the Oauth2 token
64
- * @internal
65
- */
66
- private getOAuth2Endpoint;
67
- /**
68
- * Construct the complete Authorize url to starts the Oauth process
69
- * @internal
70
- */
71
- private constructLoginUrl;
72
- }
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
+ private _oauthAuthorizeEndPointsCache;
51
+ private _oauthTokenEndPointsCache;
52
+ /**
53
+ * Get OAuth2 endpoint that must be cause to get the Oauth2 token
54
+ * @internal
55
+ */
56
+ private cacheEndpoint;
57
+ /**
58
+ * Get OAuth2 endpoint that must be cause to get the Oauth2 token
59
+ * @internal
60
+ */
61
+ private createEndpoint;
62
+ /**
63
+ * Get OAuth2 endpoint that must be cause to get the Oauth2 token
64
+ * @internal
65
+ */
66
+ private getOAuth2Endpoint;
67
+ /**
68
+ * Construct the complete Authorize url to starts the Oauth process
69
+ * @internal
70
+ */
71
+ private constructLoginUrl;
72
+ }
73
73
  //# sourceMappingURL=ArcGisAccessClient.d.ts.map