@zixt/host 0.0.107 → 0.0.108

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.
Files changed (2) hide show
  1. package/dist/index.js +8 -3
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -28,7 +28,7 @@ import { homedir as homedir3 } from "node:os";
28
28
  // package.json
29
29
  var package_default = {
30
30
  name: "@zixt/host",
31
- version: "0.0.107",
31
+ version: "0.0.108",
32
32
  type: "module",
33
33
  exports: {
34
34
  ".": "./src/client.ts",
@@ -14611,7 +14611,7 @@ var ID_PREFIXES = {
14611
14611
  connection: "con",
14612
14612
  /** A reusable entry in the Integration catalog. */
14613
14613
  integrationDefinition: "ind",
14614
- /** A bounded raster logo uploaded for a catalog Integration. */
14614
+ /** A bounded, validated image uploaded for a catalog Integration. */
14615
14615
  integrationLogo: "ilg",
14616
14616
  approval: "apr",
14617
14617
  grant: "grt",
@@ -16240,7 +16240,12 @@ var PublishIntegrationDefinitionRequest = CompileIntegrationDefinitionRequest.ex
16240
16240
  }).strict();
16241
16241
  var PlatformIntegrationAccessResponse = external_exports.object({ allowed: external_exports.boolean(), reason: external_exports.string().max(500).nullable() }).strict();
16242
16242
  var INTEGRATION_LOGO_MAX_BYTES = 512 * 1024;
16243
- var IntegrationLogoMediaType = external_exports.enum(["image/png", "image/jpeg", "image/webp"]);
16243
+ var IntegrationLogoMediaType = external_exports.enum([
16244
+ "image/svg+xml",
16245
+ "image/png",
16246
+ "image/jpeg",
16247
+ "image/webp"
16248
+ ]);
16244
16249
  var UploadIntegrationLogoRequest = external_exports.object({
16245
16250
  name: external_exports.string().min(1).max(200),
16246
16251
  mediaType: IntegrationLogoMediaType,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zixt/host",
3
- "version": "0.0.107",
3
+ "version": "0.0.108",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": "./src/client.ts",