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

bizzabo-api

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bizzabo-api - npm Package Compare versions

Comparing version 0.0.9 to 0.0.10

2

dist/api/speakers-client.d.ts

@@ -31,2 +31,4 @@ import { HttpClient } from '../http-client';

upsertSpeaker(eventId: number, speaker: SpeakerPayload): Promise<Speaker>;
getSpeaker(eventId: number, speakerId: number): Promise<any>;
setSpeakerVisibity(eventId: number, speakerId: number, hidden?: boolean): Promise<any>;
}

@@ -106,4 +106,25 @@ "use strict";

};
SpeakersApi.prototype.getSpeaker = function (eventId, speakerId) {
return __awaiter(this, void 0, void 0, function () {
return __generator(this, function (_a) {
switch (_a.label) {
case 0: return [4 /*yield*/, this.instance.get("/events/".concat(eventId, "/speakers/").concat(speakerId))];
case 1: return [2 /*return*/, (_a.sent()).data];
}
});
});
};
SpeakersApi.prototype.setSpeakerVisibity = function (eventId, speakerId, hidden) {
if (hidden === void 0) { hidden = true; }
return __awaiter(this, void 0, void 0, function () {
return __generator(this, function (_a) {
switch (_a.label) {
case 0: return [4 /*yield*/, this.instance.post("/events/".concat(eventId, "/speakers/").concat(speakerId, "/visibility?hidden=").concat(hidden), {})];
case 1: return [2 /*return*/, (_a.sent()).data];
}
});
});
};
return SpeakersApi;
}(http_client_1.HttpClient));
exports.SpeakersApi = SpeakersApi;

2

package.json
{
"name": "bizzabo-api",
"version": "0.0.9",
"version": "0.0.10",
"description": "The Bizzabo API is a Typescript client that allows calling Bizzabo public APIs",

@@ -5,0 +5,0 @@ "author": "Bizzabo",

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