Before the premium partners were identified using an object called is_gep. If this object is true then it is considered as Premium partner. Now we have added a new field called partner_type. This will have either global or regional as value.
Make these changes in following places:
Application filter:
- Remove is_gep and add partner_type.
Organisation Filter:
- Remove is_gep and add partner_type.
Opportunity filter:
- Remove is_gep and add partner_type.
Organisation details page: - Remove is_gep and add partner_type.
Organisation Mutation:
- Remove is_gep from updateOrganisation and createOrganisation API.
Added new API endpoint to mark partner type in organisation
- Mutation name - organisation_set_partner_type
- Params - id(Organisation ID), partner_type(Partner type)
- Added permission object called can_update_partner_type in organisation permission.
Added new API endpoint to remove partner type in organisation
- Mutation name - organisation_remove_partner_type
- Params - id(Organisation ID)
- Added permission object called can_remove_partner_type in organisation permission.