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

@equisoft/equisoft-connect-sdk-typescript

Package Overview
Dependencies
Maintainers
11
Versions
375
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@equisoft/equisoft-connect-sdk-typescript - npm Package Compare versions

Comparing version 11.0.7 to 11.0.8-snapshot.20221221152242

dist/models/UsersUserGroup.d.ts

1

dist/models/index.d.ts

@@ -188,1 +188,2 @@ export * from './AccessRights';

export * from './UsersUser';
export * from './UsersUserGroup';

@@ -202,1 +202,2 @@ "use strict";

__exportStar(require("./UsersUser"), exports);
__exportStar(require("./UsersUserGroup"), exports);

16

dist/models/LegacyProvisioningUserPayload.d.ts

@@ -61,4 +61,3 @@ /**

/**
* User initial password.
* A random password will be set if none is specified and noPassword option is not used.
* DEPRECATED this option does nothing
* @type {string}

@@ -69,5 +68,3 @@ * @memberof LegacyProvisioningUserPayload

/**
* Disable password authentication.
* Accepts true or false.
* Default false
* DEPRECATED this option does nothing
* @type {string}

@@ -78,5 +75,3 @@ * @memberof LegacyProvisioningUserPayload

/**
* The user will be ask to define a new password on the first login
* Accepts true or false.
* Default true
* DEPRECATED this option does nothing
* @type {string}

@@ -87,6 +82,3 @@ * @memberof LegacyProvisioningUserPayload

/**
* Enable Mobile version.
* Deprecated: the mobile is not enabled per user anymore.
* Accepts true or false.
* Default false
* DEPRECATED this option does nothing
* @type {string}

@@ -93,0 +85,0 @@ * @memberof LegacyProvisioningUserPayload

@@ -12,2 +12,3 @@ /**

*/
import type { UsersUserGroup } from './UsersUserGroup';
/**

@@ -32,8 +33,2 @@ *

/**
* The user's eMail address.
* @type {string}
* @memberof UsersUser
*/
email: string;
/**
* The user's first name.

@@ -51,2 +46,8 @@ * @type {string}

/**
* The user's initials.
* @type {string}
* @memberof UsersUser
*/
initials?: string;
/**
* The user's preferred locale.

@@ -58,2 +59,8 @@ * @type {string}

/**
* The user's eMail address.
* @type {string}
* @memberof UsersUser
*/
email: string;
/**
* The user's role.

@@ -64,2 +71,14 @@ * @type {string}

role: string;
/**
* Whether the user can delegate ACL to other users
* @type {boolean}
* @memberof UsersUser
*/
aclDelegationAllowed?: boolean;
/**
* User groups
* @type {Array<UsersUserGroup>}
* @memberof UsersUser
*/
groups?: Array<UsersUserGroup>;
}

@@ -66,0 +85,0 @@ /**

@@ -17,2 +17,4 @@ "use strict";

exports.UsersUserToJSON = exports.UsersUserFromJSONTyped = exports.UsersUserFromJSON = exports.instanceOfUsersUser = void 0;
const runtime_1 = require("../runtime");
const UsersUserGroup_1 = require("./UsersUserGroup");
/**

@@ -25,6 +27,6 @@ * Check if a given object implements the UsersUser interface.

isInstance = isInstance && "displayName" in value;
isInstance = isInstance && "email" in value;
isInstance = isInstance && "firstName" in value;
isInstance = isInstance && "lastName" in value;
isInstance = isInstance && "locale" in value;
isInstance = isInstance && "email" in value;
isInstance = isInstance && "role" in value;

@@ -45,7 +47,10 @@ return isInstance;

'displayName': json['displayName'],
'email': json['email'],
'firstName': json['firstName'],
'lastName': json['lastName'],
'initials': !runtime_1.exists(json, 'initials') ? undefined : json['initials'],
'locale': json['locale'],
'email': json['email'],
'role': json['role'],
'aclDelegationAllowed': !runtime_1.exists(json, 'aclDelegationAllowed') ? undefined : json['aclDelegationAllowed'],
'groups': !runtime_1.exists(json, 'groups') ? undefined : (json['groups'].map(UsersUserGroup_1.UsersUserGroupFromJSON)),
};

@@ -64,9 +69,12 @@ }

'displayName': value.displayName,
'email': value.email,
'firstName': value.firstName,
'lastName': value.lastName,
'initials': value.initials,
'locale': value.locale,
'email': value.email,
'role': value.role,
'aclDelegationAllowed': value.aclDelegationAllowed,
'groups': value.groups === undefined ? undefined : (value.groups.map(UsersUserGroup_1.UsersUserGroupToJSON)),
};
}
exports.UsersUserToJSON = UsersUserToJSON;
{
"name": "@equisoft/equisoft-connect-sdk-typescript",
"version": "11.0.7",
"version": "11.0.8-snapshot.20221221152242",
"description": "OpenAPI client for @equisoft/equisoft-connect-sdk-typescript",

@@ -5,0 +5,0 @@ "author": "OpenAPI-Generator",

@@ -190,1 +190,2 @@ /* tslint:disable */

export * from './UsersUser';
export * from './UsersUserGroup';

@@ -76,4 +76,3 @@ /* tslint:disable */

/**
* User initial password.
* A random password will be set if none is specified and noPassword option is not used.
* DEPRECATED this option does nothing
* @type {string}

@@ -84,5 +83,3 @@ * @memberof LegacyProvisioningUserPayload

/**
* Disable password authentication.
* Accepts true or false.
* Default false
* DEPRECATED this option does nothing
* @type {string}

@@ -93,5 +90,3 @@ * @memberof LegacyProvisioningUserPayload

/**
* The user will be ask to define a new password on the first login
* Accepts true or false.
* Default true
* DEPRECATED this option does nothing
* @type {string}

@@ -102,6 +97,3 @@ * @memberof LegacyProvisioningUserPayload

/**
* Enable Mobile version.
* Deprecated: the mobile is not enabled per user anymore.
* Accepts true or false.
* Default false
* DEPRECATED this option does nothing
* @type {string}

@@ -108,0 +100,0 @@ * @memberof LegacyProvisioningUserPayload

@@ -16,2 +16,9 @@ /* tslint:disable */

import { exists, mapValues } from '../runtime';
import type { UsersUserGroup } from './UsersUserGroup';
import {
UsersUserGroupFromJSON,
UsersUserGroupFromJSONTyped,
UsersUserGroupToJSON,
} from './UsersUserGroup';
/**

@@ -36,8 +43,2 @@ *

/**
* The user's eMail address.
* @type {string}
* @memberof UsersUser
*/
email: string;
/**
* The user's first name.

@@ -55,2 +56,8 @@ * @type {string}

/**
* The user's initials.
* @type {string}
* @memberof UsersUser
*/
initials?: string;
/**
* The user's preferred locale.

@@ -62,2 +69,8 @@ * @type {string}

/**
* The user's eMail address.
* @type {string}
* @memberof UsersUser
*/
email: string;
/**
* The user's role.

@@ -68,2 +81,14 @@ * @type {string}

role: string;
/**
* Whether the user can delegate ACL to other users
* @type {boolean}
* @memberof UsersUser
*/
aclDelegationAllowed?: boolean;
/**
* User groups
* @type {Array<UsersUserGroup>}
* @memberof UsersUser
*/
groups?: Array<UsersUserGroup>;
}

@@ -78,6 +103,6 @@

isInstance = isInstance && "displayName" in value;
isInstance = isInstance && "email" in value;
isInstance = isInstance && "firstName" in value;
isInstance = isInstance && "lastName" in value;
isInstance = isInstance && "locale" in value;
isInstance = isInstance && "email" in value;
isInstance = isInstance && "role" in value;

@@ -100,7 +125,10 @@

'displayName': json['displayName'],
'email': json['email'],
'firstName': json['firstName'],
'lastName': json['lastName'],
'initials': !exists(json, 'initials') ? undefined : json['initials'],
'locale': json['locale'],
'email': json['email'],
'role': json['role'],
'aclDelegationAllowed': !exists(json, 'aclDelegationAllowed') ? undefined : json['aclDelegationAllowed'],
'groups': !exists(json, 'groups') ? undefined : ((json['groups'] as Array<any>).map(UsersUserGroupFromJSON)),
};

@@ -120,9 +148,12 @@ }

'displayName': value.displayName,
'email': value.email,
'firstName': value.firstName,
'lastName': value.lastName,
'initials': value.initials,
'locale': value.locale,
'email': value.email,
'role': value.role,
'aclDelegationAllowed': value.aclDelegationAllowed,
'groups': value.groups === undefined ? undefined : ((value.groups as Array<any>).map(UsersUserGroupToJSON)),
};
}

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