@machhub-dev/sdk-ts 0.0.1 → 0.0.2
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/cjs/index.d.ts +5 -6
- package/dist/cjs/index.js +3 -5
- package/dist/index.d.ts +5 -6
- package/dist/index.js +1 -2
- package/package.json +1 -1
- package/src/index.ts +5 -6
- package/tsconfig.json +3 -1
package/dist/cjs/index.d.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
export { SDK, type SDKConfig } from './sdk-ts';
|
|
2
|
-
export {
|
|
3
|
-
export type {
|
|
4
|
-
export type {
|
|
5
|
-
export type {
|
|
6
|
-
export type { HistorizedData } from './types/tag.models';
|
|
1
|
+
export { SDK, type SDKConfig } from './sdk-ts.js';
|
|
2
|
+
export type { LoginResponse, PermissionResponse, User, Group, Feature, Permission, ActionResponse, Action, Scope } from './types/auth.models.js';
|
|
3
|
+
export type { BaseResponse } from './types/response.models.js';
|
|
4
|
+
export type { RecordID } from './types/recordID.models.js';
|
|
5
|
+
export type { HistorizedData } from './types/tag.models.js';
|
package/dist/cjs/index.js
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
var
|
|
5
|
-
Object.defineProperty(exports, "SDK", { enumerable: true, get: function () { return
|
|
6
|
-
var appConfig_1 = require("./utils/appConfig");
|
|
7
|
-
Object.defineProperty(exports, "getAppConfig", { enumerable: true, get: function () { return appConfig_1.getAppConfig; } });
|
|
3
|
+
exports.SDK = void 0;
|
|
4
|
+
var sdk_ts_js_1 = require("./sdk-ts.js");
|
|
5
|
+
Object.defineProperty(exports, "SDK", { enumerable: true, get: function () { return sdk_ts_js_1.SDK; } });
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
export { SDK, type SDKConfig } from './sdk-ts';
|
|
2
|
-
export {
|
|
3
|
-
export type {
|
|
4
|
-
export type {
|
|
5
|
-
export type {
|
|
6
|
-
export type { HistorizedData } from './types/tag.models';
|
|
1
|
+
export { SDK, type SDKConfig } from './sdk-ts.js';
|
|
2
|
+
export type { LoginResponse, PermissionResponse, User, Group, Feature, Permission, ActionResponse, Action, Scope } from './types/auth.models.js';
|
|
3
|
+
export type { BaseResponse } from './types/response.models.js';
|
|
4
|
+
export type { RecordID } from './types/recordID.models.js';
|
|
5
|
+
export type { HistorizedData } from './types/tag.models.js';
|
package/dist/index.js
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
export { SDK } from './sdk-ts';
|
|
2
|
-
export { getAppConfig } from './utils/appConfig';
|
|
1
|
+
export { SDK } from './sdk-ts.js';
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
export { SDK, type SDKConfig } from './sdk-ts';
|
|
2
|
-
export { getAppConfig } from './utils/appConfig';
|
|
1
|
+
export { SDK, type SDKConfig } from './sdk-ts.js';
|
|
3
2
|
|
|
4
3
|
// Export individual types
|
|
5
|
-
export type { LoginResponse, PermissionResponse, User, Group, Feature, Permission, ActionResponse, Action, Scope } from './types/auth.models';
|
|
6
|
-
export type { BaseResponse } from './types/response.models';
|
|
7
|
-
export type { RecordID } from './types/recordID.models';
|
|
8
|
-
export type { HistorizedData } from './types/tag.models';
|
|
4
|
+
export type { LoginResponse, PermissionResponse, User, Group, Feature, Permission, ActionResponse, Action, Scope } from './types/auth.models.js';
|
|
5
|
+
export type { BaseResponse } from './types/response.models.js';
|
|
6
|
+
export type { RecordID } from './types/recordID.models.js';
|
|
7
|
+
export type { HistorizedData } from './types/tag.models.js';
|
package/tsconfig.json
CHANGED