Socket
Socket
Sign inDemoInstall

@boulevard/blvd-book-sdk

Package Overview
Dependencies
3
Maintainers
5
Versions
58
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.39 to 2.0.0

12

lib/appointments.d.ts

@@ -58,2 +58,4 @@ import { Node, PlatformClient } from "./platformClient";

appointmentServices: Array<AppointmentService>;
/** Whether or not the client can cancel this appointment */
cancellable: Scalars['Boolean'];
/** Information about the cancellation, if present */

@@ -63,2 +65,6 @@ cancellation: Maybe<AppointmentCancellation>;

cancelled: Scalars["Boolean"];
/** The duration of the appointment for the client */
clientDuration: Scalars['Int'];
/** Whether or not the client can confirm this appointment at this time */
confirmable: Scalars['Boolean'];
/** When the appointment was created (in Etc/UTC) */

@@ -72,4 +78,10 @@ createdAt: Scalars["DateTime"];

id: Scalars["ID"];
/** Whether or not the appointment is a group appointment */
isGroup: Scalars['Boolean'];
/** Whether or not the appointment is recurring */
isRecurring: Scalars['Boolean'];
/** Internal notes on the appointment */
notes: Maybe<Scalars["String"]>;
/** Whether or not the client can reschedule this appointment */
reschedulable: Scalars['Boolean'];
/** Start time for the appointment */

@@ -76,0 +88,0 @@ startAt: Scalars["DateTime"];

2

lib/cart.d.ts

@@ -207,3 +207,3 @@ import { Node, PlatformClient } from "./platformClient";

exp_year: number;
address_postal_code?: string;
address_postal_code: string;
};

@@ -210,0 +210,0 @@ } | {

@@ -7,2 +7,8 @@ import { Node, PlatformClient } from "./platformClient";

address: Graph.Address;
/** Whether or not the location allows booking online */
allowOnlineBooking: Scalars["Boolean"];
/** Whether or not the location allows rescheduling online */
allowOnlineRescheduling: Scalars["Boolean"];
/** The location's arrival instructions */
arrivalInstructions: Scalars["String"];
/** The location's logo */

@@ -9,0 +15,0 @@ avatar: Maybe<Scalars["String"]>;

{
"name": "@boulevard/blvd-book-sdk",
"version": "1.0.39",
"version": "2.0.0",
"description": "A JS client for the Boulevard API",

@@ -58,2 +58,2 @@ "main": "lib/blvd.js",

}
}
}

@@ -97,3 +97,4 @@ [![TypeScript](https://badgen.net/badge/icon/typescript?icon=typescript&label)](https://typescriptlang.org)

exp_month: 1,
exp_year: 2025
exp_year: 2025,
address_postal_code: "90210"
}

@@ -100,0 +101,0 @@ });

@@ -67,2 +67,3 @@ import { Blvd } from "../src/blvd";

const cart = await anon.carts.create();
expect(cart).toBeInstanceOf(Cart);

@@ -211,3 +212,4 @@ let categories = await cart.getAvailableCategories();

exp_month: 1,
exp_year: 2025
exp_year: 2025,
address_postal_code: "90210"
}

@@ -214,0 +216,0 @@ });

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with โšก๏ธ by Socket Inc