@vendasta/iam 3.3.1 → 3.4.0
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.
|
@@ -6,6 +6,12 @@ export declare const TitleChoice: {
|
|
|
6
6
|
MARKET_FOR_SMB: string;
|
|
7
7
|
};
|
|
8
8
|
export type TitleChoice = (typeof TitleChoice)[keyof typeof TitleChoice];
|
|
9
|
+
export declare const AccessLevel: {
|
|
10
|
+
NONE: string;
|
|
11
|
+
ALL: string;
|
|
12
|
+
OWNED: string;
|
|
13
|
+
};
|
|
14
|
+
export type AccessLevel = (typeof AccessLevel)[keyof typeof AccessLevel];
|
|
9
15
|
export declare class SalespersonPersona extends NamespacedPersona {
|
|
10
16
|
type: PersonaType;
|
|
11
17
|
emailLower: string;
|
|
@@ -19,6 +25,9 @@ export declare class SalespersonPersona extends NamespacedPersona {
|
|
|
19
25
|
canAccessProposals: boolean;
|
|
20
26
|
canAccessInbox: boolean;
|
|
21
27
|
canAccessLeaderboard: boolean;
|
|
28
|
+
canAccessPricing: boolean;
|
|
29
|
+
ordersAccessScope: AccessLevel;
|
|
30
|
+
opportunitiesAccessScope: AccessLevel;
|
|
22
31
|
phoneNumbers: string[];
|
|
23
32
|
address: string;
|
|
24
33
|
city: string;
|