-
Notifications
You must be signed in to change notification settings - Fork 1
/
proxies.json
53 lines (51 loc) · 1.77 KB
/
proxies.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"$schema": "http://json.schemastore.org/proxies",
"proxies": {
"assets": {
"disabled": false,
"matchCondition": {
"methods": [ "GET", "OPTIONS" ],
"route": "/assets/{*path}"
},
"backendUri": "https://localhost/ServeStaticFile?file={path}",
"responseOverrides": {
"response.headers.Cache-Control": "public,max-age=600"
}
},
"xero-identity-connect-token": {
"matchCondition": {
"methods": [ "POST" ],
"route": "/xero-identity/connect/token"
},
"backendUri": "https://identity.xero.com/connect/token"
},
"xero-api-connect-token": {
"matchCondition": {
"methods": [ "GET" ],
"route": "/xero-api/connections"
},
"backendUri": "https://api.xero.com/connections"
},
"xero-api-payruns": {
"matchCondition": {
"methods": [ "GET" ],
"route": "/xero-api/payroll.xro/1.0/Payruns"
},
"backendUri": "https://api.xero.com/payroll.xro/1.0/Payruns"
},
"xero-api-payrun": {
"matchCondition": {
"methods": [ "GET" ],
"route": "/xero-api/payroll.xro/1.0/Payruns/{payRunId}"
},
"backendUri": "https://api.xero.com/payroll.xro/1.0/Payruns/{payRunId}"
},
"xero-api-payslip": {
"matchCondition": {
"methods": [ "GET" ],
"route": "/xero-api/payroll.xro/1.0/Payslip/{paySlipId}"
},
"backendUri": "https://api.xero.com/payroll.xro/1.0/Payslip/{paySlipId}"
}
}
}