@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,52 +0,0 @@
|
|
|
1
|
-
import { AfterViewChecked, ChangeDetectorRef, Injector, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import { CrmService } from '@posiwise/smart-crm-shared';
|
|
3
|
-
import { LazyLoadEvent } from 'primeng/api';
|
|
4
|
-
import { Paging, Subscription } from '@posiwise/common-utilities';
|
|
5
|
-
import { CrmSourceResponse } from '../../../../shared/interface/crm-source.interface';
|
|
6
|
-
import { AppBaseComponent } from '@posiwise/app-base-component';
|
|
7
|
-
import * as i0 from "@angular/core";
|
|
8
|
-
export declare class SmartCrmCompanySourceComponent extends AppBaseComponent implements OnInit, OnDestroy, AfterViewChecked {
|
|
9
|
-
private crmService;
|
|
10
|
-
private cdr;
|
|
11
|
-
searchText: string;
|
|
12
|
-
loading: boolean;
|
|
13
|
-
hasAccess: boolean;
|
|
14
|
-
isLoaded: boolean;
|
|
15
|
-
data: CrmSourceResponse;
|
|
16
|
-
subscriptionId: number;
|
|
17
|
-
page: number;
|
|
18
|
-
subscription: Subscription;
|
|
19
|
-
routers: {
|
|
20
|
-
accounts: string;
|
|
21
|
-
contacts: string;
|
|
22
|
-
accountInfo: string;
|
|
23
|
-
addAccount: string;
|
|
24
|
-
contactInfo: string;
|
|
25
|
-
contactAdd: string;
|
|
26
|
-
contactDetails: string;
|
|
27
|
-
opportunityAdd: string;
|
|
28
|
-
opportunities: string;
|
|
29
|
-
opportunityInfo: string;
|
|
30
|
-
configurationDetails: string;
|
|
31
|
-
configurations: string;
|
|
32
|
-
leadsDetails: string;
|
|
33
|
-
marketingDetails: string;
|
|
34
|
-
marketing: string;
|
|
35
|
-
categoryDetails: string;
|
|
36
|
-
sourceDetails: string;
|
|
37
|
-
stageDetails: string;
|
|
38
|
-
widgetsDetails: string;
|
|
39
|
-
};
|
|
40
|
-
constructor(injector: Injector, crmService: CrmService, cdr: ChangeDetectorRef);
|
|
41
|
-
ngOnInit(): void;
|
|
42
|
-
ngAfterViewChecked(): void;
|
|
43
|
-
onLazyLoad(event: LazyLoadEvent): void;
|
|
44
|
-
/** Function to all account source */
|
|
45
|
-
getAllSource(paging: Paging): void;
|
|
46
|
-
buildAccountSource(): void;
|
|
47
|
-
/** Function to delete account source */
|
|
48
|
-
onDelete(id: any): void;
|
|
49
|
-
ngOnDestroy(): void;
|
|
50
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SmartCrmCompanySourceComponent, never>;
|
|
51
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SmartCrmCompanySourceComponent, "pw-smart-crm-source", never, {}, {}, never, never, false, never>;
|
|
52
|
-
}
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import { Injector, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import { UntypedFormGroup } from '@angular/forms';
|
|
3
|
-
import { CrmService } from '@posiwise/smart-crm-shared';
|
|
4
|
-
import { Observable } from 'rxjs';
|
|
5
|
-
import { CrmStage } from '../../../../../shared/interface/crm-stages.interface';
|
|
6
|
-
import { AppBaseComponent } from '@posiwise/app-base-component';
|
|
7
|
-
import * as i0 from "@angular/core";
|
|
8
|
-
export declare class SmartCrmStageDetailsComponent extends AppBaseComponent implements OnInit, OnDestroy {
|
|
9
|
-
private crmService;
|
|
10
|
-
form: UntypedFormGroup;
|
|
11
|
-
data: CrmStage;
|
|
12
|
-
subscriptionId: number;
|
|
13
|
-
hasAccess: boolean;
|
|
14
|
-
submitted: boolean;
|
|
15
|
-
buttonBusy: boolean;
|
|
16
|
-
isLoading: boolean;
|
|
17
|
-
id: number;
|
|
18
|
-
stages$: Observable<string>;
|
|
19
|
-
categories: any[];
|
|
20
|
-
constructor(injector: Injector, crmService: CrmService);
|
|
21
|
-
ngOnInit(): void;
|
|
22
|
-
/** Function to get stage tDetails */
|
|
23
|
-
private getStageDetails;
|
|
24
|
-
/** Function to get form controls */
|
|
25
|
-
get f(): {
|
|
26
|
-
[key: string]: import("@angular/forms").AbstractControl<any, any>;
|
|
27
|
-
};
|
|
28
|
-
onSave(): void;
|
|
29
|
-
/** Function to get all categories */
|
|
30
|
-
private getAllOpportunityCategories;
|
|
31
|
-
ngOnDestroy(): void;
|
|
32
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SmartCrmStageDetailsComponent, never>;
|
|
33
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SmartCrmStageDetailsComponent, "pw-smart-crm-stage-details", never, {}, {}, never, never, false, never>;
|
|
34
|
-
}
|
|
@@ -1,58 +0,0 @@
|
|
|
1
|
-
import { AfterViewChecked, ChangeDetectorRef, Injector, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import { CrmService } from '@posiwise/smart-crm-shared';
|
|
3
|
-
import { LazyLoadEvent } from 'primeng/api';
|
|
4
|
-
import { Paging, Subscription } from '@posiwise/common-utilities';
|
|
5
|
-
import { CrmStageResponse } from '../../../../shared/interface/crm-stages.interface';
|
|
6
|
-
import { AppBaseComponent } from '@posiwise/app-base-component';
|
|
7
|
-
import * as i0 from "@angular/core";
|
|
8
|
-
export declare class SmartCrmStagesComponent extends AppBaseComponent implements OnInit, OnDestroy, AfterViewChecked {
|
|
9
|
-
private crmService;
|
|
10
|
-
private cdr;
|
|
11
|
-
searchText: string;
|
|
12
|
-
loading: boolean;
|
|
13
|
-
data: CrmStageResponse;
|
|
14
|
-
hasAccess: boolean;
|
|
15
|
-
isLoaded: boolean;
|
|
16
|
-
subscriptionId: number;
|
|
17
|
-
private page;
|
|
18
|
-
subscription: Subscription;
|
|
19
|
-
stageNames: any[];
|
|
20
|
-
categories: any[];
|
|
21
|
-
routers: {
|
|
22
|
-
accounts: string;
|
|
23
|
-
contacts: string;
|
|
24
|
-
accountInfo: string;
|
|
25
|
-
addAccount: string;
|
|
26
|
-
contactInfo: string;
|
|
27
|
-
contactAdd: string;
|
|
28
|
-
contactDetails: string;
|
|
29
|
-
opportunityAdd: string;
|
|
30
|
-
opportunities: string;
|
|
31
|
-
opportunityInfo: string;
|
|
32
|
-
configurationDetails: string;
|
|
33
|
-
configurations: string;
|
|
34
|
-
leadsDetails: string;
|
|
35
|
-
marketingDetails: string;
|
|
36
|
-
marketing: string;
|
|
37
|
-
categoryDetails: string;
|
|
38
|
-
sourceDetails: string;
|
|
39
|
-
stageDetails: string;
|
|
40
|
-
widgetsDetails: string;
|
|
41
|
-
};
|
|
42
|
-
constructor(injector: Injector, crmService: CrmService, cdr: ChangeDetectorRef);
|
|
43
|
-
ngOnInit(): void;
|
|
44
|
-
ngAfterViewChecked(): void;
|
|
45
|
-
onLazyLoad(event: LazyLoadEvent): void;
|
|
46
|
-
/** Function to get all stages */
|
|
47
|
-
getAllStages(paging: Paging): void;
|
|
48
|
-
getMappedAllStages(paging: Paging): void;
|
|
49
|
-
private sortByPreviousStageId;
|
|
50
|
-
buildDefaultStages(): void;
|
|
51
|
-
/** Function to delete stage */
|
|
52
|
-
onDelete(id: number): void;
|
|
53
|
-
/** Function to get all categories */
|
|
54
|
-
private getAllOpportunityCategories;
|
|
55
|
-
ngOnDestroy(): void;
|
|
56
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SmartCrmStagesComponent, never>;
|
|
57
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SmartCrmStagesComponent, "pw-smart-crm-stages", never, {}, {}, never, never, false, never>;
|
|
58
|
-
}
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
import { Injector, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import { UntypedFormGroup } from '@angular/forms';
|
|
3
|
-
import { CrmService } from '@posiwise/smart-crm-shared';
|
|
4
|
-
import { Observable } from 'rxjs';
|
|
5
|
-
import { CrmWidget } from '../../../../../shared/interface/crm-widget.interface';
|
|
6
|
-
import { AppBaseComponent } from '@posiwise/app-base-component';
|
|
7
|
-
import { User } from '@posiwise/common-utilities';
|
|
8
|
-
import * as i0 from "@angular/core";
|
|
9
|
-
export declare class SmartCrmWidgetsDetailsComponent extends AppBaseComponent implements OnInit, OnDestroy {
|
|
10
|
-
private crmService;
|
|
11
|
-
form: UntypedFormGroup;
|
|
12
|
-
data: CrmWidget;
|
|
13
|
-
subscriptionId: number;
|
|
14
|
-
hasAccess: boolean;
|
|
15
|
-
user: User;
|
|
16
|
-
submitted: boolean;
|
|
17
|
-
buttonBusy: boolean;
|
|
18
|
-
isLoading: boolean;
|
|
19
|
-
positions$: Observable<string>;
|
|
20
|
-
allWidgets$: Observable<string>;
|
|
21
|
-
private widgetId;
|
|
22
|
-
constructor(injector: Injector, crmService: CrmService);
|
|
23
|
-
ngOnInit(): void;
|
|
24
|
-
private getUserInfo;
|
|
25
|
-
/** Function to get widgetDetails */
|
|
26
|
-
private getWidgetDetails;
|
|
27
|
-
/** Function to get form controls */
|
|
28
|
-
get f(): {
|
|
29
|
-
[key: string]: import("@angular/forms").AbstractControl<any, any>;
|
|
30
|
-
};
|
|
31
|
-
/** Function on submit the form */
|
|
32
|
-
onSave(): void;
|
|
33
|
-
ngOnDestroy(): void;
|
|
34
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SmartCrmWidgetsDetailsComponent, never>;
|
|
35
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SmartCrmWidgetsDetailsComponent, "pw-smart-crm-widgets-details", never, {}, {}, never, never, false, never>;
|
|
36
|
-
}
|
|
@@ -1,58 +0,0 @@
|
|
|
1
|
-
import { AfterViewChecked, ChangeDetectorRef, Injector, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import { CrmService } from '@posiwise/smart-crm-shared';
|
|
3
|
-
import { LazyLoadEvent } from 'primeng/api';
|
|
4
|
-
import { Subscription } from '@posiwise/common-utilities';
|
|
5
|
-
import { CrmWidgetResponse } from '../../../../shared/interface/crm-widget.interface';
|
|
6
|
-
import { AppBaseComponent } from '@posiwise/app-base-component';
|
|
7
|
-
import { FilteredData } from 'libs/smart-crm/src/lib/shared/interface/smart-crm-module.interface';
|
|
8
|
-
import * as i0 from "@angular/core";
|
|
9
|
-
export declare class SmartCrmWidgetsComponent extends AppBaseComponent implements OnInit, OnDestroy, AfterViewChecked {
|
|
10
|
-
private crmService;
|
|
11
|
-
private cdr;
|
|
12
|
-
searchText: string;
|
|
13
|
-
loading: boolean;
|
|
14
|
-
data: CrmWidgetResponse;
|
|
15
|
-
hasAccess: boolean;
|
|
16
|
-
isLoaded: boolean;
|
|
17
|
-
subscriptionId: number;
|
|
18
|
-
allWidgets: FilteredData[];
|
|
19
|
-
positions: any[];
|
|
20
|
-
private page;
|
|
21
|
-
subscription: Subscription;
|
|
22
|
-
routers: {
|
|
23
|
-
accounts: string;
|
|
24
|
-
contacts: string;
|
|
25
|
-
accountInfo: string;
|
|
26
|
-
addAccount: string;
|
|
27
|
-
contactInfo: string;
|
|
28
|
-
contactAdd: string;
|
|
29
|
-
contactDetails: string;
|
|
30
|
-
opportunityAdd: string;
|
|
31
|
-
opportunities: string;
|
|
32
|
-
opportunityInfo: string;
|
|
33
|
-
configurationDetails: string;
|
|
34
|
-
configurations: string;
|
|
35
|
-
leadsDetails: string;
|
|
36
|
-
marketingDetails: string;
|
|
37
|
-
marketing: string;
|
|
38
|
-
categoryDetails: string;
|
|
39
|
-
sourceDetails: string;
|
|
40
|
-
stageDetails: string;
|
|
41
|
-
widgetsDetails: string;
|
|
42
|
-
};
|
|
43
|
-
constructor(injector: Injector, crmService: CrmService, cdr: ChangeDetectorRef);
|
|
44
|
-
ngOnInit(): void;
|
|
45
|
-
ngAfterViewChecked(): void;
|
|
46
|
-
onLazyLoad(event: LazyLoadEvent): void;
|
|
47
|
-
/** Function to get all widgets */
|
|
48
|
-
private getAllSubscriptionWidgets;
|
|
49
|
-
/** Function to get all widgets */
|
|
50
|
-
private getAllWidgets;
|
|
51
|
-
/** Function to delete widget */
|
|
52
|
-
onDelete(id: number): void;
|
|
53
|
-
/** Function to get positions */
|
|
54
|
-
private getWidgetPositions;
|
|
55
|
-
ngOnDestroy(): void;
|
|
56
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SmartCrmWidgetsComponent, never>;
|
|
57
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SmartCrmWidgetsComponent, "pw-smart-crm-widgets", never, {}, {}, never, never, false, never>;
|
|
58
|
-
}
|
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
import { ChangeDetectorRef, Injector, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import { UntypedFormGroup } from '@angular/forms';
|
|
3
|
-
import { CrmService } from '@posiwise/smart-crm-shared';
|
|
4
|
-
import { Observable } from 'rxjs';
|
|
5
|
-
import { CrmAccount } from '../../../../shared/interface/crm-account.interface';
|
|
6
|
-
import { CrmContact } from '../../../../shared/interface/crm-contact.interface';
|
|
7
|
-
import { AppBaseComponent } from '@posiwise/app-base-component';
|
|
8
|
-
import { User } from '@posiwise/common-utilities';
|
|
9
|
-
import { CommonService } from '@posiwise/common-services';
|
|
10
|
-
import * as i0 from "@angular/core";
|
|
11
|
-
export declare class SmartCrmContactDetailsComponent extends AppBaseComponent implements OnInit, OnDestroy {
|
|
12
|
-
private commonService;
|
|
13
|
-
private crmService;
|
|
14
|
-
private cdr;
|
|
15
|
-
form: UntypedFormGroup;
|
|
16
|
-
data: CrmContact;
|
|
17
|
-
id: number;
|
|
18
|
-
user: User;
|
|
19
|
-
submitted: boolean;
|
|
20
|
-
buttonBusy: boolean;
|
|
21
|
-
isLoading: boolean;
|
|
22
|
-
departments$: Observable<string>;
|
|
23
|
-
accounts: CrmAccount[];
|
|
24
|
-
subscriptionId: number;
|
|
25
|
-
accountId: number;
|
|
26
|
-
filteredAccounts: CrmAccount[];
|
|
27
|
-
potentials: any[];
|
|
28
|
-
labels: any[];
|
|
29
|
-
crmSources$: Observable<string>;
|
|
30
|
-
/** Function to get form controls */
|
|
31
|
-
get f(): {
|
|
32
|
-
[key: string]: import("@angular/forms").AbstractControl<any, any>;
|
|
33
|
-
};
|
|
34
|
-
constructor(commonService: CommonService, crmService: CrmService, cdr: ChangeDetectorRef, injector: Injector);
|
|
35
|
-
ngOnInit(): void;
|
|
36
|
-
/** Function to get the list of accounts by subscriptionId */
|
|
37
|
-
private getAccountsBySubscription;
|
|
38
|
-
/** Function to execute on form submission */
|
|
39
|
-
onSave(): void;
|
|
40
|
-
/** Function to get the specific contact details on edit form */
|
|
41
|
-
private getContactDetails;
|
|
42
|
-
/** search accounts */
|
|
43
|
-
search(event: any): void;
|
|
44
|
-
getDefaultValues(id: any): void;
|
|
45
|
-
ngOnDestroy(): void;
|
|
46
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SmartCrmContactDetailsComponent, never>;
|
|
47
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SmartCrmContactDetailsComponent, "pw-smart-crm-contact-details", never, {}, {}, never, never, false, never>;
|
|
48
|
-
}
|
|
@@ -1,122 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, Injector, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import { UntypedFormGroup } from '@angular/forms';
|
|
3
|
-
import { NgbCalendar, NgbDateStruct, NgbModal } from '@ng-bootstrap/ng-bootstrap';
|
|
4
|
-
import { CrmService } from '@posiwise/smart-crm-shared';
|
|
5
|
-
import { UploadFile, UploadInput, UploadOutput, UploaderOptions } from 'ngx-uploader';
|
|
6
|
-
import { Subscription } from '@posiwise/common-utilities';
|
|
7
|
-
import { AppBaseComponent } from '@posiwise/app-base-component';
|
|
8
|
-
import { AuthService } from '@posiwise/common-services';
|
|
9
|
-
import { SmartCrmAction } from 'libs/smart-crm/src/lib/shared/interface/smart-crm-module.interface';
|
|
10
|
-
import { CrmAccount } from 'libs/smart-crm/src/lib/shared/interface/crm-account.interface';
|
|
11
|
-
import { CrmContact } from 'libs/smart-crm/src/lib/shared/interface/crm-contact.interface';
|
|
12
|
-
import * as i0 from "@angular/core";
|
|
13
|
-
export declare class SmartCrmContactInfoComponent extends AppBaseComponent implements OnInit, OnDestroy {
|
|
14
|
-
private crmService;
|
|
15
|
-
private calendar;
|
|
16
|
-
private modalService;
|
|
17
|
-
private authService;
|
|
18
|
-
private document;
|
|
19
|
-
actionControls: UntypedFormGroup;
|
|
20
|
-
aboutControls: UntypedFormGroup;
|
|
21
|
-
contactId: number;
|
|
22
|
-
data: CrmContact;
|
|
23
|
-
isDisabled: boolean;
|
|
24
|
-
actions: SmartCrmAction[];
|
|
25
|
-
model: NgbDateStruct;
|
|
26
|
-
date: {
|
|
27
|
-
year: number;
|
|
28
|
-
month: number;
|
|
29
|
-
};
|
|
30
|
-
subscriptionId: number;
|
|
31
|
-
isFormEdit: boolean;
|
|
32
|
-
accounts: any[];
|
|
33
|
-
submitted: boolean;
|
|
34
|
-
buttonBusy: boolean;
|
|
35
|
-
contactComments: any[];
|
|
36
|
-
userId: number;
|
|
37
|
-
hasAccess: boolean;
|
|
38
|
-
contactVersioning: any[];
|
|
39
|
-
isDataLoaded: boolean;
|
|
40
|
-
updating: boolean;
|
|
41
|
-
actionId: number;
|
|
42
|
-
dangerColor: boolean;
|
|
43
|
-
potentials: string[];
|
|
44
|
-
labels: any[];
|
|
45
|
-
buttonDisable: boolean;
|
|
46
|
-
filteredAccounts: CrmAccount[];
|
|
47
|
-
showFullComment: boolean;
|
|
48
|
-
commentId: number;
|
|
49
|
-
accountId: number;
|
|
50
|
-
options: UploaderOptions;
|
|
51
|
-
uploadInput: EventEmitter<UploadInput>;
|
|
52
|
-
files: UploadFile[];
|
|
53
|
-
token: string;
|
|
54
|
-
dragOver: boolean;
|
|
55
|
-
isLoaded: boolean;
|
|
56
|
-
submitAction: boolean;
|
|
57
|
-
subscription: Subscription;
|
|
58
|
-
routers: {
|
|
59
|
-
accounts: string;
|
|
60
|
-
contacts: string;
|
|
61
|
-
accountInfo: string;
|
|
62
|
-
addAccount: string;
|
|
63
|
-
contactInfo: string;
|
|
64
|
-
contactAdd: string;
|
|
65
|
-
contactDetails: string;
|
|
66
|
-
opportunityAdd: string;
|
|
67
|
-
opportunities: string;
|
|
68
|
-
opportunityInfo: string;
|
|
69
|
-
configurationDetails: string;
|
|
70
|
-
configurations: string;
|
|
71
|
-
leadsDetails: string;
|
|
72
|
-
marketingDetails: string;
|
|
73
|
-
marketing: string;
|
|
74
|
-
categoryDetails: string;
|
|
75
|
-
sourceDetails: string;
|
|
76
|
-
stageDetails: string;
|
|
77
|
-
widgetsDetails: string;
|
|
78
|
-
};
|
|
79
|
-
constructor(injector: Injector, crmService: CrmService, calendar: NgbCalendar, modalService: NgbModal, authService: AuthService, document: Document);
|
|
80
|
-
ngOnInit(): void;
|
|
81
|
-
getDefaultValues(id: any): void;
|
|
82
|
-
/** Function to get contact versions */
|
|
83
|
-
private getContactVersion;
|
|
84
|
-
showEditControls(event: any): void;
|
|
85
|
-
updateComment(item: any): void;
|
|
86
|
-
showDatePicker(event: any, id: any): void;
|
|
87
|
-
/**
|
|
88
|
-
* Function to get the list of accounts by subscriptionId
|
|
89
|
-
*/
|
|
90
|
-
private getAccountsBySubscription;
|
|
91
|
-
get f(): {
|
|
92
|
-
[key: string]: import("@angular/forms").AbstractControl<any, any>;
|
|
93
|
-
};
|
|
94
|
-
get actionFormControls(): {
|
|
95
|
-
[key: string]: import("@angular/forms").AbstractControl<any, any>;
|
|
96
|
-
};
|
|
97
|
-
updateContactInfo(): void;
|
|
98
|
-
private getContactComments;
|
|
99
|
-
onSave(): void;
|
|
100
|
-
onDateSelected(): void;
|
|
101
|
-
/** Function to get and show all the actions */
|
|
102
|
-
getActions(): void;
|
|
103
|
-
/** Function to get the contact details by Id */
|
|
104
|
-
getUserInfo(): void;
|
|
105
|
-
/** Function to set the action as completed */
|
|
106
|
-
setAsCompletedOrUncompleted(id: any, action: any, completedOrUncompleted: any): Promise<void>;
|
|
107
|
-
/** Function to set the action as cancelled */
|
|
108
|
-
setAsCancelled(id: any, action: any): Promise<void>;
|
|
109
|
-
/** Function to show DatePicker */
|
|
110
|
-
showDatePickerUpdate(actionId: any): void;
|
|
111
|
-
/** Function to update the date */
|
|
112
|
-
onDateSelect(event: any, action: any): void;
|
|
113
|
-
/** search accounts */
|
|
114
|
-
search(event: any): void;
|
|
115
|
-
openModal(content: any): void;
|
|
116
|
-
onClose(): void;
|
|
117
|
-
onUploadOutput(output: UploadOutput): void;
|
|
118
|
-
navigateToOpportunities(): void;
|
|
119
|
-
ngOnDestroy(): void;
|
|
120
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SmartCrmContactInfoComponent, never>;
|
|
121
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SmartCrmContactInfoComponent, "pw-smart-crm-contact-info", never, {}, {}, never, never, false, never>;
|
|
122
|
-
}
|
|
@@ -1,89 +0,0 @@
|
|
|
1
|
-
import { AfterViewChecked, ChangeDetectorRef, Injector, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import { CrmService } from '@posiwise/smart-crm-shared';
|
|
3
|
-
import { LazyLoadEvent } from 'primeng/api';
|
|
4
|
-
import { Plotly, User, Subscription } from '@posiwise/common-utilities';
|
|
5
|
-
import { CrmContactResponse } from '../../../shared/interface/crm-contact.interface';
|
|
6
|
-
import { AppBaseComponent } from '@posiwise/app-base-component';
|
|
7
|
-
import { OpportunityInsight } from '../../../shared/interface/smart-crm-module.interface';
|
|
8
|
-
import { CrmAccount } from '../../../shared/interface/crm-account.interface';
|
|
9
|
-
import * as i0 from "@angular/core";
|
|
10
|
-
export declare class SmartCrmContactComponent extends AppBaseComponent implements OnInit, OnDestroy, AfterViewChecked {
|
|
11
|
-
private crmService;
|
|
12
|
-
private cdr;
|
|
13
|
-
data: CrmContactResponse;
|
|
14
|
-
searchText: string;
|
|
15
|
-
loading: boolean;
|
|
16
|
-
contactId: number;
|
|
17
|
-
accountData: CrmAccount;
|
|
18
|
-
accountId: number;
|
|
19
|
-
subscriptionId: number;
|
|
20
|
-
hasAccess: boolean;
|
|
21
|
-
userId: number;
|
|
22
|
-
isLoaded: boolean;
|
|
23
|
-
filterByPotentials: string;
|
|
24
|
-
potential: any[];
|
|
25
|
-
labels: any[];
|
|
26
|
-
filterByStatus: string;
|
|
27
|
-
user: User;
|
|
28
|
-
contactInsight: OpportunityInsight[];
|
|
29
|
-
contactGeography: Plotly.Figure;
|
|
30
|
-
private page;
|
|
31
|
-
subscription: Subscription;
|
|
32
|
-
routers: {
|
|
33
|
-
accounts: string;
|
|
34
|
-
contacts: string;
|
|
35
|
-
accountInfo: string;
|
|
36
|
-
addAccount: string;
|
|
37
|
-
contactInfo: string;
|
|
38
|
-
contactAdd: string;
|
|
39
|
-
contactDetails: string;
|
|
40
|
-
opportunityAdd: string;
|
|
41
|
-
opportunities: string;
|
|
42
|
-
opportunityInfo: string;
|
|
43
|
-
configurationDetails: string;
|
|
44
|
-
configurations: string;
|
|
45
|
-
leadsDetails: string;
|
|
46
|
-
marketingDetails: string;
|
|
47
|
-
marketing: string;
|
|
48
|
-
categoryDetails: string;
|
|
49
|
-
sourceDetails: string;
|
|
50
|
-
stageDetails: string;
|
|
51
|
-
widgetsDetails: string;
|
|
52
|
-
};
|
|
53
|
-
selectedLabels: any[];
|
|
54
|
-
selectedAccount: any[];
|
|
55
|
-
accountDropDown: any[];
|
|
56
|
-
crmAccountIds: string;
|
|
57
|
-
constructor(crmService: CrmService, injector: Injector, cdr: ChangeDetectorRef);
|
|
58
|
-
ngOnInit(): void;
|
|
59
|
-
ngAfterViewChecked(): void;
|
|
60
|
-
/**get accounts dropdown */
|
|
61
|
-
getAccountsDropdown(): void;
|
|
62
|
-
/**select option from account dropdown */
|
|
63
|
-
onSelectAccount(): void;
|
|
64
|
-
private getTableState;
|
|
65
|
-
onLazyLoad(event: LazyLoadEvent): void;
|
|
66
|
-
private getData;
|
|
67
|
-
/** Function to get user details */
|
|
68
|
-
private getUserInfo;
|
|
69
|
-
/** Function to get all contacts */
|
|
70
|
-
private getAllContacts;
|
|
71
|
-
/** Function to get the contacts related to accounts */
|
|
72
|
-
private getAccountContacts;
|
|
73
|
-
/** Function to get the account name */
|
|
74
|
-
private getAccountDetail;
|
|
75
|
-
/** Function to delete contact */
|
|
76
|
-
onDelete(id: number): void;
|
|
77
|
-
/** Function to filter by potential */
|
|
78
|
-
filterByPotential(event: any): void;
|
|
79
|
-
/** Function to call contact insight */
|
|
80
|
-
private getContactInsight;
|
|
81
|
-
/** Function to call contact geography */
|
|
82
|
-
getContactGeography(): void;
|
|
83
|
-
navigateToOpportunities(): void;
|
|
84
|
-
getDefaultValues(id: number): void;
|
|
85
|
-
onLabelChange(event: any): void;
|
|
86
|
-
ngOnDestroy(): void;
|
|
87
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SmartCrmContactComponent, never>;
|
|
88
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SmartCrmContactComponent, "pw-crm-contacts", never, {}, {}, never, never, false, never>;
|
|
89
|
-
}
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class SmartCrmCustomerSuccessComponent {
|
|
3
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SmartCrmCustomerSuccessComponent, never>;
|
|
4
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SmartCrmCustomerSuccessComponent, "pw-smart-crm-customer-success", never, {}, {}, never, never, false, never>;
|
|
5
|
-
}
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class SmartCrmInsightComponent {
|
|
3
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SmartCrmInsightComponent, never>;
|
|
4
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SmartCrmInsightComponent, "pw-smart-crm-insight", never, {}, {}, never, never, false, never>;
|
|
5
|
-
}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { Injector, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import { CrmService } from '@posiwise/smart-crm-shared';
|
|
3
|
-
import { AppBaseComponent } from '@posiwise/app-base-component';
|
|
4
|
-
import { Plotly } from '@posiwise/common-utilities';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class SmartCrmOverviewComponent extends AppBaseComponent implements OnInit, OnDestroy {
|
|
7
|
-
private crmService;
|
|
8
|
-
graph: Plotly.Figure;
|
|
9
|
-
subscriptionId: number;
|
|
10
|
-
hasAccess: boolean;
|
|
11
|
-
userId: number;
|
|
12
|
-
isLoaded: boolean;
|
|
13
|
-
constructor(crmService: CrmService, injector: Injector);
|
|
14
|
-
ngOnInit(): void;
|
|
15
|
-
/** Function to get the data for the graph */
|
|
16
|
-
private getChartData;
|
|
17
|
-
ngOnDestroy(): void;
|
|
18
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SmartCrmOverviewComponent, never>;
|
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SmartCrmOverviewComponent, "pw-smart-crm-overview", never, {}, {}, never, never, false, never>;
|
|
20
|
-
}
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
import { Injector, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import { UntypedFormGroup } from '@angular/forms';
|
|
3
|
-
import { CrmService } from '@posiwise/smart-crm-shared';
|
|
4
|
-
import { Observable } from 'rxjs';
|
|
5
|
-
import { CrmAccount } from '../../../../shared/interface/crm-account.interface';
|
|
6
|
-
import { CrmLead } from '../../../../shared/interface/crm-lead.interface';
|
|
7
|
-
import { AppBaseComponent } from '@posiwise/app-base-component';
|
|
8
|
-
import * as i0 from "@angular/core";
|
|
9
|
-
export declare class SmartCrmLeadsDetailsComponent extends AppBaseComponent implements OnInit, OnDestroy {
|
|
10
|
-
private crmService;
|
|
11
|
-
form: UntypedFormGroup;
|
|
12
|
-
data: CrmLead;
|
|
13
|
-
submitted: boolean;
|
|
14
|
-
buttonBusy: boolean;
|
|
15
|
-
isLoading: boolean;
|
|
16
|
-
id: number;
|
|
17
|
-
subscriptionId: number;
|
|
18
|
-
accounts: CrmAccount[];
|
|
19
|
-
filteredAccounts: string[];
|
|
20
|
-
source$: Observable<string>;
|
|
21
|
-
potentials: any[];
|
|
22
|
-
labels: any[];
|
|
23
|
-
constructor(injector: Injector, crmService: CrmService);
|
|
24
|
-
ngOnInit(): void;
|
|
25
|
-
/** Function to get the specific contact details on edit form */
|
|
26
|
-
private getLeadDetails;
|
|
27
|
-
/** Function to execute on form submission */
|
|
28
|
-
onSave(): void;
|
|
29
|
-
/** Function to get form controls */
|
|
30
|
-
get f(): {
|
|
31
|
-
[key: string]: import("@angular/forms").AbstractControl<any, any>;
|
|
32
|
-
};
|
|
33
|
-
/** Function to post the new lead */
|
|
34
|
-
private onPostLead;
|
|
35
|
-
/** Function to update the leads */
|
|
36
|
-
private onUpdateLead;
|
|
37
|
-
/** Function to get the list of accounts by subscriptionId */
|
|
38
|
-
private getAccountsBySubscription;
|
|
39
|
-
/** search accounts */
|
|
40
|
-
search(event: any): void;
|
|
41
|
-
getDefaultValues(id: number): void;
|
|
42
|
-
ngOnDestroy(): void;
|
|
43
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SmartCrmLeadsDetailsComponent, never>;
|
|
44
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SmartCrmLeadsDetailsComponent, "pw-smart-crm-leads-details", never, {}, {}, never, never, false, never>;
|
|
45
|
-
}
|
|
@@ -1,58 +0,0 @@
|
|
|
1
|
-
import { AfterViewChecked, ChangeDetectorRef, Injector, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import { CrmService } from '@posiwise/smart-crm-shared';
|
|
3
|
-
import { LazyLoadEvent } from 'primeng/api';
|
|
4
|
-
import { Subscription } from '@posiwise/common-utilities';
|
|
5
|
-
import { CrmLeadResponse } from '../../../shared/interface/crm-lead.interface';
|
|
6
|
-
import { AppBaseComponent } from '@posiwise/app-base-component';
|
|
7
|
-
import * as i0 from "@angular/core";
|
|
8
|
-
export declare class SmartCrmLeadsComponent extends AppBaseComponent implements OnInit, OnDestroy, AfterViewChecked {
|
|
9
|
-
private crmService;
|
|
10
|
-
private cdr;
|
|
11
|
-
subscriptionId: number;
|
|
12
|
-
hasAccess: boolean;
|
|
13
|
-
data: CrmLeadResponse;
|
|
14
|
-
searchText: string;
|
|
15
|
-
isLoaded: boolean;
|
|
16
|
-
loading: boolean;
|
|
17
|
-
userId: number;
|
|
18
|
-
page: number;
|
|
19
|
-
subscription: Subscription;
|
|
20
|
-
allSource: any[];
|
|
21
|
-
routers: {
|
|
22
|
-
accounts: string;
|
|
23
|
-
contacts: string;
|
|
24
|
-
accountInfo: string;
|
|
25
|
-
addAccount: string;
|
|
26
|
-
contactInfo: string;
|
|
27
|
-
contactAdd: string;
|
|
28
|
-
contactDetails: string;
|
|
29
|
-
opportunityAdd: string;
|
|
30
|
-
opportunities: string;
|
|
31
|
-
opportunityInfo: string;
|
|
32
|
-
configurationDetails: string;
|
|
33
|
-
configurations: string;
|
|
34
|
-
leadsDetails: string;
|
|
35
|
-
marketingDetails: string;
|
|
36
|
-
marketing: string;
|
|
37
|
-
categoryDetails: string;
|
|
38
|
-
sourceDetails: string;
|
|
39
|
-
stageDetails: string;
|
|
40
|
-
widgetsDetails: string;
|
|
41
|
-
};
|
|
42
|
-
filterBySource: string;
|
|
43
|
-
crmSources: any[];
|
|
44
|
-
constructor(crmService: CrmService, injector: Injector, cdr: ChangeDetectorRef);
|
|
45
|
-
ngOnInit(): void;
|
|
46
|
-
ngAfterViewChecked(): void;
|
|
47
|
-
private getUserInfo;
|
|
48
|
-
onLazyLoad(event: LazyLoadEvent): void;
|
|
49
|
-
private getAllCrmLeads;
|
|
50
|
-
/** Function to delete Lead */
|
|
51
|
-
onDelete(id: number): void;
|
|
52
|
-
/** Function to all account source */
|
|
53
|
-
private getAllSource;
|
|
54
|
-
onSourceChange(event: any): void;
|
|
55
|
-
ngOnDestroy(): void;
|
|
56
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SmartCrmLeadsComponent, never>;
|
|
57
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SmartCrmLeadsComponent, "pw-smart-crm-leads", never, {}, {}, never, never, false, never>;
|
|
58
|
-
}
|