Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@depict-ai/types

Package Overview
Dependencies
Maintainers
4
Versions
98
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@depict-ai/types - npm Package Compare versions

Comparing version 5.4.2 to 5.4.3

28

api/GetListingResponse.d.ts

@@ -16,2 +16,6 @@ /* eslint-disable */

| "look";
export type ContentPosition = "left" | "right" | "center";
export type Type = "video";
export type Url = string;
export type Link = string | null;

@@ -54,2 +58,6 @@ export interface GetListingResponse {

children: ProductListing[];
/**
* List of content blocks to be displayed on the listing page. If none no content blocks should be displayed.
*/
content_blocks: ContentBlock[];
}

@@ -84,1 +92,21 @@ /**

}
export interface ContentBlock {
span_columns: number;
span_rows: number;
position: ContentPosition;
row: number;
content: ImageContent | VideoContent;
[k: string]: unknown;
}
export interface ImageContent {
type?: "image";
url: string;
link: string;
[k: string]: unknown;
}
export interface VideoContent {
type?: Type;
url: Url;
link: Link;
[k: string]: unknown;
}

2

package.json
{
"name": "@depict-ai/types",
"version": "5.4.2",
"version": "5.4.3",
"license": "MIT",

@@ -5,0 +5,0 @@ "description": "Autogenerated types of API responses used across Depict UI packages",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc