mirror of
				https://github.com/juspay/hyperswitch.git
				synced 2025-10-31 18:17:13 +08:00 
			
		
		
		
	 64383915bd
			
		
	
	64383915bd
	
	
	
		
			
			Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
		
			
				
	
	
		
			55 lines
		
	
	
		
			977 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			977 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| export const connectorDetails = {
 | |
|   priorityRouting: {
 | |
|     Request: {
 | |
|       name: "priority routing",
 | |
|       description: "some desc",
 | |
|       algorithm: {
 | |
|         type: "priority",
 | |
|         data: [],
 | |
|       },
 | |
|       profile_id: "{{profile_id}}",
 | |
|     },
 | |
|     Response: {
 | |
|       status: 200,
 | |
|       body: {},
 | |
|     },
 | |
|   },
 | |
|   jwt: {
 | |
|     Request: {},
 | |
|     Response: {
 | |
|       status: 200,
 | |
|       body: {},
 | |
|     },
 | |
|   },
 | |
|   volumeBasedRouting: {
 | |
|     Request: {
 | |
|       name: "volume routing",
 | |
|       description: "some desc",
 | |
|       algorithm: {
 | |
|         type: "volume_split",
 | |
|         data: [],
 | |
|       },
 | |
|       profile_id: "{{profile_id}}",
 | |
|     },
 | |
|     Response: {
 | |
|       status: 200,
 | |
|       body: {},
 | |
|     },
 | |
|   },
 | |
|   ruleBasedRouting: {
 | |
|     Request: {
 | |
|       name: "Rule Based routing",
 | |
|       description: "Rule Based routing",
 | |
|       algorithm: {
 | |
|         type: "advanced",
 | |
|         data: [],
 | |
|       },
 | |
|       profile_id: "{{profile_id}}",
 | |
|     },
 | |
|     Response: {
 | |
|       status: 200,
 | |
|       body: {},
 | |
|     },
 | |
|   },
 | |
| };
 |