@@ -14,31 +14,31 @@ export const sdkMethods: SdkMethod[] = [
1414 clientCallName : 'client.credits.check' ,
1515 fullyQualifiedName : 'credits.check' ,
1616 httpMethod : 'post' ,
17- httpPath : '/credits' ,
17+ httpPath : '/v1/ credits' ,
1818 } ,
1919 {
2020 clientCallName : 'client.logs.create' ,
2121 fullyQualifiedName : 'logs.create' ,
2222 httpMethod : 'post' ,
23- httpPath : '/logs ' ,
23+ httpPath : '/v1/usage ' ,
2424 } ,
2525 {
2626 clientCallName : 'client.logs.getSummary' ,
2727 fullyQualifiedName : 'logs.getSummary' ,
2828 httpMethod : 'post' ,
29- httpPath : '/logs /summary' ,
29+ httpPath : '/v1/usage /summary' ,
3030 } ,
3131 {
3232 clientCallName : 'client.accessToken.create' ,
3333 fullyQualifiedName : 'accessToken.create' ,
3434 httpMethod : 'post' ,
35- httpPath : '/v1/access- token' ,
35+ httpPath : '/v1/token' ,
3636 } ,
3737 {
3838 clientCallName : 'client.verifyToken.verify' ,
3939 fullyQualifiedName : 'verifyToken.verify' ,
4040 httpMethod : 'post' ,
41- httpPath : '/v1/verify- token' ,
41+ httpPath : '/v1/token/verify ' ,
4242 } ,
4343 {
4444 clientCallName : 'client.camsKfintech.parse' ,
@@ -112,6 +112,30 @@ export const sdkMethods: SdkMethod[] = [
112112 httpMethod : 'post' ,
113113 httpPath : '/v4/smart/parse' ,
114114 } ,
115+ {
116+ clientCallName : 'client.inboundEmail.create' ,
117+ fullyQualifiedName : 'inboundEmail.create' ,
118+ httpMethod : 'post' ,
119+ httpPath : '/v4/inbound-email' ,
120+ } ,
121+ {
122+ clientCallName : 'client.inboundEmail.retrieve' ,
123+ fullyQualifiedName : 'inboundEmail.retrieve' ,
124+ httpMethod : 'get' ,
125+ httpPath : '/v4/inbound-email/{inbound_email_id}' ,
126+ } ,
127+ {
128+ clientCallName : 'client.inboundEmail.list' ,
129+ fullyQualifiedName : 'inboundEmail.list' ,
130+ httpMethod : 'get' ,
131+ httpPath : '/v4/inbound-email' ,
132+ } ,
133+ {
134+ clientCallName : 'client.inboundEmail.delete' ,
135+ fullyQualifiedName : 'inboundEmail.delete' ,
136+ httpMethod : 'delete' ,
137+ httpPath : '/v4/inbound-email/{inbound_email_id}' ,
138+ } ,
115139] ;
116140
117141function allowedMethodsForCodeTool ( options : McpOptions | undefined ) : SdkMethod [ ] | undefined {
0 commit comments