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

@favid-inc/api

Package Overview
Dependencies
Maintainers
1
Versions
211
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@favid-inc/api - npm Package Compare versions

Comparing version 3.3.9 to 3.3.11

lib/app-artist/action.d.ts

24

lib/app-artist/index.d.ts

@@ -1,22 +0,2 @@

import { ArtistModel } from "../model";
interface Action {
Request: {
url: string;
method: "POST" | "GET" | "PUT" | "DELETE";
query?: any;
data?: any;
};
Response: {
data: any;
};
}
export interface UpdateProfile extends Action {
Request: {
url: "/UpdateProfile";
method: "PUT";
query?: void;
data: ArtistModel;
};
Respose?: ArtistModel;
}
export {};
export * from "./artist";
export * from "./order";
export interface Action {
Request: {
url: string;
method: "POST" | "GET" | "PUT" | "DELETE";
method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
query?: any;

@@ -6,0 +6,0 @@ data?: any;

@@ -1,2 +0,2 @@

import { ArtistModel } from "../model";
import { Artist } from "../model";
import { Action } from "./action";

@@ -9,4 +9,4 @@ export interface FindArtistsGroupingByMainCategory extends Action {

Response: {
[mainCategory: string]: ArtistModel;
[mainCategory: string]: Artist;
};
}
import { ArtistCategory } from "./artist-category";
import { Model } from "./model";
export declare const ARTIST = "Artist";
export interface ArtistModel extends Model {
export interface Artist extends Model {
artisticName?: string;

@@ -6,0 +6,0 @@ biography?: string;

{
"name": "@favid-inc/api",
"version": "3.3.9",
"version": "3.3.11",
"description": "API for Favid Project",

@@ -5,0 +5,0 @@ "homepage": "https://github.com/favid-inc/api#readme",

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