@posiwise/admin-module 0.0.152 → 0.0.154

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (85) hide show
  1. package/esm2022/lib/admin-module.routing.mjs +20 -10
  2. package/esm2022/lib/admin.module.mjs +4 -1
  3. package/esm2022/lib/components/config/global-config-details/global-config-details.component.mjs +7 -4
  4. package/esm2022/lib/components/config/global-config-list/global-config-list.component.mjs +1 -1
  5. package/esm2022/lib/components/contact-us/contact-us-list/contact-us-list.component.mjs +3 -3
  6. package/esm2022/lib/components/credentials/credentials/credentials.component.mjs +1 -1
  7. package/esm2022/lib/components/credentials/subscription-credentials-details/subscription-credentials-details.component.mjs +3 -3
  8. package/esm2022/lib/components/domain-config/domain-config-details/domain-config-build/domain-config-build.component.mjs +354 -26
  9. package/esm2022/lib/components/domain-config/domain-config-details/domain-config-core/domain-config-core.component.mjs +1 -2
  10. package/esm2022/lib/components/domain-config/domain-config-list/domain-config-list.component.mjs +1 -1
  11. package/esm2022/lib/components/faqs/faqs-list/faqs-list.component.mjs +1 -1
  12. package/esm2022/lib/components/login-notifications/login-notification-details/login-notification-details.component.mjs +3 -3
  13. package/esm2022/lib/components/login-notifications/login-notifications-list/login-notifications-list.component.mjs +3 -3
  14. package/esm2022/lib/components/mailer/mailer-list/mailer-list.component.mjs +1 -1
  15. package/esm2022/lib/components/newsletters/newsletters-items/newsletters-items.component.mjs +1 -1
  16. package/esm2022/lib/components/newsletters/newsletters-list/newsletters-list.component.mjs +1 -1
  17. package/esm2022/lib/components/permissions/permissions-list/permissions-list.component.mjs +1 -1
  18. package/esm2022/lib/components/permissions/roles-list/roles-list.component.mjs +1 -1
  19. package/esm2022/lib/components/products/product-details/product-details.component.mjs +1 -1
  20. package/esm2022/lib/components/products/products-list/products-list.component.mjs +1 -1
  21. package/esm2022/lib/components/resources/resources-admin-details/resources-admin-details.component.mjs +68 -6
  22. package/esm2022/lib/components/resources/resources-admin-tabs/resources-index/resources-index.component.mjs +51 -20
  23. package/esm2022/lib/components/subscriptions/subscription-details/subscription-details.component.mjs +28 -6
  24. package/esm2022/lib/components/subscriptions/subscription-products/subscription-products.component.mjs +1 -1
  25. package/esm2022/lib/components/subscriptions/subscription-users/subscription-users.component.mjs +3 -3
  26. package/esm2022/lib/components/subscriptions/subscriptions-list/subscriptions-list.component.mjs +1 -1
  27. package/esm2022/lib/components/tags/tags-details/tags-details.component.mjs +135 -0
  28. package/esm2022/lib/components/tags/tags-list/tags-list.component.mjs +18 -45
  29. package/esm2022/lib/components/tips/tips-list/tips-list.component.mjs +1 -1
  30. package/esm2022/lib/components/tracking/versions/versions.component.mjs +1 -1
  31. package/esm2022/lib/components/users/users-list/users-list.component.mjs +3 -3
  32. package/esm2022/lib/shared/interface/domain-config.interface.mjs +1 -1
  33. package/esm2022/lib/shared/routers/routers.mjs +3 -1
  34. package/fesm2022/posiwise-admin-module.mjs +718 -174
  35. package/fesm2022/posiwise-admin-module.mjs.map +1 -1
  36. package/lib/admin.module.d.ts +72 -71
  37. package/lib/components/TOS/terms-of-service/terms-of-service.component.d.ts +2 -0
  38. package/lib/components/config/global-config-details/global-config-details.component.d.ts +1 -1
  39. package/lib/components/config/global-config-list/global-config-list.component.d.ts +2 -0
  40. package/lib/components/credentials/credentials/credentials.component.d.ts +2 -0
  41. package/lib/components/credentials/subscription-credentials/subscription-credentials.component.d.ts +2 -0
  42. package/lib/components/domain-config/domain-config-details/domain-config-build/domain-config-build.component.d.ts +46 -2
  43. package/lib/components/domain-config/domain-config-details/domain-config-core/domain-config-core.component.d.ts +4 -2
  44. package/lib/components/domain-config/domain-config-details/domain-config-details.component.d.ts +2 -0
  45. package/lib/components/domain-config/domain-config-details/domain-config-integrations/domain-config-integrations.component.d.ts +2 -0
  46. package/lib/components/domain-config/domain-config-details/domain-config-interface/domain-config-interface.component.d.ts +2 -0
  47. package/lib/components/domain-config/domain-config-details/domain-config-organization/domain-config-organization.component.d.ts +2 -0
  48. package/lib/components/domain-config/domain-config-details/domain-config-security/domain-config-security.component.d.ts +2 -0
  49. package/lib/components/domain-config/domain-config-details/domain-config-social/domain-config-social.component.d.ts +2 -0
  50. package/lib/components/domain-config/domain-config-list/domain-config-list.component.d.ts +2 -0
  51. package/lib/components/faqs/add-faq/add-faq.component.d.ts +2 -0
  52. package/lib/components/faqs/edit-faq/edit-faq.component.d.ts +2 -0
  53. package/lib/components/faqs/faqs-list/faqs-list.component.d.ts +2 -0
  54. package/lib/components/feedback-questions/feedback-questions-details/feedback-questions-details.component.d.ts +2 -0
  55. package/lib/components/feedback-questions/feedback-questions-list/feedback-questions-list.component.d.ts +2 -0
  56. package/lib/components/incidents/add-edit-incident/add-edit-incident.component.d.ts +2 -0
  57. package/lib/components/incidents/incidents-list/incidents-list.component.d.ts +2 -0
  58. package/lib/components/login-notifications/login-notification-details/login-notification-details.component.d.ts +2 -0
  59. package/lib/components/login-notifications/login-notifications-list/login-notifications-list.component.d.ts +2 -0
  60. package/lib/components/mailer/mailer-details/mailer-details.component.d.ts +2 -0
  61. package/lib/components/mailer/mailer-list/mailer-list.component.d.ts +2 -0
  62. package/lib/components/newsletters/newsletter-details/newsletter-details.component.d.ts +2 -0
  63. package/lib/components/newsletters/newsletter-item-details/newsletter-item-details.component.d.ts +2 -0
  64. package/lib/components/newsletters/newsletters-items/newsletters-items-view-details/newsletters-items-view-details.component.d.ts +2 -0
  65. package/lib/components/newsletters/newsletters-items/newsletters-items.component.d.ts +2 -0
  66. package/lib/components/newsletters/newsletters-list/newsletters-list.component.d.ts +2 -0
  67. package/lib/components/permissions/permissions-details/permissions-details.component.d.ts +2 -0
  68. package/lib/components/permissions/permissions-list/permissions-list.component.d.ts +2 -0
  69. package/lib/components/permissions/roles-list/roles-list.component.d.ts +2 -0
  70. package/lib/components/products/products-list/products-list.component.d.ts +2 -0
  71. package/lib/components/resources/resources-admin-details/resources-admin-details.component.d.ts +8 -0
  72. package/lib/components/resources/resources-admin-tabs/resources-index/resources-index.component.d.ts +9 -1
  73. package/lib/components/subscriptions/subscription-details/subscription-details.component.d.ts +5 -3
  74. package/lib/components/subscriptions/subscription-product-details/subscription-product-details.component.d.ts +2 -0
  75. package/lib/components/subscriptions/subscription-products/subscription-products.component.d.ts +2 -0
  76. package/lib/components/subscriptions/subscription-users/subscription-users.component.d.ts +2 -0
  77. package/lib/components/subscriptions/subscriptions-list/invite-users/invite-users.component.d.ts +2 -0
  78. package/lib/components/subscriptions/subscriptions-list/subscriptions-list.component.d.ts +2 -0
  79. package/lib/components/tags/tags-details/tags-details.component.d.ts +32 -0
  80. package/lib/components/tags/tags-list/tags-list.component.d.ts +39 -1
  81. package/lib/components/tips/tips-list/tips-list.component.d.ts +2 -0
  82. package/lib/components/users/users-list/users-list.component.d.ts +2 -0
  83. package/lib/shared/interface/domain-config.interface.d.ts +21 -0
  84. package/lib/shared/routers/routers.d.ts +2 -0
  85. package/package.json +1 -1
@@ -50,78 +50,79 @@ import * as i48 from "./components/products/products-list/products-list.componen
50
50
  import * as i49 from "./components/products/products-insight/products-insight.component";
51
51
  import * as i50 from "./components/resources/resources-admin-tabs/resources-admin-tabs.component";
52
52
  import * as i51 from "./components/resources/resources-admin-details/resources-admin-details.component";
53
- import * as i52 from "./components/resources/resources-admin-tabs/resources-index/resources-index.component";
54
- import * as i53 from "./components/resources/resources-admin-tabs/resources-insight/resources-insight.component";
55
- import * as i54 from "./components/resources/resources-lists-insight/resources-lists-insight.component";
56
- import * as i55 from "./components/newsletters/newsletters-list/newsletters-list.component";
57
- import * as i56 from "./components/newsletters/newsletters-items/newsletters-items.component";
58
- import * as i57 from "./components/newsletters/newsletters-insight/newsletters-insight.component";
59
- import * as i58 from "./components/users/users-insight/users-insight.component";
60
- import * as i59 from "./components/tags/tags-category/tags-category.component";
61
- import * as i60 from "./components/tags/tags-list/tags-list.component";
62
- import * as i61 from "./components/tips/tips-tabs/tips-tabs.component";
63
- import * as i62 from "./components/generic/generic-misc/generic-misc.component";
64
- import * as i63 from "./components/generic/generic-insight/generic-insight.component";
65
- import * as i64 from "./components/faqs/faqs-tabs/faqs-tabs.component";
66
- import * as i65 from "./components/contact-us/contact-us-tabs/contact-us-tabs.component";
67
- import * as i66 from "./components/generic/generic-tabs/generic-tabs.component";
68
- import * as i67 from "./components/permissions/permissions-list/permissions-list.component";
69
- import * as i68 from "./components/permissions/permissions-details/permissions-details.component";
70
- import * as i69 from "./components/permissions/permissions-tabs/permissions-tabs.component";
71
- import * as i70 from "./components/TOS/terms-of-service/terms-of-service.component";
72
- import * as i71 from "./components/TOS/terms-of-service-tabs/terms-of-service-tabs.component";
73
- import * as i72 from "./components/TOS/terms-of-service-details/terms-of-service-details.component";
74
- import * as i73 from "./components/credentials/credentials/credentials.component";
75
- import * as i74 from "./components/credentials/subscription-credentials/subscription-credentials.component";
76
- import * as i75 from "./components/credentials/subscription-credentials-details/subscription-credentials-details.component";
77
- import * as i76 from "./components/credentials/credentials-details/credentials-details.component";
78
- import * as i77 from "./components/credentials/credentials-tab/credentials-tab.component";
79
- import * as i78 from "./components/tracking/ahoy-events/ahoy-events.component";
80
- import * as i79 from "./components/tracking/tracking-tabs/tracking-tabs.component";
81
- import * as i80 from "./components/tracking/ahoy-messages/ahoy-messages.component";
82
- import * as i81 from "./components/tracking/ahoy-visits/ahoy-visits.component";
83
- import * as i82 from "./components/tracking/events/events.component";
84
- import * as i83 from "./components/tracking/versions/versions.component";
85
- import * as i84 from "./components/products/users-list-for-product/users-list-for-product.component";
86
- import * as i85 from "./components/newsletters/newsletter-users-list/newsletter-users-list.component";
87
- import * as i86 from "./components/config/global-config-list/global-config-list.component";
88
- import * as i87 from "./components/config/global-config-details/global-config-details.component";
89
- import * as i88 from "./components/config/global-config-tabs/global-config-tabs.component";
90
- import * as i89 from "./components/subscriptions/subscription-products/subscription-products.component";
91
- import * as i90 from "./components/subscriptions/subscription-users/subscription-users.component";
92
- import * as i91 from "./components/subscriptions/subscription-agents-list/subscription-agents-list.component";
93
- import * as i92 from "./components/subscriptions/subscriptions-insight/subscription-insight-tabs/subscription-insight-tabs.component";
94
- import * as i93 from "./components/contact-us/contact-us-list/contact-us-list.component";
95
- import * as i94 from "./components/incidents/incidents-list/incidents-list.component";
96
- import * as i95 from "./components/incidents/incidents-tabs/incidents-tabs.component";
97
- import * as i96 from "./components/incidents/add-edit-incident/add-edit-incident.component";
98
- import * as i97 from "./components/faqs/add-faq/add-faq.component";
99
- import * as i98 from "./components/faqs/edit-faq/edit-faq.component";
100
- import * as i99 from "primeng/table";
101
- import * as i100 from "primeng/tooltip";
102
- import * as i101 from "primeng/accordion";
103
- import * as i102 from "primeng/autocomplete";
104
- import * as i103 from "primeng/dropdown";
105
- import * as i104 from "primeng/multiselect";
106
- import * as i105 from "primeng/inputtext";
107
- import * as i106 from "ngx-daterangepicker-material";
108
- import * as i107 from "ngx-json-viewer";
109
- import * as i108 from "primeng/calendar";
110
- import * as i109 from "angular-plotly.js";
111
- import * as i110 from "@angular/common";
112
- import * as i111 from "ngx-ui-switch";
113
- import * as i112 from "@posiwise/shared-components";
114
- import * as i113 from "@angular-magic/ngx-gp-autocomplete";
115
- import * as i114 from "@posiwise/core-transloco";
116
- import * as i115 from "@posiwise/pipes";
117
- import * as i116 from "@posiwise/directives";
118
- import * as i117 from "./admin-module.routing";
119
- import * as i118 from "@ng-bootstrap/ng-bootstrap";
120
- import * as i119 from "@angular/forms";
121
- import * as i120 from "ngx-pagination";
122
- import * as i121 from "ngx-quill";
53
+ import * as i52 from "./components/tags/tags-details/tags-details.component";
54
+ import * as i53 from "./components/resources/resources-admin-tabs/resources-index/resources-index.component";
55
+ import * as i54 from "./components/resources/resources-admin-tabs/resources-insight/resources-insight.component";
56
+ import * as i55 from "./components/resources/resources-lists-insight/resources-lists-insight.component";
57
+ import * as i56 from "./components/newsletters/newsletters-list/newsletters-list.component";
58
+ import * as i57 from "./components/newsletters/newsletters-items/newsletters-items.component";
59
+ import * as i58 from "./components/newsletters/newsletters-insight/newsletters-insight.component";
60
+ import * as i59 from "./components/users/users-insight/users-insight.component";
61
+ import * as i60 from "./components/tags/tags-category/tags-category.component";
62
+ import * as i61 from "./components/tags/tags-list/tags-list.component";
63
+ import * as i62 from "./components/tips/tips-tabs/tips-tabs.component";
64
+ import * as i63 from "./components/generic/generic-misc/generic-misc.component";
65
+ import * as i64 from "./components/generic/generic-insight/generic-insight.component";
66
+ import * as i65 from "./components/faqs/faqs-tabs/faqs-tabs.component";
67
+ import * as i66 from "./components/contact-us/contact-us-tabs/contact-us-tabs.component";
68
+ import * as i67 from "./components/generic/generic-tabs/generic-tabs.component";
69
+ import * as i68 from "./components/permissions/permissions-list/permissions-list.component";
70
+ import * as i69 from "./components/permissions/permissions-details/permissions-details.component";
71
+ import * as i70 from "./components/permissions/permissions-tabs/permissions-tabs.component";
72
+ import * as i71 from "./components/TOS/terms-of-service/terms-of-service.component";
73
+ import * as i72 from "./components/TOS/terms-of-service-tabs/terms-of-service-tabs.component";
74
+ import * as i73 from "./components/TOS/terms-of-service-details/terms-of-service-details.component";
75
+ import * as i74 from "./components/credentials/credentials/credentials.component";
76
+ import * as i75 from "./components/credentials/subscription-credentials/subscription-credentials.component";
77
+ import * as i76 from "./components/credentials/subscription-credentials-details/subscription-credentials-details.component";
78
+ import * as i77 from "./components/credentials/credentials-details/credentials-details.component";
79
+ import * as i78 from "./components/credentials/credentials-tab/credentials-tab.component";
80
+ import * as i79 from "./components/tracking/ahoy-events/ahoy-events.component";
81
+ import * as i80 from "./components/tracking/tracking-tabs/tracking-tabs.component";
82
+ import * as i81 from "./components/tracking/ahoy-messages/ahoy-messages.component";
83
+ import * as i82 from "./components/tracking/ahoy-visits/ahoy-visits.component";
84
+ import * as i83 from "./components/tracking/events/events.component";
85
+ import * as i84 from "./components/tracking/versions/versions.component";
86
+ import * as i85 from "./components/products/users-list-for-product/users-list-for-product.component";
87
+ import * as i86 from "./components/newsletters/newsletter-users-list/newsletter-users-list.component";
88
+ import * as i87 from "./components/config/global-config-list/global-config-list.component";
89
+ import * as i88 from "./components/config/global-config-details/global-config-details.component";
90
+ import * as i89 from "./components/config/global-config-tabs/global-config-tabs.component";
91
+ import * as i90 from "./components/subscriptions/subscription-products/subscription-products.component";
92
+ import * as i91 from "./components/subscriptions/subscription-users/subscription-users.component";
93
+ import * as i92 from "./components/subscriptions/subscription-agents-list/subscription-agents-list.component";
94
+ import * as i93 from "./components/subscriptions/subscriptions-insight/subscription-insight-tabs/subscription-insight-tabs.component";
95
+ import * as i94 from "./components/contact-us/contact-us-list/contact-us-list.component";
96
+ import * as i95 from "./components/incidents/incidents-list/incidents-list.component";
97
+ import * as i96 from "./components/incidents/incidents-tabs/incidents-tabs.component";
98
+ import * as i97 from "./components/incidents/add-edit-incident/add-edit-incident.component";
99
+ import * as i98 from "./components/faqs/add-faq/add-faq.component";
100
+ import * as i99 from "./components/faqs/edit-faq/edit-faq.component";
101
+ import * as i100 from "primeng/table";
102
+ import * as i101 from "primeng/tooltip";
103
+ import * as i102 from "primeng/accordion";
104
+ import * as i103 from "primeng/autocomplete";
105
+ import * as i104 from "primeng/dropdown";
106
+ import * as i105 from "primeng/multiselect";
107
+ import * as i106 from "primeng/inputtext";
108
+ import * as i107 from "ngx-daterangepicker-material";
109
+ import * as i108 from "ngx-json-viewer";
110
+ import * as i109 from "primeng/calendar";
111
+ import * as i110 from "angular-plotly.js";
112
+ import * as i111 from "@angular/common";
113
+ import * as i112 from "ngx-ui-switch";
114
+ import * as i113 from "@posiwise/shared-components";
115
+ import * as i114 from "@angular-magic/ngx-gp-autocomplete";
116
+ import * as i115 from "@posiwise/core-transloco";
117
+ import * as i116 from "@posiwise/pipes";
118
+ import * as i117 from "@posiwise/directives";
119
+ import * as i118 from "./admin-module.routing";
120
+ import * as i119 from "@ng-bootstrap/ng-bootstrap";
121
+ import * as i120 from "@angular/forms";
122
+ import * as i121 from "ngx-pagination";
123
+ import * as i122 from "ngx-quill";
123
124
  export declare class AdminModule {
124
125
  static ɵfac: i0.ɵɵFactoryDeclaration<AdminModule, never>;
125
- static ɵmod: i0.ɵɵNgModuleDeclaration<AdminModule, [typeof i1.UserTabComponent, typeof i2.SubscriptionComponent, typeof i3.MailerComponent, typeof i4.MailerListComponent, typeof i5.MailerDetailsComponent, typeof i6.NewsletterComponent, typeof i7.FaqListComponent, typeof i8.DomainConfigListComponent, typeof i9.DomainConfigDetailsComponent, typeof i10.DomainConfigBuildComponent, typeof i11.DomainConfigCoreComponent, typeof i12.DomainConfigOrganizationComponent, typeof i13.DomainConfigSecurityComponent, typeof i14.DomainConfigSocialComponent, typeof i15.DomainConfigIntegrationsComponent, typeof i16.DomainConfigInterfaceComponent, typeof i17.DomainConfigTabsComponent, typeof i18.LoginNotificationTabsComponent, typeof i19.LoginNotificationsListComponent, typeof i20.LoginNotificationDetailsComponent, typeof i21.FeedbackQuestionsListComponent, typeof i22.FeedbackQuestionsDetailsComponent, typeof i23.UserDetailsComponent, typeof i24.ProductsTabComponent, typeof i25.SubscriptionDetailsComponent, typeof i26.NewsletterDetailsComponent, typeof i27.NewsletterItemDetailsComponent, typeof i28.NewsLetterItemViewComponent, typeof i29.ProductDetailsComponent, typeof i30.RoleDetailsComponent, typeof i31.TagsTabsComponent, typeof i32.TipComponent, typeof i33.TipsComponent, typeof i34.AgentDetailsComponent, typeof i35.UserListComponent, typeof i36.RolesListComponent, typeof i37.SubscriptionsListComponent, typeof i38.InviteUsersComponent, typeof i39.SubscriptionProductDetailsComponent, typeof i40.InsightComponent, typeof i41.SubscriptionInsightNpsComponent, typeof i42.SubscriptionInsightAveragePriceComponent, typeof i43.SubscriptionInsightProcuctSessionComponent, typeof i44.SubscriptionInsightUserSessionComponent, typeof i45.SubscriptionInsightAverageUserComponent, typeof i46.SubscriptionInsightRevenueComponent, typeof i47.SubscriptionInsightChurnComponent, typeof i48.ProductsListComponent, typeof i49.ProductInsightComponent, typeof i50.ResourcesAdminIndexComponent, typeof i51.ResourceAdminDetailsComponent, typeof i52.ResourcesIndexComponent, typeof i53.ResourcesInsightComponent, typeof i54.ResourcesListsInsightComponent, typeof i55.NewslettersListComponent, typeof i56.NewslettersItemsComponent, typeof i57.NewsletterInsightComponent, typeof i58.UserInsightComponent, typeof i59.TagsCategoryComponent, typeof i60.TagsListComponent, typeof i61.TipsTabsComponent, typeof i62.GenericMiscComponent, typeof i63.GenericInsightComponent, typeof i64.FaqTabsComponent, typeof i65.ContactUsTabsComponent, typeof i66.GeneralTabsComponent, typeof i67.PermissionsListComponent, typeof i68.PermissionsDetailsComponent, typeof i69.PermissionsTabsComponent, typeof i70.TermsOfServiceComponent, typeof i71.TermsOfServiceTabsComponent, typeof i72.TermsOfServiceDetailsComponent, typeof i73.CredentialsComponent, typeof i74.SubscriptionCredentialsComponent, typeof i75.SubscriptionCredentialsDetailsComponent, typeof i76.CredentialsDetailsComponent, typeof i77.CredentialsTabComponent, typeof i78.AhoyEventsComponent, typeof i79.TrackingComponent, typeof i80.AhoyMessagesComponent, typeof i81.AhoyVisitsComponent, typeof i82.EventsComponent, typeof i83.VersionsComponent, typeof i84.UsersListForProductComponent, typeof i85.NewsletterUsersListComponent, typeof i86.GlobalConfigListComponent, typeof i87.GlobalConfigDetailsComponent, typeof i88.GlobalConfigTabsComponent, typeof i89.SubscriptionProductsComponent, typeof i90.SubscriptionUsersComponent, typeof i91.SubscriptionAgentsListComponent, typeof i92.SubscriptionInsightTabsComponent, typeof i93.ContactUsListComponent, typeof i94.IncidentListComponent, typeof i95.IncidentTabsComponent, typeof i96.AddEditIncidentComponent, typeof i97.AddFaqComponent, typeof i98.EditFaqComponent], [typeof i99.TableModule, typeof i100.TooltipModule, typeof i101.AccordionModule, typeof i102.AutoCompleteModule, typeof i103.DropdownModule, typeof i104.MultiSelectModule, typeof i105.InputTextModule, typeof i106.NgxDaterangepickerMd, typeof i107.NgxJsonViewerModule, typeof i108.CalendarModule, typeof i109.PlotlyViaCDNModule, typeof i110.CommonModule, typeof i111.UiSwitchModule, typeof i112.SharedComponentsModule, typeof i113.NgxGpAutocompleteModule, typeof i114.CoreTranslocoModule, typeof i115.PipesModule, typeof i116.DirectivesModule, typeof i117.AdminRoutingModule, typeof i118.NgbModule, typeof i119.FormsModule, typeof i119.ReactiveFormsModule, typeof i120.NgxPaginationModule, typeof i121.QuillModule], never>;
126
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AdminModule, [typeof i1.UserTabComponent, typeof i2.SubscriptionComponent, typeof i3.MailerComponent, typeof i4.MailerListComponent, typeof i5.MailerDetailsComponent, typeof i6.NewsletterComponent, typeof i7.FaqListComponent, typeof i8.DomainConfigListComponent, typeof i9.DomainConfigDetailsComponent, typeof i10.DomainConfigBuildComponent, typeof i11.DomainConfigCoreComponent, typeof i12.DomainConfigOrganizationComponent, typeof i13.DomainConfigSecurityComponent, typeof i14.DomainConfigSocialComponent, typeof i15.DomainConfigIntegrationsComponent, typeof i16.DomainConfigInterfaceComponent, typeof i17.DomainConfigTabsComponent, typeof i18.LoginNotificationTabsComponent, typeof i19.LoginNotificationsListComponent, typeof i20.LoginNotificationDetailsComponent, typeof i21.FeedbackQuestionsListComponent, typeof i22.FeedbackQuestionsDetailsComponent, typeof i23.UserDetailsComponent, typeof i24.ProductsTabComponent, typeof i25.SubscriptionDetailsComponent, typeof i26.NewsletterDetailsComponent, typeof i27.NewsletterItemDetailsComponent, typeof i28.NewsLetterItemViewComponent, typeof i29.ProductDetailsComponent, typeof i30.RoleDetailsComponent, typeof i31.TagsTabsComponent, typeof i32.TipComponent, typeof i33.TipsComponent, typeof i34.AgentDetailsComponent, typeof i35.UserListComponent, typeof i36.RolesListComponent, typeof i37.SubscriptionsListComponent, typeof i38.InviteUsersComponent, typeof i39.SubscriptionProductDetailsComponent, typeof i40.InsightComponent, typeof i41.SubscriptionInsightNpsComponent, typeof i42.SubscriptionInsightAveragePriceComponent, typeof i43.SubscriptionInsightProcuctSessionComponent, typeof i44.SubscriptionInsightUserSessionComponent, typeof i45.SubscriptionInsightAverageUserComponent, typeof i46.SubscriptionInsightRevenueComponent, typeof i47.SubscriptionInsightChurnComponent, typeof i48.ProductsListComponent, typeof i49.ProductInsightComponent, typeof i50.ResourcesAdminIndexComponent, typeof i51.ResourceAdminDetailsComponent, typeof i52.TagDetailsComponent, typeof i53.ResourcesIndexComponent, typeof i54.ResourcesInsightComponent, typeof i55.ResourcesListsInsightComponent, typeof i56.NewslettersListComponent, typeof i57.NewslettersItemsComponent, typeof i58.NewsletterInsightComponent, typeof i59.UserInsightComponent, typeof i60.TagsCategoryComponent, typeof i61.TagsListComponent, typeof i62.TipsTabsComponent, typeof i63.GenericMiscComponent, typeof i64.GenericInsightComponent, typeof i65.FaqTabsComponent, typeof i66.ContactUsTabsComponent, typeof i67.GeneralTabsComponent, typeof i68.PermissionsListComponent, typeof i69.PermissionsDetailsComponent, typeof i70.PermissionsTabsComponent, typeof i71.TermsOfServiceComponent, typeof i72.TermsOfServiceTabsComponent, typeof i73.TermsOfServiceDetailsComponent, typeof i74.CredentialsComponent, typeof i75.SubscriptionCredentialsComponent, typeof i76.SubscriptionCredentialsDetailsComponent, typeof i77.CredentialsDetailsComponent, typeof i78.CredentialsTabComponent, typeof i79.AhoyEventsComponent, typeof i80.TrackingComponent, typeof i81.AhoyMessagesComponent, typeof i82.AhoyVisitsComponent, typeof i83.EventsComponent, typeof i84.VersionsComponent, typeof i85.UsersListForProductComponent, typeof i86.NewsletterUsersListComponent, typeof i87.GlobalConfigListComponent, typeof i88.GlobalConfigDetailsComponent, typeof i89.GlobalConfigTabsComponent, typeof i90.SubscriptionProductsComponent, typeof i91.SubscriptionUsersComponent, typeof i92.SubscriptionAgentsListComponent, typeof i93.SubscriptionInsightTabsComponent, typeof i94.ContactUsListComponent, typeof i95.IncidentListComponent, typeof i96.IncidentTabsComponent, typeof i97.AddEditIncidentComponent, typeof i98.AddFaqComponent, typeof i99.EditFaqComponent], [typeof i100.TableModule, typeof i101.TooltipModule, typeof i102.AccordionModule, typeof i103.AutoCompleteModule, typeof i104.DropdownModule, typeof i105.MultiSelectModule, typeof i106.InputTextModule, typeof i107.NgxDaterangepickerMd, typeof i108.NgxJsonViewerModule, typeof i109.CalendarModule, typeof i110.PlotlyViaCDNModule, typeof i111.CommonModule, typeof i112.UiSwitchModule, typeof i113.SharedComponentsModule, typeof i114.NgxGpAutocompleteModule, typeof i115.CoreTranslocoModule, typeof i116.PipesModule, typeof i117.DirectivesModule, typeof i118.AdminRoutingModule, typeof i119.NgbModule, typeof i120.FormsModule, typeof i120.ReactiveFormsModule, typeof i121.NgxPaginationModule, typeof i122.QuillModule], never>;
126
127
  static ɵinj: i0.ɵɵInjectorDeclaration<AdminModule>;
127
128
  }
@@ -45,6 +45,8 @@ export declare class TermsOfServiceComponent extends AppBaseComponent implements
45
45
  inviteUsers: string;
46
46
  subscriptionList: string;
47
47
  createResource: string;
48
+ createTag: string;
49
+ tags: string;
48
50
  posts: string;
49
51
  resourcesList: string;
50
52
  };
@@ -12,7 +12,7 @@ export declare class GlobalConfigDetailsComponent extends AppBaseComponent imple
12
12
  submitted: boolean;
13
13
  isLoading: boolean;
14
14
  buttonBusy: boolean;
15
- fieldTypes: string[];
15
+ fieldTypes: any[];
16
16
  constructor(adminService: AdminService, injector: Injector);
17
17
  ngOnInit(): void;
18
18
  private getGlobalConfigDetails;
@@ -45,6 +45,8 @@ export declare class GlobalConfigListComponent extends AppBaseComponent implemen
45
45
  inviteUsers: string;
46
46
  subscriptionList: string;
47
47
  createResource: string;
48
+ createTag: string;
49
+ tags: string;
48
50
  posts: string;
49
51
  resourcesList: string;
50
52
  };
@@ -45,6 +45,8 @@ export declare class CredentialsComponent extends AppBaseComponent implements On
45
45
  inviteUsers: string;
46
46
  subscriptionList: string;
47
47
  createResource: string;
48
+ createTag: string;
49
+ tags: string;
48
50
  posts: string;
49
51
  resourcesList: string;
50
52
  };
@@ -46,6 +46,8 @@ export declare class SubscriptionCredentialsComponent extends AppBaseComponent i
46
46
  inviteUsers: string;
47
47
  subscriptionList: string;
48
48
  createResource: string;
49
+ createTag: string;
50
+ tags: string;
49
51
  posts: string;
50
52
  resourcesList: string;
51
53
  };
@@ -1,18 +1,23 @@
1
1
  import { AfterViewInit, Injector, OnInit, QueryList } from '@angular/core';
2
- import { UntypedFormGroup } from '@angular/forms';
2
+ import { FormArray, FormBuilder, FormGroup, UntypedFormGroup } from '@angular/forms';
3
3
  import { AdminService } from '@posiwise/admin-module-utils';
4
4
  import { AppBaseComponent } from '@posiwise/app-base-component';
5
5
  import { ProductService } from '@posiwise/common-services';
6
6
  import { CustomUploaderComponent } from '@posiwise/shared-components';
7
+ import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
7
8
  import { DomainConfig } from '../../../../shared/interface/domain-config.interface';
8
9
  import * as i0 from "@angular/core";
9
10
  export declare class DomainConfigBuildComponent extends AppBaseComponent implements OnInit, AfterViewInit {
10
11
  private readonly adminService;
11
12
  private readonly productService;
13
+ private readonly modalService;
14
+ private readonly fb;
12
15
  uploader: QueryList<CustomUploaderComponent>;
16
+ partnerCropper: any;
13
17
  form: UntypedFormGroup;
14
18
  submitted: boolean;
15
19
  buttonBusy: boolean;
20
+ selectedPartnerIndex: number;
16
21
  id: number;
17
22
  duplicateConfigId: any;
18
23
  subscriptionId: number;
@@ -50,6 +55,8 @@ export declare class DomainConfigBuildComponent extends AppBaseComponent impleme
50
55
  inviteUsers: string;
51
56
  subscriptionList: string;
52
57
  createResource: string;
58
+ createTag: string;
59
+ tags: string;
53
60
  posts: string;
54
61
  resourcesList: string;
55
62
  };
@@ -63,8 +70,45 @@ export declare class DomainConfigBuildComponent extends AppBaseComponent impleme
63
70
  childList: any[];
64
71
  isLoading: boolean;
65
72
  shardUrl: string;
66
- constructor(injector: Injector, adminService: AdminService, productService: ProductService);
73
+ constructor(injector: Injector, adminService: AdminService, productService: ProductService, modalService: NgbModal, fb: FormBuilder);
67
74
  ngOnInit(): void;
75
+ addBookDemoLink(): void;
76
+ get integrations(): FormGroup;
77
+ get integrationsItems(): FormArray;
78
+ addIntegrationItem(): void;
79
+ removeIntegrationItem(index: number): void;
80
+ getQuestionOptions(questionIndex: number): FormArray;
81
+ addContactUsOption(questionIndex: number): void;
82
+ removeContactUsOption(questionIndex: number, optionIndex: number): void;
83
+ removeBookDemoLink(index: number): void;
84
+ get ctas(): FormGroup;
85
+ get ctasItems(): FormArray;
86
+ get contactUs(): FormGroup;
87
+ get contactUsQuestions(): FormArray;
88
+ addContactUsQuestion(): void;
89
+ removeContactUsQuestion(index: number): void;
90
+ addCtasItem(): void;
91
+ removeCtasItem(index: number): void;
92
+ get testimonials(): FormGroup;
93
+ get testimonialsItems(): FormArray;
94
+ openPartnerImageCropper(index: number): void;
95
+ addPartnerItem(): void;
96
+ removePartnerItem(index: number): void;
97
+ get uspsItems(): FormArray;
98
+ addUspItem(): void;
99
+ removeUspItem(index: number): void;
100
+ get videos(): FormGroup;
101
+ get videosItems(): FormArray;
102
+ addVideoItem(): void;
103
+ removeVideoItem(index: number): void;
104
+ addTestimonialItem(): void;
105
+ removeTestimonialItem(index: number): void;
106
+ get headerSubHeadings(): FormArray;
107
+ addHeaderSubHeading(): void;
108
+ removeHeaderSubHeading(index: number): void;
109
+ get partnersItems(): FormArray;
110
+ addPartnerImage(): void;
111
+ removePartnerImage(index: number): void;
68
112
  getAllOptions(): void;
69
113
  ngAfterViewInit(): void;
70
114
  get f(): {
@@ -1,10 +1,10 @@
1
- import { Injector, OnInit } from '@angular/core';
1
+ import { AfterViewInit, Injector, OnInit } from '@angular/core';
2
2
  import { UntypedFormGroup } from '@angular/forms';
3
3
  import { AdminService } from '@posiwise/admin-module-utils';
4
4
  import { AppBaseComponent } from '@posiwise/app-base-component';
5
5
  import { DomainConfig } from '../../../../shared/interface/domain-config.interface';
6
6
  import * as i0 from "@angular/core";
7
- export declare class DomainConfigCoreComponent extends AppBaseComponent implements OnInit {
7
+ export declare class DomainConfigCoreComponent extends AppBaseComponent implements OnInit, AfterViewInit {
8
8
  private readonly adminService;
9
9
  form: UntypedFormGroup;
10
10
  submitted: boolean;
@@ -46,6 +46,8 @@ export declare class DomainConfigCoreComponent extends AppBaseComponent implemen
46
46
  inviteUsers: string;
47
47
  subscriptionList: string;
48
48
  createResource: string;
49
+ createTag: string;
50
+ tags: string;
49
51
  posts: string;
50
52
  resourcesList: string;
51
53
  };
@@ -39,6 +39,8 @@ export declare class DomainConfigDetailsComponent extends AppBaseComponent imple
39
39
  inviteUsers: string;
40
40
  subscriptionList: string;
41
41
  createResource: string;
42
+ createTag: string;
43
+ tags: string;
42
44
  posts: string;
43
45
  resourcesList: string;
44
46
  };
@@ -46,6 +46,8 @@ export declare class DomainConfigIntegrationsComponent extends AppBaseComponent
46
46
  inviteUsers: string;
47
47
  subscriptionList: string;
48
48
  createResource: string;
49
+ createTag: string;
50
+ tags: string;
49
51
  posts: string;
50
52
  resourcesList: string;
51
53
  };
@@ -49,6 +49,8 @@ export declare class DomainConfigInterfaceComponent extends AppBaseComponent imp
49
49
  inviteUsers: string;
50
50
  subscriptionList: string;
51
51
  createResource: string;
52
+ createTag: string;
53
+ tags: string;
52
54
  posts: string;
53
55
  resourcesList: string;
54
56
  };
@@ -46,6 +46,8 @@ export declare class DomainConfigOrganizationComponent extends AppBaseComponent
46
46
  inviteUsers: string;
47
47
  subscriptionList: string;
48
48
  createResource: string;
49
+ createTag: string;
50
+ tags: string;
49
51
  posts: string;
50
52
  resourcesList: string;
51
53
  };
@@ -44,6 +44,8 @@ export declare class DomainConfigSecurityComponent extends AppBaseComponent impl
44
44
  inviteUsers: string;
45
45
  subscriptionList: string;
46
46
  createResource: string;
47
+ createTag: string;
48
+ tags: string;
47
49
  posts: string;
48
50
  resourcesList: string;
49
51
  };
@@ -46,6 +46,8 @@ export declare class DomainConfigSocialComponent extends AppBaseComponent implem
46
46
  inviteUsers: string;
47
47
  subscriptionList: string;
48
48
  createResource: string;
49
+ createTag: string;
50
+ tags: string;
49
51
  posts: string;
50
52
  resourcesList: string;
51
53
  };
@@ -46,6 +46,8 @@ export declare class DomainConfigListComponent extends AppBaseComponent implemen
46
46
  inviteUsers: string;
47
47
  subscriptionList: string;
48
48
  createResource: string;
49
+ createTag: string;
50
+ tags: string;
49
51
  posts: string;
50
52
  resourcesList: string;
51
53
  };
@@ -45,6 +45,8 @@ export declare class AddFaqComponent extends AppBaseComponent implements OnInit,
45
45
  inviteUsers: string;
46
46
  subscriptionList: string;
47
47
  createResource: string;
48
+ createTag: string;
49
+ tags: string;
48
50
  posts: string;
49
51
  resourcesList: string;
50
52
  };
@@ -45,6 +45,8 @@ export declare class EditFaqComponent extends AppBaseComponent implements OnInit
45
45
  inviteUsers: string;
46
46
  subscriptionList: string;
47
47
  createResource: string;
48
+ createTag: string;
49
+ tags: string;
48
50
  posts: string;
49
51
  resourcesList: string;
50
52
  };
@@ -46,6 +46,8 @@ export declare class FaqListComponent extends AppBaseComponent implements OnInit
46
46
  inviteUsers: string;
47
47
  subscriptionList: string;
48
48
  createResource: string;
49
+ createTag: string;
50
+ tags: string;
49
51
  posts: string;
50
52
  resourcesList: string;
51
53
  };
@@ -49,6 +49,8 @@ export declare class FeedbackQuestionsDetailsComponent extends AppBaseComponent
49
49
  inviteUsers: string;
50
50
  subscriptionList: string;
51
51
  createResource: string;
52
+ createTag: string;
53
+ tags: string;
52
54
  posts: string;
53
55
  resourcesList: string;
54
56
  };
@@ -48,6 +48,8 @@ export declare class FeedbackQuestionsListComponent extends AppBaseComponent imp
48
48
  inviteUsers: string;
49
49
  subscriptionList: string;
50
50
  createResource: string;
51
+ createTag: string;
52
+ tags: string;
51
53
  posts: string;
52
54
  resourcesList: string;
53
55
  };
@@ -43,6 +43,8 @@ export declare class AddEditIncidentComponent extends AppBaseComponent implement
43
43
  inviteUsers: string;
44
44
  subscriptionList: string;
45
45
  createResource: string;
46
+ createTag: string;
47
+ tags: string;
46
48
  posts: string;
47
49
  resourcesList: string;
48
50
  };
@@ -39,6 +39,8 @@ export declare class IncidentListComponent extends AppBaseComponent implements O
39
39
  inviteUsers: string;
40
40
  subscriptionList: string;
41
41
  createResource: string;
42
+ createTag: string;
43
+ tags: string;
42
44
  posts: string;
43
45
  resourcesList: string;
44
46
  };
@@ -45,6 +45,8 @@ export declare class LoginNotificationDetailsComponent extends AppBaseComponent
45
45
  inviteUsers: string;
46
46
  subscriptionList: string;
47
47
  createResource: string;
48
+ createTag: string;
49
+ tags: string;
48
50
  posts: string;
49
51
  resourcesList: string;
50
52
  };
@@ -45,6 +45,8 @@ export declare class LoginNotificationsListComponent extends AppBaseComponent im
45
45
  inviteUsers: string;
46
46
  subscriptionList: string;
47
47
  createResource: string;
48
+ createTag: string;
49
+ tags: string;
48
50
  posts: string;
49
51
  resourcesList: string;
50
52
  };
@@ -45,6 +45,8 @@ export declare class MailerDetailsComponent extends AppBaseComponent implements
45
45
  inviteUsers: string;
46
46
  subscriptionList: string;
47
47
  createResource: string;
48
+ createTag: string;
49
+ tags: string;
48
50
  posts: string;
49
51
  resourcesList: string;
50
52
  };
@@ -49,6 +49,8 @@ export declare class MailerListComponent extends AppBaseComponent implements OnI
49
49
  inviteUsers: string;
50
50
  subscriptionList: string;
51
51
  createResource: string;
52
+ createTag: string;
53
+ tags: string;
52
54
  posts: string;
53
55
  resourcesList: string;
54
56
  };
@@ -44,6 +44,8 @@ export declare class NewsletterDetailsComponent extends AppBaseComponent impleme
44
44
  inviteUsers: string;
45
45
  subscriptionList: string;
46
46
  createResource: string;
47
+ createTag: string;
48
+ tags: string;
47
49
  posts: string;
48
50
  resourcesList: string;
49
51
  };
@@ -61,6 +61,8 @@ export declare class NewsletterItemDetailsComponent extends AppBaseComponent imp
61
61
  inviteUsers: string;
62
62
  subscriptionList: string;
63
63
  createResource: string;
64
+ createTag: string;
65
+ tags: string;
64
66
  posts: string;
65
67
  resourcesList: string;
66
68
  };
@@ -40,6 +40,8 @@ export declare class NewsLetterItemViewComponent extends AppBaseComponent implem
40
40
  inviteUsers: string;
41
41
  subscriptionList: string;
42
42
  createResource: string;
43
+ createTag: string;
44
+ tags: string;
43
45
  posts: string;
44
46
  resourcesList: string;
45
47
  };
@@ -59,6 +59,8 @@ export declare class NewslettersItemsComponent extends AppBaseComponent implemen
59
59
  inviteUsers: string;
60
60
  subscriptionList: string;
61
61
  createResource: string;
62
+ createTag: string;
63
+ tags: string;
62
64
  posts: string;
63
65
  resourcesList: string;
64
66
  };
@@ -45,6 +45,8 @@ export declare class NewslettersListComponent extends AppBaseComponent implement
45
45
  inviteUsers: string;
46
46
  subscriptionList: string;
47
47
  createResource: string;
48
+ createTag: string;
49
+ tags: string;
48
50
  posts: string;
49
51
  resourcesList: string;
50
52
  };
@@ -50,6 +50,8 @@ export declare class PermissionsDetailsComponent extends AppBaseComponent implem
50
50
  inviteUsers: string;
51
51
  subscriptionList: string;
52
52
  createResource: string;
53
+ createTag: string;
54
+ tags: string;
53
55
  posts: string;
54
56
  resourcesList: string;
55
57
  };
@@ -45,6 +45,8 @@ export declare class PermissionsListComponent extends AppBaseComponent implement
45
45
  inviteUsers: string;
46
46
  subscriptionList: string;
47
47
  createResource: string;
48
+ createTag: string;
49
+ tags: string;
48
50
  posts: string;
49
51
  resourcesList: string;
50
52
  };
@@ -47,6 +47,8 @@ export declare class RolesListComponent extends AppBaseComponent implements OnIn
47
47
  inviteUsers: string;
48
48
  subscriptionList: string;
49
49
  createResource: string;
50
+ createTag: string;
51
+ tags: string;
50
52
  posts: string;
51
53
  resourcesList: string;
52
54
  };
@@ -50,6 +50,8 @@ export declare class ProductsListComponent extends AppBaseComponent implements O
50
50
  inviteUsers: string;
51
51
  subscriptionList: string;
52
52
  createResource: string;
53
+ createTag: string;
54
+ tags: string;
53
55
  posts: string;
54
56
  resourcesList: string;
55
57
  };