@ingram-cloud/sdk 1.12.0 → 1.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/zod/tenant.js +2 -0
- package/package.json +1 -1
- package/ts/zod/tenant.ts +2 -0
package/dist/zod/tenant.js
CHANGED
|
@@ -319,6 +319,8 @@ export const AuthorizeRedirectOut = z
|
|
|
319
319
|
export const HostedToolOut = z
|
|
320
320
|
.object({
|
|
321
321
|
name: z.string(),
|
|
322
|
+
/** What to call it in an interface. `name` is the wire identifier. */
|
|
323
|
+
title: z.string(),
|
|
322
324
|
description: z.string(),
|
|
323
325
|
})
|
|
324
326
|
.meta({ id: "HostedToolOut" });
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ingram-cloud/sdk",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.13.0",
|
|
4
4
|
"description": "Typed wire contract + management-plane client for the Ingram Cloud API: Zod schemas to validate request/response bodies, TypeScript types for the JSON you read back, SSE/webhook event types, and a typed REST client.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"api",
|
package/ts/zod/tenant.ts
CHANGED
|
@@ -366,6 +366,8 @@ export const AuthorizeRedirectOut = z
|
|
|
366
366
|
export const HostedToolOut = z
|
|
367
367
|
.object({
|
|
368
368
|
name: z.string(),
|
|
369
|
+
/** What to call it in an interface. `name` is the wire identifier. */
|
|
370
|
+
title: z.string(),
|
|
369
371
|
description: z.string(),
|
|
370
372
|
})
|
|
371
373
|
.meta({ id: "HostedToolOut" });
|