attlaz-client 1.11.4 → 1.11.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.
@@ -1,6 +1,6 @@
1
1
  import { Endpoint } from './Endpoint.js';
2
2
  import { CollectionResult } from '../Model/Result/CollectionResult.js';
3
- import { InboxMessage } from '../Model/Inbox/InboxMessage';
3
+ import { InboxMessage } from '../Model/Inbox/InboxMessage.js';
4
4
  export declare class InboxEndpoint extends Endpoint {
5
5
  getAll(unacknowledgedOnly?: boolean): Promise<CollectionResult<InboxMessage>>;
6
6
  save(message: InboxMessage): Promise<InboxMessage>;
@@ -1,5 +1,5 @@
1
1
  import { Endpoint } from './Endpoint.js';
2
- import { InboxMessage } from '../Model/Inbox/InboxMessage';
2
+ import { InboxMessage } from '../Model/Inbox/InboxMessage.js';
3
3
  export class InboxEndpoint extends Endpoint {
4
4
  async getAll(unacknowledgedOnly = false) {
5
5
  const result = await this.requestCollection('/inbox_messages?unacknowledgedOnly=' + unacknowledgedOnly, InboxMessage.parse);
package/dist/index.d.ts CHANGED
@@ -111,7 +111,7 @@ export { ConfigEndpoint } from './Service/ConfigEndpoint.js';
111
111
  export { PlatformLanguageEndpoint } from './Service/PlatformLanguageEndpoint.js';
112
112
  export { LogEndpoint } from './Service/LogEndpoint.js';
113
113
  export { WorkspaceMemberEndpoint } from './Service/WorkspaceMemberEndpoint.js';
114
- export { InboxEndpoint } from './Service/InboxEndpoint';
114
+ export { InboxEndpoint } from './Service/InboxEndpoint.js';
115
115
  export { PlatformEndpoint } from './Service/PlatformEndpoint.js';
116
116
  export { CodeDeployEndpoint } from './Service/CodeDeployEndpoint.js';
117
117
  export { ProjectEnvironmentEndpoint } from './Service/ProjectEnvironmentEndpoint.js';
package/dist/index.js CHANGED
@@ -112,7 +112,7 @@ export { ConfigEndpoint } from './Service/ConfigEndpoint.js';
112
112
  export { PlatformLanguageEndpoint } from './Service/PlatformLanguageEndpoint.js';
113
113
  export { LogEndpoint } from './Service/LogEndpoint.js';
114
114
  export { WorkspaceMemberEndpoint } from './Service/WorkspaceMemberEndpoint.js';
115
- export { InboxEndpoint } from './Service/InboxEndpoint';
115
+ export { InboxEndpoint } from './Service/InboxEndpoint.js';
116
116
  export { PlatformEndpoint } from './Service/PlatformEndpoint.js';
117
117
  export { CodeDeployEndpoint } from './Service/CodeDeployEndpoint.js';
118
118
  export { ProjectEnvironmentEndpoint } from './Service/ProjectEnvironmentEndpoint.js';
package/dist/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const VERSION = "1.11.0";
1
+ export declare const VERSION = "1.11.5";
package/dist/version.js CHANGED
@@ -1 +1 @@
1
- export const VERSION = "1.11.0";
1
+ export const VERSION = "1.11.5";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "attlaz-client",
3
- "version": "1.11.4",
3
+ "version": "1.11.6",
4
4
  "description": "Javascript Client to access Attlaz API",
5
5
  "types": "./dist/index.d.ts",
6
6
  "main": "./dist/index.js",