@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.
- package/build/model/service-wizard-answer.d.ts +2 -3
- package/build/model/service-wizard-answer.js +1 -2
- package/build/model/service-wizard-question.d.ts +1 -2
- package/build/model/service-wizard-question.js +1 -2
- package/build/model/service-wizard.d.ts +1 -2
- package/build/model/service-wizard.js +1 -2
- package/package.json +1 -1
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
import { ServiceWizardQuestion } from "./service-wizard-question";
|
|
2
|
-
|
|
3
|
-
export declare class ServiceWizardAnswer extends BusinessObject {
|
|
2
|
+
export declare class ServiceWizardAnswer {
|
|
4
3
|
id: number;
|
|
5
4
|
answer: string;
|
|
6
|
-
goToQuestion
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
5
|
-
class ServiceWizard extends business_object_1.BusinessObject {
|
|
4
|
+
class ServiceWizard {
|
|
6
5
|
}
|
|
7
6
|
exports.ServiceWizard = ServiceWizard;
|