Leon4gr45's picture
Upload folder using huggingface_hub (part 2)
1477a90 verified
Raw
History Blame Contribute Delete
1.19 kB
// Code generated by @openmeter/typespec-typescript. DO NOT EDIT.
import { z } from 'zod'
import * as schemas from '../schemas.js'
import type { AcceptDateStrings } from '../../lib/wire.js'
import type {
CreateBillingProfileRequestInput,
Profile,
ProfilePagePaginatedResponse,
UpsertBillingProfileRequestInput,
} from '../types.js'
export interface ListBillingProfilesQuery {
/** Determines which page of the collection to retrieve. */
page?: { size?: number; number?: number }
}
export type ListBillingProfilesRequest =
AcceptDateStrings<ListBillingProfilesQuery>
export type ListBillingProfilesResponse = ProfilePagePaginatedResponse
export type CreateBillingProfileRequest =
AcceptDateStrings<CreateBillingProfileRequestInput>
export type CreateBillingProfileResponse = Profile
export type GetBillingProfileRequest = {
id: string
}
export type GetBillingProfileResponse = Profile
export type UpdateBillingProfileRequest = AcceptDateStrings<{
id: string
body: UpsertBillingProfileRequestInput
}>
export type UpdateBillingProfileResponse = Profile
export type DeleteBillingProfileRequest = {
id: string
}
export type DeleteBillingProfileResponse = void