@pitcher/canvas-ui 2025.12.18-134348-beta → 2025.12.18-222719-beta
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/canvas-ui.js +4 -52
- package/canvas-ui.js.map +1 -1
- package/lib/api/events/events.helpers.d.ts +1 -3
- package/lib/types/sfdc.d.ts +2 -1
- package/package.json +1 -1
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
import { Event, MiniCanvas } from '../../../types/openapi';
|
|
2
2
|
import { SfAccountMini, SfEvent, SfUser } from '../../types/sfdc';
|
|
3
3
|
import { ComputedRef } from 'vue';
|
|
4
|
-
export declare function
|
|
5
|
-
export declare function evaluateIsExecutedCondition(condition: string | undefined, event: any): boolean;
|
|
6
|
-
export declare function getEventColor(_pEvent: Event, sfEvent: SfEvent): string;
|
|
4
|
+
export declare function getEventColor(pEvent: Event, sfEvent: SfEvent): string;
|
|
7
5
|
export declare const minFutureDate: (date?: Date) => Date;
|
|
8
6
|
export declare const minPastDate: (date?: Date) => Date;
|
|
9
7
|
export declare const setDateTime: (date: number | Date) => number;
|
package/lib/types/sfdc.d.ts
CHANGED
|
@@ -59,7 +59,6 @@ export type SfEvent = {
|
|
|
59
59
|
Type?: string;
|
|
60
60
|
EventWhoIds?: string[];
|
|
61
61
|
IsAllDayEvent?: boolean;
|
|
62
|
-
is_executed_condition?: string;
|
|
63
62
|
};
|
|
64
63
|
export type SfEventExtended = SfEvent & {
|
|
65
64
|
contactName?: string;
|
|
@@ -107,6 +106,8 @@ export interface SfContactBasic {
|
|
|
107
106
|
type: string;
|
|
108
107
|
url: string;
|
|
109
108
|
};
|
|
109
|
+
callId?: string;
|
|
110
|
+
PersonAccountId?: string;
|
|
110
111
|
}
|
|
111
112
|
export type EventsSfList = {
|
|
112
113
|
done?: boolean;
|