@posiwise/smart-crm 0.0.68 → 0.0.69

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.
@@ -65,6 +65,7 @@ export declare class SmartCrmCompaniesComponent extends AppBaseComponent impleme
65
65
  widgetsDetails: string;
66
66
  };
67
67
  actionNames: any[];
68
+ productFeatureKeys: any[];
68
69
  lastSeenAtTextClass(value?: string | null): string;
69
70
  constructor(crmService: CrmService, commonService: CommonService, logoCacheService: LogoCacheService, injector: Injector, cdr: ChangeDetectorRef);
70
71
  ngOnInit(): void;
@@ -24,6 +24,12 @@ export interface CrmAccount {
24
24
  organisation_size: OrganisationSize;
25
25
  organisation_type: OrganisationType;
26
26
  organisation_industry: OrganisationIndustry;
27
+ subscription_products?: SubscriptionProduct[];
28
+ }
29
+ export interface SubscriptionProduct {
30
+ id: number;
31
+ feature_key: string;
32
+ product_ids?: string | null;
27
33
  }
28
34
  interface OrganisationSize {
29
35
  id: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@posiwise/smart-crm",
3
- "version": "0.0.68",
3
+ "version": "0.0.69",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^19.2.18",
6
6
  "@angular/core": "^19.2.18"