@rockcarver/frodo-lib 0.11.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.
Files changed (112) hide show
  1. package/.eslintrc +32 -0
  2. package/.github/ISSUE_TEMPLATE/bug_report.md +30 -0
  3. package/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
  4. package/.github/README.md +121 -0
  5. package/.github/workflows/pipeline.yml +287 -0
  6. package/.prettierrc +6 -0
  7. package/CHANGELOG.md +512 -0
  8. package/CODE_OF_CONDUCT.md +128 -0
  9. package/LICENSE +21 -0
  10. package/README.md +8 -0
  11. package/docs/CONTRIBUTE.md +96 -0
  12. package/docs/PIPELINE.md +169 -0
  13. package/docs/images/npm_versioning_guidelines.png +0 -0
  14. package/docs/images/release_pipeline.png +0 -0
  15. package/jsconfig.json +6 -0
  16. package/package.json +95 -0
  17. package/resources/sampleEntitiesFile.json +8 -0
  18. package/resources/sampleEnvFile.env +2 -0
  19. package/src/api/AuthenticateApi.js +33 -0
  20. package/src/api/BaseApi.js +242 -0
  21. package/src/api/CirclesOfTrustApi.js +87 -0
  22. package/src/api/EmailTemplateApi.js +37 -0
  23. package/src/api/IdmConfigApi.js +88 -0
  24. package/src/api/LogApi.js +45 -0
  25. package/src/api/ManagedObjectApi.js +62 -0
  26. package/src/api/OAuth2ClientApi.js +69 -0
  27. package/src/api/OAuth2OIDCApi.js +73 -0
  28. package/src/api/OAuth2ProviderApi.js +32 -0
  29. package/src/api/RealmApi.js +99 -0
  30. package/src/api/Saml2Api.js +176 -0
  31. package/src/api/ScriptApi.js +84 -0
  32. package/src/api/SecretsApi.js +151 -0
  33. package/src/api/ServerInfoApi.js +41 -0
  34. package/src/api/SocialIdentityProvidersApi.js +114 -0
  35. package/src/api/StartupApi.js +45 -0
  36. package/src/api/ThemeApi.js +181 -0
  37. package/src/api/TreeApi.js +207 -0
  38. package/src/api/VariablesApi.js +104 -0
  39. package/src/api/utils/ApiUtils.js +77 -0
  40. package/src/api/utils/ApiUtils.test.js +96 -0
  41. package/src/api/utils/Base64.js +62 -0
  42. package/src/index.js +32 -0
  43. package/src/index.test.js +13 -0
  44. package/src/ops/AdminOps.js +901 -0
  45. package/src/ops/AuthenticateOps.js +342 -0
  46. package/src/ops/CirclesOfTrustOps.js +350 -0
  47. package/src/ops/ConnectionProfileOps.js +254 -0
  48. package/src/ops/EmailTemplateOps.js +326 -0
  49. package/src/ops/IdmOps.js +227 -0
  50. package/src/ops/IdpOps.js +342 -0
  51. package/src/ops/JourneyOps.js +2026 -0
  52. package/src/ops/LogOps.js +357 -0
  53. package/src/ops/ManagedObjectOps.js +34 -0
  54. package/src/ops/OAuth2ClientOps.js +151 -0
  55. package/src/ops/OrganizationOps.js +85 -0
  56. package/src/ops/RealmOps.js +139 -0
  57. package/src/ops/SamlOps.js +541 -0
  58. package/src/ops/ScriptOps.js +211 -0
  59. package/src/ops/SecretsOps.js +288 -0
  60. package/src/ops/StartupOps.js +114 -0
  61. package/src/ops/ThemeOps.js +379 -0
  62. package/src/ops/VariablesOps.js +185 -0
  63. package/src/ops/templates/OAuth2ClientTemplate.json +270 -0
  64. package/src/ops/templates/OrgModelUserAttributesTemplate.json +149 -0
  65. package/src/ops/templates/cloud/GenericExtensionAttributesTemplate.json +392 -0
  66. package/src/ops/templates/cloud/managed.json +4119 -0
  67. package/src/ops/utils/Console.js +434 -0
  68. package/src/ops/utils/DataProtection.js +92 -0
  69. package/src/ops/utils/DataProtection.test.js +28 -0
  70. package/src/ops/utils/ExportImportUtils.js +146 -0
  71. package/src/ops/utils/ExportImportUtils.test.js +119 -0
  72. package/src/ops/utils/OpsUtils.js +76 -0
  73. package/src/ops/utils/Wordwrap.js +11 -0
  74. package/src/storage/SessionStorage.js +45 -0
  75. package/src/storage/StaticStorage.js +15 -0
  76. package/test/e2e/journey/baseline/ForgottenUsername.journey.json +216 -0
  77. package/test/e2e/journey/baseline/Login.journey.json +205 -0
  78. package/test/e2e/journey/baseline/PasswordGrant.journey.json +139 -0
  79. package/test/e2e/journey/baseline/ProgressiveProfile.journey.json +198 -0
  80. package/test/e2e/journey/baseline/Registration.journey.json +249 -0
  81. package/test/e2e/journey/baseline/ResetPassword.journey.json +268 -0
  82. package/test/e2e/journey/baseline/UpdatePassword.journey.json +323 -0
  83. package/test/e2e/journey/baseline/allAlphaJourneys.journeys.json +1520 -0
  84. package/test/e2e/journey/delete/ForgottenUsername.journey.json +216 -0
  85. package/test/e2e/journey/delete/Login.journey.json +205 -0
  86. package/test/e2e/journey/delete/PasswordGrant.journey.json +139 -0
  87. package/test/e2e/journey/delete/ProgressiveProfile.journey.json +198 -0
  88. package/test/e2e/journey/delete/Registration.journey.json +249 -0
  89. package/test/e2e/journey/delete/ResetPassword.journey.json +268 -0
  90. package/test/e2e/journey/delete/UpdatePassword.journey.json +323 -0
  91. package/test/e2e/journey/delete/deleteMe.journey.json +230 -0
  92. package/test/e2e/journey/list/Disabled.journey.json +43 -0
  93. package/test/e2e/journey/list/ForgottenUsername.journey.json +216 -0
  94. package/test/e2e/journey/list/Login.journey.json +205 -0
  95. package/test/e2e/journey/list/PasswordGrant.journey.json +139 -0
  96. package/test/e2e/journey/list/ProgressiveProfile.journey.json +198 -0
  97. package/test/e2e/journey/list/Registration.journey.json +249 -0
  98. package/test/e2e/journey/list/ResetPassword.journey.json +268 -0
  99. package/test/e2e/journey/list/UpdatePassword.journey.json +323 -0
  100. package/test/e2e/setup.js +107 -0
  101. package/test/e2e/theme/baseline/Contrast.theme.json +95 -0
  102. package/test/e2e/theme/baseline/Highlander.theme.json +95 -0
  103. package/test/e2e/theme/baseline/Robroy.theme.json +95 -0
  104. package/test/e2e/theme/baseline/Starter-Theme.theme.json +94 -0
  105. package/test/e2e/theme/baseline/Zardoz.theme.json +95 -0
  106. package/test/e2e/theme/import/Contrast.theme.json +95 -0
  107. package/test/e2e/theme/import/Highlander.theme.json +95 -0
  108. package/test/e2e/theme/import/Robroy.theme.json +95 -0
  109. package/test/e2e/theme/import/Starter-Theme.theme.json +94 -0
  110. package/test/e2e/theme/import/Zardoz.default.theme.json +95 -0
  111. package/test/fs_tmp/.gitkeep +2 -0
  112. package/test/global/setup.js +65 -0
@@ -0,0 +1,139 @@
1
+ {
2
+ "meta": {
3
+ "origin": "https://openam-frodo-dev.forgeblocks.com/am",
4
+ "exportedBy": "volker.scheuber@forgerock.com",
5
+ "exportDate": "2022-06-20T17:54:09.244Z",
6
+ "exportTool": "frodo",
7
+ "exportToolVersion": "v0.6.1 [v18.2.0]"
8
+ },
9
+ "innerNodes": {
10
+ "59952413-9bc2-47e5-a9b2-b04c1d729e24": {
11
+ "_id": "59952413-9bc2-47e5-a9b2-b04c1d729e24",
12
+ "_rev": "2095457991",
13
+ "_type": {
14
+ "_id": "UsernameCollectorNode",
15
+ "name": "Username Collector",
16
+ "collection": true
17
+ },
18
+ "_outcomes": [
19
+ {
20
+ "id": "outcome",
21
+ "displayName": "Outcome"
22
+ }
23
+ ]
24
+ },
25
+ "8c217417-11dd-4a0f-a9e4-59c2390085be": {
26
+ "_id": "8c217417-11dd-4a0f-a9e4-59c2390085be",
27
+ "_rev": "425124739",
28
+ "_type": {
29
+ "_id": "PasswordCollectorNode",
30
+ "name": "Password Collector",
31
+ "collection": true
32
+ },
33
+ "_outcomes": [
34
+ {
35
+ "id": "outcome",
36
+ "displayName": "Outcome"
37
+ }
38
+ ]
39
+ }
40
+ },
41
+ "nodes": {
42
+ "6b9a715d-ea23-4eae-9a59-69797c147157": {
43
+ "_id": "6b9a715d-ea23-4eae-9a59-69797c147157",
44
+ "_rev": "-1023377049",
45
+ "nodes": [
46
+ {
47
+ "_id": "59952413-9bc2-47e5-a9b2-b04c1d729e24",
48
+ "nodeType": "UsernameCollectorNode",
49
+ "displayName": "Username Collector"
50
+ },
51
+ {
52
+ "_id": "8c217417-11dd-4a0f-a9e4-59c2390085be",
53
+ "nodeType": "PasswordCollectorNode",
54
+ "displayName": "Password Collector"
55
+ }
56
+ ],
57
+ "pageDescription": {},
58
+ "pageHeader": {},
59
+ "_type": {
60
+ "_id": "PageNode",
61
+ "name": "Page Node",
62
+ "collection": true
63
+ },
64
+ "_outcomes": [
65
+ {
66
+ "id": "outcome",
67
+ "displayName": "Outcome"
68
+ }
69
+ ]
70
+ },
71
+ "e2988546-a459-4c9a-b0e2-fa65ae136b34": {
72
+ "_id": "e2988546-a459-4c9a-b0e2-fa65ae136b34",
73
+ "_rev": "1835919004",
74
+ "_type": {
75
+ "_id": "DataStoreDecisionNode",
76
+ "name": "Data Store Decision",
77
+ "collection": true
78
+ },
79
+ "_outcomes": [
80
+ {
81
+ "id": "true",
82
+ "displayName": "True"
83
+ },
84
+ {
85
+ "id": "false",
86
+ "displayName": "False"
87
+ }
88
+ ]
89
+ }
90
+ },
91
+ "scripts": {},
92
+ "emailTemplates": {},
93
+ "socialIdentityProviders": {},
94
+ "themes": [],
95
+ "saml2Entities": {},
96
+ "circlesOfTrust": {},
97
+ "tree": {
98
+ "_id": "PasswordGrant",
99
+ "_rev": "732382459",
100
+ "identityResource": "managed/alpha_user",
101
+ "uiConfig": {},
102
+ "entryNodeId": "6b9a715d-ea23-4eae-9a59-69797c147157",
103
+ "nodes": {
104
+ "6b9a715d-ea23-4eae-9a59-69797c147157": {
105
+ "connections": {
106
+ "outcome": "e2988546-a459-4c9a-b0e2-fa65ae136b34"
107
+ },
108
+ "displayName": "Page Node",
109
+ "nodeType": "PageNode",
110
+ "x": 134,
111
+ "y": 77
112
+ },
113
+ "e2988546-a459-4c9a-b0e2-fa65ae136b34": {
114
+ "connections": {
115
+ "false": "e301438c-0bd0-429c-ab0c-66126501069a",
116
+ "true": "70e691a5-1e33-4ac3-a356-e7b6d60d92e0"
117
+ },
118
+ "displayName": "Data Store Decision",
119
+ "nodeType": "DataStoreDecisionNode",
120
+ "x": 311,
121
+ "y": 240
122
+ }
123
+ },
124
+ "staticNodes": {
125
+ "70e691a5-1e33-4ac3-a356-e7b6d60d92e0": {
126
+ "x": 459,
127
+ "y": 20
128
+ },
129
+ "e301438c-0bd0-429c-ab0c-66126501069a": {
130
+ "x": 524,
131
+ "y": 165
132
+ },
133
+ "startNode": {
134
+ "x": 50,
135
+ "y": 25
136
+ }
137
+ }
138
+ }
139
+ }
@@ -0,0 +1,198 @@
1
+ {
2
+ "meta": {
3
+ "origin": "https://openam-frodo-dev.forgeblocks.com/am",
4
+ "exportedBy": "volker.scheuber@forgerock.com",
5
+ "exportDate": "2022-06-20T17:54:09.682Z",
6
+ "exportTool": "frodo",
7
+ "exportToolVersion": "v0.6.1 [v18.2.0]"
8
+ },
9
+ "innerNodes": {
10
+ "0a042e10-b22e-4e02-86c4-65e26e775f7a": {
11
+ "_id": "0a042e10-b22e-4e02-86c4-65e26e775f7a",
12
+ "_rev": "-1210529544",
13
+ "attributesToCollect": [
14
+ "preferences/updates",
15
+ "preferences/marketing"
16
+ ],
17
+ "identityAttribute": "userName",
18
+ "validateInputs": false,
19
+ "required": false,
20
+ "_type": {
21
+ "_id": "AttributeCollectorNode",
22
+ "name": "Attribute Collector",
23
+ "collection": true
24
+ },
25
+ "_outcomes": [
26
+ {
27
+ "id": "outcome",
28
+ "displayName": "Outcome"
29
+ }
30
+ ]
31
+ }
32
+ },
33
+ "nodes": {
34
+ "423a959a-a1b9-498a-b0f7-596b6b6e775a": {
35
+ "_id": "423a959a-a1b9-498a-b0f7-596b6b6e775a",
36
+ "_rev": "1288219125",
37
+ "identityResource": "managed/alpha_user",
38
+ "patchAsObject": false,
39
+ "ignoredFields": [],
40
+ "identityAttribute": "userName",
41
+ "_type": {
42
+ "_id": "PatchObjectNode",
43
+ "name": "Patch Object",
44
+ "collection": true
45
+ },
46
+ "_outcomes": [
47
+ {
48
+ "id": "PATCHED",
49
+ "displayName": "Patched"
50
+ },
51
+ {
52
+ "id": "FAILURE",
53
+ "displayName": "Failed"
54
+ }
55
+ ]
56
+ },
57
+ "8afdaec3-275e-4301-bb53-34f03e6a4b29": {
58
+ "_id": "8afdaec3-275e-4301-bb53-34f03e6a4b29",
59
+ "_rev": "-1679047423",
60
+ "interval": "AT",
61
+ "identityAttribute": "userName",
62
+ "amount": 3,
63
+ "_type": {
64
+ "_id": "LoginCountDecisionNode",
65
+ "name": "Login Count Decision",
66
+ "collection": true
67
+ },
68
+ "_outcomes": [
69
+ {
70
+ "id": "true",
71
+ "displayName": "True"
72
+ },
73
+ {
74
+ "id": "false",
75
+ "displayName": "False"
76
+ }
77
+ ]
78
+ },
79
+ "a1f45b44-5bf7-4c57-aa3f-75c619c7db8e": {
80
+ "_id": "a1f45b44-5bf7-4c57-aa3f-75c619c7db8e",
81
+ "_rev": "-1852493841",
82
+ "identityAttribute": "userName",
83
+ "queryFilter": "!(/preferences pr) or /preferences/marketing eq false or /preferences/updates eq false",
84
+ "_type": {
85
+ "_id": "QueryFilterDecisionNode",
86
+ "name": "Query Filter Decision",
87
+ "collection": true
88
+ },
89
+ "_outcomes": [
90
+ {
91
+ "id": "true",
92
+ "displayName": "True"
93
+ },
94
+ {
95
+ "id": "false",
96
+ "displayName": "False"
97
+ }
98
+ ]
99
+ },
100
+ "a5aecad8-854a-4ed5-b719-ff6c90e858c0": {
101
+ "_id": "a5aecad8-854a-4ed5-b719-ff6c90e858c0",
102
+ "_rev": "380010937",
103
+ "nodes": [
104
+ {
105
+ "_id": "0a042e10-b22e-4e02-86c4-65e26e775f7a",
106
+ "nodeType": "AttributeCollectorNode",
107
+ "displayName": "Attribute Collector"
108
+ }
109
+ ],
110
+ "pageDescription": {},
111
+ "pageHeader": {
112
+ "en": "Please select your preferences"
113
+ },
114
+ "_type": {
115
+ "_id": "PageNode",
116
+ "name": "Page Node",
117
+ "collection": true
118
+ },
119
+ "_outcomes": [
120
+ {
121
+ "id": "outcome",
122
+ "displayName": "Outcome"
123
+ }
124
+ ]
125
+ }
126
+ },
127
+ "scripts": {},
128
+ "emailTemplates": {},
129
+ "socialIdentityProviders": {},
130
+ "themes": [],
131
+ "saml2Entities": {},
132
+ "circlesOfTrust": {},
133
+ "tree": {
134
+ "_id": "ProgressiveProfile",
135
+ "_rev": "1342496803",
136
+ "identityResource": "managed/alpha_user",
137
+ "uiConfig": {
138
+ "categories": "[\"Progressive Profile\"]"
139
+ },
140
+ "entryNodeId": "8afdaec3-275e-4301-bb53-34f03e6a4b29",
141
+ "nodes": {
142
+ "423a959a-a1b9-498a-b0f7-596b6b6e775a": {
143
+ "connections": {
144
+ "FAILURE": "e301438c-0bd0-429c-ab0c-66126501069a",
145
+ "PATCHED": "70e691a5-1e33-4ac3-a356-e7b6d60d92e0"
146
+ },
147
+ "displayName": "Patch Object",
148
+ "nodeType": "PatchObjectNode",
149
+ "x": 766,
150
+ "y": 36
151
+ },
152
+ "8afdaec3-275e-4301-bb53-34f03e6a4b29": {
153
+ "connections": {
154
+ "false": "70e691a5-1e33-4ac3-a356-e7b6d60d92e0",
155
+ "true": "a1f45b44-5bf7-4c57-aa3f-75c619c7db8e"
156
+ },
157
+ "displayName": "Login Count Decision",
158
+ "nodeType": "LoginCountDecisionNode",
159
+ "x": 152,
160
+ "y": 36
161
+ },
162
+ "a1f45b44-5bf7-4c57-aa3f-75c619c7db8e": {
163
+ "connections": {
164
+ "false": "70e691a5-1e33-4ac3-a356-e7b6d60d92e0",
165
+ "true": "a5aecad8-854a-4ed5-b719-ff6c90e858c0"
166
+ },
167
+ "displayName": "Query Filter Decision",
168
+ "nodeType": "QueryFilterDecisionNode",
169
+ "x": 357,
170
+ "y": 36
171
+ },
172
+ "a5aecad8-854a-4ed5-b719-ff6c90e858c0": {
173
+ "connections": {
174
+ "outcome": "423a959a-a1b9-498a-b0f7-596b6b6e775a"
175
+ },
176
+ "displayName": "Page Node",
177
+ "nodeType": "PageNode",
178
+ "x": 555,
179
+ "y": 20
180
+ }
181
+ },
182
+ "description": "Prompt for missing preferences on 3rd login",
183
+ "staticNodes": {
184
+ "70e691a5-1e33-4ac3-a356-e7b6d60d92e0": {
185
+ "x": 802,
186
+ "y": 312
187
+ },
188
+ "e301438c-0bd0-429c-ab0c-66126501069a": {
189
+ "x": 919,
190
+ "y": 171
191
+ },
192
+ "startNode": {
193
+ "x": 50,
194
+ "y": 58.5
195
+ }
196
+ }
197
+ }
198
+ }
@@ -0,0 +1,249 @@
1
+ {
2
+ "meta": {
3
+ "origin": "https://openam-frodo-dev.forgeblocks.com/am",
4
+ "exportedBy": "volker.scheuber@forgerock.com",
5
+ "exportDate": "2022-06-20T17:54:08.859Z",
6
+ "exportTool": "frodo",
7
+ "exportToolVersion": "v0.6.1 [v18.2.0]"
8
+ },
9
+ "innerNodes": {
10
+ "7fcaf48e-a754-4959-858b-05b2933b825f": {
11
+ "_id": "7fcaf48e-a754-4959-858b-05b2933b825f",
12
+ "_rev": "1966656034",
13
+ "usernameAttribute": "userName",
14
+ "validateInput": true,
15
+ "_type": {
16
+ "_id": "ValidatedUsernameNode",
17
+ "name": "Platform Username",
18
+ "collection": true
19
+ },
20
+ "_outcomes": [
21
+ {
22
+ "id": "outcome",
23
+ "displayName": "Outcome"
24
+ }
25
+ ]
26
+ },
27
+ "d3ce2036-1523-4ce8-b1a2-895a2a036667": {
28
+ "_id": "d3ce2036-1523-4ce8-b1a2-895a2a036667",
29
+ "_rev": "-1158802257",
30
+ "attributesToCollect": [
31
+ "givenName",
32
+ "sn",
33
+ "mail",
34
+ "preferences/marketing",
35
+ "preferences/updates"
36
+ ],
37
+ "identityAttribute": "userName",
38
+ "validateInputs": true,
39
+ "required": true,
40
+ "_type": {
41
+ "_id": "AttributeCollectorNode",
42
+ "name": "Attribute Collector",
43
+ "collection": true
44
+ },
45
+ "_outcomes": [
46
+ {
47
+ "id": "outcome",
48
+ "displayName": "Outcome"
49
+ }
50
+ ]
51
+ },
52
+ "3d8709a1-f09f-4d1f-8094-2850e472c1db": {
53
+ "_id": "3d8709a1-f09f-4d1f-8094-2850e472c1db",
54
+ "_rev": "-1470058997",
55
+ "validateInput": true,
56
+ "passwordAttribute": "password",
57
+ "_type": {
58
+ "_id": "ValidatedPasswordNode",
59
+ "name": "Platform Password",
60
+ "collection": true
61
+ },
62
+ "_outcomes": [
63
+ {
64
+ "id": "outcome",
65
+ "displayName": "Outcome"
66
+ }
67
+ ]
68
+ },
69
+ "120c69d3-90b4-4ad4-b7af-380e8b119340": {
70
+ "_id": "120c69d3-90b4-4ad4-b7af-380e8b119340",
71
+ "_rev": "-1607497240",
72
+ "message": {
73
+ "en": "Select a security question"
74
+ },
75
+ "_type": {
76
+ "_id": "KbaCreateNode",
77
+ "name": "KBA Definition",
78
+ "collection": true
79
+ },
80
+ "_outcomes": [
81
+ {
82
+ "id": "outcome",
83
+ "displayName": "Outcome"
84
+ }
85
+ ]
86
+ },
87
+ "b4a0e915-c15d-4b83-9c9d-18347d645976": {
88
+ "_id": "b4a0e915-c15d-4b83-9c9d-18347d645976",
89
+ "_rev": "1508860909",
90
+ "_type": {
91
+ "_id": "AcceptTermsAndConditionsNode",
92
+ "name": "Accept Terms and Conditions",
93
+ "collection": true
94
+ },
95
+ "_outcomes": [
96
+ {
97
+ "id": "outcome",
98
+ "displayName": "Outcome"
99
+ }
100
+ ]
101
+ }
102
+ },
103
+ "nodes": {
104
+ "0c091c49-f3af-48fb-ac6f-07fba0499dd6": {
105
+ "_id": "0c091c49-f3af-48fb-ac6f-07fba0499dd6",
106
+ "_rev": "762531723",
107
+ "nodes": [
108
+ {
109
+ "_id": "7fcaf48e-a754-4959-858b-05b2933b825f",
110
+ "nodeType": "ValidatedUsernameNode",
111
+ "displayName": "Platform Username"
112
+ },
113
+ {
114
+ "_id": "d3ce2036-1523-4ce8-b1a2-895a2a036667",
115
+ "nodeType": "AttributeCollectorNode",
116
+ "displayName": "Attribute Collector"
117
+ },
118
+ {
119
+ "_id": "3d8709a1-f09f-4d1f-8094-2850e472c1db",
120
+ "nodeType": "ValidatedPasswordNode",
121
+ "displayName": "Platform Password"
122
+ },
123
+ {
124
+ "_id": "120c69d3-90b4-4ad4-b7af-380e8b119340",
125
+ "nodeType": "KbaCreateNode",
126
+ "displayName": "KBA Definition"
127
+ },
128
+ {
129
+ "_id": "b4a0e915-c15d-4b83-9c9d-18347d645976",
130
+ "nodeType": "AcceptTermsAndConditionsNode",
131
+ "displayName": "Accept Terms and Conditions"
132
+ }
133
+ ],
134
+ "pageDescription": {
135
+ "en": "Signing up is fast and easy.<br>Already have an account? <a href='#/service/Login'>Sign In</a>"
136
+ },
137
+ "pageHeader": {
138
+ "en": "Sign Up"
139
+ },
140
+ "_type": {
141
+ "_id": "PageNode",
142
+ "name": "Page Node",
143
+ "collection": true
144
+ },
145
+ "_outcomes": [
146
+ {
147
+ "id": "outcome",
148
+ "displayName": "Outcome"
149
+ }
150
+ ]
151
+ },
152
+ "97a15eb2-a015-4b6d-81a0-be78c3aa1a3b": {
153
+ "_id": "97a15eb2-a015-4b6d-81a0-be78c3aa1a3b",
154
+ "_rev": "-841385771",
155
+ "identityAttribute": "userName",
156
+ "_type": {
157
+ "_id": "IncrementLoginCountNode",
158
+ "name": "Increment Login Count",
159
+ "collection": true
160
+ },
161
+ "_outcomes": [
162
+ {
163
+ "id": "outcome",
164
+ "displayName": "Outcome"
165
+ }
166
+ ]
167
+ },
168
+ "ad5dcbb3-7335-49b7-b3e7-7d850bb88237": {
169
+ "_id": "ad5dcbb3-7335-49b7-b3e7-7d850bb88237",
170
+ "_rev": "-612221945",
171
+ "identityResource": "managed/alpha_user",
172
+ "_type": {
173
+ "_id": "CreateObjectNode",
174
+ "name": "Create Object",
175
+ "collection": true
176
+ },
177
+ "_outcomes": [
178
+ {
179
+ "id": "CREATED",
180
+ "displayName": "Created"
181
+ },
182
+ {
183
+ "id": "FAILURE",
184
+ "displayName": "Failed"
185
+ }
186
+ ]
187
+ }
188
+ },
189
+ "scripts": {},
190
+ "emailTemplates": {},
191
+ "socialIdentityProviders": {},
192
+ "themes": [],
193
+ "saml2Entities": {},
194
+ "circlesOfTrust": {},
195
+ "tree": {
196
+ "_id": "Registration",
197
+ "_rev": "1897687361",
198
+ "identityResource": "managed/alpha_user",
199
+ "uiConfig": {
200
+ "categories": "[\"Registration\"]"
201
+ },
202
+ "entryNodeId": "0c091c49-f3af-48fb-ac6f-07fba0499dd6",
203
+ "nodes": {
204
+ "0c091c49-f3af-48fb-ac6f-07fba0499dd6": {
205
+ "connections": {
206
+ "outcome": "ad5dcbb3-7335-49b7-b3e7-7d850bb88237"
207
+ },
208
+ "displayName": "Page Node",
209
+ "nodeType": "PageNode",
210
+ "x": 261,
211
+ "y": 168
212
+ },
213
+ "97a15eb2-a015-4b6d-81a0-be78c3aa1a3b": {
214
+ "connections": {
215
+ "outcome": "70e691a5-1e33-4ac3-a356-e7b6d60d92e0"
216
+ },
217
+ "displayName": "Increment Login Count",
218
+ "nodeType": "IncrementLoginCountNode",
219
+ "x": 681,
220
+ "y": 144
221
+ },
222
+ "ad5dcbb3-7335-49b7-b3e7-7d850bb88237": {
223
+ "connections": {
224
+ "CREATED": "97a15eb2-a015-4b6d-81a0-be78c3aa1a3b",
225
+ "FAILURE": "e301438c-0bd0-429c-ab0c-66126501069a"
226
+ },
227
+ "displayName": "Create Object",
228
+ "nodeType": "CreateObjectNode",
229
+ "x": 537,
230
+ "y": 206
231
+ }
232
+ },
233
+ "description": "Platform Registration Tree",
234
+ "staticNodes": {
235
+ "70e691a5-1e33-4ac3-a356-e7b6d60d92e0": {
236
+ "x": 905,
237
+ "y": 171
238
+ },
239
+ "e301438c-0bd0-429c-ab0c-66126501069a": {
240
+ "x": 741,
241
+ "y": 293
242
+ },
243
+ "startNode": {
244
+ "x": 50,
245
+ "y": 25
246
+ }
247
+ }
248
+ }
249
+ }