MCPcopy
hub / github.com/cs-lazy-tools/ChatGPT-On-CS / POST

Function POST

src/renderer/common/services/common/api/request.ts:131–137  ·  view source on GitHub ↗
(
  url: string,
  data = {},
  config: ConfigType = {},
)

Source from the content-addressed store, hash-verified

129}
130
131export function POST<T = undefined>(
132 url: string,
133 data = {},
134 config: ConfigType = {},
135): Promise<T> {
136 return request(url, data, config, 'POST');
137}
138
139export function PUT<T = undefined>(
140 url: string,

Callers 15

updatePlatformFunction · 0.90
addReplyKeywordFunction · 0.90
updateReplyKeywordFunction · 0.90
deleteReplyKeywordFunction · 0.90
updateReplyExcelFunction · 0.90
addTransferKeywordFunction · 0.90
updateTransferKeywordFunction · 0.90
deleteTransferKeywordFunction · 0.90
updateTransferExcelFunction · 0.90
addReplaceKeywordFunction · 0.90
updateReplaceKeywordFunction · 0.90
deleteReplaceKeywordFunction · 0.90

Calls 1

requestFunction · 0.85

Tested by

no test coverage detected