totalum-api-sdk 2.0.8 → 2.0.9
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/dist/index.d.ts +1 -0
- package/dist/index.js +15 -0
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ import { GoogleService } from './services/GoogleService';
|
|
|
4
4
|
import { FilterService } from './services/FilterService';
|
|
5
5
|
import { FilesService } from './services/FilesService';
|
|
6
6
|
import { CrudService } from './services/CrudService';
|
|
7
|
+
export * from './common/interfaces';
|
|
7
8
|
export declare class TotalumApiSdk {
|
|
8
9
|
private authOptions;
|
|
9
10
|
private _baseUrl;
|
package/dist/index.js
CHANGED
|
@@ -1,4 +1,18 @@
|
|
|
1
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 __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
2
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
17
|
exports.TotalumApiSdk = void 0;
|
|
4
18
|
const OpenaiService_1 = require("./services/OpenaiService");
|
|
@@ -6,6 +20,7 @@ const GoogleService_1 = require("./services/GoogleService");
|
|
|
6
20
|
const FilterService_1 = require("./services/FilterService");
|
|
7
21
|
const FilesService_1 = require("./services/FilesService");
|
|
8
22
|
const CrudService_1 = require("./services/CrudService");
|
|
23
|
+
__exportStar(require("./common/interfaces"), exports);
|
|
9
24
|
class TotalumApiSdk {
|
|
10
25
|
constructor(authOptions) {
|
|
11
26
|
var _a, _b, _c;
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "totalum-api-sdk",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.9",
|
|
4
4
|
"description": "Totalum sdk wraper of totalum api",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
|
-
"types": "dist/index.d.ts",
|
|
6
|
+
"types": "./dist/index.d.ts",
|
|
7
7
|
"files": ["dist"],
|
|
8
8
|
"scripts": {
|
|
9
9
|
"build": "tsc"
|