@dative-gpi/foundation-shared-services 1.0.167-terminal → 1.0.167-terminalv2

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.
@@ -11,7 +11,7 @@ const TerminalServiceFactory = new ServiceFactory<TerminalApplicationDetailsDTO,
11
11
  factory.addNotify()
12
12
  ));
13
13
 
14
- export const useTerminals = ComposableFactory.getMany(TerminalServiceFactory);
15
- export const useCreateTerminal = ComposableFactory.create(TerminalServiceFactory);
16
- export const useUpdateTerminal = ComposableFactory.update(TerminalServiceFactory);
17
- export const useRemoveTerminal = ComposableFactory.remove(TerminalServiceFactory);
14
+ export const useTerminalApplications = ComposableFactory.getMany(TerminalServiceFactory);
15
+ export const useCreateTerminalApplication = ComposableFactory.create(TerminalServiceFactory);
16
+ export const useUpdateTerminalApplication = ComposableFactory.update(TerminalServiceFactory);
17
+ export const useRemoveTerminalApplication = ComposableFactory.remove(TerminalServiceFactory);
@@ -1,4 +1,4 @@
1
1
  import { GATEWAY_URL } from "./base";
2
2
 
3
3
  export const TERMINAL_APPLICATIONS_URL = () => `${GATEWAY_URL()}/terminal-applications`;
4
- export const TERMINAL_APPLICATION_URL = (terminalId: string) => `${TERMINAL_APPLICATIONS_URL()}/${encodeURIComponent(terminalId)}`;
4
+ export const TERMINAL_APPLICATION_URL = (terminalApplicationId: string) => `${TERMINAL_APPLICATIONS_URL()}/${encodeURIComponent(terminalApplicationId)}`;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@dative-gpi/foundation-shared-services",
3
3
  "sideEffects": false,
4
- "version": "1.0.167-terminal",
4
+ "version": "1.0.167-terminalv2",
5
5
  "description": "",
6
6
  "publishConfig": {
7
7
  "access": "public"
@@ -10,7 +10,7 @@
10
10
  "author": "",
11
11
  "license": "ISC",
12
12
  "dependencies": {
13
- "@dative-gpi/foundation-shared-domain": "1.0.167-terminal"
13
+ "@dative-gpi/foundation-shared-domain": "1.0.167-terminalv2"
14
14
  },
15
15
  "peerDependencies": {
16
16
  "@dative-gpi/bones-ui": "^1.0.0",
@@ -18,5 +18,5 @@
18
18
  "vue": "^3.4.38",
19
19
  "vue-router": "^4.3.0"
20
20
  },
21
- "gitHead": "5e587aa37f9a9956a4240d8dc64ce0878f4e6111"
21
+ "gitHead": "fb3d46495efdfd047f02e72d56a426f746e0a987"
22
22
  }