@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,1520 @@
1
+ {
2
+ "meta": {
3
+ "origin": "https://openam-frodo-dev.forgeblocks.com/am",
4
+ "exportedBy": "volker.scheuber@forgerock.com",
5
+ "exportDate": "2022-06-21T01:33:32.263Z",
6
+ "exportTool": "frodo",
7
+ "exportToolVersion": "v0.6.1 [v18.2.0]"
8
+ },
9
+ "trees": {
10
+ "ResetPassword": {
11
+ "innerNodes": {
12
+ "276afa7c-a680-4cf4-a5f6-d6c78191f5c9": {
13
+ "_id": "276afa7c-a680-4cf4-a5f6-d6c78191f5c9",
14
+ "_rev": "-1256358519",
15
+ "attributesToCollect": [
16
+ "mail"
17
+ ],
18
+ "identityAttribute": "mail",
19
+ "validateInputs": false,
20
+ "required": true,
21
+ "_type": {
22
+ "_id": "AttributeCollectorNode",
23
+ "name": "Attribute Collector",
24
+ "collection": true
25
+ },
26
+ "_outcomes": [
27
+ {
28
+ "id": "outcome",
29
+ "displayName": "Outcome"
30
+ }
31
+ ]
32
+ },
33
+ "009c19c8-9572-47bb-adb2-1f092c559a43": {
34
+ "_id": "009c19c8-9572-47bb-adb2-1f092c559a43",
35
+ "_rev": "519412822",
36
+ "validateInput": true,
37
+ "passwordAttribute": "password",
38
+ "_type": {
39
+ "_id": "ValidatedPasswordNode",
40
+ "name": "Platform Password",
41
+ "collection": true
42
+ },
43
+ "_outcomes": [
44
+ {
45
+ "id": "outcome",
46
+ "displayName": "Outcome"
47
+ }
48
+ ]
49
+ }
50
+ },
51
+ "nodes": {
52
+ "06c97be5-7fdd-4739-aea1-ecc7fe082865": {
53
+ "_id": "06c97be5-7fdd-4739-aea1-ecc7fe082865",
54
+ "_rev": "-1138066714",
55
+ "emailSuspendMessage": {
56
+ "en": "An email has been sent to the address you entered. Click the link in that email to proceed."
57
+ },
58
+ "emailTemplateName": "resetPassword",
59
+ "identityAttribute": "mail",
60
+ "emailAttribute": "mail",
61
+ "objectLookup": true,
62
+ "_type": {
63
+ "_id": "EmailSuspendNode",
64
+ "name": "Email Suspend Node",
65
+ "collection": true
66
+ },
67
+ "_outcomes": [
68
+ {
69
+ "id": "outcome",
70
+ "displayName": "Outcome"
71
+ }
72
+ ]
73
+ },
74
+ "21b8ddf3-0203-4ae1-ab05-51cf3a3a707a": {
75
+ "_id": "21b8ddf3-0203-4ae1-ab05-51cf3a3a707a",
76
+ "_rev": "402776485",
77
+ "identityAttribute": "mail",
78
+ "identifier": "userName",
79
+ "_type": {
80
+ "_id": "IdentifyExistingUserNode",
81
+ "name": "Identify Existing User",
82
+ "collection": true
83
+ },
84
+ "_outcomes": [
85
+ {
86
+ "id": "true",
87
+ "displayName": "True"
88
+ },
89
+ {
90
+ "id": "false",
91
+ "displayName": "False"
92
+ }
93
+ ]
94
+ },
95
+ "989f0bf8-a328-4217-b82b-5275d79ca8bd": {
96
+ "_id": "989f0bf8-a328-4217-b82b-5275d79ca8bd",
97
+ "_rev": "555551070",
98
+ "identityResource": "managed/alpha_user",
99
+ "patchAsObject": false,
100
+ "ignoredFields": [],
101
+ "identityAttribute": "mail",
102
+ "_type": {
103
+ "_id": "PatchObjectNode",
104
+ "name": "Patch Object",
105
+ "collection": true
106
+ },
107
+ "_outcomes": [
108
+ {
109
+ "id": "PATCHED",
110
+ "displayName": "Patched"
111
+ },
112
+ {
113
+ "id": "FAILURE",
114
+ "displayName": "Failed"
115
+ }
116
+ ]
117
+ },
118
+ "cc3e1ed2-25f1-47bf-83c6-17084f8b2b2b": {
119
+ "_id": "cc3e1ed2-25f1-47bf-83c6-17084f8b2b2b",
120
+ "_rev": "86486605",
121
+ "nodes": [
122
+ {
123
+ "_id": "276afa7c-a680-4cf4-a5f6-d6c78191f5c9",
124
+ "nodeType": "AttributeCollectorNode",
125
+ "displayName": "Attribute Collector"
126
+ }
127
+ ],
128
+ "pageDescription": {
129
+ "en": "Enter your email address or <a href=\"#/service/Login\">Sign in</a>"
130
+ },
131
+ "pageHeader": {
132
+ "en": "Reset Password"
133
+ },
134
+ "_type": {
135
+ "_id": "PageNode",
136
+ "name": "Page Node",
137
+ "collection": true
138
+ },
139
+ "_outcomes": [
140
+ {
141
+ "id": "outcome",
142
+ "displayName": "Outcome"
143
+ }
144
+ ]
145
+ },
146
+ "e4c752f9-c625-48c9-9644-a58802fa9e9c": {
147
+ "_id": "e4c752f9-c625-48c9-9644-a58802fa9e9c",
148
+ "_rev": "1593283676",
149
+ "nodes": [
150
+ {
151
+ "_id": "009c19c8-9572-47bb-adb2-1f092c559a43",
152
+ "nodeType": "ValidatedPasswordNode",
153
+ "displayName": "Platform Password"
154
+ }
155
+ ],
156
+ "pageDescription": {
157
+ "en": "Change password"
158
+ },
159
+ "pageHeader": {
160
+ "en": "Reset Password"
161
+ },
162
+ "_type": {
163
+ "_id": "PageNode",
164
+ "name": "Page Node",
165
+ "collection": true
166
+ },
167
+ "_outcomes": [
168
+ {
169
+ "id": "outcome",
170
+ "displayName": "Outcome"
171
+ }
172
+ ]
173
+ }
174
+ },
175
+ "scripts": {},
176
+ "emailTemplates": {
177
+ "resetPassword": {
178
+ "_id": "emailTemplate/resetPassword",
179
+ "emailTemplate/resetPassword": ""
180
+ }
181
+ },
182
+ "socialIdentityProviders": {},
183
+ "themes": [],
184
+ "saml2Entities": {},
185
+ "circlesOfTrust": {},
186
+ "tree": {
187
+ "_id": "ResetPassword",
188
+ "_rev": "328000516",
189
+ "identityResource": "managed/alpha_user",
190
+ "uiConfig": {
191
+ "categories": "[\"Password Reset\"]"
192
+ },
193
+ "entryNodeId": "cc3e1ed2-25f1-47bf-83c6-17084f8b2b2b",
194
+ "nodes": {
195
+ "06c97be5-7fdd-4739-aea1-ecc7fe082865": {
196
+ "connections": {
197
+ "outcome": "e4c752f9-c625-48c9-9644-a58802fa9e9c"
198
+ },
199
+ "displayName": "Email Suspend Node",
200
+ "nodeType": "EmailSuspendNode",
201
+ "x": 453,
202
+ "y": 66
203
+ },
204
+ "21b8ddf3-0203-4ae1-ab05-51cf3a3a707a": {
205
+ "connections": {
206
+ "false": "06c97be5-7fdd-4739-aea1-ecc7fe082865",
207
+ "true": "06c97be5-7fdd-4739-aea1-ecc7fe082865"
208
+ },
209
+ "displayName": "Identify Existing User",
210
+ "nodeType": "IdentifyExistingUserNode",
211
+ "x": 271,
212
+ "y": 21
213
+ },
214
+ "989f0bf8-a328-4217-b82b-5275d79ca8bd": {
215
+ "connections": {
216
+ "FAILURE": "e301438c-0bd0-429c-ab0c-66126501069a",
217
+ "PATCHED": "70e691a5-1e33-4ac3-a356-e7b6d60d92e0"
218
+ },
219
+ "displayName": "Patch Object",
220
+ "nodeType": "PatchObjectNode",
221
+ "x": 819,
222
+ "y": 61
223
+ },
224
+ "cc3e1ed2-25f1-47bf-83c6-17084f8b2b2b": {
225
+ "connections": {
226
+ "outcome": "21b8ddf3-0203-4ae1-ab05-51cf3a3a707a"
227
+ },
228
+ "displayName": "Page Node",
229
+ "nodeType": "PageNode",
230
+ "x": 103,
231
+ "y": 50
232
+ },
233
+ "e4c752f9-c625-48c9-9644-a58802fa9e9c": {
234
+ "connections": {
235
+ "outcome": "989f0bf8-a328-4217-b82b-5275d79ca8bd"
236
+ },
237
+ "displayName": "Page Node",
238
+ "nodeType": "PageNode",
239
+ "x": 643,
240
+ "y": 50
241
+ }
242
+ },
243
+ "description": "Reset Password Tree",
244
+ "staticNodes": {
245
+ "70e691a5-1e33-4ac3-a356-e7b6d60d92e0": {
246
+ "x": 970,
247
+ "y": 79
248
+ },
249
+ "e301438c-0bd0-429c-ab0c-66126501069a": {
250
+ "x": 981,
251
+ "y": 147
252
+ },
253
+ "startNode": {
254
+ "x": 25,
255
+ "y": 25
256
+ }
257
+ }
258
+ }
259
+ },
260
+ "Registration": {
261
+ "innerNodes": {
262
+ "7fcaf48e-a754-4959-858b-05b2933b825f": {
263
+ "_id": "7fcaf48e-a754-4959-858b-05b2933b825f",
264
+ "_rev": "1966656034",
265
+ "usernameAttribute": "userName",
266
+ "validateInput": true,
267
+ "_type": {
268
+ "_id": "ValidatedUsernameNode",
269
+ "name": "Platform Username",
270
+ "collection": true
271
+ },
272
+ "_outcomes": [
273
+ {
274
+ "id": "outcome",
275
+ "displayName": "Outcome"
276
+ }
277
+ ]
278
+ },
279
+ "d3ce2036-1523-4ce8-b1a2-895a2a036667": {
280
+ "_id": "d3ce2036-1523-4ce8-b1a2-895a2a036667",
281
+ "_rev": "-1158802257",
282
+ "attributesToCollect": [
283
+ "givenName",
284
+ "sn",
285
+ "mail",
286
+ "preferences/marketing",
287
+ "preferences/updates"
288
+ ],
289
+ "identityAttribute": "userName",
290
+ "validateInputs": true,
291
+ "required": true,
292
+ "_type": {
293
+ "_id": "AttributeCollectorNode",
294
+ "name": "Attribute Collector",
295
+ "collection": true
296
+ },
297
+ "_outcomes": [
298
+ {
299
+ "id": "outcome",
300
+ "displayName": "Outcome"
301
+ }
302
+ ]
303
+ },
304
+ "3d8709a1-f09f-4d1f-8094-2850e472c1db": {
305
+ "_id": "3d8709a1-f09f-4d1f-8094-2850e472c1db",
306
+ "_rev": "-1470058997",
307
+ "validateInput": true,
308
+ "passwordAttribute": "password",
309
+ "_type": {
310
+ "_id": "ValidatedPasswordNode",
311
+ "name": "Platform Password",
312
+ "collection": true
313
+ },
314
+ "_outcomes": [
315
+ {
316
+ "id": "outcome",
317
+ "displayName": "Outcome"
318
+ }
319
+ ]
320
+ },
321
+ "120c69d3-90b4-4ad4-b7af-380e8b119340": {
322
+ "_id": "120c69d3-90b4-4ad4-b7af-380e8b119340",
323
+ "_rev": "-1607497240",
324
+ "message": {
325
+ "en": "Select a security question"
326
+ },
327
+ "_type": {
328
+ "_id": "KbaCreateNode",
329
+ "name": "KBA Definition",
330
+ "collection": true
331
+ },
332
+ "_outcomes": [
333
+ {
334
+ "id": "outcome",
335
+ "displayName": "Outcome"
336
+ }
337
+ ]
338
+ },
339
+ "b4a0e915-c15d-4b83-9c9d-18347d645976": {
340
+ "_id": "b4a0e915-c15d-4b83-9c9d-18347d645976",
341
+ "_rev": "1508860909",
342
+ "_type": {
343
+ "_id": "AcceptTermsAndConditionsNode",
344
+ "name": "Accept Terms and Conditions",
345
+ "collection": true
346
+ },
347
+ "_outcomes": [
348
+ {
349
+ "id": "outcome",
350
+ "displayName": "Outcome"
351
+ }
352
+ ]
353
+ }
354
+ },
355
+ "nodes": {
356
+ "0c091c49-f3af-48fb-ac6f-07fba0499dd6": {
357
+ "_id": "0c091c49-f3af-48fb-ac6f-07fba0499dd6",
358
+ "_rev": "762531723",
359
+ "nodes": [
360
+ {
361
+ "_id": "7fcaf48e-a754-4959-858b-05b2933b825f",
362
+ "nodeType": "ValidatedUsernameNode",
363
+ "displayName": "Platform Username"
364
+ },
365
+ {
366
+ "_id": "d3ce2036-1523-4ce8-b1a2-895a2a036667",
367
+ "nodeType": "AttributeCollectorNode",
368
+ "displayName": "Attribute Collector"
369
+ },
370
+ {
371
+ "_id": "3d8709a1-f09f-4d1f-8094-2850e472c1db",
372
+ "nodeType": "ValidatedPasswordNode",
373
+ "displayName": "Platform Password"
374
+ },
375
+ {
376
+ "_id": "120c69d3-90b4-4ad4-b7af-380e8b119340",
377
+ "nodeType": "KbaCreateNode",
378
+ "displayName": "KBA Definition"
379
+ },
380
+ {
381
+ "_id": "b4a0e915-c15d-4b83-9c9d-18347d645976",
382
+ "nodeType": "AcceptTermsAndConditionsNode",
383
+ "displayName": "Accept Terms and Conditions"
384
+ }
385
+ ],
386
+ "pageDescription": {
387
+ "en": "Signing up is fast and easy.<br>Already have an account? <a href='#/service/Login'>Sign In</a>"
388
+ },
389
+ "pageHeader": {
390
+ "en": "Sign Up"
391
+ },
392
+ "_type": {
393
+ "_id": "PageNode",
394
+ "name": "Page Node",
395
+ "collection": true
396
+ },
397
+ "_outcomes": [
398
+ {
399
+ "id": "outcome",
400
+ "displayName": "Outcome"
401
+ }
402
+ ]
403
+ },
404
+ "97a15eb2-a015-4b6d-81a0-be78c3aa1a3b": {
405
+ "_id": "97a15eb2-a015-4b6d-81a0-be78c3aa1a3b",
406
+ "_rev": "-841385771",
407
+ "identityAttribute": "userName",
408
+ "_type": {
409
+ "_id": "IncrementLoginCountNode",
410
+ "name": "Increment Login Count",
411
+ "collection": true
412
+ },
413
+ "_outcomes": [
414
+ {
415
+ "id": "outcome",
416
+ "displayName": "Outcome"
417
+ }
418
+ ]
419
+ },
420
+ "ad5dcbb3-7335-49b7-b3e7-7d850bb88237": {
421
+ "_id": "ad5dcbb3-7335-49b7-b3e7-7d850bb88237",
422
+ "_rev": "-612221945",
423
+ "identityResource": "managed/alpha_user",
424
+ "_type": {
425
+ "_id": "CreateObjectNode",
426
+ "name": "Create Object",
427
+ "collection": true
428
+ },
429
+ "_outcomes": [
430
+ {
431
+ "id": "CREATED",
432
+ "displayName": "Created"
433
+ },
434
+ {
435
+ "id": "FAILURE",
436
+ "displayName": "Failed"
437
+ }
438
+ ]
439
+ }
440
+ },
441
+ "scripts": {},
442
+ "emailTemplates": {},
443
+ "socialIdentityProviders": {},
444
+ "themes": [],
445
+ "saml2Entities": {},
446
+ "circlesOfTrust": {},
447
+ "tree": {
448
+ "_id": "Registration",
449
+ "_rev": "1897687361",
450
+ "identityResource": "managed/alpha_user",
451
+ "uiConfig": {
452
+ "categories": "[\"Registration\"]"
453
+ },
454
+ "entryNodeId": "0c091c49-f3af-48fb-ac6f-07fba0499dd6",
455
+ "nodes": {
456
+ "0c091c49-f3af-48fb-ac6f-07fba0499dd6": {
457
+ "connections": {
458
+ "outcome": "ad5dcbb3-7335-49b7-b3e7-7d850bb88237"
459
+ },
460
+ "displayName": "Page Node",
461
+ "nodeType": "PageNode",
462
+ "x": 261,
463
+ "y": 168
464
+ },
465
+ "97a15eb2-a015-4b6d-81a0-be78c3aa1a3b": {
466
+ "connections": {
467
+ "outcome": "70e691a5-1e33-4ac3-a356-e7b6d60d92e0"
468
+ },
469
+ "displayName": "Increment Login Count",
470
+ "nodeType": "IncrementLoginCountNode",
471
+ "x": 681,
472
+ "y": 144
473
+ },
474
+ "ad5dcbb3-7335-49b7-b3e7-7d850bb88237": {
475
+ "connections": {
476
+ "CREATED": "97a15eb2-a015-4b6d-81a0-be78c3aa1a3b",
477
+ "FAILURE": "e301438c-0bd0-429c-ab0c-66126501069a"
478
+ },
479
+ "displayName": "Create Object",
480
+ "nodeType": "CreateObjectNode",
481
+ "x": 537,
482
+ "y": 206
483
+ }
484
+ },
485
+ "description": "Platform Registration Tree",
486
+ "staticNodes": {
487
+ "70e691a5-1e33-4ac3-a356-e7b6d60d92e0": {
488
+ "x": 905,
489
+ "y": 171
490
+ },
491
+ "e301438c-0bd0-429c-ab0c-66126501069a": {
492
+ "x": 741,
493
+ "y": 293
494
+ },
495
+ "startNode": {
496
+ "x": 50,
497
+ "y": 25
498
+ }
499
+ }
500
+ }
501
+ },
502
+ "PasswordGrant": {
503
+ "innerNodes": {
504
+ "59952413-9bc2-47e5-a9b2-b04c1d729e24": {
505
+ "_id": "59952413-9bc2-47e5-a9b2-b04c1d729e24",
506
+ "_rev": "2095457991",
507
+ "_type": {
508
+ "_id": "UsernameCollectorNode",
509
+ "name": "Username Collector",
510
+ "collection": true
511
+ },
512
+ "_outcomes": [
513
+ {
514
+ "id": "outcome",
515
+ "displayName": "Outcome"
516
+ }
517
+ ]
518
+ },
519
+ "8c217417-11dd-4a0f-a9e4-59c2390085be": {
520
+ "_id": "8c217417-11dd-4a0f-a9e4-59c2390085be",
521
+ "_rev": "425124739",
522
+ "_type": {
523
+ "_id": "PasswordCollectorNode",
524
+ "name": "Password Collector",
525
+ "collection": true
526
+ },
527
+ "_outcomes": [
528
+ {
529
+ "id": "outcome",
530
+ "displayName": "Outcome"
531
+ }
532
+ ]
533
+ }
534
+ },
535
+ "nodes": {
536
+ "6b9a715d-ea23-4eae-9a59-69797c147157": {
537
+ "_id": "6b9a715d-ea23-4eae-9a59-69797c147157",
538
+ "_rev": "-1023377049",
539
+ "nodes": [
540
+ {
541
+ "_id": "59952413-9bc2-47e5-a9b2-b04c1d729e24",
542
+ "nodeType": "UsernameCollectorNode",
543
+ "displayName": "Username Collector"
544
+ },
545
+ {
546
+ "_id": "8c217417-11dd-4a0f-a9e4-59c2390085be",
547
+ "nodeType": "PasswordCollectorNode",
548
+ "displayName": "Password Collector"
549
+ }
550
+ ],
551
+ "pageDescription": {},
552
+ "pageHeader": {},
553
+ "_type": {
554
+ "_id": "PageNode",
555
+ "name": "Page Node",
556
+ "collection": true
557
+ },
558
+ "_outcomes": [
559
+ {
560
+ "id": "outcome",
561
+ "displayName": "Outcome"
562
+ }
563
+ ]
564
+ },
565
+ "e2988546-a459-4c9a-b0e2-fa65ae136b34": {
566
+ "_id": "e2988546-a459-4c9a-b0e2-fa65ae136b34",
567
+ "_rev": "1835919004",
568
+ "_type": {
569
+ "_id": "DataStoreDecisionNode",
570
+ "name": "Data Store Decision",
571
+ "collection": true
572
+ },
573
+ "_outcomes": [
574
+ {
575
+ "id": "true",
576
+ "displayName": "True"
577
+ },
578
+ {
579
+ "id": "false",
580
+ "displayName": "False"
581
+ }
582
+ ]
583
+ }
584
+ },
585
+ "scripts": {},
586
+ "emailTemplates": {},
587
+ "socialIdentityProviders": {},
588
+ "themes": [],
589
+ "saml2Entities": {},
590
+ "circlesOfTrust": {},
591
+ "tree": {
592
+ "_id": "PasswordGrant",
593
+ "_rev": "732382459",
594
+ "identityResource": "managed/alpha_user",
595
+ "uiConfig": {},
596
+ "entryNodeId": "6b9a715d-ea23-4eae-9a59-69797c147157",
597
+ "nodes": {
598
+ "6b9a715d-ea23-4eae-9a59-69797c147157": {
599
+ "connections": {
600
+ "outcome": "e2988546-a459-4c9a-b0e2-fa65ae136b34"
601
+ },
602
+ "displayName": "Page Node",
603
+ "nodeType": "PageNode",
604
+ "x": 134,
605
+ "y": 77
606
+ },
607
+ "e2988546-a459-4c9a-b0e2-fa65ae136b34": {
608
+ "connections": {
609
+ "false": "e301438c-0bd0-429c-ab0c-66126501069a",
610
+ "true": "70e691a5-1e33-4ac3-a356-e7b6d60d92e0"
611
+ },
612
+ "displayName": "Data Store Decision",
613
+ "nodeType": "DataStoreDecisionNode",
614
+ "x": 311,
615
+ "y": 240
616
+ }
617
+ },
618
+ "staticNodes": {
619
+ "70e691a5-1e33-4ac3-a356-e7b6d60d92e0": {
620
+ "x": 459,
621
+ "y": 20
622
+ },
623
+ "e301438c-0bd0-429c-ab0c-66126501069a": {
624
+ "x": 524,
625
+ "y": 165
626
+ },
627
+ "startNode": {
628
+ "x": 50,
629
+ "y": 25
630
+ }
631
+ }
632
+ }
633
+ },
634
+ "ProgressiveProfile": {
635
+ "innerNodes": {
636
+ "0a042e10-b22e-4e02-86c4-65e26e775f7a": {
637
+ "_id": "0a042e10-b22e-4e02-86c4-65e26e775f7a",
638
+ "_rev": "-1210529544",
639
+ "attributesToCollect": [
640
+ "preferences/updates",
641
+ "preferences/marketing"
642
+ ],
643
+ "identityAttribute": "userName",
644
+ "validateInputs": false,
645
+ "required": false,
646
+ "_type": {
647
+ "_id": "AttributeCollectorNode",
648
+ "name": "Attribute Collector",
649
+ "collection": true
650
+ },
651
+ "_outcomes": [
652
+ {
653
+ "id": "outcome",
654
+ "displayName": "Outcome"
655
+ }
656
+ ]
657
+ }
658
+ },
659
+ "nodes": {
660
+ "423a959a-a1b9-498a-b0f7-596b6b6e775a": {
661
+ "_id": "423a959a-a1b9-498a-b0f7-596b6b6e775a",
662
+ "_rev": "1288219125",
663
+ "identityResource": "managed/alpha_user",
664
+ "patchAsObject": false,
665
+ "ignoredFields": [],
666
+ "identityAttribute": "userName",
667
+ "_type": {
668
+ "_id": "PatchObjectNode",
669
+ "name": "Patch Object",
670
+ "collection": true
671
+ },
672
+ "_outcomes": [
673
+ {
674
+ "id": "PATCHED",
675
+ "displayName": "Patched"
676
+ },
677
+ {
678
+ "id": "FAILURE",
679
+ "displayName": "Failed"
680
+ }
681
+ ]
682
+ },
683
+ "8afdaec3-275e-4301-bb53-34f03e6a4b29": {
684
+ "_id": "8afdaec3-275e-4301-bb53-34f03e6a4b29",
685
+ "_rev": "-1679047423",
686
+ "interval": "AT",
687
+ "identityAttribute": "userName",
688
+ "amount": 3,
689
+ "_type": {
690
+ "_id": "LoginCountDecisionNode",
691
+ "name": "Login Count Decision",
692
+ "collection": true
693
+ },
694
+ "_outcomes": [
695
+ {
696
+ "id": "true",
697
+ "displayName": "True"
698
+ },
699
+ {
700
+ "id": "false",
701
+ "displayName": "False"
702
+ }
703
+ ]
704
+ },
705
+ "a1f45b44-5bf7-4c57-aa3f-75c619c7db8e": {
706
+ "_id": "a1f45b44-5bf7-4c57-aa3f-75c619c7db8e",
707
+ "_rev": "-1852493841",
708
+ "identityAttribute": "userName",
709
+ "queryFilter": "!(/preferences pr) or /preferences/marketing eq false or /preferences/updates eq false",
710
+ "_type": {
711
+ "_id": "QueryFilterDecisionNode",
712
+ "name": "Query Filter Decision",
713
+ "collection": true
714
+ },
715
+ "_outcomes": [
716
+ {
717
+ "id": "true",
718
+ "displayName": "True"
719
+ },
720
+ {
721
+ "id": "false",
722
+ "displayName": "False"
723
+ }
724
+ ]
725
+ },
726
+ "a5aecad8-854a-4ed5-b719-ff6c90e858c0": {
727
+ "_id": "a5aecad8-854a-4ed5-b719-ff6c90e858c0",
728
+ "_rev": "380010937",
729
+ "nodes": [
730
+ {
731
+ "_id": "0a042e10-b22e-4e02-86c4-65e26e775f7a",
732
+ "nodeType": "AttributeCollectorNode",
733
+ "displayName": "Attribute Collector"
734
+ }
735
+ ],
736
+ "pageDescription": {},
737
+ "pageHeader": {
738
+ "en": "Please select your preferences"
739
+ },
740
+ "_type": {
741
+ "_id": "PageNode",
742
+ "name": "Page Node",
743
+ "collection": true
744
+ },
745
+ "_outcomes": [
746
+ {
747
+ "id": "outcome",
748
+ "displayName": "Outcome"
749
+ }
750
+ ]
751
+ }
752
+ },
753
+ "scripts": {},
754
+ "emailTemplates": {},
755
+ "socialIdentityProviders": {},
756
+ "themes": [],
757
+ "saml2Entities": {},
758
+ "circlesOfTrust": {},
759
+ "tree": {
760
+ "_id": "ProgressiveProfile",
761
+ "_rev": "1342496803",
762
+ "identityResource": "managed/alpha_user",
763
+ "uiConfig": {
764
+ "categories": "[\"Progressive Profile\"]"
765
+ },
766
+ "entryNodeId": "8afdaec3-275e-4301-bb53-34f03e6a4b29",
767
+ "nodes": {
768
+ "423a959a-a1b9-498a-b0f7-596b6b6e775a": {
769
+ "connections": {
770
+ "FAILURE": "e301438c-0bd0-429c-ab0c-66126501069a",
771
+ "PATCHED": "70e691a5-1e33-4ac3-a356-e7b6d60d92e0"
772
+ },
773
+ "displayName": "Patch Object",
774
+ "nodeType": "PatchObjectNode",
775
+ "x": 766,
776
+ "y": 36
777
+ },
778
+ "8afdaec3-275e-4301-bb53-34f03e6a4b29": {
779
+ "connections": {
780
+ "false": "70e691a5-1e33-4ac3-a356-e7b6d60d92e0",
781
+ "true": "a1f45b44-5bf7-4c57-aa3f-75c619c7db8e"
782
+ },
783
+ "displayName": "Login Count Decision",
784
+ "nodeType": "LoginCountDecisionNode",
785
+ "x": 152,
786
+ "y": 36
787
+ },
788
+ "a1f45b44-5bf7-4c57-aa3f-75c619c7db8e": {
789
+ "connections": {
790
+ "false": "70e691a5-1e33-4ac3-a356-e7b6d60d92e0",
791
+ "true": "a5aecad8-854a-4ed5-b719-ff6c90e858c0"
792
+ },
793
+ "displayName": "Query Filter Decision",
794
+ "nodeType": "QueryFilterDecisionNode",
795
+ "x": 357,
796
+ "y": 36
797
+ },
798
+ "a5aecad8-854a-4ed5-b719-ff6c90e858c0": {
799
+ "connections": {
800
+ "outcome": "423a959a-a1b9-498a-b0f7-596b6b6e775a"
801
+ },
802
+ "displayName": "Page Node",
803
+ "nodeType": "PageNode",
804
+ "x": 555,
805
+ "y": 20
806
+ }
807
+ },
808
+ "description": "Prompt for missing preferences on 3rd login",
809
+ "staticNodes": {
810
+ "70e691a5-1e33-4ac3-a356-e7b6d60d92e0": {
811
+ "x": 802,
812
+ "y": 312
813
+ },
814
+ "e301438c-0bd0-429c-ab0c-66126501069a": {
815
+ "x": 919,
816
+ "y": 171
817
+ },
818
+ "startNode": {
819
+ "x": 50,
820
+ "y": 58.5
821
+ }
822
+ }
823
+ }
824
+ },
825
+ "ForgottenUsername": {
826
+ "innerNodes": {
827
+ "9f1e8d94-4922-481b-9e14-212b66548900": {
828
+ "_id": "9f1e8d94-4922-481b-9e14-212b66548900",
829
+ "_rev": "-1331445210",
830
+ "attributesToCollect": [
831
+ "mail"
832
+ ],
833
+ "identityAttribute": "mail",
834
+ "validateInputs": false,
835
+ "required": true,
836
+ "_type": {
837
+ "_id": "AttributeCollectorNode",
838
+ "name": "Attribute Collector",
839
+ "collection": true
840
+ },
841
+ "_outcomes": [
842
+ {
843
+ "id": "outcome",
844
+ "displayName": "Outcome"
845
+ }
846
+ ]
847
+ }
848
+ },
849
+ "nodes": {
850
+ "5e2a7c95-94af-4b23-8724-deb13853726a": {
851
+ "_id": "5e2a7c95-94af-4b23-8724-deb13853726a",
852
+ "_rev": "-1421046051",
853
+ "nodes": [
854
+ {
855
+ "_id": "9f1e8d94-4922-481b-9e14-212b66548900",
856
+ "nodeType": "AttributeCollectorNode",
857
+ "displayName": "Attribute Collector"
858
+ }
859
+ ],
860
+ "pageDescription": {
861
+ "en": "Enter your email address or <a href=\"#/service/Login\">Sign in</a>"
862
+ },
863
+ "pageHeader": {
864
+ "en": "Forgotten Username"
865
+ },
866
+ "_type": {
867
+ "_id": "PageNode",
868
+ "name": "Page Node",
869
+ "collection": true
870
+ },
871
+ "_outcomes": [
872
+ {
873
+ "id": "outcome",
874
+ "displayName": "Outcome"
875
+ }
876
+ ]
877
+ },
878
+ "b93ce36e-1976-4610-b24f-8d6760b5463b": {
879
+ "_id": "b93ce36e-1976-4610-b24f-8d6760b5463b",
880
+ "_rev": "1389809903",
881
+ "tree": "Login",
882
+ "_type": {
883
+ "_id": "InnerTreeEvaluatorNode",
884
+ "name": "Inner Tree Evaluator",
885
+ "collection": true
886
+ },
887
+ "_outcomes": [
888
+ {
889
+ "id": "true",
890
+ "displayName": "True"
891
+ },
892
+ {
893
+ "id": "false",
894
+ "displayName": "False"
895
+ }
896
+ ]
897
+ },
898
+ "bf9ea8d5-9802-4f26-9664-a21840faac23": {
899
+ "_id": "bf9ea8d5-9802-4f26-9664-a21840faac23",
900
+ "_rev": "-626658673",
901
+ "identityAttribute": "mail",
902
+ "identifier": "userName",
903
+ "_type": {
904
+ "_id": "IdentifyExistingUserNode",
905
+ "name": "Identify Existing User",
906
+ "collection": true
907
+ },
908
+ "_outcomes": [
909
+ {
910
+ "id": "true",
911
+ "displayName": "True"
912
+ },
913
+ {
914
+ "id": "false",
915
+ "displayName": "False"
916
+ }
917
+ ]
918
+ },
919
+ "d9a79f01-2ce3-4be2-a28a-975f35c3c8ca": {
920
+ "_id": "d9a79f01-2ce3-4be2-a28a-975f35c3c8ca",
921
+ "_rev": "2035832000",
922
+ "emailSuspendMessage": {
923
+ "en": "An email has been sent to the address you entered. Click the link in that email to proceed."
924
+ },
925
+ "emailTemplateName": "forgottenUsername",
926
+ "identityAttribute": "mail",
927
+ "emailAttribute": "mail",
928
+ "objectLookup": true,
929
+ "_type": {
930
+ "_id": "EmailSuspendNode",
931
+ "name": "Email Suspend Node",
932
+ "collection": true
933
+ },
934
+ "_outcomes": [
935
+ {
936
+ "id": "outcome",
937
+ "displayName": "Outcome"
938
+ }
939
+ ]
940
+ }
941
+ },
942
+ "scripts": {},
943
+ "emailTemplates": {
944
+ "forgottenUsername": {
945
+ "_id": "emailTemplate/forgottenUsername",
946
+ "emailTemplate/forgottenUsername": ""
947
+ }
948
+ },
949
+ "socialIdentityProviders": {},
950
+ "themes": [],
951
+ "saml2Entities": {},
952
+ "circlesOfTrust": {},
953
+ "tree": {
954
+ "_id": "ForgottenUsername",
955
+ "_rev": "-1762040244",
956
+ "identityResource": "managed/alpha_user",
957
+ "uiConfig": {
958
+ "categories": "[\"Username Reset\"]"
959
+ },
960
+ "entryNodeId": "5e2a7c95-94af-4b23-8724-deb13853726a",
961
+ "nodes": {
962
+ "5e2a7c95-94af-4b23-8724-deb13853726a": {
963
+ "connections": {
964
+ "outcome": "bf9ea8d5-9802-4f26-9664-a21840faac23"
965
+ },
966
+ "displayName": "Page Node",
967
+ "nodeType": "PageNode",
968
+ "x": 139,
969
+ "y": 146
970
+ },
971
+ "b93ce36e-1976-4610-b24f-8d6760b5463b": {
972
+ "connections": {
973
+ "false": "e301438c-0bd0-429c-ab0c-66126501069a",
974
+ "true": "70e691a5-1e33-4ac3-a356-e7b6d60d92e0"
975
+ },
976
+ "displayName": "Inner Tree Evaluator",
977
+ "nodeType": "InnerTreeEvaluatorNode",
978
+ "x": 767,
979
+ "y": 188
980
+ },
981
+ "bf9ea8d5-9802-4f26-9664-a21840faac23": {
982
+ "connections": {
983
+ "false": "d9a79f01-2ce3-4be2-a28a-975f35c3c8ca",
984
+ "true": "d9a79f01-2ce3-4be2-a28a-975f35c3c8ca"
985
+ },
986
+ "displayName": "Identify Existing User",
987
+ "nodeType": "IdentifyExistingUserNode",
988
+ "x": 324,
989
+ "y": 152
990
+ },
991
+ "d9a79f01-2ce3-4be2-a28a-975f35c3c8ca": {
992
+ "connections": {
993
+ "outcome": "b93ce36e-1976-4610-b24f-8d6760b5463b"
994
+ },
995
+ "displayName": "Email Suspend Node",
996
+ "nodeType": "EmailSuspendNode",
997
+ "x": 563,
998
+ "y": 193
999
+ }
1000
+ },
1001
+ "description": "Forgotten Username Tree",
1002
+ "staticNodes": {
1003
+ "70e691a5-1e33-4ac3-a356-e7b6d60d92e0": {
1004
+ "x": 970,
1005
+ "y": 149
1006
+ },
1007
+ "e301438c-0bd0-429c-ab0c-66126501069a": {
1008
+ "x": 982,
1009
+ "y": 252
1010
+ },
1011
+ "startNode": {
1012
+ "x": 50,
1013
+ "y": 25
1014
+ }
1015
+ }
1016
+ }
1017
+ },
1018
+ "UpdatePassword": {
1019
+ "innerNodes": {
1020
+ "fe2962fc-4db3-4066-8624-553649afc438": {
1021
+ "_id": "fe2962fc-4db3-4066-8624-553649afc438",
1022
+ "_rev": "875005143",
1023
+ "validateInput": false,
1024
+ "passwordAttribute": "password",
1025
+ "_type": {
1026
+ "_id": "ValidatedPasswordNode",
1027
+ "name": "Platform Password",
1028
+ "collection": true
1029
+ },
1030
+ "_outcomes": [
1031
+ {
1032
+ "id": "outcome",
1033
+ "displayName": "Outcome"
1034
+ }
1035
+ ]
1036
+ },
1037
+ "21a99653-a7a7-47ee-b650-f493a84bba09": {
1038
+ "_id": "21a99653-a7a7-47ee-b650-f493a84bba09",
1039
+ "_rev": "688403743",
1040
+ "validateInput": true,
1041
+ "passwordAttribute": "password",
1042
+ "_type": {
1043
+ "_id": "ValidatedPasswordNode",
1044
+ "name": "Platform Password",
1045
+ "collection": true
1046
+ },
1047
+ "_outcomes": [
1048
+ {
1049
+ "id": "outcome",
1050
+ "displayName": "Outcome"
1051
+ }
1052
+ ]
1053
+ }
1054
+ },
1055
+ "nodes": {
1056
+ "0f0904e6-1da3-4cdb-9abf-0d2545016fab": {
1057
+ "_id": "0f0904e6-1da3-4cdb-9abf-0d2545016fab",
1058
+ "_rev": "-1218497043",
1059
+ "presentAttribute": "password",
1060
+ "identityAttribute": "userName",
1061
+ "_type": {
1062
+ "_id": "AttributePresentDecisionNode",
1063
+ "name": "Attribute Present Decision",
1064
+ "collection": true
1065
+ },
1066
+ "_outcomes": [
1067
+ {
1068
+ "id": "true",
1069
+ "displayName": "True"
1070
+ },
1071
+ {
1072
+ "id": "false",
1073
+ "displayName": "False"
1074
+ }
1075
+ ]
1076
+ },
1077
+ "20237b34-26cb-4a0b-958f-abb422290d42": {
1078
+ "_id": "20237b34-26cb-4a0b-958f-abb422290d42",
1079
+ "_rev": "1965792723",
1080
+ "nodes": [
1081
+ {
1082
+ "_id": "fe2962fc-4db3-4066-8624-553649afc438",
1083
+ "nodeType": "ValidatedPasswordNode",
1084
+ "displayName": "Platform Password"
1085
+ }
1086
+ ],
1087
+ "pageDescription": {
1088
+ "en": "Enter current password"
1089
+ },
1090
+ "pageHeader": {
1091
+ "en": "Verify Existing Password"
1092
+ },
1093
+ "_type": {
1094
+ "_id": "PageNode",
1095
+ "name": "Page Node",
1096
+ "collection": true
1097
+ },
1098
+ "_outcomes": [
1099
+ {
1100
+ "id": "outcome",
1101
+ "displayName": "Outcome"
1102
+ }
1103
+ ]
1104
+ },
1105
+ "3990ce1f-cce6-435b-ae1c-f138e89411c1": {
1106
+ "_id": "3990ce1f-cce6-435b-ae1c-f138e89411c1",
1107
+ "_rev": "-212483341",
1108
+ "identityResource": "managed/alpha_user",
1109
+ "patchAsObject": false,
1110
+ "ignoredFields": [
1111
+ "userName"
1112
+ ],
1113
+ "identityAttribute": "userName",
1114
+ "_type": {
1115
+ "_id": "PatchObjectNode",
1116
+ "name": "Patch Object",
1117
+ "collection": true
1118
+ },
1119
+ "_outcomes": [
1120
+ {
1121
+ "id": "PATCHED",
1122
+ "displayName": "Patched"
1123
+ },
1124
+ {
1125
+ "id": "FAILURE",
1126
+ "displayName": "Failed"
1127
+ }
1128
+ ]
1129
+ },
1130
+ "7d1deabe-cd98-49c8-943f-ca12305775f3": {
1131
+ "_id": "7d1deabe-cd98-49c8-943f-ca12305775f3",
1132
+ "_rev": "869693667",
1133
+ "_type": {
1134
+ "_id": "DataStoreDecisionNode",
1135
+ "name": "Data Store Decision",
1136
+ "collection": true
1137
+ },
1138
+ "_outcomes": [
1139
+ {
1140
+ "id": "true",
1141
+ "displayName": "True"
1142
+ },
1143
+ {
1144
+ "id": "false",
1145
+ "displayName": "False"
1146
+ }
1147
+ ]
1148
+ },
1149
+ "a3d97b53-e38a-4b24-aed0-a021050eb744": {
1150
+ "_id": "a3d97b53-e38a-4b24-aed0-a021050eb744",
1151
+ "_rev": "-1059437256",
1152
+ "emailSuspendMessage": {
1153
+ "en": "An email has been sent to your address, please verify your email address to update your password. Click the link in that email to proceed."
1154
+ },
1155
+ "identityAttribute": "userName",
1156
+ "emailTemplateName": "updatePassword",
1157
+ "emailAttribute": "mail",
1158
+ "objectLookup": true,
1159
+ "_type": {
1160
+ "_id": "EmailSuspendNode",
1161
+ "name": "Email Suspend Node",
1162
+ "collection": true
1163
+ },
1164
+ "_outcomes": [
1165
+ {
1166
+ "id": "outcome",
1167
+ "displayName": "Outcome"
1168
+ }
1169
+ ]
1170
+ },
1171
+ "d018fcd1-4e22-4160-8c41-63bee51c9cb3": {
1172
+ "_id": "d018fcd1-4e22-4160-8c41-63bee51c9cb3",
1173
+ "_rev": "-1359533036",
1174
+ "nodes": [
1175
+ {
1176
+ "_id": "21a99653-a7a7-47ee-b650-f493a84bba09",
1177
+ "nodeType": "ValidatedPasswordNode",
1178
+ "displayName": "Platform Password"
1179
+ }
1180
+ ],
1181
+ "pageDescription": {
1182
+ "en": "Enter new password"
1183
+ },
1184
+ "pageHeader": {
1185
+ "en": "Update Password"
1186
+ },
1187
+ "_type": {
1188
+ "_id": "PageNode",
1189
+ "name": "Page Node",
1190
+ "collection": true
1191
+ },
1192
+ "_outcomes": [
1193
+ {
1194
+ "id": "outcome",
1195
+ "displayName": "Outcome"
1196
+ }
1197
+ ]
1198
+ },
1199
+ "d1b79744-493a-44fe-bc26-7d324a8caa4e": {
1200
+ "_id": "d1b79744-493a-44fe-bc26-7d324a8caa4e",
1201
+ "_rev": "-716667889",
1202
+ "sessionDataKey": "UserToken",
1203
+ "sharedStateKey": "userName",
1204
+ "_type": {
1205
+ "_id": "SessionDataNode",
1206
+ "name": "Get Session Data",
1207
+ "collection": true
1208
+ },
1209
+ "_outcomes": [
1210
+ {
1211
+ "id": "outcome",
1212
+ "displayName": "Outcome"
1213
+ }
1214
+ ]
1215
+ }
1216
+ },
1217
+ "scripts": {},
1218
+ "emailTemplates": {
1219
+ "updatePassword": {
1220
+ "_id": "emailTemplate/updatePassword",
1221
+ "emailTemplate/updatePassword": ""
1222
+ }
1223
+ },
1224
+ "socialIdentityProviders": {},
1225
+ "themes": [],
1226
+ "saml2Entities": {},
1227
+ "circlesOfTrust": {},
1228
+ "tree": {
1229
+ "_id": "UpdatePassword",
1230
+ "_rev": "-237395169",
1231
+ "identityResource": "managed/alpha_user",
1232
+ "uiConfig": {
1233
+ "categories": "[\"Password Reset\"]"
1234
+ },
1235
+ "entryNodeId": "d1b79744-493a-44fe-bc26-7d324a8caa4e",
1236
+ "nodes": {
1237
+ "0f0904e6-1da3-4cdb-9abf-0d2545016fab": {
1238
+ "connections": {
1239
+ "false": "a3d97b53-e38a-4b24-aed0-a021050eb744",
1240
+ "true": "20237b34-26cb-4a0b-958f-abb422290d42"
1241
+ },
1242
+ "displayName": "Attribute Present Decision",
1243
+ "nodeType": "AttributePresentDecisionNode",
1244
+ "x": 288,
1245
+ "y": 133
1246
+ },
1247
+ "20237b34-26cb-4a0b-958f-abb422290d42": {
1248
+ "connections": {
1249
+ "outcome": "7d1deabe-cd98-49c8-943f-ca12305775f3"
1250
+ },
1251
+ "displayName": "Page Node",
1252
+ "nodeType": "PageNode",
1253
+ "x": 526,
1254
+ "y": 46
1255
+ },
1256
+ "3990ce1f-cce6-435b-ae1c-f138e89411c1": {
1257
+ "connections": {
1258
+ "FAILURE": "e301438c-0bd0-429c-ab0c-66126501069a",
1259
+ "PATCHED": "70e691a5-1e33-4ac3-a356-e7b6d60d92e0"
1260
+ },
1261
+ "displayName": "Patch Object",
1262
+ "nodeType": "PatchObjectNode",
1263
+ "x": 1062,
1264
+ "y": 189
1265
+ },
1266
+ "7d1deabe-cd98-49c8-943f-ca12305775f3": {
1267
+ "connections": {
1268
+ "false": "e301438c-0bd0-429c-ab0c-66126501069a",
1269
+ "true": "d018fcd1-4e22-4160-8c41-63bee51c9cb3"
1270
+ },
1271
+ "displayName": "Data Store Decision",
1272
+ "nodeType": "DataStoreDecisionNode",
1273
+ "x": 722,
1274
+ "y": 45
1275
+ },
1276
+ "a3d97b53-e38a-4b24-aed0-a021050eb744": {
1277
+ "connections": {
1278
+ "outcome": "d018fcd1-4e22-4160-8c41-63bee51c9cb3"
1279
+ },
1280
+ "displayName": "Email Suspend Node",
1281
+ "nodeType": "EmailSuspendNode",
1282
+ "x": 659,
1283
+ "y": 223
1284
+ },
1285
+ "d018fcd1-4e22-4160-8c41-63bee51c9cb3": {
1286
+ "connections": {
1287
+ "outcome": "3990ce1f-cce6-435b-ae1c-f138e89411c1"
1288
+ },
1289
+ "displayName": "Page Node",
1290
+ "nodeType": "PageNode",
1291
+ "x": 943,
1292
+ "y": 30
1293
+ },
1294
+ "d1b79744-493a-44fe-bc26-7d324a8caa4e": {
1295
+ "connections": {
1296
+ "outcome": "0f0904e6-1da3-4cdb-9abf-0d2545016fab"
1297
+ },
1298
+ "displayName": "Get Session Data",
1299
+ "nodeType": "SessionDataNode",
1300
+ "x": 122,
1301
+ "y": 129
1302
+ }
1303
+ },
1304
+ "description": "Update password using active session",
1305
+ "staticNodes": {
1306
+ "70e691a5-1e33-4ac3-a356-e7b6d60d92e0": {
1307
+ "x": 1212,
1308
+ "y": 128
1309
+ },
1310
+ "e301438c-0bd0-429c-ab0c-66126501069a": {
1311
+ "x": 939,
1312
+ "y": 290
1313
+ },
1314
+ "startNode": {
1315
+ "x": 50,
1316
+ "y": 25
1317
+ }
1318
+ }
1319
+ }
1320
+ },
1321
+ "Login": {
1322
+ "innerNodes": {
1323
+ "7354982f-57b6-4b04-9ddc-f1dd1e1e07d0": {
1324
+ "_id": "7354982f-57b6-4b04-9ddc-f1dd1e1e07d0",
1325
+ "_rev": "-2064640544",
1326
+ "usernameAttribute": "userName",
1327
+ "validateInput": false,
1328
+ "_type": {
1329
+ "_id": "ValidatedUsernameNode",
1330
+ "name": "Platform Username",
1331
+ "collection": true
1332
+ },
1333
+ "_outcomes": [
1334
+ {
1335
+ "id": "outcome",
1336
+ "displayName": "Outcome"
1337
+ }
1338
+ ]
1339
+ },
1340
+ "0c80c39b-4813-4e67-b4fb-5a0bba85f994": {
1341
+ "_id": "0c80c39b-4813-4e67-b4fb-5a0bba85f994",
1342
+ "_rev": "-1763423776",
1343
+ "validateInput": false,
1344
+ "passwordAttribute": "password",
1345
+ "_type": {
1346
+ "_id": "ValidatedPasswordNode",
1347
+ "name": "Platform Password",
1348
+ "collection": true
1349
+ },
1350
+ "_outcomes": [
1351
+ {
1352
+ "id": "outcome",
1353
+ "displayName": "Outcome"
1354
+ }
1355
+ ]
1356
+ }
1357
+ },
1358
+ "nodes": {
1359
+ "2998c1c9-f4c8-4a00-b2c6-3426783ee49d": {
1360
+ "_id": "2998c1c9-f4c8-4a00-b2c6-3426783ee49d",
1361
+ "_rev": "-656534578",
1362
+ "_type": {
1363
+ "_id": "DataStoreDecisionNode",
1364
+ "name": "Data Store Decision",
1365
+ "collection": true
1366
+ },
1367
+ "_outcomes": [
1368
+ {
1369
+ "id": "true",
1370
+ "displayName": "True"
1371
+ },
1372
+ {
1373
+ "id": "false",
1374
+ "displayName": "False"
1375
+ }
1376
+ ]
1377
+ },
1378
+ "33b24514-3e50-4180-8f08-ab6f4e51b07e": {
1379
+ "_id": "33b24514-3e50-4180-8f08-ab6f4e51b07e",
1380
+ "_rev": "-1405518667",
1381
+ "tree": "ProgressiveProfile",
1382
+ "_type": {
1383
+ "_id": "InnerTreeEvaluatorNode",
1384
+ "name": "Inner Tree Evaluator",
1385
+ "collection": true
1386
+ },
1387
+ "_outcomes": [
1388
+ {
1389
+ "id": "true",
1390
+ "displayName": "True"
1391
+ },
1392
+ {
1393
+ "id": "false",
1394
+ "displayName": "False"
1395
+ }
1396
+ ]
1397
+ },
1398
+ "a12bc72f-ad97-4f1e-a789-a1fa3dd566c8": {
1399
+ "_id": "a12bc72f-ad97-4f1e-a789-a1fa3dd566c8",
1400
+ "_rev": "-1594114",
1401
+ "nodes": [
1402
+ {
1403
+ "_id": "7354982f-57b6-4b04-9ddc-f1dd1e1e07d0",
1404
+ "nodeType": "ValidatedUsernameNode",
1405
+ "displayName": "Platform Username"
1406
+ },
1407
+ {
1408
+ "_id": "0c80c39b-4813-4e67-b4fb-5a0bba85f994",
1409
+ "nodeType": "ValidatedPasswordNode",
1410
+ "displayName": "Platform Password"
1411
+ }
1412
+ ],
1413
+ "pageDescription": {
1414
+ "en": "New here? <a href=\"#/service/Registration\">Create an account</a><br><a href=\"#/service/ForgottenUsername\">Forgot username?</a><a href=\"#/service/ResetPassword\"> Forgot password?</a>"
1415
+ },
1416
+ "pageHeader": {
1417
+ "en": "Sign In"
1418
+ },
1419
+ "_type": {
1420
+ "_id": "PageNode",
1421
+ "name": "Page Node",
1422
+ "collection": true
1423
+ },
1424
+ "_outcomes": [
1425
+ {
1426
+ "id": "outcome",
1427
+ "displayName": "Outcome"
1428
+ }
1429
+ ]
1430
+ },
1431
+ "bba3e0d8-8525-4e82-bf48-ac17f7988917": {
1432
+ "_id": "bba3e0d8-8525-4e82-bf48-ac17f7988917",
1433
+ "_rev": "2098371942",
1434
+ "identityAttribute": "userName",
1435
+ "_type": {
1436
+ "_id": "IncrementLoginCountNode",
1437
+ "name": "Increment Login Count",
1438
+ "collection": true
1439
+ },
1440
+ "_outcomes": [
1441
+ {
1442
+ "id": "outcome",
1443
+ "displayName": "Outcome"
1444
+ }
1445
+ ]
1446
+ }
1447
+ },
1448
+ "scripts": {},
1449
+ "emailTemplates": {},
1450
+ "socialIdentityProviders": {},
1451
+ "themes": [],
1452
+ "saml2Entities": {},
1453
+ "circlesOfTrust": {},
1454
+ "tree": {
1455
+ "_id": "Login",
1456
+ "_rev": "174084184",
1457
+ "identityResource": "managed/alpha_user",
1458
+ "uiConfig": {
1459
+ "categories": "[\"Authentication\"]"
1460
+ },
1461
+ "entryNodeId": "a12bc72f-ad97-4f1e-a789-a1fa3dd566c8",
1462
+ "nodes": {
1463
+ "2998c1c9-f4c8-4a00-b2c6-3426783ee49d": {
1464
+ "connections": {
1465
+ "false": "e301438c-0bd0-429c-ab0c-66126501069a",
1466
+ "true": "bba3e0d8-8525-4e82-bf48-ac17f7988917"
1467
+ },
1468
+ "displayName": "Data Store Decision",
1469
+ "nodeType": "DataStoreDecisionNode",
1470
+ "x": 315,
1471
+ "y": 140
1472
+ },
1473
+ "33b24514-3e50-4180-8f08-ab6f4e51b07e": {
1474
+ "connections": {
1475
+ "false": "e301438c-0bd0-429c-ab0c-66126501069a",
1476
+ "true": "70e691a5-1e33-4ac3-a356-e7b6d60d92e0"
1477
+ },
1478
+ "displayName": "Inner Tree Evaluator",
1479
+ "nodeType": "InnerTreeEvaluatorNode",
1480
+ "x": 815,
1481
+ "y": 180
1482
+ },
1483
+ "a12bc72f-ad97-4f1e-a789-a1fa3dd566c8": {
1484
+ "connections": {
1485
+ "outcome": "2998c1c9-f4c8-4a00-b2c6-3426783ee49d"
1486
+ },
1487
+ "displayName": "Page Node",
1488
+ "nodeType": "PageNode",
1489
+ "x": 136,
1490
+ "y": 59
1491
+ },
1492
+ "bba3e0d8-8525-4e82-bf48-ac17f7988917": {
1493
+ "connections": {
1494
+ "outcome": "33b24514-3e50-4180-8f08-ab6f4e51b07e"
1495
+ },
1496
+ "displayName": "Increment Login Count",
1497
+ "nodeType": "IncrementLoginCountNode",
1498
+ "x": 564,
1499
+ "y": 132
1500
+ }
1501
+ },
1502
+ "description": "Platform Login Tree",
1503
+ "staticNodes": {
1504
+ "70e691a5-1e33-4ac3-a356-e7b6d60d92e0": {
1505
+ "x": 1008,
1506
+ "y": 186
1507
+ },
1508
+ "e301438c-0bd0-429c-ab0c-66126501069a": {
1509
+ "x": 624,
1510
+ "y": 267
1511
+ },
1512
+ "startNode": {
1513
+ "x": 50,
1514
+ "y": 25
1515
+ }
1516
+ }
1517
+ }
1518
+ }
1519
+ }
1520
+ }