@colijnit/transaction 12.0.5 → 12.1.3
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/app/component/core/base/default-ok-cancel-buttons.component.d.ts +13 -0
- package/app/component/core/base/transaction-base.component.d.ts +48 -0
- package/app/component/{shopping-cart → core}/characteristic-answer/characteristic-answer.component.d.ts +0 -0
- package/app/component/core/directive/template-wrapper.directive.d.ts +13 -0
- package/app/component/{shopping-cart → core}/stock-status-indicator/stock-status-indicator.component.d.ts +0 -0
- package/app/component/core/warehouse/warehouse.component.d.ts +35 -0
- package/app/component/service-order/ione-service-order-module.d.ts +2 -0
- package/app/component/service-order/ione-service-order.component.d.ts +25 -0
- package/app/component/service-order/service-order.component.d.ts +53 -0
- package/app/component/service-order/summary/transaction-article-summary.component.d.ts +17 -0
- package/app/component/service-order/summary/transaction-delivery-summary.component.d.ts +20 -0
- package/app/component/service-order/summary/transaction-order-summary.component.d.ts +16 -0
- package/app/component/service-order/summary/transaction-payment-info.component.d.ts +14 -0
- package/app/component/service-order/summary/transaction-product-contract-summary.component.d.ts +7 -0
- package/app/component/service-order/summary/transaction-product-summary.component.d.ts +15 -0
- package/app/component/service-order/summary/transaction-service-status.component.d.ts +15 -0
- package/app/component/service-order/summary/transaction-service-summary.component.d.ts +15 -0
- package/app/component/service-order/summary/transaction-summary-block.component.d.ts +16 -0
- package/app/component/service-order/transaction-article-text/transaction-article-text.component.d.ts +24 -0
- package/app/component/service-order/transaction-header-block/transaction-header-block.component.d.ts +15 -0
- package/app/component/service-order/transaction-manager/transaction-manager.component.d.ts +63 -0
- package/app/component/service-order/transaction-order-line-view/transaction-order-line-view.component.d.ts +16 -0
- package/app/component/service-order/transaction-order-lines/transaction-order-lines.component.d.ts +25 -0
- package/app/component/service-order/transaction-order-totals/transaction-order-totals.component.d.ts +6 -0
- package/app/component/service-order/transaction-relation/transaction-relation-address.component.d.ts +22 -0
- package/app/component/service-order/transaction-relation/transaction-relation-edit.component.d.ts +29 -0
- package/app/component/service-order/transaction-sidebar/transaction-line-accordion.component.d.ts +11 -0
- package/app/component/service-order/transaction-sidebar/transaction-sidebar-right.component.d.ts +26 -0
- package/app/component/shopping-cart/shopping-cart-manager/shopping-cart-manager.component.d.ts +1 -1
- package/app/service/ione-connector-adapter.service.d.ts +1 -0
- package/app/service/transaction-event.service.d.ts +5 -0
- package/app/service/transaction.service.d.ts +19 -8
- package/bundles/colijnit-transaction.umd.js +2396 -63
- package/bundles/colijnit-transaction.umd.js.map +1 -1
- package/colijnit-transaction.d.ts +26 -2
- package/colijnit-transaction.metadata.json +1 -1
- package/esm2015/app/component/checkout/checkout-overview/checkout-overview.component.js +2 -2
- package/esm2015/app/component/checkout/ione-checkout.module.js +3 -3
- package/esm2015/app/component/common/icon/icon.component.js +2 -1
- package/esm2015/app/component/core/base/default-ok-cancel-buttons.component.js +39 -0
- package/esm2015/app/component/core/base/transaction-base.component.js +146 -0
- package/esm2015/app/component/core/characteristic-answer/characteristic-answer.component.js +100 -0
- package/esm2015/app/component/core/directive/template-wrapper.directive.js +69 -0
- package/esm2015/app/component/{shopping-cart → core}/stock-status-indicator/stock-status-indicator.component.js +1 -1
- package/esm2015/app/component/core/warehouse/warehouse.component.js +133 -0
- package/esm2015/app/component/service-order/ione-service-order-module.js +108 -0
- package/esm2015/app/component/service-order/ione-service-order.component.js +96 -0
- package/esm2015/app/component/service-order/service-order.component.js +195 -0
- package/esm2015/app/component/service-order/summary/transaction-article-summary.component.js +55 -0
- package/esm2015/app/component/service-order/summary/transaction-delivery-summary.component.js +59 -0
- package/esm2015/app/component/service-order/summary/transaction-order-summary.component.js +43 -0
- package/esm2015/app/component/service-order/summary/transaction-payment-info.component.js +35 -0
- package/esm2015/app/component/service-order/summary/transaction-product-contract-summary.component.js +38 -0
- package/esm2015/app/component/service-order/summary/transaction-product-summary.component.js +41 -0
- package/esm2015/app/component/service-order/summary/transaction-service-status.component.js +37 -0
- package/esm2015/app/component/service-order/summary/transaction-service-summary.component.js +38 -0
- package/esm2015/app/component/service-order/summary/transaction-summary-block.component.js +53 -0
- package/esm2015/app/component/service-order/transaction-article-text/transaction-article-text.component.js +194 -0
- package/esm2015/app/component/service-order/transaction-header-block/transaction-header-block.component.js +83 -0
- package/esm2015/app/component/service-order/transaction-manager/transaction-manager.component.js +305 -0
- package/esm2015/app/component/service-order/transaction-order-line-view/transaction-order-line-view.component.js +76 -0
- package/esm2015/app/component/service-order/transaction-order-lines/transaction-order-lines.component.js +71 -0
- package/esm2015/app/component/service-order/transaction-order-totals/transaction-order-totals.component.js +36 -0
- package/esm2015/app/component/service-order/transaction-relation/transaction-relation-address.component.js +116 -0
- package/esm2015/app/component/service-order/transaction-relation/transaction-relation-edit.component.js +225 -0
- package/esm2015/app/component/service-order/transaction-sidebar/transaction-line-accordion.component.js +172 -0
- package/esm2015/app/component/service-order/transaction-sidebar/transaction-sidebar-right.component.js +120 -0
- package/esm2015/app/component/shopping-cart/ione-shopping-cart.module.js +4 -6
- package/esm2015/app/component/shopping-cart/shopping-cart-line/shopping-cart-line.component.js +1 -1
- package/esm2015/app/component/shopping-cart/shopping-cart-manager/shopping-cart-manager.component.js +1 -1
- package/esm2015/app/service/ione-connector-adapter.service.js +24 -6
- package/esm2015/app/service/transaction-event.service.js +4 -1
- package/esm2015/app/service/transaction.service.js +122 -37
- package/esm2015/assets/dictionary/text.properties.js +37 -1
- package/esm2015/colijnit-transaction.js +27 -3
- package/esm2015/public_api.js +3 -1
- package/fesm2015/colijnit-transaction.js +2625 -50
- package/fesm2015/colijnit-transaction.js.map +1 -1
- package/package.json +3 -3
- package/public_api.d.ts +2 -0
- package/esm2015/app/component/shopping-cart/characteristic-answer/characteristic-answer.component.js +0 -99
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@colijnit/transaction",
|
|
3
|
-
"version": "12.
|
|
3
|
+
"version": "12.1.3",
|
|
4
4
|
"private": false,
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"@angular/animations": "^12.2.7",
|
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
"@angular/platform-browser": "^12.2.7",
|
|
15
15
|
"@angular/platform-browser-dynamic": "^12.2.7",
|
|
16
16
|
"@angular/router": "^12.2.7",
|
|
17
|
-
"@colijnit/corecomponents_v12": "12.0.
|
|
18
|
-
"@colijnit/transactionapi": "1.1.
|
|
17
|
+
"@colijnit/corecomponents_v12": "12.0.9",
|
|
18
|
+
"@colijnit/transactionapi": "1.1.7",
|
|
19
19
|
"@syncfusion/ej2-angular-buttons": "~19.3.44",
|
|
20
20
|
"@syncfusion/ej2-angular-calendars": "~19.3.44",
|
|
21
21
|
"@syncfusion/ej2-angular-dropdowns": "~19.3.45",
|
package/public_api.d.ts
CHANGED
|
@@ -2,3 +2,5 @@ export * from "./app/component/checkout/ione-checkout.component";
|
|
|
2
2
|
export * from "./app/component/checkout/ione-checkout.module";
|
|
3
3
|
export * from "./app/component/shopping-cart/ione-shopping-cart.component";
|
|
4
4
|
export * from "./app/component/shopping-cart/ione-shopping-cart.module";
|
|
5
|
+
export * from "./app/component/service-order/ione-service-order.component";
|
|
6
|
+
export * from "./app/component/service-order/ione-service-order-module";
|
package/esm2015/app/component/shopping-cart/characteristic-answer/characteristic-answer.component.js
DELETED
|
@@ -1,99 +0,0 @@
|
|
|
1
|
-
import { __awaiter } from "tslib";
|
|
2
|
-
import { Component, EventEmitter, Input, Output, ViewChild } from "@angular/core";
|
|
3
|
-
import { DictionaryService } from "../../../service/dictionary.service";
|
|
4
|
-
export class CharacteristicAnswerComponent {
|
|
5
|
-
constructor(_dictionaryService) {
|
|
6
|
-
this._dictionaryService = _dictionaryService;
|
|
7
|
-
this.title = "";
|
|
8
|
-
this.question = "";
|
|
9
|
-
this.okClick = new EventEmitter();
|
|
10
|
-
this.characteristics = [];
|
|
11
|
-
this.characteristicsCodes = [];
|
|
12
|
-
this.characteristicsFields = { text: "value", value: "value" };
|
|
13
|
-
}
|
|
14
|
-
get characteristicOptions() {
|
|
15
|
-
return this.characteristics.length > 0;
|
|
16
|
-
}
|
|
17
|
-
ngOnInit() {
|
|
18
|
-
}
|
|
19
|
-
getTranslationWithColon(text) {
|
|
20
|
-
return this._dictionaryService.get(text) + ":";
|
|
21
|
-
}
|
|
22
|
-
open() {
|
|
23
|
-
this.characteristicDialog.open();
|
|
24
|
-
}
|
|
25
|
-
close() {
|
|
26
|
-
this.characteristicDialog.close();
|
|
27
|
-
}
|
|
28
|
-
onCharacteristicOkClick() {
|
|
29
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
30
|
-
this.close();
|
|
31
|
-
this.okClick.emit(this.value);
|
|
32
|
-
});
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
CharacteristicAnswerComponent.decorators = [
|
|
36
|
-
{ type: Component, args: [{
|
|
37
|
-
selector: "characteristic-answer",
|
|
38
|
-
template: `
|
|
39
|
-
<co-dialog
|
|
40
|
-
#characteristic
|
|
41
|
-
[showCloseIcon]="false"
|
|
42
|
-
>
|
|
43
|
-
<ng-container header>
|
|
44
|
-
<div>
|
|
45
|
-
<span class="characteristic-title"
|
|
46
|
-
[textContent]="getTranslationWithColon('ARTICLE')"
|
|
47
|
-
></span>
|
|
48
|
-
<span [textContent]="title"></span>
|
|
49
|
-
</div>
|
|
50
|
-
</ng-container>
|
|
51
|
-
|
|
52
|
-
<ng-container>
|
|
53
|
-
<div>
|
|
54
|
-
<div class="characteristic-header">
|
|
55
|
-
<span class="characteristic-title"
|
|
56
|
-
[textContent]="getTranslationWithColon('CHARACTERISTIC_QUESTION')"
|
|
57
|
-
></span>
|
|
58
|
-
</div>
|
|
59
|
-
<div class="characteristic-header">
|
|
60
|
-
<span [textContent]="question | localize"></span>
|
|
61
|
-
</div>
|
|
62
|
-
<div *ngIf="characteristicOptions" class="npm characteristic-options">
|
|
63
|
-
<co-input-combo-box [(model)]="value"
|
|
64
|
-
[source]="characteristics"
|
|
65
|
-
[fields]="characteristicsFields"
|
|
66
|
-
[placeholder]="'VALUE' | localize"
|
|
67
|
-
[required]="true"
|
|
68
|
-
></co-input-combo-box>
|
|
69
|
-
</div>
|
|
70
|
-
<div *ngIf="!characteristicOptions" class="characteristic-value">
|
|
71
|
-
<co-input-text
|
|
72
|
-
[(model)]="value"
|
|
73
|
-
[placeholder]="'VALUE' | localize "
|
|
74
|
-
required
|
|
75
|
-
></co-input-text>
|
|
76
|
-
</div>
|
|
77
|
-
</div>
|
|
78
|
-
</ng-container>
|
|
79
|
-
|
|
80
|
-
<ng-container footer>
|
|
81
|
-
<div class="flex-center">
|
|
82
|
-
<co-button [label]="'OK' | localize" (click)="onCharacteristicOkClick()"></co-button>
|
|
83
|
-
</div>
|
|
84
|
-
</ng-container>
|
|
85
|
-
</co-dialog>
|
|
86
|
-
`,
|
|
87
|
-
styles: ["html,body{height:100%}body{margin:0;font-family:Roboto,\"Helvetica Neue\",sans-serif}.flex-center{display:flex}.flex-center{flex-direction:row}.flex-center{align-items:center!important;justify-content:center!important}.triangle{border-radius:3px}.full-width{width:100%}.flex-center{margin:10px 0}.characteristic-title{font-weight:bold;font-size:20px;margin-right:10px}.characteristic-value{font-weight:bold;font-size:20px}.characteristic-header{display:flex;justify-content:center}\n"]
|
|
88
|
-
},] }
|
|
89
|
-
];
|
|
90
|
-
CharacteristicAnswerComponent.ctorParameters = () => [
|
|
91
|
-
{ type: DictionaryService }
|
|
92
|
-
];
|
|
93
|
-
CharacteristicAnswerComponent.propDecorators = {
|
|
94
|
-
characteristicDialog: [{ type: ViewChild, args: ["characteristic",] }],
|
|
95
|
-
title: [{ type: Input }],
|
|
96
|
-
question: [{ type: Input }],
|
|
97
|
-
okClick: [{ type: Output }]
|
|
98
|
-
};
|
|
99
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2hhcmFjdGVyaXN0aWMtYW5zd2VyLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3NyYy9hcHAvY29tcG9uZW50L3Nob3BwaW5nLWNhcnQvY2hhcmFjdGVyaXN0aWMtYW5zd2VyL2NoYXJhY3RlcmlzdGljLWFuc3dlci5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBLE9BQU8sRUFBQyxTQUFTLEVBQUUsWUFBWSxFQUFVLEtBQUssRUFBVSxNQUFNLEVBQUUsU0FBUyxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBSWhHLE9BQU8sRUFBQyxpQkFBaUIsRUFBQyxNQUFNLHFDQUFxQyxDQUFDO0FBdUR0RSxNQUFNLE9BQU8sNkJBQTZCO0lBdUJ4QyxZQUNVLGtCQUFxQztRQUFyQyx1QkFBa0IsR0FBbEIsa0JBQWtCLENBQW1CO1FBbkJ4QyxVQUFLLEdBQVcsRUFBRSxDQUFDO1FBR25CLGFBQVEsR0FBVyxFQUFFLENBQUM7UUFHYixZQUFPLEdBQXlCLElBQUksWUFBWSxFQUFVLENBQUM7UUFPcEUsb0JBQWUsR0FBMEMsRUFBRSxDQUFDO1FBRTVELHlCQUFvQixHQUEwQyxFQUFFLENBQUM7UUFDakUsMEJBQXFCLEdBQVcsRUFBRSxJQUFJLEVBQUUsT0FBTyxFQUFFLEtBQUssRUFBRSxPQUFPLEVBQUUsQ0FBQztJQUlyRSxDQUFDO0lBWkwsSUFBVyxxQkFBcUI7UUFDOUIsT0FBTyxJQUFJLENBQUMsZUFBZSxDQUFDLE1BQU0sR0FBRyxDQUFDLENBQUM7SUFDekMsQ0FBQztJQVlELFFBQVE7SUFDUixDQUFDO0lBRU0sdUJBQXVCLENBQUMsSUFBWTtRQUN6QyxPQUFPLElBQUksQ0FBQyxrQkFBa0IsQ0FBQyxHQUFHLENBQUMsSUFBSSxDQUFDLEdBQUcsR0FBRyxDQUFDO0lBQ2pELENBQUM7SUFFTSxJQUFJO1FBQ1QsSUFBSSxDQUFDLG9CQUFvQixDQUFDLElBQUksRUFBRSxDQUFDO0lBQ25DLENBQUM7SUFFTSxLQUFLO1FBQ1YsSUFBSSxDQUFDLG9CQUFvQixDQUFDLEtBQUssRUFBRSxDQUFDO0lBQ3BDLENBQUM7SUFFWSx1QkFBdUI7O1lBQ2xDLElBQUksQ0FBQyxLQUFLLEVBQUUsQ0FBQztZQUNiLElBQUksQ0FBQyxPQUFPLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQztRQUNoQyxDQUFDO0tBQUE7OztZQWxHRixTQUFTLFNBQUM7Z0JBQ1QsUUFBUSxFQUFFLHVCQUF1QjtnQkFDakMsUUFBUSxFQUFFOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7R0FnRFQ7O2FBRUY7OztZQXRETyxpQkFBaUI7OzttQ0F3RHRCLFNBQVMsU0FBQyxnQkFBZ0I7b0JBRzFCLEtBQUs7dUJBR0wsS0FBSztzQkFHTCxNQUFNIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtDb21wb25lbnQsIEV2ZW50RW1pdHRlciwgSW5qZWN0LCBJbnB1dCwgT25Jbml0LCBPdXRwdXQsIFZpZXdDaGlsZH0gZnJvbSBcIkBhbmd1bGFyL2NvcmVcIjtcbmltcG9ydCB7Q29EaWFsb2dDb21wb25lbnR9IGZyb20gXCJAY29saWpuaXQvY29yZWNvbXBvbmVudHNfdjEyXCI7XG5pbXBvcnQge0NvRG9tYWluVmFsdWV9IGZyb20gXCJAY29saWpuaXQvdHJhbnNhY3Rpb25hcGkvYnVpbGQvbW9kZWwvY28tZG9tYWluLXZhbHVlLmJvXCI7XG5pbXBvcnQge1RyYW5zYWN0aW9uTGluZUNoYXJhY3RlcmlzdGljQ2hvaWNlfSBmcm9tIFwiQGNvbGlqbml0L3RyYW5zYWN0aW9uYXBpL2J1aWxkL21vZGVsL3RyYW5zYWN0aW9uTGluZUNoYXJhY3RlcmlzdGljQ2hvaWNlLmJvXCI7XG5pbXBvcnQge0RpY3Rpb25hcnlTZXJ2aWNlfSBmcm9tIFwiLi4vLi4vLi4vc2VydmljZS9kaWN0aW9uYXJ5LnNlcnZpY2VcIjtcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiBcImNoYXJhY3RlcmlzdGljLWFuc3dlclwiLFxuICB0ZW1wbGF0ZTogYFxuICAgIDxjby1kaWFsb2dcbiAgICAgICNjaGFyYWN0ZXJpc3RpY1xuICAgICAgW3Nob3dDbG9zZUljb25dPVwiZmFsc2VcIlxuICAgID5cbiAgICAgIDxuZy1jb250YWluZXIgaGVhZGVyPlxuICAgICAgICA8ZGl2PlxuICAgICAgICAgIDxzcGFuIGNsYXNzPVwiY2hhcmFjdGVyaXN0aWMtdGl0bGVcIlxuICAgICAgICAgICAgICBbdGV4dENvbnRlbnRdPVwiZ2V0VHJhbnNsYXRpb25XaXRoQ29sb24oJ0FSVElDTEUnKVwiXG4gICAgICAgICAgPjwvc3Bhbj5cbiAgICAgICAgICA8c3BhbiBbdGV4dENvbnRlbnRdPVwidGl0bGVcIj48L3NwYW4+XG4gICAgICAgIDwvZGl2PlxuICAgICAgPC9uZy1jb250YWluZXI+XG5cbiAgICAgIDxuZy1jb250YWluZXI+XG4gICAgICAgIDxkaXY+XG4gICAgICAgICAgPGRpdiBjbGFzcz1cImNoYXJhY3RlcmlzdGljLWhlYWRlclwiPlxuICAgICAgICAgIDxzcGFuICBjbGFzcz1cImNoYXJhY3RlcmlzdGljLXRpdGxlXCJcbiAgICAgICAgICAgICAgICAgW3RleHRDb250ZW50XT1cImdldFRyYW5zbGF0aW9uV2l0aENvbG9uKCdDSEFSQUNURVJJU1RJQ19RVUVTVElPTicpXCJcbiAgICAgICAgICA+PC9zcGFuPlxuICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgIDxkaXYgY2xhc3M9XCJjaGFyYWN0ZXJpc3RpYy1oZWFkZXJcIj5cbiAgICAgICAgICAgIDxzcGFuIFt0ZXh0Q29udGVudF09XCJxdWVzdGlvbiB8IGxvY2FsaXplXCI+PC9zcGFuPlxuICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgIDxkaXYgKm5nSWY9XCJjaGFyYWN0ZXJpc3RpY09wdGlvbnNcIiBjbGFzcz1cIm5wbSBjaGFyYWN0ZXJpc3RpYy1vcHRpb25zXCI+XG4gICAgICAgICAgICA8Y28taW5wdXQtY29tYm8tYm94IFsobW9kZWwpXT1cInZhbHVlXCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgW3NvdXJjZV09XCJjaGFyYWN0ZXJpc3RpY3NcIlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBbZmllbGRzXT1cImNoYXJhY3RlcmlzdGljc0ZpZWxkc1wiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFtwbGFjZWhvbGRlcl09XCInVkFMVUUnIHwgbG9jYWxpemVcIlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBbcmVxdWlyZWRdPVwidHJ1ZVwiXG4gICAgICAgICAgICA+PC9jby1pbnB1dC1jb21iby1ib3g+XG4gICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgPGRpdiAqbmdJZj1cIiFjaGFyYWN0ZXJpc3RpY09wdGlvbnNcIiBjbGFzcz1cImNoYXJhY3RlcmlzdGljLXZhbHVlXCI+XG4gICAgICAgICAgICA8Y28taW5wdXQtdGV4dFxuICAgICAgICAgICAgICBbKG1vZGVsKV09XCJ2YWx1ZVwiXG4gICAgICAgICAgICAgIFtwbGFjZWhvbGRlcl09XCInVkFMVUUnIHwgbG9jYWxpemUgXCJcbiAgICAgICAgICAgICAgcmVxdWlyZWRcbiAgICAgICAgICAgID48L2NvLWlucHV0LXRleHQ+XG4gICAgICAgICAgPC9kaXY+XG4gICAgICAgIDwvZGl2PlxuICAgICAgPC9uZy1jb250YWluZXI+XG5cbiAgICAgIDxuZy1jb250YWluZXIgZm9vdGVyPlxuICAgICAgICA8ZGl2IGNsYXNzPVwiZmxleC1jZW50ZXJcIj5cbiAgICAgICAgICA8Y28tYnV0dG9uIFtsYWJlbF09XCInT0snIHwgbG9jYWxpemVcIiAoY2xpY2spPVwib25DaGFyYWN0ZXJpc3RpY09rQ2xpY2soKVwiPjwvY28tYnV0dG9uPlxuICAgICAgICA8L2Rpdj5cbiAgICAgIDwvbmctY29udGFpbmVyPlxuICAgIDwvY28tZGlhbG9nPlxuICBgLFxuICBzdHlsZVVybHM6IFtcIi4vY2hhcmFjdGVyaXN0aWMtYW5zd2VyLmNvbXBvbmVudC5zY3NzXCJdXG59KVxuZXhwb3J0IGNsYXNzIENoYXJhY3RlcmlzdGljQW5zd2VyQ29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0IHtcbiAgQFZpZXdDaGlsZChcImNoYXJhY3RlcmlzdGljXCIpXG4gIHB1YmxpYyBjaGFyYWN0ZXJpc3RpY0RpYWxvZzogQ29EaWFsb2dDb21wb25lbnQ7XG5cbiAgQElucHV0KClcbiAgcHVibGljIHRpdGxlOiBzdHJpbmcgPSBcIlwiO1xuXG4gIEBJbnB1dCgpXG4gIHB1YmxpYyBxdWVzdGlvbjogc3RyaW5nID0gXCJcIjtcblxuICBAT3V0cHV0KClcbiAgcHVibGljIHJlYWRvbmx5IG9rQ2xpY2s6IEV2ZW50RW1pdHRlcjxzdHJpbmc+ID0gbmV3IEV2ZW50RW1pdHRlcjxzdHJpbmc+KCk7XG5cbiAgcHVibGljIGdldCBjaGFyYWN0ZXJpc3RpY09wdGlvbnMoKTogYm9vbGVhbiB7XG4gICAgcmV0dXJuIHRoaXMuY2hhcmFjdGVyaXN0aWNzLmxlbmd0aCA+IDA7XG4gIH1cbiAgcHVibGljIHZhbHVlOiBzdHJpbmc7XG5cbiAgcHVibGljIGNoYXJhY3RlcmlzdGljczogVHJhbnNhY3Rpb25MaW5lQ2hhcmFjdGVyaXN0aWNDaG9pY2VbXSA9IFtdO1xuXG4gIHB1YmxpYyBjaGFyYWN0ZXJpc3RpY3NDb2RlczogVHJhbnNhY3Rpb25MaW5lQ2hhcmFjdGVyaXN0aWNDaG9pY2VbXSA9IFtdO1xuICBwdWJsaWMgY2hhcmFjdGVyaXN0aWNzRmllbGRzOiBPYmplY3QgPSB7IHRleHQ6IFwidmFsdWVcIiwgdmFsdWU6IFwidmFsdWVcIiB9O1xuXG4gIGNvbnN0cnVjdG9yKFxuICAgIHByaXZhdGUgX2RpY3Rpb25hcnlTZXJ2aWNlOiBEaWN0aW9uYXJ5U2VydmljZSxcbiAgKSB7IH1cblxuICBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgfVxuXG4gIHB1YmxpYyBnZXRUcmFuc2xhdGlvbldpdGhDb2xvbih0ZXh0OiBzdHJpbmcpOiBzdHJpbmcge1xuICAgIHJldHVybiB0aGlzLl9kaWN0aW9uYXJ5U2VydmljZS5nZXQodGV4dCkgKyBcIjpcIjtcbiAgfVxuXG4gIHB1YmxpYyBvcGVuKCk6IHZvaWQge1xuICAgIHRoaXMuY2hhcmFjdGVyaXN0aWNEaWFsb2cub3BlbigpO1xuICB9XG5cbiAgcHVibGljIGNsb3NlKCk6IHZvaWQge1xuICAgIHRoaXMuY2hhcmFjdGVyaXN0aWNEaWFsb2cuY2xvc2UoKTtcbiAgfVxuXG4gIHB1YmxpYyBhc3luYyBvbkNoYXJhY3RlcmlzdGljT2tDbGljaygpOiBQcm9taXNlPHZvaWQ+IHtcbiAgICB0aGlzLmNsb3NlKCk7XG4gICAgdGhpcy5va0NsaWNrLmVtaXQodGhpcy52YWx1ZSk7XG4gIH1cbn1cbiJdfQ==
|