@opra/common 1.0.0-alpha.33 → 1.0.0-alpha.34
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/browser/index.cjs
CHANGED
|
@@ -2547,7 +2547,7 @@ var DataTypeMap = _DataTypeMap;
|
|
|
2547
2547
|
// src/document/decorators/http-controller.decorator.ts
|
|
2548
2548
|
var import_lodash3 = __toESM(require("lodash.omit"), 1);
|
|
2549
2549
|
var import_putil_merge2 = __toESM(require("putil-merge"), 1);
|
|
2550
|
-
var CLASS_NAME_PATTERN2 = /^(.*)(
|
|
2550
|
+
var CLASS_NAME_PATTERN2 = /^(.*)(Controller)$/;
|
|
2551
2551
|
function HttpControllerDecoratorFactory(options) {
|
|
2552
2552
|
const decoratorChain = [];
|
|
2553
2553
|
const decorator = /* @__PURE__ */ __name(function(target) {
|
package/browser/index.mjs
CHANGED
|
@@ -2407,7 +2407,7 @@ var DataTypeMap = _DataTypeMap;
|
|
|
2407
2407
|
// src/document/decorators/http-controller.decorator.ts
|
|
2408
2408
|
import omit3 from "lodash.omit";
|
|
2409
2409
|
import merge2 from "putil-merge";
|
|
2410
|
-
var CLASS_NAME_PATTERN2 = /^(.*)(
|
|
2410
|
+
var CLASS_NAME_PATTERN2 = /^(.*)(Controller)$/;
|
|
2411
2411
|
function HttpControllerDecoratorFactory(options) {
|
|
2412
2412
|
const decoratorChain = [];
|
|
2413
2413
|
const decorator = /* @__PURE__ */ __name(function(target) {
|
|
@@ -6,7 +6,7 @@ const lodash_omit_1 = tslib_1.__importDefault(require("lodash.omit"));
|
|
|
6
6
|
const putil_merge_1 = tslib_1.__importDefault(require("putil-merge"));
|
|
7
7
|
const index_js_1 = require("../../schema/index.js");
|
|
8
8
|
const constants_js_1 = require("../constants.js");
|
|
9
|
-
const CLASS_NAME_PATTERN = /^(.*)(
|
|
9
|
+
const CLASS_NAME_PATTERN = /^(.*)(Controller)$/;
|
|
10
10
|
function HttpControllerDecoratorFactory(options) {
|
|
11
11
|
const decoratorChain = [];
|
|
12
12
|
/**
|
|
@@ -2,7 +2,7 @@ import omit from 'lodash.omit';
|
|
|
2
2
|
import merge from 'putil-merge';
|
|
3
3
|
import { OpraSchema } from '../../schema/index.js';
|
|
4
4
|
import { HTTP_CONTROLLER_METADATA } from '../constants.js';
|
|
5
|
-
const CLASS_NAME_PATTERN = /^(.*)(
|
|
5
|
+
const CLASS_NAME_PATTERN = /^(.*)(Controller)$/;
|
|
6
6
|
export function HttpControllerDecoratorFactory(options) {
|
|
7
7
|
const decoratorChain = [];
|
|
8
8
|
/**
|