@mirantes-micro/foundation-design-system 1.1.91 → 1.1.93

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/dist/index.d.ts CHANGED
@@ -424,6 +424,20 @@ declare const clearSettingsCookie: (cookieName: string, options: {
424
424
  }) => void;
425
425
  declare const useLoadSettings: () => Settings | null;
426
426
 
427
+ interface IFollowerUser {
428
+ id?: string;
429
+ name?: string;
430
+ avatar?: string;
431
+ }
432
+ interface IFollowerPage {
433
+ id?: string;
434
+ name?: string;
435
+ logo?: string;
436
+ }
437
+ interface IFollowers {
438
+ page?: IFollowerPage[];
439
+ user?: IFollowerUser[];
440
+ }
427
441
  interface IPage {
428
442
  id?: string;
429
443
  name?: string;
@@ -445,6 +459,8 @@ interface IPage {
445
459
  address?: string;
446
460
  };
447
461
  phoneNumber?: string;
462
+ followers?: IFollowers;
463
+ followersCount?: number;
448
464
  }
449
465
 
450
466
  declare const useApiGetPage: (slug?: string) => {