mirror of
https://github.com/langgenius/dify.git
synced 2026-05-11 23:18:39 +08:00
32 lines
717 B
TypeScript
32 lines
717 B
TypeScript
// This file is auto-generated by @hey-api/openapi-ts
|
|
|
|
import * as z from 'zod'
|
|
|
|
/**
|
|
* PartnerTenantsPayload
|
|
*/
|
|
export const zPartnerTenantsPayload = z.object({
|
|
click_id: z.string(),
|
|
})
|
|
|
|
/**
|
|
* Success
|
|
*/
|
|
export const zGetBillingInvoicesResponse = z.record(z.string(), z.unknown())
|
|
|
|
export const zPutBillingPartnersByPartnerKeyTenantsBody = zPartnerTenantsPayload
|
|
|
|
export const zPutBillingPartnersByPartnerKeyTenantsPath = z.object({
|
|
partner_key: z.string(),
|
|
})
|
|
|
|
/**
|
|
* Tenants synced to partner successfully
|
|
*/
|
|
export const zPutBillingPartnersByPartnerKeyTenantsResponse = z.record(z.string(), z.unknown())
|
|
|
|
/**
|
|
* Success
|
|
*/
|
|
export const zGetBillingSubscriptionResponse = z.record(z.string(), z.unknown())
|