@posiwise/smart-crm 0.0.20 → 0.0.21
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.
- package/.eslintrc.json +22 -0
- package/ng-package.json +15 -0
- package/package.json +10 -23
- package/project.json +72 -0
- package/{index.d.ts → src/index.ts} +3 -0
- package/src/lib/private/components/smart-crm-accounts/smart-crm-account-details/smart-crm-account-details.component.html +200 -0
- package/src/lib/private/components/smart-crm-accounts/smart-crm-account-details/smart-crm-account-details.component.spec.ts +185 -0
- package/src/lib/private/components/smart-crm-accounts/smart-crm-account-details/smart-crm-account-details.component.ts +238 -0
- package/src/lib/private/components/smart-crm-accounts/smart-crm-account-files/smart-crm-account-files.component.html +200 -0
- package/src/lib/private/components/smart-crm-accounts/smart-crm-account-files/smart-crm-account-files.component.spec.ts +109 -0
- package/src/lib/private/components/smart-crm-accounts/smart-crm-account-files/smart-crm-account-files.component.ts +249 -0
- package/src/lib/private/components/smart-crm-accounts/smart-crm-account-info/smart-crm-account-info.component.html +785 -0
- package/src/lib/private/components/smart-crm-accounts/smart-crm-account-info/smart-crm-account-info.component.scss +123 -0
- package/src/lib/private/components/smart-crm-accounts/smart-crm-account-info/smart-crm-account-info.component.spec.ts +388 -0
- package/src/lib/private/components/smart-crm-accounts/smart-crm-account-info/smart-crm-account-info.component.ts +792 -0
- package/src/lib/private/components/smart-crm-accounts/smart-crm-accounts.component.html +292 -0
- package/src/lib/private/components/smart-crm-accounts/smart-crm-accounts.component.scss +63 -0
- package/src/lib/private/components/smart-crm-accounts/smart-crm-accounts.component.spec.ts +145 -0
- package/src/lib/private/components/smart-crm-accounts/smart-crm-accounts.component.ts +417 -0
- package/src/lib/private/components/smart-crm-competition/smart-crm-competition/smart-crm-competition.component.html +1 -0
- package/src/lib/private/components/smart-crm-competition/smart-crm-competition/smart-crm-competition.component.spec.ts +17 -0
- package/src/lib/private/components/smart-crm-competition/smart-crm-competition/smart-crm-competition.component.ts +7 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-actions/smart-crm-actions-details/smart-crm-actions-details.component.html +75 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-actions/smart-crm-actions-details/smart-crm-actions-details.component.scss +3 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-actions/smart-crm-actions-details/smart-crm-actions-details.component.spec.ts +123 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-actions/smart-crm-actions-details/smart-crm-actions-details.component.ts +117 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-actions/smart-crm-actions.component.html +125 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-actions/smart-crm-actions.component.scss +5 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-actions/smart-crm-actions.component.spec.ts +136 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-actions/smart-crm-actions.component.ts +143 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-configuration.component.html +60 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-configuration.component.scss +1 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-configuration.component.spec.ts +55 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-configuration.component.ts +29 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-opportunity-categories/smart-crm-opportunity-categories-details/smart-crm-opportunity-categories-details.component.html +95 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-opportunity-categories/smart-crm-opportunity-categories-details/smart-crm-opportunity-categories-details.component.spec.ts +105 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-opportunity-categories/smart-crm-opportunity-categories-details/smart-crm-opportunity-categories-details.component.ts +95 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-opportunity-categories/smart-crm-opportunity-categories.component.html +125 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-opportunity-categories/smart-crm-opportunity-categories.component.scss +3 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-opportunity-categories/smart-crm-opportunity-categories.component.spec.ts +132 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-opportunity-categories/smart-crm-opportunity-categories.component.ts +145 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-source/smart-crm-source-details/smart-crm-source-details.component.html +61 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-source/smart-crm-source-details/smart-crm-source-details.component.spec.ts +81 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-source/smart-crm-source-details/smart-crm-source-details.component.ts +88 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-source/smart-crm-source.component.html +96 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-source/smart-crm-source.component.scss +3 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-source/smart-crm-source.component.spec.ts +109 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-source/smart-crm-source.component.ts +129 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-stages/smart-crm-stage-details/smart-crm-stage-details.component.html +108 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-stages/smart-crm-stage-details/smart-crm-stage-details.component.scss +3 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-stages/smart-crm-stage-details/smart-crm-stage-details.component.spec.ts +124 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-stages/smart-crm-stage-details/smart-crm-stage-details.component.ts +111 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-stages/smart-crm-stages.component.html +134 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-stages/smart-crm-stages.component.scss +3 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-stages/smart-crm-stages.component.spec.ts +103 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-stages/smart-crm-stages.component.ts +166 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-widgets/smart-crm-widgets-details/smart-crm-widgets-details.component.html +90 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-widgets/smart-crm-widgets-details/smart-crm-widgets-details.component.scss +6 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-widgets/smart-crm-widgets-details/smart-crm-widgets-details.component.spec.ts +105 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-widgets/smart-crm-widgets-details/smart-crm-widgets-details.component.ts +118 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-widgets/smart-crm-widgets.component.html +115 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-widgets/smart-crm-widgets.component.spec.ts +93 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-widgets/smart-crm-widgets.component.ts +150 -0
- package/src/lib/private/components/smart-crm-contacts/smart-crm-contact-details/smart-crm-contact-details.component.html +205 -0
- package/src/lib/private/components/smart-crm-contacts/smart-crm-contact-details/smart-crm-contact-details.component.spec.ts +149 -0
- package/src/lib/private/components/smart-crm-contacts/smart-crm-contact-details/smart-crm-contact-details.component.ts +184 -0
- package/src/lib/private/components/smart-crm-contacts/smart-crm-contact-info/smart-crm-contact-info.component.html +530 -0
- package/src/lib/private/components/smart-crm-contacts/smart-crm-contact-info/smart-crm-contact-info.component.scss +112 -0
- package/src/lib/private/components/smart-crm-contacts/smart-crm-contact-info/smart-crm-contact-info.component.spec.ts +284 -0
- package/src/lib/private/components/smart-crm-contacts/smart-crm-contact-info/smart-crm-contact-info.component.ts +553 -0
- package/src/lib/private/components/smart-crm-contacts/smart-crm-contacts.component.html +281 -0
- package/src/lib/private/components/smart-crm-contacts/smart-crm-contacts.component.scss +19 -0
- package/src/lib/private/components/smart-crm-contacts/smart-crm-contacts.component.spec.ts +138 -0
- package/src/lib/private/components/smart-crm-contacts/smart-crm-contacts.component.ts +344 -0
- package/src/lib/private/components/smart-crm-customer/smart-crm-customer-success/smart-crm-customer-success.component.html +1 -0
- package/src/lib/private/components/smart-crm-customer/smart-crm-customer-success/smart-crm-customer-success.component.spec.ts +18 -0
- package/src/lib/private/components/smart-crm-customer/smart-crm-customer-success/smart-crm-customer-success.component.ts +7 -0
- package/src/lib/private/components/smart-crm-insight/smart-crm-insight.component.html +27 -0
- package/src/lib/private/components/smart-crm-insight/smart-crm-insight.component.spec.ts +19 -0
- package/src/lib/private/components/smart-crm-insight/smart-crm-insight.component.ts +7 -0
- package/src/lib/private/components/smart-crm-insight/smart-crm-overview/smart-crm-overview.component.html +46 -0
- package/src/lib/private/components/smart-crm-insight/smart-crm-overview/smart-crm-overview.component.spec.ts +50 -0
- package/src/lib/private/components/smart-crm-insight/smart-crm-overview/smart-crm-overview.component.ts +60 -0
- package/src/lib/private/components/smart-crm-leads/smart-crm-leads-details/smart-crm-leads-details.component.html +142 -0
- package/src/lib/private/components/smart-crm-leads/smart-crm-leads-details/smart-crm-leads-details.component.spec.ts +125 -0
- package/src/lib/private/components/smart-crm-leads/smart-crm-leads-details/smart-crm-leads-details.component.ts +192 -0
- package/src/lib/private/components/smart-crm-leads/smart-crm-leads.component.html +176 -0
- package/src/lib/private/components/smart-crm-leads/smart-crm-leads.component.spec.ts +98 -0
- package/src/lib/private/components/smart-crm-leads/smart-crm-leads.component.ts +160 -0
- package/src/lib/private/components/smart-crm-marketing/smart-crm-marketing-list/smart-crm-marketing-contacts/smart-crm-marketing-contacts.component.html +90 -0
- package/src/lib/private/components/smart-crm-marketing/smart-crm-marketing-list/smart-crm-marketing-contacts/smart-crm-marketing-contacts.component.spec.ts +68 -0
- package/src/lib/private/components/smart-crm-marketing/smart-crm-marketing-list/smart-crm-marketing-contacts/smart-crm-marketing-contacts.component.ts +98 -0
- package/src/lib/private/components/smart-crm-marketing/smart-crm-marketing-list/smart-crm-marketing-details/smart-crm-marketing-details.component.html +322 -0
- package/src/lib/private/components/smart-crm-marketing/smart-crm-marketing-list/smart-crm-marketing-details/smart-crm-marketing-details.component.spec.ts +156 -0
- package/src/lib/private/components/smart-crm-marketing/smart-crm-marketing-list/smart-crm-marketing-details/smart-crm-marketing-details.component.ts +296 -0
- package/src/lib/private/components/smart-crm-marketing/smart-crm-marketing-list/smart-crm-marketing-list.component.html +215 -0
- package/src/lib/private/components/smart-crm-marketing/smart-crm-marketing-list/smart-crm-marketing-list.component.scss +3 -0
- package/src/lib/private/components/smart-crm-marketing/smart-crm-marketing-list/smart-crm-marketing-list.component.spec.ts +117 -0
- package/src/lib/private/components/smart-crm-marketing/smart-crm-marketing-list/smart-crm-marketing-list.component.ts +187 -0
- package/src/lib/private/components/smart-crm-marketing/smart-crm-marketing-list/smart-crm-marketing-view-details/smart-crm-marketing-view-details.component.html +33 -0
- package/src/lib/private/components/smart-crm-marketing/smart-crm-marketing-list/smart-crm-marketing-view-details/smart-crm-marketing-view-details.component.scss +82 -0
- package/src/lib/private/components/smart-crm-marketing/smart-crm-marketing-list/smart-crm-marketing-view-details/smart-crm-marketing-view-details.component.spec.ts +63 -0
- package/src/lib/private/components/smart-crm-marketing/smart-crm-marketing-list/smart-crm-marketing-view-details/smart-crm-marketing-view-details.component.ts +62 -0
- package/src/lib/private/components/smart-crm-marketing/smart-crm-marketing.component.html +27 -0
- package/src/lib/private/components/smart-crm-marketing/smart-crm-marketing.component.scss +3 -0
- package/src/lib/private/components/smart-crm-marketing/smart-crm-marketing.component.spec.ts +28 -0
- package/src/lib/private/components/smart-crm-marketing/smart-crm-marketing.component.ts +13 -0
- package/src/lib/private/components/smart-crm-opportunities/smart-crm-board/smart-crm-board.component.html +75 -0
- package/src/lib/private/components/smart-crm-opportunities/smart-crm-board/smart-crm-board.component.scss +223 -0
- package/src/lib/private/components/smart-crm-opportunities/smart-crm-board/smart-crm-board.component.spec.ts +184 -0
- package/src/lib/private/components/smart-crm-opportunities/smart-crm-board/smart-crm-board.component.ts +268 -0
- package/src/lib/private/components/smart-crm-opportunities/smart-crm-opportunities-list/smart-crm-opportunities-details/smart-crm-opportunities-details.component.html +273 -0
- package/src/lib/private/components/smart-crm-opportunities/smart-crm-opportunities-list/smart-crm-opportunities-details/smart-crm-opportunities-details.component.scss +11 -0
- package/src/lib/private/components/smart-crm-opportunities/smart-crm-opportunities-list/smart-crm-opportunities-details/smart-crm-opportunities-details.component.spec.ts +196 -0
- package/src/lib/private/components/smart-crm-opportunities/smart-crm-opportunities-list/smart-crm-opportunities-details/smart-crm-opportunities-details.component.ts +391 -0
- package/src/lib/private/components/smart-crm-opportunities/smart-crm-opportunities-list/smart-crm-opportunities-info/smart-crm-opportunities-info.component.html +489 -0
- package/src/lib/private/components/smart-crm-opportunities/smart-crm-opportunities-list/smart-crm-opportunities-info/smart-crm-opportunities-info.component.scss +104 -0
- package/src/lib/private/components/smart-crm-opportunities/smart-crm-opportunities-list/smart-crm-opportunities-info/smart-crm-opportunities-info.component.spec.ts +319 -0
- package/src/lib/private/components/smart-crm-opportunities/smart-crm-opportunities-list/smart-crm-opportunities-info/smart-crm-opportunities-info.component.ts +568 -0
- package/src/lib/private/components/smart-crm-opportunities/smart-crm-opportunities-list/smart-crm-opportunities-list.component.html +204 -0
- package/src/lib/private/components/smart-crm-opportunities/smart-crm-opportunities-list/smart-crm-opportunities-list.component.scss +11 -0
- package/src/lib/private/components/smart-crm-opportunities/smart-crm-opportunities-list/smart-crm-opportunities-list.component.spec.ts +123 -0
- package/src/lib/private/components/smart-crm-opportunities/smart-crm-opportunities-list/smart-crm-opportunities-list.component.ts +260 -0
- package/src/lib/private/components/smart-crm-opportunities/smart-crm-opportunities.component.html +25 -0
- package/src/lib/private/components/smart-crm-opportunities/smart-crm-opportunities.component.scss +7 -0
- package/src/lib/private/components/smart-crm-opportunities/smart-crm-opportunities.component.spec.ts +38 -0
- package/src/lib/private/components/smart-crm-opportunities/smart-crm-opportunities.component.ts +8 -0
- package/src/lib/private/components/smart-crm-summary/smart-crm-summary-actions/smart-crm-summary-actions.component.html +213 -0
- package/src/lib/private/components/smart-crm-summary/smart-crm-summary-actions/smart-crm-summary-actions.component.scss +73 -0
- package/src/lib/private/components/smart-crm-summary/smart-crm-summary-actions/smart-crm-summary-actions.component.spec.ts +147 -0
- package/src/lib/private/components/smart-crm-summary/smart-crm-summary-actions/smart-crm-summary-actions.component.ts +292 -0
- package/src/lib/private/components/smart-crm-summary/smart-crm-summary-others/smart-crm-summary-others.component.html +309 -0
- package/src/lib/private/components/smart-crm-summary/smart-crm-summary-others/smart-crm-summary-others.component.spec.ts +75 -0
- package/src/lib/private/components/smart-crm-summary/smart-crm-summary-others/smart-crm-summary-others.component.ts +161 -0
- package/src/lib/private/components/smart-crm-summary/smart-crm-summary.component.html +25 -0
- package/src/lib/private/components/smart-crm-summary/smart-crm-summary.component.scss +68 -0
- package/src/lib/private/components/smart-crm-summary/smart-crm-summary.component.spec.ts +32 -0
- package/src/lib/private/components/smart-crm-summary/smart-crm-summary.component.ts +8 -0
- package/src/lib/private/components/smart-crm-tabs/smart-crm-tabs.component.spec.ts +43 -0
- package/src/lib/private/components/smart-crm-tabs/smart-crm-tabs.component.ts +97 -0
- package/src/lib/private/smart-crm-private.module.ts +188 -0
- package/src/lib/private/smart-crm-private.routing.module.ts +303 -0
- package/src/lib/public/components/smart-crm-newsletter-confirmation/smart-crm-newsletter-confirmation.component.html +27 -0
- package/src/lib/public/components/smart-crm-newsletter-confirmation/smart-crm-newsletter-confirmation.component.scss +4 -0
- package/src/lib/public/components/smart-crm-newsletter-confirmation/smart-crm-newsletter-confirmation.component.spec.ts +40 -0
- package/src/lib/public/components/smart-crm-newsletter-confirmation/smart-crm-newsletter-confirmation.component.ts +57 -0
- package/src/lib/public/components/smart-crm-newsletter-unsubscribe/smart-crm-newsletter-unsubscribe.component.html +36 -0
- package/src/lib/public/components/smart-crm-newsletter-unsubscribe/smart-crm-newsletter-unsubscribe.component.spec.ts +42 -0
- package/src/lib/public/components/smart-crm-newsletter-unsubscribe/smart-crm-newsletter-unsubscribe.component.ts +57 -0
- package/src/lib/public/components/smart-crm-signup/smart-crm-signup.component.html +133 -0
- package/src/lib/public/components/smart-crm-signup/smart-crm-signup.component.scss +1 -0
- package/src/lib/public/components/smart-crm-signup/smart-crm-signup.component.spec.ts +37 -0
- package/src/lib/public/components/smart-crm-signup/smart-crm-signup.component.ts +41 -0
- package/src/lib/public/smart-crm-public.module.ts +30 -0
- package/src/lib/public/smart-crm-public.routing.module.ts +36 -0
- package/{lib/shared/interface/crm-account.interface.d.ts → src/lib/shared/interface/crm-account.interface.ts} +10 -3
- package/{lib/shared/interface/crm-action.interface.d.ts → src/lib/shared/interface/crm-action.interface.ts} +1 -0
- package/{lib/shared/interface/crm-contact.interface.d.ts → src/lib/shared/interface/crm-contact.interface.ts} +2 -0
- package/{lib/shared/interface/crm-lead.interface.d.ts → src/lib/shared/interface/crm-lead.interface.ts} +1 -0
- package/{lib/shared/interface/crm-newsletter.interface.d.ts → src/lib/shared/interface/crm-newsletter.interface.ts} +3 -1
- package/{lib/shared/interface/crm-opportunity.interface.d.ts → src/lib/shared/interface/crm-opportunity.interface.ts} +5 -0
- package/{lib/shared/interface/crm-source.interface.d.ts → src/lib/shared/interface/crm-source.interface.ts} +1 -0
- package/{lib/shared/interface/crm-stages.interface.d.ts → src/lib/shared/interface/crm-stages.interface.ts} +1 -0
- package/{lib/shared/interface/crm-widget.interface.d.ts → src/lib/shared/interface/crm-widget.interface.ts} +1 -0
- package/{lib/shared/interface/smart-crm-module.interface.d.ts → src/lib/shared/interface/smart-crm-module.interface.ts} +42 -1
- package/src/lib/shared/models/smart-crm.model.ts +199 -0
- package/src/lib/shared/routers/routers.ts +23 -0
- package/tsconfig.json +29 -0
- package/tsconfig.lib.json +25 -0
- package/tsconfig.lib.prod.json +9 -0
- package/tsconfig.spec.json +11 -0
- package/esm2022/index.mjs +0 -48
- package/esm2022/lib/private/components/smart-crm-accounts/smart-crm-account-details/smart-crm-account-details.component.mjs +0 -194
- package/esm2022/lib/private/components/smart-crm-accounts/smart-crm-account-files/smart-crm-account-files.component.mjs +0 -192
- package/esm2022/lib/private/components/smart-crm-accounts/smart-crm-account-info/smart-crm-account-info.component.mjs +0 -599
- package/esm2022/lib/private/components/smart-crm-accounts/smart-crm-accounts.component.mjs +0 -348
- package/esm2022/lib/private/components/smart-crm-competition/smart-crm-competition/smart-crm-competition.component.mjs +0 -12
- package/esm2022/lib/private/components/smart-crm-configuration/smart-crm-actions/smart-crm-actions-details/smart-crm-actions-details.component.mjs +0 -97
- package/esm2022/lib/private/components/smart-crm-configuration/smart-crm-actions/smart-crm-actions.component.mjs +0 -118
- package/esm2022/lib/private/components/smart-crm-configuration/smart-crm-configuration.component.mjs +0 -35
- package/esm2022/lib/private/components/smart-crm-configuration/smart-crm-opportunity-categories/smart-crm-opportunity-categories-details/smart-crm-opportunity-categories-details.component.mjs +0 -87
- package/esm2022/lib/private/components/smart-crm-configuration/smart-crm-opportunity-categories/smart-crm-opportunity-categories.component.mjs +0 -119
- package/esm2022/lib/private/components/smart-crm-configuration/smart-crm-source/smart-crm-source-details/smart-crm-source-details.component.mjs +0 -79
- package/esm2022/lib/private/components/smart-crm-configuration/smart-crm-source/smart-crm-source.component.mjs +0 -107
- package/esm2022/lib/private/components/smart-crm-configuration/smart-crm-stages/smart-crm-stage-details/smart-crm-stage-details.component.mjs +0 -96
- package/esm2022/lib/private/components/smart-crm-configuration/smart-crm-stages/smart-crm-stages.component.mjs +0 -139
- package/esm2022/lib/private/components/smart-crm-configuration/smart-crm-widgets/smart-crm-widgets-details/smart-crm-widgets-details.component.mjs +0 -98
- package/esm2022/lib/private/components/smart-crm-configuration/smart-crm-widgets/smart-crm-widgets.component.mjs +0 -125
- package/esm2022/lib/private/components/smart-crm-contacts/smart-crm-contact-details/smart-crm-contact-details.component.mjs +0 -159
- package/esm2022/lib/private/components/smart-crm-contacts/smart-crm-contact-info/smart-crm-contact-info.component.mjs +0 -470
- package/esm2022/lib/private/components/smart-crm-contacts/smart-crm-contacts.component.mjs +0 -281
- package/esm2022/lib/private/components/smart-crm-customer/smart-crm-customer-success/smart-crm-customer-success.component.mjs +0 -12
- package/esm2022/lib/private/components/smart-crm-insight/smart-crm-insight.component.mjs +0 -14
- package/esm2022/lib/private/components/smart-crm-insight/smart-crm-overview/smart-crm-overview.component.mjs +0 -55
- package/esm2022/lib/private/components/smart-crm-leads/smart-crm-leads-details/smart-crm-leads-details.component.mjs +0 -173
- package/esm2022/lib/private/components/smart-crm-leads/smart-crm-leads.component.mjs +0 -136
- package/esm2022/lib/private/components/smart-crm-marketing/smart-crm-marketing-list/smart-crm-marketing-contacts/smart-crm-marketing-contacts.component.mjs +0 -79
- package/esm2022/lib/private/components/smart-crm-marketing/smart-crm-marketing-list/smart-crm-marketing-details/smart-crm-marketing-details.component.mjs +0 -266
- package/esm2022/lib/private/components/smart-crm-marketing/smart-crm-marketing-list/smart-crm-marketing-list.component.mjs +0 -151
- package/esm2022/lib/private/components/smart-crm-marketing/smart-crm-marketing-list/smart-crm-marketing-view-details/smart-crm-marketing-view-details.component.mjs +0 -51
- package/esm2022/lib/private/components/smart-crm-marketing/smart-crm-marketing.component.mjs +0 -18
- package/esm2022/lib/private/components/smart-crm-opportunities/smart-crm-board/smart-crm-board.component.mjs +0 -230
- package/esm2022/lib/private/components/smart-crm-opportunities/smart-crm-opportunities-list/smart-crm-opportunities-details/smart-crm-opportunities-details.component.mjs +0 -335
- package/esm2022/lib/private/components/smart-crm-opportunities/smart-crm-opportunities-list/smart-crm-opportunities-info/smart-crm-opportunities-info.component.mjs +0 -477
- package/esm2022/lib/private/components/smart-crm-opportunities/smart-crm-opportunities-list/smart-crm-opportunities-list.component.mjs +0 -218
- package/esm2022/lib/private/components/smart-crm-opportunities/smart-crm-opportunities.component.mjs +0 -14
- package/esm2022/lib/private/components/smart-crm-summary/smart-crm-summary-actions/smart-crm-summary-actions.component.mjs +0 -255
- package/esm2022/lib/private/components/smart-crm-summary/smart-crm-summary-others/smart-crm-summary-others.component.mjs +0 -148
- package/esm2022/lib/private/components/smart-crm-summary/smart-crm-summary.component.mjs +0 -16
- package/esm2022/lib/private/components/smart-crm-tabs/smart-crm-tabs.component.mjs +0 -92
- package/esm2022/lib/private/smart-crm-private.module.mjs +0 -327
- package/esm2022/lib/private/smart-crm-private.routing.module.mjs +0 -310
- package/esm2022/lib/public/components/smart-crm-newsletter-confirmation/smart-crm-newsletter-confirmation.component.mjs +0 -56
- package/esm2022/lib/public/components/smart-crm-newsletter-unsubscribe/smart-crm-newsletter-unsubscribe.component.mjs +0 -57
- package/esm2022/lib/public/components/smart-crm-signup/smart-crm-signup.component.mjs +0 -35
- package/esm2022/lib/public/smart-crm-public.module.mjs +0 -46
- package/esm2022/lib/public/smart-crm-public.routing.module.mjs +0 -44
- package/esm2022/lib/shared/interface/crm-account.interface.mjs +0 -2
- package/esm2022/lib/shared/interface/crm-action.interface.mjs +0 -2
- package/esm2022/lib/shared/interface/crm-contact.interface.mjs +0 -2
- package/esm2022/lib/shared/interface/crm-lead.interface.mjs +0 -2
- package/esm2022/lib/shared/interface/crm-newsletter.interface.mjs +0 -2
- package/esm2022/lib/shared/interface/crm-opportunity.interface.mjs +0 -2
- package/esm2022/lib/shared/interface/crm-source.interface.mjs +0 -2
- package/esm2022/lib/shared/interface/crm-stages.interface.mjs +0 -2
- package/esm2022/lib/shared/interface/crm-widget.interface.mjs +0 -2
- package/esm2022/lib/shared/interface/smart-crm-module.interface.mjs +0 -2
- package/esm2022/lib/shared/models/smart-crm.model.mjs +0 -186
- package/esm2022/lib/shared/routers/routers.mjs +0 -23
- package/esm2022/posiwise-smart-crm.mjs +0 -5
- package/fesm2022/posiwise-smart-crm.mjs +0 -6482
- package/fesm2022/posiwise-smart-crm.mjs.map +0 -1
- package/lib/private/components/smart-crm-accounts/smart-crm-account-details/smart-crm-account-details.component.d.ts +0 -61
- package/lib/private/components/smart-crm-accounts/smart-crm-account-files/smart-crm-account-files.component.d.ts +0 -72
- package/lib/private/components/smart-crm-accounts/smart-crm-account-info/smart-crm-account-info.component.d.ts +0 -173
- package/lib/private/components/smart-crm-accounts/smart-crm-accounts.component.d.ts +0 -105
- package/lib/private/components/smart-crm-competition/smart-crm-competition/smart-crm-competition.component.d.ts +0 -5
- package/lib/private/components/smart-crm-configuration/smart-crm-actions/smart-crm-actions-details/smart-crm-actions-details.component.d.ts +0 -37
- package/lib/private/components/smart-crm-configuration/smart-crm-actions/smart-crm-actions.component.d.ts +0 -55
- package/lib/private/components/smart-crm-configuration/smart-crm-configuration.component.d.ts +0 -11
- package/lib/private/components/smart-crm-configuration/smart-crm-opportunity-categories/smart-crm-opportunity-categories-details/smart-crm-opportunity-categories-details.component.d.ts +0 -31
- package/lib/private/components/smart-crm-configuration/smart-crm-opportunity-categories/smart-crm-opportunity-categories.component.d.ts +0 -56
- package/lib/private/components/smart-crm-configuration/smart-crm-source/smart-crm-source-details/smart-crm-source-details.component.d.ts +0 -28
- package/lib/private/components/smart-crm-configuration/smart-crm-source/smart-crm-source.component.d.ts +0 -52
- package/lib/private/components/smart-crm-configuration/smart-crm-stages/smart-crm-stage-details/smart-crm-stage-details.component.d.ts +0 -34
- package/lib/private/components/smart-crm-configuration/smart-crm-stages/smart-crm-stages.component.d.ts +0 -58
- package/lib/private/components/smart-crm-configuration/smart-crm-widgets/smart-crm-widgets-details/smart-crm-widgets-details.component.d.ts +0 -36
- package/lib/private/components/smart-crm-configuration/smart-crm-widgets/smart-crm-widgets.component.d.ts +0 -58
- package/lib/private/components/smart-crm-contacts/smart-crm-contact-details/smart-crm-contact-details.component.d.ts +0 -48
- package/lib/private/components/smart-crm-contacts/smart-crm-contact-info/smart-crm-contact-info.component.d.ts +0 -122
- package/lib/private/components/smart-crm-contacts/smart-crm-contacts.component.d.ts +0 -89
- package/lib/private/components/smart-crm-customer/smart-crm-customer-success/smart-crm-customer-success.component.d.ts +0 -5
- package/lib/private/components/smart-crm-insight/smart-crm-insight.component.d.ts +0 -5
- package/lib/private/components/smart-crm-insight/smart-crm-overview/smart-crm-overview.component.d.ts +0 -20
- package/lib/private/components/smart-crm-leads/smart-crm-leads-details/smart-crm-leads-details.component.d.ts +0 -45
- package/lib/private/components/smart-crm-leads/smart-crm-leads.component.d.ts +0 -58
- package/lib/private/components/smart-crm-marketing/smart-crm-marketing-list/smart-crm-marketing-contacts/smart-crm-marketing-contacts.component.d.ts +0 -49
- package/lib/private/components/smart-crm-marketing/smart-crm-marketing-list/smart-crm-marketing-details/smart-crm-marketing-details.component.d.ts +0 -63
- package/lib/private/components/smart-crm-marketing/smart-crm-marketing-list/smart-crm-marketing-list.component.d.ts +0 -62
- package/lib/private/components/smart-crm-marketing/smart-crm-marketing-list/smart-crm-marketing-view-details/smart-crm-marketing-view-details.component.d.ts +0 -21
- package/lib/private/components/smart-crm-marketing/smart-crm-marketing.component.d.ts +0 -8
- package/lib/private/components/smart-crm-opportunities/smart-crm-board/smart-crm-board.component.d.ts +0 -63
- package/lib/private/components/smart-crm-opportunities/smart-crm-opportunities-list/smart-crm-opportunities-details/smart-crm-opportunities-details.component.d.ts +0 -67
- package/lib/private/components/smart-crm-opportunities/smart-crm-opportunities-list/smart-crm-opportunities-info/smart-crm-opportunities-info.component.d.ts +0 -122
- package/lib/private/components/smart-crm-opportunities/smart-crm-opportunities-list/smart-crm-opportunities-list.component.d.ts +0 -77
- package/lib/private/components/smart-crm-opportunities/smart-crm-opportunities.component.d.ts +0 -5
- package/lib/private/components/smart-crm-summary/smart-crm-summary-actions/smart-crm-summary-actions.component.d.ts +0 -72
- package/lib/private/components/smart-crm-summary/smart-crm-summary-others/smart-crm-summary-others.component.d.ts +0 -40
- package/lib/private/components/smart-crm-summary/smart-crm-summary.component.d.ts +0 -5
- package/lib/private/components/smart-crm-tabs/smart-crm-tabs.component.d.ts +0 -10
- package/lib/private/smart-crm-private.module.d.ts +0 -62
- package/lib/private/smart-crm-private.routing.module.d.ts +0 -7
- package/lib/public/components/smart-crm-newsletter-confirmation/smart-crm-newsletter-confirmation.component.d.ts +0 -18
- package/lib/public/components/smart-crm-newsletter-unsubscribe/smart-crm-newsletter-unsubscribe.component.d.ts +0 -17
- package/lib/public/components/smart-crm-signup/smart-crm-signup.component.d.ts +0 -15
- package/lib/public/smart-crm-public.module.d.ts +0 -14
- package/lib/public/smart-crm-public.routing.module.d.ts +0 -7
- package/lib/shared/models/smart-crm.model.d.ts +0 -16
- package/lib/shared/routers/routers.d.ts +0 -21
|
@@ -1,310 +0,0 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
import { RouterModule } from '@angular/router';
|
|
3
|
-
import { SmartCrmCompanyDetailsComponent } from './components/smart-crm-accounts/smart-crm-account-details/smart-crm-account-details.component';
|
|
4
|
-
import { SmartCrmCompanyInfoComponent } from './components/smart-crm-accounts/smart-crm-account-info/smart-crm-account-info.component';
|
|
5
|
-
import { SmartCrmCompaniesComponent } from './components/smart-crm-accounts/smart-crm-accounts.component';
|
|
6
|
-
import { SmartCrmCompetitionComponent } from './components/smart-crm-competition/smart-crm-competition/smart-crm-competition.component';
|
|
7
|
-
import { SmartCrmSettingsDetailsComponent } from './components/smart-crm-configuration/smart-crm-actions/smart-crm-actions-details/smart-crm-actions-details.component';
|
|
8
|
-
import { SmartCrmConfigurationComponent } from './components/smart-crm-configuration/smart-crm-configuration.component';
|
|
9
|
-
import { SmartCrmOpportunityCategoriesDetailsComponent } from './components/smart-crm-configuration/smart-crm-opportunity-categories/smart-crm-opportunity-categories-details/smart-crm-opportunity-categories-details.component';
|
|
10
|
-
import { SmartCrmSourceDetailsComponent } from './components/smart-crm-configuration/smart-crm-source/smart-crm-source-details/smart-crm-source-details.component';
|
|
11
|
-
import { SmartCrmStageDetailsComponent } from './components/smart-crm-configuration/smart-crm-stages/smart-crm-stage-details/smart-crm-stage-details.component';
|
|
12
|
-
import { SmartCrmWidgetsDetailsComponent } from './components/smart-crm-configuration/smart-crm-widgets/smart-crm-widgets-details/smart-crm-widgets-details.component';
|
|
13
|
-
import { SmartCrmContactDetailsComponent } from './components/smart-crm-contacts/smart-crm-contact-details/smart-crm-contact-details.component';
|
|
14
|
-
import { SmartCrmContactInfoComponent } from './components/smart-crm-contacts/smart-crm-contact-info/smart-crm-contact-info.component';
|
|
15
|
-
import { SmartCrmContactComponent } from './components/smart-crm-contacts/smart-crm-contacts.component';
|
|
16
|
-
import { SmartCrmCustomerSuccessComponent } from './components/smart-crm-customer/smart-crm-customer-success/smart-crm-customer-success.component';
|
|
17
|
-
import { SmartCrmInsightComponent } from './components/smart-crm-insight/smart-crm-insight.component';
|
|
18
|
-
import { SmartCrmLeadsDetailsComponent } from './components/smart-crm-leads/smart-crm-leads-details/smart-crm-leads-details.component';
|
|
19
|
-
import { SmartCrmLeadsComponent } from './components/smart-crm-leads/smart-crm-leads.component';
|
|
20
|
-
import { SmartCrmCommunicationsDetailsComponent } from './components/smart-crm-marketing/smart-crm-marketing-list/smart-crm-marketing-details/smart-crm-marketing-details.component';
|
|
21
|
-
import { SmartCrmCommunicationsComponent } from './components/smart-crm-marketing/smart-crm-marketing-list/smart-crm-marketing-list.component';
|
|
22
|
-
import { SmartCrmMarketingViewComponent } from './components/smart-crm-marketing/smart-crm-marketing.component';
|
|
23
|
-
import { SmartCrmOpportunitiesDetailsComponent } from './components/smart-crm-opportunities/smart-crm-opportunities-list/smart-crm-opportunities-details/smart-crm-opportunities-details.component';
|
|
24
|
-
import { SmartCrmOpportunitiesInfoComponent } from './components/smart-crm-opportunities/smart-crm-opportunities-list/smart-crm-opportunities-info/smart-crm-opportunities-info.component';
|
|
25
|
-
import { SmartCrmOpportunitiesComponent } from './components/smart-crm-opportunities/smart-crm-opportunities.component';
|
|
26
|
-
import { SmartCrmSummaryComponent } from './components/smart-crm-summary/smart-crm-summary.component';
|
|
27
|
-
import { SmartCrmTabsComponent } from './components/smart-crm-tabs/smart-crm-tabs.component';
|
|
28
|
-
import { PageAccessGuard } from '@posiwise/core-guards';
|
|
29
|
-
import { CRM_PERMISSIONS } from '@posiwise/smart-crm-shared';
|
|
30
|
-
import * as i0 from "@angular/core";
|
|
31
|
-
import * as i1 from "@angular/router";
|
|
32
|
-
// These are the private routes. The public routes and modules needs to be defined in public.routes.ts
|
|
33
|
-
const routes = [
|
|
34
|
-
{
|
|
35
|
-
path: '',
|
|
36
|
-
component: SmartCrmTabsComponent,
|
|
37
|
-
data: {
|
|
38
|
-
title: 'Smart CRM Modules',
|
|
39
|
-
permission: `${CRM_PERMISSIONS.SmartCrmModules}`
|
|
40
|
-
},
|
|
41
|
-
canActivate: [PageAccessGuard], // Gets called for the current route
|
|
42
|
-
canActivateChild: [PageAccessGuard], // Gets called for the children route
|
|
43
|
-
children: [
|
|
44
|
-
{
|
|
45
|
-
path: '',
|
|
46
|
-
redirectTo: '/home',
|
|
47
|
-
pathMatch: 'full'
|
|
48
|
-
},
|
|
49
|
-
{
|
|
50
|
-
path: 'summary',
|
|
51
|
-
component: SmartCrmSummaryComponent
|
|
52
|
-
},
|
|
53
|
-
//////////////////////
|
|
54
|
-
// Accounts view
|
|
55
|
-
//////////////////////
|
|
56
|
-
{
|
|
57
|
-
path: 'accounts',
|
|
58
|
-
component: SmartCrmCompaniesComponent
|
|
59
|
-
},
|
|
60
|
-
{
|
|
61
|
-
path: 'accounts/:id',
|
|
62
|
-
component: SmartCrmCompanyDetailsComponent
|
|
63
|
-
},
|
|
64
|
-
{
|
|
65
|
-
path: 'accounts/add',
|
|
66
|
-
component: SmartCrmCompanyDetailsComponent
|
|
67
|
-
},
|
|
68
|
-
{
|
|
69
|
-
path: 'accounts/info/:id',
|
|
70
|
-
component: SmartCrmCompanyInfoComponent
|
|
71
|
-
},
|
|
72
|
-
//////////////////////
|
|
73
|
-
// Contacts view
|
|
74
|
-
//////////////////////
|
|
75
|
-
{
|
|
76
|
-
path: 'contacts',
|
|
77
|
-
component: SmartCrmContactComponent
|
|
78
|
-
},
|
|
79
|
-
{
|
|
80
|
-
path: 'contacts/:accountId',
|
|
81
|
-
component: SmartCrmContactComponent
|
|
82
|
-
},
|
|
83
|
-
{
|
|
84
|
-
path: 'contacts/detail/:id',
|
|
85
|
-
component: SmartCrmContactDetailsComponent
|
|
86
|
-
},
|
|
87
|
-
{
|
|
88
|
-
path: 'contacts/add/:accountId',
|
|
89
|
-
component: SmartCrmContactDetailsComponent
|
|
90
|
-
},
|
|
91
|
-
{
|
|
92
|
-
path: 'contacts/add',
|
|
93
|
-
component: SmartCrmContactDetailsComponent
|
|
94
|
-
},
|
|
95
|
-
{
|
|
96
|
-
path: 'contacts/info/:id',
|
|
97
|
-
component: SmartCrmContactInfoComponent
|
|
98
|
-
},
|
|
99
|
-
//////////////////////
|
|
100
|
-
// Opportunities view
|
|
101
|
-
//////////////////////
|
|
102
|
-
{
|
|
103
|
-
path: 'opportunities',
|
|
104
|
-
component: SmartCrmOpportunitiesComponent
|
|
105
|
-
},
|
|
106
|
-
{
|
|
107
|
-
path: 'opportunities/:id',
|
|
108
|
-
component: SmartCrmOpportunitiesDetailsComponent
|
|
109
|
-
},
|
|
110
|
-
{
|
|
111
|
-
path: 'opportunities/add',
|
|
112
|
-
component: SmartCrmOpportunitiesDetailsComponent
|
|
113
|
-
},
|
|
114
|
-
{
|
|
115
|
-
path: 'opportunities/info/:id',
|
|
116
|
-
component: SmartCrmOpportunitiesInfoComponent
|
|
117
|
-
},
|
|
118
|
-
//////////////////////
|
|
119
|
-
// Leads view
|
|
120
|
-
//////////////////////
|
|
121
|
-
{
|
|
122
|
-
path: 'leads',
|
|
123
|
-
component: SmartCrmLeadsComponent
|
|
124
|
-
},
|
|
125
|
-
{
|
|
126
|
-
path: 'leads/details/add',
|
|
127
|
-
component: SmartCrmLeadsDetailsComponent
|
|
128
|
-
},
|
|
129
|
-
{
|
|
130
|
-
path: 'leads/details/:Id',
|
|
131
|
-
component: SmartCrmLeadsDetailsComponent
|
|
132
|
-
},
|
|
133
|
-
//////////////////////
|
|
134
|
-
// Marketing view
|
|
135
|
-
//////////////////////
|
|
136
|
-
{
|
|
137
|
-
path: 'marketing/emails',
|
|
138
|
-
component: SmartCrmCommunicationsComponent,
|
|
139
|
-
data: {
|
|
140
|
-
permission: `${CRM_PERMISSIONS.Marketing}`
|
|
141
|
-
}
|
|
142
|
-
},
|
|
143
|
-
{
|
|
144
|
-
path: 'marketing/emails/add',
|
|
145
|
-
component: SmartCrmCommunicationsDetailsComponent,
|
|
146
|
-
data: {
|
|
147
|
-
permission: `${CRM_PERMISSIONS.Marketing}`
|
|
148
|
-
}
|
|
149
|
-
},
|
|
150
|
-
{
|
|
151
|
-
path: 'marketing/emails/:Id',
|
|
152
|
-
component: SmartCrmCommunicationsDetailsComponent,
|
|
153
|
-
data: {
|
|
154
|
-
permission: `${CRM_PERMISSIONS.Marketing}`
|
|
155
|
-
}
|
|
156
|
-
},
|
|
157
|
-
{
|
|
158
|
-
path: 'marketing/emails/info/:Id',
|
|
159
|
-
component: SmartCrmMarketingViewComponent,
|
|
160
|
-
data: {
|
|
161
|
-
permission: `${CRM_PERMISSIONS.Marketing}`
|
|
162
|
-
}
|
|
163
|
-
},
|
|
164
|
-
//////////////////////
|
|
165
|
-
// Customer Success view
|
|
166
|
-
//////////////////////
|
|
167
|
-
{
|
|
168
|
-
path: 'customer-success',
|
|
169
|
-
component: SmartCrmCustomerSuccessComponent,
|
|
170
|
-
data: {
|
|
171
|
-
permission: `${CRM_PERMISSIONS.CustomerSuccess}`
|
|
172
|
-
}
|
|
173
|
-
},
|
|
174
|
-
//////////////////////
|
|
175
|
-
// Competition view
|
|
176
|
-
//////////////////////
|
|
177
|
-
{
|
|
178
|
-
path: 'competition',
|
|
179
|
-
component: SmartCrmCompetitionComponent,
|
|
180
|
-
data: {
|
|
181
|
-
permission: `${CRM_PERMISSIONS.Competition}`
|
|
182
|
-
}
|
|
183
|
-
},
|
|
184
|
-
//////////////////////
|
|
185
|
-
// Insight view
|
|
186
|
-
//////////////////////
|
|
187
|
-
{
|
|
188
|
-
path: 'insight',
|
|
189
|
-
component: SmartCrmInsightComponent,
|
|
190
|
-
data: {
|
|
191
|
-
permission: `${CRM_PERMISSIONS.Insight}`
|
|
192
|
-
}
|
|
193
|
-
},
|
|
194
|
-
//////////////////////
|
|
195
|
-
// Configuration view
|
|
196
|
-
//////////////////////
|
|
197
|
-
{
|
|
198
|
-
path: 'configuration',
|
|
199
|
-
component: SmartCrmConfigurationComponent,
|
|
200
|
-
data: {
|
|
201
|
-
permission: `${CRM_PERMISSIONS.Configuration}`
|
|
202
|
-
}
|
|
203
|
-
},
|
|
204
|
-
{
|
|
205
|
-
path: 'configuration/:tabId',
|
|
206
|
-
component: SmartCrmConfigurationComponent,
|
|
207
|
-
data: {
|
|
208
|
-
permission: `${CRM_PERMISSIONS.Configuration}`
|
|
209
|
-
}
|
|
210
|
-
},
|
|
211
|
-
{
|
|
212
|
-
path: 'configuration/detail/add',
|
|
213
|
-
component: SmartCrmSettingsDetailsComponent,
|
|
214
|
-
data: {
|
|
215
|
-
permission: `${CRM_PERMISSIONS.Configuration}`
|
|
216
|
-
}
|
|
217
|
-
},
|
|
218
|
-
{
|
|
219
|
-
path: 'configuration/detail/:id',
|
|
220
|
-
component: SmartCrmSettingsDetailsComponent,
|
|
221
|
-
data: {
|
|
222
|
-
permission: `${CRM_PERMISSIONS.Configuration}`
|
|
223
|
-
}
|
|
224
|
-
},
|
|
225
|
-
{
|
|
226
|
-
path: 'configuration/source-details/:id',
|
|
227
|
-
component: SmartCrmSourceDetailsComponent,
|
|
228
|
-
data: {
|
|
229
|
-
permission: `${CRM_PERMISSIONS.Configuration}`
|
|
230
|
-
}
|
|
231
|
-
},
|
|
232
|
-
{
|
|
233
|
-
path: 'configuration/source-details/add',
|
|
234
|
-
component: SmartCrmSourceDetailsComponent,
|
|
235
|
-
data: {
|
|
236
|
-
permission: `${CRM_PERMISSIONS.Configuration}`
|
|
237
|
-
}
|
|
238
|
-
},
|
|
239
|
-
{
|
|
240
|
-
path: 'configuration/stage-details/:id',
|
|
241
|
-
component: SmartCrmStageDetailsComponent,
|
|
242
|
-
data: {
|
|
243
|
-
permission: `${CRM_PERMISSIONS.Configuration}`
|
|
244
|
-
}
|
|
245
|
-
},
|
|
246
|
-
{
|
|
247
|
-
path: 'configuration/stage-details/add',
|
|
248
|
-
component: SmartCrmStageDetailsComponent,
|
|
249
|
-
data: {
|
|
250
|
-
permission: `${CRM_PERMISSIONS.Configuration}`
|
|
251
|
-
}
|
|
252
|
-
},
|
|
253
|
-
{
|
|
254
|
-
path: 'configuration/category-details/:id',
|
|
255
|
-
component: SmartCrmOpportunityCategoriesDetailsComponent,
|
|
256
|
-
data: {
|
|
257
|
-
permission: `${CRM_PERMISSIONS.Configuration}`
|
|
258
|
-
}
|
|
259
|
-
},
|
|
260
|
-
{
|
|
261
|
-
path: 'configuration/category-details/add',
|
|
262
|
-
component: SmartCrmOpportunityCategoriesDetailsComponent,
|
|
263
|
-
data: {
|
|
264
|
-
permission: `${CRM_PERMISSIONS.Configuration}`
|
|
265
|
-
}
|
|
266
|
-
},
|
|
267
|
-
{
|
|
268
|
-
path: 'configuration/widget',
|
|
269
|
-
component: SmartCrmWidgetsDetailsComponent,
|
|
270
|
-
data: {
|
|
271
|
-
permission: `${CRM_PERMISSIONS.Configuration}`
|
|
272
|
-
}
|
|
273
|
-
},
|
|
274
|
-
{
|
|
275
|
-
path: 'configuration/widget-details/:id',
|
|
276
|
-
component: SmartCrmWidgetsDetailsComponent,
|
|
277
|
-
data: {
|
|
278
|
-
permission: `${CRM_PERMISSIONS.Configuration}`
|
|
279
|
-
}
|
|
280
|
-
},
|
|
281
|
-
{
|
|
282
|
-
path: 'configuration/widget-details/add',
|
|
283
|
-
component: SmartCrmWidgetsDetailsComponent,
|
|
284
|
-
data: {
|
|
285
|
-
permission: `${CRM_PERMISSIONS.Configuration}`
|
|
286
|
-
}
|
|
287
|
-
},
|
|
288
|
-
{
|
|
289
|
-
path: 'configuration/admin',
|
|
290
|
-
component: SmartCrmWidgetsDetailsComponent,
|
|
291
|
-
data: {
|
|
292
|
-
permission: `${CRM_PERMISSIONS.Configuration}`
|
|
293
|
-
}
|
|
294
|
-
}
|
|
295
|
-
]
|
|
296
|
-
}
|
|
297
|
-
];
|
|
298
|
-
export class SmartCrmPrivateRoutingModule {
|
|
299
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.11", ngImport: i0, type: SmartCrmPrivateRoutingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
300
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.3.11", ngImport: i0, type: SmartCrmPrivateRoutingModule, imports: [i1.RouterModule], exports: [RouterModule] }); }
|
|
301
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.11", ngImport: i0, type: SmartCrmPrivateRoutingModule, imports: [RouterModule.forChild(routes), RouterModule] }); }
|
|
302
|
-
}
|
|
303
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.11", ngImport: i0, type: SmartCrmPrivateRoutingModule, decorators: [{
|
|
304
|
-
type: NgModule,
|
|
305
|
-
args: [{
|
|
306
|
-
imports: [RouterModule.forChild(routes)],
|
|
307
|
-
exports: [RouterModule]
|
|
308
|
-
}]
|
|
309
|
-
}] });
|
|
310
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic21hcnQtY3JtLXByaXZhdGUucm91dGluZy5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9saWJzL3NtYXJ0LWNybS9zcmMvbGliL3ByaXZhdGUvc21hcnQtY3JtLXByaXZhdGUucm91dGluZy5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUUsWUFBWSxFQUFVLE1BQU0saUJBQWlCLENBQUM7QUFDdkQsT0FBTyxFQUFFLCtCQUErQixFQUFFLE1BQU0sK0ZBQStGLENBQUM7QUFDaEosT0FBTyxFQUFFLDRCQUE0QixFQUFFLE1BQU0seUZBQXlGLENBQUM7QUFDdkksT0FBTyxFQUFFLDBCQUEwQixFQUFFLE1BQU0sOERBQThELENBQUM7QUFDMUcsT0FBTyxFQUFFLDRCQUE0QixFQUFFLE1BQU0sMEZBQTBGLENBQUM7QUFDeEksT0FBTyxFQUFFLGdDQUFnQyxFQUFFLE1BQU0sc0hBQXNILENBQUM7QUFDeEssT0FBTyxFQUFFLDhCQUE4QixFQUFFLE1BQU0sd0VBQXdFLENBQUM7QUFDeEgsT0FBTyxFQUFFLDZDQUE2QyxFQUFFLE1BQU0sbUtBQW1LLENBQUM7QUFDbE8sT0FBTyxFQUFFLDhCQUE4QixFQUFFLE1BQU0sbUhBQW1ILENBQUM7QUFDbkssT0FBTyxFQUFFLDZCQUE2QixFQUFFLE1BQU0saUhBQWlILENBQUM7QUFDaEssT0FBTyxFQUFFLCtCQUErQixFQUFFLE1BQU0sc0hBQXNILENBQUM7QUFDdkssT0FBTyxFQUFFLCtCQUErQixFQUFFLE1BQU0sK0ZBQStGLENBQUM7QUFDaEosT0FBTyxFQUFFLDRCQUE0QixFQUFFLE1BQU0seUZBQXlGLENBQUM7QUFDdkksT0FBTyxFQUFFLHdCQUF3QixFQUFFLE1BQU0sOERBQThELENBQUM7QUFDeEcsT0FBTyxFQUFFLGdDQUFnQyxFQUFFLE1BQU0saUdB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RDtnQkFDSSxJQUFJLEVBQUUsa0NBQWtDO2dCQUN4QyxTQUFTLEVBQUUsK0JBQStCO2dCQUMxQyxJQUFJLEVBQUU7b0JBQ0YsVUFBVSxFQUFFLEdBQUcsZUFBZSxDQUFDLGFBQWEsRUFBRTtpQkFDakQ7YUFDSjtZQUNEO2dCQUNJLElBQUksRUFBRSxrQ0FBa0M7Z0JBQ3hDLFNBQVMsRUFBRSwrQkFBK0I7Z0JBQzFDLElBQUksRUFBRTtvQkFDRixVQUFVLEVBQUUsR0FBRyxlQUFlLENBQUMsYUFBYSxFQUFFO2lCQUNqRDthQUNKO1lBQ0Q7Z0JBQ0ksSUFBSSxFQUFFLHFCQUFxQjtnQkFDM0IsU0FBUyxFQUFFLCtCQUErQjtnQkFDMUMsSUFBSSxFQUFFO29CQUNGLFVBQVUsRUFBRSxHQUFHLGVBQWUsQ0FBQyxhQUFhLEVBQUU7aUJBQ2pEO2FBQ0o7U0FDSjtLQUNKO0NBQ0osQ0FBQztBQU1GLE1BQU0sT0FBTyw0QkFBNEI7K0dBQTVCLDRCQUE0QjtnSEFBNUIsNEJBQTRCLHdDQUYzQixZQUFZO2dIQUViLDRCQUE0QixZQUgzQixZQUFZLENBQUMsUUFBUSxDQUFDLE1BQU0sQ0FBQyxFQUM3QixZQUFZOzs0RkFFYiw0QkFBNEI7a0JBSnhDLFFBQVE7bUJBQUM7b0JBQ04sT0FBTyxFQUFFLENBQUMsWUFBWSxDQUFDLFFBQVEsQ0FBQyxNQUFNLENBQUMsQ0FBQztvQkFDeEMsT0FBTyxFQUFFLENBQUMsWUFBWSxDQUFDO2lCQUMxQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBSb3V0ZXJNb2R1bGUsIFJvdXRlcyB9IGZyb20gJ0Bhbmd1bGFyL3JvdXRlcic7XG5pbXBvcnQgeyBTbWFydENybUNvbXBhbnlEZXRhaWxzQ29tcG9uZW50IH0gZnJvbSAnLi9jb21wb25lbnRzL3NtYXJ0LWNybS1hY2NvdW50cy9zbWFydC1jcm0tYWNjb3VudC1kZXRhaWxzL3NtYXJ0LWNybS1hY2NvdW50LWRldGFpbHMuY29tcG9uZW50JztcbmltcG9ydCB7IFNtYXJ0Q3JtQ29tcGFueUluZm9Db21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvc21hcnQtY3JtLWFjY291bnRzL3NtYXJ0LWNybS1hY2NvdW50LWluZm8vc21hcnQtY3JtLWFjY291bnQtaW5mby5jb21wb25lbnQnO1xuaW1wb3J0IHsgU21hcnRDcm1Db21wYW5pZXNDb21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvc21hcnQtY3JtLWFjY291bnRzL3NtYXJ0LWNybS1hY2NvdW50cy5jb21wb25lbnQnO1xuaW1wb3J0IHsgU21hcnRDcm1Db21wZXRpdGlvbkNvbXBvbmVudCB9IGZyb20gJy4vY29tcG9uZW50cy9zbWFydC1jcm0tY29tcGV0aXRpb24vc21hcnQtY3JtLWNvbXBldGl0aW9uL3NtYXJ0LWNybS1jb21wZXRpdGlvbi5jb21wb25lbnQnO1xuaW1wb3J0IHsgU21hcnRDcm1TZXR0aW5nc0RldGFpbHNDb21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvc21hcnQtY3JtLWNvbmZpZ3VyYXRpb24vc21hcnQtY3JtLWFjdGlvbnMvc21hcnQtY3JtLWFjdGlvbnMtZGV0YWlscy9zbWFydC1jcm0tYWN0aW9ucy1kZXRhaWxzLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBTbWFydENybUNvbmZpZ3VyYXRpb25Db21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvc21hcnQtY3JtLWNvbmZpZ3VyYXRpb24vc21hcnQtY3JtLWNvbmZpZ3VyYXRpb24uY29tcG9uZW50JztcbmltcG9ydCB7IFNtYXJ0Q3JtT3Bwb3J0dW5pdHlDYXRlZ29yaWVzRGV0YWlsc0NvbXBvbmVudCB9IGZyb20gJy4vY29tcG9uZW50cy9zbWFydC1jcm0tY29uZmlndXJhdGlvbi9zbWFydC1jcm0tb3Bwb3J0dW5pdHktY2F0ZWdvcmllcy9zbWFydC1jcm0tb3Bwb3J0dW5pdHktY2F0ZWdvcmllcy1kZXRhaWxzL3NtYXJ0LWNybS1vcHBvcnR1bml0eS1jYXRlZ29yaWVzLWRldGFpbHMuY29tcG9uZW50JztcbmltcG9ydCB7IFNtYXJ0Q3JtU291cmNlRGV0YWlsc0NvbXBvbmVudCB9IGZyb20gJy4vY29tcG9uZW50cy9zbWFydC1jcm0tY29uZmlndXJhdGlvbi9zbWFydC1jcm0tc291cmNlL3NtYXJ0LWNybS1zb3VyY2UtZGV0YWlscy9zbWFydC1jcm0tc291cmNlLWRldGFpbHMuY29tcG9uZW50JztcbmltcG9ydCB7IFNtYXJ0Q3JtU3RhZ2VEZXRhaWxzQ29tcG9uZW50IH0gZnJvbSAnLi9jb21wb25lbnRzL3NtYXJ0LWNybS1jb25maWd1cmF0aW9uL3NtYXJ0LWNybS1zdGFnZXMvc21hcnQtY3JtLXN0YWdlLWRldGFpbHMvc21hcnQtY3JtLXN0YWdlLWRldGFpbHMuY29tcG9uZW50JztcbmltcG9ydCB7IFNtYXJ0Q3JtV2lkZ2V0c0RldGFpbHNDb21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvc21hcnQtY3JtLWNvbmZpZ3VyYXRpb24vc21hcnQtY3JtLXdpZGdldHMvc21hcnQtY3JtLXdpZGdldHMtZGV0YWlscy9zbWFydC1jcm0td2lkZ2V0cy1kZXRhaWxzLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBTbWFydENybUNvbnRhY3REZXRhaWxzQ29tcG9uZW50IH0gZnJvbSAnLi9jb21wb25lbnRzL3NtYXJ0LWNybS1jb250YWN0cy9zbWFydC1jcm0tY29udGFjdC1kZXRhaWxzL3NtYXJ0LWNybS1jb250YWN0LWRldGFpbHMuY29tcG9uZW50JztcbmltcG9ydCB7IFNtYXJ0Q3JtQ29udGFjdEluZm9Db21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvc21hcnQtY3JtLWNvbnRhY3RzL3NtYXJ0LWNybS1jb250YWN0LWluZm8vc21hcnQtY3JtLWNvbnRhY3QtaW5mby5jb21wb25lbnQnO1xuaW1wb3J0IHsgU21hcnRDcm1Db250YWN0Q29tcG9uZW50IH0gZnJvbSAnLi9jb21wb25lbnRzL3NtYXJ0LWNybS1jb250YWN0cy9zbWFydC1jcm0tY29udGFjdHMuY29tcG9uZW50JztcbmltcG9ydCB7IFNtYXJ0Q3JtQ3VzdG9tZXJTdWNjZXNzQ29tcG9uZW50IH0gZnJvbSAnLi9jb21wb25lbnRzL3NtYXJ0LWNybS1jdXN0b21lci9zbWFydC1jcm0tY3VzdG9tZXItc3VjY2Vzcy9zbWFydC1jcm0tY3VzdG9tZXItc3VjY2Vzcy5jb21wb25lbnQnO1xuaW1wb3J0IHsgU21hcnRDcm1JbnNpZ2h0Q29tcG9uZW50IH0gZnJvbSAnLi9jb21wb25lbnRzL3NtYXJ0LWNybS1pbnNpZ2h0L3NtYXJ0LWNybS1pbnNpZ2h0LmNvbXBvbmVudCc7XG5pbXBvcnQgeyBTbWFydENybUxlYWRzRGV0YWlsc0NvbXBvbmVudCB9IGZyb20gJy4vY29tcG9uZW50cy9zbWFydC1jcm0tbGVhZHMvc21hcnQtY3JtLWxlYWRzLWRldGFpbHMvc21hcnQtY3JtLWxlYWRzLWRldGFpbHMuY29tcG9uZW50JztcbmltcG9ydCB7IFNtYXJ0Q3JtTGVhZHNDb21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvc21hcnQtY3JtLWxlYWRzL3NtYXJ0LWNybS1sZWFkcy5jb21wb25lbnQnO1xuaW1wb3J0IHsgU21hcnRDcm1Db21tdW5pY2F0aW9uc0RldGFpbHNDb21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvc21hcnQtY3JtLW1hcmtldGluZy9zbWFydC1jcm0tbWFya2V0aW5nLWxpc3Qvc21hcnQtY3JtLW1hcmtldGluZy1kZXRhaWxzL3NtYXJ0LWNybS1tYXJrZXRpbmctZGV0YWlscy5jb21wb25lbnQnO1xuaW1wb3J0IHsgU21hcnRDcm1Db21tdW5pY2F0aW9uc0NvbXBvbmVudCB9IGZyb20gJy4vY29tcG9uZW50cy9zbWFydC1jcm0tbWFya2V0aW5nL3NtYXJ0LWNybS1tYXJrZXRpbmctbGlzdC9zbWFydC1jcm0tbWFya2V0aW5nLWxpc3QuY29tcG9uZW50JztcbmltcG9ydCB7IFNtYXJ0Q3JtTWFya2V0aW5nVmlld0NvbXBvbmVudCB9IGZyb20gJy4vY29tcG9uZW50cy9zbWFydC1jcm0tbWFya2V0aW5nL3NtYXJ0LWNybS1tYXJrZXRpbmcuY29tcG9uZW50JztcbmltcG9ydCB7IFNtYXJ0Q3JtT3Bwb3J0dW5pdGllc0RldGFpbHNDb21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvc21hcnQtY3JtLW9wcG9ydHVuaXRpZXMvc21hcnQtY3JtLW9wcG9ydHVuaXRpZXMtbGlzdC9zbWFydC1jcm0tb3Bwb3J0dW5pdGllcy1kZXRhaWxzL3NtYXJ0LWNybS1vcHBvcnR1bml0aWVzLWRldGFpbHMuY29tcG9uZW50JztcbmltcG9ydCB7IFNtYXJ0Q3JtT3Bwb3J0dW5pdGllc0luZm9Db21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvc21hcnQtY3JtLW9wcG9ydHVuaXRpZXMvc21hcnQtY3JtLW9wcG9ydHVuaXRpZXMtbGlzdC9zbWFydC1jcm0tb3Bwb3J0dW5pdGllcy1pbmZvL3NtYXJ0LWNybS1vcHBvcnR1bml0aWVzLWluZm8uY29tcG9uZW50JztcbmltcG9ydCB7IFNtYXJ0Q3JtT3Bwb3J0dW5pdGllc0NvbXBvbmVudCB9IGZyb20gJy4vY29tcG9uZW50cy9zbWFydC1jcm0tb3Bwb3J0dW5pdGllcy9zbWFydC1jcm0tb3Bwb3J0dW5pdGllcy5jb21wb25lbnQnO1xuaW1wb3J0IHsgU21hcnRDcm1TdW1tYXJ5Q29tcG9uZW50IH0gZnJvbSAnLi9jb21wb25lbnRzL3NtYXJ0LWNybS1zdW1tYXJ5L3NtYXJ0LWNybS1zdW1tYXJ5LmNvbXBvbmVudCc7XG5pbXBvcnQgeyBTbWFydENybVRhYnNDb21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvc21hcnQtY3JtLXRhYnMvc21hcnQtY3JtLXRhYnMuY29tcG9uZW50JztcblxuaW1wb3J0IHsgUGFnZUFjY2Vzc0d1YXJkIH0gZnJvbSAnQHBvc2l3aXNlL2NvcmUtZ3VhcmRzJztcbmltcG9ydCB7IENSTV9QRVJNSVNTSU9OUyB9IGZyb20gJ0Bwb3Npd2lzZS9zbWFydC1jcm0tc2hhcmVkJztcblxuLy8gVGhlc2UgYXJlIHRoZSBwcml2YXRlIHJvdXRlcy4gVGhlIHB1YmxpYyByb3V0ZXMgYW5kIG1vZHVsZXMgbmVlZHMgdG8gYmUgZGVmaW5lZCBpbiBwdWJsaWMucm91dGVzLnRzXG5jb25zdCByb3V0ZXM6IFJvdXRlcyA9IFtcbiAgICB7XG4gICAgICAgIHBhdGg6ICcnLFxuICAgICAgICBjb21wb25lbnQ6IFNtYXJ0Q3JtVGFic0NvbXBvbmVudCxcbiAgICAgICAgZGF0YToge1xuICAgICAgICAgICAgdGl0bGU6ICdTbWFydCBDUk0gTW9kdWxlcycsXG4gICAgICAgICAgICBwZXJtaXNzaW9uOiBgJHtDUk1fUEVSTUlTU0lPTlMuU21hcnRDcm1Nb2R1bGVzfWBcbiAgICAgICAgfSxcbiAgICAgICAgY2FuQWN0aXZhdGU6IFtQYWdlQWNjZXNzR3VhcmRdLCAvLyBHZXRzIGNhbGxlZCBmb3IgdGhlIGN1cnJlbnQgcm91dGVcbiAgICAgICAgY2FuQWN0aXZhdGVDaGlsZDogW1BhZ2VBY2Nlc3NHdWFyZF0sIC8vIEdldHMgY2FsbGVkIGZvciB0aGUgY2hpbGRyZW4gcm91dGVcbiAgICAgICAgY2hpbGRyZW46IFtcbiAgICAgICAgICAgIHtcbiAgICAgICAgICAgICAgICBwYXRoOiAnJyxcbiAgICAgICAgICAgICAgICByZWRpcmVjdFRvOiAnL2hvbWUnLFxuICAgICAgICAgICAgICAgIHBhdGhNYXRjaDogJ2Z1bGwnXG4gICAgICAgICAgICB9LFxuICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgIHBhdGg6ICdzdW1tYXJ5JyxcbiAgICAgICAgICAgICAgICBjb21wb25lbnQ6IFNtYXJ0Q3JtU3VtbWFyeUNvbXBvbmVudFxuICAgICAgICAgICAgfSxcbiAgICAgICAgICAgIC8vLy8vLy8vLy8vLy8vLy8vLy8vLy9cbiAgICAgICAgICAgIC8vIEFjY291bnRzIHZpZXdcbiAgICAgICAgICAgIC8vLy8vLy8vLy8vLy8vLy8vLy8vLy9cbiAgICAgICAgICAgIHtcbiAgICAgICAgICAgICAgICBwYXRoOiAnYWNjb3VudHMnLFxuICAgICAgICAgICAgICAgIGNvbXBvbmVudDogU21hcnRDcm1Db21wYW5pZXNDb21wb25lbnRcbiAgICAgICAgICAgIH0sXG4gICAgICAgICAgICB7XG4gICAgICAgICAgICAgICAgcGF0aDogJ2FjY291bnRzLzppZCcsXG4gICAgICAgICAgICAgICAgY29tcG9uZW50OiBTbWFydENybUNvbXBhbnlEZXRhaWxzQ29tcG9uZW50XG4gICAgICAgICAgICB9LFxuICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgIHBhdGg6ICdhY2NvdW50cy9hZGQnLFxuICAgICAgICAgICAgICAgIGNvbXBvbmVudDogU21hcnRDcm1Db21wYW55RGV0YWlsc0NvbXBvbmVudFxuICAgICAgICAgICAgfSxcbiAgICAgICAgICAgIHtcbiAgICAgICAgICAgICAgICBwYXRoOiAnYWNjb3VudHMvaW5mby86aWQnLFxuICAgICAgICAgICAgICAgIGNvbXBvbmVudDogU21hcnRDcm1Db21wYW55SW5mb0NvbXBvbmVudFxuICAgICAgICAgICAgfSxcbiAgICAgICAgICAgIC8vLy8vLy8vLy8vLy8vLy8vLy8vLy9cbiAgICAgICAgICAgIC8vIENvbnRhY3RzIHZpZXdcbiAgICAgICAgICAgIC8vLy8vLy8vLy8vLy8vLy8vLy8vLy9cbiAgICAgICAgICAgIHtcbiAgICAgICAgICAgICAgICBwYXRoOiAnY29udGFjdHMnLFxuICAgICAgICAgICAgICAgIGNvbXBvbmVudDogU21hcnRDcm1Db250YWN0Q29tcG9uZW50XG4gICAgICAgICAgICB9LFxuICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgIHBhdGg6ICdjb250YWN0cy86YWNjb3VudElkJyxcbiAgICAgICAgICAgICAgICBjb21wb25lbnQ6IFNtYXJ0Q3JtQ29udGFjdENvbXBvbmVudFxuICAgICAgICAgICAgfSxcbiAgICAgICAgICAgIHtcbiAgICAgICAgICAgICAgICBwYXRoOiAnY29udGFjdHMvZGV0YWlsLzppZCcsXG4gICAgICAgICAgICAgICAgY29tcG9uZW50OiBTbWFydENybUNvbnRhY3REZXRhaWxzQ29tcG9uZW50XG4gICAgICAgICAgICB9LFxuICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgIHBhdGg6ICdjb250YWN0cy9hZGQvOmFjY291bnRJZCcsXG4gICAgICAgICAgICAgICAgY29tcG9uZW50OiBTbWFydENybUNvbnRhY3REZXRhaWxzQ29tcG9uZW50XG4gICAgICAgICAgICB9LFxuICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgIHBhdGg6ICdjb250YWN0cy9hZGQnLFxuICAgICAgICAgICAgICAgIGNvbXBvbmVudDogU21hcnRDcm1Db250YWN0RGV0YWlsc0NvbXBvbmVudFxuICAgICAgICAgICAgfSxcbiAgICAgICAgICAgIHtcbiAgICAgICAgICAgICAgICBwYXRoOiAnY29udGFjdHMvaW5mby86aWQnLFxuICAgICAgICAgICAgICAgIGNvbXBvbmVudDogU21hcnRDcm1Db250YWN0SW5mb0NvbXBvbmVudFxuICAgICAgICAgICAgfSxcbiAgICAgICAgICAgIC8vLy8vLy8vLy8vLy8vLy8vLy8vLy9cbiAgICAgICAgICAgIC8vIE9wcG9ydHVuaXRpZXMgdmlld1xuICAgICAgICAgICAgLy8vLy8vLy8vLy8vLy8vLy8vLy8vL1xuICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgIHBhdGg6ICdvcHBvcnR1bml0aWVzJyxcbiAgICAgICAgICAgICAgICBjb21wb25lbnQ6IFNtYXJ0Q3JtT3Bwb3J0dW5pdGllc0NvbXBvbmVudFxuICAgICAgICAgICAgfSxcbiAgICAgICAgICAgIHtcbiAgICAgICAgICAgICAgICBwYXRoOiAnb3Bwb3J0dW5pdGllcy86aWQnLFxuICAgICAgICAgICAgICAgIGNvbXBvbmVudDogU21hcnRDcm1PcHBvcnR1bml0aWVzRGV0YWlsc0NvbXBvbmVudFxuICAgICAgICAgICAgfSxcbiAgICAgICAgICAgIHtcbiAgICAgICAgICAgICAgICBwYXRoOiAnb3Bwb3J0dW5pdGllcy9hZGQnLFxuICAgICAgICAgICAgICAgIGNvbXBvbmVudDogU21hcnRDcm1PcHBvcnR1bml0aWVzRGV0YWlsc0NvbXBvbmVudFxuICAgICAgICAgICAgfSxcbiAgICAgICAgICAgIHtcbiAgICAgICAgICAgICAgICBwYXRoOiAnb3Bwb3J0dW5pdGllcy9pbmZvLzppZCcsXG4gICAgICAgICAgICAgICAgY29tcG9uZW50OiBTbWFydENybU9wcG9ydHVuaXRpZXNJbmZvQ29tcG9uZW50XG4gICAgICAgICAgICB9LFxuICAgICAgICAgICAgLy8vLy8vLy8vLy8vLy8vLy8vLy8vL1xuICAgICAgICAgICAgLy8gTGVhZHMgdmlld1xuICAgICAgICAgICAgLy8vLy8vLy8vLy8vLy8vLy8vLy8vL1xuICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgIHBhdGg6ICdsZWFkcycsXG4gICAgICAgICAgICAgICAgY29tcG9uZW50OiBTbWFydENybUxlYWRzQ29tcG9uZW50XG4gICAgICAgICAgICB9LFxuICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgIHBhdGg6ICdsZWFkcy9kZXRhaWxzL2FkZCcsXG4gICAgICAgICAgICAgICAgY29tcG9uZW50OiBTbWFydENybUxlYWRzRGV0YWlsc0NvbXBvbmVudFxuICAgICAgICAgICAgfSxcbiAgICAgICAgICAgIHtcbiAgICAgICAgICAgICAgICBwYXRoOiAnbGVhZHMvZGV0YWlscy86SWQnLFxuICAgICAgICAgICAgICAgIGNvbXBvbmVudDogU21hcnRDcm1MZWFkc0RldGFpbHNDb21wb25lbnRcbiAgICAgICAgICAgIH0sXG4gICAgICAgICAgICAvLy8vLy8vLy8vLy8vLy8vLy8vLy8vXG4gICAgICAgICAgICAvLyBNYXJrZXRpbmcgdmlld1xuICAgICAgICAgICAgLy8vLy8vLy8vLy8vLy8vLy8vLy8vL1xuICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgIHBhdGg6ICdtYXJrZXRpbmcvZW1haWxzJyxcbiAgICAgICAgICAgICAgICBjb21wb25lbnQ6IFNtYXJ0Q3JtQ29tbXVuaWNhdGlvbnNDb21wb25lbnQsXG4gICAgICAgICAgICAgICAgZGF0YToge1xuICAgICAgICAgICAgICAgICAgICBwZXJtaXNzaW9uOiBgJHtDUk1fUEVSTUlTU0lPTlMuTWFya2V0aW5nfWBcbiAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICB9LFxuICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgIHBhdGg6ICdtYXJrZXRpbmcvZW1haWxzL2FkZCcsXG4gICAgICAgICAgICAgICAgY29tcG9uZW50OiBTbWFydENybUNvbW11bmljYXRpb25zRGV0YWlsc0NvbXBvbmVudCxcbiAgICAgICAgICAgICAgICBkYXRhOiB7XG4gICAgICAgICAgICAgICAgICAgIHBlcm1pc3Npb246IGAke0NSTV9QRVJNSVNTSU9OUy5NYXJrZXRpbmd9YFxuICAgICAgICAgICAgICAgIH1cbiAgICAgICAgICAgIH0sXG4gICAgICAgICAgICB7XG4gICAgICAgICAgICAgICAgcGF0aDogJ21hcmtldGluZy9lbWFpbHMvOklkJyxcbiAgICAgICAgICAgICAgICBjb21wb25lbnQ6IFNtYXJ0Q3JtQ29tbXVuaWNhdGlvbnNEZXRhaWxzQ29tcG9uZW50LFxuICAgICAgICAgICAgICAgIGRhdGE6IHtcbiAgICAgICAgICAgICAgICAgICAgcGVybWlzc2lvbjogYCR7Q1JNX1BFUk1JU1NJT05TLk1hcmtldGluZ31gXG4gICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgfSxcbiAgICAgICAgICAgIHtcbiAgICAgICAgICAgICAgICBwYXRoOiAnbWFya2V0aW5nL2VtYWlscy9pbmZvLzpJZCcsXG4gICAgICAgICAgICAgICAgY29tcG9uZW50OiBTbWFydENybU1hcmtldGluZ1ZpZXdDb21wb25lbnQsXG4gICAgICAgICAgICAgICAgZGF0YToge1xuICAgICAgICAgICAgICAgICAgICBwZXJtaXNzaW9uOiBgJHtDUk1fUEVSTUlTU0lPTlMuTWFya2V0aW5nfWBcbiAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICB9LFxuICAgICAgICAgICAgLy8vLy8vLy8vLy8vLy8vLy8vLy8vL1xuICAgICAgICAgICAgLy8gQ3VzdG9tZXIgU3VjY2VzcyB2aWV3XG4gICAgICAgICAgICAvLy8vLy8vLy8vLy8vLy8vLy8vLy8vXG4gICAgICAgICAgICB7XG4gICAgICAgICAgICAgICAgcGF0aDogJ2N1c3RvbWVyLXN1Y2Nlc3MnLFxuICAgICAgICAgICAgICAgIGNvbXBvbmVudDogU21hcnRDcm1DdXN0b21lclN1Y2Nlc3NDb21wb25lbnQsXG4gICAgICAgICAgICAgICAgZGF0YToge1xuICAgICAgICAgICAgICAgICAgICBwZXJtaXNzaW9uOiBgJHtDUk1fUEVSTUlTU0lPTlMuQ3VzdG9tZXJTdWNjZXNzfWBcbiAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICB9LFxuICAgICAgICAgICAgLy8vLy8vLy8vLy8vLy8vLy8vLy8vL1xuICAgICAgICAgICAgLy8gQ29tcGV0aXRpb24gdmlld1xuICAgICAgICAgICAgLy8vLy8vLy8vLy8vLy8vLy8vLy8vL1xuICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgIHBhdGg6ICdjb21wZXRpdGlvbicsXG4gICAgICAgICAgICAgICAgY29tcG9uZW50OiBTbWFydENybUNvbXBldGl0aW9uQ29tcG9uZW50LFxuICAgICAgICAgICAgICAgIGRhdGE6IHtcbiAgICAgICAgICAgICAgICAgICAgcGVybWlzc2lvbjogYCR7Q1JNX1BFUk1JU1NJT05TLkNvbXBldGl0aW9ufWBcbiAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICB9LFxuICAgICAgICAgICAgLy8vLy8vLy8vLy8vLy8vLy8vLy8vL1xuICAgICAgICAgICAgLy8gSW5zaWdodCB2aWV3XG4gICAgICAgICAgICAvLy8vLy8vLy8vLy8vLy8vLy8vLy8vXG4gICAgICAgICAgICB7XG4gICAgICAgICAgICAgICAgcGF0aDogJ2luc2lnaHQnLFxuICAgICAgICAgICAgICAgIGNvbXBvbmVudDogU21hcnRDcm1JbnNpZ2h0Q29tcG9uZW50LFxuICAgICAgICAgICAgICAgIGRhdGE6IHtcbiAgICAgICAgICAgICAgICAgICAgcGVybWlzc2lvbjogYCR7Q1JNX1BFUk1JU1NJT05TLkluc2lnaHR9YFxuICAgICAgICAgICAgICAgIH1cbiAgICAgICAgICAgIH0sXG4gICAgICAgICAgICAvLy8vLy8vLy8vLy8vLy8vLy8vLy8vXG4gICAgICAgICAgICAvLyBDb25maWd1cmF0aW9uIHZpZXdcbiAgICAgICAgICAgIC8vLy8vLy8vLy8vLy8vLy8vLy8vLy9cbiAgICAgICAgICAgIHtcbiAgICAgICAgICAgICAgICBwYXRoOiAnY29uZmlndXJhdGlvbicsXG4gICAgICAgICAgICAgICAgY29tcG9uZW50OiBTbWFydENybUNvbmZpZ3VyYXRpb25Db21wb25lbnQsXG4gICAgICAgICAgICAgICAgZGF0YToge1xuICAgICAgICAgICAgICAgICAgICBwZXJtaXNzaW9uOiBgJHtDUk1fUEVSTUlTU0lPTlMuQ29uZmlndXJhdGlvbn1gXG4gICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgfSxcbiAgICAgICAgICAgIHtcbiAgICAgICAgICAgICAgICBwYXRoOiAnY29uZmlndXJhdGlvbi86dGFiSWQnLFxuICAgICAgICAgICAgICAgIGNvbXBvbmVudDogU21hcnRDcm1Db25maWd1cmF0aW9uQ29tcG9uZW50LFxuICAgICAgICAgICAgICAgIGRhdGE6IHtcbiAgICAgICAgICAgICAgICAgICAgcGVybWlzc2lvbjogYCR7Q1JNX1BFUk1JU1NJT05TLkNvbmZpZ3VyYXRpb259YFxuICAgICAgICAgICAgICAgIH1cbiAgICAgICAgICAgIH0sXG4gICAgICAgICAgICB7XG4gICAgICAgICAgICAgICAgcGF0aDogJ2NvbmZpZ3VyYXRpb24vZGV0YWlsL2FkZCcsXG4gICAgICAgICAgICAgICAgY29tcG9uZW50OiBTbWFydENybVNldHRpbmdzRGV0YWlsc0NvbXBvbmVudCxcbiAgICAgICAgICAgICAgICBkYXRhOiB7XG4gICAgICAgICAgICAgICAgICAgIHBlcm1pc3Npb246IGAke0NSTV9QRVJNSVNTSU9OUy5Db25maWd1cmF0aW9ufWBcbiAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICB9LFxuICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgIHBhdGg6ICdjb25maWd1cmF0aW9uL2RldGFpbC86aWQnLFxuICAgICAgICAgICAgICAgIGNvbXBvbmVudDogU21hcnRDcm1TZXR0aW5nc0RldGFpbHNDb21wb25lbnQsXG4gICAgICAgICAgICAgICAgZGF0YToge1xuICAgICAgICAgICAgICAgICAgICBwZXJtaXNzaW9uOiBgJHtDUk1fUEVSTUlTU0lPTlMuQ29uZmlndXJhdGlvbn1gXG4gICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgfSxcbiAgICAgICAgICAgIHtcbiAgICAgICAgICAgICAgICBwYXRoOiAnY29uZmlndXJhdGlvbi9zb3VyY2UtZGV0YWlscy86aWQnLFxuICAgICAgICAgICAgICAgIGNvbXBvbmVudDogU21hcnRDcm1Tb3VyY2VEZXRhaWxzQ29tcG9uZW50LFxuICAgICAgICAgICAgICAgIGRhdGE6IHtcbiAgICAgICAgICAgICAgICAgICAgcGVybWlzc2lvbjogYCR7Q1JNX1BFUk1JU1NJT05TLkNvbmZpZ3VyYXRpb259YFxuICAgICAgICAgICAgICAgIH1cbiAgICAgICAgICAgIH0sXG4gICAgICAgICAgICB7XG4gICAgICAgICAgICAgICAgcGF0aDogJ2NvbmZpZ3VyYXRpb24vc291cmNlLWRldGFpbHMvYWRkJyxcbiAgICAgICAgICAgICAgICBjb21wb25lbnQ6IFNtYXJ0Q3JtU291cmNlRGV0YWlsc0NvbXBvbmVudCxcbiAgICAgICAgICAgICAgICBkYXRhOiB7XG4gICAgICAgICAgICAgICAgICAgIHBlcm1pc3Npb246IGAke0NSTV9QRVJNSVNTSU9OUy5Db25maWd1cmF0aW9ufWBcbiAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICB9LFxuICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgIHBhdGg6ICdjb25maWd1cmF0aW9uL3N0YWdlLWRldGFpbHMvOmlkJyxcbiAgICAgICAgICAgICAgICBjb21wb25lbnQ6IFNtYXJ0Q3JtU3RhZ2VEZXRhaWxzQ29tcG9uZW50LFxuICAgICAgICAgICAgICAgIGRhdGE6IHtcbiAgICAgICAgICAgICAgICAgICAgcGVybWlzc2lvbjogYCR7Q1JNX1BFUk1JU1NJT05TLkNvbmZpZ3VyYXRpb259YFxuICAgICAgICAgICAgICAgIH1cbiAgICAgICAgICAgIH0sXG4gICAgICAgICAgICB7XG4gICAgICAgICAgICAgICAgcGF0aDogJ2NvbmZpZ3VyYXRpb24vc3RhZ2UtZGV0YWlscy9hZGQnLFxuICAgICAgICAgICAgICAgIGNvbXBvbmVudDogU21hcnRDcm1TdGFnZURldGFpbHNDb21wb25lbnQsXG4gICAgICAgICAgICAgICAgZGF0YToge1xuICAgICAgICAgICAgICAgICAgICBwZXJtaXNzaW9uOiBgJHtDUk1fUEVSTUlTU0lPTlMuQ29uZmlndXJhdGlvbn1gXG4gICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgfSxcbiAgICAgICAgICAgIHtcbiAgICAgICAgICAgICAgICBwYXRoOiAnY29uZmlndXJhdGlvbi9jYXRlZ29yeS1kZXRhaWxzLzppZCcsXG4gICAgICAgICAgICAgICAgY29tcG9uZW50OiBTbWFydENybU9wcG9ydHVuaXR5Q2F0ZWdvcmllc0RldGFpbHNDb21wb25lbnQsXG4gICAgICAgICAgICAgICAgZGF0YToge1xuICAgICAgICAgICAgICAgICAgICBwZXJtaXNzaW9uOiBgJHtDUk1fUEVSTUlTU0lPTlMuQ29uZmlndXJhdGlvbn1gXG4gICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgfSxcbiAgICAgICAgICAgIHtcbiAgICAgICAgICAgICAgICBwYXRoOiAnY29uZmlndXJhdGlvbi9jYXRlZ29yeS1kZXRhaWxzL2FkZCcsXG4gICAgICAgICAgICAgICAgY29tcG9uZW50OiBTbWFydENybU9wcG9ydHVuaXR5Q2F0ZWdvcmllc0RldGFpbHNDb21wb25lbnQsXG4gICAgICAgICAgICAgICAgZGF0YToge1xuICAgICAgICAgICAgICAgICAgICBwZXJtaXNzaW9uOiBgJHtDUk1fUEVSTUlTU0lPTlMuQ29uZmlndXJhdGlvbn1gXG4gICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgfSxcbiAgICAgICAgICAgIHtcbiAgICAgICAgICAgICAgICBwYXRoOiAnY29uZmlndXJhdGlvbi93aWRnZXQnLFxuICAgICAgICAgICAgICAgIGNvbXBvbmVudDogU21hcnRDcm1XaWRnZXRzRGV0YWlsc0NvbXBvbmVudCxcbiAgICAgICAgICAgICAgICBkYXRhOiB7XG4gICAgICAgICAgICAgICAgICAgIHBlcm1pc3Npb246IGAke0NSTV9QRVJNSVNTSU9OUy5Db25maWd1cmF0aW9ufWBcbiAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICB9LFxuICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgIHBhdGg6ICdjb25maWd1cmF0aW9uL3dpZGdldC1kZXRhaWxzLzppZCcsXG4gICAgICAgICAgICAgICAgY29tcG9uZW50OiBTbWFydENybVdpZGdldHNEZXRhaWxzQ29tcG9uZW50LFxuICAgICAgICAgICAgICAgIGRhdGE6IHtcbiAgICAgICAgICAgICAgICAgICAgcGVybWlzc2lvbjogYCR7Q1JNX1BFUk1JU1NJT05TLkNvbmZpZ3VyYXRpb259YFxuICAgICAgICAgICAgICAgIH1cbiAgICAgICAgICAgIH0sXG4gICAgICAgICAgICB7XG4gICAgICAgICAgICAgICAgcGF0aDogJ2NvbmZpZ3VyYXRpb24vd2lkZ2V0LWRldGFpbHMvYWRkJyxcbiAgICAgICAgICAgICAgICBjb21wb25lbnQ6IFNtYXJ0Q3JtV2lkZ2V0c0RldGFpbHNDb21wb25lbnQsXG4gICAgICAgICAgICAgICAgZGF0YToge1xuICAgICAgICAgICAgICAgICAgICBwZXJtaXNzaW9uOiBgJHtDUk1fUEVSTUlTU0lPTlMuQ29uZmlndXJhdGlvbn1gXG4gICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgfSxcbiAgICAgICAgICAgIHtcbiAgICAgICAgICAgICAgICBwYXRoOiAnY29uZmlndXJhdGlvbi9hZG1pbicsXG4gICAgICAgICAgICAgICAgY29tcG9uZW50OiBTbWFydENybVdpZGdldHNEZXRhaWxzQ29tcG9uZW50LFxuICAgICAgICAgICAgICAgIGRhdGE6IHtcbiAgICAgICAgICAgICAgICAgICAgcGVybWlzc2lvbjogYCR7Q1JNX1BFUk1JU1NJT05TLkNvbmZpZ3VyYXRpb259YFxuICAgICAgICAgICAgICAgIH1cbiAgICAgICAgICAgIH1cbiAgICAgICAgXVxuICAgIH1cbl07XG5cbkBOZ01vZHVsZSh7XG4gICAgaW1wb3J0czogW1JvdXRlck1vZHVsZS5mb3JDaGlsZChyb3V0ZXMpXSxcbiAgICBleHBvcnRzOiBbUm91dGVyTW9kdWxlXVxufSlcbmV4cG9ydCBjbGFzcyBTbWFydENybVByaXZhdGVSb3V0aW5nTW9kdWxlIHt9XG4iXX0=
|
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
import { Component } from '@angular/core';
|
|
2
|
-
import { ActivatedRoute } from '@angular/router';
|
|
3
|
-
import { CrmService } from '@posiwise/smart-crm-shared';
|
|
4
|
-
import { StatusCodes } from 'http-status-codes';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
import * as i1 from "@angular/router";
|
|
7
|
-
import * as i2 from "@posiwise/smart-crm-shared";
|
|
8
|
-
import * as i3 from "@posiwise/layouts";
|
|
9
|
-
import * as i4 from "@angular/common";
|
|
10
|
-
import * as i5 from "@jsverse/transloco";
|
|
11
|
-
export class CrmNewsletterConfirmationComponent {
|
|
12
|
-
// TODO: Move to en.json
|
|
13
|
-
// success = 'Congratulations. You are successfully subscribed to our newsletter.';
|
|
14
|
-
// failure =
|
|
15
|
-
// "We couldn't verify your subscription to our newsletter. If the problem persists, please contact our support team. ";
|
|
16
|
-
constructor(route, crmService) {
|
|
17
|
-
this.route = route;
|
|
18
|
-
this.crmService = crmService;
|
|
19
|
-
this.token = '';
|
|
20
|
-
this.email = '';
|
|
21
|
-
this.message = '';
|
|
22
|
-
this.errorMsg = '';
|
|
23
|
-
this.error = false;
|
|
24
|
-
}
|
|
25
|
-
ngOnInit() {
|
|
26
|
-
this.route.queryParams.subscribe(params => {
|
|
27
|
-
this.token = params['verification_token'] || '';
|
|
28
|
-
this.email = params['email'] || '';
|
|
29
|
-
if (this.token && this.email) {
|
|
30
|
-
this.getNewsletterConfirmation();
|
|
31
|
-
}
|
|
32
|
-
else {
|
|
33
|
-
this.message = 'You need to pass a valid token to be able to subscribe';
|
|
34
|
-
}
|
|
35
|
-
});
|
|
36
|
-
}
|
|
37
|
-
getNewsletterConfirmation() {
|
|
38
|
-
this.crmService.crmLeadsConfirmEmail(this.email, this.token).subscribe({
|
|
39
|
-
next: (response) => {
|
|
40
|
-
if (response.status === StatusCodes.OK) {
|
|
41
|
-
this.message = response.message;
|
|
42
|
-
}
|
|
43
|
-
},
|
|
44
|
-
error: (err) => {
|
|
45
|
-
this.message = err.error.message.error;
|
|
46
|
-
}
|
|
47
|
-
});
|
|
48
|
-
}
|
|
49
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.11", ngImport: i0, type: CrmNewsletterConfirmationComponent, deps: [{ token: i1.ActivatedRoute }, { token: i2.CrmService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
50
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.11", type: CrmNewsletterConfirmationComponent, selector: "pw-crm-newsletter-confirmation", ngImport: i0, template: "<pw-public-layout title=\"Newsletter Confirmation\">\n <div class=\"login-inner\">\n <div class=\"card-block public-inner\">\n <div class=\"message\">\n {{ message }}\n </div>\n <ng-container *ngIf=\"!message\">\n <div class=\"page-loading\">\n <img src=\"/assets/img/logos/oval.svg\"\n alt=\"\"\n class=\"loading-icon\" />\n </div>\n </ng-container>\n </div>\n </div>\n <div class=\"mb-2\">\n <br /><br />\n <strong>\n <a class=\"footer-links me-4\"\n routerLink=\"/\">{{ 'Button.Home' | transloco }}</a>\n <a class=\"footer-links\"\n routerLink=\"/register\">{{\n 'User.Account.CreateAccount' | transloco\n }}</a>\n </strong>\n </div>\n</pw-public-layout>\n", styles: [".message{font-size:18px;font-weight:400}\n"], dependencies: [{ kind: "directive", type: i1.RouterLink, selector: "[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "info", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }, { kind: "component", type: i3.PublicLayoutComponent, selector: "pw-public-layout", inputs: ["title"] }, { kind: "directive", type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "pipe", type: i5.TranslocoPipe, name: "transloco" }] }); }
|
|
51
|
-
}
|
|
52
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.11", ngImport: i0, type: CrmNewsletterConfirmationComponent, decorators: [{
|
|
53
|
-
type: Component,
|
|
54
|
-
args: [{ selector: 'pw-crm-newsletter-confirmation', template: "<pw-public-layout title=\"Newsletter Confirmation\">\n <div class=\"login-inner\">\n <div class=\"card-block public-inner\">\n <div class=\"message\">\n {{ message }}\n </div>\n <ng-container *ngIf=\"!message\">\n <div class=\"page-loading\">\n <img src=\"/assets/img/logos/oval.svg\"\n alt=\"\"\n class=\"loading-icon\" />\n </div>\n </ng-container>\n </div>\n </div>\n <div class=\"mb-2\">\n <br /><br />\n <strong>\n <a class=\"footer-links me-4\"\n routerLink=\"/\">{{ 'Button.Home' | transloco }}</a>\n <a class=\"footer-links\"\n routerLink=\"/register\">{{\n 'User.Account.CreateAccount' | transloco\n }}</a>\n </strong>\n </div>\n</pw-public-layout>\n", styles: [".message{font-size:18px;font-weight:400}\n"] }]
|
|
55
|
-
}], ctorParameters: () => [{ type: i1.ActivatedRoute }, { type: i2.CrmService }] });
|
|
56
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic21hcnQtY3JtLW5ld3NsZXR0ZXItY29uZmlybWF0aW9uLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvc21hcnQtY3JtL3NyYy9saWIvcHVibGljL2NvbXBvbmVudHMvc21hcnQtY3JtLW5ld3NsZXR0ZXItY29uZmlybWF0aW9uL3NtYXJ0LWNybS1uZXdzbGV0dGVyLWNvbmZpcm1hdGlvbi5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3NtYXJ0LWNybS9zcmMvbGliL3B1YmxpYy9jb21wb25lbnRzL3NtYXJ0LWNybS1uZXdzbGV0dGVyLWNvbmZpcm1hdGlvbi9zbWFydC1jcm0tbmV3c2xldHRlci1jb25maXJtYXRpb24uY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQ0EsT0FBTyxFQUFFLFNBQVMsRUFBVSxNQUFNLGVBQWUsQ0FBQztBQUNsRCxPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDakQsT0FBTyxFQUFFLFVBQVUsRUFBRSxNQUFNLDRCQUE0QixDQUFDO0FBQ3hELE9BQU8sRUFBRSxXQUFXLEVBQUUsTUFBTSxtQkFBbUIsQ0FBQzs7Ozs7OztBQU9oRCxNQUFNLE9BQU8sa0NBQWtDO0lBVzNDLHdCQUF3QjtJQUN4QixtRkFBbUY7SUFDbkYsWUFBWTtJQUNaLDZIQUE2SDtJQUU3SCxZQUNZLEtBQXFCLEVBQ3JCLFVBQXNCO1FBRHRCLFVBQUssR0FBTCxLQUFLLENBQWdCO1FBQ3JCLGVBQVUsR0FBVixVQUFVLENBQVk7UUFqQmxDLFVBQUssR0FBRyxFQUFFLENBQUM7UUFFWCxVQUFLLEdBQUcsRUFBRSxDQUFDO1FBRVgsWUFBTyxHQUFHLEVBQUUsQ0FBQztRQUViLGFBQVEsR0FBRyxFQUFFLENBQUM7UUFFZCxVQUFLLEdBQUcsS0FBSyxDQUFDO0lBVVgsQ0FBQztJQUVKLFFBQVE7UUFDSixJQUFJLENBQUMsS0FBSyxDQUFDLFdBQVcsQ0FBQyxTQUFTLENBQUMsTUFBTSxDQUFDLEVBQUU7WUFDdEMsSUFBSSxDQUFDLEtBQUssR0FBRyxNQUFNLENBQUMsb0JBQW9CLENBQUMsSUFBSSxFQUFFLENBQUM7WUFDaEQsSUFBSSxDQUFDLEtBQUssR0FBRyxNQUFNLENBQUMsT0FBTyxDQUFDLElBQUksRUFBRSxDQUFDO1lBQ25DLElBQUksSUFBSSxDQUFDLEtBQUssSUFBSSxJQUFJLENBQUMsS0FBSyxFQUFFLENBQUM7Z0JBQzNCLElBQUksQ0FBQyx5QkFBeUIsRUFBRSxDQUFDO1lBQ3JDLENBQUM7aUJBQU0sQ0FBQztnQkFDSixJQUFJLENBQUMsT0FBTyxHQUFHLHdEQUF3RCxDQUFDO1lBQzVFLENBQUM7UUFDTCxDQUFDLENBQUMsQ0FBQztJQUNQLENBQUM7SUFFRCx5QkFBeUI7UUFDckIsSUFBSSxDQUFDLFVBQVUsQ0FBQyxvQkFBb0IsQ0FBQyxJQUFJLENBQUMsS0FBSyxFQUFFLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQyxTQUFTLENBQUM7WUFDbkUsSUFBSSxFQUFFLENBQUMsUUFBNkMsRUFBRSxFQUFFO2dCQUNwRCxJQUFJLFFBQVEsQ0FBQyxNQUFNLEtBQUssV0FBVyxDQUFDLEVBQUUsRUFBRSxDQUFDO29CQUNyQyxJQUFJLENBQUMsT0FBTyxHQUFHLFFBQVEsQ0FBQyxPQUFPLENBQUM7Z0JBQ3BDLENBQUM7WUFDTCxDQUFDO1lBQ0QsS0FBSyxFQUFFLENBQUMsR0FBc0IsRUFBRSxFQUFFO2dCQUM5QixJQUFJLENBQUMsT0FBTyxHQUFHLEdBQUcsQ0FBQyxLQUFLLENBQUMsT0FBTyxDQUFDLEtBQUssQ0FBQztZQUMzQyxDQUFDO1NBQ0osQ0FBQyxDQUFDO0lBQ1AsQ0FBQzsrR0E1Q1Esa0NBQWtDO21HQUFsQyxrQ0FBa0Msc0VDWC9DLGt5QkEyQkE7OzRGRGhCYSxrQ0FBa0M7a0JBTDlDLFNBQVM7K0JBQ0ksZ0NBQWdDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgSHR0cEVycm9yUmVzcG9uc2UgfSBmcm9tICdAYW5ndWxhci9jb21tb24vaHR0cCc7XG5pbXBvcnQgeyBDb21wb25lbnQsIE9uSW5pdCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQWN0aXZhdGVkUm91dGUgfSBmcm9tICdAYW5ndWxhci9yb3V0ZXInO1xuaW1wb3J0IHsgQ3JtU2VydmljZSB9IGZyb20gJ0Bwb3Npd2lzZS9zbWFydC1jcm0tc2hhcmVkJztcbmltcG9ydCB7IFN0YXR1c0NvZGVzIH0gZnJvbSAnaHR0cC1zdGF0dXMtY29kZXMnO1xuXG5AQ29tcG9uZW50KHtcbiAgICBzZWxlY3RvcjogJ3B3LWNybS1uZXdzbGV0dGVyLWNvbmZpcm1hdGlvbicsXG4gICAgdGVtcGxhdGVVcmw6ICcuL3NtYXJ0LWNybS1uZXdzbGV0dGVyLWNvbmZpcm1hdGlvbi5jb21wb25lbnQuaHRtbCcsXG4gICAgc3R5bGVVcmxzOiBbJy4vc21hcnQtY3JtLW5ld3NsZXR0ZXItY29uZmlybWF0aW9uLmNvbXBvbmVudC5zY3NzJ11cbn0pXG5leHBvcnQgY2xhc3MgQ3JtTmV3c2xldHRlckNvbmZpcm1hdGlvbkNvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCB7XG4gICAgdG9rZW4gPSAnJztcblxuICAgIGVtYWlsID0gJyc7XG5cbiAgICBtZXNzYWdlID0gJyc7XG5cbiAgICBlcnJvck1zZyA9ICcnO1xuXG4gICAgZXJyb3IgPSBmYWxzZTtcblxuICAgIC8vIFRPRE86IE1vdmUgdG8gZW4uanNvblxuICAgIC8vIHN1Y2Nlc3MgPSAnQ29uZ3JhdHVsYXRpb25zLiBZb3UgYXJlIHN1Y2Nlc3NmdWxseSBzdWJzY3JpYmVkIHRvIG91ciBuZXdzbGV0dGVyLic7XG4gICAgLy8gZmFpbHVyZSA9XG4gICAgLy8gICAgIFwiV2UgY291bGRuJ3QgdmVyaWZ5IHlvdXIgc3Vic2NyaXB0aW9uIHRvIG91ciBuZXdzbGV0dGVyLiBJZiB0aGUgcHJvYmxlbSBwZXJzaXN0cywgcGxlYXNlIGNvbnRhY3Qgb3VyIHN1cHBvcnQgdGVhbS4gIFwiO1xuXG4gICAgY29uc3RydWN0b3IoXG4gICAgICAgIHByaXZhdGUgcm91dGU6IEFjdGl2YXRlZFJvdXRlLFxuICAgICAgICBwcml2YXRlIGNybVNlcnZpY2U6IENybVNlcnZpY2VcbiAgICApIHt9XG5cbiAgICBuZ09uSW5pdCgpIHtcbiAgICAgICAgdGhpcy5yb3V0ZS5xdWVyeVBhcmFtcy5zdWJzY3JpYmUocGFyYW1zID0+IHtcbiAgICAgICAgICAgIHRoaXMudG9rZW4gPSBwYXJhbXNbJ3ZlcmlmaWNhdGlvbl90b2tlbiddIHx8ICcnO1xuICAgICAgICAgICAgdGhpcy5lbWFpbCA9IHBhcmFtc1snZW1haWwnXSB8fCAnJztcbiAgICAgICAgICAgIGlmICh0aGlzLnRva2VuICYmIHRoaXMuZW1haWwpIHtcbiAgICAgICAgICAgICAgICB0aGlzLmdldE5ld3NsZXR0ZXJDb25maXJtYXRpb24oKTtcbiAgICAgICAgICAgIH0gZWxzZSB7XG4gICAgICAgICAgICAgICAgdGhpcy5tZXNzYWdlID0gJ1lvdSBuZWVkIHRvIHBhc3MgYSB2YWxpZCB0b2tlbiB0byBiZSBhYmxlIHRvIHN1YnNjcmliZSc7XG4gICAgICAgICAgICB9XG4gICAgICAgIH0pO1xuICAgIH1cblxuICAgIGdldE5ld3NsZXR0ZXJDb25maXJtYXRpb24oKSB7XG4gICAgICAgIHRoaXMuY3JtU2VydmljZS5jcm1MZWFkc0NvbmZpcm1FbWFpbCh0aGlzLmVtYWlsLCB0aGlzLnRva2VuKS5zdWJzY3JpYmUoe1xuICAgICAgICAgICAgbmV4dDogKHJlc3BvbnNlOiB7IHN0YXR1czogbnVtYmVyOyBtZXNzYWdlOiBzdHJpbmcgfSkgPT4ge1xuICAgICAgICAgICAgICAgIGlmIChyZXNwb25zZS5zdGF0dXMgPT09IFN0YXR1c0NvZGVzLk9LKSB7XG4gICAgICAgICAgICAgICAgICAgIHRoaXMubWVzc2FnZSA9IHJlc3BvbnNlLm1lc3NhZ2U7XG4gICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgfSxcbiAgICAgICAgICAgIGVycm9yOiAoZXJyOiBIdHRwRXJyb3JSZXNwb25zZSkgPT4ge1xuICAgICAgICAgICAgICAgIHRoaXMubWVzc2FnZSA9IGVyci5lcnJvci5tZXNzYWdlLmVycm9yO1xuICAgICAgICAgICAgfVxuICAgICAgICB9KTtcbiAgICB9XG59XG4iLCI8cHctcHVibGljLWxheW91dCB0aXRsZT1cIk5ld3NsZXR0ZXIgQ29uZmlybWF0aW9uXCI+XG4gIDxkaXYgY2xhc3M9XCJsb2dpbi1pbm5lclwiPlxuICAgIDxkaXYgY2xhc3M9XCJjYXJkLWJsb2NrIHB1YmxpYy1pbm5lclwiPlxuICAgICAgPGRpdiBjbGFzcz1cIm1lc3NhZ2VcIj5cbiAgICAgICAge3sgbWVzc2FnZSB9fVxuICAgICAgPC9kaXY+XG4gICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwiIW1lc3NhZ2VcIj5cbiAgICAgICAgPGRpdiBjbGFzcz1cInBhZ2UtbG9hZGluZ1wiPlxuICAgICAgICAgIDxpbWcgc3JjPVwiL2Fzc2V0cy9pbWcvbG9nb3Mvb3ZhbC5zdmdcIlxuICAgICAgICAgICAgYWx0PVwiXCJcbiAgICAgICAgICAgIGNsYXNzPVwibG9hZGluZy1pY29uXCIgLz5cbiAgICAgICAgPC9kaXY+XG4gICAgICA8L25nLWNvbnRhaW5lcj5cbiAgICA8L2Rpdj5cbiAgPC9kaXY+XG4gIDxkaXYgY2xhc3M9XCJtYi0yXCI+XG4gICAgPGJyIC8+PGJyIC8+XG4gICAgPHN0cm9uZz5cbiAgICAgIDxhIGNsYXNzPVwiZm9vdGVyLWxpbmtzIG1lLTRcIlxuICAgICAgICByb3V0ZXJMaW5rPVwiL1wiPnt7ICdCdXR0b24uSG9tZScgfCB0cmFuc2xvY28gfX08L2E+XG4gICAgICA8YSBjbGFzcz1cImZvb3Rlci1saW5rc1wiXG4gICAgICAgIHJvdXRlckxpbms9XCIvcmVnaXN0ZXJcIj57e1xuICAgICAgICAgICAgICAgICdVc2VyLkFjY291bnQuQ3JlYXRlQWNjb3VudCcgfCB0cmFuc2xvY29cbiAgICAgICAgICAgIH19PC9hPlxuICAgIDwvc3Ryb25nPlxuICA8L2Rpdj5cbjwvcHctcHVibGljLWxheW91dD5cbiJdfQ==
|
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
import { Component } from '@angular/core';
|
|
2
|
-
import { ActivatedRoute } from '@angular/router';
|
|
3
|
-
import { CrmService } from '@posiwise/smart-crm-shared';
|
|
4
|
-
import { StatusCodes } from 'http-status-codes';
|
|
5
|
-
import { HelperService } from '@posiwise/helper-service';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
import * as i1 from "@angular/router";
|
|
8
|
-
import * as i2 from "@posiwise/smart-crm-shared";
|
|
9
|
-
import * as i3 from "@posiwise/layouts";
|
|
10
|
-
import * as i4 from "@angular/common";
|
|
11
|
-
import * as i5 from "@jsverse/transloco";
|
|
12
|
-
export class CrmNewsletterUnsubscribeComponent {
|
|
13
|
-
constructor(route, crmService) {
|
|
14
|
-
this.route = route;
|
|
15
|
-
this.crmService = crmService;
|
|
16
|
-
this.token = '';
|
|
17
|
-
this.message = '';
|
|
18
|
-
this.errorMsg = '';
|
|
19
|
-
this.error = false;
|
|
20
|
-
this.success = "You've successfully been removed from our newsletter.";
|
|
21
|
-
this.failure = 'Something went wrong and we were not able to unsubscribe you. If the problem persists, please contact us.';
|
|
22
|
-
this.route.queryParams.subscribe(params => {
|
|
23
|
-
this.token = params['crm_newsletter_token'] || '';
|
|
24
|
-
if (this.token) {
|
|
25
|
-
this.getNewsletterConfirmation();
|
|
26
|
-
}
|
|
27
|
-
else {
|
|
28
|
-
this.error = true;
|
|
29
|
-
this.errorMsg = this.failure;
|
|
30
|
-
}
|
|
31
|
-
});
|
|
32
|
-
}
|
|
33
|
-
getNewsletterConfirmation() {
|
|
34
|
-
this.crmService.unsubscribeCrmContact(this.token).subscribe({
|
|
35
|
-
next: (response) => {
|
|
36
|
-
if (response.status === StatusCodes.OK) {
|
|
37
|
-
this.message = this.success;
|
|
38
|
-
}
|
|
39
|
-
else {
|
|
40
|
-
this.error = true;
|
|
41
|
-
this.errorMsg = this.failure;
|
|
42
|
-
}
|
|
43
|
-
},
|
|
44
|
-
error: error => {
|
|
45
|
-
this.errorMsg = HelperService.getErrorMessage(error);
|
|
46
|
-
this.error = true;
|
|
47
|
-
}
|
|
48
|
-
});
|
|
49
|
-
}
|
|
50
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.11", ngImport: i0, type: CrmNewsletterUnsubscribeComponent, deps: [{ token: i1.ActivatedRoute }, { token: i2.CrmService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
51
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.11", type: CrmNewsletterUnsubscribeComponent, selector: "pw-crm-newsletter-unsubscribe", ngImport: i0, template: "<pw-public-layout title=\"Newsletter Unsubscribe\">\n <div class=\"login-inner\">\n <div class=\"card-block public-inner\">\n <div class=\"alert alert-danger\"\n *ngIf=\"error\">\n <ng-container *ngIf=\"error\">\n {{ errorMsg }}\n </ng-container>\n </div>\n\n <div class=\"message\">\n {{ message }}\n </div>\n\n <ng-container *ngIf=\"!message && !error\">\n <div class=\"page-loading\">\n <img src=\"/assets/img/logos/oval.svg\"\n alt=\"\"\n class=\"loading-icon\" />\n </div>\n </ng-container>\n </div>\n </div>\n\n <div class=\"mb-2\">\n <br /><br /><br />\n <strong>\n <a class=\"footer-links me-4\"\n routerLink=\"/\">{{ 'Button.Home' | transloco }}</a>\n <a class=\"footer-links\"\n routerLink=\"/register\">{{\n 'User.Account.CreateAccount' | transloco\n }}</a>\n </strong>\n </div>\n</pw-public-layout>\n", dependencies: [{ kind: "directive", type: i1.RouterLink, selector: "[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "info", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }, { kind: "component", type: i3.PublicLayoutComponent, selector: "pw-public-layout", inputs: ["title"] }, { kind: "directive", type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "pipe", type: i5.TranslocoPipe, name: "transloco" }] }); }
|
|
52
|
-
}
|
|
53
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.11", ngImport: i0, type: CrmNewsletterUnsubscribeComponent, decorators: [{
|
|
54
|
-
type: Component,
|
|
55
|
-
args: [{ selector: 'pw-crm-newsletter-unsubscribe', template: "<pw-public-layout title=\"Newsletter Unsubscribe\">\n <div class=\"login-inner\">\n <div class=\"card-block public-inner\">\n <div class=\"alert alert-danger\"\n *ngIf=\"error\">\n <ng-container *ngIf=\"error\">\n {{ errorMsg }}\n </ng-container>\n </div>\n\n <div class=\"message\">\n {{ message }}\n </div>\n\n <ng-container *ngIf=\"!message && !error\">\n <div class=\"page-loading\">\n <img src=\"/assets/img/logos/oval.svg\"\n alt=\"\"\n class=\"loading-icon\" />\n </div>\n </ng-container>\n </div>\n </div>\n\n <div class=\"mb-2\">\n <br /><br /><br />\n <strong>\n <a class=\"footer-links me-4\"\n routerLink=\"/\">{{ 'Button.Home' | transloco }}</a>\n <a class=\"footer-links\"\n routerLink=\"/register\">{{\n 'User.Account.CreateAccount' | transloco\n }}</a>\n </strong>\n </div>\n</pw-public-layout>\n" }]
|
|
56
|
-
}], ctorParameters: () => [{ type: i1.ActivatedRoute }, { type: i2.CrmService }] });
|
|
57
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic21hcnQtY3JtLW5ld3NsZXR0ZXItdW5zdWJzY3JpYmUuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9zbWFydC1jcm0vc3JjL2xpYi9wdWJsaWMvY29tcG9uZW50cy9zbWFydC1jcm0tbmV3c2xldHRlci11bnN1YnNjcmliZS9zbWFydC1jcm0tbmV3c2xldHRlci11bnN1YnNjcmliZS5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3NtYXJ0LWNybS9zcmMvbGliL3B1YmxpYy9jb21wb25lbnRzL3NtYXJ0LWNybS1uZXdzbGV0dGVyLXVuc3Vic2NyaWJlL3NtYXJ0LWNybS1uZXdzbGV0dGVyLXVuc3Vic2NyaWJlLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDMUMsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQ2pELE9BQU8sRUFBRSxVQUFVLEVBQUUsTUFBTSw0QkFBNEIsQ0FBQztBQUN4RCxPQUFPLEVBQUUsV0FBVyxFQUFFLE1BQU0sbUJBQW1CLENBQUM7QUFFaEQsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLDBCQUEwQixDQUFDOzs7Ozs7O0FBTXpELE1BQU0sT0FBTyxpQ0FBaUM7SUFjMUMsWUFDWSxLQUFxQixFQUNyQixVQUFzQjtRQUR0QixVQUFLLEdBQUwsS0FBSyxDQUFnQjtRQUNyQixlQUFVLEdBQVYsVUFBVSxDQUFZO1FBZmxDLFVBQUssR0FBRyxFQUFFLENBQUM7UUFFWCxZQUFPLEdBQUcsRUFBRSxDQUFDO1FBRWIsYUFBUSxHQUFHLEVBQUUsQ0FBQztRQUVkLFVBQUssR0FBRyxLQUFLLENBQUM7UUFFZCxZQUFPLEdBQUcsdURBQXVELENBQUM7UUFFbEUsWUFBTyxHQUNILDJHQUEyRyxDQUFDO1FBTTVHLElBQUksQ0FBQyxLQUFLLENBQUMsV0FBVyxDQUFDLFNBQVMsQ0FBQyxNQUFNLENBQUMsRUFBRTtZQUN0QyxJQUFJLENBQUMsS0FBSyxHQUFHLE1BQU0sQ0FBQyxzQkFBc0IsQ0FBQyxJQUFJLEVBQUUsQ0FBQztZQUNsRCxJQUFJLElBQUksQ0FBQyxLQUFLLEVBQUUsQ0FBQztnQkFDYixJQUFJLENBQUMseUJBQXlCLEVBQUUsQ0FBQztZQUNyQyxDQUFDO2lCQUFNLENBQUM7Z0JBQ0osSUFBSSxDQUFDLEtBQUssR0FBRyxJQUFJLENBQUM7Z0JBQ2xCLElBQUksQ0FBQyxRQUFRLEdBQUcsSUFBSSxDQUFDLE9BQU8sQ0FBQztZQUNqQyxDQUFDO1FBQ0wsQ0FBQyxDQUFDLENBQUM7SUFDUCxDQUFDO0lBRUQseUJBQXlCO1FBQ3JCLElBQUksQ0FBQyxVQUFVLENBQUMscUJBQXFCLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFDLFNBQVMsQ0FBQztZQUN4RCxJQUFJLEVBQUUsQ0FBQyxRQUE0QixFQUFFLEVBQUU7Z0JBQ25DLElBQUksUUFBUSxDQUFDLE1BQU0sS0FBSyxXQUFXLENBQUMsRUFBRSxFQUFFLENBQUM7b0JBQ3JDLElBQUksQ0FBQyxPQUFPLEdBQUcsSUFBSSxDQUFDLE9BQU8sQ0FBQztnQkFDaEMsQ0FBQztxQkFBTSxDQUFDO29CQUNKLElBQUksQ0FBQyxLQUFLLEdBQUcsSUFBSSxDQUFDO29CQUNsQixJQUFJLENBQUMsUUFBUSxHQUFHLElBQUksQ0FBQyxPQUFPLENBQUM7Z0JBQ2pDLENBQUM7WUFDTCxDQUFDO1lBQ0QsS0FBSyxFQUFFLEtBQUssQ0FBQyxFQUFFO2dCQUNYLElBQUksQ0FBQyxRQUFRLEdBQUcsYUFBYSxDQUFDLGVBQWUsQ0FBQyxLQUFLLENBQUMsQ0FBQztnQkFDckQsSUFBSSxDQUFDLEtBQUssR0FBRyxJQUFJLENBQUM7WUFDdEIsQ0FBQztTQUNKLENBQUMsQ0FBQztJQUNQLENBQUM7K0dBNUNRLGlDQUFpQzttR0FBakMsaUNBQWlDLHFFQ1g5QyxtK0JBb0NBOzs0RkR6QmEsaUNBQWlDO2tCQUo3QyxTQUFTOytCQUNJLCtCQUErQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQWN0aXZhdGVkUm91dGUgfSBmcm9tICdAYW5ndWxhci9yb3V0ZXInO1xuaW1wb3J0IHsgQ3JtU2VydmljZSB9IGZyb20gJ0Bwb3Npd2lzZS9zbWFydC1jcm0tc2hhcmVkJztcbmltcG9ydCB7IFN0YXR1c0NvZGVzIH0gZnJvbSAnaHR0cC1zdGF0dXMtY29kZXMnO1xuXG5pbXBvcnQgeyBIZWxwZXJTZXJ2aWNlIH0gZnJvbSAnQHBvc2l3aXNlL2hlbHBlci1zZXJ2aWNlJztcblxuQENvbXBvbmVudCh7XG4gICAgc2VsZWN0b3I6ICdwdy1jcm0tbmV3c2xldHRlci11bnN1YnNjcmliZScsXG4gICAgdGVtcGxhdGVVcmw6ICcuL3NtYXJ0LWNybS1uZXdzbGV0dGVyLXVuc3Vic2NyaWJlLmNvbXBvbmVudC5odG1sJ1xufSlcbmV4cG9ydCBjbGFzcyBDcm1OZXdzbGV0dGVyVW5zdWJzY3JpYmVDb21wb25lbnQge1xuICAgIHRva2VuID0gJyc7XG5cbiAgICBtZXNzYWdlID0gJyc7XG5cbiAgICBlcnJvck1zZyA9ICcnO1xuXG4gICAgZXJyb3IgPSBmYWxzZTtcblxuICAgIHN1Y2Nlc3MgPSBcIllvdSd2ZSBzdWNjZXNzZnVsbHkgYmVlbiByZW1vdmVkIGZyb20gb3VyIG5ld3NsZXR0ZXIuXCI7XG5cbiAgICBmYWlsdXJlID1cbiAgICAgICAgJ1NvbWV0aGluZyB3ZW50IHdyb25nIGFuZCB3ZSB3ZXJlIG5vdCBhYmxlIHRvIHVuc3Vic2NyaWJlIHlvdS4gSWYgdGhlIHByb2JsZW0gcGVyc2lzdHMsIHBsZWFzZSBjb250YWN0IHVzLic7XG5cbiAgICBjb25zdHJ1Y3RvcihcbiAgICAgICAgcHJpdmF0ZSByb3V0ZTogQWN0aXZhdGVkUm91dGUsXG4gICAgICAgIHByaXZhdGUgY3JtU2VydmljZTogQ3JtU2VydmljZVxuICAgICkge1xuICAgICAgICB0aGlzLnJvdXRlLnF1ZXJ5UGFyYW1zLnN1YnNjcmliZShwYXJhbXMgPT4ge1xuICAgICAgICAgICAgdGhpcy50b2tlbiA9IHBhcmFtc1snY3JtX25ld3NsZXR0ZXJfdG9rZW4nXSB8fCAnJztcbiAgICAgICAgICAgIGlmICh0aGlzLnRva2VuKSB7XG4gICAgICAgICAgICAgICAgdGhpcy5nZXROZXdzbGV0dGVyQ29uZmlybWF0aW9uKCk7XG4gICAgICAgICAgICB9IGVsc2Uge1xuICAgICAgICAgICAgICAgIHRoaXMuZXJyb3IgPSB0cnVlO1xuICAgICAgICAgICAgICAgIHRoaXMuZXJyb3JNc2cgPSB0aGlzLmZhaWx1cmU7XG4gICAgICAgICAgICB9XG4gICAgICAgIH0pO1xuICAgIH1cblxuICAgIGdldE5ld3NsZXR0ZXJDb25maXJtYXRpb24oKSB7XG4gICAgICAgIHRoaXMuY3JtU2VydmljZS51bnN1YnNjcmliZUNybUNvbnRhY3QodGhpcy50b2tlbikuc3Vic2NyaWJlKHtcbiAgICAgICAgICAgIG5leHQ6IChyZXNwb25zZTogeyBzdGF0dXM6IG51bWJlciB9KSA9PiB7XG4gICAgICAgICAgICAgICAgaWYgKHJlc3BvbnNlLnN0YXR1cyA9PT0gU3RhdHVzQ29kZXMuT0spIHtcbiAgICAgICAgICAgICAgICAgICAgdGhpcy5tZXNzYWdlID0gdGhpcy5zdWNjZXNzO1xuICAgICAgICAgICAgICAgIH0gZWxzZSB7XG4gICAgICAgICAgICAgICAgICAgIHRoaXMuZXJyb3IgPSB0cnVlO1xuICAgICAgICAgICAgICAgICAgICB0aGlzLmVycm9yTXNnID0gdGhpcy5mYWlsdXJlO1xuICAgICAgICAgICAgICAgIH1cbiAgICAgICAgICAgIH0sXG4gICAgICAgICAgICBlcnJvcjogZXJyb3IgPT4ge1xuICAgICAgICAgICAgICAgIHRoaXMuZXJyb3JNc2cgPSBIZWxwZXJTZXJ2aWNlLmdldEVycm9yTWVzc2FnZShlcnJvcik7XG4gICAgICAgICAgICAgICAgdGhpcy5lcnJvciA9IHRydWU7XG4gICAgICAgICAgICB9XG4gICAgICAgIH0pO1xuICAgIH1cbn1cbiIsIjxwdy1wdWJsaWMtbGF5b3V0IHRpdGxlPVwiTmV3c2xldHRlciBVbnN1YnNjcmliZVwiPlxuICA8ZGl2IGNsYXNzPVwibG9naW4taW5uZXJcIj5cbiAgICA8ZGl2IGNsYXNzPVwiY2FyZC1ibG9jayBwdWJsaWMtaW5uZXJcIj5cbiAgICAgIDxkaXYgY2xhc3M9XCJhbGVydCBhbGVydC1kYW5nZXJcIlxuICAgICAgICAqbmdJZj1cImVycm9yXCI+XG4gICAgICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJlcnJvclwiPlxuICAgICAgICAgIHt7IGVycm9yTXNnIH19XG4gICAgICAgIDwvbmctY29udGFpbmVyPlxuICAgICAgPC9kaXY+XG5cbiAgICAgIDxkaXYgY2xhc3M9XCJtZXNzYWdlXCI+XG4gICAgICAgIHt7IG1lc3NhZ2UgfX1cbiAgICAgIDwvZGl2PlxuXG4gICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwiIW1lc3NhZ2UgJiYgIWVycm9yXCI+XG4gICAgICAgIDxkaXYgY2xhc3M9XCJwYWdlLWxvYWRpbmdcIj5cbiAgICAgICAgICA8aW1nIHNyYz1cIi9hc3NldHMvaW1nL2xvZ29zL292YWwuc3ZnXCJcbiAgICAgICAgICAgIGFsdD1cIlwiXG4gICAgICAgICAgICBjbGFzcz1cImxvYWRpbmctaWNvblwiIC8+XG4gICAgICAgIDwvZGl2PlxuICAgICAgPC9uZy1jb250YWluZXI+XG4gICAgPC9kaXY+XG4gIDwvZGl2PlxuXG4gIDxkaXYgY2xhc3M9XCJtYi0yXCI+XG4gICAgPGJyIC8+PGJyIC8+PGJyIC8+XG4gICAgPHN0cm9uZz5cbiAgICAgIDxhIGNsYXNzPVwiZm9vdGVyLWxpbmtzIG1lLTRcIlxuICAgICAgICByb3V0ZXJMaW5rPVwiL1wiPnt7ICdCdXR0b24uSG9tZScgfCB0cmFuc2xvY28gfX08L2E+XG4gICAgICA8YSBjbGFzcz1cImZvb3Rlci1saW5rc1wiXG4gICAgICAgIHJvdXRlckxpbms9XCIvcmVnaXN0ZXJcIj57e1xuICAgICAgICAgICAgICAgICdVc2VyLkFjY291bnQuQ3JlYXRlQWNjb3VudCcgfCB0cmFuc2xvY29cbiAgICAgICAgICAgIH19PC9hPlxuICAgIDwvc3Ryb25nPlxuICA8L2Rpdj5cbjwvcHctcHVibGljLWxheW91dD5cbiJdfQ==
|