@acorex/platform-generator 1.0.1 → 1.0.6
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/package.json +2 -1
- package/src/generators/app-module/files/src/assets/logos/logo.png +0 -0
- package/src/generators/app-module/files/src/environments/environment.dev.ts.template +20 -0
- package/src/generators/app-module/files/src/environments/environment.local.ts.template +20 -0
- package/src/generators/app-module/files/src/environments/environment.prod.ts.template +20 -0
- package/src/generators/app-module/files/src/environments/environment.test.local.ts.template +20 -0
- package/src/generators/app-module/files/src/environments/environment.test.ts.template +20 -0
- package/src/generators/app-module/files/src/environments/environment.ts.template +20 -0
- package/src/generators/app-module/files/src/environments/environment.d.ts +0 -19
- package/src/generators/app-module/files/src/environments/environment.dev.d.ts +0 -19
- package/src/generators/app-module/files/src/environments/environment.dev.js +0 -24
- package/src/generators/app-module/files/src/environments/environment.dev.js.map +0 -1
- package/src/generators/app-module/files/src/environments/environment.js +0 -24
- package/src/generators/app-module/files/src/environments/environment.js.map +0 -1
- package/src/generators/app-module/files/src/environments/environment.local.d.ts +0 -19
- package/src/generators/app-module/files/src/environments/environment.local.js +0 -24
- package/src/generators/app-module/files/src/environments/environment.local.js.map +0 -1
- package/src/generators/app-module/files/src/environments/environment.prod.d.ts +0 -19
- package/src/generators/app-module/files/src/environments/environment.prod.js +0 -24
- package/src/generators/app-module/files/src/environments/environment.prod.js.map +0 -1
- package/src/generators/app-module/files/src/environments/environment.test.local.d.ts +0 -19
- package/src/generators/app-module/files/src/environments/environment.test.local.js +0 -24
- package/src/generators/app-module/files/src/environments/environment.test.local.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@acorex/platform-generator",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"dependencies": {
|
|
5
5
|
"@nx/devkit": "19.2.2",
|
|
6
6
|
"tslib": "^2.3.0"
|
|
@@ -8,5 +8,6 @@
|
|
|
8
8
|
"type": "commonjs",
|
|
9
9
|
"main": "./src/index.js",
|
|
10
10
|
"typings": "./src/index.d.ts",
|
|
11
|
+
"private": false,
|
|
11
12
|
"generators": "./generators.json"
|
|
12
13
|
}
|
|
Binary file
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export const environment = {
|
|
2
|
+
production: false,
|
|
3
|
+
baseUrl: 'https://192.168.25.91:44320/api',
|
|
4
|
+
//?
|
|
5
|
+
oidcConfig: {
|
|
6
|
+
authority: 'https://192.168.25.91:44320',
|
|
7
|
+
end_session_endpoint: 'https://192.168.25.91:44320/api/auth/logout',
|
|
8
|
+
userinfo_endpoint: 'https://192.168.25.91:44320/api/userinfo',
|
|
9
|
+
scope: 'openid profile email offline_access api1',
|
|
10
|
+
client_id: 'acorex',
|
|
11
|
+
response_type: 'code',
|
|
12
|
+
automaticSilentRenew: true, // Enable automatic silent renew
|
|
13
|
+
monitorSession: true, // Monitor the session to detect user changes
|
|
14
|
+
filterProtocolClaims: true, // Filter out OIDC protocol claims,
|
|
15
|
+
loadUserInfo: true,
|
|
16
|
+
showDebugInformation: true,
|
|
17
|
+
redirect_uri: 'http://localhost:4200/auth/signincallback',
|
|
18
|
+
silentRequestTimeoutInSeconds: 20000,
|
|
19
|
+
},
|
|
20
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export const environment = {
|
|
2
|
+
production: false,
|
|
3
|
+
baseUrl: 'https://localhost:44320/api',
|
|
4
|
+
//?
|
|
5
|
+
oidcConfig: {
|
|
6
|
+
authority: 'https://localhost:44320',
|
|
7
|
+
end_session_endpoint: 'https://localhost:44320/api/auth/logout',
|
|
8
|
+
userinfo_endpoint: 'https://localhost:44320/api/userinfo',
|
|
9
|
+
scope: 'openid profile email offline_access api1',
|
|
10
|
+
client_id: 'acorex',
|
|
11
|
+
response_type: 'code',
|
|
12
|
+
automaticSilentRenew: true, // Enable automatic silent renew
|
|
13
|
+
monitorSession: true, // Monitor the session to detect user changes
|
|
14
|
+
filterProtocolClaims: true, // Filter out OIDC protocol claims,
|
|
15
|
+
loadUserInfo: true,
|
|
16
|
+
showDebugInformation: true,
|
|
17
|
+
redirect_uri: 'http://localhost:4200/auth/signincallback',
|
|
18
|
+
silentRequestTimeoutInSeconds: 20000,
|
|
19
|
+
},
|
|
20
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export const environment = {
|
|
2
|
+
production: true,
|
|
3
|
+
baseUrl: 'https://asc.acorexui.com:44320/api',
|
|
4
|
+
//?
|
|
5
|
+
oidcConfig: {
|
|
6
|
+
authority: 'https://asc.acorexui.com:44320',
|
|
7
|
+
end_session_endpoint: 'https://asc.acorexui.com:44320/api/auth/logout',
|
|
8
|
+
userinfo_endpoint: 'https://asc.acorexui.com:44320/api/userinfo',
|
|
9
|
+
scope: 'openid profile email offline_access api1',
|
|
10
|
+
client_id: 'acorex',
|
|
11
|
+
response_type: 'code',
|
|
12
|
+
automaticSilentRenew: true, // Enable automatic silent renew
|
|
13
|
+
monitorSession: true, // Monitor the session to detect user changes
|
|
14
|
+
filterProtocolClaims: true, // Filter out OIDC protocol claims,
|
|
15
|
+
loadUserInfo: true,
|
|
16
|
+
showDebugInformation: false,
|
|
17
|
+
redirect_uri: 'https://asc.acorexui.com/auth/signincallback',
|
|
18
|
+
silentRequestTimeoutInSeconds: 20000,
|
|
19
|
+
},
|
|
20
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export const environment = {
|
|
2
|
+
production: false,
|
|
3
|
+
baseUrl: 'https://asctest.acorexui.com:44320/api',
|
|
4
|
+
//?
|
|
5
|
+
oidcConfig: {
|
|
6
|
+
authority: 'https://asctest.acorexui.com:44320',
|
|
7
|
+
end_session_endpoint: 'https://asctest.acorexui.com:44320/api/auth/logout',
|
|
8
|
+
userinfo_endpoint: 'https://asctest.acorexui.com:44320/api/userinfo',
|
|
9
|
+
scope: 'openid profile email offline_access api1',
|
|
10
|
+
client_id: 'acorex',
|
|
11
|
+
response_type: 'code',
|
|
12
|
+
automaticSilentRenew: true, // Enable automatic silent renew
|
|
13
|
+
monitorSession: true, // Monitor the session to detect user changes
|
|
14
|
+
filterProtocolClaims: true, // Filter out OIDC protocol claims,
|
|
15
|
+
loadUserInfo: true,
|
|
16
|
+
showDebugInformation: true,
|
|
17
|
+
redirect_uri: 'http://localhost:4200/auth/signincallback',
|
|
18
|
+
silentRequestTimeoutInSeconds: 20000,
|
|
19
|
+
},
|
|
20
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export const environment = {
|
|
2
|
+
production: false,
|
|
3
|
+
baseUrl: 'https://asctest.acorexui.com:44320/api',
|
|
4
|
+
//?
|
|
5
|
+
oidcConfig: {
|
|
6
|
+
authority: 'https://asctest.acorexui.com:44320',
|
|
7
|
+
end_session_endpoint: 'https://asctest.acorexui.com:44320/api/auth/logout',
|
|
8
|
+
userinfo_endpoint: 'https://asctest.acorexui.com:44320/api/userinfo',
|
|
9
|
+
scope: 'openid profile email offline_access api1',
|
|
10
|
+
client_id: 'acorex',
|
|
11
|
+
response_type: 'code',
|
|
12
|
+
automaticSilentRenew: true, // Enable automatic silent renew
|
|
13
|
+
monitorSession: true, // Monitor the session to detect user changes
|
|
14
|
+
filterProtocolClaims: true, // Filter out OIDC protocol claims,
|
|
15
|
+
loadUserInfo: true,
|
|
16
|
+
showDebugInformation: true,
|
|
17
|
+
redirect_uri: 'https://asctest.acorexui.com/auth/signincallback',
|
|
18
|
+
silentRequestTimeoutInSeconds: 20000,
|
|
19
|
+
},
|
|
20
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export const environment = {
|
|
2
|
+
production: false,
|
|
3
|
+
baseUrl: 'https://localhost:44320/api',
|
|
4
|
+
//?
|
|
5
|
+
oidcConfig: {
|
|
6
|
+
authority: 'https://localhost:44320',
|
|
7
|
+
end_session_endpoint: 'https://localhost:44320/api/auth/logout',
|
|
8
|
+
userinfo_endpoint: 'https://localhost:44320/api/userinfo',
|
|
9
|
+
scope: 'openid profile email offline_access api1',
|
|
10
|
+
client_id: 'acorex',
|
|
11
|
+
response_type: 'code',
|
|
12
|
+
automaticSilentRenew: true, // Enable automatic silent renew
|
|
13
|
+
monitorSession: true, // Monitor the session to detect user changes
|
|
14
|
+
filterProtocolClaims: true, // Filter out OIDC protocol claims,
|
|
15
|
+
loadUserInfo: true,
|
|
16
|
+
showDebugInformation: true,
|
|
17
|
+
redirect_uri: 'https://localhost:4200/auth/signincallback',
|
|
18
|
+
silentRequestTimeoutInSeconds: 2000,
|
|
19
|
+
},
|
|
20
|
+
};
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
export declare const environment: {
|
|
2
|
-
production: boolean;
|
|
3
|
-
baseUrl: string;
|
|
4
|
-
oidcConfig: {
|
|
5
|
-
authority: string;
|
|
6
|
-
end_session_endpoint: string;
|
|
7
|
-
userinfo_endpoint: string;
|
|
8
|
-
scope: string;
|
|
9
|
-
client_id: string;
|
|
10
|
-
response_type: string;
|
|
11
|
-
automaticSilentRenew: boolean;
|
|
12
|
-
monitorSession: boolean;
|
|
13
|
-
filterProtocolClaims: boolean;
|
|
14
|
-
loadUserInfo: boolean;
|
|
15
|
-
showDebugInformation: boolean;
|
|
16
|
-
redirect_uri: string;
|
|
17
|
-
silentRequestTimeoutInSeconds: number;
|
|
18
|
-
};
|
|
19
|
-
};
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
export declare const environment: {
|
|
2
|
-
production: boolean;
|
|
3
|
-
baseUrl: string;
|
|
4
|
-
oidcConfig: {
|
|
5
|
-
authority: string;
|
|
6
|
-
end_session_endpoint: string;
|
|
7
|
-
userinfo_endpoint: string;
|
|
8
|
-
scope: string;
|
|
9
|
-
client_id: string;
|
|
10
|
-
response_type: string;
|
|
11
|
-
automaticSilentRenew: boolean;
|
|
12
|
-
monitorSession: boolean;
|
|
13
|
-
filterProtocolClaims: boolean;
|
|
14
|
-
loadUserInfo: boolean;
|
|
15
|
-
showDebugInformation: boolean;
|
|
16
|
-
redirect_uri: string;
|
|
17
|
-
silentRequestTimeoutInSeconds: number;
|
|
18
|
-
};
|
|
19
|
-
};
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.environment = void 0;
|
|
4
|
-
exports.environment = {
|
|
5
|
-
production: false,
|
|
6
|
-
baseUrl: 'https://192.168.25.91:44320/api',
|
|
7
|
-
//?
|
|
8
|
-
oidcConfig: {
|
|
9
|
-
authority: 'https://192.168.25.91:44320',
|
|
10
|
-
end_session_endpoint: 'https://192.168.25.91:44320/api/auth/logout',
|
|
11
|
-
userinfo_endpoint: 'https://192.168.25.91:44320/api/userinfo',
|
|
12
|
-
scope: 'openid profile email offline_access api1',
|
|
13
|
-
client_id: 'acorex',
|
|
14
|
-
response_type: 'code',
|
|
15
|
-
automaticSilentRenew: true, // Enable automatic silent renew
|
|
16
|
-
monitorSession: true, // Monitor the session to detect user changes
|
|
17
|
-
filterProtocolClaims: true, // Filter out OIDC protocol claims,
|
|
18
|
-
loadUserInfo: true,
|
|
19
|
-
showDebugInformation: true,
|
|
20
|
-
redirect_uri: 'http://localhost:4200/auth/signincallback',
|
|
21
|
-
silentRequestTimeoutInSeconds: 20000,
|
|
22
|
-
},
|
|
23
|
-
};
|
|
24
|
-
//# sourceMappingURL=environment.dev.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"environment.dev.js","sourceRoot":"","sources":["../../../../../../../../generator/src/generators/app-module/files/src/environments/environment.dev.ts"],"names":[],"mappings":";;;AAAa,QAAA,WAAW,GAAG;IACzB,UAAU,EAAE,KAAK;IACjB,OAAO,EAAE,iCAAiC;IAC1C,GAAG;IACH,UAAU,EAAE;QACV,SAAS,EAAE,6BAA6B;QACxC,oBAAoB,EAAE,6CAA6C;QACnE,iBAAiB,EAAE,0CAA0C;QAC7D,KAAK,EAAE,0CAA0C;QACjD,SAAS,EAAE,QAAQ;QACnB,aAAa,EAAE,MAAM;QACrB,oBAAoB,EAAE,IAAI,EAAE,gCAAgC;QAC5D,cAAc,EAAE,IAAI,EAAE,6CAA6C;QACnE,oBAAoB,EAAE,IAAI,EAAE,mCAAmC;QAC/D,YAAY,EAAE,IAAI;QAClB,oBAAoB,EAAE,IAAI;QAC1B,YAAY,EAAE,2CAA2C;QACzD,6BAA6B,EAAE,KAAK;KACrC;CACF,CAAC"}
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.environment = void 0;
|
|
4
|
-
exports.environment = {
|
|
5
|
-
production: false,
|
|
6
|
-
baseUrl: 'https://localhost:44320/api',
|
|
7
|
-
//?
|
|
8
|
-
oidcConfig: {
|
|
9
|
-
authority: 'https://localhost:44320',
|
|
10
|
-
end_session_endpoint: 'https://localhost:44320/api/auth/logout',
|
|
11
|
-
userinfo_endpoint: 'https://localhost:44320/api/userinfo',
|
|
12
|
-
scope: 'openid profile email offline_access api1',
|
|
13
|
-
client_id: 'acorex',
|
|
14
|
-
response_type: 'code',
|
|
15
|
-
automaticSilentRenew: true, // Enable automatic silent renew
|
|
16
|
-
monitorSession: true, // Monitor the session to detect user changes
|
|
17
|
-
filterProtocolClaims: true, // Filter out OIDC protocol claims,
|
|
18
|
-
loadUserInfo: true,
|
|
19
|
-
showDebugInformation: true,
|
|
20
|
-
redirect_uri: 'https://localhost:4200/auth/signincallback',
|
|
21
|
-
silentRequestTimeoutInSeconds: 2000,
|
|
22
|
-
},
|
|
23
|
-
};
|
|
24
|
-
//# sourceMappingURL=environment.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"environment.js","sourceRoot":"","sources":["../../../../../../../../generator/src/generators/app-module/files/src/environments/environment.ts"],"names":[],"mappings":";;;AAAa,QAAA,WAAW,GAAG;IACzB,UAAU,EAAE,KAAK;IACjB,OAAO,EAAE,6BAA6B;IACtC,GAAG;IACH,UAAU,EAAE;QACV,SAAS,EAAE,yBAAyB;QACpC,oBAAoB,EAAE,yCAAyC;QAC/D,iBAAiB,EAAE,sCAAsC;QACzD,KAAK,EAAE,0CAA0C;QACjD,SAAS,EAAE,QAAQ;QACnB,aAAa,EAAE,MAAM;QACrB,oBAAoB,EAAE,IAAI,EAAE,gCAAgC;QAC5D,cAAc,EAAE,IAAI,EAAE,6CAA6C;QACnE,oBAAoB,EAAE,IAAI,EAAE,mCAAmC;QAC/D,YAAY,EAAE,IAAI;QAClB,oBAAoB,EAAE,IAAI;QAC1B,YAAY,EAAE,4CAA4C;QAC1D,6BAA6B,EAAE,IAAI;KACpC;CACF,CAAC"}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
export declare const environment: {
|
|
2
|
-
production: boolean;
|
|
3
|
-
baseUrl: string;
|
|
4
|
-
oidcConfig: {
|
|
5
|
-
authority: string;
|
|
6
|
-
end_session_endpoint: string;
|
|
7
|
-
userinfo_endpoint: string;
|
|
8
|
-
scope: string;
|
|
9
|
-
client_id: string;
|
|
10
|
-
response_type: string;
|
|
11
|
-
automaticSilentRenew: boolean;
|
|
12
|
-
monitorSession: boolean;
|
|
13
|
-
filterProtocolClaims: boolean;
|
|
14
|
-
loadUserInfo: boolean;
|
|
15
|
-
showDebugInformation: boolean;
|
|
16
|
-
redirect_uri: string;
|
|
17
|
-
silentRequestTimeoutInSeconds: number;
|
|
18
|
-
};
|
|
19
|
-
};
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.environment = void 0;
|
|
4
|
-
exports.environment = {
|
|
5
|
-
production: false,
|
|
6
|
-
baseUrl: 'https://localhost:44320/api',
|
|
7
|
-
//?
|
|
8
|
-
oidcConfig: {
|
|
9
|
-
authority: 'https://localhost:44320',
|
|
10
|
-
end_session_endpoint: 'https://localhost:44320/api/auth/logout',
|
|
11
|
-
userinfo_endpoint: 'https://localhost:44320/api/userinfo',
|
|
12
|
-
scope: 'openid profile email offline_access api1',
|
|
13
|
-
client_id: 'acorex',
|
|
14
|
-
response_type: 'code',
|
|
15
|
-
automaticSilentRenew: true, // Enable automatic silent renew
|
|
16
|
-
monitorSession: true, // Monitor the session to detect user changes
|
|
17
|
-
filterProtocolClaims: true, // Filter out OIDC protocol claims,
|
|
18
|
-
loadUserInfo: true,
|
|
19
|
-
showDebugInformation: true,
|
|
20
|
-
redirect_uri: 'http://localhost:4200/auth/signincallback',
|
|
21
|
-
silentRequestTimeoutInSeconds: 20000,
|
|
22
|
-
},
|
|
23
|
-
};
|
|
24
|
-
//# sourceMappingURL=environment.local.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"environment.local.js","sourceRoot":"","sources":["../../../../../../../../generator/src/generators/app-module/files/src/environments/environment.local.ts"],"names":[],"mappings":";;;AAAa,QAAA,WAAW,GAAG;IACzB,UAAU,EAAE,KAAK;IACjB,OAAO,EAAE,6BAA6B;IACtC,GAAG;IACH,UAAU,EAAE;QACV,SAAS,EAAE,yBAAyB;QACpC,oBAAoB,EAAE,yCAAyC;QAC/D,iBAAiB,EAAE,sCAAsC;QACzD,KAAK,EAAE,0CAA0C;QACjD,SAAS,EAAE,QAAQ;QACnB,aAAa,EAAE,MAAM;QACrB,oBAAoB,EAAE,IAAI,EAAE,gCAAgC;QAC5D,cAAc,EAAE,IAAI,EAAE,6CAA6C;QACnE,oBAAoB,EAAE,IAAI,EAAE,mCAAmC;QAC/D,YAAY,EAAE,IAAI;QAClB,oBAAoB,EAAE,IAAI;QAC1B,YAAY,EAAE,2CAA2C;QACzD,6BAA6B,EAAE,KAAK;KACrC;CACF,CAAC"}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
export declare const environment: {
|
|
2
|
-
production: boolean;
|
|
3
|
-
baseUrl: string;
|
|
4
|
-
oidcConfig: {
|
|
5
|
-
authority: string;
|
|
6
|
-
end_session_endpoint: string;
|
|
7
|
-
userinfo_endpoint: string;
|
|
8
|
-
scope: string;
|
|
9
|
-
client_id: string;
|
|
10
|
-
response_type: string;
|
|
11
|
-
automaticSilentRenew: boolean;
|
|
12
|
-
monitorSession: boolean;
|
|
13
|
-
filterProtocolClaims: boolean;
|
|
14
|
-
loadUserInfo: boolean;
|
|
15
|
-
showDebugInformation: boolean;
|
|
16
|
-
redirect_uri: string;
|
|
17
|
-
silentRequestTimeoutInSeconds: number;
|
|
18
|
-
};
|
|
19
|
-
};
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.environment = void 0;
|
|
4
|
-
exports.environment = {
|
|
5
|
-
production: true,
|
|
6
|
-
baseUrl: 'https://asc.acorexui.com:44320/api',
|
|
7
|
-
//?
|
|
8
|
-
oidcConfig: {
|
|
9
|
-
authority: 'https://asc.acorexui.com:44320',
|
|
10
|
-
end_session_endpoint: 'https://asc.acorexui.com:44320/api/auth/logout',
|
|
11
|
-
userinfo_endpoint: 'https://asc.acorexui.com:44320/api/userinfo',
|
|
12
|
-
scope: 'openid profile email offline_access api1',
|
|
13
|
-
client_id: 'acorex',
|
|
14
|
-
response_type: 'code',
|
|
15
|
-
automaticSilentRenew: true, // Enable automatic silent renew
|
|
16
|
-
monitorSession: true, // Monitor the session to detect user changes
|
|
17
|
-
filterProtocolClaims: true, // Filter out OIDC protocol claims,
|
|
18
|
-
loadUserInfo: true,
|
|
19
|
-
showDebugInformation: false,
|
|
20
|
-
redirect_uri: 'https://asc.acorexui.com/auth/signincallback',
|
|
21
|
-
silentRequestTimeoutInSeconds: 20000,
|
|
22
|
-
},
|
|
23
|
-
};
|
|
24
|
-
//# sourceMappingURL=environment.prod.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"environment.prod.js","sourceRoot":"","sources":["../../../../../../../../generator/src/generators/app-module/files/src/environments/environment.prod.ts"],"names":[],"mappings":";;;AAAa,QAAA,WAAW,GAAG;IACzB,UAAU,EAAE,IAAI;IAChB,OAAO,EAAE,oCAAoC;IAC7C,GAAG;IACH,UAAU,EAAE;QACV,SAAS,EAAE,gCAAgC;QAC3C,oBAAoB,EAAE,gDAAgD;QACtE,iBAAiB,EAAE,6CAA6C;QAChE,KAAK,EAAE,0CAA0C;QACjD,SAAS,EAAE,QAAQ;QACnB,aAAa,EAAE,MAAM;QACrB,oBAAoB,EAAE,IAAI,EAAE,gCAAgC;QAC5D,cAAc,EAAE,IAAI,EAAE,6CAA6C;QACnE,oBAAoB,EAAE,IAAI,EAAE,mCAAmC;QAC/D,YAAY,EAAE,IAAI;QAClB,oBAAoB,EAAE,KAAK;QAC3B,YAAY,EAAE,8CAA8C;QAC5D,6BAA6B,EAAE,KAAK;KACrC;CACF,CAAC"}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
export declare const environment: {
|
|
2
|
-
production: boolean;
|
|
3
|
-
baseUrl: string;
|
|
4
|
-
oidcConfig: {
|
|
5
|
-
authority: string;
|
|
6
|
-
end_session_endpoint: string;
|
|
7
|
-
userinfo_endpoint: string;
|
|
8
|
-
scope: string;
|
|
9
|
-
client_id: string;
|
|
10
|
-
response_type: string;
|
|
11
|
-
automaticSilentRenew: boolean;
|
|
12
|
-
monitorSession: boolean;
|
|
13
|
-
filterProtocolClaims: boolean;
|
|
14
|
-
loadUserInfo: boolean;
|
|
15
|
-
showDebugInformation: boolean;
|
|
16
|
-
redirect_uri: string;
|
|
17
|
-
silentRequestTimeoutInSeconds: number;
|
|
18
|
-
};
|
|
19
|
-
};
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.environment = void 0;
|
|
4
|
-
exports.environment = {
|
|
5
|
-
production: false,
|
|
6
|
-
baseUrl: 'https://asctest.acorexui.com:44320/api',
|
|
7
|
-
//?
|
|
8
|
-
oidcConfig: {
|
|
9
|
-
authority: 'https://asctest.acorexui.com:44320',
|
|
10
|
-
end_session_endpoint: 'https://asctest.acorexui.com:44320/api/auth/logout',
|
|
11
|
-
userinfo_endpoint: 'https://asctest.acorexui.com:44320/api/userinfo',
|
|
12
|
-
scope: 'openid profile email offline_access api1',
|
|
13
|
-
client_id: 'acorex',
|
|
14
|
-
response_type: 'code',
|
|
15
|
-
automaticSilentRenew: true, // Enable automatic silent renew
|
|
16
|
-
monitorSession: true, // Monitor the session to detect user changes
|
|
17
|
-
filterProtocolClaims: true, // Filter out OIDC protocol claims,
|
|
18
|
-
loadUserInfo: true,
|
|
19
|
-
showDebugInformation: true,
|
|
20
|
-
redirect_uri: 'http://localhost:4200/auth/signincallback',
|
|
21
|
-
silentRequestTimeoutInSeconds: 20000,
|
|
22
|
-
},
|
|
23
|
-
};
|
|
24
|
-
//# sourceMappingURL=environment.test.local.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"environment.test.local.js","sourceRoot":"","sources":["../../../../../../../../generator/src/generators/app-module/files/src/environments/environment.test.local.ts"],"names":[],"mappings":";;;AAAa,QAAA,WAAW,GAAG;IACzB,UAAU,EAAE,KAAK;IACjB,OAAO,EAAE,wCAAwC;IACjD,GAAG;IACH,UAAU,EAAE;QACV,SAAS,EAAE,oCAAoC;QAC/C,oBAAoB,EAAE,oDAAoD;QAC1E,iBAAiB,EAAE,iDAAiD;QACpE,KAAK,EAAE,0CAA0C;QACjD,SAAS,EAAE,QAAQ;QACnB,aAAa,EAAE,MAAM;QACrB,oBAAoB,EAAE,IAAI,EAAE,gCAAgC;QAC5D,cAAc,EAAE,IAAI,EAAE,6CAA6C;QACnE,oBAAoB,EAAE,IAAI,EAAE,mCAAmC;QAC/D,YAAY,EAAE,IAAI;QAClB,oBAAoB,EAAE,IAAI;QAC1B,YAAY,EAAE,2CAA2C;QACzD,6BAA6B,EAAE,KAAK;KACrC;CACF,CAAC"}
|