@webiny/api-apw 5.33.5 → 5.34.0-beta.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (207) hide show
  1. package/ApwChangeRequestNotification.d.ts +27 -0
  2. package/ApwChangeRequestNotification.js +40 -0
  3. package/ApwChangeRequestNotification.js.map +1 -0
  4. package/ApwCommentNotification.d.ts +27 -0
  5. package/ApwCommentNotification.js +40 -0
  6. package/ApwCommentNotification.js.map +1 -0
  7. package/ApwContentReviewNotification.d.ts +26 -0
  8. package/ApwContentReviewNotification.js +40 -0
  9. package/ApwContentReviewNotification.js.map +1 -0
  10. package/ApwContentUrlPlugin.d.ts +19 -0
  11. package/ApwContentUrlPlugin.js +40 -0
  12. package/ApwContentUrlPlugin.js.map +1 -0
  13. package/ContentApwSettingsPlugin.js +1 -1
  14. package/crud/createChangeRequestMethods.js +21 -18
  15. package/crud/createChangeRequestMethods.js.map +1 -1
  16. package/crud/createCommentMethods.js +21 -18
  17. package/crud/createCommentMethods.js.map +1 -1
  18. package/crud/createContentReviewMethods.js +60 -50
  19. package/crud/createContentReviewMethods.js.map +1 -1
  20. package/crud/createReviewerMethods.js +21 -18
  21. package/crud/createReviewerMethods.js.map +1 -1
  22. package/crud/createWorkflowMethods.d.ts +1 -1
  23. package/crud/createWorkflowMethods.js +42 -20
  24. package/crud/createWorkflowMethods.js.map +1 -1
  25. package/crud/index.js +3 -7
  26. package/crud/index.js.map +1 -1
  27. package/crud/utils.js +4 -8
  28. package/crud/utils.js.map +1 -1
  29. package/index.d.ts +3 -3
  30. package/index.js +8 -4
  31. package/index.js.map +1 -1
  32. package/package.json +38 -37
  33. package/plugins/cms/CmsEntryApwSettingsGetterPlugin.js +1 -1
  34. package/plugins/cms/apwEntryPlugins.js +4 -8
  35. package/plugins/cms/apwEntryPlugins.js.map +1 -1
  36. package/plugins/cms/index.js +9 -1
  37. package/plugins/cms/index.js.map +1 -1
  38. package/plugins/cms/linkContentReviewToEntry.js +4 -4
  39. package/plugins/cms/linkContentReviewToEntry.js.map +1 -1
  40. package/plugins/cms/linkWorkflowToEntry.js +5 -5
  41. package/plugins/cms/linkWorkflowToEntry.js.map +1 -1
  42. package/plugins/cms/notifications/changeRequestNotification.d.ts +1 -0
  43. package/plugins/cms/notifications/changeRequestNotification.js +35 -0
  44. package/plugins/cms/notifications/changeRequestNotification.js.map +1 -0
  45. package/plugins/cms/notifications/commentNotification.d.ts +1 -0
  46. package/plugins/cms/notifications/commentNotification.js +35 -0
  47. package/plugins/cms/notifications/commentNotification.js.map +1 -0
  48. package/plugins/cms/notifications/contentReviewNotification.d.ts +1 -0
  49. package/plugins/cms/notifications/contentReviewNotification.js +35 -0
  50. package/plugins/cms/notifications/contentReviewNotification.js.map +1 -0
  51. package/plugins/cms/notifications/contentUrl.d.ts +8 -0
  52. package/plugins/cms/notifications/contentUrl.js +60 -0
  53. package/plugins/cms/notifications/contentUrl.js.map +1 -0
  54. package/plugins/cms/triggerContentReview.js +3 -3
  55. package/plugins/cms/triggerContentReview.js.map +1 -1
  56. package/plugins/cms/updateContentReviewStatus.js +10 -14
  57. package/plugins/cms/updateContentReviewStatus.js.map +1 -1
  58. package/plugins/cms/utils.js +4 -8
  59. package/plugins/cms/utils.js.map +1 -1
  60. package/plugins/context.js +1 -1
  61. package/plugins/graphql/changeRequest.gql.js +1 -1
  62. package/plugins/graphql/comment.gql.js +1 -1
  63. package/plugins/graphql/contentReview.gql.js +4 -4
  64. package/plugins/graphql/contentReview.gql.js.map +1 -1
  65. package/plugins/graphql/reviewer.gql.js +3 -1
  66. package/plugins/graphql/reviewer.gql.js.map +1 -1
  67. package/plugins/graphql/workflow.gql.js +1 -1
  68. package/plugins/graphql.js +1 -1
  69. package/plugins/hooks/createReviewerFromIdentity.js +28 -8
  70. package/plugins/hooks/createReviewerFromIdentity.js.map +1 -1
  71. package/plugins/hooks/deleteChangeRequestsAfterContentReview.js +1 -1
  72. package/plugins/hooks/deleteChangeRequestsAfterContentReview.js.map +1 -1
  73. package/plugins/hooks/deleteCommentsAfterChangeRequest.js +1 -1
  74. package/plugins/hooks/deleteCommentsAfterChangeRequest.js.map +1 -1
  75. package/plugins/hooks/index.js +6 -0
  76. package/plugins/hooks/index.js.map +1 -1
  77. package/plugins/hooks/initializeContentReviewSteps.js +5 -8
  78. package/plugins/hooks/initializeContentReviewSteps.js.map +1 -1
  79. package/plugins/hooks/initializeNotifications.d.ts +2 -0
  80. package/plugins/hooks/initializeNotifications.js +20 -0
  81. package/plugins/hooks/initializeNotifications.js.map +1 -0
  82. package/plugins/hooks/listContentReviews.d.ts +10 -0
  83. package/plugins/hooks/listContentReviews.js +68 -0
  84. package/plugins/hooks/listContentReviews.js.map +1 -0
  85. package/plugins/hooks/notifications/appUrl.d.ts +2 -0
  86. package/plugins/hooks/notifications/appUrl.js +22 -0
  87. package/plugins/hooks/notifications/appUrl.js.map +1 -0
  88. package/plugins/hooks/notifications/changeRequestAfterCreate.d.ts +2 -0
  89. package/plugins/hooks/notifications/changeRequestAfterCreate.js +144 -0
  90. package/plugins/hooks/notifications/changeRequestAfterCreate.js.map +1 -0
  91. package/plugins/hooks/notifications/changeRequestUrl.d.ts +8 -0
  92. package/plugins/hooks/notifications/changeRequestUrl.js +31 -0
  93. package/plugins/hooks/notifications/changeRequestUrl.js.map +1 -0
  94. package/plugins/hooks/notifications/commentAfterCreate.d.ts +2 -0
  95. package/plugins/hooks/notifications/commentAfterCreate.js +157 -0
  96. package/plugins/hooks/notifications/commentAfterCreate.js.map +1 -0
  97. package/plugins/hooks/notifications/commentUrl.d.ts +8 -0
  98. package/plugins/hooks/notifications/commentUrl.js +31 -0
  99. package/plugins/hooks/notifications/commentUrl.js.map +1 -0
  100. package/plugins/hooks/notifications/contentReviewAfterCreate.d.ts +2 -0
  101. package/plugins/hooks/notifications/contentReviewAfterCreate.js +122 -0
  102. package/plugins/hooks/notifications/contentReviewAfterCreate.js.map +1 -0
  103. package/plugins/hooks/notifications/contentReviewUrl.d.ts +7 -0
  104. package/plugins/hooks/notifications/contentReviewUrl.js +30 -0
  105. package/plugins/hooks/notifications/contentReviewUrl.js.map +1 -0
  106. package/plugins/hooks/notifications/contentUrl.d.ts +7 -0
  107. package/plugins/hooks/notifications/contentUrl.js +29 -0
  108. package/plugins/hooks/notifications/contentUrl.js.map +1 -0
  109. package/plugins/hooks/notifications/lastChangeRequestNotificationPlugin.d.ts +11 -0
  110. package/plugins/hooks/notifications/lastChangeRequestNotificationPlugin.js +25 -0
  111. package/plugins/hooks/notifications/lastChangeRequestNotificationPlugin.js.map +1 -0
  112. package/plugins/hooks/notifications/lastCommentNotificationPlugin.d.ts +11 -0
  113. package/plugins/hooks/notifications/lastCommentNotificationPlugin.js +25 -0
  114. package/plugins/hooks/notifications/lastCommentNotificationPlugin.js.map +1 -0
  115. package/plugins/hooks/notifications/lastContentReviewNotificationPlugin.d.ts +11 -0
  116. package/plugins/hooks/notifications/lastContentReviewNotificationPlugin.js +25 -0
  117. package/plugins/hooks/notifications/lastContentReviewNotificationPlugin.js.map +1 -0
  118. package/plugins/hooks/notifications/reviewers.d.ts +15 -0
  119. package/plugins/hooks/notifications/reviewers.js +51 -0
  120. package/plugins/hooks/notifications/reviewers.js.map +1 -0
  121. package/plugins/hooks/notifications/sendChangeRequestNotification.d.ts +2 -0
  122. package/plugins/hooks/notifications/sendChangeRequestNotification.js +52 -0
  123. package/plugins/hooks/notifications/sendChangeRequestNotification.js.map +1 -0
  124. package/plugins/hooks/notifications/sendCommentNotification.d.ts +2 -0
  125. package/plugins/hooks/notifications/sendCommentNotification.js +52 -0
  126. package/plugins/hooks/notifications/sendCommentNotification.js.map +1 -0
  127. package/plugins/hooks/notifications/sendContentReviewNotification.d.ts +2 -0
  128. package/plugins/hooks/notifications/sendContentReviewNotification.js +52 -0
  129. package/plugins/hooks/notifications/sendContentReviewNotification.js.map +1 -0
  130. package/plugins/hooks/updatePendingChangeRequests.js +7 -11
  131. package/plugins/hooks/updatePendingChangeRequests.js.map +1 -1
  132. package/plugins/hooks/updateTotalComments.js +14 -18
  133. package/plugins/hooks/updateTotalComments.js.map +1 -1
  134. package/plugins/hooks/validateChangeRequest.js +30 -5
  135. package/plugins/hooks/validateChangeRequest.js.map +1 -1
  136. package/plugins/hooks/validateComment.js +14 -4
  137. package/plugins/hooks/validateComment.js.map +1 -1
  138. package/plugins/hooks/validateContentReview.js +2 -2
  139. package/plugins/hooks/validateContentReview.js.map +1 -1
  140. package/plugins/pageBuilder/PageApwSettingsGetterPlugin.js +1 -1
  141. package/plugins/pageBuilder/index.js +9 -1
  142. package/plugins/pageBuilder/index.js.map +1 -1
  143. package/plugins/pageBuilder/linkContentReviewToPage.js +41 -29
  144. package/plugins/pageBuilder/linkContentReviewToPage.js.map +1 -1
  145. package/plugins/pageBuilder/linkWorkflowToPage.js +18 -6
  146. package/plugins/pageBuilder/linkWorkflowToPage.js.map +1 -1
  147. package/plugins/pageBuilder/notifications/changeRequestNotification.d.ts +1 -0
  148. package/plugins/pageBuilder/notifications/changeRequestNotification.js +35 -0
  149. package/plugins/pageBuilder/notifications/changeRequestNotification.js.map +1 -0
  150. package/plugins/pageBuilder/notifications/commentNotification.d.ts +1 -0
  151. package/plugins/pageBuilder/notifications/commentNotification.js +35 -0
  152. package/plugins/pageBuilder/notifications/commentNotification.js.map +1 -0
  153. package/plugins/pageBuilder/notifications/contentReviewNotification.d.ts +1 -0
  154. package/plugins/pageBuilder/notifications/contentReviewNotification.js +35 -0
  155. package/plugins/pageBuilder/notifications/contentReviewNotification.js.map +1 -0
  156. package/plugins/pageBuilder/notifications/contentUrl.d.ts +1 -0
  157. package/plugins/pageBuilder/notifications/contentUrl.js +53 -0
  158. package/plugins/pageBuilder/notifications/contentUrl.js.map +1 -0
  159. package/plugins/pageBuilder/triggerContentReview.js +3 -3
  160. package/plugins/pageBuilder/triggerContentReview.js.map +1 -1
  161. package/plugins/pageBuilder/updateContentReviewStatus.js +10 -14
  162. package/plugins/pageBuilder/updateContentReviewStatus.js.map +1 -1
  163. package/plugins/pageBuilder/utils.js +1 -1
  164. package/plugins/pageBuilder/utils.js.map +1 -1
  165. package/plugins/utils.d.ts +1 -1
  166. package/plugins/utils.js +4 -14
  167. package/plugins/utils.js.map +1 -1
  168. package/scheduler/createScheduleActionMethods.js +17 -14
  169. package/scheduler/createScheduleActionMethods.js.map +1 -1
  170. package/scheduler/handlers/executeAction/index.d.ts +1 -1
  171. package/scheduler/handlers/executeAction/plugins/ApplicationGraphQL.js +1 -1
  172. package/scheduler/handlers/executeAction/plugins/HeadlessCMSGraphQL.js +1 -1
  173. package/scheduler/handlers/executeAction/plugins/PageBuilderGraphQL.js +1 -1
  174. package/scheduler/handlers/scheduleAction/index.d.ts +1 -1
  175. package/scheduler/handlers/scheduleAction/index.js +8 -9
  176. package/scheduler/handlers/scheduleAction/index.js.map +1 -1
  177. package/scheduler/handlers/scheduleAction/scheduleAction.utils.js +5 -9
  178. package/scheduler/handlers/scheduleAction/scheduleAction.utils.js.map +1 -1
  179. package/scheduler/handlers/utils.d.ts +1 -1
  180. package/scheduler/handlers/utils.js +1 -1
  181. package/storageOperations/changeRequestStorageOperations.js +5 -9
  182. package/storageOperations/changeRequestStorageOperations.js.map +1 -1
  183. package/storageOperations/commentStorageOperations.js +4 -8
  184. package/storageOperations/commentStorageOperations.js.map +1 -1
  185. package/storageOperations/contentReviewStorageOperations.js +5 -9
  186. package/storageOperations/contentReviewStorageOperations.js.map +1 -1
  187. package/storageOperations/index.js +5 -9
  188. package/storageOperations/index.js.map +1 -1
  189. package/storageOperations/models/contentModelPluginFactory.js +3 -7
  190. package/storageOperations/models/contentModelPluginFactory.js.map +1 -1
  191. package/storageOperations/models/contentReview.model.js +6 -5
  192. package/storageOperations/models/contentReview.model.js.map +1 -1
  193. package/storageOperations/models/index.js +1 -1
  194. package/storageOperations/models/reviewer.model.js +18 -2
  195. package/storageOperations/models/reviewer.model.js.map +1 -1
  196. package/storageOperations/models/utils.js +3 -2
  197. package/storageOperations/models/utils.js.map +1 -1
  198. package/storageOperations/reviewerStorageOperations.js +18 -14
  199. package/storageOperations/reviewerStorageOperations.js.map +1 -1
  200. package/storageOperations/workflowStorageOperations.js +8 -12
  201. package/storageOperations/workflowStorageOperations.js.map +1 -1
  202. package/types.d.ts +99 -84
  203. package/types.js.map +1 -1
  204. package/utils/errors.js +1 -1
  205. package/utils/fieldResolver.js +3 -9
  206. package/utils/fieldResolver.js.map +1 -1
  207. package/utils/resolve.d.ts +1 -1
@@ -0,0 +1,27 @@
1
+ import { Plugin } from "@webiny/plugins";
2
+ import { ApwChangeRequest, ApwContentReview, ApwContentTypes, ApwContext, ApwReviewerWithEmail, ApwWorkflow } from "./types";
3
+ export interface ApwChangeRequestNotificationCbParams {
4
+ context: ApwContext;
5
+ reviewers: ApwReviewerWithEmail[];
6
+ changeRequestUrl: string;
7
+ contentUrl: string;
8
+ changeRequest: ApwChangeRequest;
9
+ contentReview: ApwContentReview;
10
+ workflow: ApwWorkflow;
11
+ }
12
+ export interface ApwChangeRequestNotificationCbParamsResponse {
13
+ text: string;
14
+ html?: string;
15
+ }
16
+ export interface ApwChangeRequestNotificationCb {
17
+ (params: ApwChangeRequestNotificationCbParams): ApwChangeRequestNotificationCbParamsResponse | null | undefined;
18
+ }
19
+ export declare class ApwChangeRequestNotification extends Plugin {
20
+ static readonly type: string;
21
+ private readonly contentType;
22
+ private readonly cb;
23
+ constructor(contentType: ApwContentTypes, cb: ApwChangeRequestNotificationCb);
24
+ canUse(contentType: ApwContentTypes): boolean;
25
+ create(params: ApwChangeRequestNotificationCbParams): ApwChangeRequestNotificationCbParamsResponse | null | undefined;
26
+ }
27
+ export declare const createApwChangeRequestNotification: (contentType: ApwContentTypes, cb: ApwChangeRequestNotificationCb) => ApwChangeRequestNotification;
@@ -0,0 +1,40 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
4
+
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports.createApwChangeRequestNotification = exports.ApwChangeRequestNotification = void 0;
9
+
10
+ var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
11
+
12
+ var _plugins = require("@webiny/plugins");
13
+
14
+ class ApwChangeRequestNotification extends _plugins.Plugin {
15
+ constructor(contentType, cb) {
16
+ super();
17
+ (0, _defineProperty2.default)(this, "contentType", void 0);
18
+ (0, _defineProperty2.default)(this, "cb", void 0);
19
+ this.contentType = contentType;
20
+ this.cb = cb;
21
+ }
22
+
23
+ canUse(contentType) {
24
+ return contentType === this.contentType;
25
+ }
26
+
27
+ create(params) {
28
+ return this.cb(params);
29
+ }
30
+
31
+ }
32
+
33
+ exports.ApwChangeRequestNotification = ApwChangeRequestNotification;
34
+ (0, _defineProperty2.default)(ApwChangeRequestNotification, "type", "apw.notification.changeRequest");
35
+
36
+ const createApwChangeRequestNotification = (contentType, cb) => {
37
+ return new ApwChangeRequestNotification(contentType, cb);
38
+ };
39
+
40
+ exports.createApwChangeRequestNotification = createApwChangeRequestNotification;
@@ -0,0 +1 @@
1
+ {"version":3,"names":["ApwChangeRequestNotification","Plugin","constructor","contentType","cb","canUse","create","params","createApwChangeRequestNotification"],"sources":["ApwChangeRequestNotification.ts"],"sourcesContent":["import { Plugin } from \"@webiny/plugins\";\nimport {\n ApwChangeRequest,\n ApwContentReview,\n ApwContentTypes,\n ApwContext,\n ApwReviewerWithEmail,\n ApwWorkflow\n} from \"~/types\";\n\nexport interface ApwChangeRequestNotificationCbParams {\n context: ApwContext;\n reviewers: ApwReviewerWithEmail[];\n changeRequestUrl: string;\n contentUrl: string;\n changeRequest: ApwChangeRequest;\n contentReview: ApwContentReview;\n workflow: ApwWorkflow;\n}\nexport interface ApwChangeRequestNotificationCbParamsResponse {\n text: string;\n html?: string;\n}\nexport interface ApwChangeRequestNotificationCb {\n (params: ApwChangeRequestNotificationCbParams):\n | ApwChangeRequestNotificationCbParamsResponse\n | null\n | undefined;\n}\nexport class ApwChangeRequestNotification extends Plugin {\n public static override readonly type: string = \"apw.notification.changeRequest\";\n\n private readonly contentType: ApwContentTypes;\n private readonly cb: ApwChangeRequestNotificationCb;\n\n public constructor(contentType: ApwContentTypes, cb: ApwChangeRequestNotificationCb) {\n super();\n this.contentType = contentType;\n this.cb = cb;\n }\n\n public canUse(contentType: ApwContentTypes): boolean {\n return contentType === this.contentType;\n }\n\n public create(params: ApwChangeRequestNotificationCbParams) {\n return this.cb(params);\n }\n}\n\nexport const createApwChangeRequestNotification = (\n contentType: ApwContentTypes,\n cb: ApwChangeRequestNotificationCb\n) => {\n return new ApwChangeRequestNotification(contentType, cb);\n};\n"],"mappings":";;;;;;;;;;;AAAA;;AA6BO,MAAMA,4BAAN,SAA2CC,eAA3C,CAAkD;EAM9CC,WAAW,CAACC,WAAD,EAA+BC,EAA/B,EAAmE;IACjF;IADiF;IAAA;IAEjF,KAAKD,WAAL,GAAmBA,WAAnB;IACA,KAAKC,EAAL,GAAUA,EAAV;EACH;;EAEMC,MAAM,CAACF,WAAD,EAAwC;IACjD,OAAOA,WAAW,KAAK,KAAKA,WAA5B;EACH;;EAEMG,MAAM,CAACC,MAAD,EAA+C;IACxD,OAAO,KAAKH,EAAL,CAAQG,MAAR,CAAP;EACH;;AAlBoD;;;8BAA5CP,4B,UACsC,gC;;AAoB5C,MAAMQ,kCAAkC,GAAG,CAC9CL,WAD8C,EAE9CC,EAF8C,KAG7C;EACD,OAAO,IAAIJ,4BAAJ,CAAiCG,WAAjC,EAA8CC,EAA9C,CAAP;AACH,CALM"}
@@ -0,0 +1,27 @@
1
+ import { Plugin } from "@webiny/plugins";
2
+ import { ApwChangeRequest, ApwContentReview, ApwContentTypes, ApwContext, ApwReviewerWithEmail, ApwWorkflow } from "./types";
3
+ export interface ApwCommentNotificationCbParams {
4
+ context: ApwContext;
5
+ reviewers: ApwReviewerWithEmail[];
6
+ commentUrl: string;
7
+ contentUrl: string;
8
+ changeRequest: ApwChangeRequest;
9
+ contentReview: ApwContentReview;
10
+ workflow: ApwWorkflow;
11
+ }
12
+ export interface ApwCommentNotificationCbParamsResponse {
13
+ text: string;
14
+ html?: string;
15
+ }
16
+ export interface ApwCommentNotificationCb {
17
+ (params: ApwCommentNotificationCbParams): ApwCommentNotificationCbParamsResponse | null | undefined;
18
+ }
19
+ export declare class ApwCommentNotification extends Plugin {
20
+ static readonly type: string;
21
+ private readonly contentType;
22
+ private readonly cb;
23
+ constructor(contentType: ApwContentTypes, cb: ApwCommentNotificationCb);
24
+ canUse(contentType: ApwContentTypes): boolean;
25
+ create(params: ApwCommentNotificationCbParams): ApwCommentNotificationCbParamsResponse | null | undefined;
26
+ }
27
+ export declare const createApwCommentNotification: (contentType: ApwContentTypes, cb: ApwCommentNotificationCb) => ApwCommentNotification;
@@ -0,0 +1,40 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
4
+
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports.createApwCommentNotification = exports.ApwCommentNotification = void 0;
9
+
10
+ var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
11
+
12
+ var _plugins = require("@webiny/plugins");
13
+
14
+ class ApwCommentNotification extends _plugins.Plugin {
15
+ constructor(contentType, cb) {
16
+ super();
17
+ (0, _defineProperty2.default)(this, "contentType", void 0);
18
+ (0, _defineProperty2.default)(this, "cb", void 0);
19
+ this.contentType = contentType;
20
+ this.cb = cb;
21
+ }
22
+
23
+ canUse(contentType) {
24
+ return contentType === this.contentType;
25
+ }
26
+
27
+ create(params) {
28
+ return this.cb(params);
29
+ }
30
+
31
+ }
32
+
33
+ exports.ApwCommentNotification = ApwCommentNotification;
34
+ (0, _defineProperty2.default)(ApwCommentNotification, "type", "apw.notification.comment");
35
+
36
+ const createApwCommentNotification = (contentType, cb) => {
37
+ return new ApwCommentNotification(contentType, cb);
38
+ };
39
+
40
+ exports.createApwCommentNotification = createApwCommentNotification;
@@ -0,0 +1 @@
1
+ {"version":3,"names":["ApwCommentNotification","Plugin","constructor","contentType","cb","canUse","create","params","createApwCommentNotification"],"sources":["ApwCommentNotification.ts"],"sourcesContent":["import { Plugin } from \"@webiny/plugins\";\nimport {\n ApwChangeRequest,\n ApwContentReview,\n ApwContentTypes,\n ApwContext,\n ApwReviewerWithEmail,\n ApwWorkflow\n} from \"~/types\";\n\nexport interface ApwCommentNotificationCbParams {\n context: ApwContext;\n reviewers: ApwReviewerWithEmail[];\n commentUrl: string;\n contentUrl: string;\n changeRequest: ApwChangeRequest;\n contentReview: ApwContentReview;\n workflow: ApwWorkflow;\n}\nexport interface ApwCommentNotificationCbParamsResponse {\n text: string;\n html?: string;\n}\nexport interface ApwCommentNotificationCb {\n (params: ApwCommentNotificationCbParams):\n | ApwCommentNotificationCbParamsResponse\n | null\n | undefined;\n}\nexport class ApwCommentNotification extends Plugin {\n public static override readonly type: string = \"apw.notification.comment\";\n\n private readonly contentType: ApwContentTypes;\n private readonly cb: ApwCommentNotificationCb;\n\n public constructor(contentType: ApwContentTypes, cb: ApwCommentNotificationCb) {\n super();\n this.contentType = contentType;\n this.cb = cb;\n }\n\n public canUse(contentType: ApwContentTypes): boolean {\n return contentType === this.contentType;\n }\n\n public create(params: ApwCommentNotificationCbParams) {\n return this.cb(params);\n }\n}\n\nexport const createApwCommentNotification = (\n contentType: ApwContentTypes,\n cb: ApwCommentNotificationCb\n) => {\n return new ApwCommentNotification(contentType, cb);\n};\n"],"mappings":";;;;;;;;;;;AAAA;;AA6BO,MAAMA,sBAAN,SAAqCC,eAArC,CAA4C;EAMxCC,WAAW,CAACC,WAAD,EAA+BC,EAA/B,EAA6D;IAC3E;IAD2E;IAAA;IAE3E,KAAKD,WAAL,GAAmBA,WAAnB;IACA,KAAKC,EAAL,GAAUA,EAAV;EACH;;EAEMC,MAAM,CAACF,WAAD,EAAwC;IACjD,OAAOA,WAAW,KAAK,KAAKA,WAA5B;EACH;;EAEMG,MAAM,CAACC,MAAD,EAAyC;IAClD,OAAO,KAAKH,EAAL,CAAQG,MAAR,CAAP;EACH;;AAlB8C;;;8BAAtCP,sB,UACsC,0B;;AAoB5C,MAAMQ,4BAA4B,GAAG,CACxCL,WADwC,EAExCC,EAFwC,KAGvC;EACD,OAAO,IAAIJ,sBAAJ,CAA2BG,WAA3B,EAAwCC,EAAxC,CAAP;AACH,CALM"}
@@ -0,0 +1,26 @@
1
+ import { Plugin } from "@webiny/plugins";
2
+ import { ApwContentReview, ApwContentTypes, ApwContext, ApwReviewerWithEmail, ApwWorkflow } from "./types";
3
+ export interface ApwContentReviewNotificationCbParams {
4
+ context: ApwContext;
5
+ reviewers: ApwReviewerWithEmail[];
6
+ contentReviewUrl: string;
7
+ contentUrl: string;
8
+ contentReview: ApwContentReview;
9
+ workflow: ApwWorkflow;
10
+ }
11
+ export interface ApwContentReviewNotificationCbParamsResponse {
12
+ text: string;
13
+ html?: string;
14
+ }
15
+ export interface ApwContentReviewNotificationCb {
16
+ (params: ApwContentReviewNotificationCbParams): ApwContentReviewNotificationCbParamsResponse | null | undefined;
17
+ }
18
+ export declare class ApwContentReviewNotification extends Plugin {
19
+ static readonly type: string;
20
+ private readonly contentType;
21
+ private readonly cb;
22
+ constructor(contentType: ApwContentTypes, cb: ApwContentReviewNotificationCb);
23
+ canUse(contentType: ApwContentTypes): boolean;
24
+ create(params: ApwContentReviewNotificationCbParams): ApwContentReviewNotificationCbParamsResponse | null | undefined;
25
+ }
26
+ export declare const createApwContentReviewNotification: (contentType: ApwContentTypes, cb: ApwContentReviewNotificationCb) => ApwContentReviewNotification;
@@ -0,0 +1,40 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
4
+
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports.createApwContentReviewNotification = exports.ApwContentReviewNotification = void 0;
9
+
10
+ var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
11
+
12
+ var _plugins = require("@webiny/plugins");
13
+
14
+ class ApwContentReviewNotification extends _plugins.Plugin {
15
+ constructor(contentType, cb) {
16
+ super();
17
+ (0, _defineProperty2.default)(this, "contentType", void 0);
18
+ (0, _defineProperty2.default)(this, "cb", void 0);
19
+ this.contentType = contentType;
20
+ this.cb = cb;
21
+ }
22
+
23
+ canUse(contentType) {
24
+ return contentType === this.contentType;
25
+ }
26
+
27
+ create(params) {
28
+ return this.cb(params);
29
+ }
30
+
31
+ }
32
+
33
+ exports.ApwContentReviewNotification = ApwContentReviewNotification;
34
+ (0, _defineProperty2.default)(ApwContentReviewNotification, "type", "apw.notification.contentReview");
35
+
36
+ const createApwContentReviewNotification = (contentType, cb) => {
37
+ return new ApwContentReviewNotification(contentType, cb);
38
+ };
39
+
40
+ exports.createApwContentReviewNotification = createApwContentReviewNotification;
@@ -0,0 +1 @@
1
+ {"version":3,"names":["ApwContentReviewNotification","Plugin","constructor","contentType","cb","canUse","create","params","createApwContentReviewNotification"],"sources":["ApwContentReviewNotification.ts"],"sourcesContent":["import { Plugin } from \"@webiny/plugins\";\nimport {\n ApwContentReview,\n ApwContentTypes,\n ApwContext,\n ApwReviewerWithEmail,\n ApwWorkflow\n} from \"~/types\";\n\nexport interface ApwContentReviewNotificationCbParams {\n context: ApwContext;\n reviewers: ApwReviewerWithEmail[];\n contentReviewUrl: string;\n contentUrl: string;\n contentReview: ApwContentReview;\n workflow: ApwWorkflow;\n}\nexport interface ApwContentReviewNotificationCbParamsResponse {\n text: string;\n html?: string;\n}\nexport interface ApwContentReviewNotificationCb {\n (params: ApwContentReviewNotificationCbParams):\n | ApwContentReviewNotificationCbParamsResponse\n | null\n | undefined;\n}\nexport class ApwContentReviewNotification extends Plugin {\n public static override readonly type: string = \"apw.notification.contentReview\";\n\n private readonly contentType: ApwContentTypes;\n private readonly cb: ApwContentReviewNotificationCb;\n\n public constructor(contentType: ApwContentTypes, cb: ApwContentReviewNotificationCb) {\n super();\n this.contentType = contentType;\n this.cb = cb;\n }\n\n public canUse(contentType: ApwContentTypes): boolean {\n return contentType === this.contentType;\n }\n\n public create(params: ApwContentReviewNotificationCbParams) {\n return this.cb(params);\n }\n}\n\nexport const createApwContentReviewNotification = (\n contentType: ApwContentTypes,\n cb: ApwContentReviewNotificationCb\n) => {\n return new ApwContentReviewNotification(contentType, cb);\n};\n"],"mappings":";;;;;;;;;;;AAAA;;AA2BO,MAAMA,4BAAN,SAA2CC,eAA3C,CAAkD;EAM9CC,WAAW,CAACC,WAAD,EAA+BC,EAA/B,EAAmE;IACjF;IADiF;IAAA;IAEjF,KAAKD,WAAL,GAAmBA,WAAnB;IACA,KAAKC,EAAL,GAAUA,EAAV;EACH;;EAEMC,MAAM,CAACF,WAAD,EAAwC;IACjD,OAAOA,WAAW,KAAK,KAAKA,WAA5B;EACH;;EAEMG,MAAM,CAACC,MAAD,EAA+C;IACxD,OAAO,KAAKH,EAAL,CAAQG,MAAR,CAAP;EACH;;AAlBoD;;;8BAA5CP,4B,UACsC,gC;;AAoB5C,MAAMQ,kCAAkC,GAAG,CAC9CL,WAD8C,EAE9CC,EAF8C,KAG7C;EACD,OAAO,IAAIJ,4BAAJ,CAAiCG,WAAjC,EAA8CC,EAA9C,CAAP;AACH,CALM"}
@@ -0,0 +1,19 @@
1
+ import { Plugin } from "@webiny/plugins";
2
+ import { ApwContentReview, ApwContentTypes, ApwWorkflow } from "./types";
3
+ export interface ApwContentUrlPluginCbParams {
4
+ baseUrl: string;
5
+ contentReview: ApwContentReview;
6
+ workflow: ApwWorkflow;
7
+ }
8
+ export interface ApwContentUrlPluginCb {
9
+ (params: ApwContentUrlPluginCbParams): string | null;
10
+ }
11
+ export declare class ApwContentUrlPlugin extends Plugin {
12
+ static type: string;
13
+ private readonly cb;
14
+ private readonly contentType;
15
+ constructor(contentType: ApwContentTypes, cb: ApwContentUrlPluginCb);
16
+ canUse(contentType: ApwContentTypes): boolean;
17
+ create(params: ApwContentUrlPluginCbParams): string | null;
18
+ }
19
+ export declare const createApwContentUrlPlugin: (contentType: ApwContentTypes, cb: ApwContentUrlPluginCb) => ApwContentUrlPlugin;
@@ -0,0 +1,40 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
4
+
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports.createApwContentUrlPlugin = exports.ApwContentUrlPlugin = void 0;
9
+
10
+ var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
11
+
12
+ var _plugins = require("@webiny/plugins");
13
+
14
+ class ApwContentUrlPlugin extends _plugins.Plugin {
15
+ constructor(contentType, cb) {
16
+ super();
17
+ (0, _defineProperty2.default)(this, "cb", void 0);
18
+ (0, _defineProperty2.default)(this, "contentType", void 0);
19
+ this.contentType = contentType;
20
+ this.cb = cb;
21
+ }
22
+
23
+ canUse(contentType) {
24
+ return this.contentType === contentType;
25
+ }
26
+
27
+ create(params) {
28
+ return this.cb(params);
29
+ }
30
+
31
+ }
32
+
33
+ exports.ApwContentUrlPlugin = ApwContentUrlPlugin;
34
+ (0, _defineProperty2.default)(ApwContentUrlPlugin, "type", "apw.contentUrl");
35
+
36
+ const createApwContentUrlPlugin = (contentType, cb) => {
37
+ return new ApwContentUrlPlugin(contentType, cb);
38
+ };
39
+
40
+ exports.createApwContentUrlPlugin = createApwContentUrlPlugin;
@@ -0,0 +1 @@
1
+ {"version":3,"names":["ApwContentUrlPlugin","Plugin","constructor","contentType","cb","canUse","create","params","createApwContentUrlPlugin"],"sources":["ApwContentUrlPlugin.ts"],"sourcesContent":["import { Plugin } from \"@webiny/plugins\";\nimport { ApwContentReview, ApwContentTypes, ApwWorkflow } from \"~/types\";\n\nexport interface ApwContentUrlPluginCbParams {\n baseUrl: string;\n contentReview: ApwContentReview;\n workflow: ApwWorkflow;\n}\nexport interface ApwContentUrlPluginCb {\n (params: ApwContentUrlPluginCbParams): string | null;\n}\n\nexport class ApwContentUrlPlugin extends Plugin {\n public static override type = \"apw.contentUrl\";\n\n private readonly cb: ApwContentUrlPluginCb;\n private readonly contentType: ApwContentTypes;\n\n public constructor(contentType: ApwContentTypes, cb: ApwContentUrlPluginCb) {\n super();\n\n this.contentType = contentType;\n this.cb = cb;\n }\n\n public canUse(contentType: ApwContentTypes): boolean {\n return this.contentType === contentType;\n }\n\n public create(params: ApwContentUrlPluginCbParams): string | null {\n return this.cb(params);\n }\n}\n\nexport const createApwContentUrlPlugin = (\n contentType: ApwContentTypes,\n cb: ApwContentUrlPluginCb\n) => {\n return new ApwContentUrlPlugin(contentType, cb);\n};\n"],"mappings":";;;;;;;;;;;AAAA;;AAYO,MAAMA,mBAAN,SAAkCC,eAAlC,CAAyC;EAMrCC,WAAW,CAACC,WAAD,EAA+BC,EAA/B,EAA0D;IACxE;IADwE;IAAA;IAGxE,KAAKD,WAAL,GAAmBA,WAAnB;IACA,KAAKC,EAAL,GAAUA,EAAV;EACH;;EAEMC,MAAM,CAACF,WAAD,EAAwC;IACjD,OAAO,KAAKA,WAAL,KAAqBA,WAA5B;EACH;;EAEMG,MAAM,CAACC,MAAD,EAAqD;IAC9D,OAAO,KAAKH,EAAL,CAAQG,MAAR,CAAP;EACH;;AAnB2C;;;8BAAnCP,mB,UACqB,gB;;AAqB3B,MAAMQ,yBAAyB,GAAG,CACrCL,WADqC,EAErCC,EAFqC,KAGpC;EACD,OAAO,IAAIJ,mBAAJ,CAAwBG,WAAxB,EAAqCC,EAArC,CAAP;AACH,CALM"}
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
 
3
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
4
4
 
5
5
  Object.defineProperty(exports, "__esModule", {
6
6
  value: true
@@ -10,12 +10,15 @@ var _pubsub = require("@webiny/pubsub");
10
10
  function createChangeRequestMethods({
11
11
  storageOperations
12
12
  }) {
13
- const onBeforeChangeRequestCreate = (0, _pubsub.createTopic)();
14
- const onAfterChangeRequestCreate = (0, _pubsub.createTopic)();
15
- const onBeforeChangeRequestUpdate = (0, _pubsub.createTopic)();
16
- const onAfterChangeRequestUpdate = (0, _pubsub.createTopic)();
17
- const onBeforeChangeRequestDelete = (0, _pubsub.createTopic)();
18
- const onAfterChangeRequestDelete = (0, _pubsub.createTopic)();
13
+ // create
14
+ const onChangeRequestBeforeCreate = (0, _pubsub.createTopic)("apw.onChangeRequestBeforeCreate");
15
+ const onChangeRequestAfterCreate = (0, _pubsub.createTopic)("apw.onChangeRequestAfterCreate"); // update
16
+
17
+ const onChangeRequestBeforeUpdate = (0, _pubsub.createTopic)("apw.onChangeRequestBeforeUpdate");
18
+ const onChangeRequestAfterUpdate = (0, _pubsub.createTopic)("apw.onChangeRequestAfterUpdate"); // delete
19
+
20
+ const onChangeRequestBeforeDelete = (0, _pubsub.createTopic)("apw.onChangeRequestBeforeDelete");
21
+ const onChangeRequestAfterDelete = (0, _pubsub.createTopic)("apw.onChangeRequestAfterDelete");
19
22
  return {
20
23
  async get(id) {
21
24
  return storageOperations.getChangeRequest({
@@ -28,13 +31,13 @@ function createChangeRequestMethods({
28
31
  },
29
32
 
30
33
  async create(data) {
31
- await onBeforeChangeRequestCreate.publish({
34
+ await onChangeRequestBeforeCreate.publish({
32
35
  input: data
33
36
  });
34
37
  const changeRequest = await storageOperations.createChangeRequest({
35
38
  data
36
39
  });
37
- await onAfterChangeRequestCreate.publish({
40
+ await onChangeRequestAfterCreate.publish({
38
41
  changeRequest
39
42
  });
40
43
  return changeRequest;
@@ -44,7 +47,7 @@ function createChangeRequestMethods({
44
47
  const original = await storageOperations.getChangeRequest({
45
48
  id
46
49
  });
47
- await onBeforeChangeRequestUpdate.publish({
50
+ await onChangeRequestBeforeUpdate.publish({
48
51
  original,
49
52
  input: {
50
53
  id,
@@ -55,7 +58,7 @@ function createChangeRequestMethods({
55
58
  id,
56
59
  data
57
60
  });
58
- await onAfterChangeRequestUpdate.publish({
61
+ await onChangeRequestAfterUpdate.publish({
59
62
  original,
60
63
  input: {
61
64
  id,
@@ -70,13 +73,13 @@ function createChangeRequestMethods({
70
73
  const changeRequest = await storageOperations.getChangeRequest({
71
74
  id
72
75
  });
73
- await onBeforeChangeRequestDelete.publish({
76
+ await onChangeRequestBeforeDelete.publish({
74
77
  changeRequest
75
78
  });
76
79
  await storageOperations.deleteChangeRequest({
77
80
  id
78
81
  });
79
- await onAfterChangeRequestDelete.publish({
82
+ await onChangeRequestAfterDelete.publish({
80
83
  changeRequest
81
84
  });
82
85
  return true;
@@ -85,11 +88,11 @@ function createChangeRequestMethods({
85
88
  /**
86
89
  * Lifecycle events
87
90
  */
88
- onBeforeChangeRequestCreate,
89
- onAfterChangeRequestCreate,
90
- onBeforeChangeRequestUpdate,
91
- onAfterChangeRequestUpdate,
92
- onBeforeChangeRequestDelete,
93
- onAfterChangeRequestDelete
91
+ onChangeRequestBeforeCreate,
92
+ onChangeRequestAfterCreate,
93
+ onChangeRequestBeforeUpdate,
94
+ onChangeRequestAfterUpdate,
95
+ onChangeRequestBeforeDelete,
96
+ onChangeRequestAfterDelete
94
97
  };
95
98
  }
@@ -1 +1 @@
1
- {"version":3,"names":["createChangeRequestMethods","storageOperations","onBeforeChangeRequestCreate","createTopic","onAfterChangeRequestCreate","onBeforeChangeRequestUpdate","onAfterChangeRequestUpdate","onBeforeChangeRequestDelete","onAfterChangeRequestDelete","get","id","getChangeRequest","list","params","listChangeRequests","create","data","publish","input","changeRequest","createChangeRequest","update","original","updateChangeRequest","delete","deleteChangeRequest"],"sources":["createChangeRequestMethods.ts"],"sourcesContent":["import { createTopic } from \"@webiny/pubsub\";\nimport {\n ApwChangeRequestCrud,\n CreateApwParams,\n OnAfterChangeRequestCreateTopicParams,\n OnAfterChangeRequestDeleteTopicParams,\n OnAfterChangeRequestUpdateTopicParams,\n OnBeforeChangeRequestCreateTopicParams,\n OnBeforeChangeRequestDeleteTopicParams,\n OnBeforeChangeRequestUpdateTopicParams\n} from \"~/types\";\n\nexport function createChangeRequestMethods({\n storageOperations\n}: CreateApwParams): ApwChangeRequestCrud {\n const onBeforeChangeRequestCreate = createTopic<OnBeforeChangeRequestCreateTopicParams>();\n const onAfterChangeRequestCreate = createTopic<OnAfterChangeRequestCreateTopicParams>();\n const onBeforeChangeRequestUpdate = createTopic<OnBeforeChangeRequestUpdateTopicParams>();\n const onAfterChangeRequestUpdate = createTopic<OnAfterChangeRequestUpdateTopicParams>();\n const onBeforeChangeRequestDelete = createTopic<OnBeforeChangeRequestDeleteTopicParams>();\n const onAfterChangeRequestDelete = createTopic<OnAfterChangeRequestDeleteTopicParams>();\n\n return {\n async get(id) {\n return storageOperations.getChangeRequest({ id });\n },\n async list(params) {\n return storageOperations.listChangeRequests(params);\n },\n async create(data) {\n await onBeforeChangeRequestCreate.publish({ input: data });\n\n const changeRequest = await storageOperations.createChangeRequest({ data });\n\n await onAfterChangeRequestCreate.publish({ changeRequest });\n\n return changeRequest;\n },\n async update(id, data) {\n const original = await storageOperations.getChangeRequest({ id });\n\n await onBeforeChangeRequestUpdate.publish({ original, input: { id, data } });\n\n const changeRequest = await storageOperations.updateChangeRequest({ id, data });\n\n await onAfterChangeRequestUpdate.publish({\n original,\n input: { id, data },\n changeRequest\n });\n\n return changeRequest;\n },\n async delete(id: string) {\n const changeRequest = await storageOperations.getChangeRequest({ id });\n\n await onBeforeChangeRequestDelete.publish({ changeRequest });\n\n await storageOperations.deleteChangeRequest({ id });\n\n await onAfterChangeRequestDelete.publish({ changeRequest });\n\n return true;\n },\n /**\n * Lifecycle events\n */\n onBeforeChangeRequestCreate,\n onAfterChangeRequestCreate,\n onBeforeChangeRequestUpdate,\n onAfterChangeRequestUpdate,\n onBeforeChangeRequestDelete,\n onAfterChangeRequestDelete\n };\n}\n"],"mappings":";;;;;;;AAAA;;AAYO,SAASA,0BAAT,CAAoC;EACvCC;AADuC,CAApC,EAEmC;EACtC,MAAMC,2BAA2B,GAAG,IAAAC,mBAAA,GAApC;EACA,MAAMC,0BAA0B,GAAG,IAAAD,mBAAA,GAAnC;EACA,MAAME,2BAA2B,GAAG,IAAAF,mBAAA,GAApC;EACA,MAAMG,0BAA0B,GAAG,IAAAH,mBAAA,GAAnC;EACA,MAAMI,2BAA2B,GAAG,IAAAJ,mBAAA,GAApC;EACA,MAAMK,0BAA0B,GAAG,IAAAL,mBAAA,GAAnC;EAEA,OAAO;IACH,MAAMM,GAAN,CAAUC,EAAV,EAAc;MACV,OAAOT,iBAAiB,CAACU,gBAAlB,CAAmC;QAAED;MAAF,CAAnC,CAAP;IACH,CAHE;;IAIH,MAAME,IAAN,CAAWC,MAAX,EAAmB;MACf,OAAOZ,iBAAiB,CAACa,kBAAlB,CAAqCD,MAArC,CAAP;IACH,CANE;;IAOH,MAAME,MAAN,CAAaC,IAAb,EAAmB;MACf,MAAMd,2BAA2B,CAACe,OAA5B,CAAoC;QAAEC,KAAK,EAAEF;MAAT,CAApC,CAAN;MAEA,MAAMG,aAAa,GAAG,MAAMlB,iBAAiB,CAACmB,mBAAlB,CAAsC;QAAEJ;MAAF,CAAtC,CAA5B;MAEA,MAAMZ,0BAA0B,CAACa,OAA3B,CAAmC;QAAEE;MAAF,CAAnC,CAAN;MAEA,OAAOA,aAAP;IACH,CAfE;;IAgBH,MAAME,MAAN,CAAaX,EAAb,EAAiBM,IAAjB,EAAuB;MACnB,MAAMM,QAAQ,GAAG,MAAMrB,iBAAiB,CAACU,gBAAlB,CAAmC;QAAED;MAAF,CAAnC,CAAvB;MAEA,MAAML,2BAA2B,CAACY,OAA5B,CAAoC;QAAEK,QAAF;QAAYJ,KAAK,EAAE;UAAER,EAAF;UAAMM;QAAN;MAAnB,CAApC,CAAN;MAEA,MAAMG,aAAa,GAAG,MAAMlB,iBAAiB,CAACsB,mBAAlB,CAAsC;QAAEb,EAAF;QAAMM;MAAN,CAAtC,CAA5B;MAEA,MAAMV,0BAA0B,CAACW,OAA3B,CAAmC;QACrCK,QADqC;QAErCJ,KAAK,EAAE;UAAER,EAAF;UAAMM;QAAN,CAF8B;QAGrCG;MAHqC,CAAnC,CAAN;MAMA,OAAOA,aAAP;IACH,CA9BE;;IA+BH,MAAMK,MAAN,CAAad,EAAb,EAAyB;MACrB,MAAMS,aAAa,GAAG,MAAMlB,iBAAiB,CAACU,gBAAlB,CAAmC;QAAED;MAAF,CAAnC,CAA5B;MAEA,MAAMH,2BAA2B,CAACU,OAA5B,CAAoC;QAAEE;MAAF,CAApC,CAAN;MAEA,MAAMlB,iBAAiB,CAACwB,mBAAlB,CAAsC;QAAEf;MAAF,CAAtC,CAAN;MAEA,MAAMF,0BAA0B,CAACS,OAA3B,CAAmC;QAAEE;MAAF,CAAnC,CAAN;MAEA,OAAO,IAAP;IACH,CAzCE;;IA0CH;AACR;AACA;IACQjB,2BA7CG;IA8CHE,0BA9CG;IA+CHC,2BA/CG;IAgDHC,0BAhDG;IAiDHC,2BAjDG;IAkDHC;EAlDG,CAAP;AAoDH"}
1
+ {"version":3,"names":["createChangeRequestMethods","storageOperations","onChangeRequestBeforeCreate","createTopic","onChangeRequestAfterCreate","onChangeRequestBeforeUpdate","onChangeRequestAfterUpdate","onChangeRequestBeforeDelete","onChangeRequestAfterDelete","get","id","getChangeRequest","list","params","listChangeRequests","create","data","publish","input","changeRequest","createChangeRequest","update","original","updateChangeRequest","delete","deleteChangeRequest"],"sources":["createChangeRequestMethods.ts"],"sourcesContent":["import { createTopic } from \"@webiny/pubsub\";\nimport {\n ApwChangeRequestCrud,\n CreateApwParams,\n OnChangeRequestAfterCreateTopicParams,\n OnChangeRequestAfterDeleteTopicParams,\n OnChangeRequestAfterUpdateTopicParams,\n OnChangeRequestBeforeCreateTopicParams,\n OnChangeRequestBeforeDeleteTopicParams,\n OnChangeRequestBeforeUpdateTopicParams\n} from \"~/types\";\n\nexport function createChangeRequestMethods({\n storageOperations\n}: CreateApwParams): ApwChangeRequestCrud {\n // create\n const onChangeRequestBeforeCreate = createTopic<OnChangeRequestBeforeCreateTopicParams>(\n \"apw.onChangeRequestBeforeCreate\"\n );\n const onChangeRequestAfterCreate = createTopic<OnChangeRequestAfterCreateTopicParams>(\n \"apw.onChangeRequestAfterCreate\"\n );\n // update\n const onChangeRequestBeforeUpdate = createTopic<OnChangeRequestBeforeUpdateTopicParams>(\n \"apw.onChangeRequestBeforeUpdate\"\n );\n const onChangeRequestAfterUpdate = createTopic<OnChangeRequestAfterUpdateTopicParams>(\n \"apw.onChangeRequestAfterUpdate\"\n );\n // delete\n const onChangeRequestBeforeDelete = createTopic<OnChangeRequestBeforeDeleteTopicParams>(\n \"apw.onChangeRequestBeforeDelete\"\n );\n const onChangeRequestAfterDelete = createTopic<OnChangeRequestAfterDeleteTopicParams>(\n \"apw.onChangeRequestAfterDelete\"\n );\n\n return {\n async get(id) {\n return storageOperations.getChangeRequest({ id });\n },\n async list(params) {\n return storageOperations.listChangeRequests(params);\n },\n async create(data) {\n await onChangeRequestBeforeCreate.publish({ input: data });\n\n const changeRequest = await storageOperations.createChangeRequest({ data });\n\n await onChangeRequestAfterCreate.publish({ changeRequest });\n\n return changeRequest;\n },\n async update(id, data) {\n const original = await storageOperations.getChangeRequest({ id });\n\n await onChangeRequestBeforeUpdate.publish({ original, input: { id, data } });\n\n const changeRequest = await storageOperations.updateChangeRequest({ id, data });\n\n await onChangeRequestAfterUpdate.publish({\n original,\n input: { id, data },\n changeRequest\n });\n\n return changeRequest;\n },\n async delete(id: string) {\n const changeRequest = await storageOperations.getChangeRequest({ id });\n\n await onChangeRequestBeforeDelete.publish({ changeRequest });\n\n await storageOperations.deleteChangeRequest({ id });\n\n await onChangeRequestAfterDelete.publish({ changeRequest });\n\n return true;\n },\n /**\n * Lifecycle events\n */\n onChangeRequestBeforeCreate,\n onChangeRequestAfterCreate,\n onChangeRequestBeforeUpdate,\n onChangeRequestAfterUpdate,\n onChangeRequestBeforeDelete,\n onChangeRequestAfterDelete\n };\n}\n"],"mappings":";;;;;;;AAAA;;AAYO,SAASA,0BAAT,CAAoC;EACvCC;AADuC,CAApC,EAEmC;EACtC;EACA,MAAMC,2BAA2B,GAAG,IAAAC,mBAAA,EAChC,iCADgC,CAApC;EAGA,MAAMC,0BAA0B,GAAG,IAAAD,mBAAA,EAC/B,gCAD+B,CAAnC,CALsC,CAQtC;;EACA,MAAME,2BAA2B,GAAG,IAAAF,mBAAA,EAChC,iCADgC,CAApC;EAGA,MAAMG,0BAA0B,GAAG,IAAAH,mBAAA,EAC/B,gCAD+B,CAAnC,CAZsC,CAetC;;EACA,MAAMI,2BAA2B,GAAG,IAAAJ,mBAAA,EAChC,iCADgC,CAApC;EAGA,MAAMK,0BAA0B,GAAG,IAAAL,mBAAA,EAC/B,gCAD+B,CAAnC;EAIA,OAAO;IACH,MAAMM,GAAN,CAAUC,EAAV,EAAc;MACV,OAAOT,iBAAiB,CAACU,gBAAlB,CAAmC;QAAED;MAAF,CAAnC,CAAP;IACH,CAHE;;IAIH,MAAME,IAAN,CAAWC,MAAX,EAAmB;MACf,OAAOZ,iBAAiB,CAACa,kBAAlB,CAAqCD,MAArC,CAAP;IACH,CANE;;IAOH,MAAME,MAAN,CAAaC,IAAb,EAAmB;MACf,MAAMd,2BAA2B,CAACe,OAA5B,CAAoC;QAAEC,KAAK,EAAEF;MAAT,CAApC,CAAN;MAEA,MAAMG,aAAa,GAAG,MAAMlB,iBAAiB,CAACmB,mBAAlB,CAAsC;QAAEJ;MAAF,CAAtC,CAA5B;MAEA,MAAMZ,0BAA0B,CAACa,OAA3B,CAAmC;QAAEE;MAAF,CAAnC,CAAN;MAEA,OAAOA,aAAP;IACH,CAfE;;IAgBH,MAAME,MAAN,CAAaX,EAAb,EAAiBM,IAAjB,EAAuB;MACnB,MAAMM,QAAQ,GAAG,MAAMrB,iBAAiB,CAACU,gBAAlB,CAAmC;QAAED;MAAF,CAAnC,CAAvB;MAEA,MAAML,2BAA2B,CAACY,OAA5B,CAAoC;QAAEK,QAAF;QAAYJ,KAAK,EAAE;UAAER,EAAF;UAAMM;QAAN;MAAnB,CAApC,CAAN;MAEA,MAAMG,aAAa,GAAG,MAAMlB,iBAAiB,CAACsB,mBAAlB,CAAsC;QAAEb,EAAF;QAAMM;MAAN,CAAtC,CAA5B;MAEA,MAAMV,0BAA0B,CAACW,OAA3B,CAAmC;QACrCK,QADqC;QAErCJ,KAAK,EAAE;UAAER,EAAF;UAAMM;QAAN,CAF8B;QAGrCG;MAHqC,CAAnC,CAAN;MAMA,OAAOA,aAAP;IACH,CA9BE;;IA+BH,MAAMK,MAAN,CAAad,EAAb,EAAyB;MACrB,MAAMS,aAAa,GAAG,MAAMlB,iBAAiB,CAACU,gBAAlB,CAAmC;QAAED;MAAF,CAAnC,CAA5B;MAEA,MAAMH,2BAA2B,CAACU,OAA5B,CAAoC;QAAEE;MAAF,CAApC,CAAN;MAEA,MAAMlB,iBAAiB,CAACwB,mBAAlB,CAAsC;QAAEf;MAAF,CAAtC,CAAN;MAEA,MAAMF,0BAA0B,CAACS,OAA3B,CAAmC;QAAEE;MAAF,CAAnC,CAAN;MAEA,OAAO,IAAP;IACH,CAzCE;;IA0CH;AACR;AACA;IACQjB,2BA7CG;IA8CHE,0BA9CG;IA+CHC,2BA/CG;IAgDHC,0BAhDG;IAiDHC,2BAjDG;IAkDHC;EAlDG,CAAP;AAoDH"}
@@ -10,22 +10,25 @@ var _pubsub = require("@webiny/pubsub");
10
10
  function createCommentMethods({
11
11
  storageOperations
12
12
  }) {
13
- const onBeforeCommentCreate = (0, _pubsub.createTopic)();
14
- const onAfterCommentCreate = (0, _pubsub.createTopic)();
15
- const onBeforeCommentUpdate = (0, _pubsub.createTopic)();
16
- const onAfterCommentUpdate = (0, _pubsub.createTopic)();
17
- const onBeforeCommentDelete = (0, _pubsub.createTopic)();
18
- const onAfterCommentDelete = (0, _pubsub.createTopic)();
13
+ // create
14
+ const onCommentBeforeCreate = (0, _pubsub.createTopic)("apw.onCommentBeforeCreate");
15
+ const onCommentAfterCreate = (0, _pubsub.createTopic)("apw.onCommentAfterCreate"); // update
16
+
17
+ const onCommentBeforeUpdate = (0, _pubsub.createTopic)("apw.onCommentBeforeUpdate");
18
+ const onCommentAfterUpdate = (0, _pubsub.createTopic)("apw.onCommentAfterUpdate"); // delete
19
+
20
+ const onCommentBeforeDelete = (0, _pubsub.createTopic)("apw.onCommentBeforeDelete");
21
+ const onCommentAfterDelete = (0, _pubsub.createTopic)("apw.onCommentAfterDelete");
19
22
  return {
20
23
  /**
21
24
  * Lifecycle events
22
25
  */
23
- onBeforeCommentCreate,
24
- onAfterCommentCreate,
25
- onBeforeCommentUpdate,
26
- onAfterCommentUpdate,
27
- onBeforeCommentDelete,
28
- onAfterCommentDelete,
26
+ onCommentBeforeCreate,
27
+ onCommentAfterCreate,
28
+ onCommentBeforeUpdate,
29
+ onCommentAfterUpdate,
30
+ onCommentBeforeDelete,
31
+ onCommentAfterDelete,
29
32
 
30
33
  async get(id) {
31
34
  return storageOperations.getComment({
@@ -38,13 +41,13 @@ function createCommentMethods({
38
41
  },
39
42
 
40
43
  async create(data) {
41
- await onBeforeCommentCreate.publish({
44
+ await onCommentBeforeCreate.publish({
42
45
  input: data
43
46
  });
44
47
  const comment = await storageOperations.createComment({
45
48
  data
46
49
  });
47
- await onAfterCommentCreate.publish({
50
+ await onCommentAfterCreate.publish({
48
51
  comment
49
52
  });
50
53
  return comment;
@@ -54,7 +57,7 @@ function createCommentMethods({
54
57
  const original = await storageOperations.getComment({
55
58
  id
56
59
  });
57
- await onBeforeCommentUpdate.publish({
60
+ await onCommentBeforeUpdate.publish({
58
61
  original,
59
62
  input: {
60
63
  id,
@@ -65,7 +68,7 @@ function createCommentMethods({
65
68
  id,
66
69
  data
67
70
  });
68
- await onAfterCommentUpdate.publish({
71
+ await onCommentAfterUpdate.publish({
69
72
  original,
70
73
  comment,
71
74
  input: {
@@ -80,13 +83,13 @@ function createCommentMethods({
80
83
  const comment = await storageOperations.getComment({
81
84
  id
82
85
  });
83
- await onBeforeCommentDelete.publish({
86
+ await onCommentBeforeDelete.publish({
84
87
  comment
85
88
  });
86
89
  await storageOperations.deleteComment({
87
90
  id
88
91
  });
89
- await onAfterCommentDelete.publish({
92
+ await onCommentAfterDelete.publish({
90
93
  comment
91
94
  });
92
95
  return true;
@@ -1 +1 @@
1
- {"version":3,"names":["createCommentMethods","storageOperations","onBeforeCommentCreate","createTopic","onAfterCommentCreate","onBeforeCommentUpdate","onAfterCommentUpdate","onBeforeCommentDelete","onAfterCommentDelete","get","id","getComment","list","params","listComments","create","data","publish","input","comment","createComment","update","original","updateComment","delete","deleteComment"],"sources":["createCommentMethods.ts"],"sourcesContent":["import { createTopic } from \"@webiny/pubsub\";\nimport {\n ApwCommentCrud,\n CreateApwParams,\n OnBeforeCommentCreateTopicParams,\n OnAfterCommentCreateTopicParams,\n OnBeforeCommentUpdateTopicParams,\n OnAfterCommentUpdateTopicParams,\n OnBeforeCommentDeleteTopicParams,\n OnAfterCommentDeleteTopicParams\n} from \"~/types\";\n\nexport function createCommentMethods({ storageOperations }: CreateApwParams): ApwCommentCrud {\n const onBeforeCommentCreate = createTopic<OnBeforeCommentCreateTopicParams>();\n const onAfterCommentCreate = createTopic<OnAfterCommentCreateTopicParams>();\n const onBeforeCommentUpdate = createTopic<OnBeforeCommentUpdateTopicParams>();\n const onAfterCommentUpdate = createTopic<OnAfterCommentUpdateTopicParams>();\n const onBeforeCommentDelete = createTopic<OnBeforeCommentDeleteTopicParams>();\n const onAfterCommentDelete = createTopic<OnAfterCommentDeleteTopicParams>();\n\n return {\n /**\n * Lifecycle events\n */\n onBeforeCommentCreate,\n onAfterCommentCreate,\n onBeforeCommentUpdate,\n onAfterCommentUpdate,\n onBeforeCommentDelete,\n onAfterCommentDelete,\n async get(id) {\n return storageOperations.getComment({ id });\n },\n async list(params) {\n return storageOperations.listComments(params);\n },\n async create(data) {\n await onBeforeCommentCreate.publish({ input: data });\n\n const comment = await storageOperations.createComment({\n data\n });\n await onAfterCommentCreate.publish({ comment });\n\n return comment;\n },\n async update(id, data) {\n const original = await storageOperations.getComment({ id });\n\n await onBeforeCommentUpdate.publish({ original, input: { id, data } });\n\n const comment = await storageOperations.updateComment({ id, data });\n\n await onAfterCommentUpdate.publish({ original, comment, input: { id, data } });\n\n return comment;\n },\n async delete(id: string) {\n const comment = await storageOperations.getComment({ id });\n\n await onBeforeCommentDelete.publish({ comment });\n\n await storageOperations.deleteComment({ id });\n\n await onAfterCommentDelete.publish({ comment });\n\n return true;\n }\n };\n}\n"],"mappings":";;;;;;;AAAA;;AAYO,SAASA,oBAAT,CAA8B;EAAEC;AAAF,CAA9B,EAAsF;EACzF,MAAMC,qBAAqB,GAAG,IAAAC,mBAAA,GAA9B;EACA,MAAMC,oBAAoB,GAAG,IAAAD,mBAAA,GAA7B;EACA,MAAME,qBAAqB,GAAG,IAAAF,mBAAA,GAA9B;EACA,MAAMG,oBAAoB,GAAG,IAAAH,mBAAA,GAA7B;EACA,MAAMI,qBAAqB,GAAG,IAAAJ,mBAAA,GAA9B;EACA,MAAMK,oBAAoB,GAAG,IAAAL,mBAAA,GAA7B;EAEA,OAAO;IACH;AACR;AACA;IACQD,qBAJG;IAKHE,oBALG;IAMHC,qBANG;IAOHC,oBAPG;IAQHC,qBARG;IASHC,oBATG;;IAUH,MAAMC,GAAN,CAAUC,EAAV,EAAc;MACV,OAAOT,iBAAiB,CAACU,UAAlB,CAA6B;QAAED;MAAF,CAA7B,CAAP;IACH,CAZE;;IAaH,MAAME,IAAN,CAAWC,MAAX,EAAmB;MACf,OAAOZ,iBAAiB,CAACa,YAAlB,CAA+BD,MAA/B,CAAP;IACH,CAfE;;IAgBH,MAAME,MAAN,CAAaC,IAAb,EAAmB;MACf,MAAMd,qBAAqB,CAACe,OAAtB,CAA8B;QAAEC,KAAK,EAAEF;MAAT,CAA9B,CAAN;MAEA,MAAMG,OAAO,GAAG,MAAMlB,iBAAiB,CAACmB,aAAlB,CAAgC;QAClDJ;MADkD,CAAhC,CAAtB;MAGA,MAAMZ,oBAAoB,CAACa,OAArB,CAA6B;QAAEE;MAAF,CAA7B,CAAN;MAEA,OAAOA,OAAP;IACH,CAzBE;;IA0BH,MAAME,MAAN,CAAaX,EAAb,EAAiBM,IAAjB,EAAuB;MACnB,MAAMM,QAAQ,GAAG,MAAMrB,iBAAiB,CAACU,UAAlB,CAA6B;QAAED;MAAF,CAA7B,CAAvB;MAEA,MAAML,qBAAqB,CAACY,OAAtB,CAA8B;QAAEK,QAAF;QAAYJ,KAAK,EAAE;UAAER,EAAF;UAAMM;QAAN;MAAnB,CAA9B,CAAN;MAEA,MAAMG,OAAO,GAAG,MAAMlB,iBAAiB,CAACsB,aAAlB,CAAgC;QAAEb,EAAF;QAAMM;MAAN,CAAhC,CAAtB;MAEA,MAAMV,oBAAoB,CAACW,OAArB,CAA6B;QAAEK,QAAF;QAAYH,OAAZ;QAAqBD,KAAK,EAAE;UAAER,EAAF;UAAMM;QAAN;MAA5B,CAA7B,CAAN;MAEA,OAAOG,OAAP;IACH,CApCE;;IAqCH,MAAMK,MAAN,CAAad,EAAb,EAAyB;MACrB,MAAMS,OAAO,GAAG,MAAMlB,iBAAiB,CAACU,UAAlB,CAA6B;QAAED;MAAF,CAA7B,CAAtB;MAEA,MAAMH,qBAAqB,CAACU,OAAtB,CAA8B;QAAEE;MAAF,CAA9B,CAAN;MAEA,MAAMlB,iBAAiB,CAACwB,aAAlB,CAAgC;QAAEf;MAAF,CAAhC,CAAN;MAEA,MAAMF,oBAAoB,CAACS,OAArB,CAA6B;QAAEE;MAAF,CAA7B,CAAN;MAEA,OAAO,IAAP;IACH;;EA/CE,CAAP;AAiDH"}
1
+ {"version":3,"names":["createCommentMethods","storageOperations","onCommentBeforeCreate","createTopic","onCommentAfterCreate","onCommentBeforeUpdate","onCommentAfterUpdate","onCommentBeforeDelete","onCommentAfterDelete","get","id","getComment","list","params","listComments","create","data","publish","input","comment","createComment","update","original","updateComment","delete","deleteComment"],"sources":["createCommentMethods.ts"],"sourcesContent":["import { createTopic } from \"@webiny/pubsub\";\nimport {\n ApwCommentCrud,\n CreateApwParams,\n OnCommentBeforeCreateTopicParams,\n OnCommentAfterCreateTopicParams,\n OnCommentBeforeUpdateTopicParams,\n OnCommentAfterUpdateTopicParams,\n OnCommentBeforeDeleteTopicParams,\n OnCommentAfterDeleteTopicParams\n} from \"~/types\";\n\nexport function createCommentMethods({ storageOperations }: CreateApwParams): ApwCommentCrud {\n // create\n const onCommentBeforeCreate = createTopic<OnCommentBeforeCreateTopicParams>(\n \"apw.onCommentBeforeCreate\"\n );\n const onCommentAfterCreate = createTopic<OnCommentAfterCreateTopicParams>(\n \"apw.onCommentAfterCreate\"\n );\n // update\n const onCommentBeforeUpdate = createTopic<OnCommentBeforeUpdateTopicParams>(\n \"apw.onCommentBeforeUpdate\"\n );\n const onCommentAfterUpdate = createTopic<OnCommentAfterUpdateTopicParams>(\n \"apw.onCommentAfterUpdate\"\n );\n // delete\n const onCommentBeforeDelete = createTopic<OnCommentBeforeDeleteTopicParams>(\n \"apw.onCommentBeforeDelete\"\n );\n const onCommentAfterDelete = createTopic<OnCommentAfterDeleteTopicParams>(\n \"apw.onCommentAfterDelete\"\n );\n\n return {\n /**\n * Lifecycle events\n */\n onCommentBeforeCreate,\n onCommentAfterCreate,\n onCommentBeforeUpdate,\n onCommentAfterUpdate,\n onCommentBeforeDelete,\n onCommentAfterDelete,\n async get(id) {\n return storageOperations.getComment({ id });\n },\n async list(params) {\n return storageOperations.listComments(params);\n },\n async create(data) {\n await onCommentBeforeCreate.publish({ input: data });\n\n const comment = await storageOperations.createComment({\n data\n });\n await onCommentAfterCreate.publish({ comment });\n\n return comment;\n },\n async update(id, data) {\n const original = await storageOperations.getComment({ id });\n\n await onCommentBeforeUpdate.publish({ original, input: { id, data } });\n\n const comment = await storageOperations.updateComment({ id, data });\n\n await onCommentAfterUpdate.publish({ original, comment, input: { id, data } });\n\n return comment;\n },\n async delete(id: string) {\n const comment = await storageOperations.getComment({ id });\n\n await onCommentBeforeDelete.publish({ comment });\n\n await storageOperations.deleteComment({ id });\n\n await onCommentAfterDelete.publish({ comment });\n\n return true;\n }\n };\n}\n"],"mappings":";;;;;;;AAAA;;AAYO,SAASA,oBAAT,CAA8B;EAAEC;AAAF,CAA9B,EAAsF;EACzF;EACA,MAAMC,qBAAqB,GAAG,IAAAC,mBAAA,EAC1B,2BAD0B,CAA9B;EAGA,MAAMC,oBAAoB,GAAG,IAAAD,mBAAA,EACzB,0BADyB,CAA7B,CALyF,CAQzF;;EACA,MAAME,qBAAqB,GAAG,IAAAF,mBAAA,EAC1B,2BAD0B,CAA9B;EAGA,MAAMG,oBAAoB,GAAG,IAAAH,mBAAA,EACzB,0BADyB,CAA7B,CAZyF,CAezF;;EACA,MAAMI,qBAAqB,GAAG,IAAAJ,mBAAA,EAC1B,2BAD0B,CAA9B;EAGA,MAAMK,oBAAoB,GAAG,IAAAL,mBAAA,EACzB,0BADyB,CAA7B;EAIA,OAAO;IACH;AACR;AACA;IACQD,qBAJG;IAKHE,oBALG;IAMHC,qBANG;IAOHC,oBAPG;IAQHC,qBARG;IASHC,oBATG;;IAUH,MAAMC,GAAN,CAAUC,EAAV,EAAc;MACV,OAAOT,iBAAiB,CAACU,UAAlB,CAA6B;QAAED;MAAF,CAA7B,CAAP;IACH,CAZE;;IAaH,MAAME,IAAN,CAAWC,MAAX,EAAmB;MACf,OAAOZ,iBAAiB,CAACa,YAAlB,CAA+BD,MAA/B,CAAP;IACH,CAfE;;IAgBH,MAAME,MAAN,CAAaC,IAAb,EAAmB;MACf,MAAMd,qBAAqB,CAACe,OAAtB,CAA8B;QAAEC,KAAK,EAAEF;MAAT,CAA9B,CAAN;MAEA,MAAMG,OAAO,GAAG,MAAMlB,iBAAiB,CAACmB,aAAlB,CAAgC;QAClDJ;MADkD,CAAhC,CAAtB;MAGA,MAAMZ,oBAAoB,CAACa,OAArB,CAA6B;QAAEE;MAAF,CAA7B,CAAN;MAEA,OAAOA,OAAP;IACH,CAzBE;;IA0BH,MAAME,MAAN,CAAaX,EAAb,EAAiBM,IAAjB,EAAuB;MACnB,MAAMM,QAAQ,GAAG,MAAMrB,iBAAiB,CAACU,UAAlB,CAA6B;QAAED;MAAF,CAA7B,CAAvB;MAEA,MAAML,qBAAqB,CAACY,OAAtB,CAA8B;QAAEK,QAAF;QAAYJ,KAAK,EAAE;UAAER,EAAF;UAAMM;QAAN;MAAnB,CAA9B,CAAN;MAEA,MAAMG,OAAO,GAAG,MAAMlB,iBAAiB,CAACsB,aAAlB,CAAgC;QAAEb,EAAF;QAAMM;MAAN,CAAhC,CAAtB;MAEA,MAAMV,oBAAoB,CAACW,OAArB,CAA6B;QAAEK,QAAF;QAAYH,OAAZ;QAAqBD,KAAK,EAAE;UAAER,EAAF;UAAMM;QAAN;MAA5B,CAA7B,CAAN;MAEA,OAAOG,OAAP;IACH,CApCE;;IAqCH,MAAMK,MAAN,CAAad,EAAb,EAAyB;MACrB,MAAMS,OAAO,GAAG,MAAMlB,iBAAiB,CAACU,UAAlB,CAA6B;QAAED;MAAF,CAA7B,CAAtB;MAEA,MAAMH,qBAAqB,CAACU,OAAtB,CAA8B;QAAEE;MAAF,CAA9B,CAAN;MAEA,MAAMlB,iBAAiB,CAACwB,aAAlB,CAAgC;QAAEf;MAAF,CAAhC,CAAN;MAEA,MAAMF,oBAAoB,CAACS,OAArB,CAA6B;QAAEE;MAAF,CAA7B,CAAN;MAEA,OAAO,IAAP;IACH;;EA/CE,CAAP;AAiDH"}