@kumori/aurora-backend-handler 1.1.11 → 1.1.12

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.
@@ -436,6 +436,10 @@ export function handleParametersToGenerateData(
436
436
  * @returns A ServiceSpecForm object with the data of the service.
437
437
  */
438
438
  export function transformServiceToForm(service: Service): ServiceSpecForm {
439
+ console.log(
440
+ "DEBUG - transformServiceToForm (channels)",
441
+ service.serverChannels,
442
+ );
439
443
  return {
440
444
  tenantId: service.tenant,
441
445
  accountId: service.account,
@@ -14,6 +14,7 @@ let pendingLinks = new Map<string, Link[]>();
14
14
  * @param data Service object with the data of the service
15
15
  */
16
16
  export const deployService = async (data: Service, token: string) => {
17
+ console.log("DEBUG - deployService", data);
17
18
  try {
18
19
  const url = new URL(
19
20
  `${environment.apiServer.baseUrl}/api/${environment.apiServer.apiVersion}/tenant/${data.tenant}/service/${data.name}`,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kumori/aurora-backend-handler",
3
- "version": "1.1.11",
3
+ "version": "1.1.12",
4
4
  "description": "backend handler",
5
5
  "main": "backend-handler.ts",
6
6
  "scripts": {