@incomy/platform-sdk 0.0.0-b0016897 → 0.0.0-f1543395

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.
@@ -50,3 +50,4 @@ export { EntriesService } from './services/EntriesService';
50
50
  export { GroupsService } from './services/GroupsService';
51
51
  export { GroupWalletsService } from './services/GroupWalletsService';
52
52
  export { TemplatesService } from './services/TemplatesService';
53
+ export { TestService } from './services/TestService';
@@ -10,3 +10,4 @@ export { EntriesService } from './services/EntriesService';
10
10
  export { GroupsService } from './services/GroupsService';
11
11
  export { GroupWalletsService } from './services/GroupWalletsService';
12
12
  export { TemplatesService } from './services/TemplatesService';
13
+ export { TestService } from './services/TestService';
@@ -0,0 +1,8 @@
1
+ import type { CancelablePromise } from '../core/CancelablePromise';
2
+ export declare class TestService {
3
+ /**
4
+ * @returns boolean OK
5
+ * @throws ApiError
6
+ */
7
+ static getTest(): CancelablePromise<boolean>;
8
+ }
@@ -0,0 +1,14 @@
1
+ import { OpenAPI } from '../core/OpenAPI';
2
+ import { request as __request } from '../core/request';
3
+ export class TestService {
4
+ /**
5
+ * @returns boolean OK
6
+ * @throws ApiError
7
+ */
8
+ static getTest() {
9
+ return __request(OpenAPI, {
10
+ method: 'GET',
11
+ url: '/test',
12
+ });
13
+ }
14
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@incomy/platform-sdk",
3
- "version": "0.0.0-b0016897",
3
+ "version": "0.0.0-f1543395",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "files": [