New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

celitech-sdk

Package Overview
Dependencies
Maintainers
0
Versions
43
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

celitech-sdk - npm Package Compare versions

Comparing version 1.1.86 to 1.1.87

6

dist/index.d.ts

@@ -7,3 +7,3 @@ import { ZodType, z } from 'zod';

type HttpMethod$1 = 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE';
type HttpMethod$1 = 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE' | 'HEAD';
interface HttpRequest {

@@ -101,3 +101,3 @@ baseUrl: string;

type HttpMethod = 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE';
type HttpMethod = 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE' | 'HEAD';
interface SdkConfig {

@@ -117,3 +117,3 @@ baseUrl?: string;

}
interface HttpResponse<T> {
interface HttpResponse<T = unknown> {
data?: T;

@@ -120,0 +120,0 @@ metadata: HttpMetadata;

{
"name": "celitech-sdk",
"version": "1.1.86",
"version": "1.1.87",
"description": "Welcome to the CELITECH API documentation! Useful links: [Homepage](https://www.celitech.com) | [Support email](mailto:support@celitech.com) | [Blog](https://www.celitech.com/blog/) ",

@@ -12,2 +12,3 @@ "source": "./src/index.ts",

"scripts": {
"test": "tsc --noEmit",
"build": "tsup-node src/index.ts --format cjs,esm --dts --clean",

@@ -33,3 +34,4 @@ "prepublishOnly": "npm run build"

"dependencies": {
"zod": "3.22.0"
"zod": "3.22.0",
"axios": "^1.7.4"
},

@@ -36,0 +38,0 @@ "exports": {

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

# Celitech TypeScript SDK 1.1.86
# Celitech TypeScript SDK 1.1.87

@@ -8,3 +8,3 @@ Welcome to the Celitech SDK documentation. This guide will help you get started with integrating and using the Celitech SDK in your project.

- API version: `1.1.0`
- SDK version: `1.1.86`
- SDK version: `1.1.87`

@@ -22,2 +22,3 @@ ## About the API

- [Setting a Custom Timeout](#setting-a-custom-timeout)
- [Sample Usage](#sample-usage)
- [Services](#services)

@@ -62,2 +63,21 @@ - [Models](#models)

# Sample Usage
Below is a comprehensive example demonstrating how to authenticate and call a simple endpoint:
```ts
import { Celitech } from 'celitech-sdk';
(async () => {
const celitech = new Celitech({
clientId: 'client-id',
clientSecret: 'client-secret',
});
const { data } = await celitech.destinations.listDestinations();
console.log(data);
})();
```
## Services

@@ -64,0 +84,0 @@

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc