@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
package/CHANGELOG.md ADDED
@@ -0,0 +1,512 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project are documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## [Unreleased]
9
+
10
+ ## [0.11.0] - 2022-08-16
11
+
12
+ ### Changed
13
+
14
+ - \#1: Split frodo into frodo-lib and frodo-cli
15
+ - \#5: Removed all cli artifacts
16
+ - \#2: Made frodo-lib a true library
17
+ - \#3: Updated pipeline to build the library package
18
+
19
+ ## [0.10.4] - 2022-08-13
20
+
21
+ ### Added
22
+
23
+ - \#376: Frodo is now being published as an npm package: @rockcarver/frodo-cli.
24
+ - \#317: Binary archive names now include the release version.
25
+ - \#369: Added backwards compatibilty with node 16 and 14. Binaries are still built using the latest node version (18). Smoke tests run against all supported versions (18, 16, 14).
26
+
27
+ ### Fixed
28
+
29
+ - \#368: Progress bar no longer overrides verbose output on journey import.
30
+
31
+ ## [0.10.3] - 2022-08-13 [YANKED]
32
+
33
+ ## [0.10.2] - 2022-08-13 [YANKED]
34
+
35
+ ## [0.10.1] - 2022-08-13 [YANKED]
36
+
37
+ ## [0.10.0] - 2022-08-13 [YANKED]
38
+
39
+ ## [0.9.3-7] - 2022-08-13 [YANKED]
40
+
41
+ ## [0.9.3-6] - 2022-08-13 [YANKED]
42
+
43
+ ## [0.9.3-5] - 2022-08-13 [YANKED]
44
+
45
+ ## [0.9.3-4] - 2022-08-13 [YANKED]
46
+
47
+ ## [0.9.3-3] - 2022-08-13 [YANKED]
48
+
49
+ ## [0.9.3-2] - 2022-08-13 [YANKED]
50
+
51
+ ## [0.9.3-1] - 2022-08-13 [YANKED]
52
+
53
+ ## [0.9.3-0] - 2022-08-12 [YANKED]
54
+
55
+ ## [0.9.2] - 2022-08-11
56
+
57
+ ### Added
58
+
59
+ - \#205: Added `--no-deps` option to `journey export`/`import` commands. This allows users to omit all external dependencies from a journey export and/or import. One use case where this comes in handy is when using frodo as a CI/CD tool to extract and deploy individual configuration artifacts and it is desirable to not mingle multiple types of configuration in a single file but keep each type of configuration in its own file for version and change control.
60
+ - Added `--verbose` option to `journey export` command.
61
+ - \#341: Added initial smoke tests to validate basic functionality.
62
+
63
+ ### Changed
64
+
65
+ - \#363: Frodo now performs dependency resolution and reports unresolved dependencies on single journey imports.
66
+ - \#364: Frodo now uses a spinner and no longer a progress bar to indicate progress on single journey imports.
67
+ - Internal restructuring (#158, #159, #164, #165)
68
+ - Updated PIPELINE.md with latest pipeline changes
69
+
70
+ ### Fixed
71
+
72
+ - \#359: Frodo now properly exports themes from forgeops deployments.
73
+ - \#362: Frodo now properly imports journeys with email templates.
74
+ - \#357: Frodo no longer throws an error and exits occasionally when running the `frodo log tail` command.
75
+ - \#355: Frodo now properly imports social IDPs into 7.1 environments when using the `frodo journey import` command.
76
+ - \#353: Frodo now properly imports social IDPs when using the `frodo journey import` command.
77
+ - \#351: Frodo now properly shows IDM messages using the `frodo logs tail` command.
78
+ - \#349: Frodo now properly exports journeys from classic deployments
79
+
80
+ ## [0.9.2-12] - 2022-08-09
81
+
82
+ ### Fixed
83
+
84
+ - \#359: Frodo now properly exports themes from forgeops deployments.
85
+
86
+ ## [0.9.2-11] - 2022-08-09
87
+
88
+ ### Changed
89
+
90
+ - \#363: Frodo now performs dependency resolution and reports unresolved dependencies on single journey imports.
91
+ - \#364: Frodo now uses a spinner and no longer a progress bar to indicate progress on single journey imports.
92
+
93
+ ### Fixed
94
+
95
+ - \#362: Frodo now properly imports journeys with email templates.
96
+
97
+ ## [0.9.2-10] - 2022-08-05
98
+
99
+ ### Fixed
100
+
101
+ - \#357: Frodo no longer throws an error and exits occasionally when running the `frodo log tail` command.
102
+
103
+ ## [0.9.2-9] - 2022-07-30
104
+
105
+ ### Fixed
106
+
107
+ - \#355: Frodo now properly imports social IDPs into 7.1 environments when using the `frodo journey import` command.
108
+
109
+ ## [0.9.2-8] - 2022-07-28
110
+
111
+ ### Fixed
112
+
113
+ - \#353: Frodo now properly imports social IDPs when using the `frodo journey import` command.
114
+
115
+ ## [0.9.2-7] - 2022-07-28
116
+
117
+ ### Fixed
118
+
119
+ - \#351: Frodo now properly shows IDM messages using the `frodo logs tail` command.
120
+
121
+ ## [0.9.2-6] - 2022-07-27
122
+
123
+ ### Fixed
124
+
125
+ - \#349: Frodo now properly exports journeys from classic deployments
126
+
127
+ ## [0.9.2-5] - 2022-07-23
128
+
129
+ ### Changed
130
+
131
+ - Internal restructuring (#158, #159, #164, #165)
132
+
133
+ ## [0.9.2-4] - 2022-07-22
134
+
135
+ ### Added
136
+
137
+ - \#341: Added initial smoke tests to validate basic functionality
138
+
139
+ ### Changed
140
+
141
+ - Updated PIPELINE.md with latest pipeline changes
142
+
143
+ ## [0.9.2-3] - 2022-07-22 [YANKED]
144
+
145
+ ## [0.9.2-2] - 2022-07-22 [YANKED]
146
+
147
+ ## [0.9.2-1] - 2022-07-22 [YANKED]
148
+
149
+ ## [0.9.2-0] - 2022-07-22 [YANKED]
150
+
151
+ ## [0.9.1] - 2022-07-21
152
+
153
+ ### Added
154
+
155
+ - \#311: Added explicit support for network proxies (`HTTPS_PROXY=<protocol>://<host>:<port>`)
156
+ Frodo now supports using system enviroment variable `HTTPS_PROXY` (and `HTTP_PROXY`) to connect through a network proxy.
157
+
158
+ ### Changed
159
+
160
+ - Changes to `frodo realm describe` command:
161
+ - The realm argument now exclusively determines the realm
162
+ - Removed `-n`/`--name` parameter
163
+ - Internal restructuring (#167)
164
+
165
+ ### Fixed
166
+
167
+ - \#329: Fixed help info for `esv apply` command
168
+ - \#335: Fixed error when running `idm list` command
169
+ - \#338: Frodo now successfully authenticates with or without using a proxy
170
+
171
+ ## [0.9.1-1] - 2022-07-21
172
+
173
+ ### Fixed
174
+
175
+ - \#338: Frodo now successfully authenticates with or without using a proxy
176
+
177
+ ## [0.9.1-0] - 2022-07-21 [YANKED]
178
+
179
+ ## [0.9.0] - 2022-07-21 [YANKED]
180
+
181
+ ## [0.8.2] - 2022-07-17
182
+
183
+ ### Changed
184
+
185
+ - Changed `idm` sub-commands to align with other commands:
186
+ - The sub-commands `export`, `exportAll`, and `exportAllRaw` have been collapsed into one: `export`
187
+ - `idm export -A` (`--all-separate`) is now the way to export all idm configuration.
188
+ - Options `-e` and `-E` select old `exportAll` functionality with variable replacement and filtering
189
+ - Omitting options `-e` and `-E`, selects the old `exportAllRaw` functionality without variable replacement and without filtering
190
+ - Renamed sample resource files for `idm export` command:
191
+ - `<frodo home>/resources/sampleEntitiesFile.json`
192
+ - `<frodo home>/resources/sampleEnvFile.env`
193
+ - The `-N`/`--name` option of the count command has been renamed to `-m`/`--managed-object`
194
+ - Internal restructuring (#137)
195
+
196
+ ### Fixed
197
+
198
+ - \#325: Frodo now gracefully reports and skips node types causing errors during pruning
199
+ - \#331: Frodo now correctly counts managed objects when using the `idm count` command
200
+
201
+ ## [0.8.2-1] - 2022-07-16
202
+
203
+ ### Fixed
204
+
205
+ - \#325: Frodo now gracefully reports and skips node types causing errors during pruning
206
+
207
+ ## [0.8.2-0] - 2022-07-16 [YANKED]
208
+
209
+ ## [0.8.1] - 2022-07-15
210
+
211
+ ### Added
212
+
213
+ - New `-l`/`--long` option to script list command
214
+
215
+ ### Changed
216
+
217
+ - Changed default behavior of `frodo conn add` to validate connection details by default and renamed parameter from `--validate` to `--no-validate` to allow disabling validation
218
+ - Internal restructuring (#169)
219
+
220
+ ### Fixed
221
+
222
+ - \#324: Frodo now includes themes assigned at journey level in journey exports
223
+
224
+ ## [0.8.1-0] - 2022-07-14 [YANKED]
225
+
226
+ ## [0.8.0] - 2022-07-13
227
+
228
+ ### Added
229
+
230
+ - \#320: Frodo now identifies itself through the User-Agent header `<name>/<version>` (e.g. `frodo/0.7.1-1`)
231
+
232
+ ### Changed
233
+
234
+ - Renamed `realm details` to `realm describe` but registered `realm details` as an alias for backwards compatibility
235
+ - Changes to application command
236
+ - Renamed command to `app` but registered `application` as an alias for backwards compatibility
237
+ - Renamed option `-i`/`--id` to `-i`/`--app-id`. Short version is not impacted by rename.
238
+ - Internal restructuring (#133, #134, #141 #142, #146)
239
+
240
+ ### Fixed
241
+
242
+ - \#319: frodo admin create-oauth2-client-with-admin-privileges --llt properly handles name collisions
243
+
244
+ ## [0.7.1-1] - 2022-07-11
245
+
246
+ ## [0.7.1-0] - 2022-07-10
247
+
248
+ ## [0.7.0] - 2022-07-10
249
+
250
+ ### Added
251
+
252
+ - CHANGELOG.md
253
+ - `conn describe` command to describe connection profiles
254
+ - `--show-secrets` option to `conn describe` command to show clear-text secrets
255
+ - `--validate` option to `conn add` command to validate credentials before adding
256
+
257
+ ### Changed
258
+
259
+ - Adapted true semantic versioning
260
+ - Pipeline changes
261
+ - Automated updating changelog using keep a changelog format in CHANGELOG.md
262
+ - Automated version bump (SemVer format) using PR comments to trigger prerelease, patch, minor, or major bumps
263
+ - Automated release notes extraction from CHANGELOG.md
264
+ - Automated GitHub release creation
265
+ - Renamed frodo.yml to pipeline.yml
266
+ - Renamed connections command to `conn` with aliases `connection` and `connections` for backwards compatibility
267
+ - Internal restructuring (#160, #135)
268
+
269
+ ### Fixed
270
+
271
+ - \#280: Fixed missing -k/--insecure param in application sub-commands #280
272
+ - \#310: No longer storing connection profiles unless explicitly instructed to
273
+
274
+ ## [0.6.4-4] - 2022-07-10 [YANKED]
275
+
276
+ ## [0.6.4-3] - 2022-07-09 [YANKED]
277
+
278
+ ## [0.6.4-2] - 2022-07-09 [YANKED]
279
+
280
+ ## [0.6.4-1] - 2022-07-09 [YANKED]
281
+
282
+ ## [0.6.4-0] - 2022-07-09 [YANKED]
283
+
284
+ ## [0.6.3] - 2022-07-08 [YANKED]
285
+
286
+ ## 0.6.3-alpha.1 - 0.6.3-alpha.51 [YANKED]
287
+
288
+ ## 0.6.2 [YANKED]
289
+
290
+ ## 0.6.1 alpha 26 - 2022-06-28
291
+
292
+ ### Changed
293
+
294
+ - Changed archive step of Windows binary build to use 7zip
295
+
296
+ ## 0.6.1 alpha 22 - 0.6.1 alpha 25 [YANKED]
297
+
298
+ ## 0.6.1 alpha 21 - 2022-06-27
299
+
300
+ ### Added
301
+
302
+ - Added theme delete command
303
+ - Theme list e2e tests
304
+ - Theme delete e2e tests
305
+ - Added esv command
306
+ - esv secret - Manage secrets.
307
+ - esv variable - Manage variables.
308
+ - esv apply - Apply pending changes.
309
+ - Updated all dependencies to the latest versions
310
+
311
+ ### Changed
312
+
313
+ - Moved secret command under new esv command
314
+
315
+ ## 0.6.1 alpha 20 - 2022-06-23
316
+
317
+ ### Added
318
+
319
+ - Added journey delete command
320
+ - journey list e2e tests
321
+ - journey delete e2e tests
322
+
323
+ ### Changed
324
+
325
+ - Allow progressbar output to be captured in redirects
326
+
327
+ ### Fixed
328
+
329
+ - Journey import fixes
330
+ - Journey export bug fix
331
+ - Fix theme import issues when using /alpha or /bravo instead of alpha or bravo
332
+ - Fix admin create-oauth2-client-with-admin-privileges command
333
+
334
+ ## 0.6.1 alpha 19 - 2022-06-14
335
+
336
+ ### Added
337
+
338
+ - First stab at e2e testing of journey command
339
+ - saml command enhancements
340
+
341
+ ### Fixed
342
+
343
+ - Detect and remove invalid tree attributes on import
344
+ - Fixed issue where overriding deployment type would fail to detect the default realm
345
+ - Fix theme import -A
346
+
347
+ ## 0.6.1 alpha 18 - 2022-06-10
348
+
349
+ ### Added
350
+
351
+ - \--txid parameter with the logs commands to filter log output by transactionId
352
+
353
+ ### Fixed
354
+
355
+ - Bug in idm exportAllRaw
356
+
357
+ ## 0.6.1 alpha 17 - 2022-06-08
358
+
359
+ ### Added
360
+
361
+ - New saml command to manage entity providers and circles of trust
362
+
363
+ ### Changed
364
+
365
+ - Updates to journey export/import commands
366
+ - Support for social identity providers
367
+ - Support for themes
368
+ - Support for SAML entity providers
369
+ - Support for SAML circles of trust
370
+ - Breaking changes in journey sub-commands
371
+ - export
372
+ - \-t/--tree renamed to -i/--journey-id
373
+ - import
374
+ - \-t/--tree renamed to -i/--journey-id
375
+ - \-i/--journey-id is now only used to select the journey to import if there are multiple journeys in the import file
376
+ - \-n (No re-UUID) removed
377
+ - new flag --re-uuid with inversed behavior of removed -n flag. Frodo by default no longer generates new UUIDs for nodes on import
378
+ - Scalability enhancements to journey prune command. The changes allow the prune command to scale to many thousands of orphaned node configuration objects in an AM instance
379
+ - Updated readme
380
+ - Miscellaneous bug fixes
381
+
382
+ ## 0.6.1 alpha 14 - 0.6.1 alpha 16 [YANKED]
383
+
384
+ ## 0.6.1 alpha 13 - 2022-05-20
385
+
386
+ ### Added
387
+
388
+ - New script command to export and import scripts
389
+ - New email_templates command to manage email templates
390
+ - New application command to export and import oauth2 clients
391
+ - New realm command to manage realms
392
+ - New secret command to manage Identity Cloud secrets
393
+ - New theme command to manage hosted pages UI themes
394
+ - New admin command to perform advanced administrative tasks
395
+ - Encrypt the password value in the connection profile
396
+ - Added progress bars/spinners for long running operations
397
+ - Added version option -v, --version
398
+ - Auto provisioning of log API keys
399
+ - Added initial unit testing
400
+
401
+ ### Changed
402
+
403
+ - Improved performance of journey command (multi-threading)
404
+ - Consolidated settings under one folder (~/.frodo)
405
+ - Proposed new code formatting (prettier) and style (eslint) rules
406
+ - Updated readme
407
+ - Update to node 18
408
+
409
+ ### Fixed
410
+
411
+ - Fixed problem with adding connection profiles
412
+ - Miscellaneous bug fixes
413
+
414
+ [Unreleased]: https://github.com/rockcarver/frodo/compare/v0.10.4...HEAD
415
+
416
+ [0.10.4]: https://github.com/rockcarver/frodo/compare/v0.10.3...v0.10.4
417
+
418
+ [0.10.3]: https://github.com/rockcarver/frodo/compare/v0.10.3-0...v0.10.3
419
+
420
+ [0.10.3-0]: https://github.com/rockcarver/frodo/compare/v0.10.2...v0.10.3-0
421
+
422
+ [0.10.2]: https://github.com/rockcarver/frodo/compare/v0.10.2-0...v0.10.2
423
+
424
+ [0.10.2-0]: https://github.com/rockcarver/frodo/compare/v0.10.1...v0.10.2-0
425
+
426
+ [0.10.1]: https://github.com/rockcarver/frodo/compare/v0.10.0...v0.10.1
427
+
428
+ [0.10.0]: https://github.com/rockcarver/frodo/compare/v0.9.3-7...v0.10.0
429
+
430
+ [0.9.3-7]: https://github.com/rockcarver/frodo/compare/v0.9.3-6...v0.9.3-7
431
+
432
+ [0.9.3-6]: https://github.com/rockcarver/frodo/compare/v0.9.3-5...v0.9.3-6
433
+
434
+ [0.9.3-5]: https://github.com/rockcarver/frodo/compare/v0.9.3-4...v0.9.3-5
435
+
436
+ [0.9.3-4]: https://github.com/rockcarver/frodo/compare/v0.9.3-3...v0.9.3-4
437
+
438
+ [0.9.3-3]: https://github.com/rockcarver/frodo/compare/v0.9.3-2...v0.9.3-3
439
+
440
+ [0.9.3-2]: https://github.com/rockcarver/frodo/compare/v0.9.3-1...v0.9.3-2
441
+
442
+ [0.9.3-1]: https://github.com/rockcarver/frodo/compare/v0.9.3-0...v0.9.3-1
443
+
444
+ [0.9.3-0]: https://github.com/rockcarver/frodo/compare/v0.9.2...v0.9.3-0
445
+
446
+ [0.9.2]: https://github.com/rockcarver/frodo/compare/v0.9.2-12...v0.9.2
447
+
448
+ [0.9.2-12]: https://github.com/rockcarver/frodo/compare/v0.9.2-11...v0.9.2-12
449
+
450
+ [0.9.2-11]: https://github.com/rockcarver/frodo/compare/v0.9.2-10...v0.9.2-11
451
+
452
+ [0.9.2-10]: https://github.com/rockcarver/frodo/compare/v0.9.2-9...v0.9.2-10
453
+
454
+ [0.9.2-9]: https://github.com/rockcarver/frodo/compare/v0.9.2-8...v0.9.2-9
455
+
456
+ [0.9.2-8]: https://github.com/rockcarver/frodo/compare/v0.9.2-7...v0.9.2-8
457
+
458
+ [0.9.2-7]: https://github.com/rockcarver/frodo/compare/v0.9.2-6...v0.9.2-7
459
+
460
+ [0.9.2-6]: https://github.com/rockcarver/frodo/compare/v0.9.2-5...v0.9.2-6
461
+
462
+ [0.9.2-5]: https://github.com/rockcarver/frodo/compare/v0.9.2-4...v0.9.2-5
463
+
464
+ [0.9.2-4]: https://github.com/rockcarver/frodo/compare/v0.9.2-3...v0.9.2-4
465
+
466
+ [0.9.2-3]: https://github.com/rockcarver/frodo/compare/v0.9.2-2...v0.9.2-3
467
+
468
+ [0.9.2-2]: https://github.com/rockcarver/frodo/compare/v0.9.2-1...v0.9.2-2
469
+
470
+ [0.9.2-1]: https://github.com/rockcarver/frodo/compare/v0.9.2-0...v0.9.2-1
471
+
472
+ [0.9.2-0]: https://github.com/rockcarver/frodo/compare/v0.9.1...v0.9.2-0
473
+
474
+ [0.9.1]: https://github.com/rockcarver/frodo/compare/v0.9.1-1...v0.9.1
475
+
476
+ [0.9.1-1]: https://github.com/rockcarver/frodo/compare/v0.9.1-0...v0.9.1-1
477
+
478
+ [0.9.1-0]: https://github.com/rockcarver/frodo/compare/v0.9.0...v0.9.1-0
479
+
480
+ [0.9.0]: https://github.com/rockcarver/frodo/compare/v0.8.2...v0.9.0
481
+
482
+ [0.8.2]: https://github.com/rockcarver/frodo/compare/v0.8.2-1...v0.8.2
483
+
484
+ [0.8.2-1]: https://github.com/rockcarver/frodo/compare/v0.8.2-0...v0.8.2-1
485
+
486
+ [0.8.2-0]: https://github.com/rockcarver/frodo/compare/v0.8.1...v0.8.2-0
487
+
488
+ [0.8.1]: https://github.com/rockcarver/frodo/compare/v0.8.1-0...v0.8.1
489
+
490
+ [0.8.1-0]: https://github.com/rockcarver/frodo/compare/v0.8.0...v0.8.1-0
491
+
492
+ [0.8.0]: https://github.com/rockcarver/frodo/compare/v0.7.1-1...v0.8.0
493
+
494
+ [0.7.1-1]: https://github.com/rockcarver/frodo/compare/v0.7.1-0...v0.7.1-1
495
+
496
+ [0.7.1-0]: https://github.com/rockcarver/frodo/compare/v0.7.0...v0.7.1-0
497
+
498
+ [0.7.0]: https://github.com/rockcarver/frodo/compare/v0.6.4-4...v0.7.0
499
+
500
+ [0.6.4-4]: https://github.com/rockcarver/frodo/compare/v0.6.4-3...v0.6.4-4
501
+
502
+ [0.6.4-3]: https://github.com/rockcarver/frodo/compare/v0.6.4-2...v0.6.4-3
503
+
504
+ [0.6.4-2]: https://github.com/rockcarver/frodo/compare/v0.6.4-1...v0.6.4-2
505
+
506
+ [0.6.4-1]: https://github.com/rockcarver/frodo/compare/v0.6.4-0...v0.6.4-1
507
+
508
+ [0.6.4-0]: https://github.com/rockcarver/frodo/compare/v0.6.3...v0.6.4-0
509
+
510
+ [0.6.3]: https://github.com/rockcarver/frodo/compare/v0.6.3-alpha.51...v0.6.3
511
+
512
+ [0.6.3-alpha.51]: https://github.com/rockcarver/frodo/compare/6137b8b19f1c22af40af5afbf7a2e6c5a95b61cb...v0.6.3-alpha.51
@@ -0,0 +1,128 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We as members, contributors, and leaders pledge to make participation in our
6
+ community a harassment-free experience for everyone, regardless of age, body
7
+ size, visible or invisible disability, ethnicity, sex characteristics, gender
8
+ identity and expression, level of experience, education, socio-economic status,
9
+ nationality, personal appearance, race, religion, or sexual identity
10
+ and orientation.
11
+
12
+ We pledge to act and interact in ways that contribute to an open, welcoming,
13
+ diverse, inclusive, and healthy community.
14
+
15
+ ## Our Standards
16
+
17
+ Examples of behavior that contributes to a positive environment for our
18
+ community include:
19
+
20
+ * Demonstrating empathy and kindness toward other people
21
+ * Being respectful of differing opinions, viewpoints, and experiences
22
+ * Giving and gracefully accepting constructive feedback
23
+ * Accepting responsibility and apologizing to those affected by our mistakes,
24
+ and learning from the experience
25
+ * Focusing on what is best not just for us as individuals, but for the
26
+ overall community
27
+
28
+ Examples of unacceptable behavior include:
29
+
30
+ * The use of sexualized language or imagery, and sexual attention or
31
+ advances of any kind
32
+ * Trolling, insulting or derogatory comments, and personal or political attacks
33
+ * Public or private harassment
34
+ * Publishing others' private information, such as a physical or email
35
+ address, without their explicit permission
36
+ * Other conduct which could reasonably be considered inappropriate in a
37
+ professional setting
38
+
39
+ ## Enforcement Responsibilities
40
+
41
+ Community leaders are responsible for clarifying and enforcing our standards of
42
+ acceptable behavior and will take appropriate and fair corrective action in
43
+ response to any behavior that they deem inappropriate, threatening, offensive,
44
+ or harmful.
45
+
46
+ Community leaders have the right and responsibility to remove, edit, or reject
47
+ comments, commits, code, wiki edits, issues, and other contributions that are
48
+ not aligned to this Code of Conduct, and will communicate reasons for moderation
49
+ decisions when appropriate.
50
+
51
+ ## Scope
52
+
53
+ This Code of Conduct applies within all community spaces, and also applies when
54
+ an individual is officially representing the community in public spaces.
55
+ Examples of representing our community include using an official e-mail address,
56
+ posting via an official social media account, or acting as an appointed
57
+ representative at an online or offline event.
58
+
59
+ ## Enforcement
60
+
61
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
62
+ reported to the community leaders responsible for enforcement at
63
+ schaturvedi@gmail.com.
64
+ All complaints will be reviewed and investigated promptly and fairly.
65
+
66
+ All community leaders are obligated to respect the privacy and security of the
67
+ reporter of any incident.
68
+
69
+ ## Enforcement Guidelines
70
+
71
+ Community leaders will follow these Community Impact Guidelines in determining
72
+ the consequences for any action they deem in violation of this Code of Conduct:
73
+
74
+ ### 1. Correction
75
+
76
+ **Community Impact**: Use of inappropriate language or other behavior deemed
77
+ unprofessional or unwelcome in the community.
78
+
79
+ **Consequence**: A private, written warning from community leaders, providing
80
+ clarity around the nature of the violation and an explanation of why the
81
+ behavior was inappropriate. A public apology may be requested.
82
+
83
+ ### 2. Warning
84
+
85
+ **Community Impact**: A violation through a single incident or series
86
+ of actions.
87
+
88
+ **Consequence**: A warning with consequences for continued behavior. No
89
+ interaction with the people involved, including unsolicited interaction with
90
+ those enforcing the Code of Conduct, for a specified period of time. This
91
+ includes avoiding interactions in community spaces as well as external channels
92
+ like social media. Violating these terms may lead to a temporary or
93
+ permanent ban.
94
+
95
+ ### 3. Temporary Ban
96
+
97
+ **Community Impact**: A serious violation of community standards, including
98
+ sustained inappropriate behavior.
99
+
100
+ **Consequence**: A temporary ban from any sort of interaction or public
101
+ communication with the community for a specified period of time. No public or
102
+ private interaction with the people involved, including unsolicited interaction
103
+ with those enforcing the Code of Conduct, is allowed during this period.
104
+ Violating these terms may lead to a permanent ban.
105
+
106
+ ### 4. Permanent Ban
107
+
108
+ **Community Impact**: Demonstrating a pattern of violation of community
109
+ standards, including sustained inappropriate behavior, harassment of an
110
+ individual, or aggression toward or disparagement of classes of individuals.
111
+
112
+ **Consequence**: A permanent ban from any sort of public interaction within
113
+ the community.
114
+
115
+ ## Attribution
116
+
117
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage],
118
+ version 2.0, available at
119
+ https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
120
+
121
+ Community Impact Guidelines were inspired by [Mozilla's code of conduct
122
+ enforcement ladder](https://github.com/mozilla/diversity).
123
+
124
+ [homepage]: https://www.contributor-covenant.org
125
+
126
+ For answers to common questions about this code of conduct, see the FAQ at
127
+ https://www.contributor-covenant.org/faq. Translations are available at
128
+ https://www.contributor-covenant.org/translations.
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2021 Rock Carver
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,8 @@
1
+ <!-- README.md for NPM; the one for GitHub is .github/README.md. -->
2
+ # Frodo Library - @rockcarver/frodo-lib
3
+
4
+ ForgeROck DO Library, frodo-lib, a library to manage ForgeRock platform deployments supporting Identity Cloud tenants, ForgeOps deployments, and classic deployments.
5
+
6
+ Frodo-lib powers [frodo-cli](https://github.com/rockcarver/frodo-cli), the command line tool to manage ForgeRock deployments.
7
+
8
+ Please refer to the [GitHub README](https://github.com/rockcarver/frodo-lib#readme) for full documentation.