Files
Pa1NarK 64383915bd feat(cypress): add multiple creds and flags support (#6588)
Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
2024-12-03 10:48:29 +00:00

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: {},
},
},
};