auth0-deploy-cli 8.21.0 → 8.23.0
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/.circleci/config.yml +57 -5
- package/CHANGELOG.md +46 -2
- package/README.md +1 -1
- package/eslint.config.js +131 -0
- package/lib/args.js +0 -1
- package/lib/commands/export.js +41 -49
- package/lib/commands/import.js +36 -43
- package/lib/commands/index.js +0 -1
- package/lib/configFactory.js +0 -1
- package/lib/context/defaults.d.ts +1 -0
- package/lib/context/defaults.js +57 -10
- package/lib/context/directory/handlers/actions.js +40 -39
- package/lib/context/directory/handlers/attackProtection.js +22 -34
- package/lib/context/directory/handlers/branding.js +12 -21
- package/lib/context/directory/handlers/clientGrants.js +52 -62
- package/lib/context/directory/handlers/clients.js +44 -57
- package/lib/context/directory/handlers/connectionProfiles.d.ts +1 -1
- package/lib/context/directory/handlers/connectionProfiles.js +20 -30
- package/lib/context/directory/handlers/connections.js +32 -41
- package/lib/context/directory/handlers/customDomains.js +9 -21
- package/lib/context/directory/handlers/databases.js +37 -35
- package/lib/context/directory/handlers/emailProvider.js +22 -36
- package/lib/context/directory/handlers/emailTemplates.js +20 -29
- package/lib/context/directory/handlers/flowVaultConnections.js +40 -49
- package/lib/context/directory/handlers/flows.js +38 -48
- package/lib/context/directory/handlers/forms.js +38 -48
- package/lib/context/directory/handlers/guardianFactorProviders.js +9 -21
- package/lib/context/directory/handlers/guardianFactorTemplates.js +9 -21
- package/lib/context/directory/handlers/guardianFactors.js +9 -21
- package/lib/context/directory/handlers/guardianPhoneFactorMessageTypes.js +8 -20
- package/lib/context/directory/handlers/guardianPhoneFactorSelectedProvider.js +8 -20
- package/lib/context/directory/handlers/guardianPolicies.js +8 -20
- package/lib/context/directory/handlers/hooks.js +24 -34
- package/lib/context/directory/handlers/index.js +4 -1
- package/lib/context/directory/handlers/logStreams.js +12 -24
- package/lib/context/directory/handlers/networkACLs.js +22 -34
- package/lib/context/directory/handlers/organizations.js +39 -44
- package/lib/context/directory/handlers/pages.js +31 -37
- package/lib/context/directory/handlers/phoneProvider.js +12 -24
- package/lib/context/directory/handlers/phoneTemplates.d.ts +6 -0
- package/lib/context/directory/handlers/phoneTemplates.js +39 -0
- package/lib/context/directory/handlers/prompts.js +58 -76
- package/lib/context/directory/handlers/resourceServers.d.ts +1 -1
- package/lib/context/directory/handlers/resourceServers.js +18 -30
- package/lib/context/directory/handlers/roles.js +21 -31
- package/lib/context/directory/handlers/rules.js +22 -32
- package/lib/context/directory/handlers/rulesConfigs.js +3 -15
- package/lib/context/directory/handlers/selfServiceProfiles.js +28 -40
- package/lib/context/directory/handlers/tenant.js +14 -34
- package/lib/context/directory/handlers/themes.js +9 -21
- package/lib/context/directory/handlers/tokenExchangeProfiles.d.ts +5 -0
- package/lib/context/directory/handlers/tokenExchangeProfiles.js +41 -0
- package/lib/context/directory/handlers/triggers.d.ts +1 -1
- package/lib/context/directory/handlers/triggers.js +16 -26
- package/lib/context/directory/handlers/userAttributeProfiles.d.ts +1 -1
- package/lib/context/directory/handlers/userAttributeProfiles.js +16 -26
- package/lib/context/directory/index.js +66 -80
- package/lib/context/index.js +7 -18
- package/lib/context/yaml/handlers/actions.js +39 -41
- package/lib/context/yaml/handlers/attackProtection.js +27 -41
- package/lib/context/yaml/handlers/branding.js +47 -69
- package/lib/context/yaml/handlers/clientGrants.js +26 -40
- package/lib/context/yaml/handlers/clients.js +69 -84
- package/lib/context/yaml/handlers/connectionProfiles.d.ts +1 -1
- package/lib/context/yaml/handlers/connectionProfiles.js +20 -34
- package/lib/context/yaml/handlers/connections.js +63 -67
- package/lib/context/yaml/handlers/customDomains.js +7 -19
- package/lib/context/yaml/handlers/databases.js +63 -65
- package/lib/context/yaml/handlers/emailProvider.js +22 -37
- package/lib/context/yaml/handlers/emailTemplates.js +28 -39
- package/lib/context/yaml/handlers/flowVaultConnections.js +37 -50
- package/lib/context/yaml/handlers/flows.js +55 -66
- package/lib/context/yaml/handlers/forms.js +55 -66
- package/lib/context/yaml/handlers/guardianFactorProviders.js +7 -19
- package/lib/context/yaml/handlers/guardianFactorTemplates.js +7 -19
- package/lib/context/yaml/handlers/guardianFactors.js +7 -19
- package/lib/context/yaml/handlers/guardianPhoneFactorMessageTypes.js +7 -19
- package/lib/context/yaml/handlers/guardianPhoneFactorSelectedProvider.js +7 -19
- package/lib/context/yaml/handlers/guardianPolicies.js +7 -19
- package/lib/context/yaml/handlers/hooks.js +34 -48
- package/lib/context/yaml/handlers/index.js +4 -1
- package/lib/context/yaml/handlers/logStreams.js +16 -30
- package/lib/context/yaml/handlers/networkACLs.js +25 -39
- package/lib/context/yaml/handlers/organizations.js +37 -46
- package/lib/context/yaml/handlers/pages.js +31 -39
- package/lib/context/yaml/handlers/phoneProvider.js +17 -31
- package/lib/context/yaml/handlers/phoneTemplates.d.ts +6 -0
- package/lib/context/yaml/handlers/phoneTemplates.js +25 -0
- package/lib/context/yaml/handlers/prompts.js +22 -47
- package/lib/context/yaml/handlers/resourceServers.d.ts +1 -1
- package/lib/context/yaml/handlers/resourceServers.js +21 -33
- package/lib/context/yaml/handlers/roles.js +19 -33
- package/lib/context/yaml/handlers/rules.js +28 -39
- package/lib/context/yaml/handlers/rulesConfigs.js +14 -28
- package/lib/context/yaml/handlers/selfServiceProfiles.js +29 -43
- package/lib/context/yaml/handlers/tenant.js +19 -41
- package/lib/context/yaml/handlers/themes.js +7 -19
- package/lib/context/yaml/handlers/tokenExchangeProfiles.d.ts +5 -0
- package/lib/context/yaml/handlers/tokenExchangeProfiles.js +27 -0
- package/lib/context/yaml/handlers/triggers.d.ts +1 -1
- package/lib/context/yaml/handlers/triggers.js +15 -29
- package/lib/context/yaml/handlers/userAttributeProfiles.d.ts +1 -1
- package/lib/context/yaml/handlers/userAttributeProfiles.js +7 -19
- package/lib/context/yaml/index.js +120 -128
- package/lib/index.d.ts +4 -96
- package/lib/index.js +24 -34
- package/lib/keywordPreservation.d.ts +1 -1
- package/lib/keywordPreservation.js +11 -6
- package/lib/logger.js +0 -1
- package/lib/readonly.js +3 -4
- package/lib/sessionDurationsToMinutes.js +0 -1
- package/lib/tools/auth0/client.js +108 -127
- package/lib/tools/auth0/handlers/actions.d.ts +8 -26
- package/lib/tools/auth0/handlers/actions.js +138 -149
- package/lib/tools/auth0/handlers/attackProtection.js +80 -92
- package/lib/tools/auth0/handlers/branding.js +75 -99
- package/lib/tools/auth0/handlers/clientGrants.d.ts +2 -9
- package/lib/tools/auth0/handlers/clientGrants.js +68 -73
- package/lib/tools/auth0/handlers/clients.d.ts +25 -13
- package/lib/tools/auth0/handlers/clients.js +134 -86
- package/lib/tools/auth0/handlers/connectionProfiles.d.ts +3 -1
- package/lib/tools/auth0/handlers/connectionProfiles.js +36 -32
- package/lib/tools/auth0/handlers/connections.d.ts +3 -1
- package/lib/tools/auth0/handlers/connections.js +130 -135
- package/lib/tools/auth0/handlers/customDomains.d.ts +4 -1
- package/lib/tools/auth0/handlers/customDomains.js +43 -53
- package/lib/tools/auth0/handlers/databases.js +94 -114
- package/lib/tools/auth0/handlers/default.d.ts +2 -2
- package/lib/tools/auth0/handlers/default.js +210 -171
- package/lib/tools/auth0/handlers/emailProvider.js +41 -52
- package/lib/tools/auth0/handlers/emailTemplates.d.ts +1 -0
- package/lib/tools/auth0/handlers/emailTemplates.js +54 -70
- package/lib/tools/auth0/handlers/flowVaultConnections.d.ts +5 -12
- package/lib/tools/auth0/handlers/flowVaultConnections.js +108 -143
- package/lib/tools/auth0/handlers/flows.d.ts +2 -3
- package/lib/tools/auth0/handlers/flows.js +92 -129
- package/lib/tools/auth0/handlers/forms.d.ts +3 -3
- package/lib/tools/auth0/handlers/forms.js +98 -112
- package/lib/tools/auth0/handlers/guardianFactorProviders.js +61 -84
- package/lib/tools/auth0/handlers/guardianFactorTemplates.js +46 -68
- package/lib/tools/auth0/handlers/guardianFactors.js +35 -45
- package/lib/tools/auth0/handlers/guardianPhoneFactorMessageTypes.js +29 -45
- package/lib/tools/auth0/handlers/guardianPhoneFactorSelectedProvider.js +29 -45
- package/lib/tools/auth0/handlers/guardianPolicies.js +20 -35
- package/lib/tools/auth0/handlers/hooks.js +123 -153
- package/lib/tools/auth0/handlers/index.js +4 -1
- package/lib/tools/auth0/handlers/logStreams.js +42 -47
- package/lib/tools/auth0/handlers/networkACLs.d.ts +5 -4
- package/lib/tools/auth0/handlers/networkACLs.js +115 -133
- package/lib/tools/auth0/handlers/organizations.d.ts +10 -9
- package/lib/tools/auth0/handlers/organizations.js +360 -429
- package/lib/tools/auth0/handlers/pages.js +74 -83
- package/lib/tools/auth0/handlers/phoneProvider.d.ts +2 -2
- package/lib/tools/auth0/handlers/phoneProvider.js +69 -82
- package/lib/tools/auth0/handlers/phoneTemplates.d.ts +63 -0
- package/lib/tools/auth0/handlers/phoneTemplates.js +229 -0
- package/lib/tools/auth0/handlers/prompts.d.ts +7 -7
- package/lib/tools/auth0/handlers/prompts.js +246 -240
- package/lib/tools/auth0/handlers/resourceServers.d.ts +6 -1
- package/lib/tools/auth0/handlers/resourceServers.js +97 -60
- package/lib/tools/auth0/handlers/roles.js +162 -178
- package/lib/tools/auth0/handlers/rules.js +144 -162
- package/lib/tools/auth0/handlers/rulesConfigs.js +30 -39
- package/lib/tools/auth0/handlers/scimHandler.d.ts +4 -3
- package/lib/tools/auth0/handlers/scimHandler.js +110 -132
- package/lib/tools/auth0/handlers/selfServiceProfiles.d.ts +12 -3
- package/lib/tools/auth0/handlers/selfServiceProfiles.js +173 -203
- package/lib/tools/auth0/handlers/tenant.d.ts +5 -3
- package/lib/tools/auth0/handlers/tenant.js +46 -52
- package/lib/tools/auth0/handlers/themes.d.ts +12 -12
- package/lib/tools/auth0/handlers/themes.js +86 -102
- package/lib/tools/auth0/handlers/tokenExchangeProfiles.d.ts +60 -0
- package/lib/tools/auth0/handlers/tokenExchangeProfiles.js +271 -0
- package/lib/tools/auth0/handlers/triggers.js +59 -75
- package/lib/tools/auth0/handlers/userAttributeProfiles.d.ts +3 -2
- package/lib/tools/auth0/handlers/userAttributeProfiles.js +41 -43
- package/lib/tools/auth0/index.js +35 -48
- package/lib/tools/auth0/schema.js +6 -4
- package/lib/tools/calculateChanges.js +24 -15
- package/lib/tools/constants.d.ts +4 -2
- package/lib/tools/constants.js +3 -1
- package/lib/tools/deploy.js +17 -29
- package/lib/tools/index.d.ts +3 -89
- package/lib/tools/index.js +3 -2
- package/lib/tools/utils.d.ts +1 -1
- package/lib/tools/utils.js +12 -22
- package/lib/tools/validationError.js +0 -1
- package/lib/types.d.ts +15 -5
- package/lib/types.js +0 -1
- package/lib/utils.d.ts +3 -58
- package/lib/utils.js +8 -5
- package/package.json +13 -12
- package/tsconfig.json +4 -3
- package/.eslintignore +0 -5
- package/.eslintrc +0 -69
- package/lib/args.js.map +0 -1
- package/lib/commands/export.js.map +0 -1
- package/lib/commands/import.js.map +0 -1
- package/lib/commands/index.js.map +0 -1
- package/lib/configFactory.js.map +0 -1
- package/lib/context/defaults.js.map +0 -1
- package/lib/context/directory/handlers/actions.js.map +0 -1
- package/lib/context/directory/handlers/attackProtection.js.map +0 -1
- package/lib/context/directory/handlers/branding.js.map +0 -1
- package/lib/context/directory/handlers/clientGrants.js.map +0 -1
- package/lib/context/directory/handlers/clients.js.map +0 -1
- package/lib/context/directory/handlers/connectionProfiles.js.map +0 -1
- package/lib/context/directory/handlers/connections.js.map +0 -1
- package/lib/context/directory/handlers/customDomains.js.map +0 -1
- package/lib/context/directory/handlers/databases.js.map +0 -1
- package/lib/context/directory/handlers/emailProvider.js.map +0 -1
- package/lib/context/directory/handlers/emailTemplates.js.map +0 -1
- package/lib/context/directory/handlers/flowVaultConnections.js.map +0 -1
- package/lib/context/directory/handlers/flows.js.map +0 -1
- package/lib/context/directory/handlers/forms.js.map +0 -1
- package/lib/context/directory/handlers/guardianFactorProviders.js.map +0 -1
- package/lib/context/directory/handlers/guardianFactorTemplates.js.map +0 -1
- package/lib/context/directory/handlers/guardianFactors.js.map +0 -1
- package/lib/context/directory/handlers/guardianPhoneFactorMessageTypes.js.map +0 -1
- package/lib/context/directory/handlers/guardianPhoneFactorSelectedProvider.js.map +0 -1
- package/lib/context/directory/handlers/guardianPolicies.js.map +0 -1
- package/lib/context/directory/handlers/hooks.js.map +0 -1
- package/lib/context/directory/handlers/index.js.map +0 -1
- package/lib/context/directory/handlers/logStreams.js.map +0 -1
- package/lib/context/directory/handlers/networkACLs.js.map +0 -1
- package/lib/context/directory/handlers/organizations.js.map +0 -1
- package/lib/context/directory/handlers/pages.js.map +0 -1
- package/lib/context/directory/handlers/phoneProvider.js.map +0 -1
- package/lib/context/directory/handlers/prompts.js.map +0 -1
- package/lib/context/directory/handlers/resourceServers.js.map +0 -1
- package/lib/context/directory/handlers/roles.js.map +0 -1
- package/lib/context/directory/handlers/rules.js.map +0 -1
- package/lib/context/directory/handlers/rulesConfigs.js.map +0 -1
- package/lib/context/directory/handlers/selfServiceProfiles.js.map +0 -1
- package/lib/context/directory/handlers/tenant.js.map +0 -1
- package/lib/context/directory/handlers/themes.js.map +0 -1
- package/lib/context/directory/handlers/triggers.js.map +0 -1
- package/lib/context/directory/handlers/userAttributeProfiles.js.map +0 -1
- package/lib/context/directory/index.js.map +0 -1
- package/lib/context/index.js.map +0 -1
- package/lib/context/yaml/handlers/actions.js.map +0 -1
- package/lib/context/yaml/handlers/attackProtection.js.map +0 -1
- package/lib/context/yaml/handlers/branding.js.map +0 -1
- package/lib/context/yaml/handlers/clientGrants.js.map +0 -1
- package/lib/context/yaml/handlers/clients.js.map +0 -1
- package/lib/context/yaml/handlers/connectionProfiles.js.map +0 -1
- package/lib/context/yaml/handlers/connections.js.map +0 -1
- package/lib/context/yaml/handlers/customDomains.js.map +0 -1
- package/lib/context/yaml/handlers/databases.js.map +0 -1
- package/lib/context/yaml/handlers/emailProvider.js.map +0 -1
- package/lib/context/yaml/handlers/emailTemplates.js.map +0 -1
- package/lib/context/yaml/handlers/flowVaultConnections.js.map +0 -1
- package/lib/context/yaml/handlers/flows.js.map +0 -1
- package/lib/context/yaml/handlers/forms.js.map +0 -1
- package/lib/context/yaml/handlers/guardianFactorProviders.js.map +0 -1
- package/lib/context/yaml/handlers/guardianFactorTemplates.js.map +0 -1
- package/lib/context/yaml/handlers/guardianFactors.js.map +0 -1
- package/lib/context/yaml/handlers/guardianPhoneFactorMessageTypes.js.map +0 -1
- package/lib/context/yaml/handlers/guardianPhoneFactorSelectedProvider.js.map +0 -1
- package/lib/context/yaml/handlers/guardianPolicies.js.map +0 -1
- package/lib/context/yaml/handlers/hooks.js.map +0 -1
- package/lib/context/yaml/handlers/index.js.map +0 -1
- package/lib/context/yaml/handlers/logStreams.js.map +0 -1
- package/lib/context/yaml/handlers/networkACLs.js.map +0 -1
- package/lib/context/yaml/handlers/organizations.js.map +0 -1
- package/lib/context/yaml/handlers/pages.js.map +0 -1
- package/lib/context/yaml/handlers/phoneProvider.js.map +0 -1
- package/lib/context/yaml/handlers/prompts.js.map +0 -1
- package/lib/context/yaml/handlers/resourceServers.js.map +0 -1
- package/lib/context/yaml/handlers/roles.js.map +0 -1
- package/lib/context/yaml/handlers/rules.js.map +0 -1
- package/lib/context/yaml/handlers/rulesConfigs.js.map +0 -1
- package/lib/context/yaml/handlers/selfServiceProfiles.js.map +0 -1
- package/lib/context/yaml/handlers/tenant.js.map +0 -1
- package/lib/context/yaml/handlers/themes.js.map +0 -1
- package/lib/context/yaml/handlers/triggers.js.map +0 -1
- package/lib/context/yaml/handlers/userAttributeProfiles.js.map +0 -1
- package/lib/context/yaml/index.js.map +0 -1
- package/lib/index.js.map +0 -1
- package/lib/keywordPreservation.js.map +0 -1
- package/lib/logger.js.map +0 -1
- package/lib/readonly.js.map +0 -1
- package/lib/sessionDurationsToMinutes.js.map +0 -1
- package/lib/tools/auth0/client.js.map +0 -1
- package/lib/tools/auth0/handlers/actions.js.map +0 -1
- package/lib/tools/auth0/handlers/attackProtection.js.map +0 -1
- package/lib/tools/auth0/handlers/branding.js.map +0 -1
- package/lib/tools/auth0/handlers/clientGrants.js.map +0 -1
- package/lib/tools/auth0/handlers/clients.js.map +0 -1
- package/lib/tools/auth0/handlers/connectionProfiles.js.map +0 -1
- package/lib/tools/auth0/handlers/connections.js.map +0 -1
- package/lib/tools/auth0/handlers/customDomains.js.map +0 -1
- package/lib/tools/auth0/handlers/databases.js.map +0 -1
- package/lib/tools/auth0/handlers/default.js.map +0 -1
- package/lib/tools/auth0/handlers/emailProvider.js.map +0 -1
- package/lib/tools/auth0/handlers/emailTemplates.js.map +0 -1
- package/lib/tools/auth0/handlers/flowVaultConnections.js.map +0 -1
- package/lib/tools/auth0/handlers/flows.js.map +0 -1
- package/lib/tools/auth0/handlers/forms.js.map +0 -1
- package/lib/tools/auth0/handlers/guardianFactorProviders.js.map +0 -1
- package/lib/tools/auth0/handlers/guardianFactorTemplates.js.map +0 -1
- package/lib/tools/auth0/handlers/guardianFactors.js.map +0 -1
- package/lib/tools/auth0/handlers/guardianPhoneFactorMessageTypes.js.map +0 -1
- package/lib/tools/auth0/handlers/guardianPhoneFactorSelectedProvider.js.map +0 -1
- package/lib/tools/auth0/handlers/guardianPolicies.js.map +0 -1
- package/lib/tools/auth0/handlers/hooks.js.map +0 -1
- package/lib/tools/auth0/handlers/index.js.map +0 -1
- package/lib/tools/auth0/handlers/logStreams.js.map +0 -1
- package/lib/tools/auth0/handlers/networkACLs.js.map +0 -1
- package/lib/tools/auth0/handlers/organizations.js.map +0 -1
- package/lib/tools/auth0/handlers/pages.js.map +0 -1
- package/lib/tools/auth0/handlers/phoneProvider.js.map +0 -1
- package/lib/tools/auth0/handlers/prompts.js.map +0 -1
- package/lib/tools/auth0/handlers/resourceServers.js.map +0 -1
- package/lib/tools/auth0/handlers/roles.js.map +0 -1
- package/lib/tools/auth0/handlers/rules.js.map +0 -1
- package/lib/tools/auth0/handlers/rulesConfigs.js.map +0 -1
- package/lib/tools/auth0/handlers/scimHandler.js.map +0 -1
- package/lib/tools/auth0/handlers/selfServiceProfiles.js.map +0 -1
- package/lib/tools/auth0/handlers/tenant.js.map +0 -1
- package/lib/tools/auth0/handlers/themes.js.map +0 -1
- package/lib/tools/auth0/handlers/triggers.js.map +0 -1
- package/lib/tools/auth0/handlers/userAttributeProfiles.js.map +0 -1
- package/lib/tools/auth0/index.js.map +0 -1
- package/lib/tools/auth0/schema.js.map +0 -1
- package/lib/tools/calculateChanges.js.map +0 -1
- package/lib/tools/constants.js.map +0 -1
- package/lib/tools/deploy.js.map +0 -1
- package/lib/tools/index.js.map +0 -1
- package/lib/tools/utils.js.map +0 -1
- package/lib/tools/validationError.js.map +0 -1
- package/lib/types.js.map +0 -1
- package/lib/utils.js.map +0 -1
|
@@ -1,13 +1,4 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
3
|
-
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
4
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
5
|
-
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
6
|
-
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
7
|
-
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
8
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
9
|
-
});
|
|
10
|
-
};
|
|
11
2
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
12
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
13
4
|
};
|
|
@@ -23,53 +14,53 @@ function parse(context) {
|
|
|
23
14
|
return { forms: null }; // Skip
|
|
24
15
|
const files = (0, utils_1.getFiles)(formsFolder, ['.json']);
|
|
25
16
|
const forms = files.map((f) => {
|
|
26
|
-
const form =
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
17
|
+
const form = {
|
|
18
|
+
...(0, utils_1.loadJSON)(f, {
|
|
19
|
+
mappings: context.mappings,
|
|
20
|
+
disableKeywordReplacement: context.disableKeywordReplacement,
|
|
21
|
+
}),
|
|
22
|
+
};
|
|
30
23
|
return form;
|
|
31
24
|
});
|
|
32
25
|
return {
|
|
33
26
|
forms,
|
|
34
27
|
};
|
|
35
28
|
}
|
|
36
|
-
function dump(context) {
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
29
|
+
async function dump(context) {
|
|
30
|
+
const { forms } = context.assets;
|
|
31
|
+
if (!forms)
|
|
32
|
+
return; // Skip, nothing to dump
|
|
33
|
+
const formsFolder = path_1.default.join(context.filePath, tools_1.constants.FORMS_DIRECTORY);
|
|
34
|
+
fs_extra_1.default.ensureDirSync(formsFolder);
|
|
35
|
+
// Check if there is any duplicate form name
|
|
36
|
+
const formNameSet = new Set();
|
|
37
|
+
const duplicateFormNames = new Set();
|
|
38
|
+
forms.forEach((form) => {
|
|
39
|
+
if (formNameSet.has(form.name)) {
|
|
40
|
+
duplicateFormNames.add(form.name);
|
|
41
|
+
}
|
|
42
|
+
else {
|
|
43
|
+
formNameSet.add(form.name);
|
|
44
|
+
}
|
|
45
|
+
});
|
|
46
|
+
if (duplicateFormNames.size > 0) {
|
|
47
|
+
const duplicateNamesArray = Array.from(duplicateFormNames).join(', ');
|
|
48
|
+
logger_1.default.error(`Duplicate form names found: [${duplicateNamesArray}] , make sure to rename them to avoid conflicts`);
|
|
49
|
+
throw new Error(`Duplicate form names found: ${duplicateNamesArray}`);
|
|
50
|
+
}
|
|
51
|
+
forms.forEach((form) => {
|
|
52
|
+
if (form.name === undefined) {
|
|
53
|
+
return;
|
|
58
54
|
}
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
55
|
+
const formFile = path_1.default.join(formsFolder, (0, utils_1.sanitize)(`${form.name}.json`));
|
|
56
|
+
logger_1.default.info(`Writing ${formFile}`);
|
|
57
|
+
const removeKeysFromOutput = ['id', 'created_at', 'updated_at'];
|
|
58
|
+
removeKeysFromOutput.forEach((key) => {
|
|
59
|
+
if (key in form) {
|
|
60
|
+
delete form[key];
|
|
62
61
|
}
|
|
63
|
-
const formFile = path_1.default.join(formsFolder, (0, utils_1.sanitize)(`${form.name}.json`));
|
|
64
|
-
logger_1.default.info(`Writing ${formFile}`);
|
|
65
|
-
const removeKeysFromOutput = ['id', 'created_at', 'updated_at'];
|
|
66
|
-
removeKeysFromOutput.forEach((key) => {
|
|
67
|
-
if (key in form) {
|
|
68
|
-
delete form[key];
|
|
69
|
-
}
|
|
70
|
-
});
|
|
71
|
-
(0, utils_1.dumpJSON)(formFile, form);
|
|
72
62
|
});
|
|
63
|
+
(0, utils_1.dumpJSON)(formFile, form);
|
|
73
64
|
});
|
|
74
65
|
}
|
|
75
66
|
const formsHandler = {
|
|
@@ -77,4 +68,3 @@ const formsHandler = {
|
|
|
77
68
|
dump,
|
|
78
69
|
};
|
|
79
70
|
exports.default = formsHandler;
|
|
80
|
-
//# sourceMappingURL=forms.js.map
|
|
@@ -1,13 +1,4 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
3
|
-
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
4
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
5
|
-
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
6
|
-
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
7
|
-
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
8
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
9
|
-
});
|
|
10
|
-
};
|
|
11
2
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
12
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
13
4
|
};
|
|
@@ -31,17 +22,15 @@ function parse(context) {
|
|
|
31
22
|
guardianFactorProviders,
|
|
32
23
|
};
|
|
33
24
|
}
|
|
34
|
-
function dump(context) {
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
(0, utils_1.dumpJSON)(factorProviderFile, factorProvider);
|
|
44
|
-
});
|
|
25
|
+
async function dump(context) {
|
|
26
|
+
const { guardianFactorProviders } = context.assets;
|
|
27
|
+
if (!guardianFactorProviders)
|
|
28
|
+
return; // Skip, nothing to dump
|
|
29
|
+
const factorProvidersFolder = path_1.default.join(context.filePath, tools_1.constants.GUARDIAN_DIRECTORY, tools_1.constants.GUARDIAN_PROVIDERS_DIRECTORY);
|
|
30
|
+
fs_extra_1.default.ensureDirSync(factorProvidersFolder);
|
|
31
|
+
guardianFactorProviders.forEach((factorProvider) => {
|
|
32
|
+
const factorProviderFile = path_1.default.join(factorProvidersFolder, `${factorProvider.name}-${factorProvider.provider}.json`);
|
|
33
|
+
(0, utils_1.dumpJSON)(factorProviderFile, factorProvider);
|
|
45
34
|
});
|
|
46
35
|
}
|
|
47
36
|
const guardianFactorProvidersHandler = {
|
|
@@ -49,4 +38,3 @@ const guardianFactorProvidersHandler = {
|
|
|
49
38
|
dump,
|
|
50
39
|
};
|
|
51
40
|
exports.default = guardianFactorProvidersHandler;
|
|
52
|
-
//# sourceMappingURL=guardianFactorProviders.js.map
|
|
@@ -1,13 +1,4 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
3
|
-
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
4
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
5
|
-
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
6
|
-
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
7
|
-
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
8
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
9
|
-
});
|
|
10
|
-
};
|
|
11
2
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
12
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
13
4
|
};
|
|
@@ -31,17 +22,15 @@ function parse(context) {
|
|
|
31
22
|
guardianFactorTemplates,
|
|
32
23
|
};
|
|
33
24
|
}
|
|
34
|
-
function dump(context) {
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
(0, utils_1.dumpJSON)(factorTemplatesFile, factorTemplates);
|
|
44
|
-
});
|
|
25
|
+
async function dump(context) {
|
|
26
|
+
const { guardianFactorTemplates } = context.assets;
|
|
27
|
+
if (!guardianFactorTemplates)
|
|
28
|
+
return; // Skip, nothing to dump
|
|
29
|
+
const factorTemplatesFolder = path_1.default.join(context.filePath, tools_1.constants.GUARDIAN_DIRECTORY, tools_1.constants.GUARDIAN_TEMPLATES_DIRECTORY);
|
|
30
|
+
fs_extra_1.default.ensureDirSync(factorTemplatesFolder);
|
|
31
|
+
guardianFactorTemplates.forEach((factorTemplates) => {
|
|
32
|
+
const factorTemplatesFile = path_1.default.join(factorTemplatesFolder, `${factorTemplates.name}.json`);
|
|
33
|
+
(0, utils_1.dumpJSON)(factorTemplatesFile, factorTemplates);
|
|
45
34
|
});
|
|
46
35
|
}
|
|
47
36
|
const guardianFactorTemplatesHandler = {
|
|
@@ -49,4 +38,3 @@ const guardianFactorTemplatesHandler = {
|
|
|
49
38
|
dump,
|
|
50
39
|
};
|
|
51
40
|
exports.default = guardianFactorTemplatesHandler;
|
|
52
|
-
//# sourceMappingURL=guardianFactorTemplates.js.map
|
|
@@ -1,13 +1,4 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
3
|
-
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
4
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
5
|
-
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
6
|
-
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
7
|
-
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
8
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
9
|
-
});
|
|
10
|
-
};
|
|
11
2
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
12
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
13
4
|
};
|
|
@@ -31,17 +22,15 @@ function parse(context) {
|
|
|
31
22
|
guardianFactors,
|
|
32
23
|
};
|
|
33
24
|
}
|
|
34
|
-
function dump(context) {
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
(0, utils_1.dumpJSON)(factorFile, factor);
|
|
44
|
-
});
|
|
25
|
+
async function dump(context) {
|
|
26
|
+
const { guardianFactors } = context.assets;
|
|
27
|
+
if (!guardianFactors)
|
|
28
|
+
return; // Skip, nothing to dump
|
|
29
|
+
const factorsFolder = path_1.default.join(context.filePath, tools_1.constants.GUARDIAN_DIRECTORY, tools_1.constants.GUARDIAN_FACTORS_DIRECTORY);
|
|
30
|
+
fs_extra_1.default.ensureDirSync(factorsFolder);
|
|
31
|
+
guardianFactors.forEach((factor) => {
|
|
32
|
+
const factorFile = path_1.default.join(factorsFolder, `${factor.name}.json`);
|
|
33
|
+
(0, utils_1.dumpJSON)(factorFile, factor);
|
|
45
34
|
});
|
|
46
35
|
}
|
|
47
36
|
const guardianFactorsHandler = {
|
|
@@ -49,4 +38,3 @@ const guardianFactorsHandler = {
|
|
|
49
38
|
dump,
|
|
50
39
|
};
|
|
51
40
|
exports.default = guardianFactorsHandler;
|
|
52
|
-
//# sourceMappingURL=guardianFactors.js.map
|
|
@@ -1,13 +1,4 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
3
|
-
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
4
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
5
|
-
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
6
|
-
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
7
|
-
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
8
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
9
|
-
});
|
|
10
|
-
};
|
|
11
2
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
12
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
13
4
|
};
|
|
@@ -31,20 +22,17 @@ function parse(context) {
|
|
|
31
22
|
}),
|
|
32
23
|
};
|
|
33
24
|
}
|
|
34
|
-
function dump(context) {
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
(0, utils_1.dumpJSON)(file, guardianPhoneFactorMessageTypes);
|
|
43
|
-
});
|
|
25
|
+
async function dump(context) {
|
|
26
|
+
const { guardianPhoneFactorMessageTypes } = context.assets;
|
|
27
|
+
if (!guardianPhoneFactorMessageTypes)
|
|
28
|
+
return; // Skip, nothing to dump
|
|
29
|
+
const guardianFolder = path_1.default.join(context.filePath, tools_1.constants.GUARDIAN_DIRECTORY);
|
|
30
|
+
fs_extra_1.default.ensureDirSync(guardianFolder);
|
|
31
|
+
const file = path_1.default.join(guardianFolder, 'phoneFactorMessageTypes.json');
|
|
32
|
+
(0, utils_1.dumpJSON)(file, guardianPhoneFactorMessageTypes);
|
|
44
33
|
}
|
|
45
34
|
const guardianFactorMessageTypesHandler = {
|
|
46
35
|
parse,
|
|
47
36
|
dump,
|
|
48
37
|
};
|
|
49
38
|
exports.default = guardianFactorMessageTypesHandler;
|
|
50
|
-
//# sourceMappingURL=guardianPhoneFactorMessageTypes.js.map
|
|
@@ -1,13 +1,4 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
3
|
-
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
4
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
5
|
-
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
6
|
-
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
7
|
-
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
8
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
9
|
-
});
|
|
10
|
-
};
|
|
11
2
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
12
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
13
4
|
};
|
|
@@ -31,20 +22,17 @@ function parse(context) {
|
|
|
31
22
|
}),
|
|
32
23
|
};
|
|
33
24
|
}
|
|
34
|
-
function dump(context) {
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
(0, utils_1.dumpJSON)(file, guardianPhoneFactorSelectedProvider);
|
|
43
|
-
});
|
|
25
|
+
async function dump(context) {
|
|
26
|
+
const { guardianPhoneFactorSelectedProvider } = context.assets;
|
|
27
|
+
if (!guardianPhoneFactorSelectedProvider)
|
|
28
|
+
return; // Skip, nothing to dump
|
|
29
|
+
const guardianFolder = path_1.default.join(context.filePath, tools_1.constants.GUARDIAN_DIRECTORY);
|
|
30
|
+
fs_extra_1.default.ensureDirSync(guardianFolder);
|
|
31
|
+
const file = path_1.default.join(guardianFolder, 'phoneFactorSelectedProvider.json');
|
|
32
|
+
(0, utils_1.dumpJSON)(file, guardianPhoneFactorSelectedProvider);
|
|
44
33
|
}
|
|
45
34
|
const guardianFactorSelectedProviderHandler = {
|
|
46
35
|
parse,
|
|
47
36
|
dump,
|
|
48
37
|
};
|
|
49
38
|
exports.default = guardianFactorSelectedProviderHandler;
|
|
50
|
-
//# sourceMappingURL=guardianPhoneFactorSelectedProvider.js.map
|
|
@@ -1,13 +1,4 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
3
|
-
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
4
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
5
|
-
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
6
|
-
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
7
|
-
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
8
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
9
|
-
});
|
|
10
|
-
};
|
|
11
2
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
12
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
13
4
|
};
|
|
@@ -31,20 +22,17 @@ function parse(context) {
|
|
|
31
22
|
}),
|
|
32
23
|
};
|
|
33
24
|
}
|
|
34
|
-
function dump(context) {
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
(0, utils_1.dumpJSON)(file, guardianPolicies);
|
|
43
|
-
});
|
|
25
|
+
async function dump(context) {
|
|
26
|
+
const { guardianPolicies } = context.assets;
|
|
27
|
+
if (!guardianPolicies)
|
|
28
|
+
return; // Skip, nothing to dump
|
|
29
|
+
const guardianFolder = path_1.default.join(context.filePath, tools_1.constants.GUARDIAN_DIRECTORY);
|
|
30
|
+
fs_extra_1.default.ensureDirSync(guardianFolder);
|
|
31
|
+
const file = path_1.default.join(guardianFolder, 'policies.json');
|
|
32
|
+
(0, utils_1.dumpJSON)(file, guardianPolicies);
|
|
44
33
|
}
|
|
45
34
|
const guardianPoliciesHandler = {
|
|
46
35
|
parse,
|
|
47
36
|
dump,
|
|
48
37
|
};
|
|
49
38
|
exports.default = guardianPoliciesHandler;
|
|
50
|
-
//# sourceMappingURL=guardianPolicies.js.map
|
|
@@ -1,13 +1,4 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
3
|
-
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
4
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
5
|
-
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
6
|
-
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
7
|
-
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
8
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
9
|
-
});
|
|
10
|
-
};
|
|
11
2
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
12
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
13
4
|
};
|
|
@@ -23,10 +14,12 @@ function parse(context) {
|
|
|
23
14
|
return { hooks: null }; // Skip
|
|
24
15
|
const files = (0, utils_1.getFiles)(hooksFolder, ['.json']);
|
|
25
16
|
const hooks = files.map((f) => {
|
|
26
|
-
const hook =
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
17
|
+
const hook = {
|
|
18
|
+
...(0, utils_1.loadJSON)(f, {
|
|
19
|
+
mappings: context.mappings,
|
|
20
|
+
disableKeywordReplacement: context.disableKeywordReplacement,
|
|
21
|
+
}),
|
|
22
|
+
};
|
|
30
23
|
if (hook.script) {
|
|
31
24
|
hook.script = context.loadFile(hook.script, tools_1.constants.HOOKS_DIRECTORY);
|
|
32
25
|
}
|
|
@@ -37,26 +30,24 @@ function parse(context) {
|
|
|
37
30
|
hooks,
|
|
38
31
|
};
|
|
39
32
|
}
|
|
40
|
-
function dump(context) {
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
(0, utils_1.dumpJSON)(hookFile, Object.assign(Object.assign({}, hook), { script: `./${name}.js` }));
|
|
59
|
-
});
|
|
33
|
+
async function dump(context) {
|
|
34
|
+
const hooks = context.assets.hooks;
|
|
35
|
+
if (!hooks)
|
|
36
|
+
return;
|
|
37
|
+
// Create Hooks folder
|
|
38
|
+
const hooksFolder = path_1.default.join(context.filePath, tools_1.constants.HOOKS_DIRECTORY);
|
|
39
|
+
fs_extra_1.default.ensureDirSync(hooksFolder);
|
|
40
|
+
hooks.forEach((hook) => {
|
|
41
|
+
// Dump script to file
|
|
42
|
+
// For cases when hook does not have `meta['hook-name']`
|
|
43
|
+
hook.name = hook.name || hook.id;
|
|
44
|
+
const name = (0, utils_1.sanitize)(hook.name);
|
|
45
|
+
const hookCode = path_1.default.join(hooksFolder, `${name}.js`);
|
|
46
|
+
logger_1.default.info(`Writing ${hookCode}`);
|
|
47
|
+
fs_extra_1.default.writeFileSync(hookCode, hook.script);
|
|
48
|
+
// Dump template metadata
|
|
49
|
+
const hookFile = path_1.default.join(hooksFolder, `${name}.json`);
|
|
50
|
+
(0, utils_1.dumpJSON)(hookFile, { ...hook, script: `./${name}.js` });
|
|
60
51
|
});
|
|
61
52
|
}
|
|
62
53
|
const hooksHandler = {
|
|
@@ -64,4 +55,3 @@ const hooksHandler = {
|
|
|
64
55
|
dump,
|
|
65
56
|
};
|
|
66
57
|
exports.default = hooksHandler;
|
|
67
|
-
//# sourceMappingURL=hooks.js.map
|
|
@@ -25,6 +25,7 @@ const triggers_1 = __importDefault(require("./triggers"));
|
|
|
25
25
|
const attackProtection_1 = __importDefault(require("./attackProtection"));
|
|
26
26
|
const branding_1 = __importDefault(require("./branding"));
|
|
27
27
|
const phoneProvider_1 = __importDefault(require("./phoneProvider"));
|
|
28
|
+
const phoneTemplates_1 = __importDefault(require("./phoneTemplates"));
|
|
28
29
|
const logStreams_1 = __importDefault(require("./logStreams"));
|
|
29
30
|
const prompts_1 = __importDefault(require("./prompts"));
|
|
30
31
|
const customDomains_1 = __importDefault(require("./customDomains"));
|
|
@@ -38,6 +39,7 @@ const flowVaultConnections_1 = __importDefault(require("./flowVaultConnections")
|
|
|
38
39
|
const networkACLs_1 = __importDefault(require("./networkACLs"));
|
|
39
40
|
const userAttributeProfiles_1 = __importDefault(require("./userAttributeProfiles"));
|
|
40
41
|
const connectionProfiles_1 = __importDefault(require("./connectionProfiles"));
|
|
42
|
+
const tokenExchangeProfiles_1 = __importDefault(require("./tokenExchangeProfiles"));
|
|
41
43
|
const selfServiceProfiles_1 = __importDefault(require("./selfServiceProfiles"));
|
|
42
44
|
const directoryHandlers = {
|
|
43
45
|
rules: rules_1.default,
|
|
@@ -65,6 +67,7 @@ const directoryHandlers = {
|
|
|
65
67
|
attackProtection: attackProtection_1.default,
|
|
66
68
|
branding: branding_1.default,
|
|
67
69
|
phoneProviders: phoneProvider_1.default,
|
|
70
|
+
phoneTemplates: phoneTemplates_1.default,
|
|
68
71
|
logStreams: logStreams_1.default,
|
|
69
72
|
prompts: prompts_1.default,
|
|
70
73
|
customDomains: customDomains_1.default,
|
|
@@ -76,6 +79,6 @@ const directoryHandlers = {
|
|
|
76
79
|
networkACLs: networkACLs_1.default,
|
|
77
80
|
userAttributeProfiles: userAttributeProfiles_1.default,
|
|
78
81
|
connectionProfiles: connectionProfiles_1.default,
|
|
82
|
+
tokenExchangeProfiles: tokenExchangeProfiles_1.default,
|
|
79
83
|
};
|
|
80
84
|
exports.default = directoryHandlers;
|
|
81
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1,13 +1,4 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
3
|
-
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
4
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
5
|
-
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
6
|
-
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
7
|
-
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
8
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
9
|
-
});
|
|
10
|
-
};
|
|
11
2
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
12
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
13
4
|
};
|
|
@@ -32,20 +23,18 @@ function parse(context) {
|
|
|
32
23
|
logStreams,
|
|
33
24
|
};
|
|
34
25
|
}
|
|
35
|
-
function dump(context) {
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
(0, utils_1.dumpJSON)(ruleFile, logStream);
|
|
48
|
-
});
|
|
26
|
+
async function dump(context) {
|
|
27
|
+
const { logStreams } = context.assets;
|
|
28
|
+
if (!logStreams)
|
|
29
|
+
return; // Skip, nothing to dump
|
|
30
|
+
// Create Rules folder
|
|
31
|
+
const logStreamsDirectory = path_1.default.join(context.filePath, tools_1.constants.LOG_STREAMS_DIRECTORY);
|
|
32
|
+
fs_extra_1.default.ensureDirSync(logStreamsDirectory);
|
|
33
|
+
// masked sensitive fields
|
|
34
|
+
const maskedLogStreams = (0, defaults_1.logStreamDefaults)(logStreams);
|
|
35
|
+
maskedLogStreams.forEach((logStream) => {
|
|
36
|
+
const ruleFile = path_1.default.join(logStreamsDirectory, `${(0, utils_1.sanitize)(logStream.name)}.json`);
|
|
37
|
+
(0, utils_1.dumpJSON)(ruleFile, logStream);
|
|
49
38
|
});
|
|
50
39
|
}
|
|
51
40
|
const logStreamsHandler = {
|
|
@@ -53,4 +42,3 @@ const logStreamsHandler = {
|
|
|
53
42
|
dump,
|
|
54
43
|
};
|
|
55
44
|
exports.default = logStreamsHandler;
|
|
56
|
-
//# sourceMappingURL=logStreams.js.map
|
|
@@ -1,13 +1,4 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
3
|
-
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
4
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
5
|
-
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
6
|
-
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
7
|
-
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
8
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
9
|
-
});
|
|
10
|
-
};
|
|
11
2
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
12
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
13
4
|
};
|
|
@@ -32,31 +23,29 @@ function parse(context) {
|
|
|
32
23
|
networkACLs,
|
|
33
24
|
};
|
|
34
25
|
}
|
|
35
|
-
function dump(context) {
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
}
|
|
53
|
-
});
|
|
54
|
-
const fileName = networkACL.description
|
|
55
|
-
? `${(0, utils_1.sanitize)(networkACL.description)}-p-${networkACL.priority}`
|
|
56
|
-
: `network-acl-p-${networkACL.priority}`;
|
|
57
|
-
const filePath = path_1.default.join(networkACLsDirectory, `${fileName}.json`);
|
|
58
|
-
(0, utils_1.dumpJSON)(filePath, networkACL);
|
|
26
|
+
async function dump(context) {
|
|
27
|
+
const { networkACLs } = context.assets;
|
|
28
|
+
if (!networkACLs)
|
|
29
|
+
return; // Skip, nothing to dump
|
|
30
|
+
if (Array.isArray(networkACLs) && networkACLs.length === 0) {
|
|
31
|
+
logger_1.default.info('No network ACLs available, skipping dump');
|
|
32
|
+
return;
|
|
33
|
+
}
|
|
34
|
+
// Create Network ACLs folder
|
|
35
|
+
const networkACLsDirectory = path_1.default.join(context.filePath, tools_1.constants.NETWORK_ACLS_DIRECTORY);
|
|
36
|
+
fs_extra_1.default.ensureDirSync(networkACLsDirectory);
|
|
37
|
+
const removeKeysFromOutput = ['created_at', 'updated_at'];
|
|
38
|
+
networkACLs.forEach((networkACL) => {
|
|
39
|
+
removeKeysFromOutput.forEach((key) => {
|
|
40
|
+
if (key in networkACL) {
|
|
41
|
+
delete networkACL[key];
|
|
42
|
+
}
|
|
59
43
|
});
|
|
44
|
+
const fileName = networkACL.description
|
|
45
|
+
? `${(0, utils_1.sanitize)(networkACL.description)}-p-${networkACL.priority}`
|
|
46
|
+
: `network-acl-p-${networkACL.priority}`;
|
|
47
|
+
const filePath = path_1.default.join(networkACLsDirectory, `${fileName}.json`);
|
|
48
|
+
(0, utils_1.dumpJSON)(filePath, networkACL);
|
|
60
49
|
});
|
|
61
50
|
}
|
|
62
51
|
const networkACLsHandler = {
|
|
@@ -64,4 +53,3 @@ const networkACLsHandler = {
|
|
|
64
53
|
dump,
|
|
65
54
|
};
|
|
66
55
|
exports.default = networkACLsHandler;
|
|
67
|
-
//# sourceMappingURL=networkACLs.js.map
|