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.4 to 3.3.5

lib/app-customer/action.d.ts

38

lib/app-customer/index.d.ts

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

import { Artist, Order } from "../model";
export interface Action {
request: {
url: string;
method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
query?: any;
data?: any;
};
response?: {};
}
export interface FindArtistsGroupingByMainCategory extends Action {
request: {
url: "/FindArtistsGroupingByMainCategory";
method: "POST";
query: void;
data: void;
};
response: {
[mainCategory: string]: Artist;
};
}
export interface PlaceOrder extends Action {
request: {
url: "/PlaceOrder";
method: "POST";
query?: void;
data: {
artistId: string;
customerName: string;
instructions: string;
isGift: boolean;
receiverName?: string;
};
};
response: Order;
}
export * from "./artist";
export * from "./order";

@@ -23,5 +23,6 @@ import { Model } from "../model";

export declare enum OrderStatus {
PLACED = "P",
CANCELED = "C",
DECLINED = "D",
FULFILLED = "F"
FULFILLED = "F",
PLACED = "P"
}

@@ -28,0 +29,0 @@ export declare enum OrderPaymentStatus {

@@ -6,5 +6,6 @@ "use strict";

(function (OrderStatus) {
OrderStatus["PLACED"] = "P";
OrderStatus["CANCELED"] = "C";
OrderStatus["DECLINED"] = "D";
OrderStatus["FULFILLED"] = "F";
OrderStatus["PLACED"] = "P";
})(OrderStatus = exports.OrderStatus || (exports.OrderStatus = {}));

@@ -11,0 +12,0 @@ var OrderPaymentStatus;

{
"name": "@favid-inc/api",
"version": "3.3.4",
"version": "3.3.5",
"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