File size: 5,267 Bytes
1477a90 | 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 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 | // Code generated by @openmeter/typespec-typescript. DO NOT EDIT.
import { type Client, http } from '../core.js'
import { type Result, type RequestOptions } from '../lib/types.js'
import { request } from '../lib/request.js'
import { toURLSearchParams } from '../lib/encodings.js'
import { toWire, toPathWire, fromWire, assertValid } from '../lib/wire.js'
import * as schemas from '../models/schemas.js'
import type {
ListAppsRequest,
ListAppsResponse,
GetAppRequest,
GetAppResponse,
ListAppCatalogRequest,
ListAppCatalogResponse,
GetAppCatalogItemRequest,
GetAppCatalogItemResponse,
InstallAppRequest,
InstallAppResponse,
} from '../models/operations/apps.js'
/**
* List apps
*
* List installed apps.
*
* GET /openmeter/apps
*/
export function listApps(
client: Client,
req: ListAppsRequest = {},
options?: RequestOptions,
): Promise<Result<ListAppsResponse>> {
return request(() => {
const query = toWire(
{
page: req.page,
},
schemas.listAppsQueryParams,
)
if (client._options.validate) {
assertValid(schemas.listAppsQueryParamsWire, query)
}
const searchParams = toURLSearchParams(query)
return http(client)
.get('openmeter/apps', { ...options, searchParams })
.json()
.then((data) => {
if (client._options.validate) {
assertValid(schemas.listAppsResponseWire, data)
}
return fromWire(data, schemas.listAppsResponse)
})
})
}
/**
* Get app
*
* Get an installed app.
*
* GET /openmeter/apps/{appId}
*/
export function getApp(
client: Client,
req: GetAppRequest,
options?: RequestOptions,
): Promise<Result<GetAppResponse>> {
return request(() => {
const pathParamsInput = {
appId: req.appId,
}
const pathParams = client._options.validate
? toPathWire(pathParamsInput, schemas.getAppPathParams)
: pathParamsInput
if (client._options.validate) {
assertValid(schemas.getAppPathParamsWire, pathParams)
}
const path = `openmeter/apps/${(() => {
if (pathParams.appId === undefined) {
throw new Error('missing path parameter: appId')
}
return encodeURIComponent(String(pathParams.appId))
})()}`
return http(client)
.get(path, options)
.json()
.then((data) => {
if (client._options.validate) {
assertValid(schemas.getAppResponseWire, data)
}
return fromWire(data, schemas.getAppResponse)
})
})
}
/**
* List app catalog
*
* List available apps.
*
* GET /openmeter/app-catalog
*/
export function listAppCatalog(
client: Client,
req: ListAppCatalogRequest = {},
options?: RequestOptions,
): Promise<Result<ListAppCatalogResponse>> {
return request(() => {
const query = toWire(
{
page: req.page,
},
schemas.listAppCatalogQueryParams,
)
if (client._options.validate) {
assertValid(schemas.listAppCatalogQueryParamsWire, query)
}
const searchParams = toURLSearchParams(query)
return http(client)
.get('openmeter/app-catalog', { ...options, searchParams })
.json()
.then((data) => {
if (client._options.validate) {
assertValid(schemas.listAppCatalogResponseWire, data)
}
return fromWire(data, schemas.listAppCatalogResponse)
})
})
}
/**
* Get app catalog item by type
*
* Get an app catalog item by type.
*
* GET /openmeter/app-catalog/{appType}
*/
export function getAppCatalogItem(
client: Client,
req: GetAppCatalogItemRequest,
options?: RequestOptions,
): Promise<Result<GetAppCatalogItemResponse>> {
return request(() => {
const pathParamsInput = {
appType: req.appType,
}
const pathParams = client._options.validate
? toPathWire(pathParamsInput, schemas.getAppCatalogItemPathParams)
: pathParamsInput
if (client._options.validate) {
assertValid(schemas.getAppCatalogItemPathParamsWire, pathParams)
}
const path = `openmeter/app-catalog/${(() => {
if (pathParams.appType === undefined) {
throw new Error('missing path parameter: appType')
}
return encodeURIComponent(String(pathParams.appType))
})()}`
return http(client)
.get(path, options)
.json()
.then((data) => {
if (client._options.validate) {
assertValid(schemas.getAppCatalogItemResponseWire, data)
}
return fromWire(data, schemas.getAppCatalogItemResponse)
})
})
}
/**
* Install app from the catalog
*
* Install an app from the catalog.
*
* POST /openmeter/app-catalog/install
*/
export function installApp(
client: Client,
req: InstallAppRequest,
options?: RequestOptions,
): Promise<Result<InstallAppResponse>> {
return request(() => {
const body = toWire(req, schemas.installAppBody)
if (client._options.validate) {
assertValid(schemas.installAppBodyWire, body)
}
return http(client)
.post('openmeter/app-catalog/install', { ...options, json: body })
.json()
.then((data) => {
if (client._options.validate) {
assertValid(schemas.installAppResponseWire, data)
}
return fromWire(data, schemas.installAppResponse)
})
})
}
|