abs-auth-rbac-core 0.1.11__py3-none-any.whl → 0.1.12__py3-none-any.whl

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.

Potentially problematic release.


This version of abs-auth-rbac-core might be problematic. Click here for more details.

@@ -117,6 +117,17 @@ class PermissionAction(str, Enum):
117
117
  VIEW_ALL_ANALYTICS="VIEW_ALL_ANALYTICS"
118
118
  VIEW_DEPARTMENT_ANALYTICS="VIEW_DEPARTMENT_ANALYTICS"
119
119
  MANAGE_DEPARTMENT_ROUTING="MANAGE_DEPARTMENT_ROUTING"
120
+ SYNC_EMAILS="SYNC_EMAILS"
121
+ SEND_EMAIL_RESPONSES="SEND_EMAIL_RESPONSES"
122
+ ACCESS_VOICEMAIL_SYSTEM="ACCESS_VOICEMAIL_SYSTEM"
123
+ TRANSCRIBE_VOICEMAILS="TRANSCRIBE_VOICEMAILS"
124
+ CALLBACK_CONSTITUENTS="CALLBACK_CONSTITUENTS"
125
+ SCAN_PHYSICAL_MAIL="SCAN_PHYSICAL_MAIL"
126
+ OCR_DOCUMENT_PROCESSING="OCR_DOCUMENT_PROCESSING"
127
+ HANDLE_PHYSICAL_RESPONSES="HANDLE_PHYSICAL_RESPONSES"
128
+ CONFIGURE_FORMS="CONFIGURE_FORMS"
129
+ VIEW_FORM_SUBMISSIONS="VIEW_FORM_SUBMISSIONS"
130
+ SUBMIT_FORMS="SUBMIT_FORMS"
120
131
 
121
132
 
122
133
 
@@ -1950,6 +1961,102 @@ class PermissionConstants:
1950
1961
  resource=PermissionResource.ENTITY_MANAGER,
1951
1962
  action=PermissionAction.VIEW
1952
1963
  )
1964
+ SYNC_EMAILS = PermissionData(
1965
+ name="Sync Emails",
1966
+ description="Permission to sync emails",
1967
+ module=PermissionModule.EMAIL_PROCESS,
1968
+ resource=PermissionResource.CHANNEL_SPECIFIC_PERMISSIONS,
1969
+ action=PermissionAction.SYNC_EMAILS
1970
+ )
1971
+
1972
+ CONFIGURE_EMAIL_SETTINGS = PermissionData(
1973
+ name="Configure Email Settings",
1974
+ description="Permission to configure email settings",
1975
+ module=PermissionModule.EMAIL_PROCESS,
1976
+ resource=PermissionResource.CHANNEL_SPECIFIC_PERMISSIONS,
1977
+ action=PermissionAction.CONFIGURE_EMAIL_SETTINGS
1978
+ )
1979
+
1980
+ SEND_EMAIL_RESPONSES = PermissionData(
1981
+ name="Send Email Responses",
1982
+ description="Permission to send email responses",
1983
+ module=PermissionModule.EMAIL_PROCESS,
1984
+ resource=PermissionResource.CHANNEL_SPECIFIC_PERMISSIONS,
1985
+ action=PermissionAction.SEND_EMAIL_RESPONSES
1986
+ )
1987
+
1988
+ ACCESS_VOICEMAIL_SYSTEM = PermissionData(
1989
+ name="Access Voicemail System",
1990
+ description="Permission to access voicemail system",
1991
+ module=PermissionModule.EMAIL_PROCESS,
1992
+ resource=PermissionResource.CHANNEL_SPECIFIC_PERMISSIONS,
1993
+ action=PermissionAction.ACCESS_VOICEMAIL_SYSTEM
1994
+ )
1995
+
1996
+ TRANSCRIBE_VOICEMAILS = PermissionData(
1997
+ name="Transcribe Voicemails",
1998
+ description="Permission to transcribe voicemails",
1999
+ module=PermissionModule.EMAIL_PROCESS,
2000
+ resource=PermissionResource.CHANNEL_SPECIFIC_PERMISSIONS,
2001
+ action=PermissionAction.TRANSCRIBE_VOICEMAILS
2002
+ )
2003
+
2004
+ CALLBACK_CONSTITUENTS = PermissionData(
2005
+ name="Callback Constituents",
2006
+ description="Permission to callback constituents",
2007
+ module=PermissionModule.EMAIL_PROCESS,
2008
+ resource=PermissionResource.CHANNEL_SPECIFIC_PERMISSIONS,
2009
+ action=PermissionAction.CALLBACK_CONSTITUENTS
2010
+ )
2011
+
2012
+ SCAN_PHYSICAL_MAIL = PermissionData(
2013
+ name="Scan Physical Mail",
2014
+ description="Permission to scan physical mail",
2015
+ module=PermissionModule.EMAIL_PROCESS,
2016
+ resource=PermissionResource.CHANNEL_SPECIFIC_PERMISSIONS,
2017
+ action=PermissionAction.SCAN_PHYSICAL_MAIL
2018
+ )
2019
+
2020
+ OCR_DOCUMENT_PROCESSING = PermissionData(
2021
+ name="OCR Document Processing",
2022
+ description="Permission to process documents using OCR",
2023
+ module=PermissionModule.EMAIL_PROCESS,
2024
+ resource=PermissionResource.CHANNEL_SPECIFIC_PERMISSIONS,
2025
+ action=PermissionAction.OCR_DOCUMENT_PROCESSING
2026
+ )
2027
+
2028
+ HANDLE_PHYSICAL_RESPONSES = PermissionData(
2029
+ name="Handle Physical Responses",
2030
+ description="Permission to handle physical mail responses",
2031
+ module=PermissionModule.EMAIL_PROCESS,
2032
+ resource=PermissionResource.CHANNEL_SPECIFIC_PERMISSIONS,
2033
+ action=PermissionAction.HANDLE_PHYSICAL_RESPONSES
2034
+ )
2035
+
2036
+ CONFIGURE_FORMS = PermissionData(
2037
+ name="Configure Forms",
2038
+ description="Permission to configure forms",
2039
+ module=PermissionModule.EMAIL_PROCESS,
2040
+ resource=PermissionResource.CHANNEL_SPECIFIC_PERMISSIONS,
2041
+ action=PermissionAction.CONFIGURE_FORMS
2042
+ )
2043
+
2044
+ VIEW_FORM_SUBMISSIONS = PermissionData(
2045
+ name="View Form Submissions",
2046
+ description="Permission to view form submissions",
2047
+ module=PermissionModule.EMAIL_PROCESS,
2048
+ resource=PermissionResource.CHANNEL_SPECIFIC_PERMISSIONS,
2049
+ action=PermissionAction.VIEW_FORM_SUBMISSIONS
2050
+ )
2051
+
2052
+ SUBMIT_FORMS = PermissionData(
2053
+ name="Submit Forms",
2054
+ description="Permission to submit forms",
2055
+ module=PermissionModule.EMAIL_PROCESS,
2056
+ resource=PermissionResource.CHANNEL_SPECIFIC_PERMISSIONS,
2057
+ action=PermissionAction.SUBMIT_FORMS
2058
+ )
2059
+
1953
2060
 
1954
2061
  @classmethod
1955
2062
  def get_all_permissions(cls) -> List[PermissionData]:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: abs-auth-rbac-core
3
- Version: 0.1.11
3
+ Version: 0.1.12
4
4
  Summary: RBAC and Auth core utilities including JWT token management.
5
5
  License: MIT
6
6
  Author: AutoBridgeSystems
@@ -21,7 +21,7 @@ abs_auth_rbac_core/rbac/service.py,sha256=q7-N7n4d0zOKvsZsNFQ_6Isl233AnlDcdEkJet
21
21
  abs_auth_rbac_core/schema/__init__.py,sha256=v9xibJ8Wr9k0u6PEYNK0LCGUJD71SB5vxu9BZG0S7tM,46
22
22
  abs_auth_rbac_core/schema/permission.py,sha256=XvxPU68FY0PFgkF4GR2bSrzNvFB8c8OgY_d0JOJvMc8,203
23
23
  abs_auth_rbac_core/util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
24
- abs_auth_rbac_core/util/permission_constants.py,sha256=yctZhJgOyuRv2hoAG5ADSErKbPdt2t4xd2qBzrfgx54,79394
25
- abs_auth_rbac_core-0.1.11.dist-info/METADATA,sha256=448zjSdZHvzDWZMhl2iJY7BqNKD2bPdCjk2fYJ0g_Sg,6636
26
- abs_auth_rbac_core-0.1.11.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
27
- abs_auth_rbac_core-0.1.11.dist-info/RECORD,,
24
+ abs_auth_rbac_core/util/permission_constants.py,sha256=TCbgDdtcATTXKJHLdd7NHJdjTf0TaQTYZrzpqqNCC8A,83619
25
+ abs_auth_rbac_core-0.1.12.dist-info/METADATA,sha256=uOSZTNGh6mPf8VT0r7fhiiI40-tDlWr9mUtORtP858U,6636
26
+ abs_auth_rbac_core-0.1.12.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
27
+ abs_auth_rbac_core-0.1.12.dist-info/RECORD,,