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

@seamapi/http

Package Overview
Dependencies
Maintainers
6
Versions
86
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@seamapi/http - npm Package Compare versions

Comparing version 0.18.1 to 0.19.0

4

lib/seam/connect/routes/user-identities-enrollment-automations.d.ts

@@ -16,2 +16,3 @@ import type { RouteRequestBody, RouteResponse } from '@seamapi/types/connect';

updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
delete(body?: UserIdentitiesEnrollmentAutomationsDeleteBody): Promise<void>;
get(body?: UserIdentitiesEnrollmentAutomationsGetParams): Promise<UserIdentitiesEnrollmentAutomationsGetResponse['enrollment_automation']>;

@@ -21,2 +22,5 @@ launch(body?: UserIdentitiesEnrollmentAutomationsLaunchBody): Promise<UserIdentitiesEnrollmentAutomationsLaunchResponse['enrollment_automation']>;

}
export type UserIdentitiesEnrollmentAutomationsDeleteBody = RouteRequestBody<'/user_identities/enrollment_automations/delete'>;
export type UserIdentitiesEnrollmentAutomationsDeleteResponse = SetNonNullable<Required<RouteResponse<'/user_identities/enrollment_automations/delete'>>>;
export type UserIdentitiesEnrollmentAutomationsDeleteOptions = never;
export type UserIdentitiesEnrollmentAutomationsGetParams = RouteRequestBody<'/user_identities/enrollment_automations/get'>;

@@ -23,0 +27,0 @@ export type UserIdentitiesEnrollmentAutomationsGetResponse = SetNonNullable<Required<RouteResponse<'/user_identities/enrollment_automations/get'>>>;

@@ -78,2 +78,9 @@ /*

}
async delete(body) {
await this.client.request({
url: '/user_identities/enrollment_automations/delete',
method: 'post',
data: body,
});
}
async get(body) {

@@ -80,0 +87,0 @@ const { data } = await this.client.request({

@@ -29,2 +29,3 @@ import type { RouteRequestBody, RouteResponse } from '@seamapi/types/connect';

revokeAccessToDevice(body?: UserIdentitiesRevokeAccessToDeviceBody): Promise<void>;
update(body?: UserIdentitiesUpdateBody): Promise<void>;
}

@@ -64,1 +65,4 @@ export type UserIdentitiesAddAcsUserBody = RouteRequestBody<'/user_identities/add_acs_user'>;

export type UserIdentitiesRevokeAccessToDeviceOptions = never;
export type UserIdentitiesUpdateBody = RouteRequestBody<'/user_identities/update'>;
export type UserIdentitiesUpdateResponse = SetNonNullable<Required<RouteResponse<'/user_identities/update'>>>;
export type UserIdentitiesUpdateOptions = never;

@@ -165,3 +165,10 @@ /*

}
async update(body) {
await this.client.request({
url: '/user_identities/update',
method: 'post',
data: body,
});
}
}
//# sourceMappingURL=user-identities.js.map

2

lib/version.d.ts

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

declare const seamapiJavascriptHttpVersion = "0.18.1";
declare const seamapiJavascriptHttpVersion = "0.19.0";
export default seamapiJavascriptHttpVersion;

@@ -1,3 +0,3 @@

const seamapiJavascriptHttpVersion = '0.18.1';
const seamapiJavascriptHttpVersion = '0.19.0';
export default seamapiJavascriptHttpVersion;
//# sourceMappingURL=version.js.map
{
"name": "@seamapi/http",
"version": "0.18.1",
"version": "0.19.0",
"description": "JavaScript HTTP client for the Seam API written in TypeScript.",

@@ -87,3 +87,3 @@ "type": "module",

"peerDependencies": {
"@seamapi/types": "^1.113.2",
"@seamapi/types": "^1.121.0",
"type-fest": "^4.0.0"

@@ -107,3 +107,3 @@ },

"@seamapi/fake-seam-connect": "^1.44.2",
"@seamapi/types": "^1.113.2",
"@seamapi/types": "1.121.0",
"@types/eslint": "^8.44.2",

@@ -110,0 +110,0 @@ "@types/node": "^20.8.10",

@@ -159,2 +159,14 @@ /*

async delete(
body?: UserIdentitiesEnrollmentAutomationsDeleteBody,
): Promise<void> {
await this.client.request<UserIdentitiesEnrollmentAutomationsDeleteResponse>(
{
url: '/user_identities/enrollment_automations/delete',
method: 'post',
data: body,
},
)
}
async get(

@@ -212,2 +224,11 @@ body?: UserIdentitiesEnrollmentAutomationsGetParams,

export type UserIdentitiesEnrollmentAutomationsDeleteBody =
RouteRequestBody<'/user_identities/enrollment_automations/delete'>
export type UserIdentitiesEnrollmentAutomationsDeleteResponse = SetNonNullable<
Required<RouteResponse<'/user_identities/enrollment_automations/delete'>>
>
export type UserIdentitiesEnrollmentAutomationsDeleteOptions = never
export type UserIdentitiesEnrollmentAutomationsGetParams =

@@ -214,0 +235,0 @@ RouteRequestBody<'/user_identities/enrollment_automations/get'>

@@ -284,2 +284,10 @@ /*

}
async update(body?: UserIdentitiesUpdateBody): Promise<void> {
await this.client.request<UserIdentitiesUpdateResponse>({
url: '/user_identities/update',
method: 'post',
data: body,
})
}
}

@@ -383,1 +391,10 @@

export type UserIdentitiesRevokeAccessToDeviceOptions = never
export type UserIdentitiesUpdateBody =
RouteRequestBody<'/user_identities/update'>
export type UserIdentitiesUpdateResponse = SetNonNullable<
Required<RouteResponse<'/user_identities/update'>>
>
export type UserIdentitiesUpdateOptions = never

@@ -1,3 +0,3 @@

const seamapiJavascriptHttpVersion = '0.18.1'
const seamapiJavascriptHttpVersion = '0.19.0'
export default seamapiJavascriptHttpVersion

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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