@colijnit/transactionapi 254.1.8 → 254.1.9

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,9 +1,8 @@
1
1
  import { ServiceWizardQuestion } from "./service-wizard-question";
2
- import { BusinessObject } from "@colijnit/ioneconnector/build/model/business-object";
3
- export declare class ServiceWizardAnswer extends BusinessObject {
2
+ export declare class ServiceWizardAnswer {
4
3
  id: number;
5
4
  answer: string;
6
- goToQuestion: ServiceWizardQuestion;
5
+ goToQuestion?: ServiceWizardQuestion;
7
6
  causeCode: string;
8
7
  serviceType: string;
9
8
  }
@@ -1,7 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.ServiceWizardAnswer = void 0;
4
- const business_object_1 = require("@colijnit/ioneconnector/build/model/business-object");
5
- class ServiceWizardAnswer extends business_object_1.BusinessObject {
4
+ class ServiceWizardAnswer {
6
5
  }
7
6
  exports.ServiceWizardAnswer = ServiceWizardAnswer;
@@ -1,6 +1,5 @@
1
1
  import { ServiceWizardAnswer } from "./service-wizard-answer";
2
- import { BusinessObject } from "@colijnit/ioneconnector/build/model/business-object";
3
- export declare class ServiceWizardQuestion extends BusinessObject {
2
+ export declare class ServiceWizardQuestion {
4
3
  id: number;
5
4
  question: string;
6
5
  serviceWizardAnswerDTOList: ServiceWizardAnswer[];
@@ -1,7 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.ServiceWizardQuestion = void 0;
4
- const business_object_1 = require("@colijnit/ioneconnector/build/model/business-object");
5
- class ServiceWizardQuestion extends business_object_1.BusinessObject {
4
+ class ServiceWizardQuestion {
6
5
  }
7
6
  exports.ServiceWizardQuestion = ServiceWizardQuestion;
@@ -1,5 +1,4 @@
1
1
  import { ServiceWizardQuestion } from "./service-wizard-question";
2
- import { BusinessObject } from "@colijnit/ioneconnector/build/model/business-object";
3
- export declare class ServiceWizard extends BusinessObject {
2
+ export declare class ServiceWizard {
4
3
  serviceWizardQuestion: ServiceWizardQuestion;
5
4
  }
@@ -1,7 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.ServiceWizard = void 0;
4
- const business_object_1 = require("@colijnit/ioneconnector/build/model/business-object");
5
- class ServiceWizard extends business_object_1.BusinessObject {
4
+ class ServiceWizard {
6
5
  }
7
6
  exports.ServiceWizard = ServiceWizard;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@colijnit/transactionapi",
3
- "version": "254.1.8",
3
+ "version": "254.1.9",
4
4
  "scripts": {
5
5
  "build": "grunt clean && tsc",
6
6
  "browserify": "browserify build/connector.js --s colijn -o dist/out-tsc/bundle.js",