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

skapi-js

Package Overview
Dependencies
Maintainers
0
Versions
703
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

skapi-js - npm Package Compare versions

Comparing version

to
1.0.195

2

dist/skapi.cjs.LICENSE.txt

@@ -219,3 +219,3 @@ /*!

Copyright 2024 broadway Inc.
Copyright 2025 broadway Inc.

@@ -222,0 +222,0 @@ Licensed under the Apache License, Version 2.0 (the "License");

@@ -228,3 +228,3 @@ /*!

Copyright 2024 broadway Inc.
Copyright 2025 broadway Inc.

@@ -231,0 +231,0 @@ Licensed under the Apache License, Version 2.0 (the "License");

import './polyfills/global';
import Skapi from "./main/skapi";
import SkapiError from "./main/error";
export { Skapi, SkapiError };
import * as Types from "./Types";
export { Skapi, SkapiError, Types };
import './polyfills/global';
import Skapi from "./main/skapi";
import SkapiError from "./main/error";
export { Skapi, SkapiError };
import * as Types from "./Types";
export { Skapi, SkapiError, Types };
//# sourceMappingURL=Main.js.map

@@ -38,4 +38,10 @@ export default class SkapiError extends Error {

}
else if (typeof error === 'object' && error?.code && error?.message) {
super((error.message || 'Something went wrong.').trim());
this.name = options?.name || "SKAPI";
this.code = options?.code || 'ERROR';
this.cause = error?.cause;
}
}
}
//# sourceMappingURL=error.js.map

@@ -95,2 +95,11 @@ import { DatabaseResponse, Connection, ProgressCallback, GetRecordQuery, FetchOptions, RecordData, Condition, UserAttributes, UserProfile, Newsletters, Form, PostRecordConfig, PublicUser, UserProfilePublicSettings, FileInfo, DelRecordQuery, RTCCallback, RealtimeCallback, RTCConnectorParams, RTCConnector } from '../Types';

}>, fetchOptions: FetchOptions): Promise<DatabaseResponse<UserProfile>>;
openIdLogin(params: {
token: string;
id: string;
}): Promise<{
userProfile: UserProfile;
openid: {
[attribute: string]: string;
};
}>;
clientSecretRequest(params: {

@@ -97,0 +106,0 @@ url: string;

@@ -16,3 +16,3 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {

import { subscribe, unsubscribe, blockSubscriber, unblockSubscriber, getSubscriptions, subscribeNewsletter, getNewsletters, unsubscribeNewsletter, getNewsletterSubscription, getFeed } from '../methods/subscription';
import { getProfile, logout, recoverAccount, resendSignupConfirmation, authentication, login, signup, disableAccount, resetPassword, verifyEmail, verifyPhoneNumber, forgotPassword, changePassword, updateProfile, getUsers, lastVerifiedEmail, requestUsernameChange, consumeTicket, getConsumedTickets, getTickets, registerTicket, unregisterTicket, jwtLogin, _out, } from '../methods/user';
import { getProfile, logout, recoverAccount, resendSignupConfirmation, authentication, login, signup, disableAccount, resetPassword, verifyEmail, verifyPhoneNumber, forgotPassword, changePassword, updateProfile, getUsers, lastVerifiedEmail, requestUsernameChange, consumeTicket, getConsumedTickets, getTickets, registerTicket, unregisterTicket, jwtLogin, _out, openIdLogin, } from '../methods/user';
import { extractFormData, fromBase62, generateRandom, toBase62, MD5 } from '../utils/utils';

@@ -47,3 +47,3 @@ import { blockAccount, unblockAccount, deleteAccount, inviteUser, createAccount, grantAccess, getInvitations, cancelInvitation, resendInvitation } from '../methods/admin';

constructor(service, owner, options, __etc) {
this.__version = '1.0.194';
this.__version = '1.0.195';
this.session = null;

@@ -353,2 +353,5 @@ this.connection = null;

}
openIdLogin(params) {
return openIdLogin.bind(this)(params);
}
clientSecretRequest(params) {

@@ -521,2 +524,5 @@ return clientSecretRequest.bind(this)(params);

formHandler()
], Skapi.prototype, "openIdLogin", null);
__decorate([
formHandler()
], Skapi.prototype, "clientSecretRequest", null);

@@ -523,0 +529,0 @@ __decorate([

@@ -15,3 +15,3 @@ import SkapiError from '../main/error';

};
validator.Params(params, {
params = validator.Params(params, {
url: (v) => {

@@ -18,0 +18,0 @@ if (!v || typeof v !== 'string') {

@@ -6,2 +6,3 @@ import SkapiError from '../main/error';

import { normalizeRecord } from './database';
import { extractFormData } from '../utils/utils';
export async function getFeed(params, fetchOptions) {

@@ -42,2 +43,3 @@ params = params || {};

export async function getSubscriptions(params, fetchOptions) {
params = extractFormData(params).data;
params = validator.Params(params, {

@@ -50,3 +52,3 @@ subscriber: (v) => validator.UserId(v, 'User ID in "subscriber"'),

}
return validator.Params(params, {
return validator.Params(params.subscription, {
user_id: userider.bind(this),

@@ -201,2 +203,3 @@ group: grouper,

}
params = extractFormData(params).data;
params = params || {

@@ -203,0 +206,0 @@ searchFor: 'timestamp',

@@ -94,4 +94,4 @@ import { CognitoUserAttribute, CognitoUser, CognitoUserSession } from 'amazon-cognito-identity-js';

}) => Promise<CognitoUserSession | Function>;
authenticateUser: (email: string, password: string) => Promise<UserProfile>;
createCognitoUser: (un: string) => {
authenticateUser: (email: string, password: string, raw?: boolean) => Promise<UserProfile>;
createCognitoUser: (un: string, raw?: boolean) => {
cognitoUser: CognitoUser;

@@ -105,2 +105,11 @@ cognitoUsername: string;

}): Promise<UserProfile | null>;
export declare function openIdLogin(params: {
token: string;
id: string;
}): Promise<{
userProfile: UserProfile;
openid: {
[attribute: string]: string;
};
}>;
export declare function checkAdmin(): Promise<boolean>;

@@ -107,0 +116,0 @@ export declare function _out(): void;

@@ -5,3 +5,3 @@ import SkapiError from '../main/error';

import { request } from '../utils/network';
import { MD5, fromBase62, parseUserAttributes } from '../utils/utils';
import { MD5, extractFormData, fromBase62, parseUserAttributes } from '../utils/utils';
let cognitoUser = null;

@@ -178,4 +178,4 @@ function map_ticket_obj(t) {

};
const createCognitoUser = (un) => {
let username = un.includes(this.service + '-') ? un : this.service + '-' + MD5.hash(un);
const createCognitoUser = (un, raw) => {
let username = raw ? un : un.includes(this.service + '-') ? un : this.service + '-' + MD5.hash(un);
return {

@@ -189,7 +189,7 @@ cognitoUser: new CognitoUser({

};
const authenticateUser = (email, password) => {
const authenticateUser = (email, password, raw = false) => {
return new Promise((res, rej) => {
this.__request_signup_confirmation = null;
this.__disabledAccount = null;
let initUser = createCognitoUser(email);
let initUser = createCognitoUser(email, raw);
let username = initUser.cognitoUsername;

@@ -291,2 +291,14 @@ let authenticationDetails = new AuthenticationDetails({

}
export async function openIdLogin(params) {
await this.__connection;
params = validator.Params(params, {
token: 'string',
id: 'string'
});
let oplog = await request.bind(this)("openid-logger", params);
let logger = oplog.logger.split('#');
let username = this.service + '-' + logger[0];
let password = logger[1];
return { userProfile: await authentication.bind(this)().authenticateUser(username, password, true), openid: oplog.openid };
}
export async function checkAdmin() {

@@ -792,2 +804,3 @@ await this.__connection;

export async function getUsers(params, fetchOptions) {
params = extractFormData(params).data;
if (!params) {

@@ -808,11 +821,8 @@ params = {

if (Array.isArray(v)) {
for (let id of v) {
validator.UserId(id);
}
return v;
return v.map(id => validator.UserId(id));
}
return validator.UserId(v);
},
'email': (v) => validator.Email(v),
'phone_number': (v) => validator.PhoneNumber(v),
'email': 'string',
'phone_number': 'string',
'locale': (v) => {

@@ -819,0 +829,0 @@ if (typeof v !== 'string' || typeof v === 'string' && v.length > 5) {

@@ -42,2 +42,3 @@ import SkapiError from '../main/error';

case 'invitation-list':
case 'openid-logger':
case 'grant-access':

@@ -362,7 +363,8 @@ return (auth ? admin.admin_private : admin.admin_public) + dest + query;

let code = (result?.code || (status ? status.toString() : null) || 'ERROR');
let msg = result.message;
if (typeof msg === 'string') {
msg = msg.trim();
let message = result.message;
let cause = result?.cause;
if (typeof message === 'string') {
message = message.trim();
}
rej(new SkapiError(msg, { code: code }));
rej(new SkapiError(message, { cause, code }));
}

@@ -651,2 +653,3 @@ else {

let stored = sessionStorage.getItem(responseKey);
sessionStorage.removeItem(responseKey);
if (stored !== null) {

@@ -653,0 +656,0 @@ try {

{
"name": "skapi-js",
"version": "1.0.194",
"version": "1.0.195",
"description": "Skapi: Backend API for HTML frontend.",

@@ -21,3 +21,3 @@ "main": "js/Main.js",

"build": "npx tsc --project tsconfig.json && npx webpack --config webpack.config.js",
"dev": "npx bns 3300"
"dev": "npx bns 3333"
},

@@ -24,0 +24,0 @@ "repository": {

@@ -19,3 +19,3 @@ # Skapi

- Automated Email Systems
- Realtime Messaging
- Realtime Messaging & Video Chat
- API Bridge for 3rd party API's

@@ -22,0 +22,0 @@ - Hosting

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 too big to display

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

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