simplelogin-client 0.0.1 → 0.1.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,9 +1,23 @@
1
1
  {
2
2
  "name": "simplelogin-client",
3
- "version": "0.0.1",
4
- "description": "",
3
+ "version": "0.1.6",
4
+ "description": "Zero-dependency TypeScript client for the SimpleLogin.io API",
5
5
  "main": "tscBuild/index.js",
6
6
  "types": "tscBuild/index.d.ts",
7
+ "author": "Kenneth Wussmann",
8
+ "keywords": [
9
+ "simplelogin",
10
+ "api",
11
+ "client",
12
+ "sdk",
13
+ "rest",
14
+ "simplelogin.io"
15
+ ],
16
+ "homepage": "https://github.com/KennethWussmann/simplelogin-client",
17
+ "bugs": {
18
+ "url": "https://github.com/KennethWussmann/simplelogin-client/issues"
19
+ },
20
+ "license": "MIT",
7
21
  "scripts": {
8
22
  "dev": "npm-watch",
9
23
  "test": "jest --passWithNoTests",
@@ -36,9 +50,6 @@
36
50
  "node": "18",
37
51
  "npm": "9"
38
52
  },
39
- "keywords": [],
40
- "author": "",
41
- "license": "MIT",
42
53
  "devDependencies": {
43
54
  "@moia-oss/eslint-prettier-typescript-config": "^0.11.46",
44
55
  "@types/jest": "^29.2.3",
package/tscBuild/index.js CHANGED
@@ -1,45 +1,28 @@
1
- 'use strict';
2
- var __createBinding =
3
- (this && this.__createBinding) ||
4
- (Object.create
5
- ? function (o, m, k, k2) {
6
- if (k2 === undefined) k2 = k;
7
- var desc = Object.getOwnPropertyDescriptor(m, k);
8
- if (!desc || ('get' in desc ? !m.__esModule : desc.writable || desc.configurable)) {
9
- desc = {
10
- enumerable: true,
11
- get: function () {
12
- return m[k];
13
- },
14
- };
15
- }
16
- Object.defineProperty(o, k2, desc);
17
- }
18
- : function (o, m, k, k2) {
19
- if (k2 === undefined) k2 = k;
20
- o[k2] = m[k];
21
- });
22
- var __setModuleDefault =
23
- (this && this.__setModuleDefault) ||
24
- (Object.create
25
- ? function (o, v) {
26
- Object.defineProperty(o, 'default', { enumerable: true, value: v });
27
- }
28
- : function (o, v) {
29
- o['default'] = v;
30
- });
31
- var __importStar =
32
- (this && this.__importStar) ||
33
- function (mod) {
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || function (mod) {
34
19
  if (mod && mod.__esModule) return mod;
35
20
  var result = {};
36
- if (mod != null)
37
- for (var k in mod)
38
- if (k !== 'default' && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
21
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
39
22
  __setModuleDefault(result, mod);
40
23
  return result;
41
- };
42
- Object.defineProperty(exports, '__esModule', { value: true });
24
+ };
25
+ Object.defineProperty(exports, "__esModule", { value: true });
43
26
  exports.SimpleLogin = void 0;
44
- exports.SimpleLogin = __importStar(require('./sdk'));
45
- //# sourceMappingURL=index.js.map
27
+ exports.SimpleLogin = __importStar(require("./sdk"));
28
+ //# sourceMappingURL=index.js.map