@temboplus/afloat 0.2.0-beta.1 → 0.2.0-beta.2
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,7 +6,7 @@ export declare const Permissions: {
|
|
|
6
6
|
readonly ViewCurrent: "profile.getCurrent";
|
|
7
7
|
readonly Update: "profile.update";
|
|
8
8
|
};
|
|
9
|
-
readonly
|
|
9
|
+
readonly Beneficiary: {
|
|
10
10
|
readonly View: "contact.findById";
|
|
11
11
|
readonly List: "contact.findAll";
|
|
12
12
|
readonly Create: "contact.create";
|
|
@@ -51,4 +51,4 @@ export declare const Permissions: {
|
|
|
51
51
|
/**
|
|
52
52
|
* Permission Type
|
|
53
53
|
*/
|
|
54
|
-
export type Permission = (typeof Permissions.Profile)[keyof typeof Permissions.Profile] | (typeof Permissions.
|
|
54
|
+
export type Permission = (typeof Permissions.Profile)[keyof typeof Permissions.Profile] | (typeof Permissions.Beneficiary)[keyof typeof Permissions.Beneficiary] | (typeof Permissions.Payment)[keyof typeof Permissions.Payment] | (typeof Permissions.Payout)[keyof typeof Permissions.Payout] | (typeof Permissions.Transfer)[keyof typeof Permissions.Transfer] | (typeof Permissions.TeamManagement)[keyof typeof Permissions.TeamManagement] | (typeof Permissions.Role)[keyof typeof Permissions.Role] | (typeof Permissions.Wallet)[keyof typeof Permissions.Wallet];
|