@grapadigital/shared-app-modules 0.0.95 → 0.0.96

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/client.d.ts CHANGED
@@ -53,7 +53,6 @@ declare interface UserInterface {
53
53
  };
54
54
  company?: {
55
55
  legalName?: string;
56
- email?: string;
57
56
  document?: string;
58
57
  bank?: string;
59
58
  agency?: string;
@@ -5,7 +5,6 @@ import { HoverCardProps } from '@radix-ui/react-hover-card';
5
5
  import { JSX } from 'react/jsx-runtime';
6
6
  import * as LabelPrimitive from '@radix-ui/react-label';
7
7
  import { LucideIcon } from 'lucide-react';
8
- import { LucideProps } from 'lucide-react';
9
8
  import * as React_2 from 'react';
10
9
  import { RefAttributes } from 'react';
11
10
 
@@ -229,16 +228,13 @@ declare interface FormalizationInterface {
229
228
  totalInstallments: number;
230
229
  }
231
230
 
232
- export declare function HoverContent({ content, align, asChild, className, openDelay, closeDelay, children, disabled, ...props }: HoverContentProps): JSX.Element;
231
+ export declare function HoverContent({ content, className, openDelay, closeDelay, children, ...props }: HoverContentProps): JSX.Element;
233
232
 
234
233
  declare interface HoverContentProps extends HoverCardProps {
235
234
  content: string | React.ReactNode;
236
- align?: "center" | "start" | "end" | undefined;
237
- asChild?: boolean;
238
235
  className?: string;
239
236
  openDelay?: number;
240
237
  closeDelay?: number;
241
- disabled?: boolean;
242
238
  children: React.ReactNode;
243
239
  }
244
240
 
@@ -289,8 +285,6 @@ declare interface InfluencerSelectInputProps extends Omit<default_2.ComponentPro
289
285
  onValueChange: (sale: InfluencerInterface) => void;
290
286
  }
291
287
 
292
- export declare function InstagramIcon({ size, color, ...props }: LucideProps): JSX.Element;
293
-
294
288
  declare interface InstallmentInfo {
295
289
  number: number;
296
290
  value: number;
@@ -329,8 +323,6 @@ declare interface LabelWithAsteriskProps {
329
323
  asterisk?: boolean;
330
324
  }
331
325
 
332
- export declare function LinkedInIcon({ size, color, ...props }: LucideProps): JSX.Element;
333
-
334
326
  export declare function List({ className, ...props }: React.ComponentProps<"div">): JSX.Element;
335
327
 
336
328
  export declare function ListRow({ label, value, tooltip, highlight, negative, positive, isPercentage, isDate, isText, isInvoiced, hasCopyButton, enableHoverableContent, handleCopy }: ListRowProps): JSX.Element;
@@ -439,7 +431,7 @@ declare interface Participant {
439
431
  value: number;
440
432
  }
441
433
 
442
- declare type ParticipantRole = "origination" | "commercial";
434
+ declare type ParticipantRole = "origination" | "commercial" | "planning" | "curation";
443
435
 
444
436
  declare interface Payment {
445
437
  hasPayment: boolean;
@@ -483,8 +475,6 @@ declare interface Pending {
483
475
  installmentNumber: number;
484
476
  }
485
477
 
486
- export declare function PinterestIcon({ size, color, ...props }: LucideProps): JSX.Element;
487
-
488
478
  declare interface ProfileInterface {
489
479
  _id: string;
490
480
  username: string;
@@ -507,7 +497,7 @@ declare interface ProfileMetric {
507
497
 
508
498
  declare interface ProposalInterface {
509
499
  businessUnit: "enterprise" | "artistic";
510
- origin: "inbound" | "outbound";
500
+ type: "inbound" | "outbound";
511
501
  contact: string;
512
502
  initialScope: string;
513
503
  profile: ProfileInterface;
@@ -608,7 +598,6 @@ declare interface SaleInterface {
608
598
  };
609
599
  closedAt?: string;
610
600
  isDollarNegotiation: boolean;
611
- type: "new" | "renewal" | "upsell";
612
601
  }
613
602
 
614
603
  declare type SalePaymentMethod = "transfer" | "direct" | "debit_note" | "client";
@@ -632,8 +621,6 @@ declare const sizeMap: {
632
621
  declare interface SupplierInterface extends UserInterface {
633
622
  }
634
623
 
635
- export declare function TikTokIcon({ size, color, ...props }: LucideProps): JSX.Element;
636
-
637
624
  declare interface UserInterface {
638
625
  _id?: string;
639
626
  name?: string;
@@ -651,7 +638,6 @@ declare interface UserInterface {
651
638
  };
652
639
  company?: {
653
640
  legalName?: string;
654
- email?: string;
655
641
  document?: string;
656
642
  bank?: string;
657
643
  agency?: string;
@@ -669,6 +655,4 @@ declare interface UserInterface {
669
655
  };
670
656
  }
671
657
 
672
- export declare function YoutubeIcon({ size, color, ...props }: LucideProps): JSX.Element;
673
-
674
658
  export { }