@valtimo/swagger 4.15.2-next-main.14 → 4.15.3-next-main.15
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/bundles/valtimo-swagger.umd.js +138 -138
- package/esm2015/lib/swagger-routing.module.js +42 -42
- package/esm2015/lib/swagger.component.js +60 -60
- package/esm2015/lib/swagger.module.js +31 -31
- package/esm2015/public_api.js +20 -20
- package/esm2015/valtimo-swagger.js +5 -5
- package/fesm2015/valtimo-swagger.js +130 -130
- package/lib/swagger-routing.module.d.ts +2 -2
- package/lib/swagger.component.d.ts +13 -13
- package/lib/swagger.module.d.ts +2 -2
- package/package.json +1 -1
- package/public_api.d.ts +2 -2
- package/valtimo-swagger.d.ts +5 -5
|
@@ -6,152 +6,152 @@
|
|
|
6
6
|
|
|
7
7
|
SwaggerUI = SwaggerUI && Object.prototype.hasOwnProperty.call(SwaggerUI, 'default') ? SwaggerUI['default'] : SwaggerUI;
|
|
8
8
|
|
|
9
|
-
/*
|
|
10
|
-
* Copyright 2015-2020 Ritense BV, the Netherlands.
|
|
11
|
-
*
|
|
12
|
-
* Licensed under EUPL, Version 1.2 (the "License");
|
|
13
|
-
* you may not use this file except in compliance with the License.
|
|
14
|
-
* You may obtain a copy of the License at
|
|
15
|
-
*
|
|
16
|
-
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
17
|
-
*
|
|
18
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
19
|
-
* distributed under the License is distributed on an "AS IS" basis,
|
|
20
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
21
|
-
* See the License for the specific language governing permissions and
|
|
22
|
-
* limitations under the License.
|
|
23
|
-
*/
|
|
24
|
-
var SwaggerComponent = /** @class */ (function () {
|
|
25
|
-
function SwaggerComponent(configService, el, userProviderService, logger) {
|
|
26
|
-
this.configService = configService;
|
|
27
|
-
this.el = el;
|
|
28
|
-
this.userProviderService = userProviderService;
|
|
29
|
-
this.logger = logger;
|
|
30
|
-
this.valtimoSwaggerConfig = configService.config.swagger;
|
|
31
|
-
}
|
|
32
|
-
SwaggerComponent.prototype.ngAfterViewInit = function () {
|
|
33
|
-
var _this = this;
|
|
34
|
-
this.userProviderService.getToken().then(function (authToken) {
|
|
35
|
-
_this.logger.debug("swagger ngAfterViewInit token: " + authToken);
|
|
36
|
-
SwaggerUI({
|
|
37
|
-
url: _this.valtimoSwaggerConfig.endpointUri,
|
|
38
|
-
domNode: _this.el.nativeElement.querySelector('.swagger-container'),
|
|
39
|
-
deepLinking: true,
|
|
40
|
-
presets: [
|
|
41
|
-
SwaggerUI.presets.apis
|
|
42
|
-
],
|
|
43
|
-
requestInterceptor: function (request) {
|
|
44
|
-
request.headers.Authorization = "Bearer " + authToken;
|
|
45
|
-
return request;
|
|
46
|
-
}
|
|
47
|
-
});
|
|
48
|
-
});
|
|
49
|
-
};
|
|
50
|
-
return SwaggerComponent;
|
|
51
|
-
}());
|
|
52
|
-
SwaggerComponent.decorators = [
|
|
53
|
-
{ type: core.Component, args: [{
|
|
54
|
-
selector: 'valtimo-swagger',
|
|
55
|
-
template: "<!--\n ~ Copyright 2015-2020 Ritense BV, the Netherlands.\n ~\n ~ Licensed under EUPL, Version 1.2 (the \"License\");\n ~ you may not use this file except in compliance with the License.\n ~ You may obtain a copy of the License at\n ~\n ~ https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n ~\n ~ Unless required by applicable law or agreed to in writing, software\n ~ distributed under the License is distributed on an \"AS IS\" basis,\n ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n ~ See the License for the specific language governing permissions and\n ~ limitations under the License.\n -->\n\n<div class=\"container-fluid\">\n <div class='swagger-container'></div>\n</div>\n",
|
|
56
|
-
encapsulation: core.ViewEncapsulation.None,
|
|
57
|
-
styles: ["/*!\n * Copyright 2015-2020 Ritense BV, the Netherlands.\n *\n * Licensed under EUPL, Version 1.2 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" basis,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */.swagger-ui .info .title{height:auto}.swagger-ui .info .title small pre{background-color:inherit}"]
|
|
58
|
-
},] }
|
|
59
|
-
];
|
|
60
|
-
SwaggerComponent.ctorParameters = function () { return [
|
|
61
|
-
{ type: config.ConfigService },
|
|
62
|
-
{ type: core.ElementRef },
|
|
63
|
-
{ type: security.UserProviderService },
|
|
64
|
-
{ type: ngxLogger.NGXLogger }
|
|
9
|
+
/*
|
|
10
|
+
* Copyright 2015-2020 Ritense BV, the Netherlands.
|
|
11
|
+
*
|
|
12
|
+
* Licensed under EUPL, Version 1.2 (the "License");
|
|
13
|
+
* you may not use this file except in compliance with the License.
|
|
14
|
+
* You may obtain a copy of the License at
|
|
15
|
+
*
|
|
16
|
+
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
17
|
+
*
|
|
18
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
19
|
+
* distributed under the License is distributed on an "AS IS" basis,
|
|
20
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
21
|
+
* See the License for the specific language governing permissions and
|
|
22
|
+
* limitations under the License.
|
|
23
|
+
*/
|
|
24
|
+
var SwaggerComponent = /** @class */ (function () {
|
|
25
|
+
function SwaggerComponent(configService, el, userProviderService, logger) {
|
|
26
|
+
this.configService = configService;
|
|
27
|
+
this.el = el;
|
|
28
|
+
this.userProviderService = userProviderService;
|
|
29
|
+
this.logger = logger;
|
|
30
|
+
this.valtimoSwaggerConfig = configService.config.swagger;
|
|
31
|
+
}
|
|
32
|
+
SwaggerComponent.prototype.ngAfterViewInit = function () {
|
|
33
|
+
var _this = this;
|
|
34
|
+
this.userProviderService.getToken().then(function (authToken) {
|
|
35
|
+
_this.logger.debug("swagger ngAfterViewInit token: " + authToken);
|
|
36
|
+
SwaggerUI({
|
|
37
|
+
url: _this.valtimoSwaggerConfig.endpointUri,
|
|
38
|
+
domNode: _this.el.nativeElement.querySelector('.swagger-container'),
|
|
39
|
+
deepLinking: true,
|
|
40
|
+
presets: [
|
|
41
|
+
SwaggerUI.presets.apis
|
|
42
|
+
],
|
|
43
|
+
requestInterceptor: function (request) {
|
|
44
|
+
request.headers.Authorization = "Bearer " + authToken;
|
|
45
|
+
return request;
|
|
46
|
+
}
|
|
47
|
+
});
|
|
48
|
+
});
|
|
49
|
+
};
|
|
50
|
+
return SwaggerComponent;
|
|
51
|
+
}());
|
|
52
|
+
SwaggerComponent.decorators = [
|
|
53
|
+
{ type: core.Component, args: [{
|
|
54
|
+
selector: 'valtimo-swagger',
|
|
55
|
+
template: "<!--\n ~ Copyright 2015-2020 Ritense BV, the Netherlands.\n ~\n ~ Licensed under EUPL, Version 1.2 (the \"License\");\n ~ you may not use this file except in compliance with the License.\n ~ You may obtain a copy of the License at\n ~\n ~ https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n ~\n ~ Unless required by applicable law or agreed to in writing, software\n ~ distributed under the License is distributed on an \"AS IS\" basis,\n ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n ~ See the License for the specific language governing permissions and\n ~ limitations under the License.\n -->\n\n<div class=\"container-fluid\">\n <div class='swagger-container'></div>\n</div>\n",
|
|
56
|
+
encapsulation: core.ViewEncapsulation.None,
|
|
57
|
+
styles: ["/*!\n * Copyright 2015-2020 Ritense BV, the Netherlands.\n *\n * Licensed under EUPL, Version 1.2 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" basis,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */.swagger-ui .info .title{height:auto}.swagger-ui .info .title small pre{background-color:inherit}"]
|
|
58
|
+
},] }
|
|
59
|
+
];
|
|
60
|
+
SwaggerComponent.ctorParameters = function () { return [
|
|
61
|
+
{ type: config.ConfigService },
|
|
62
|
+
{ type: core.ElementRef },
|
|
63
|
+
{ type: security.UserProviderService },
|
|
64
|
+
{ type: ngxLogger.NGXLogger }
|
|
65
65
|
]; };
|
|
66
66
|
|
|
67
|
-
/*
|
|
68
|
-
* Copyright 2015-2020 Ritense BV, the Netherlands.
|
|
69
|
-
*
|
|
70
|
-
* Licensed under EUPL, Version 1.2 (the "License");
|
|
71
|
-
* you may not use this file except in compliance with the License.
|
|
72
|
-
* You may obtain a copy of the License at
|
|
73
|
-
*
|
|
74
|
-
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
75
|
-
*
|
|
76
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
77
|
-
* distributed under the License is distributed on an "AS IS" basis,
|
|
78
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
79
|
-
* See the License for the specific language governing permissions and
|
|
80
|
-
* limitations under the License.
|
|
81
|
-
*/
|
|
82
|
-
var ɵ0 = { title: 'Swagger', roles: [contract.ROLE_USER] };
|
|
83
|
-
var routes = [
|
|
84
|
-
{
|
|
85
|
-
path: 'swagger',
|
|
86
|
-
component: SwaggerComponent,
|
|
87
|
-
canActivate: [security.AuthGuardService],
|
|
88
|
-
data: ɵ0
|
|
89
|
-
}
|
|
90
|
-
];
|
|
91
|
-
var SwaggerRoutingModule = /** @class */ (function () {
|
|
92
|
-
function SwaggerRoutingModule() {
|
|
93
|
-
}
|
|
94
|
-
return SwaggerRoutingModule;
|
|
95
|
-
}());
|
|
96
|
-
SwaggerRoutingModule.decorators = [
|
|
97
|
-
{ type: core.NgModule, args: [{
|
|
98
|
-
imports: [
|
|
99
|
-
common.CommonModule,
|
|
100
|
-
router.RouterModule.forChild(routes),
|
|
101
|
-
],
|
|
102
|
-
exports: [router.RouterModule]
|
|
103
|
-
},] }
|
|
67
|
+
/*
|
|
68
|
+
* Copyright 2015-2020 Ritense BV, the Netherlands.
|
|
69
|
+
*
|
|
70
|
+
* Licensed under EUPL, Version 1.2 (the "License");
|
|
71
|
+
* you may not use this file except in compliance with the License.
|
|
72
|
+
* You may obtain a copy of the License at
|
|
73
|
+
*
|
|
74
|
+
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
75
|
+
*
|
|
76
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
77
|
+
* distributed under the License is distributed on an "AS IS" basis,
|
|
78
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
79
|
+
* See the License for the specific language governing permissions and
|
|
80
|
+
* limitations under the License.
|
|
81
|
+
*/
|
|
82
|
+
var ɵ0 = { title: 'Swagger', roles: [contract.ROLE_USER] };
|
|
83
|
+
var routes = [
|
|
84
|
+
{
|
|
85
|
+
path: 'swagger',
|
|
86
|
+
component: SwaggerComponent,
|
|
87
|
+
canActivate: [security.AuthGuardService],
|
|
88
|
+
data: ɵ0
|
|
89
|
+
}
|
|
90
|
+
];
|
|
91
|
+
var SwaggerRoutingModule = /** @class */ (function () {
|
|
92
|
+
function SwaggerRoutingModule() {
|
|
93
|
+
}
|
|
94
|
+
return SwaggerRoutingModule;
|
|
95
|
+
}());
|
|
96
|
+
SwaggerRoutingModule.decorators = [
|
|
97
|
+
{ type: core.NgModule, args: [{
|
|
98
|
+
imports: [
|
|
99
|
+
common.CommonModule,
|
|
100
|
+
router.RouterModule.forChild(routes),
|
|
101
|
+
],
|
|
102
|
+
exports: [router.RouterModule]
|
|
103
|
+
},] }
|
|
104
104
|
];
|
|
105
105
|
|
|
106
|
-
/*
|
|
107
|
-
* Copyright 2015-2020 Ritense BV, the Netherlands.
|
|
108
|
-
*
|
|
109
|
-
* Licensed under EUPL, Version 1.2 (the "License");
|
|
110
|
-
* you may not use this file except in compliance with the License.
|
|
111
|
-
* You may obtain a copy of the License at
|
|
112
|
-
*
|
|
113
|
-
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
114
|
-
*
|
|
115
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
116
|
-
* distributed under the License is distributed on an "AS IS" basis,
|
|
117
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
118
|
-
* See the License for the specific language governing permissions and
|
|
119
|
-
* limitations under the License.
|
|
120
|
-
*/
|
|
121
|
-
var SwaggerModule = /** @class */ (function () {
|
|
122
|
-
function SwaggerModule() {
|
|
123
|
-
}
|
|
124
|
-
return SwaggerModule;
|
|
125
|
-
}());
|
|
126
|
-
SwaggerModule.decorators = [
|
|
127
|
-
{ type: core.NgModule, args: [{
|
|
128
|
-
declarations: [SwaggerComponent],
|
|
129
|
-
imports: [
|
|
130
|
-
common.CommonModule,
|
|
131
|
-
SwaggerRoutingModule
|
|
132
|
-
],
|
|
133
|
-
exports: [SwaggerComponent]
|
|
134
|
-
},] }
|
|
106
|
+
/*
|
|
107
|
+
* Copyright 2015-2020 Ritense BV, the Netherlands.
|
|
108
|
+
*
|
|
109
|
+
* Licensed under EUPL, Version 1.2 (the "License");
|
|
110
|
+
* you may not use this file except in compliance with the License.
|
|
111
|
+
* You may obtain a copy of the License at
|
|
112
|
+
*
|
|
113
|
+
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
114
|
+
*
|
|
115
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
116
|
+
* distributed under the License is distributed on an "AS IS" basis,
|
|
117
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
118
|
+
* See the License for the specific language governing permissions and
|
|
119
|
+
* limitations under the License.
|
|
120
|
+
*/
|
|
121
|
+
var SwaggerModule = /** @class */ (function () {
|
|
122
|
+
function SwaggerModule() {
|
|
123
|
+
}
|
|
124
|
+
return SwaggerModule;
|
|
125
|
+
}());
|
|
126
|
+
SwaggerModule.decorators = [
|
|
127
|
+
{ type: core.NgModule, args: [{
|
|
128
|
+
declarations: [SwaggerComponent],
|
|
129
|
+
imports: [
|
|
130
|
+
common.CommonModule,
|
|
131
|
+
SwaggerRoutingModule
|
|
132
|
+
],
|
|
133
|
+
exports: [SwaggerComponent]
|
|
134
|
+
},] }
|
|
135
135
|
];
|
|
136
136
|
|
|
137
|
-
/*
|
|
138
|
-
* Copyright 2015-2020 Ritense BV, the Netherlands.
|
|
139
|
-
*
|
|
140
|
-
* Licensed under EUPL, Version 1.2 (the "License");
|
|
141
|
-
* you may not use this file except in compliance with the License.
|
|
142
|
-
* You may obtain a copy of the License at
|
|
143
|
-
*
|
|
144
|
-
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
145
|
-
*
|
|
146
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
147
|
-
* distributed under the License is distributed on an "AS IS" basis,
|
|
148
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
149
|
-
* See the License for the specific language governing permissions and
|
|
150
|
-
* limitations under the License.
|
|
137
|
+
/*
|
|
138
|
+
* Copyright 2015-2020 Ritense BV, the Netherlands.
|
|
139
|
+
*
|
|
140
|
+
* Licensed under EUPL, Version 1.2 (the "License");
|
|
141
|
+
* you may not use this file except in compliance with the License.
|
|
142
|
+
* You may obtain a copy of the License at
|
|
143
|
+
*
|
|
144
|
+
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
145
|
+
*
|
|
146
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
147
|
+
* distributed under the License is distributed on an "AS IS" basis,
|
|
148
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
149
|
+
* See the License for the specific language governing permissions and
|
|
150
|
+
* limitations under the License.
|
|
151
151
|
*/
|
|
152
152
|
|
|
153
|
-
/**
|
|
154
|
-
* Generated bundle index. Do not edit.
|
|
153
|
+
/**
|
|
154
|
+
* Generated bundle index. Do not edit.
|
|
155
155
|
*/
|
|
156
156
|
|
|
157
157
|
exports.SwaggerComponent = SwaggerComponent;
|
|
@@ -1,43 +1,43 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright 2015-2020 Ritense BV, the Netherlands.
|
|
3
|
-
*
|
|
4
|
-
* Licensed under EUPL, Version 1.2 (the "License");
|
|
5
|
-
* you may not use this file except in compliance with the License.
|
|
6
|
-
* You may obtain a copy of the License at
|
|
7
|
-
*
|
|
8
|
-
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
9
|
-
*
|
|
10
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
-
* distributed under the License is distributed on an "AS IS" basis,
|
|
12
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
-
* See the License for the specific language governing permissions and
|
|
14
|
-
* limitations under the License.
|
|
15
|
-
*/
|
|
16
|
-
import { NgModule } from '@angular/core';
|
|
17
|
-
import { RouterModule } from '@angular/router';
|
|
18
|
-
import { CommonModule } from '@angular/common';
|
|
19
|
-
import { AuthGuardService } from '@valtimo/security';
|
|
20
|
-
import { SwaggerComponent } from './swagger.component';
|
|
21
|
-
import { ROLE_USER } from '@valtimo/contract';
|
|
22
|
-
const ɵ0 = { title: 'Swagger', roles: [ROLE_USER] };
|
|
23
|
-
const routes = [
|
|
24
|
-
{
|
|
25
|
-
path: 'swagger',
|
|
26
|
-
component: SwaggerComponent,
|
|
27
|
-
canActivate: [AuthGuardService],
|
|
28
|
-
data: ɵ0
|
|
29
|
-
}
|
|
30
|
-
];
|
|
31
|
-
export class SwaggerRoutingModule {
|
|
32
|
-
}
|
|
33
|
-
SwaggerRoutingModule.decorators = [
|
|
34
|
-
{ type: NgModule, args: [{
|
|
35
|
-
imports: [
|
|
36
|
-
CommonModule,
|
|
37
|
-
RouterModule.forChild(routes),
|
|
38
|
-
],
|
|
39
|
-
exports: [RouterModule]
|
|
40
|
-
},] }
|
|
41
|
-
];
|
|
42
|
-
export { ɵ0 };
|
|
1
|
+
/*
|
|
2
|
+
* Copyright 2015-2020 Ritense BV, the Netherlands.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under EUPL, Version 1.2 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" basis,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import { NgModule } from '@angular/core';
|
|
17
|
+
import { RouterModule } from '@angular/router';
|
|
18
|
+
import { CommonModule } from '@angular/common';
|
|
19
|
+
import { AuthGuardService } from '@valtimo/security';
|
|
20
|
+
import { SwaggerComponent } from './swagger.component';
|
|
21
|
+
import { ROLE_USER } from '@valtimo/contract';
|
|
22
|
+
const ɵ0 = { title: 'Swagger', roles: [ROLE_USER] };
|
|
23
|
+
const routes = [
|
|
24
|
+
{
|
|
25
|
+
path: 'swagger',
|
|
26
|
+
component: SwaggerComponent,
|
|
27
|
+
canActivate: [AuthGuardService],
|
|
28
|
+
data: ɵ0
|
|
29
|
+
}
|
|
30
|
+
];
|
|
31
|
+
export class SwaggerRoutingModule {
|
|
32
|
+
}
|
|
33
|
+
SwaggerRoutingModule.decorators = [
|
|
34
|
+
{ type: NgModule, args: [{
|
|
35
|
+
imports: [
|
|
36
|
+
CommonModule,
|
|
37
|
+
RouterModule.forChild(routes),
|
|
38
|
+
],
|
|
39
|
+
exports: [RouterModule]
|
|
40
|
+
},] }
|
|
41
|
+
];
|
|
42
|
+
export { ɵ0 };
|
|
43
43
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3dhZ2dlci1yb3V0aW5nLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3ZhbHRpbW8vc3dhZ2dlci9zcmMvbGliL3N3YWdnZXItcm91dGluZy5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7Ozs7Ozs7Ozs7Ozs7O0dBY0c7QUFFSCxPQUFPLEVBQUMsUUFBUSxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBQ3ZDLE9BQU8sRUFBQyxZQUFZLEVBQVMsTUFBTSxpQkFBaUIsQ0FBQztBQUNyRCxPQUFPLEVBQUMsWUFBWSxFQUFDLE1BQU0saUJBQWlCLENBQUM7QUFDN0MsT0FBTyxFQUFDLGdCQUFnQixFQUFDLE1BQU0sbUJBQW1CLENBQUM7QUFDbkQsT0FBTyxFQUFDLGdCQUFnQixFQUFDLE1BQU0scUJBQXFCLENBQUM7QUFDckQsT0FBTyxFQUFDLFNBQVMsRUFBQyxNQUFNLG1CQUFtQixDQUFDO1dBT2xDLEVBQUMsS0FBSyxFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQUUsQ0FBQyxTQUFTLENBQUMsRUFBQztBQUxoRCxNQUFNLE1BQU0sR0FBVztJQUNyQjtRQUNFLElBQUksRUFBRSxTQUFTO1FBQ2YsU0FBUyxFQUFFLGdCQUFnQjtRQUMzQixXQUFXLEVBQUUsQ0FBQyxnQkFBZ0IsQ0FBQztRQUMvQixJQUFJLElBQXdDO0tBQzdDO0NBQ0YsQ0FBQztBQVNGLE1BQU0sT0FBTyxvQkFBb0I7OztZQVBoQyxRQUFRLFNBQUM7Z0JBQ1IsT0FBTyxFQUFFO29CQUNQLFlBQVk7b0JBQ1osWUFBWSxDQUFDLFFBQVEsQ0FBQyxNQUFNLENBQUM7aUJBQzlCO2dCQUNELE9BQU8sRUFBRSxDQUFDLFlBQVksQ0FBQzthQUN4QiIsInNvdXJjZXNDb250ZW50IjpbIi8qXG4gKiBDb3B5cmlnaHQgMjAxNS0yMDIwIFJpdGVuc2UgQlYsIHRoZSBOZXRoZXJsYW5kcy5cbiAqXG4gKiBMaWNlbnNlZCB1bmRlciBFVVBMLCBWZXJzaW9uIDEuMiAodGhlIFwiTGljZW5zZVwiKTtcbiAqIHlvdSBtYXkgbm90IHVzZSB0aGlzIGZpbGUgZXhjZXB0IGluIGNvbXBsaWFuY2Ugd2l0aCB0aGUgTGljZW5zZS5cbiAqIFlvdSBtYXkgb2J0YWluIGEgY29weSBvZiB0aGUgTGljZW5zZSBhdFxuICpcbiAqIGh0dHBzOi8vam9pbnVwLmVjLmV1cm9wYS5ldS9jb2xsZWN0aW9uL2V1cGwvZXVwbC10ZXh0LWV1cGwtMTJcbiAqXG4gKiBVbmxlc3MgcmVxdWlyZWQgYnkgYXBwbGljYWJsZSBsYXcgb3IgYWdyZWVkIHRvIGluIHdyaXRpbmcsIHNvZnR3YXJlXG4gKiBkaXN0cmlidXRlZCB1bmRlciB0aGUgTGljZW5zZSBpcyBkaXN0cmlidXRlZCBvbiBhbiBcIkFTIElTXCIgYmFzaXMsXG4gKiBXSVRIT1VUIFdBUlJBTlRJRVMgT1IgQ09ORElUSU9OUyBPRiBBTlkgS0lORCwgZWl0aGVyIGV4cHJlc3Mgb3IgaW1wbGllZC5cbiAqIFNlZSB0aGUgTGljZW5zZSBmb3IgdGhlIHNwZWNpZmljIGxhbmd1YWdlIGdvdmVybmluZyBwZXJtaXNzaW9ucyBhbmRcbiAqIGxpbWl0YXRpb25zIHVuZGVyIHRoZSBMaWNlbnNlLlxuICovXG5cbmltcG9ydCB7TmdNb2R1bGV9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHtSb3V0ZXJNb2R1bGUsIFJvdXRlc30gZnJvbSAnQGFuZ3VsYXIvcm91dGVyJztcbmltcG9ydCB7Q29tbW9uTW9kdWxlfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHtBdXRoR3VhcmRTZXJ2aWNlfSBmcm9tICdAdmFsdGltby9zZWN1cml0eSc7XG5pbXBvcnQge1N3YWdnZXJDb21wb25lbnR9IGZyb20gJy4vc3dhZ2dlci5jb21wb25lbnQnO1xuaW1wb3J0IHtST0xFX1VTRVJ9IGZyb20gJ0B2YWx0aW1vL2NvbnRyYWN0JztcblxuY29uc3Qgcm91dGVzOiBSb3V0ZXMgPSBbXG4gIHtcbiAgICBwYXRoOiAnc3dhZ2dlcicsXG4gICAgY29tcG9uZW50OiBTd2FnZ2VyQ29tcG9uZW50LFxuICAgIGNhbkFjdGl2YXRlOiBbQXV0aEd1YXJkU2VydmljZV0sXG4gICAgZGF0YToge3RpdGxlOiAnU3dhZ2dlcicsIHJvbGVzOiBbUk9MRV9VU0VSXX1cbiAgfVxuXTtcblxuQE5nTW9kdWxlKHtcbiAgaW1wb3J0czogW1xuICAgIENvbW1vbk1vZHVsZSxcbiAgICBSb3V0ZXJNb2R1bGUuZm9yQ2hpbGQocm91dGVzKSxcbiAgXSxcbiAgZXhwb3J0czogW1JvdXRlck1vZHVsZV1cbn0pXG5leHBvcnQgY2xhc3MgU3dhZ2dlclJvdXRpbmdNb2R1bGUge1xufVxuIl19
|
|
@@ -1,61 +1,61 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright 2015-2020 Ritense BV, the Netherlands.
|
|
3
|
-
*
|
|
4
|
-
* Licensed under EUPL, Version 1.2 (the "License");
|
|
5
|
-
* you may not use this file except in compliance with the License.
|
|
6
|
-
* You may obtain a copy of the License at
|
|
7
|
-
*
|
|
8
|
-
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
9
|
-
*
|
|
10
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
-
* distributed under the License is distributed on an "AS IS" basis,
|
|
12
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
-
* See the License for the specific language governing permissions and
|
|
14
|
-
* limitations under the License.
|
|
15
|
-
*/
|
|
16
|
-
import { Component, ElementRef, ViewEncapsulation } from '@angular/core';
|
|
17
|
-
import { UserProviderService } from '@valtimo/security';
|
|
18
|
-
import SwaggerUI from 'swagger-ui';
|
|
19
|
-
import { NGXLogger } from 'ngx-logger';
|
|
20
|
-
import { ConfigService } from '@valtimo/config';
|
|
21
|
-
export class SwaggerComponent {
|
|
22
|
-
constructor(configService, el, userProviderService, logger) {
|
|
23
|
-
this.configService = configService;
|
|
24
|
-
this.el = el;
|
|
25
|
-
this.userProviderService = userProviderService;
|
|
26
|
-
this.logger = logger;
|
|
27
|
-
this.valtimoSwaggerConfig = configService.config.swagger;
|
|
28
|
-
}
|
|
29
|
-
ngAfterViewInit() {
|
|
30
|
-
this.userProviderService.getToken().then((authToken) => {
|
|
31
|
-
this.logger.debug(`swagger ngAfterViewInit token: ${authToken}`);
|
|
32
|
-
SwaggerUI({
|
|
33
|
-
url: this.valtimoSwaggerConfig.endpointUri,
|
|
34
|
-
domNode: this.el.nativeElement.querySelector('.swagger-container'),
|
|
35
|
-
deepLinking: true,
|
|
36
|
-
presets: [
|
|
37
|
-
SwaggerUI.presets.apis
|
|
38
|
-
],
|
|
39
|
-
requestInterceptor(request) {
|
|
40
|
-
request.headers.Authorization = `Bearer ${authToken}`;
|
|
41
|
-
return request;
|
|
42
|
-
}
|
|
43
|
-
});
|
|
44
|
-
});
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
SwaggerComponent.decorators = [
|
|
48
|
-
{ type: Component, args: [{
|
|
49
|
-
selector: 'valtimo-swagger',
|
|
50
|
-
template: "<!--\n ~ Copyright 2015-2020 Ritense BV, the Netherlands.\n ~\n ~ Licensed under EUPL, Version 1.2 (the \"License\");\n ~ you may not use this file except in compliance with the License.\n ~ You may obtain a copy of the License at\n ~\n ~ https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n ~\n ~ Unless required by applicable law or agreed to in writing, software\n ~ distributed under the License is distributed on an \"AS IS\" basis,\n ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n ~ See the License for the specific language governing permissions and\n ~ limitations under the License.\n -->\n\n<div class=\"container-fluid\">\n <div class='swagger-container'></div>\n</div>\n",
|
|
51
|
-
encapsulation: ViewEncapsulation.None,
|
|
52
|
-
styles: ["/*!\n * Copyright 2015-2020 Ritense BV, the Netherlands.\n *\n * Licensed under EUPL, Version 1.2 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" basis,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */.swagger-ui .info .title{height:auto}.swagger-ui .info .title small pre{background-color:inherit}"]
|
|
53
|
-
},] }
|
|
54
|
-
];
|
|
55
|
-
SwaggerComponent.ctorParameters = () => [
|
|
56
|
-
{ type: ConfigService },
|
|
57
|
-
{ type: ElementRef },
|
|
58
|
-
{ type: UserProviderService },
|
|
59
|
-
{ type: NGXLogger }
|
|
60
|
-
];
|
|
1
|
+
/*
|
|
2
|
+
* Copyright 2015-2020 Ritense BV, the Netherlands.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under EUPL, Version 1.2 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" basis,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import { Component, ElementRef, ViewEncapsulation } from '@angular/core';
|
|
17
|
+
import { UserProviderService } from '@valtimo/security';
|
|
18
|
+
import SwaggerUI from 'swagger-ui';
|
|
19
|
+
import { NGXLogger } from 'ngx-logger';
|
|
20
|
+
import { ConfigService } from '@valtimo/config';
|
|
21
|
+
export class SwaggerComponent {
|
|
22
|
+
constructor(configService, el, userProviderService, logger) {
|
|
23
|
+
this.configService = configService;
|
|
24
|
+
this.el = el;
|
|
25
|
+
this.userProviderService = userProviderService;
|
|
26
|
+
this.logger = logger;
|
|
27
|
+
this.valtimoSwaggerConfig = configService.config.swagger;
|
|
28
|
+
}
|
|
29
|
+
ngAfterViewInit() {
|
|
30
|
+
this.userProviderService.getToken().then((authToken) => {
|
|
31
|
+
this.logger.debug(`swagger ngAfterViewInit token: ${authToken}`);
|
|
32
|
+
SwaggerUI({
|
|
33
|
+
url: this.valtimoSwaggerConfig.endpointUri,
|
|
34
|
+
domNode: this.el.nativeElement.querySelector('.swagger-container'),
|
|
35
|
+
deepLinking: true,
|
|
36
|
+
presets: [
|
|
37
|
+
SwaggerUI.presets.apis
|
|
38
|
+
],
|
|
39
|
+
requestInterceptor(request) {
|
|
40
|
+
request.headers.Authorization = `Bearer ${authToken}`;
|
|
41
|
+
return request;
|
|
42
|
+
}
|
|
43
|
+
});
|
|
44
|
+
});
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
SwaggerComponent.decorators = [
|
|
48
|
+
{ type: Component, args: [{
|
|
49
|
+
selector: 'valtimo-swagger',
|
|
50
|
+
template: "<!--\n ~ Copyright 2015-2020 Ritense BV, the Netherlands.\n ~\n ~ Licensed under EUPL, Version 1.2 (the \"License\");\n ~ you may not use this file except in compliance with the License.\n ~ You may obtain a copy of the License at\n ~\n ~ https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n ~\n ~ Unless required by applicable law or agreed to in writing, software\n ~ distributed under the License is distributed on an \"AS IS\" basis,\n ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n ~ See the License for the specific language governing permissions and\n ~ limitations under the License.\n -->\n\n<div class=\"container-fluid\">\n <div class='swagger-container'></div>\n</div>\n",
|
|
51
|
+
encapsulation: ViewEncapsulation.None,
|
|
52
|
+
styles: ["/*!\n * Copyright 2015-2020 Ritense BV, the Netherlands.\n *\n * Licensed under EUPL, Version 1.2 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" basis,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */.swagger-ui .info .title{height:auto}.swagger-ui .info .title small pre{background-color:inherit}"]
|
|
53
|
+
},] }
|
|
54
|
+
];
|
|
55
|
+
SwaggerComponent.ctorParameters = () => [
|
|
56
|
+
{ type: ConfigService },
|
|
57
|
+
{ type: ElementRef },
|
|
58
|
+
{ type: UserProviderService },
|
|
59
|
+
{ type: NGXLogger }
|
|
60
|
+
];
|
|
61
61
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3dhZ2dlci5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy92YWx0aW1vL3N3YWdnZXIvc3JjL2xpYi9zd2FnZ2VyLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7Ozs7Ozs7Ozs7Ozs7R0FjRztBQUVILE9BQU8sRUFBZ0IsU0FBUyxFQUFFLFVBQVUsRUFBRSxpQkFBaUIsRUFBQyxNQUFNLGVBQWUsQ0FBQztBQUN0RixPQUFPLEVBQUMsbUJBQW1CLEVBQUMsTUFBTSxtQkFBbUIsQ0FBQztBQUN0RCxPQUFPLFNBQVMsTUFBTSxZQUFZLENBQUM7QUFDbkMsT0FBTyxFQUFDLFNBQVMsRUFBQyxNQUFNLFlBQVksQ0FBQztBQUNyQyxPQUFPLEVBQUMsYUFBYSxFQUFDLE1BQU0saUJBQWlCLENBQUM7QUFROUMsTUFBTSxPQUFPLGdCQUFnQjtJQUkzQixZQUNVLGFBQTRCLEVBQzVCLEVBQWMsRUFDZCxtQkFBd0MsRUFDeEMsTUFBaUI7UUFIakIsa0JBQWEsR0FBYixhQUFhLENBQWU7UUFDNUIsT0FBRSxHQUFGLEVBQUUsQ0FBWTtRQUNkLHdCQUFtQixHQUFuQixtQkFBbUIsQ0FBcUI7UUFDeEMsV0FBTSxHQUFOLE1BQU0sQ0FBVztRQUV6QixJQUFJLENBQUMsb0JBQW9CLEdBQUcsYUFBYSxDQUFDLE1BQU0sQ0FBQyxPQUFPLENBQUM7SUFDM0QsQ0FBQztJQUVELGVBQWU7UUFDYixJQUFJLENBQUMsbUJBQW1CLENBQUMsUUFBUSxFQUFFLENBQUMsSUFBSSxDQUFDLENBQUMsU0FBaUIsRUFBRSxFQUFFO1lBQzdELElBQUksQ0FBQyxNQUFNLENBQUMsS0FBSyxDQUFDLGtDQUFrQyxTQUFTLEVBQUUsQ0FBQyxDQUFDO1lBQ2pFLFNBQVMsQ0FBQztnQkFDUixHQUFHLEVBQUUsSUFBSSxDQUFDLG9CQUFvQixDQUFDLFdBQVc7Z0JBQzFDLE9BQU8sRUFBRSxJQUFJLENBQUMsRUFBRSxDQUFDLGFBQWEsQ0FBQyxhQUFhLENBQUMsb0JBQW9CLENBQUM7Z0JBQ2xFLFdBQVcsRUFBRSxJQUFJO2dCQUNqQixPQUFPLEVBQUU7b0JBQ1AsU0FBUyxDQUFDLE9BQU8sQ0FBQyxJQUFJO2lCQUN2QjtnQkFDRCxrQkFBa0IsQ0FBQyxPQUFPO29CQUN4QixPQUFPLENBQUMsT0FBTyxDQUFDLGFBQWEsR0FBRyxVQUFVLFNBQVMsRUFBRSxDQUFDO29CQUN0RCxPQUFPLE9BQU8sQ0FBQztnQkFDakIsQ0FBQzthQUNGLENBQUMsQ0FBQztRQUNMLENBQUMsQ0FBQyxDQUFDO0lBQ0wsQ0FBQzs7O1lBbkNGLFNBQVMsU0FBQztnQkFDVCxRQUFRLEVBQUUsaUJBQWlCO2dCQUMzQiw4dUJBQXVDO2dCQUV2QyxhQUFhLEVBQUUsaUJBQWlCLENBQUMsSUFBSTs7YUFDdEM7OztZQVBPLGFBQWE7WUFKYSxVQUFVO1lBQ3BDLG1CQUFtQjtZQUVuQixTQUFTIiwic291cmNlc0NvbnRlbnQiOlsiLypcbiAqIENvcHlyaWdodCAyMDE1LTIwMjAgUml0ZW5zZSBCViwgdGhlIE5ldGhlcmxhbmRzLlxuICpcbiAqIExpY2Vuc2VkIHVuZGVyIEVVUEwsIFZlcnNpb24gMS4yICh0aGUgXCJMaWNlbnNlXCIpO1xuICogeW91IG1heSBub3QgdXNlIHRoaXMgZmlsZSBleGNlcHQgaW4gY29tcGxpYW5jZSB3aXRoIHRoZSBMaWNlbnNlLlxuICogWW91IG1heSBvYnRhaW4gYSBjb3B5IG9mIHRoZSBMaWNlbnNlIGF0XG4gKlxuICogaHR0cHM6Ly9qb2ludXAuZWMuZXVyb3BhLmV1L2NvbGxlY3Rpb24vZXVwbC9ldXBsLXRleHQtZXVwbC0xMlxuICpcbiAqIFVubGVzcyByZXF1aXJlZCBieSBhcHBsaWNhYmxlIGxhdyBvciBhZ3JlZWQgdG8gaW4gd3JpdGluZywgc29mdHdhcmVcbiAqIGRpc3RyaWJ1dGVkIHVuZGVyIHRoZSBMaWNlbnNlIGlzIGRpc3RyaWJ1dGVkIG9uIGFuIFwiQVMgSVNcIiBiYXNpcyxcbiAqIFdJVEhPVVQgV0FSUkFOVElFUyBPUiBDT05ESVRJT05TIE9GIEFOWSBLSU5ELCBlaXRoZXIgZXhwcmVzcyBvciBpbXBsaWVkLlxuICogU2VlIHRoZSBMaWNlbnNlIGZvciB0aGUgc3BlY2lmaWMgbGFuZ3VhZ2UgZ292ZXJuaW5nIHBlcm1pc3Npb25zIGFuZFxuICogbGltaXRhdGlvbnMgdW5kZXIgdGhlIExpY2Vuc2UuXG4gKi9cblxuaW1wb3J0IHtBZnRlclZpZXdJbml0LCBDb21wb25lbnQsIEVsZW1lbnRSZWYsIFZpZXdFbmNhcHN1bGF0aW9ufSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7VXNlclByb3ZpZGVyU2VydmljZX0gZnJvbSAnQHZhbHRpbW8vc2VjdXJpdHknO1xuaW1wb3J0IFN3YWdnZXJVSSBmcm9tICdzd2FnZ2VyLXVpJztcbmltcG9ydCB7TkdYTG9nZ2VyfSBmcm9tICduZ3gtbG9nZ2VyJztcbmltcG9ydCB7Q29uZmlnU2VydmljZX0gZnJvbSAnQHZhbHRpbW8vY29uZmlnJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAndmFsdGltby1zd2FnZ2VyJyxcbiAgdGVtcGxhdGVVcmw6ICcuL3N3YWdnZXIuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9zd2FnZ2VyLmNvbXBvbmVudC5zY3NzJ10sXG4gIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmVcbn0pXG5leHBvcnQgY2xhc3MgU3dhZ2dlckNvbXBvbmVudCBpbXBsZW1lbnRzIEFmdGVyVmlld0luaXQge1xuXG4gIHByaXZhdGUgdmFsdGltb1N3YWdnZXJDb25maWc6IGFueTtcblxuICBjb25zdHJ1Y3RvcihcbiAgICBwcml2YXRlIGNvbmZpZ1NlcnZpY2U6IENvbmZpZ1NlcnZpY2UsXG4gICAgcHJpdmF0ZSBlbDogRWxlbWVudFJlZixcbiAgICBwcml2YXRlIHVzZXJQcm92aWRlclNlcnZpY2U6IFVzZXJQcm92aWRlclNlcnZpY2UsXG4gICAgcHJpdmF0ZSBsb2dnZXI6IE5HWExvZ2dlclxuICApIHtcbiAgICB0aGlzLnZhbHRpbW9Td2FnZ2VyQ29uZmlnID0gY29uZmlnU2VydmljZS5jb25maWcuc3dhZ2dlcjtcbiAgfVxuXG4gIG5nQWZ0ZXJWaWV3SW5pdCgpIHtcbiAgICB0aGlzLnVzZXJQcm92aWRlclNlcnZpY2UuZ2V0VG9rZW4oKS50aGVuKChhdXRoVG9rZW46IHN0cmluZykgPT4ge1xuICAgICAgdGhpcy5sb2dnZXIuZGVidWcoYHN3YWdnZXIgbmdBZnRlclZpZXdJbml0IHRva2VuOiAke2F1dGhUb2tlbn1gKTtcbiAgICAgIFN3YWdnZXJVSSh7XG4gICAgICAgIHVybDogdGhpcy52YWx0aW1vU3dhZ2dlckNvbmZpZy5lbmRwb2ludFVyaSxcbiAgICAgICAgZG9tTm9kZTogdGhpcy5lbC5uYXRpdmVFbGVtZW50LnF1ZXJ5U2VsZWN0b3IoJy5zd2FnZ2VyLWNvbnRhaW5lcicpLFxuICAgICAgICBkZWVwTGlua2luZzogdHJ1ZSxcbiAgICAgICAgcHJlc2V0czogW1xuICAgICAgICAgIFN3YWdnZXJVSS5wcmVzZXRzLmFwaXNcbiAgICAgICAgXSxcbiAgICAgICAgcmVxdWVzdEludGVyY2VwdG9yKHJlcXVlc3QpIHtcbiAgICAgICAgICByZXF1ZXN0LmhlYWRlcnMuQXV0aG9yaXphdGlvbiA9IGBCZWFyZXIgJHthdXRoVG9rZW59YDtcbiAgICAgICAgICByZXR1cm4gcmVxdWVzdDtcbiAgICAgICAgfVxuICAgICAgfSk7XG4gICAgfSk7XG4gIH1cblxufVxuIl19
|
|
@@ -1,32 +1,32 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright 2015-2020 Ritense BV, the Netherlands.
|
|
3
|
-
*
|
|
4
|
-
* Licensed under EUPL, Version 1.2 (the "License");
|
|
5
|
-
* you may not use this file except in compliance with the License.
|
|
6
|
-
* You may obtain a copy of the License at
|
|
7
|
-
*
|
|
8
|
-
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
9
|
-
*
|
|
10
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
-
* distributed under the License is distributed on an "AS IS" basis,
|
|
12
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
-
* See the License for the specific language governing permissions and
|
|
14
|
-
* limitations under the License.
|
|
15
|
-
*/
|
|
16
|
-
import { NgModule } from '@angular/core';
|
|
17
|
-
import { CommonModule } from '@angular/common';
|
|
18
|
-
import { SwaggerComponent } from './swagger.component';
|
|
19
|
-
import { SwaggerRoutingModule } from './swagger-routing.module';
|
|
20
|
-
export class SwaggerModule {
|
|
21
|
-
}
|
|
22
|
-
SwaggerModule.decorators = [
|
|
23
|
-
{ type: NgModule, args: [{
|
|
24
|
-
declarations: [SwaggerComponent],
|
|
25
|
-
imports: [
|
|
26
|
-
CommonModule,
|
|
27
|
-
SwaggerRoutingModule
|
|
28
|
-
],
|
|
29
|
-
exports: [SwaggerComponent]
|
|
30
|
-
},] }
|
|
31
|
-
];
|
|
1
|
+
/*
|
|
2
|
+
* Copyright 2015-2020 Ritense BV, the Netherlands.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under EUPL, Version 1.2 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" basis,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import { NgModule } from '@angular/core';
|
|
17
|
+
import { CommonModule } from '@angular/common';
|
|
18
|
+
import { SwaggerComponent } from './swagger.component';
|
|
19
|
+
import { SwaggerRoutingModule } from './swagger-routing.module';
|
|
20
|
+
export class SwaggerModule {
|
|
21
|
+
}
|
|
22
|
+
SwaggerModule.decorators = [
|
|
23
|
+
{ type: NgModule, args: [{
|
|
24
|
+
declarations: [SwaggerComponent],
|
|
25
|
+
imports: [
|
|
26
|
+
CommonModule,
|
|
27
|
+
SwaggerRoutingModule
|
|
28
|
+
],
|
|
29
|
+
exports: [SwaggerComponent]
|
|
30
|
+
},] }
|
|
31
|
+
];
|
|
32
32
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3dhZ2dlci5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy92YWx0aW1vL3N3YWdnZXIvc3JjL2xpYi9zd2FnZ2VyLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7Ozs7Ozs7Ozs7Ozs7R0FjRztBQUVILE9BQU8sRUFBQyxRQUFRLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFDdkMsT0FBTyxFQUFDLFlBQVksRUFBQyxNQUFNLGlCQUFpQixDQUFDO0FBQzdDLE9BQU8sRUFBQyxnQkFBZ0IsRUFBQyxNQUFNLHFCQUFxQixDQUFDO0FBQ3JELE9BQU8sRUFBQyxvQkFBb0IsRUFBQyxNQUFNLDBCQUEwQixDQUFDO0FBVTlELE1BQU0sT0FBTyxhQUFhOzs7WUFSekIsUUFBUSxTQUFDO2dCQUNSLFlBQVksRUFBRSxDQUFDLGdCQUFnQixDQUFDO2dCQUNoQyxPQUFPLEVBQUU7b0JBQ1AsWUFBWTtvQkFDWixvQkFBb0I7aUJBQ3JCO2dCQUNELE9BQU8sRUFBRSxDQUFDLGdCQUFnQixDQUFDO2FBQzVCIiwic291cmNlc0NvbnRlbnQiOlsiLypcbiAqIENvcHlyaWdodCAyMDE1LTIwMjAgUml0ZW5zZSBCViwgdGhlIE5ldGhlcmxhbmRzLlxuICpcbiAqIExpY2Vuc2VkIHVuZGVyIEVVUEwsIFZlcnNpb24gMS4yICh0aGUgXCJMaWNlbnNlXCIpO1xuICogeW91IG1heSBub3QgdXNlIHRoaXMgZmlsZSBleGNlcHQgaW4gY29tcGxpYW5jZSB3aXRoIHRoZSBMaWNlbnNlLlxuICogWW91IG1heSBvYnRhaW4gYSBjb3B5IG9mIHRoZSBMaWNlbnNlIGF0XG4gKlxuICogaHR0cHM6Ly9qb2ludXAuZWMuZXVyb3BhLmV1L2NvbGxlY3Rpb24vZXVwbC9ldXBsLXRleHQtZXVwbC0xMlxuICpcbiAqIFVubGVzcyByZXF1aXJlZCBieSBhcHBsaWNhYmxlIGxhdyBvciBhZ3JlZWQgdG8gaW4gd3JpdGluZywgc29mdHdhcmVcbiAqIGRpc3RyaWJ1dGVkIHVuZGVyIHRoZSBMaWNlbnNlIGlzIGRpc3RyaWJ1dGVkIG9uIGFuIFwiQVMgSVNcIiBiYXNpcyxcbiAqIFdJVEhPVVQgV0FSUkFOVElFUyBPUiBDT05ESVRJT05TIE9GIEFOWSBLSU5ELCBlaXRoZXIgZXhwcmVzcyBvciBpbXBsaWVkLlxuICogU2VlIHRoZSBMaWNlbnNlIGZvciB0aGUgc3BlY2lmaWMgbGFuZ3VhZ2UgZ292ZXJuaW5nIHBlcm1pc3Npb25zIGFuZFxuICogbGltaXRhdGlvbnMgdW5kZXIgdGhlIExpY2Vuc2UuXG4gKi9cblxuaW1wb3J0IHtOZ01vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQge0NvbW1vbk1vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7U3dhZ2dlckNvbXBvbmVudH0gZnJvbSAnLi9zd2FnZ2VyLmNvbXBvbmVudCc7XG5pbXBvcnQge1N3YWdnZXJSb3V0aW5nTW9kdWxlfSBmcm9tICcuL3N3YWdnZXItcm91dGluZy5tb2R1bGUnO1xuXG5ATmdNb2R1bGUoe1xuICBkZWNsYXJhdGlvbnM6IFtTd2FnZ2VyQ29tcG9uZW50XSxcbiAgaW1wb3J0czogW1xuICAgIENvbW1vbk1vZHVsZSxcbiAgICBTd2FnZ2VyUm91dGluZ01vZHVsZVxuICBdLFxuICBleHBvcnRzOiBbU3dhZ2dlckNvbXBvbmVudF1cbn0pXG5leHBvcnQgY2xhc3MgU3dhZ2dlck1vZHVsZSB7XG5cbn1cbiJdfQ==
|
package/esm2015/public_api.js
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright 2015-2020 Ritense BV, the Netherlands.
|
|
3
|
-
*
|
|
4
|
-
* Licensed under EUPL, Version 1.2 (the "License");
|
|
5
|
-
* you may not use this file except in compliance with the License.
|
|
6
|
-
* You may obtain a copy of the License at
|
|
7
|
-
*
|
|
8
|
-
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
9
|
-
*
|
|
10
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
-
* distributed under the License is distributed on an "AS IS" basis,
|
|
12
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
-
* See the License for the specific language governing permissions and
|
|
14
|
-
* limitations under the License.
|
|
15
|
-
*/
|
|
16
|
-
/*
|
|
17
|
-
* Public API Surface of swagger
|
|
18
|
-
*/
|
|
19
|
-
export * from './lib/swagger.module';
|
|
20
|
-
export * from './lib/swagger.component';
|
|
1
|
+
/*
|
|
2
|
+
* Copyright 2015-2020 Ritense BV, the Netherlands.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under EUPL, Version 1.2 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" basis,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
/*
|
|
17
|
+
* Public API Surface of swagger
|
|
18
|
+
*/
|
|
19
|
+
export * from './lib/swagger.module';
|
|
20
|
+
export * from './lib/swagger.component';
|
|
21
21
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljX2FwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3Byb2plY3RzL3ZhbHRpbW8vc3dhZ2dlci9zcmMvcHVibGljX2FwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7Ozs7Ozs7Ozs7Ozs7R0FjRztBQUVIOztHQUVHO0FBRUgsY0FBYyxzQkFBc0IsQ0FBQztBQUNyQyxjQUFjLHlCQUF5QixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLypcbiAqIENvcHlyaWdodCAyMDE1LTIwMjAgUml0ZW5zZSBCViwgdGhlIE5ldGhlcmxhbmRzLlxuICpcbiAqIExpY2Vuc2VkIHVuZGVyIEVVUEwsIFZlcnNpb24gMS4yICh0aGUgXCJMaWNlbnNlXCIpO1xuICogeW91IG1heSBub3QgdXNlIHRoaXMgZmlsZSBleGNlcHQgaW4gY29tcGxpYW5jZSB3aXRoIHRoZSBMaWNlbnNlLlxuICogWW91IG1heSBvYnRhaW4gYSBjb3B5IG9mIHRoZSBMaWNlbnNlIGF0XG4gKlxuICogaHR0cHM6Ly9qb2ludXAuZWMuZXVyb3BhLmV1L2NvbGxlY3Rpb24vZXVwbC9ldXBsLXRleHQtZXVwbC0xMlxuICpcbiAqIFVubGVzcyByZXF1aXJlZCBieSBhcHBsaWNhYmxlIGxhdyBvciBhZ3JlZWQgdG8gaW4gd3JpdGluZywgc29mdHdhcmVcbiAqIGRpc3RyaWJ1dGVkIHVuZGVyIHRoZSBMaWNlbnNlIGlzIGRpc3RyaWJ1dGVkIG9uIGFuIFwiQVMgSVNcIiBiYXNpcyxcbiAqIFdJVEhPVVQgV0FSUkFOVElFUyBPUiBDT05ESVRJT05TIE9GIEFOWSBLSU5ELCBlaXRoZXIgZXhwcmVzcyBvciBpbXBsaWVkLlxuICogU2VlIHRoZSBMaWNlbnNlIGZvciB0aGUgc3BlY2lmaWMgbGFuZ3VhZ2UgZ292ZXJuaW5nIHBlcm1pc3Npb25zIGFuZFxuICogbGltaXRhdGlvbnMgdW5kZXIgdGhlIExpY2Vuc2UuXG4gKi9cblxuLypcbiAqIFB1YmxpYyBBUEkgU3VyZmFjZSBvZiBzd2FnZ2VyXG4gKi9cblxuZXhwb3J0ICogZnJvbSAnLi9saWIvc3dhZ2dlci5tb2R1bGUnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvc3dhZ2dlci5jb21wb25lbnQnO1xuIl19
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Generated bundle index. Do not edit.
|
|
3
|
-
*/
|
|
4
|
-
export * from './public_api';
|
|
5
|
-
export { SwaggerRoutingModule as ɵa } from './lib/swagger-routing.module';
|
|
1
|
+
/**
|
|
2
|
+
* Generated bundle index. Do not edit.
|
|
3
|
+
*/
|
|
4
|
+
export * from './public_api';
|
|
5
|
+
export { SwaggerRoutingModule as ɵa } from './lib/swagger-routing.module';
|
|
6
6
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidmFsdGltby1zd2FnZ2VyLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vcHJvamVjdHMvdmFsdGltby9zd2FnZ2VyL3NyYy92YWx0aW1vLXN3YWdnZXIudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0dBRUc7QUFFSCxjQUFjLGNBQWMsQ0FBQztBQUU3QixPQUFPLEVBQUMsb0JBQW9CLElBQUksRUFBRSxFQUFDLE1BQU0sOEJBQThCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIEdlbmVyYXRlZCBidW5kbGUgaW5kZXguIERvIG5vdCBlZGl0LlxuICovXG5cbmV4cG9ydCAqIGZyb20gJy4vcHVibGljX2FwaSc7XG5cbmV4cG9ydCB7U3dhZ2dlclJvdXRpbmdNb2R1bGUgYXMgybVhfSBmcm9tICcuL2xpYi9zd2FnZ2VyLXJvdXRpbmcubW9kdWxlJzsiXX0=
|
|
@@ -7,144 +7,144 @@ import { ConfigService } from '@valtimo/config';
|
|
|
7
7
|
import { RouterModule } from '@angular/router';
|
|
8
8
|
import { ROLE_USER } from '@valtimo/contract';
|
|
9
9
|
|
|
10
|
-
/*
|
|
11
|
-
* Copyright 2015-2020 Ritense BV, the Netherlands.
|
|
12
|
-
*
|
|
13
|
-
* Licensed under EUPL, Version 1.2 (the "License");
|
|
14
|
-
* you may not use this file except in compliance with the License.
|
|
15
|
-
* You may obtain a copy of the License at
|
|
16
|
-
*
|
|
17
|
-
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
18
|
-
*
|
|
19
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
20
|
-
* distributed under the License is distributed on an "AS IS" basis,
|
|
21
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
22
|
-
* See the License for the specific language governing permissions and
|
|
23
|
-
* limitations under the License.
|
|
24
|
-
*/
|
|
25
|
-
class SwaggerComponent {
|
|
26
|
-
constructor(configService, el, userProviderService, logger) {
|
|
27
|
-
this.configService = configService;
|
|
28
|
-
this.el = el;
|
|
29
|
-
this.userProviderService = userProviderService;
|
|
30
|
-
this.logger = logger;
|
|
31
|
-
this.valtimoSwaggerConfig = configService.config.swagger;
|
|
32
|
-
}
|
|
33
|
-
ngAfterViewInit() {
|
|
34
|
-
this.userProviderService.getToken().then((authToken) => {
|
|
35
|
-
this.logger.debug(`swagger ngAfterViewInit token: ${authToken}`);
|
|
36
|
-
SwaggerUI({
|
|
37
|
-
url: this.valtimoSwaggerConfig.endpointUri,
|
|
38
|
-
domNode: this.el.nativeElement.querySelector('.swagger-container'),
|
|
39
|
-
deepLinking: true,
|
|
40
|
-
presets: [
|
|
41
|
-
SwaggerUI.presets.apis
|
|
42
|
-
],
|
|
43
|
-
requestInterceptor(request) {
|
|
44
|
-
request.headers.Authorization = `Bearer ${authToken}`;
|
|
45
|
-
return request;
|
|
46
|
-
}
|
|
47
|
-
});
|
|
48
|
-
});
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
SwaggerComponent.decorators = [
|
|
52
|
-
{ type: Component, args: [{
|
|
53
|
-
selector: 'valtimo-swagger',
|
|
54
|
-
template: "<!--\n ~ Copyright 2015-2020 Ritense BV, the Netherlands.\n ~\n ~ Licensed under EUPL, Version 1.2 (the \"License\");\n ~ you may not use this file except in compliance with the License.\n ~ You may obtain a copy of the License at\n ~\n ~ https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n ~\n ~ Unless required by applicable law or agreed to in writing, software\n ~ distributed under the License is distributed on an \"AS IS\" basis,\n ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n ~ See the License for the specific language governing permissions and\n ~ limitations under the License.\n -->\n\n<div class=\"container-fluid\">\n <div class='swagger-container'></div>\n</div>\n",
|
|
55
|
-
encapsulation: ViewEncapsulation.None,
|
|
56
|
-
styles: ["/*!\n * Copyright 2015-2020 Ritense BV, the Netherlands.\n *\n * Licensed under EUPL, Version 1.2 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" basis,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */.swagger-ui .info .title{height:auto}.swagger-ui .info .title small pre{background-color:inherit}"]
|
|
57
|
-
},] }
|
|
58
|
-
];
|
|
59
|
-
SwaggerComponent.ctorParameters = () => [
|
|
60
|
-
{ type: ConfigService },
|
|
61
|
-
{ type: ElementRef },
|
|
62
|
-
{ type: UserProviderService },
|
|
63
|
-
{ type: NGXLogger }
|
|
10
|
+
/*
|
|
11
|
+
* Copyright 2015-2020 Ritense BV, the Netherlands.
|
|
12
|
+
*
|
|
13
|
+
* Licensed under EUPL, Version 1.2 (the "License");
|
|
14
|
+
* you may not use this file except in compliance with the License.
|
|
15
|
+
* You may obtain a copy of the License at
|
|
16
|
+
*
|
|
17
|
+
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
18
|
+
*
|
|
19
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
20
|
+
* distributed under the License is distributed on an "AS IS" basis,
|
|
21
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
22
|
+
* See the License for the specific language governing permissions and
|
|
23
|
+
* limitations under the License.
|
|
24
|
+
*/
|
|
25
|
+
class SwaggerComponent {
|
|
26
|
+
constructor(configService, el, userProviderService, logger) {
|
|
27
|
+
this.configService = configService;
|
|
28
|
+
this.el = el;
|
|
29
|
+
this.userProviderService = userProviderService;
|
|
30
|
+
this.logger = logger;
|
|
31
|
+
this.valtimoSwaggerConfig = configService.config.swagger;
|
|
32
|
+
}
|
|
33
|
+
ngAfterViewInit() {
|
|
34
|
+
this.userProviderService.getToken().then((authToken) => {
|
|
35
|
+
this.logger.debug(`swagger ngAfterViewInit token: ${authToken}`);
|
|
36
|
+
SwaggerUI({
|
|
37
|
+
url: this.valtimoSwaggerConfig.endpointUri,
|
|
38
|
+
domNode: this.el.nativeElement.querySelector('.swagger-container'),
|
|
39
|
+
deepLinking: true,
|
|
40
|
+
presets: [
|
|
41
|
+
SwaggerUI.presets.apis
|
|
42
|
+
],
|
|
43
|
+
requestInterceptor(request) {
|
|
44
|
+
request.headers.Authorization = `Bearer ${authToken}`;
|
|
45
|
+
return request;
|
|
46
|
+
}
|
|
47
|
+
});
|
|
48
|
+
});
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
SwaggerComponent.decorators = [
|
|
52
|
+
{ type: Component, args: [{
|
|
53
|
+
selector: 'valtimo-swagger',
|
|
54
|
+
template: "<!--\n ~ Copyright 2015-2020 Ritense BV, the Netherlands.\n ~\n ~ Licensed under EUPL, Version 1.2 (the \"License\");\n ~ you may not use this file except in compliance with the License.\n ~ You may obtain a copy of the License at\n ~\n ~ https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n ~\n ~ Unless required by applicable law or agreed to in writing, software\n ~ distributed under the License is distributed on an \"AS IS\" basis,\n ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n ~ See the License for the specific language governing permissions and\n ~ limitations under the License.\n -->\n\n<div class=\"container-fluid\">\n <div class='swagger-container'></div>\n</div>\n",
|
|
55
|
+
encapsulation: ViewEncapsulation.None,
|
|
56
|
+
styles: ["/*!\n * Copyright 2015-2020 Ritense BV, the Netherlands.\n *\n * Licensed under EUPL, Version 1.2 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" basis,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */.swagger-ui .info .title{height:auto}.swagger-ui .info .title small pre{background-color:inherit}"]
|
|
57
|
+
},] }
|
|
58
|
+
];
|
|
59
|
+
SwaggerComponent.ctorParameters = () => [
|
|
60
|
+
{ type: ConfigService },
|
|
61
|
+
{ type: ElementRef },
|
|
62
|
+
{ type: UserProviderService },
|
|
63
|
+
{ type: NGXLogger }
|
|
64
64
|
];
|
|
65
65
|
|
|
66
|
-
/*
|
|
67
|
-
* Copyright 2015-2020 Ritense BV, the Netherlands.
|
|
68
|
-
*
|
|
69
|
-
* Licensed under EUPL, Version 1.2 (the "License");
|
|
70
|
-
* you may not use this file except in compliance with the License.
|
|
71
|
-
* You may obtain a copy of the License at
|
|
72
|
-
*
|
|
73
|
-
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
74
|
-
*
|
|
75
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
76
|
-
* distributed under the License is distributed on an "AS IS" basis,
|
|
77
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
78
|
-
* See the License for the specific language governing permissions and
|
|
79
|
-
* limitations under the License.
|
|
80
|
-
*/
|
|
81
|
-
const ɵ0 = { title: 'Swagger', roles: [ROLE_USER] };
|
|
82
|
-
const routes = [
|
|
83
|
-
{
|
|
84
|
-
path: 'swagger',
|
|
85
|
-
component: SwaggerComponent,
|
|
86
|
-
canActivate: [AuthGuardService],
|
|
87
|
-
data: ɵ0
|
|
88
|
-
}
|
|
89
|
-
];
|
|
90
|
-
class SwaggerRoutingModule {
|
|
91
|
-
}
|
|
92
|
-
SwaggerRoutingModule.decorators = [
|
|
93
|
-
{ type: NgModule, args: [{
|
|
94
|
-
imports: [
|
|
95
|
-
CommonModule,
|
|
96
|
-
RouterModule.forChild(routes),
|
|
97
|
-
],
|
|
98
|
-
exports: [RouterModule]
|
|
99
|
-
},] }
|
|
66
|
+
/*
|
|
67
|
+
* Copyright 2015-2020 Ritense BV, the Netherlands.
|
|
68
|
+
*
|
|
69
|
+
* Licensed under EUPL, Version 1.2 (the "License");
|
|
70
|
+
* you may not use this file except in compliance with the License.
|
|
71
|
+
* You may obtain a copy of the License at
|
|
72
|
+
*
|
|
73
|
+
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
74
|
+
*
|
|
75
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
76
|
+
* distributed under the License is distributed on an "AS IS" basis,
|
|
77
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
78
|
+
* See the License for the specific language governing permissions and
|
|
79
|
+
* limitations under the License.
|
|
80
|
+
*/
|
|
81
|
+
const ɵ0 = { title: 'Swagger', roles: [ROLE_USER] };
|
|
82
|
+
const routes = [
|
|
83
|
+
{
|
|
84
|
+
path: 'swagger',
|
|
85
|
+
component: SwaggerComponent,
|
|
86
|
+
canActivate: [AuthGuardService],
|
|
87
|
+
data: ɵ0
|
|
88
|
+
}
|
|
89
|
+
];
|
|
90
|
+
class SwaggerRoutingModule {
|
|
91
|
+
}
|
|
92
|
+
SwaggerRoutingModule.decorators = [
|
|
93
|
+
{ type: NgModule, args: [{
|
|
94
|
+
imports: [
|
|
95
|
+
CommonModule,
|
|
96
|
+
RouterModule.forChild(routes),
|
|
97
|
+
],
|
|
98
|
+
exports: [RouterModule]
|
|
99
|
+
},] }
|
|
100
100
|
];
|
|
101
101
|
|
|
102
|
-
/*
|
|
103
|
-
* Copyright 2015-2020 Ritense BV, the Netherlands.
|
|
104
|
-
*
|
|
105
|
-
* Licensed under EUPL, Version 1.2 (the "License");
|
|
106
|
-
* you may not use this file except in compliance with the License.
|
|
107
|
-
* You may obtain a copy of the License at
|
|
108
|
-
*
|
|
109
|
-
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
110
|
-
*
|
|
111
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
112
|
-
* distributed under the License is distributed on an "AS IS" basis,
|
|
113
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
114
|
-
* See the License for the specific language governing permissions and
|
|
115
|
-
* limitations under the License.
|
|
116
|
-
*/
|
|
117
|
-
class SwaggerModule {
|
|
118
|
-
}
|
|
119
|
-
SwaggerModule.decorators = [
|
|
120
|
-
{ type: NgModule, args: [{
|
|
121
|
-
declarations: [SwaggerComponent],
|
|
122
|
-
imports: [
|
|
123
|
-
CommonModule,
|
|
124
|
-
SwaggerRoutingModule
|
|
125
|
-
],
|
|
126
|
-
exports: [SwaggerComponent]
|
|
127
|
-
},] }
|
|
102
|
+
/*
|
|
103
|
+
* Copyright 2015-2020 Ritense BV, the Netherlands.
|
|
104
|
+
*
|
|
105
|
+
* Licensed under EUPL, Version 1.2 (the "License");
|
|
106
|
+
* you may not use this file except in compliance with the License.
|
|
107
|
+
* You may obtain a copy of the License at
|
|
108
|
+
*
|
|
109
|
+
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
110
|
+
*
|
|
111
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
112
|
+
* distributed under the License is distributed on an "AS IS" basis,
|
|
113
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
114
|
+
* See the License for the specific language governing permissions and
|
|
115
|
+
* limitations under the License.
|
|
116
|
+
*/
|
|
117
|
+
class SwaggerModule {
|
|
118
|
+
}
|
|
119
|
+
SwaggerModule.decorators = [
|
|
120
|
+
{ type: NgModule, args: [{
|
|
121
|
+
declarations: [SwaggerComponent],
|
|
122
|
+
imports: [
|
|
123
|
+
CommonModule,
|
|
124
|
+
SwaggerRoutingModule
|
|
125
|
+
],
|
|
126
|
+
exports: [SwaggerComponent]
|
|
127
|
+
},] }
|
|
128
128
|
];
|
|
129
129
|
|
|
130
|
-
/*
|
|
131
|
-
* Copyright 2015-2020 Ritense BV, the Netherlands.
|
|
132
|
-
*
|
|
133
|
-
* Licensed under EUPL, Version 1.2 (the "License");
|
|
134
|
-
* you may not use this file except in compliance with the License.
|
|
135
|
-
* You may obtain a copy of the License at
|
|
136
|
-
*
|
|
137
|
-
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
138
|
-
*
|
|
139
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
140
|
-
* distributed under the License is distributed on an "AS IS" basis,
|
|
141
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
142
|
-
* See the License for the specific language governing permissions and
|
|
143
|
-
* limitations under the License.
|
|
130
|
+
/*
|
|
131
|
+
* Copyright 2015-2020 Ritense BV, the Netherlands.
|
|
132
|
+
*
|
|
133
|
+
* Licensed under EUPL, Version 1.2 (the "License");
|
|
134
|
+
* you may not use this file except in compliance with the License.
|
|
135
|
+
* You may obtain a copy of the License at
|
|
136
|
+
*
|
|
137
|
+
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
138
|
+
*
|
|
139
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
140
|
+
* distributed under the License is distributed on an "AS IS" basis,
|
|
141
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
142
|
+
* See the License for the specific language governing permissions and
|
|
143
|
+
* limitations under the License.
|
|
144
144
|
*/
|
|
145
145
|
|
|
146
|
-
/**
|
|
147
|
-
* Generated bundle index. Do not edit.
|
|
146
|
+
/**
|
|
147
|
+
* Generated bundle index. Do not edit.
|
|
148
148
|
*/
|
|
149
149
|
|
|
150
150
|
export { SwaggerComponent, SwaggerModule, SwaggerRoutingModule as ɵa };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare class SwaggerRoutingModule {
|
|
2
|
-
}
|
|
1
|
+
export declare class SwaggerRoutingModule {
|
|
2
|
+
}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { AfterViewInit, ElementRef } from '@angular/core';
|
|
2
|
-
import { UserProviderService } from '@valtimo/security';
|
|
3
|
-
import { NGXLogger } from 'ngx-logger';
|
|
4
|
-
import { ConfigService } from '@valtimo/config';
|
|
5
|
-
export declare class SwaggerComponent implements AfterViewInit {
|
|
6
|
-
private configService;
|
|
7
|
-
private el;
|
|
8
|
-
private userProviderService;
|
|
9
|
-
private logger;
|
|
10
|
-
private valtimoSwaggerConfig;
|
|
11
|
-
constructor(configService: ConfigService, el: ElementRef, userProviderService: UserProviderService, logger: NGXLogger);
|
|
12
|
-
ngAfterViewInit(): void;
|
|
13
|
-
}
|
|
1
|
+
import { AfterViewInit, ElementRef } from '@angular/core';
|
|
2
|
+
import { UserProviderService } from '@valtimo/security';
|
|
3
|
+
import { NGXLogger } from 'ngx-logger';
|
|
4
|
+
import { ConfigService } from '@valtimo/config';
|
|
5
|
+
export declare class SwaggerComponent implements AfterViewInit {
|
|
6
|
+
private configService;
|
|
7
|
+
private el;
|
|
8
|
+
private userProviderService;
|
|
9
|
+
private logger;
|
|
10
|
+
private valtimoSwaggerConfig;
|
|
11
|
+
constructor(configService: ConfigService, el: ElementRef, userProviderService: UserProviderService, logger: NGXLogger);
|
|
12
|
+
ngAfterViewInit(): void;
|
|
13
|
+
}
|
package/lib/swagger.module.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare class SwaggerModule {
|
|
2
|
-
}
|
|
1
|
+
export declare class SwaggerModule {
|
|
2
|
+
}
|
package/package.json
CHANGED
package/public_api.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './lib/swagger.module';
|
|
2
|
-
export * from './lib/swagger.component';
|
|
1
|
+
export * from './lib/swagger.module';
|
|
2
|
+
export * from './lib/swagger.component';
|
package/valtimo-swagger.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Generated bundle index. Do not edit.
|
|
3
|
-
*/
|
|
4
|
-
export * from './public_api';
|
|
5
|
-
export { SwaggerRoutingModule as ɵa } from './lib/swagger-routing.module';
|
|
1
|
+
/**
|
|
2
|
+
* Generated bundle index. Do not edit.
|
|
3
|
+
*/
|
|
4
|
+
export * from './public_api';
|
|
5
|
+
export { SwaggerRoutingModule as ɵa } from './lib/swagger-routing.module';
|