@redhat-cloud-services/notifications-client 2.3.1 → 2.3.2

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 (73) hide show
  1. package/CHANGELOG.md +2 -0
  2. package/doc/README.md +2 -1
  3. package/doc/classes/BaseAPI.md +21 -13
  4. package/doc/classes/Configuration.md +24 -16
  5. package/doc/classes/RequiredError.md +17 -11
  6. package/doc/enums/EndpointStatus.md +6 -6
  7. package/doc/enums/EndpointType.md +5 -5
  8. package/doc/enums/Environment.md +4 -4
  9. package/doc/enums/EventLogEntryActionStatus.md +5 -5
  10. package/doc/enums/HttpType.md +3 -3
  11. package/doc/enums/NotificationStatus.md +5 -5
  12. package/doc/enums/Status.md +2 -2
  13. package/doc/enums/SubscriptionType.md +3 -3
  14. package/doc/interfaces/AddAccessRequest.md +2 -4
  15. package/doc/interfaces/AddApplicationRequest.md +4 -6
  16. package/doc/interfaces/AggregationEmailTemplate.md +10 -12
  17. package/doc/interfaces/AggregationEmailTemplateSubjectTemplate.md +6 -8
  18. package/doc/interfaces/ApiConfig.md +2 -2
  19. package/doc/interfaces/Application.md +6 -8
  20. package/doc/interfaces/Application1.md +2 -4
  21. package/doc/interfaces/ApplicationDTO.md +6 -8
  22. package/doc/interfaces/ApplicationSettingsValue.md +1 -3
  23. package/doc/interfaces/BasicAuthentication.md +2 -4
  24. package/doc/interfaces/BehaviorGroup.md +10 -12
  25. package/doc/interfaces/BehaviorGroupAction.md +3 -5
  26. package/doc/interfaces/BehaviorGroupActionId.md +2 -4
  27. package/doc/interfaces/Bundle.md +5 -7
  28. package/doc/interfaces/BundleSettingsValue.md +1 -3
  29. package/doc/interfaces/CamelProperties.md +7 -9
  30. package/doc/interfaces/ConfigurationParameters.md +14 -10
  31. package/doc/interfaces/CreateBehaviorGroupRequest.md +7 -9
  32. package/doc/interfaces/CreateBehaviorGroupResponse.md +7 -9
  33. package/doc/interfaces/CurrentStatus.md +3 -5
  34. package/doc/interfaces/DrawerEntryPayload.md +7 -9
  35. package/doc/interfaces/DuplicateNameMigrationReport.md +2 -4
  36. package/doc/interfaces/Endpoint.md +11 -13
  37. package/doc/interfaces/EndpointPage.md +3 -5
  38. package/doc/interfaces/EndpointTestRequest.md +1 -3
  39. package/doc/interfaces/EventLogEntry.md +7 -9
  40. package/doc/interfaces/EventLogEntryAction.md +7 -9
  41. package/doc/interfaces/EventType.md +10 -12
  42. package/doc/interfaces/EventTypeBehavior.md +3 -5
  43. package/doc/interfaces/EventTypeBehaviorId.md +2 -4
  44. package/doc/interfaces/EventTypeSettingsValue.md +3 -5
  45. package/doc/interfaces/Facet.md +4 -6
  46. package/doc/interfaces/InstantEmailTemplate.md +9 -11
  47. package/doc/interfaces/InternalApplicationUserPermission.md +3 -5
  48. package/doc/interfaces/InternalRoleAccess.md +3 -5
  49. package/doc/interfaces/InternalUserPermissions.md +3 -5
  50. package/doc/interfaces/MessageValidationResponse.md +1 -3
  51. package/doc/interfaces/Meta.md +1 -3
  52. package/doc/interfaces/NotificationHistory.md +9 -11
  53. package/doc/interfaces/PageBehaviorGroup.md +3 -5
  54. package/doc/interfaces/PageDrawerEntryPayload.md +3 -5
  55. package/doc/interfaces/PageEventLogEntry.md +3 -5
  56. package/doc/interfaces/PageEventType.md +3 -5
  57. package/doc/interfaces/PageNotificationHistory.md +3 -5
  58. package/doc/interfaces/RenderEmailTemplateRequest.md +2 -4
  59. package/doc/interfaces/RequestArgs.md +6 -8
  60. package/doc/interfaces/RequestDefaultBehaviorGroupPropertyList.md +2 -4
  61. package/doc/interfaces/RequestSystemSubscriptionProperties.md +2 -4
  62. package/doc/interfaces/ServerInfo.md +1 -3
  63. package/doc/interfaces/SettingsValuesByEventType.md +1 -3
  64. package/doc/interfaces/SystemSubscriptionProperties.md +3 -5
  65. package/doc/interfaces/Template.md +6 -8
  66. package/doc/interfaces/TriggerDailyDigestRequest.md +5 -7
  67. package/doc/interfaces/UpdateApplicationRequest.md +3 -5
  68. package/doc/interfaces/UpdateBehaviorGroupRequest.md +5 -7
  69. package/doc/interfaces/UpdateNotificationDrawerStatus.md +3 -5
  70. package/doc/interfaces/WebhookProperties.md +6 -8
  71. package/doc/interfaces/X509Certificate.md +5 -7
  72. package/doc/modules.md +274 -274
  73. package/package.json +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@redhat-cloud-services/notifications-client",
3
- "version": "2.3.1",
3
+ "version": "2.3.2",
4
4
  "description": "",
5
5
  "main": "./dist/index.js",
6
6
  "typings": "./dist/index.d.ts",
@@ -18,7 +18,7 @@
18
18
  },
19
19
  "homepage": "https://github.com/RedHatInsights/javascript-clients#readme",
20
20
  "scripts": {
21
- "doc": "typedoc --plugin typedoc-plugin-markdown --theme markdown --out doc --gitRevision master index.ts",
21
+ "doc": "typedoc",
22
22
  "generate": "TS_POST_PROCESS_FILE='../../postProcess.sh' openapi-generator-cli generate -i $SPEC --custom-generator=../../target/typescript-axios-webpack-module-federation-openapi-generator-1.0.0.jar -g typescript-axios-webpack-module-federation -o . --skip-validate-spec --enable-post-process-file",
23
23
  "generate:prod": "SPEC='https://console.redhat.com/api/notifications/v1.0/openapi.json' npm run generate"
24
24
  },