@grapadigital/shared-app-modules 0.0.85 → 0.0.87
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/action.d.ts +2 -1
- package/dist/chuncks/youtube-icon.component.BRqHa946.js +980 -0
- package/dist/components.d.ts +16 -2
- package/dist/components.js +132 -946
- package/dist/constants.d.ts +39 -0
- package/dist/constants.js +32 -5
- package/dist/content.d.ts +2 -1
- package/dist/invoice.d.ts +2 -1
- package/dist/payment.d.ts +2 -1
- package/dist/recruitment.d.ts +2 -1
- package/dist/sale.d.ts +2 -1
- package/dist/utils.d.ts +36 -0
- package/dist/utils.js +35 -20
- package/package.json +9 -9
package/dist/action.d.ts
CHANGED
|
@@ -372,7 +372,7 @@ declare interface ProfileMetric {
|
|
|
372
372
|
|
|
373
373
|
declare interface ProposalInterface {
|
|
374
374
|
businessUnit: "enterprise" | "artistic";
|
|
375
|
-
|
|
375
|
+
origin: "inbound" | "outbound";
|
|
376
376
|
contact: string;
|
|
377
377
|
initialScope: string;
|
|
378
378
|
profile: ProfileInterface;
|
|
@@ -473,6 +473,7 @@ declare interface SaleInterface {
|
|
|
473
473
|
};
|
|
474
474
|
closedAt?: string;
|
|
475
475
|
isDollarNegotiation: boolean;
|
|
476
|
+
type: "new" | "renewal" | "upsell";
|
|
476
477
|
}
|
|
477
478
|
|
|
478
479
|
declare type SalePaymentMethod = "transfer" | "direct" | "debit_note" | "client";
|