@betterportal/hello-view 10.1.60 → 10.1.62
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/lib/bp-contracts/org.betterportal.hello-view.json +639 -629
- package/lib/plugins/service-betterportal-hello-view/.bp-generated/registry.d.ts.map +1 -1
- package/lib/plugins/service-betterportal-hello-view/.bp-generated/registry.js +13 -48
- package/lib/plugins/service-betterportal-hello-view/.bp-generated/registry.js.map +1 -1
- package/lib/plugins/service-betterportal-hello-view/bp-routes/about/GET.d.ts +2 -0
- package/lib/plugins/service-betterportal-hello-view/bp-routes/about/GET.d.ts.map +1 -1
- package/lib/plugins/service-betterportal-hello-view/bp-routes/about/GET.js +2 -0
- package/lib/plugins/service-betterportal-hello-view/bp-routes/about/GET.js.map +1 -1
- package/lib/plugins/service-betterportal-hello-view/bp-routes/about/index.d.ts +1 -1
- package/lib/plugins/service-betterportal-hello-view/bp-routes/about/index.d.ts.map +1 -1
- package/lib/plugins/service-betterportal-hello-view/bp-routes/about/index.js +1 -1
- package/lib/plugins/service-betterportal-hello-view/bp-routes/about/index.js.map +1 -1
- package/lib/plugins/service-betterportal-hello-view/bp-routes/delayed/GET.d.ts +2 -0
- package/lib/plugins/service-betterportal-hello-view/bp-routes/delayed/GET.d.ts.map +1 -1
- package/lib/plugins/service-betterportal-hello-view/bp-routes/delayed/GET.js +2 -0
- package/lib/plugins/service-betterportal-hello-view/bp-routes/delayed/GET.js.map +1 -1
- package/lib/plugins/service-betterportal-hello-view/bp-routes/delayed/index.d.ts +1 -1
- package/lib/plugins/service-betterportal-hello-view/bp-routes/delayed/index.d.ts.map +1 -1
- package/lib/plugins/service-betterportal-hello-view/bp-routes/delayed/index.js +1 -1
- package/lib/plugins/service-betterportal-hello-view/bp-routes/delayed/index.js.map +1 -1
- package/lib/plugins/service-betterportal-hello-view/bp-routes/hello/GET.d.ts +3 -1
- package/lib/plugins/service-betterportal-hello-view/bp-routes/hello/GET.d.ts.map +1 -1
- package/lib/plugins/service-betterportal-hello-view/bp-routes/hello/GET.js +3 -1
- package/lib/plugins/service-betterportal-hello-view/bp-routes/hello/GET.js.map +1 -1
- package/lib/plugins/service-betterportal-hello-view/bp-routes/hello/index.d.ts +1 -1
- package/lib/plugins/service-betterportal-hello-view/bp-routes/hello/index.d.ts.map +1 -1
- package/lib/plugins/service-betterportal-hello-view/bp-routes/hello/index.js +1 -1
- package/lib/plugins/service-betterportal-hello-view/bp-routes/hello/index.js.map +1 -1
- package/lib/plugins/service-betterportal-hello-view/bp-routes/landing/GET.d.ts +2 -0
- package/lib/plugins/service-betterportal-hello-view/bp-routes/landing/GET.d.ts.map +1 -1
- package/lib/plugins/service-betterportal-hello-view/bp-routes/landing/GET.js +2 -0
- package/lib/plugins/service-betterportal-hello-view/bp-routes/landing/GET.js.map +1 -1
- package/lib/plugins/service-betterportal-hello-view/bp-routes/landing/index.d.ts +1 -1
- package/lib/plugins/service-betterportal-hello-view/bp-routes/landing/index.d.ts.map +1 -1
- package/lib/plugins/service-betterportal-hello-view/bp-routes/landing/index.js +1 -1
- package/lib/plugins/service-betterportal-hello-view/bp-routes/landing/index.js.map +1 -1
- package/lib/schemas/service-betterportal-hello-view.json +1 -1
- package/lib/schemas/service-betterportal-hello-view.plugin.json +1 -1
- package/package.json +3 -3
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"registry.d.ts","sourceRoot":"","sources":["../../../../src/plugins/service-betterportal-hello-view/.bp-generated/registry.ts"],"names":[],"mappings":"AA0BA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,yBAAyB,CAAC;AAEpE,eAAO,MAAM,QAAQ,EAAE,
|
|
1
|
+
{"version":3,"file":"registry.d.ts","sourceRoot":"","sources":["../../../../src/plugins/service-betterportal-hello-view/.bp-generated/registry.ts"],"names":[],"mappings":"AA0BA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,yBAAyB,CAAC;AAEpE,eAAO,MAAM,QAAQ,EAAE,oBAsGtB,CAAC"}
|
|
@@ -31,24 +31,16 @@ export const registry = {
|
|
|
31
31
|
path: "/about",
|
|
32
32
|
methods: ["GET"],
|
|
33
33
|
paramNames: [],
|
|
34
|
-
schemas: {
|
|
35
|
-
|
|
36
|
-
query: aboutGETRoute.QuerySchema,
|
|
37
|
-
headers: aboutGETRoute.HeadersSchema,
|
|
38
|
-
request: aboutGETRoute.RequestSchema
|
|
39
|
-
},
|
|
40
|
-
methodRoutes: { GET: { method: "GET", schemas: {
|
|
34
|
+
schemas: {},
|
|
35
|
+
methodRoutes: { GET: { method: "GET", operationId: aboutGETRoute.operationId, title: aboutGETRoute.title, description: aboutGETRoute.description, schemas: {
|
|
41
36
|
response: aboutGETRoute.ResponseSchema,
|
|
42
37
|
query: aboutGETRoute.QuerySchema,
|
|
43
38
|
headers: aboutGETRoute.HeadersSchema,
|
|
44
39
|
request: aboutGETRoute.RequestSchema
|
|
45
|
-
}, handler: aboutGETRoute.default } },
|
|
40
|
+
}, handler: aboutGETRoute.default, auth: aboutGETRoute.auth, cacheHints: aboutGETRoute.cacheHints, demoScenarios: [] } },
|
|
46
41
|
handlers: { GET: aboutGETRoute.default },
|
|
47
42
|
title: aboutRoute.title,
|
|
48
43
|
description: aboutRoute.description,
|
|
49
|
-
auth: aboutRoute.auth,
|
|
50
|
-
cacheHints: aboutRoute.cacheHints,
|
|
51
|
-
demoScenarios: [],
|
|
52
44
|
renderers: {
|
|
53
45
|
"bootstrap5": {
|
|
54
46
|
pages: [{ rendererId: "default", type: "page", method: "GET", render: aboutBootstrap5PageGET.render }],
|
|
@@ -62,24 +54,16 @@ export const registry = {
|
|
|
62
54
|
path: "/delayed",
|
|
63
55
|
methods: ["GET"],
|
|
64
56
|
paramNames: [],
|
|
65
|
-
schemas: {
|
|
66
|
-
|
|
67
|
-
query: delayedGETRoute.QuerySchema,
|
|
68
|
-
item: delayedGETRoute.ItemSchema,
|
|
69
|
-
summary: delayedGETRoute.SummarySchema
|
|
70
|
-
},
|
|
71
|
-
methodRoutes: { GET: { method: "GET", schemas: {
|
|
57
|
+
schemas: {},
|
|
58
|
+
methodRoutes: { GET: { method: "GET", operationId: delayedGETRoute.operationId, title: delayedGETRoute.title, description: delayedGETRoute.description, schemas: {
|
|
72
59
|
response: delayedGETRoute.default.responseSchema,
|
|
73
60
|
query: delayedGETRoute.QuerySchema,
|
|
74
61
|
item: delayedGETRoute.ItemSchema,
|
|
75
62
|
summary: delayedGETRoute.SummarySchema
|
|
76
|
-
}, handler: delayedGETRoute.default } },
|
|
63
|
+
}, handler: delayedGETRoute.default, auth: delayedGETRoute.auth, cacheHints: delayedGETRoute.cacheHints, demoScenarios: [] } },
|
|
77
64
|
handlers: { GET: delayedGETRoute.default },
|
|
78
65
|
title: delayedRoute.title,
|
|
79
66
|
description: delayedRoute.description,
|
|
80
|
-
auth: delayedRoute.auth,
|
|
81
|
-
cacheHints: delayedRoute.cacheHints,
|
|
82
|
-
demoScenarios: [],
|
|
83
67
|
renderers: {
|
|
84
68
|
"bootstrap5": {
|
|
85
69
|
pages: [{ rendererId: "default", type: "page", method: "GET", render: delayedBootstrap5PageGET.render }],
|
|
@@ -94,24 +78,14 @@ export const registry = {
|
|
|
94
78
|
path: "/hello",
|
|
95
79
|
methods: ["GET"],
|
|
96
80
|
paramNames: [],
|
|
97
|
-
schemas: {
|
|
98
|
-
|
|
99
|
-
query: helloGETRoute.QuerySchema,
|
|
100
|
-
headers: helloGETRoute.HeadersSchema,
|
|
101
|
-
request: helloGETRoute.RequestSchema
|
|
102
|
-
},
|
|
103
|
-
methodRoutes: { GET: { method: "GET", schemas: {
|
|
81
|
+
schemas: {},
|
|
82
|
+
methodRoutes: { GET: { method: "GET", operationId: helloGETRoute.operationId, title: helloGETRoute.title, description: helloGETRoute.description, schemas: {
|
|
104
83
|
response: helloGETRoute.ResponseSchema,
|
|
105
|
-
query: helloGETRoute.QuerySchema
|
|
106
|
-
|
|
107
|
-
request: helloGETRoute.RequestSchema
|
|
108
|
-
}, handler: helloGETRoute.default } },
|
|
84
|
+
query: helloGETRoute.QuerySchema
|
|
85
|
+
}, handler: helloGETRoute.default, auth: helloGETRoute.auth, cacheHints: helloGETRoute.cacheHints, demoScenarios: helloGETRoute.demoScenarios } },
|
|
109
86
|
handlers: { GET: helloGETRoute.default },
|
|
110
87
|
title: helloRoute.title,
|
|
111
88
|
description: helloRoute.description,
|
|
112
|
-
auth: helloRoute.auth,
|
|
113
|
-
cacheHints: helloRoute.cacheHints,
|
|
114
|
-
demoScenarios: helloRoute.demoScenarios,
|
|
115
89
|
renderers: {
|
|
116
90
|
"bootstrap5": {
|
|
117
91
|
pages: [{ rendererId: "default", type: "page", method: "GET", render: helloBootstrap5PageGET.render }],
|
|
@@ -131,25 +105,16 @@ export const registry = {
|
|
|
131
105
|
path: "/landing",
|
|
132
106
|
methods: ["GET"],
|
|
133
107
|
paramNames: [],
|
|
134
|
-
schemas: {
|
|
135
|
-
|
|
136
|
-
query: landingGETRoute.QuerySchema,
|
|
137
|
-
headers: landingGETRoute.HeadersSchema,
|
|
138
|
-
request: landingGETRoute.RequestSchema
|
|
139
|
-
},
|
|
140
|
-
methodRoutes: { GET: { method: "GET", schemas: {
|
|
108
|
+
schemas: {},
|
|
109
|
+
methodRoutes: { GET: { method: "GET", operationId: landingGETRoute.operationId, title: landingGETRoute.title, description: landingGETRoute.description, schemas: {
|
|
141
110
|
response: landingGETRoute.ResponseSchema,
|
|
142
111
|
query: landingGETRoute.QuerySchema,
|
|
143
112
|
headers: landingGETRoute.HeadersSchema,
|
|
144
113
|
request: landingGETRoute.RequestSchema
|
|
145
|
-
}, handler: landingGETRoute.default } },
|
|
114
|
+
}, handler: landingGETRoute.default, auth: landingGETRoute.auth, cacheHints: landingGETRoute.cacheHints, demoScenarios: [], chrome: landingGETRoute.chrome } },
|
|
146
115
|
handlers: { GET: landingGETRoute.default },
|
|
147
116
|
title: landingRoute.title,
|
|
148
117
|
description: landingRoute.description,
|
|
149
|
-
auth: landingRoute.auth,
|
|
150
|
-
chrome: landingRoute.chrome,
|
|
151
|
-
cacheHints: landingRoute.cacheHints,
|
|
152
|
-
demoScenarios: [],
|
|
153
118
|
renderers: {
|
|
154
119
|
"bootstrap5": {
|
|
155
120
|
pages: [{ rendererId: "default", type: "page", method: "GET", render: landingBootstrap5PageGET.render }],
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"registry.js","sourceRoot":"","sources":["../../../../src/plugins/service-betterportal-hello-view/.bp-generated/registry.ts"],"names":[],"mappings":"AAAA,uDAAuD;AACvD,OAAO,KAAK,UAAU,MAAM,6BAA6B,CAAC;AAC1D,OAAO,KAAK,aAAa,MAAM,2BAA2B,CAAC;AAC3D,OAAO,KAAK,sBAAsB,MAAM,gDAAgD,CAAC;AACzF,OAAO,KAAK,YAAY,MAAM,+BAA+B,CAAC;AAC9D,OAAO,KAAK,eAAe,MAAM,6BAA6B,CAAC;AAC/D,OAAO,KAAK,wBAAwB,MAAM,kDAAkD,CAAC;AAC7F,OAAO,KAAK,uBAAuB,MAAM,2DAA2D,CAAC;AACrG,OAAO,KAAK,UAAU,MAAM,6BAA6B,CAAC;AAC1D,OAAO,KAAK,aAAa,MAAM,2BAA2B,CAAC;AAC3D,OAAO,KAAK,QAAQ,MAAM,2BAA2B,CAAC;AACtD,OAAO,KAAK,sBAAsB,MAAM,gDAAgD,CAAC;AACzF,OAAO,KAAK,0BAA0B,MAAM,2DAA2D,CAAC;AACxG,OAAO,KAAK,6BAA6B,MAAM,2DAA2D,CAAC;AAC3G,OAAO,KAAK,4BAA4B,MAAM,6DAA6D,CAAC;AAC5G,OAAO,KAAK,+BAA+B,MAAM,+DAA+D,CAAC;AACjH,OAAO,KAAK,8BAA8B,MAAM,8DAA8D,CAAC;AAC/G,OAAO,KAAK,kCAAkC,MAAM,kEAAkE,CAAC;AACvH,OAAO,KAAK,+BAA+B,MAAM,+DAA+D,CAAC;AACjH,OAAO,KAAK,qCAAqC,MAAM,qEAAqE,CAAC;AAC7H,OAAO,KAAK,kCAAkC,MAAM,kEAAkE,CAAC;AACvH,OAAO,KAAK,kCAAkC,MAAM,kEAAkE,CAAC;AACvH,OAAO,KAAK,oBAAoB,MAAM,8CAA8C,CAAC;AACrF,OAAO,KAAK,YAAY,MAAM,+BAA+B,CAAC;AAC9D,OAAO,KAAK,eAAe,MAAM,6BAA6B,CAAC;AAC/D,OAAO,KAAK,wBAAwB,MAAM,kDAAkD,CAAC;AAG7F,MAAM,CAAC,MAAM,QAAQ,GAAyB;IAC5C,MAAM,EAAE;QACN;YACE,MAAM,EAAE,aAAa;YACrB,IAAI,EAAE,QAAQ;YACd,OAAO,EAAE,CAAC,KAAK,CAAC;YAChB,UAAU,EAAE,EAAE;YACd,OAAO,EAAE;
|
|
1
|
+
{"version":3,"file":"registry.js","sourceRoot":"","sources":["../../../../src/plugins/service-betterportal-hello-view/.bp-generated/registry.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
export declare const operationId = "about.view";
|
|
2
|
+
export { title, description, auth, cacheHints } from "./route.impl.js";
|
|
1
3
|
export { ResponseSchema, QuerySchema, HeadersSchema, RequestSchema } from "./route.impl.js";
|
|
2
4
|
export { handleGet as default } from "./route.impl.js";
|
|
3
5
|
//# sourceMappingURL=GET.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GET.d.ts","sourceRoot":"","sources":["../../../../../src/plugins/service-betterportal-hello-view/bp-routes/about/GET.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,WAAW,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAC5F,OAAO,EAAE,SAAS,IAAI,OAAO,EAAE,MAAM,iBAAiB,CAAC"}
|
|
1
|
+
{"version":3,"file":"GET.d.ts","sourceRoot":"","sources":["../../../../../src/plugins/service-betterportal-hello-view/bp-routes/about/GET.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,WAAW,eAAe,CAAC;AACxC,OAAO,EAAE,KAAK,EAAE,WAAW,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AACvE,OAAO,EAAE,cAAc,EAAE,WAAW,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAC5F,OAAO,EAAE,SAAS,IAAI,OAAO,EAAE,MAAM,iBAAiB,CAAC"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
export const operationId = "about.view";
|
|
2
|
+
export { title, description, auth, cacheHints } from "./route.impl.js";
|
|
1
3
|
export { ResponseSchema, QuerySchema, HeadersSchema, RequestSchema } from "./route.impl.js";
|
|
2
4
|
export { handleGet as default } from "./route.impl.js";
|
|
3
5
|
//# sourceMappingURL=GET.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GET.js","sourceRoot":"","sources":["../../../../../src/plugins/service-betterportal-hello-view/bp-routes/about/GET.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,WAAW,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAC5F,OAAO,EAAE,SAAS,IAAI,OAAO,EAAE,MAAM,iBAAiB,CAAC"}
|
|
1
|
+
{"version":3,"file":"GET.js","sourceRoot":"","sources":["../../../../../src/plugins/service-betterportal-hello-view/bp-routes/about/GET.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,WAAW,GAAG,YAAY,CAAC;AACxC,OAAO,EAAE,KAAK,EAAE,WAAW,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AACvE,OAAO,EAAE,cAAc,EAAE,WAAW,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAC5F,OAAO,EAAE,SAAS,IAAI,OAAO,EAAE,MAAM,iBAAiB,CAAC"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { title, description
|
|
1
|
+
export { title, description } from "./route.impl.js";
|
|
2
2
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/plugins/service-betterportal-hello-view/bp-routes/about/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,WAAW,EAAE,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/plugins/service-betterportal-hello-view/bp-routes/about/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { title, description
|
|
1
|
+
export { title, description } from "./route.impl.js";
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/plugins/service-betterportal-hello-view/bp-routes/about/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,WAAW,EAAE,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/plugins/service-betterportal-hello-view/bp-routes/about/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
export declare const operationId = "delayed.stream";
|
|
2
|
+
export { title, description, auth, cacheHints } from "./route.impl.js";
|
|
1
3
|
export { QuerySchema, ItemSchema, SummarySchema } from "./route.impl.js";
|
|
2
4
|
export { handleGet as default } from "./route.impl.js";
|
|
3
5
|
//# sourceMappingURL=GET.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GET.d.ts","sourceRoot":"","sources":["../../../../../src/plugins/service-betterportal-hello-view/bp-routes/delayed/GET.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,UAAU,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AACzE,OAAO,EAAE,SAAS,IAAI,OAAO,EAAE,MAAM,iBAAiB,CAAC"}
|
|
1
|
+
{"version":3,"file":"GET.d.ts","sourceRoot":"","sources":["../../../../../src/plugins/service-betterportal-hello-view/bp-routes/delayed/GET.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,WAAW,mBAAmB,CAAC;AAC5C,OAAO,EAAE,KAAK,EAAE,WAAW,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AACvE,OAAO,EAAE,WAAW,EAAE,UAAU,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AACzE,OAAO,EAAE,SAAS,IAAI,OAAO,EAAE,MAAM,iBAAiB,CAAC"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
export const operationId = "delayed.stream";
|
|
2
|
+
export { title, description, auth, cacheHints } from "./route.impl.js";
|
|
1
3
|
export { QuerySchema, ItemSchema, SummarySchema } from "./route.impl.js";
|
|
2
4
|
export { handleGet as default } from "./route.impl.js";
|
|
3
5
|
//# sourceMappingURL=GET.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GET.js","sourceRoot":"","sources":["../../../../../src/plugins/service-betterportal-hello-view/bp-routes/delayed/GET.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,UAAU,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AACzE,OAAO,EAAE,SAAS,IAAI,OAAO,EAAE,MAAM,iBAAiB,CAAC"}
|
|
1
|
+
{"version":3,"file":"GET.js","sourceRoot":"","sources":["../../../../../src/plugins/service-betterportal-hello-view/bp-routes/delayed/GET.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,WAAW,GAAG,gBAAgB,CAAC;AAC5C,OAAO,EAAE,KAAK,EAAE,WAAW,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AACvE,OAAO,EAAE,WAAW,EAAE,UAAU,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AACzE,OAAO,EAAE,SAAS,IAAI,OAAO,EAAE,MAAM,iBAAiB,CAAC"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { title, description
|
|
1
|
+
export { title, description } from "./route.impl.js";
|
|
2
2
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/plugins/service-betterportal-hello-view/bp-routes/delayed/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,WAAW,EAAE,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/plugins/service-betterportal-hello-view/bp-routes/delayed/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { title, description
|
|
1
|
+
export { title, description } from "./route.impl.js";
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/plugins/service-betterportal-hello-view/bp-routes/delayed/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,WAAW,EAAE,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/plugins/service-betterportal-hello-view/bp-routes/delayed/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
-
export
|
|
1
|
+
export declare const operationId = "hello.view";
|
|
2
|
+
export { title, description, auth, cacheHints, demoScenarios } from "./route.impl.js";
|
|
3
|
+
export { ResponseSchema, QuerySchema } from "./route.impl.js";
|
|
2
4
|
export { handleGet as default } from "./route.impl.js";
|
|
3
5
|
//# sourceMappingURL=GET.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GET.d.ts","sourceRoot":"","sources":["../../../../../src/plugins/service-betterportal-hello-view/bp-routes/hello/GET.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"GET.d.ts","sourceRoot":"","sources":["../../../../../src/plugins/service-betterportal-hello-view/bp-routes/hello/GET.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,WAAW,eAAe,CAAC;AACxC,OAAO,EAAE,KAAK,EAAE,WAAW,EAAE,IAAI,EAAE,UAAU,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AACtF,OAAO,EAAE,cAAc,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAC9D,OAAO,EAAE,SAAS,IAAI,OAAO,EAAE,MAAM,iBAAiB,CAAC"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
-
export
|
|
1
|
+
export const operationId = "hello.view";
|
|
2
|
+
export { title, description, auth, cacheHints, demoScenarios } from "./route.impl.js";
|
|
3
|
+
export { ResponseSchema, QuerySchema } from "./route.impl.js";
|
|
2
4
|
export { handleGet as default } from "./route.impl.js";
|
|
3
5
|
//# sourceMappingURL=GET.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GET.js","sourceRoot":"","sources":["../../../../../src/plugins/service-betterportal-hello-view/bp-routes/hello/GET.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"GET.js","sourceRoot":"","sources":["../../../../../src/plugins/service-betterportal-hello-view/bp-routes/hello/GET.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,WAAW,GAAG,YAAY,CAAC;AACxC,OAAO,EAAE,KAAK,EAAE,WAAW,EAAE,IAAI,EAAE,UAAU,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AACtF,OAAO,EAAE,cAAc,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAC9D,OAAO,EAAE,SAAS,IAAI,OAAO,EAAE,MAAM,iBAAiB,CAAC"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { title, description
|
|
1
|
+
export { title, description } from "./route.impl.js";
|
|
2
2
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/plugins/service-betterportal-hello-view/bp-routes/hello/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,WAAW,EAAE,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/plugins/service-betterportal-hello-view/bp-routes/hello/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { title, description
|
|
1
|
+
export { title, description } from "./route.impl.js";
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/plugins/service-betterportal-hello-view/bp-routes/hello/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,WAAW,EAAE,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/plugins/service-betterportal-hello-view/bp-routes/hello/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
export declare const operationId = "landing.view";
|
|
2
|
+
export { title, description, chrome, auth, cacheHints } from "./route.impl.js";
|
|
1
3
|
export { ResponseSchema, QuerySchema, HeadersSchema, RequestSchema } from "./route.impl.js";
|
|
2
4
|
export { handleGet as default } from "./route.impl.js";
|
|
3
5
|
//# sourceMappingURL=GET.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GET.d.ts","sourceRoot":"","sources":["../../../../../src/plugins/service-betterportal-hello-view/bp-routes/landing/GET.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,WAAW,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAC5F,OAAO,EAAE,SAAS,IAAI,OAAO,EAAE,MAAM,iBAAiB,CAAC"}
|
|
1
|
+
{"version":3,"file":"GET.d.ts","sourceRoot":"","sources":["../../../../../src/plugins/service-betterportal-hello-view/bp-routes/landing/GET.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,WAAW,iBAAiB,CAAC;AAC1C,OAAO,EAAE,KAAK,EAAE,WAAW,EAAE,MAAM,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AAC/E,OAAO,EAAE,cAAc,EAAE,WAAW,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAC5F,OAAO,EAAE,SAAS,IAAI,OAAO,EAAE,MAAM,iBAAiB,CAAC"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
export const operationId = "landing.view";
|
|
2
|
+
export { title, description, chrome, auth, cacheHints } from "./route.impl.js";
|
|
1
3
|
export { ResponseSchema, QuerySchema, HeadersSchema, RequestSchema } from "./route.impl.js";
|
|
2
4
|
export { handleGet as default } from "./route.impl.js";
|
|
3
5
|
//# sourceMappingURL=GET.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GET.js","sourceRoot":"","sources":["../../../../../src/plugins/service-betterportal-hello-view/bp-routes/landing/GET.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,WAAW,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAC5F,OAAO,EAAE,SAAS,IAAI,OAAO,EAAE,MAAM,iBAAiB,CAAC"}
|
|
1
|
+
{"version":3,"file":"GET.js","sourceRoot":"","sources":["../../../../../src/plugins/service-betterportal-hello-view/bp-routes/landing/GET.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,WAAW,GAAG,cAAc,CAAC;AAC1C,OAAO,EAAE,KAAK,EAAE,WAAW,EAAE,MAAM,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AAC/E,OAAO,EAAE,cAAc,EAAE,WAAW,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAC5F,OAAO,EAAE,SAAS,IAAI,OAAO,EAAE,MAAM,iBAAiB,CAAC"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { title, description
|
|
1
|
+
export { title, description } from "./route.impl.js";
|
|
2
2
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/plugins/service-betterportal-hello-view/bp-routes/landing/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,WAAW,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/plugins/service-betterportal-hello-view/bp-routes/landing/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { title, description
|
|
1
|
+
export { title, description } from "./route.impl.js";
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/plugins/service-betterportal-hello-view/bp-routes/landing/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,WAAW,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/plugins/service-betterportal-hello-view/bp-routes/landing/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@betterportal/hello-view",
|
|
3
|
-
"version": "10.1.
|
|
3
|
+
"version": "10.1.62",
|
|
4
4
|
"description": "BetterPortal v10 example service plugin for Node.js",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "src/index.ts",
|
|
@@ -34,8 +34,8 @@
|
|
|
34
34
|
"typescript": "^6.0.3"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@betterportal/framework": "10.1.
|
|
38
|
-
"@betterportal/plugin-bsb": "10.1.
|
|
37
|
+
"@betterportal/framework": "10.1.62",
|
|
38
|
+
"@betterportal/plugin-bsb": "10.1.62",
|
|
39
39
|
"@bsb/base": "^9.6.60",
|
|
40
40
|
"anyvali": "^1.0.6",
|
|
41
41
|
"jsx-htmx": "4.0.0-beta6"
|