Blazor Diffusion

<back to all web services

UpdateCreative

Creatives
Requires Authentication
"use strict";
export class AuditBase {
    /** @param {{createdDate?:string,createdBy?:string,modifiedDate?:string,modifiedBy?:string,deletedDate?:string,deletedBy?:string}} [init] */
    constructor(init) { Object.assign(this, init) }
    /** @type {string} */
    createdDate;
    /** @type {string} */
    createdBy;
    /** @type {string} */
    modifiedDate;
    /** @type {string} */
    modifiedBy;
    /** @type {?string} */
    deletedDate;
    /** @type {string} */
    deletedBy;
}
export class Artist extends AuditBase {
    /** @param {{id?:number,firstName?:string,lastName?:string,yearDied?:number,type?:string[],score?:number,rank?:number,createdDate?:string,createdBy?:string,modifiedDate?:string,modifiedBy?:string,deletedDate?:string,deletedBy?:string}} [init] */
    constructor(init) { super(init); Object.assign(this, init) }
    /** @type {number} */
    id;
    /** @type {?string} */
    firstName;
    /** @type {string} */
    lastName;
    /** @type {?number} */
    yearDied;
    /** @type {?string[]} */
    type;
    /** @type {number} */
    score;
    /** @type {number} */
    rank;
}
export class CreativeArtist {
    /** @param {{id?:number,creativeId?:number,artistId?:number,artist?:Artist}} [init] */
    constructor(init) { Object.assign(this, init) }
    /** @type {number} */
    id;
    /** @type {number} */
    creativeId;
    /** @type {number} */
    artistId;
    /** @type {Artist} */
    artist;
}
export class Modifier extends AuditBase {
    /** @param {{id?:number,name?:string,category?:string,description?:string,score?:number,rank?:number,createdDate?:string,createdBy?:string,modifiedDate?:string,modifiedBy?:string,deletedDate?:string,deletedBy?:string}} [init] */
    constructor(init) { super(init); Object.assign(this, init) }
    /** @type {number} */
    id;
    /** @type {string} */
    name;
    /** @type {string} */
    category;
    /** @type {?string} */
    description;
    /** @type {number} */
    score;
    /** @type {number} */
    rank;
}
export class CreativeModifier {
    /** @param {{id?:number,creativeId?:number,modifierId?:number,modifier?:Modifier}} [init] */
    constructor(init) { Object.assign(this, init) }
    /** @type {number} */
    id;
    /** @type {number} */
    creativeId;
    /** @type {number} */
    modifierId;
    /** @type {Modifier} */
    modifier;
}
export class Artifact extends AuditBase {
    /** @param {{id?:number,creativeId?:number,fileName?:string,filePath?:string,contentType?:string,contentLength?:number,width?:number,height?:number,seed?:number,prompt?:string,nsfw?:boolean,averageHash?:number,perceptualHash?:number,differenceHash?:number,background?:string,lqip?:string,quality?:number,likesCount?:number,albumsCount?:number,downloadsCount?:number,searchCount?:number,temporalScore?:number,score?:number,rank?:number,refId?:string,versions?:{ [index:string]: string; },createdDate?:string,createdBy?:string,modifiedDate?:string,modifiedBy?:string,deletedDate?:string,deletedBy?:string}} [init] */
    constructor(init) { super(init); Object.assign(this, init) }
    /** @type {number} */
    id;
    /** @type {number} */
    creativeId;
    /** @type {string} */
    fileName;
    /** @type {string} */
    filePath;
    /** @type {string} */
    contentType;
    /** @type {number} */
    contentLength;
    /** @type {number} */
    width;
    /** @type {number} */
    height;
    /** @type {number} */
    seed;
    /** @type {string} */
    prompt;
    /** @type {?boolean} */
    nsfw;
    /** @type {?number} */
    averageHash;
    /** @type {?number} */
    perceptualHash;
    /** @type {?number} */
    differenceHash;
    /** @type {?string} */
    background;
    /** @type {?string} */
    lqip;
    /** @type {number} */
    quality;
    /** @type {number} */
    likesCount;
    /** @type {number} */
    albumsCount;
    /** @type {number} */
    downloadsCount;
    /** @type {number} */
    searchCount;
    /** @type {number} */
    temporalScore;
    /** @type {number} */
    score;
    /** @type {number} */
    rank;
    /** @type {string} */
    refId;
    /** @type {{ [index:string]: string; }} */
    versions = {};
}
export class Creative extends AuditBase {
    /** @param {{id?:number,userPrompt?:string,prompt?:string,images?:number,width?:number,height?:number,steps?:number,curatedArtifactId?:number,primaryArtifactId?:number,artistNames?:string[],modifierNames?:string[],artists?:CreativeArtist[],modifiers?:CreativeModifier[],artifacts?:Artifact[],error?:string,ownerId?:number,ownerRef?:string,key?:string,curated?:boolean,rating?:number,private?:boolean,score?:number,rank?:number,refId?:string,requestId?:string,engineId?:string,createdDate?:string,createdBy?:string,modifiedDate?:string,modifiedBy?:string,deletedDate?:string,deletedBy?:string}} [init] */
    constructor(init) { super(init); Object.assign(this, init) }
    /** @type {number} */
    id;
    /** @type {string} */
    userPrompt;
    /** @type {string} */
    prompt;
    /** @type {number} */
    images;
    /** @type {number} */
    width;
    /** @type {number} */
    height;
    /** @type {number} */
    steps;
    /** @type {?number} */
    curatedArtifactId;
    /** @type {?number} */
    primaryArtifactId;
    /** @type {string[]} */
    artistNames = [];
    /** @type {string[]} */
    modifierNames = [];
    /** @type {CreativeArtist[]} */
    artists = [];
    /** @type {CreativeModifier[]} */
    modifiers = [];
    /** @type {Artifact[]} */
    artifacts = [];
    /** @type {?string} */
    error;
    /** @type {?number} */
    ownerId;
    /** @type {?string} */
    ownerRef;
    /** @type {?string} */
    key;
    /** @type {boolean} */
    curated;
    /** @type {?number} */
    rating;
    /** @type {boolean} */
    private;
    /** @type {number} */
    score;
    /** @type {number} */
    rank;
    /** @type {string} */
    refId;
    /** @type {string} */
    requestId;
    /** @type {string} */
    engineId;
}
export class UpdateCreative {
    /** @param {{id?:number,primaryArtifactId?:number,unpinPrimaryArtifact?:boolean}} [init] */
    constructor(init) { Object.assign(this, init) }
    /** @type {number} */
    id;
    /** @type {?number} */
    primaryArtifactId;
    /** @type {?boolean} */
    unpinPrimaryArtifact;
}

JavaScript UpdateCreative DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv

HTTP + JSV

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /jsv/reply/UpdateCreative HTTP/1.1 
Host: blazordiffusion.com 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	id: 0,
	primaryArtifactId: 0,
	unpinPrimaryArtifact: False
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	id: 0,
	userPrompt: String,
	prompt: String,
	images: 0,
	width: 0,
	height: 0,
	steps: 0,
	curatedArtifactId: 0,
	primaryArtifactId: 0,
	artistNames: 
	[
		String
	],
	modifierNames: 
	[
		String
	],
	artists: 
	[
		{
			id: 0,
			creativeId: 0,
			artistId: 0,
			artist: 
			{
				id: 0,
				firstName: String,
				lastName: String,
				yearDied: 0,
				type: 
				[
					String
				],
				score: 0,
				rank: 0,
				createdDate: 0001-01-01,
				createdBy: String,
				modifiedDate: 0001-01-01,
				modifiedBy: String,
				deletedDate: 0001-01-01,
				deletedBy: String
			}
		}
	],
	modifiers: 
	[
		{
			id: 0,
			creativeId: 0,
			modifierId: 0,
			modifier: 
			{
				id: 0,
				name: String,
				category: String,
				description: String,
				score: 0,
				rank: 0,
				createdDate: 0001-01-01,
				createdBy: String,
				modifiedDate: 0001-01-01,
				modifiedBy: String,
				deletedDate: 0001-01-01,
				deletedBy: String
			}
		}
	],
	artifacts: 
	[
		{
			id: 0,
			creativeId: 0,
			fileName: String,
			filePath: String,
			contentType: String,
			contentLength: 0,
			width: 0,
			height: 0,
			seed: 0,
			prompt: String,
			nsfw: False,
			averageHash: 0,
			perceptualHash: 0,
			differenceHash: 0,
			background: String,
			lqip: String,
			quality: 0,
			likesCount: 0,
			albumsCount: 0,
			downloadsCount: 0,
			searchCount: 0,
			temporalScore: 0,
			score: 0,
			rank: 0,
			refId: String,
			versions: 
			{
				String: String
			},
			createdDate: 0001-01-01,
			createdBy: String,
			modifiedDate: 0001-01-01,
			modifiedBy: String,
			deletedDate: 0001-01-01,
			deletedBy: String
		}
	],
	error: String,
	ownerId: 0,
	ownerRef: String,
	key: String,
	curated: False,
	rating: 0,
	private: False,
	score: 0,
	rank: 0,
	refId: String,
	requestId: String,
	engineId: String,
	createdDate: 0001-01-01,
	createdBy: String,
	modifiedDate: 0001-01-01,
	modifiedBy: String,
	deletedDate: 0001-01-01,
	deletedBy: String
}