@opra/common 1.20.0 → 1.22.0
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/README.md +3 -0
- package/browser.js +12 -0
- package/{esm/document → document}/api-document.js +7 -7
- package/{esm/document → document}/common/api-base.js +2 -1
- package/{esm/document → document}/common/data-type-map.js +3 -6
- package/{esm/document → document}/common/document-init-context.js +4 -3
- package/{esm/document → document}/common/document-node.js +4 -0
- package/{esm/document → document}/common/opra-document-error.js +1 -1
- package/{esm/document → document}/common/value.js +4 -0
- package/{esm/document → document}/data-type/api-field.js +1 -0
- package/{types/document → document}/data-type/array-type.d.ts +1 -1
- package/{esm/document → document}/data-type/complex-type-base.js +3 -0
- package/{esm/document → document}/data-type/complex-type.js +1 -0
- package/{esm/document → document}/data-type/extended-types/base64.type.js +1 -0
- package/{esm/document → document}/data-type/extended-types/date-time-tz.type.js +2 -0
- package/{esm/document → document}/data-type/extended-types/date-time.type.js +3 -0
- package/{esm/document → document}/data-type/extended-types/date.type.js +3 -0
- package/{esm/document → document}/data-type/extended-types/email.type.js +9 -0
- package/{esm/document → document}/data-type/extended-types/field-path.type.js +2 -0
- package/{esm/document → document}/data-type/extended-types/filter.type.js +2 -0
- package/{esm/document → document}/data-type/extended-types/partial-date.type.js +2 -0
- package/{esm/document → document}/data-type/extended-types/time.type.js +2 -0
- package/{esm/document → document}/data-type/extended-types/uuid.type.js +1 -0
- package/{esm/document → document}/data-type/mapped-type.js +4 -0
- package/{esm/document → document}/data-type/primitive-types/number.type.js +2 -0
- package/{esm/document → document}/data-type/primitive-types/string.type.js +4 -0
- package/{esm/document → document}/data-type/simple-type.js +3 -0
- package/document/decorators/ws-param.decorator.d.ts +7 -0
- package/{esm/document → document}/decorators/ws-param.decorator.js +2 -2
- package/{esm/document → document}/factory/api-document.factory.js +1 -3
- package/{esm/document → document}/factory/ws-api.factory.js +14 -3
- package/{esm/document → document}/http/http-api.js +5 -4
- package/{esm/document → document}/http/http-multipart-field.js +3 -0
- package/{esm/document → document}/http/http-operation-response.js +3 -0
- package/{esm/document → document}/http/http-request-body.js +8 -1
- package/{esm/document → document}/http/http-status-range.js +2 -2
- package/{esm/document → document}/mq/mq-api.js +5 -4
- package/{esm/document → document}/mq/mq-operation-response.js +7 -1
- package/{esm/document → document}/ws/ws-api.js +4 -4
- package/{types/document → document}/ws/ws-operation.d.ts +15 -3
- package/{esm/document → document}/ws/ws-operation.js +10 -2
- package/{esm/exception → exception}/http-errors/bad-request.error.js +1 -4
- package/{esm/exception → exception}/http-errors/conflict.error.js +1 -4
- package/{esm/exception → exception}/http-errors/failed-dependency.error.js +1 -4
- package/{esm/exception → exception}/http-errors/forbidden.error.js +1 -4
- package/{esm/exception → exception}/http-errors/internal-server.error.js +1 -4
- package/{esm/exception → exception}/http-errors/method-not-allowed.error.js +1 -4
- package/{esm/exception → exception}/http-errors/not-acceptable.error.js +1 -4
- package/{esm/exception → exception}/http-errors/not-found.error.js +1 -4
- package/{esm/exception → exception}/http-errors/resource-conflict.error.js +1 -1
- package/{esm/exception → exception}/http-errors/unauthorized.error.js +1 -4
- package/{esm/exception → exception}/http-errors/unprocessable-entity.error.js +1 -4
- package/{esm/exception → exception}/opra-exception.js +5 -1
- package/{esm/exception → exception}/opra-http-error.js +1 -0
- package/filter/antlr/OpraFilterLexer.js +425 -0
- package/filter/antlr/OpraFilterListener.js +302 -0
- package/{esm/filter → filter}/antlr/OpraFilterParser.js +218 -214
- package/filter/antlr/OpraFilterVisitor.js +185 -0
- package/{esm/filter → filter}/ast/abstract/ast.js +1 -0
- package/{esm/filter → filter}/ast/expressions/arithmetic-expression.js +3 -1
- package/{esm/filter → filter}/ast/expressions/array-expression.js +1 -0
- package/{esm/filter → filter}/ast/expressions/comparison-expression.js +4 -0
- package/{esm/filter → filter}/ast/expressions/logical-expression.js +2 -0
- package/{esm/filter → filter}/ast/expressions/negative-expression.js +1 -0
- package/{esm/filter → filter}/ast/expressions/parenthesized-expression.js +1 -0
- package/{esm/filter → filter}/ast/terms/date-literal.js +1 -0
- package/{esm/filter → filter}/ast/terms/date-time-literal.js +1 -0
- package/{esm/filter → filter}/ast/terms/null-literal.js +1 -1
- package/{esm/filter → filter}/ast/terms/number-literal.js +1 -0
- package/{esm/filter → filter}/ast/terms/time-literal.js +1 -0
- package/{esm/filter → filter}/filter-rules.js +2 -2
- package/{esm/filter → filter}/filter-tree-visitor.js +1 -0
- package/{esm/filter → filter}/opra-error-listener.js +1 -0
- package/{esm/helpers → helpers}/parse-fields-projection.js +2 -0
- package/package.json +15 -35
- package/{types/schema → schema}/ws/ws-api.interface.d.ts +4 -0
- package/browser/index.cjs +0 -12
- package/browser/index.mjs +0 -12
- package/cjs/document/api-document.js +0 -182
- package/cjs/document/common/api-base.js +0 -31
- package/cjs/document/common/data-type-map.js +0 -77
- package/cjs/document/common/document-element.js +0 -34
- package/cjs/document/common/document-init-context.js +0 -69
- package/cjs/document/common/document-node.js +0 -145
- package/cjs/document/common/opra-document-error.js +0 -15
- package/cjs/document/common/value.js +0 -39
- package/cjs/document/constants.js +0 -18
- package/cjs/document/data-type/api-field.js +0 -124
- package/cjs/document/data-type/array-type.js +0 -78
- package/cjs/document/data-type/complex-type-base.js +0 -346
- package/cjs/document/data-type/complex-type.js +0 -127
- package/cjs/document/data-type/data-type.js +0 -67
- package/cjs/document/data-type/enum-type.js +0 -128
- package/cjs/document/data-type/extended-types/base64.type.js +0 -49
- package/cjs/document/data-type/extended-types/date-time-tz.type.js +0 -63
- package/cjs/document/data-type/extended-types/date-time.type.js +0 -76
- package/cjs/document/data-type/extended-types/date.type.js +0 -74
- package/cjs/document/data-type/extended-types/email.type.js +0 -95
- package/cjs/document/data-type/extended-types/field-path.type.js +0 -65
- package/cjs/document/data-type/extended-types/filter.type.js +0 -88
- package/cjs/document/data-type/extended-types/index.js +0 -16
- package/cjs/document/data-type/extended-types/object-id.type.js +0 -31
- package/cjs/document/data-type/extended-types/operation-result.type.js +0 -67
- package/cjs/document/data-type/extended-types/partial-date.type.js +0 -85
- package/cjs/document/data-type/extended-types/time.type.js +0 -55
- package/cjs/document/data-type/extended-types/url.type.js +0 -31
- package/cjs/document/data-type/extended-types/uuid.type.js +0 -37
- package/cjs/document/data-type/mapped-type.js +0 -120
- package/cjs/document/data-type/mixin-type.js +0 -123
- package/cjs/document/data-type/omit-type.js +0 -10
- package/cjs/document/data-type/partial-type.js +0 -12
- package/cjs/document/data-type/pick-type.js +0 -10
- package/cjs/document/data-type/primitive-types/any.type.js +0 -27
- package/cjs/document/data-type/primitive-types/bigint.type.js +0 -38
- package/cjs/document/data-type/primitive-types/boolean.type.js +0 -31
- package/cjs/document/data-type/primitive-types/index.js +0 -11
- package/cjs/document/data-type/primitive-types/integer.type.js +0 -38
- package/cjs/document/data-type/primitive-types/null.type.js +0 -31
- package/cjs/document/data-type/primitive-types/number.type.js +0 -50
- package/cjs/document/data-type/primitive-types/object.type.js +0 -20
- package/cjs/document/data-type/primitive-types/string.type.js +0 -70
- package/cjs/document/data-type/required-type.js +0 -12
- package/cjs/document/data-type/simple-type.js +0 -133
- package/cjs/document/data-type/union-type.js +0 -84
- package/cjs/document/data-type/utils/create-mapped-class.js +0 -56
- package/cjs/document/data-type/utils/get-is-inherited-predicate-fn.js +0 -14
- package/cjs/document/decorators/api-field-decorator.js +0 -50
- package/cjs/document/decorators/complex-type.decorator.js +0 -31
- package/cjs/document/decorators/http-controller.decorator.js +0 -145
- package/cjs/document/decorators/http-operation-entity-create.decorator.js +0 -58
- package/cjs/document/decorators/http-operation-entity-delete-many.decorator.js +0 -41
- package/cjs/document/decorators/http-operation-entity-delete.decorator.js +0 -41
- package/cjs/document/decorators/http-operation-entity-find-many.decorator.js +0 -85
- package/cjs/document/decorators/http-operation-entity-get.decorator.js +0 -56
- package/cjs/document/decorators/http-operation-entity-replace.decorator.js +0 -56
- package/cjs/document/decorators/http-operation-entity-update-many.decorator.js +0 -50
- package/cjs/document/decorators/http-operation-entity-update.decorator.js +0 -66
- package/cjs/document/decorators/http-operation-entity.decorator.js +0 -143
- package/cjs/document/decorators/http-operation.decorator.js +0 -213
- package/cjs/document/decorators/mq-controller.decorator.js +0 -67
- package/cjs/document/decorators/mq-operation.decorator.js +0 -82
- package/cjs/document/decorators/simple-type.decorator.js +0 -67
- package/cjs/document/decorators/ws-controller.decorator.js +0 -51
- package/cjs/document/decorators/ws-operation.decorator.js +0 -42
- package/cjs/document/decorators/ws-param.decorator.js +0 -22
- package/cjs/document/factory/api-document.factory.js +0 -192
- package/cjs/document/factory/data-type.factory.js +0 -647
- package/cjs/document/factory/http-api.factory.js +0 -302
- package/cjs/document/factory/mq-api.factory.js +0 -203
- package/cjs/document/factory/ws-api.factory.js +0 -145
- package/cjs/document/http/http-api.js +0 -40
- package/cjs/document/http/http-controller.js +0 -159
- package/cjs/document/http/http-media-type.js +0 -104
- package/cjs/document/http/http-multipart-field.js +0 -32
- package/cjs/document/http/http-operation-response.js +0 -47
- package/cjs/document/http/http-operation.js +0 -126
- package/cjs/document/http/http-parameter.js +0 -57
- package/cjs/document/http/http-request-body.js +0 -27
- package/cjs/document/http/http-status-range.js +0 -45
- package/cjs/document/index.js +0 -70
- package/cjs/document/mq/mq-api.js +0 -54
- package/cjs/document/mq/mq-controller.js +0 -101
- package/cjs/document/mq/mq-header.js +0 -48
- package/cjs/document/mq/mq-operation-response.js +0 -66
- package/cjs/document/mq/mq-operation.js +0 -101
- package/cjs/document/utils/inspect.util.js +0 -7
- package/cjs/document/utils/parse-regexp.util.js +0 -21
- package/cjs/document/utils/string-compare.util.js +0 -10
- package/cjs/document/utils/test-scope-match.js +0 -15
- package/cjs/document/ws/ws-api.js +0 -52
- package/cjs/document/ws/ws-controller.js +0 -78
- package/cjs/document/ws/ws-operation.js +0 -64
- package/cjs/enums/http-headers-codes.enum.js +0 -411
- package/cjs/enums/http-status-codes.enum.js +0 -300
- package/cjs/enums/http-status-messages.js +0 -68
- package/cjs/enums/index.js +0 -7
- package/cjs/enums/mime-types.enum.js +0 -17
- package/cjs/exception/error-issue.js +0 -2
- package/cjs/exception/http-errors/bad-request.error.js +0 -23
- package/cjs/exception/http-errors/conflict.error.js +0 -22
- package/cjs/exception/http-errors/failed-dependency.error.js +0 -22
- package/cjs/exception/http-errors/forbidden.error.js +0 -25
- package/cjs/exception/http-errors/internal-server.error.js +0 -23
- package/cjs/exception/http-errors/method-not-allowed.error.js +0 -23
- package/cjs/exception/http-errors/not-acceptable.error.js +0 -23
- package/cjs/exception/http-errors/not-found.error.js +0 -26
- package/cjs/exception/http-errors/permission.error.js +0 -20
- package/cjs/exception/http-errors/resource-conflict.error.js +0 -19
- package/cjs/exception/http-errors/resource-not.available.error.js +0 -23
- package/cjs/exception/http-errors/unauthorized.error.js +0 -23
- package/cjs/exception/http-errors/unprocessable-entity.error.js +0 -23
- package/cjs/exception/index.js +0 -20
- package/cjs/exception/issue-severity.enum.js +0 -23
- package/cjs/exception/opra-exception.js +0 -70
- package/cjs/exception/opra-http-error.js +0 -25
- package/cjs/filter/antlr/OpraFilterLexer.js +0 -427
- package/cjs/filter/antlr/OpraFilterListener.js +0 -11
- package/cjs/filter/antlr/OpraFilterParser.js +0 -1851
- package/cjs/filter/antlr/OpraFilterVisitor.js +0 -14
- package/cjs/filter/ast/abstract/ast.js +0 -9
- package/cjs/filter/ast/abstract/expression.js +0 -7
- package/cjs/filter/ast/abstract/literal.js +0 -14
- package/cjs/filter/ast/abstract/term.js +0 -7
- package/cjs/filter/ast/expressions/arithmetic-expression.js +0 -29
- package/cjs/filter/ast/expressions/array-expression.js +0 -14
- package/cjs/filter/ast/expressions/comparison-expression.js +0 -15
- package/cjs/filter/ast/expressions/logical-expression.js +0 -18
- package/cjs/filter/ast/expressions/negative-expression.js +0 -14
- package/cjs/filter/ast/expressions/parenthesized-expression.js +0 -14
- package/cjs/filter/ast/index.js +0 -21
- package/cjs/filter/ast/terms/boolean-literal.js +0 -10
- package/cjs/filter/ast/terms/date-literal.js +0 -28
- package/cjs/filter/ast/terms/date-time-literal.js +0 -27
- package/cjs/filter/ast/terms/external-constant.js +0 -13
- package/cjs/filter/ast/terms/null-literal.js +0 -11
- package/cjs/filter/ast/terms/number-literal.js +0 -39
- package/cjs/filter/ast/terms/qualified-identifier.js +0 -10
- package/cjs/filter/ast/terms/string-literal.js +0 -14
- package/cjs/filter/ast/terms/time-literal.js +0 -34
- package/cjs/filter/build.js +0 -126
- package/cjs/filter/errors.js +0 -21
- package/cjs/filter/filter-rules.js +0 -150
- package/cjs/filter/filter-tree-visitor.js +0 -97
- package/cjs/filter/index.js +0 -5
- package/cjs/filter/opra-error-listener.js +0 -21
- package/cjs/filter/opra-filter.ns.js +0 -8
- package/cjs/filter/parse.js +0 -38
- package/cjs/filter/utils.js +0 -25
- package/cjs/helpers/function-utils.js +0 -15
- package/cjs/helpers/get-stack-filename.js +0 -51
- package/cjs/helpers/index.js +0 -12
- package/cjs/helpers/mixin-utils.js +0 -35
- package/cjs/helpers/object-utils.js +0 -19
- package/cjs/helpers/parse-fields-projection.js +0 -67
- package/cjs/helpers/responsive-map.js +0 -155
- package/cjs/helpers/safe-json-stringify.js +0 -16
- package/cjs/helpers/type-guards.js +0 -46
- package/cjs/i18n/i18n.js +0 -139
- package/cjs/i18n/index.js +0 -10
- package/cjs/i18n/string-utils.js +0 -12
- package/cjs/i18n/translate.js +0 -16
- package/cjs/index.js +0 -14
- package/cjs/package.json +0 -3
- package/cjs/polifils/array-find-last.js +0 -22
- package/cjs/schema/api-document.interface.js +0 -2
- package/cjs/schema/api.interface.js +0 -2
- package/cjs/schema/constants.js +0 -4
- package/cjs/schema/data-type/array-type.interface.js +0 -7
- package/cjs/schema/data-type/complex-type.interface.js +0 -7
- package/cjs/schema/data-type/data-type.interface.js +0 -2
- package/cjs/schema/data-type/enum-type.interface.js +0 -7
- package/cjs/schema/data-type/field.interface.js +0 -2
- package/cjs/schema/data-type/mapped-type.interface.js +0 -7
- package/cjs/schema/data-type/mixin-type.interface.js +0 -7
- package/cjs/schema/data-type/simple-type.interface.js +0 -7
- package/cjs/schema/data-type/union-type.interface.js +0 -7
- package/cjs/schema/data-type-container.interface.js +0 -2
- package/cjs/schema/http/http-api.interface.js +0 -2
- package/cjs/schema/http/http-controller.interface.js +0 -11
- package/cjs/schema/http/http-media-type.interface.js +0 -2
- package/cjs/schema/http/http-multipart-field.interface.js +0 -2
- package/cjs/schema/http/http-operation-response.interface.js +0 -2
- package/cjs/schema/http/http-operation.interface.js +0 -7
- package/cjs/schema/http/http-parameter.interface.js +0 -2
- package/cjs/schema/http/http-request-body.interface.js +0 -2
- package/cjs/schema/http/http-status-range.interface.js +0 -2
- package/cjs/schema/index.js +0 -6
- package/cjs/schema/mq/mq-api.interface.js +0 -2
- package/cjs/schema/mq/mq-controller.interface.js +0 -11
- package/cjs/schema/mq/mq-header.interface.js +0 -2
- package/cjs/schema/mq/mq-operation.interface.js +0 -7
- package/cjs/schema/opra-schema.js +0 -35
- package/cjs/schema/type-guards.js +0 -54
- package/cjs/schema/types.js +0 -2
- package/cjs/schema/value.interface.js +0 -2
- package/cjs/schema/ws/ws-api.interface.js +0 -2
- package/cjs/schema/ws/ws-controller.interface.js +0 -11
- package/cjs/schema/ws/ws-operation.interface.js +0 -7
- package/cjs/types.js +0 -2
- package/esm/filter/antlr/OpraFilterLexer.js +0 -425
- package/esm/filter/antlr/OpraFilterListener.js +0 -8
- package/esm/filter/antlr/OpraFilterVisitor.js +0 -11
- package/esm/helpers/monkey-patches.js +0 -14
- package/esm/package.json +0 -3
- package/types/document/decorators/ws-param.decorator.d.ts +0 -2
- package/types/index.d.cts +0 -9
- /package/{types/document → document}/api-document.d.ts +0 -0
- /package/{types/document → document}/common/api-base.d.ts +0 -0
- /package/{types/document → document}/common/data-type-map.d.ts +0 -0
- /package/{types/document → document}/common/document-element.d.ts +0 -0
- /package/{esm/document → document}/common/document-element.js +0 -0
- /package/{types/document → document}/common/document-init-context.d.ts +0 -0
- /package/{types/document → document}/common/document-node.d.ts +0 -0
- /package/{types/document → document}/common/opra-document-error.d.ts +0 -0
- /package/{types/document → document}/common/value.d.ts +0 -0
- /package/{types/document → document}/constants.d.ts +0 -0
- /package/{esm/document → document}/constants.js +0 -0
- /package/{types/document → document}/data-type/api-field.d.ts +0 -0
- /package/{esm/document → document}/data-type/array-type.js +0 -0
- /package/{types/document → document}/data-type/complex-type-base.d.ts +0 -0
- /package/{types/document → document}/data-type/complex-type.d.ts +0 -0
- /package/{types/document → document}/data-type/data-type.d.ts +0 -0
- /package/{esm/document → document}/data-type/data-type.js +0 -0
- /package/{types/document → document}/data-type/enum-type.d.ts +0 -0
- /package/{esm/document → document}/data-type/enum-type.js +0 -0
- /package/{types/document → document}/data-type/extended-types/base64.type.d.ts +0 -0
- /package/{types/document → document}/data-type/extended-types/date-time-tz.type.d.ts +0 -0
- /package/{types/document → document}/data-type/extended-types/date-time.type.d.ts +0 -0
- /package/{types/document → document}/data-type/extended-types/date.type.d.ts +0 -0
- /package/{types/document → document}/data-type/extended-types/email.type.d.ts +0 -0
- /package/{types/document → document}/data-type/extended-types/field-path.type.d.ts +0 -0
- /package/{types/document → document}/data-type/extended-types/filter.type.d.ts +0 -0
- /package/{types/document → document}/data-type/extended-types/index.d.ts +0 -0
- /package/{esm/document → document}/data-type/extended-types/index.js +0 -0
- /package/{types/document → document}/data-type/extended-types/object-id.type.d.ts +0 -0
- /package/{esm/document → document}/data-type/extended-types/object-id.type.js +0 -0
- /package/{types/document → document}/data-type/extended-types/operation-result.type.d.ts +0 -0
- /package/{esm/document → document}/data-type/extended-types/operation-result.type.js +0 -0
- /package/{types/document → document}/data-type/extended-types/partial-date.type.d.ts +0 -0
- /package/{types/document → document}/data-type/extended-types/time.type.d.ts +0 -0
- /package/{types/document → document}/data-type/extended-types/url.type.d.ts +0 -0
- /package/{esm/document → document}/data-type/extended-types/url.type.js +0 -0
- /package/{types/document → document}/data-type/extended-types/uuid.type.d.ts +0 -0
- /package/{types/document → document}/data-type/mapped-type.d.ts +0 -0
- /package/{types/document → document}/data-type/mixin-type.d.ts +0 -0
- /package/{esm/document → document}/data-type/mixin-type.js +0 -0
- /package/{types/document → document}/data-type/omit-type.d.ts +0 -0
- /package/{esm/document → document}/data-type/omit-type.js +0 -0
- /package/{types/document → document}/data-type/partial-type.d.ts +0 -0
- /package/{esm/document → document}/data-type/partial-type.js +0 -0
- /package/{types/document → document}/data-type/pick-type.d.ts +0 -0
- /package/{esm/document → document}/data-type/pick-type.js +0 -0
- /package/{types/document → document}/data-type/primitive-types/any.type.d.ts +0 -0
- /package/{esm/document → document}/data-type/primitive-types/any.type.js +0 -0
- /package/{types/document → document}/data-type/primitive-types/bigint.type.d.ts +0 -0
- /package/{esm/document → document}/data-type/primitive-types/bigint.type.js +0 -0
- /package/{types/document → document}/data-type/primitive-types/boolean.type.d.ts +0 -0
- /package/{esm/document → document}/data-type/primitive-types/boolean.type.js +0 -0
- /package/{types/document → document}/data-type/primitive-types/index.d.ts +0 -0
- /package/{esm/document → document}/data-type/primitive-types/index.js +0 -0
- /package/{types/document → document}/data-type/primitive-types/integer.type.d.ts +0 -0
- /package/{esm/document → document}/data-type/primitive-types/integer.type.js +0 -0
- /package/{types/document → document}/data-type/primitive-types/null.type.d.ts +0 -0
- /package/{esm/document → document}/data-type/primitive-types/null.type.js +0 -0
- /package/{types/document → document}/data-type/primitive-types/number.type.d.ts +0 -0
- /package/{types/document → document}/data-type/primitive-types/object.type.d.ts +0 -0
- /package/{esm/document → document}/data-type/primitive-types/object.type.js +0 -0
- /package/{types/document → document}/data-type/primitive-types/string.type.d.ts +0 -0
- /package/{types/document → document}/data-type/required-type.d.ts +0 -0
- /package/{esm/document → document}/data-type/required-type.js +0 -0
- /package/{types/document → document}/data-type/simple-type.d.ts +0 -0
- /package/{types/document → document}/data-type/union-type.d.ts +0 -0
- /package/{esm/document → document}/data-type/union-type.js +0 -0
- /package/{types/document → document}/data-type/utils/create-mapped-class.d.ts +0 -0
- /package/{esm/document → document}/data-type/utils/create-mapped-class.js +0 -0
- /package/{types/document → document}/data-type/utils/get-is-inherited-predicate-fn.d.ts +0 -0
- /package/{esm/document → document}/data-type/utils/get-is-inherited-predicate-fn.js +0 -0
- /package/{types/document → document}/decorators/api-field-decorator.d.ts +0 -0
- /package/{esm/document → document}/decorators/api-field-decorator.js +0 -0
- /package/{types/document → document}/decorators/complex-type.decorator.d.ts +0 -0
- /package/{esm/document → document}/decorators/complex-type.decorator.js +0 -0
- /package/{types/document → document}/decorators/http-controller.decorator.d.ts +0 -0
- /package/{esm/document → document}/decorators/http-controller.decorator.js +0 -0
- /package/{types/document → document}/decorators/http-operation-entity-create.decorator.d.ts +0 -0
- /package/{esm/document → document}/decorators/http-operation-entity-create.decorator.js +0 -0
- /package/{types/document → document}/decorators/http-operation-entity-delete-many.decorator.d.ts +0 -0
- /package/{esm/document → document}/decorators/http-operation-entity-delete-many.decorator.js +0 -0
- /package/{types/document → document}/decorators/http-operation-entity-delete.decorator.d.ts +0 -0
- /package/{esm/document → document}/decorators/http-operation-entity-delete.decorator.js +0 -0
- /package/{types/document → document}/decorators/http-operation-entity-find-many.decorator.d.ts +0 -0
- /package/{esm/document → document}/decorators/http-operation-entity-find-many.decorator.js +0 -0
- /package/{types/document → document}/decorators/http-operation-entity-get.decorator.d.ts +0 -0
- /package/{esm/document → document}/decorators/http-operation-entity-get.decorator.js +0 -0
- /package/{types/document → document}/decorators/http-operation-entity-replace.decorator.d.ts +0 -0
- /package/{esm/document → document}/decorators/http-operation-entity-replace.decorator.js +0 -0
- /package/{types/document → document}/decorators/http-operation-entity-update-many.decorator.d.ts +0 -0
- /package/{esm/document → document}/decorators/http-operation-entity-update-many.decorator.js +0 -0
- /package/{types/document → document}/decorators/http-operation-entity-update.decorator.d.ts +0 -0
- /package/{esm/document → document}/decorators/http-operation-entity-update.decorator.js +0 -0
- /package/{types/document → document}/decorators/http-operation-entity.decorator.d.ts +0 -0
- /package/{esm/document → document}/decorators/http-operation-entity.decorator.js +0 -0
- /package/{types/document → document}/decorators/http-operation.decorator.d.ts +0 -0
- /package/{esm/document → document}/decorators/http-operation.decorator.js +0 -0
- /package/{types/document → document}/decorators/mq-controller.decorator.d.ts +0 -0
- /package/{esm/document → document}/decorators/mq-controller.decorator.js +0 -0
- /package/{types/document → document}/decorators/mq-operation.decorator.d.ts +0 -0
- /package/{esm/document → document}/decorators/mq-operation.decorator.js +0 -0
- /package/{types/document → document}/decorators/simple-type.decorator.d.ts +0 -0
- /package/{esm/document → document}/decorators/simple-type.decorator.js +0 -0
- /package/{types/document → document}/decorators/ws-controller.decorator.d.ts +0 -0
- /package/{esm/document → document}/decorators/ws-controller.decorator.js +0 -0
- /package/{types/document → document}/decorators/ws-operation.decorator.d.ts +0 -0
- /package/{esm/document → document}/decorators/ws-operation.decorator.js +0 -0
- /package/{types/document → document}/factory/api-document.factory.d.ts +0 -0
- /package/{types/document → document}/factory/data-type.factory.d.ts +0 -0
- /package/{esm/document → document}/factory/data-type.factory.js +0 -0
- /package/{types/document → document}/factory/http-api.factory.d.ts +0 -0
- /package/{esm/document → document}/factory/http-api.factory.js +0 -0
- /package/{types/document → document}/factory/mq-api.factory.d.ts +0 -0
- /package/{esm/document → document}/factory/mq-api.factory.js +0 -0
- /package/{types/document → document}/factory/ws-api.factory.d.ts +0 -0
- /package/{types/document → document}/http/http-api.d.ts +0 -0
- /package/{types/document → document}/http/http-controller.d.ts +0 -0
- /package/{esm/document → document}/http/http-controller.js +0 -0
- /package/{types/document → document}/http/http-media-type.d.ts +0 -0
- /package/{esm/document → document}/http/http-media-type.js +0 -0
- /package/{types/document → document}/http/http-multipart-field.d.ts +0 -0
- /package/{types/document → document}/http/http-operation-response.d.ts +0 -0
- /package/{types/document → document}/http/http-operation.d.ts +0 -0
- /package/{esm/document → document}/http/http-operation.js +0 -0
- /package/{types/document → document}/http/http-parameter.d.ts +0 -0
- /package/{esm/document → document}/http/http-parameter.js +0 -0
- /package/{types/document → document}/http/http-request-body.d.ts +0 -0
- /package/{types/document → document}/http/http-status-range.d.ts +0 -0
- /package/{types/document → document}/index.d.ts +0 -0
- /package/{esm/document → document}/index.js +0 -0
- /package/{types/document → document}/mq/mq-api.d.ts +0 -0
- /package/{types/document → document}/mq/mq-controller.d.ts +0 -0
- /package/{esm/document → document}/mq/mq-controller.js +0 -0
- /package/{types/document → document}/mq/mq-header.d.ts +0 -0
- /package/{esm/document → document}/mq/mq-header.js +0 -0
- /package/{types/document → document}/mq/mq-operation-response.d.ts +0 -0
- /package/{types/document → document}/mq/mq-operation.d.ts +0 -0
- /package/{esm/document → document}/mq/mq-operation.js +0 -0
- /package/{types/document → document}/utils/inspect.util.d.ts +0 -0
- /package/{esm/document → document}/utils/inspect.util.js +0 -0
- /package/{types/document → document}/utils/parse-regexp.util.d.ts +0 -0
- /package/{esm/document → document}/utils/parse-regexp.util.js +0 -0
- /package/{types/document → document}/utils/string-compare.util.d.ts +0 -0
- /package/{esm/document → document}/utils/string-compare.util.js +0 -0
- /package/{types/document → document}/utils/test-scope-match.d.ts +0 -0
- /package/{esm/document → document}/utils/test-scope-match.js +0 -0
- /package/{types/document → document}/ws/ws-api.d.ts +0 -0
- /package/{types/document → document}/ws/ws-controller.d.ts +0 -0
- /package/{esm/document → document}/ws/ws-controller.js +0 -0
- /package/{types/enums → enums}/http-headers-codes.enum.d.ts +0 -0
- /package/{esm/enums → enums}/http-headers-codes.enum.js +0 -0
- /package/{types/enums → enums}/http-status-codes.enum.d.ts +0 -0
- /package/{esm/enums → enums}/http-status-codes.enum.js +0 -0
- /package/{types/enums → enums}/http-status-messages.d.ts +0 -0
- /package/{esm/enums → enums}/http-status-messages.js +0 -0
- /package/{types/enums → enums}/index.d.ts +0 -0
- /package/{esm/enums → enums}/index.js +0 -0
- /package/{types/enums → enums}/mime-types.enum.d.ts +0 -0
- /package/{esm/enums → enums}/mime-types.enum.js +0 -0
- /package/{types/exception → exception}/error-issue.d.ts +0 -0
- /package/{esm/exception → exception}/error-issue.js +0 -0
- /package/{types/exception → exception}/http-errors/bad-request.error.d.ts +0 -0
- /package/{types/exception → exception}/http-errors/conflict.error.d.ts +0 -0
- /package/{types/exception → exception}/http-errors/failed-dependency.error.d.ts +0 -0
- /package/{types/exception → exception}/http-errors/forbidden.error.d.ts +0 -0
- /package/{types/exception → exception}/http-errors/internal-server.error.d.ts +0 -0
- /package/{types/exception → exception}/http-errors/method-not-allowed.error.d.ts +0 -0
- /package/{types/exception → exception}/http-errors/not-acceptable.error.d.ts +0 -0
- /package/{types/exception → exception}/http-errors/not-found.error.d.ts +0 -0
- /package/{types/exception → exception}/http-errors/permission.error.d.ts +0 -0
- /package/{esm/exception → exception}/http-errors/permission.error.js +0 -0
- /package/{types/exception → exception}/http-errors/resource-conflict.error.d.ts +0 -0
- /package/{types/exception → exception}/http-errors/resource-not.available.error.d.ts +0 -0
- /package/{esm/exception → exception}/http-errors/resource-not.available.error.js +0 -0
- /package/{types/exception → exception}/http-errors/unauthorized.error.d.ts +0 -0
- /package/{types/exception → exception}/http-errors/unprocessable-entity.error.d.ts +0 -0
- /package/{types/exception → exception}/index.d.ts +0 -0
- /package/{esm/exception → exception}/index.js +0 -0
- /package/{types/exception → exception}/issue-severity.enum.d.ts +0 -0
- /package/{esm/exception → exception}/issue-severity.enum.js +0 -0
- /package/{types/exception → exception}/opra-exception.d.ts +0 -0
- /package/{types/exception → exception}/opra-http-error.d.ts +0 -0
- /package/{types/filter → filter}/antlr/OpraFilterLexer.d.ts +0 -0
- /package/{types/filter → filter}/antlr/OpraFilterListener.d.ts +0 -0
- /package/{types/filter → filter}/antlr/OpraFilterParser.d.ts +0 -0
- /package/{types/filter → filter}/antlr/OpraFilterVisitor.d.ts +0 -0
- /package/{types/filter → filter}/ast/abstract/ast.d.ts +0 -0
- /package/{types/filter → filter}/ast/abstract/expression.d.ts +0 -0
- /package/{esm/filter → filter}/ast/abstract/expression.js +0 -0
- /package/{types/filter → filter}/ast/abstract/literal.d.ts +0 -0
- /package/{esm/filter → filter}/ast/abstract/literal.js +0 -0
- /package/{types/filter → filter}/ast/abstract/term.d.ts +0 -0
- /package/{esm/filter → filter}/ast/abstract/term.js +0 -0
- /package/{types/filter → filter}/ast/expressions/arithmetic-expression.d.ts +0 -0
- /package/{types/filter → filter}/ast/expressions/array-expression.d.ts +0 -0
- /package/{types/filter → filter}/ast/expressions/comparison-expression.d.ts +0 -0
- /package/{types/filter → filter}/ast/expressions/logical-expression.d.ts +0 -0
- /package/{types/filter → filter}/ast/expressions/negative-expression.d.ts +0 -0
- /package/{types/filter → filter}/ast/expressions/parenthesized-expression.d.ts +0 -0
- /package/{types/filter → filter}/ast/index.d.ts +0 -0
- /package/{esm/filter → filter}/ast/index.js +0 -0
- /package/{types/filter → filter}/ast/terms/boolean-literal.d.ts +0 -0
- /package/{esm/filter → filter}/ast/terms/boolean-literal.js +0 -0
- /package/{types/filter → filter}/ast/terms/date-literal.d.ts +0 -0
- /package/{types/filter → filter}/ast/terms/date-time-literal.d.ts +0 -0
- /package/{types/filter → filter}/ast/terms/external-constant.d.ts +0 -0
- /package/{esm/filter → filter}/ast/terms/external-constant.js +0 -0
- /package/{types/filter → filter}/ast/terms/null-literal.d.ts +0 -0
- /package/{types/filter → filter}/ast/terms/number-literal.d.ts +0 -0
- /package/{types/filter → filter}/ast/terms/qualified-identifier.d.ts +0 -0
- /package/{esm/filter → filter}/ast/terms/qualified-identifier.js +0 -0
- /package/{types/filter → filter}/ast/terms/string-literal.d.ts +0 -0
- /package/{esm/filter → filter}/ast/terms/string-literal.js +0 -0
- /package/{types/filter → filter}/ast/terms/time-literal.d.ts +0 -0
- /package/{types/filter → filter}/build.d.ts +0 -0
- /package/{esm/filter → filter}/build.js +0 -0
- /package/{types/filter → filter}/errors.d.ts +0 -0
- /package/{esm/filter → filter}/errors.js +0 -0
- /package/{types/filter → filter}/filter-rules.d.ts +0 -0
- /package/{types/filter → filter}/filter-tree-visitor.d.ts +0 -0
- /package/{types/filter → filter}/index.d.ts +0 -0
- /package/{esm/filter → filter}/index.js +0 -0
- /package/{types/filter → filter}/opra-error-listener.d.ts +0 -0
- /package/{types/filter → filter}/opra-filter.ns.d.ts +0 -0
- /package/{esm/filter → filter}/opra-filter.ns.js +0 -0
- /package/{types/filter → filter}/parse.d.ts +0 -0
- /package/{esm/filter → filter}/parse.js +0 -0
- /package/{types/filter → filter}/utils.d.ts +0 -0
- /package/{esm/filter → filter}/utils.js +0 -0
- /package/{types/helpers → helpers}/function-utils.d.ts +0 -0
- /package/{esm/helpers → helpers}/function-utils.js +0 -0
- /package/{types/helpers → helpers}/get-stack-filename.d.ts +0 -0
- /package/{esm/helpers → helpers}/get-stack-filename.js +0 -0
- /package/{types/helpers → helpers}/index.d.ts +0 -0
- /package/{esm/helpers → helpers}/index.js +0 -0
- /package/{types/helpers → helpers}/mixin-utils.d.ts +0 -0
- /package/{esm/helpers → helpers}/mixin-utils.js +0 -0
- /package/{types/helpers → helpers}/monkey-patches.d.ts +0 -0
- /package/{cjs/helpers → helpers}/monkey-patches.js +0 -0
- /package/{types/helpers → helpers}/object-utils.d.ts +0 -0
- /package/{esm/helpers → helpers}/object-utils.js +0 -0
- /package/{types/helpers → helpers}/parse-fields-projection.d.ts +0 -0
- /package/{types/helpers → helpers}/responsive-map.d.ts +0 -0
- /package/{esm/helpers → helpers}/responsive-map.js +0 -0
- /package/{types/helpers → helpers}/safe-json-stringify.d.ts +0 -0
- /package/{esm/helpers → helpers}/safe-json-stringify.js +0 -0
- /package/{types/helpers → helpers}/type-guards.d.ts +0 -0
- /package/{esm/helpers → helpers}/type-guards.js +0 -0
- /package/{types/i18n → i18n}/i18n.d.ts +0 -0
- /package/{esm/i18n → i18n}/i18n.js +0 -0
- /package/{types/i18n → i18n}/index.d.ts +0 -0
- /package/{esm/i18n → i18n}/index.js +0 -0
- /package/{types/i18n → i18n}/string-utils.d.ts +0 -0
- /package/{esm/i18n → i18n}/string-utils.js +0 -0
- /package/{types/i18n → i18n}/translate.d.ts +0 -0
- /package/{esm/i18n → i18n}/translate.js +0 -0
- /package/{types/index.d.ts → index.d.ts} +0 -0
- /package/{esm/index.js → index.js} +0 -0
- /package/{types/polifils → polifils}/array-find-last.d.ts +0 -0
- /package/{esm/polifils → polifils}/array-find-last.js +0 -0
- /package/{types/schema → schema}/api-document.interface.d.ts +0 -0
- /package/{esm/schema → schema}/api-document.interface.js +0 -0
- /package/{types/schema → schema}/api.interface.d.ts +0 -0
- /package/{esm/schema → schema}/api.interface.js +0 -0
- /package/{types/schema → schema}/constants.d.ts +0 -0
- /package/{esm/schema → schema}/constants.js +0 -0
- /package/{types/schema → schema}/data-type/array-type.interface.d.ts +0 -0
- /package/{esm/schema → schema}/data-type/array-type.interface.js +0 -0
- /package/{types/schema → schema}/data-type/complex-type.interface.d.ts +0 -0
- /package/{esm/schema → schema}/data-type/complex-type.interface.js +0 -0
- /package/{types/schema → schema}/data-type/data-type.interface.d.ts +0 -0
- /package/{esm/schema → schema}/data-type/data-type.interface.js +0 -0
- /package/{types/schema → schema}/data-type/enum-type.interface.d.ts +0 -0
- /package/{esm/schema → schema}/data-type/enum-type.interface.js +0 -0
- /package/{types/schema → schema}/data-type/field.interface.d.ts +0 -0
- /package/{esm/schema → schema}/data-type/field.interface.js +0 -0
- /package/{types/schema → schema}/data-type/mapped-type.interface.d.ts +0 -0
- /package/{esm/schema → schema}/data-type/mapped-type.interface.js +0 -0
- /package/{types/schema → schema}/data-type/mixin-type.interface.d.ts +0 -0
- /package/{esm/schema → schema}/data-type/mixin-type.interface.js +0 -0
- /package/{types/schema → schema}/data-type/simple-type.interface.d.ts +0 -0
- /package/{esm/schema → schema}/data-type/simple-type.interface.js +0 -0
- /package/{types/schema → schema}/data-type/union-type.interface.d.ts +0 -0
- /package/{esm/schema → schema}/data-type/union-type.interface.js +0 -0
- /package/{types/schema → schema}/data-type-container.interface.d.ts +0 -0
- /package/{esm/schema → schema}/data-type-container.interface.js +0 -0
- /package/{types/schema → schema}/http/http-api.interface.d.ts +0 -0
- /package/{esm/schema → schema}/http/http-api.interface.js +0 -0
- /package/{types/schema → schema}/http/http-controller.interface.d.ts +0 -0
- /package/{esm/schema → schema}/http/http-controller.interface.js +0 -0
- /package/{types/schema → schema}/http/http-media-type.interface.d.ts +0 -0
- /package/{esm/schema → schema}/http/http-media-type.interface.js +0 -0
- /package/{types/schema → schema}/http/http-multipart-field.interface.d.ts +0 -0
- /package/{esm/schema → schema}/http/http-multipart-field.interface.js +0 -0
- /package/{types/schema → schema}/http/http-operation-response.interface.d.ts +0 -0
- /package/{esm/schema → schema}/http/http-operation-response.interface.js +0 -0
- /package/{types/schema → schema}/http/http-operation.interface.d.ts +0 -0
- /package/{esm/schema → schema}/http/http-operation.interface.js +0 -0
- /package/{types/schema → schema}/http/http-parameter.interface.d.ts +0 -0
- /package/{esm/schema → schema}/http/http-parameter.interface.js +0 -0
- /package/{types/schema → schema}/http/http-request-body.interface.d.ts +0 -0
- /package/{esm/schema → schema}/http/http-request-body.interface.js +0 -0
- /package/{types/schema → schema}/http/http-status-range.interface.d.ts +0 -0
- /package/{esm/schema → schema}/http/http-status-range.interface.js +0 -0
- /package/{types/schema → schema}/index.d.ts +0 -0
- /package/{esm/schema → schema}/index.js +0 -0
- /package/{types/schema → schema}/mq/mq-api.interface.d.ts +0 -0
- /package/{esm/schema → schema}/mq/mq-api.interface.js +0 -0
- /package/{types/schema → schema}/mq/mq-controller.interface.d.ts +0 -0
- /package/{esm/schema → schema}/mq/mq-controller.interface.js +0 -0
- /package/{types/schema → schema}/mq/mq-header.interface.d.ts +0 -0
- /package/{esm/schema → schema}/mq/mq-header.interface.js +0 -0
- /package/{types/schema → schema}/mq/mq-operation.interface.d.ts +0 -0
- /package/{esm/schema → schema}/mq/mq-operation.interface.js +0 -0
- /package/{types/schema → schema}/opra-schema.d.ts +0 -0
- /package/{esm/schema → schema}/opra-schema.js +0 -0
- /package/{types/schema → schema}/type-guards.d.ts +0 -0
- /package/{esm/schema → schema}/type-guards.js +0 -0
- /package/{types/schema → schema}/types.d.ts +0 -0
- /package/{esm/schema → schema}/types.js +0 -0
- /package/{types/schema → schema}/value.interface.d.ts +0 -0
- /package/{esm/schema → schema}/value.interface.js +0 -0
- /package/{esm/schema → schema}/ws/ws-api.interface.js +0 -0
- /package/{types/schema → schema}/ws/ws-controller.interface.d.ts +0 -0
- /package/{esm/schema → schema}/ws/ws-controller.interface.js +0 -0
- /package/{types/schema → schema}/ws/ws-operation.interface.d.ts +0 -0
- /package/{esm/schema → schema}/ws/ws-operation.interface.js +0 -0
- /package/{types/types.d.ts → types.d.ts} +0 -0
- /package/{esm/types.js → types.js} +0 -0
|
@@ -1,155 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ResponsiveMap = void 0;
|
|
4
|
-
function isMap(v) {
|
|
5
|
-
return v && typeof v.forEach === 'function';
|
|
6
|
-
}
|
|
7
|
-
const kEntries = Symbol.for('kEntries');
|
|
8
|
-
const kKeyMap = Symbol.for('kKeyMap');
|
|
9
|
-
const kWellKnownKeys = Symbol.for('kWellKnownKeys');
|
|
10
|
-
const kOptions = Symbol.for('kOptions');
|
|
11
|
-
const kSize = Symbol.for('kSize');
|
|
12
|
-
/**
|
|
13
|
-
* A Map implementation that supports case-insensitivity and ordered keys
|
|
14
|
-
*/
|
|
15
|
-
class ResponsiveMap {
|
|
16
|
-
constructor(init, options) {
|
|
17
|
-
Object.defineProperty(this, kSize, {
|
|
18
|
-
value: 0,
|
|
19
|
-
enumerable: false,
|
|
20
|
-
writable: true,
|
|
21
|
-
});
|
|
22
|
-
Object.defineProperty(this, kEntries, {
|
|
23
|
-
value: {},
|
|
24
|
-
enumerable: false,
|
|
25
|
-
writable: true,
|
|
26
|
-
});
|
|
27
|
-
Object.defineProperty(this, kKeyMap, {
|
|
28
|
-
value: {},
|
|
29
|
-
enumerable: false,
|
|
30
|
-
writable: true,
|
|
31
|
-
});
|
|
32
|
-
Object.defineProperty(this, kWellKnownKeys, {
|
|
33
|
-
value: {},
|
|
34
|
-
enumerable: false,
|
|
35
|
-
writable: true,
|
|
36
|
-
});
|
|
37
|
-
const caseSensitive = !!options?.caseSensitive;
|
|
38
|
-
Object.defineProperty(this, kOptions, {
|
|
39
|
-
value: {
|
|
40
|
-
caseSensitive,
|
|
41
|
-
},
|
|
42
|
-
enumerable: false,
|
|
43
|
-
});
|
|
44
|
-
if (options?.wellKnownKeys) {
|
|
45
|
-
options.wellKnownKeys.forEach(k => {
|
|
46
|
-
if (caseSensitive)
|
|
47
|
-
this[kWellKnownKeys][k] = k;
|
|
48
|
-
else
|
|
49
|
-
this[kWellKnownKeys][k.toLowerCase()] = k;
|
|
50
|
-
});
|
|
51
|
-
}
|
|
52
|
-
this.clear();
|
|
53
|
-
if (init)
|
|
54
|
-
this.setAll(init);
|
|
55
|
-
}
|
|
56
|
-
get size() {
|
|
57
|
-
return this[kSize];
|
|
58
|
-
}
|
|
59
|
-
clear() {
|
|
60
|
-
Object.keys(this[kEntries]).forEach(k => delete this[kEntries][k]);
|
|
61
|
-
Object.keys(this[kKeyMap]).forEach(k => delete this[kKeyMap][k]);
|
|
62
|
-
this[kSize] = 0;
|
|
63
|
-
}
|
|
64
|
-
forEach(callbackfn, thisArg) {
|
|
65
|
-
for (const [k, v] of this.entries()) {
|
|
66
|
-
callbackfn.call(thisArg, v, k, this);
|
|
67
|
-
}
|
|
68
|
-
}
|
|
69
|
-
get(key) {
|
|
70
|
-
if (!key)
|
|
71
|
-
return;
|
|
72
|
-
return this[kEntries][this._getStoringKey(key)];
|
|
73
|
-
}
|
|
74
|
-
has(key) {
|
|
75
|
-
if (!key)
|
|
76
|
-
return false;
|
|
77
|
-
return Object.prototype.hasOwnProperty.call(this[kEntries], this._getStoringKey(key));
|
|
78
|
-
}
|
|
79
|
-
set(key, value) {
|
|
80
|
-
const storeKey = this._getStoringKey(key);
|
|
81
|
-
key = this._getOriginalKey(key);
|
|
82
|
-
const exists = Object.prototype.hasOwnProperty.call(this[kEntries], storeKey);
|
|
83
|
-
this[kEntries][storeKey] = value;
|
|
84
|
-
if (!exists)
|
|
85
|
-
this[kSize]++;
|
|
86
|
-
this[kKeyMap][storeKey] = key;
|
|
87
|
-
return this;
|
|
88
|
-
}
|
|
89
|
-
setAll(source) {
|
|
90
|
-
if (isMap(source))
|
|
91
|
-
source.forEach((v, k) => this.set(k, v));
|
|
92
|
-
else
|
|
93
|
-
Object.keys(source).forEach(k => this.set(k, source[k]));
|
|
94
|
-
return this;
|
|
95
|
-
}
|
|
96
|
-
keys() {
|
|
97
|
-
return Object.values(this[kKeyMap])[Symbol.iterator]();
|
|
98
|
-
}
|
|
99
|
-
values() {
|
|
100
|
-
return Object.values(this[kEntries])[Symbol.iterator]();
|
|
101
|
-
}
|
|
102
|
-
entries() {
|
|
103
|
-
return Object.entries(this[kEntries])[Symbol.iterator]();
|
|
104
|
-
}
|
|
105
|
-
delete(key) {
|
|
106
|
-
const storeKey = this._getStoringKey(key);
|
|
107
|
-
const exists = Object.prototype.hasOwnProperty.call(this[kEntries], storeKey);
|
|
108
|
-
delete this[kEntries][storeKey];
|
|
109
|
-
delete this[kKeyMap][storeKey];
|
|
110
|
-
if (!exists)
|
|
111
|
-
this[kSize]--;
|
|
112
|
-
return exists;
|
|
113
|
-
}
|
|
114
|
-
sort(compareFn) {
|
|
115
|
-
const oldValues = { ...this[kEntries] };
|
|
116
|
-
const oldKeymap = { ...this[kKeyMap] };
|
|
117
|
-
const keys = Array.from(this.keys());
|
|
118
|
-
if (compareFn)
|
|
119
|
-
keys.sort(compareFn);
|
|
120
|
-
else
|
|
121
|
-
keys.sort();
|
|
122
|
-
this.clear();
|
|
123
|
-
for (const k of keys) {
|
|
124
|
-
this[kEntries][k] = oldValues[k];
|
|
125
|
-
this[kKeyMap][k] = oldKeymap[k];
|
|
126
|
-
}
|
|
127
|
-
this[kSize] = keys.length;
|
|
128
|
-
return this;
|
|
129
|
-
}
|
|
130
|
-
toObject() {
|
|
131
|
-
const out = {};
|
|
132
|
-
for (const [storeKey, orgKey] of Object.entries(this[kKeyMap])) {
|
|
133
|
-
out[orgKey] = this[kEntries][storeKey];
|
|
134
|
-
}
|
|
135
|
-
return out;
|
|
136
|
-
}
|
|
137
|
-
[Symbol.iterator]() {
|
|
138
|
-
return this.entries();
|
|
139
|
-
}
|
|
140
|
-
get [Symbol.toStringTag]() {
|
|
141
|
-
return '[Object ResponsiveMap]';
|
|
142
|
-
}
|
|
143
|
-
_getOriginalKey(key) {
|
|
144
|
-
if (!key || this[kOptions].caseSensitive)
|
|
145
|
-
return key;
|
|
146
|
-
const storeKey = this._getStoringKey(key);
|
|
147
|
-
return this[kKeyMap][storeKey] ?? this[kWellKnownKeys][storeKey] ?? key;
|
|
148
|
-
}
|
|
149
|
-
_getStoringKey(key) {
|
|
150
|
-
if (this[kOptions].caseSensitive)
|
|
151
|
-
return key;
|
|
152
|
-
return key.toLowerCase();
|
|
153
|
-
}
|
|
154
|
-
}
|
|
155
|
-
exports.ResponsiveMap = ResponsiveMap;
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.safeJsonStringify = safeJsonStringify;
|
|
4
|
-
function safeJsonStringify(value, replacer, space) {
|
|
5
|
-
const seen = new WeakSet();
|
|
6
|
-
return JSON.stringify(value, (k, v) => {
|
|
7
|
-
if (v !== null && typeof v === 'object') {
|
|
8
|
-
if (seen.has(v))
|
|
9
|
-
return;
|
|
10
|
-
seen.add(v);
|
|
11
|
-
}
|
|
12
|
-
if (replacer)
|
|
13
|
-
return replacer(k, v);
|
|
14
|
-
return v;
|
|
15
|
-
}, space);
|
|
16
|
-
}
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.isStream = isStream;
|
|
4
|
-
exports.isReadable = isReadable;
|
|
5
|
-
exports.isWritable = isWritable;
|
|
6
|
-
exports.isReadableStream = isReadableStream;
|
|
7
|
-
exports.isBlob = isBlob;
|
|
8
|
-
exports.isFormData = isFormData;
|
|
9
|
-
exports.isURL = isURL;
|
|
10
|
-
function isStream(x) {
|
|
11
|
-
return x !== null && typeof x === 'object' && typeof x.pipe === 'function';
|
|
12
|
-
}
|
|
13
|
-
function isReadable(x) {
|
|
14
|
-
return (isStream(x) &&
|
|
15
|
-
typeof x._read === 'function' &&
|
|
16
|
-
typeof x._readableState === 'object');
|
|
17
|
-
}
|
|
18
|
-
function isWritable(x) {
|
|
19
|
-
return isStream(x) && typeof x._write === 'function';
|
|
20
|
-
}
|
|
21
|
-
function isReadableStream(x) {
|
|
22
|
-
return (isStream(x) &&
|
|
23
|
-
typeof x.getReader === 'function' &&
|
|
24
|
-
typeof x.pipeThrough === 'function' &&
|
|
25
|
-
typeof x.pipeTo === 'function');
|
|
26
|
-
}
|
|
27
|
-
function isBlob(x) {
|
|
28
|
-
return (x !== null &&
|
|
29
|
-
typeof x === 'object' &&
|
|
30
|
-
typeof x.size === 'number' &&
|
|
31
|
-
typeof x.arrayBuffer === 'function' &&
|
|
32
|
-
typeof x.stream === 'function');
|
|
33
|
-
}
|
|
34
|
-
function isFormData(x) {
|
|
35
|
-
return (x !== null &&
|
|
36
|
-
typeof x.constructor === 'function' &&
|
|
37
|
-
x.constructor.name === 'FormData' &&
|
|
38
|
-
typeof x.append === 'function' &&
|
|
39
|
-
typeof x.getAll === 'function');
|
|
40
|
-
}
|
|
41
|
-
function isURL(x) {
|
|
42
|
-
return (x !== null &&
|
|
43
|
-
typeof x == 'object' &&
|
|
44
|
-
typeof x.host === 'string' &&
|
|
45
|
-
typeof x.href === 'string');
|
|
46
|
-
}
|
package/cjs/i18n/i18n.js
DELETED
|
@@ -1,139 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.I18n = exports.BaseI18n = void 0;
|
|
4
|
-
const tslib_1 = require("tslib");
|
|
5
|
-
const i18next_1 = tslib_1.__importDefault(require("@browsery/i18next"));
|
|
6
|
-
const fast_tokenizer_1 = require("fast-tokenizer");
|
|
7
|
-
const string_utils_js_1 = require("./string-utils.js");
|
|
8
|
-
// eslint-disable-next-line import-x/no-named-as-default-member
|
|
9
|
-
exports.BaseI18n = Object.getPrototypeOf(i18next_1.default.createInstance())
|
|
10
|
-
.constructor;
|
|
11
|
-
class I18n extends exports.BaseI18n {
|
|
12
|
-
async init(arg0, arg1) {
|
|
13
|
-
const options = typeof arg0 === 'object' ? arg0 : {};
|
|
14
|
-
const callback = typeof arg0 === 'function' ? arg0 : arg1;
|
|
15
|
-
try {
|
|
16
|
-
const t = await super.init(options, callback);
|
|
17
|
-
// Add formatters
|
|
18
|
-
const formatter = this.services.formatter;
|
|
19
|
-
formatter.add('lowercase', (value, lng) => value.toLocaleLowerCase(lng));
|
|
20
|
-
formatter.add('uppercase', (value, lng) => value.toLocaleUpperCase(lng));
|
|
21
|
-
formatter.add('upperFirst', (value, lng) => value.charAt(0).toLocaleUpperCase(lng) + value.substring(1));
|
|
22
|
-
// overwrite existing resources with options.resources
|
|
23
|
-
if (options?.resources) {
|
|
24
|
-
for (const lang of Object.keys(options.resources)) {
|
|
25
|
-
const langObj = options.resources[lang];
|
|
26
|
-
for (const ns of Object.keys(langObj)) {
|
|
27
|
-
this.addResourceBundle(lang, ns, langObj[ns], false, true);
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
if (callback)
|
|
32
|
-
callback(null, t);
|
|
33
|
-
return t;
|
|
34
|
-
}
|
|
35
|
-
catch (err) {
|
|
36
|
-
if (callback)
|
|
37
|
-
callback(err, this.t);
|
|
38
|
-
throw err;
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
deep(input, options) {
|
|
42
|
-
if (input == null)
|
|
43
|
-
return input;
|
|
44
|
-
const objectStack = new WeakMap();
|
|
45
|
-
return this._deepTranslate(input, objectStack, options);
|
|
46
|
-
}
|
|
47
|
-
createInstance(options, callback) {
|
|
48
|
-
return new I18n(options, callback);
|
|
49
|
-
}
|
|
50
|
-
static createInstance(options, callback) {
|
|
51
|
-
return new I18n(options, callback);
|
|
52
|
-
}
|
|
53
|
-
_deepTranslate(input, objectStack, options) {
|
|
54
|
-
if (input == null)
|
|
55
|
-
return input;
|
|
56
|
-
if (options?.ignore && options.ignore(input, this))
|
|
57
|
-
return input;
|
|
58
|
-
if (typeof input === 'object' && objectStack.has(input))
|
|
59
|
-
return objectStack.get(input);
|
|
60
|
-
if (typeof input === 'string') {
|
|
61
|
-
let s = '';
|
|
62
|
-
for (let token of (0, fast_tokenizer_1.tokenize)(input, {
|
|
63
|
-
brackets: { '$t(': ')' },
|
|
64
|
-
quotes: true,
|
|
65
|
-
keepQuotes: true,
|
|
66
|
-
keepBrackets: true,
|
|
67
|
-
keepDelimiters: true,
|
|
68
|
-
})) {
|
|
69
|
-
if (token.startsWith('$t(') && token.endsWith(')')) {
|
|
70
|
-
token = token.substring(3, token.length - 1);
|
|
71
|
-
const a = (0, fast_tokenizer_1.splitString)(token, {
|
|
72
|
-
delimiters: '?',
|
|
73
|
-
quotes: true,
|
|
74
|
-
brackets: { '{': '}' },
|
|
75
|
-
});
|
|
76
|
-
const fallback = (0, string_utils_js_1.unescapeString)(token.substring((a[0] || '').length + 1));
|
|
77
|
-
token = a[0] || '';
|
|
78
|
-
const keys = [];
|
|
79
|
-
let opts = null;
|
|
80
|
-
for (const token2 of (0, fast_tokenizer_1.tokenize)(token, {
|
|
81
|
-
delimiters: ',',
|
|
82
|
-
quotes: true,
|
|
83
|
-
brackets: { '{': '}' },
|
|
84
|
-
})) {
|
|
85
|
-
if (token2.startsWith('{')) {
|
|
86
|
-
opts = JSON.parse(token2);
|
|
87
|
-
continue;
|
|
88
|
-
}
|
|
89
|
-
keys.push(token2);
|
|
90
|
-
}
|
|
91
|
-
const k = keys.length > 1 ? '$t(' + keys.join(',') + ')' : keys[0];
|
|
92
|
-
s += fallback
|
|
93
|
-
? this.t(k, fallback, { ...options, ...opts })
|
|
94
|
-
: this.t(k, { ...options, ...opts });
|
|
95
|
-
continue;
|
|
96
|
-
}
|
|
97
|
-
s += token;
|
|
98
|
-
}
|
|
99
|
-
return s;
|
|
100
|
-
}
|
|
101
|
-
if (Array.isArray(input)) {
|
|
102
|
-
const out = Array(input.length);
|
|
103
|
-
objectStack.set(input, out);
|
|
104
|
-
for (let i = 0, l = input.length; i < l; i++) {
|
|
105
|
-
out[i] = this._deepTranslate(input[i], objectStack, options);
|
|
106
|
-
}
|
|
107
|
-
objectStack.delete(input);
|
|
108
|
-
return out;
|
|
109
|
-
}
|
|
110
|
-
if (typeof input === 'object') {
|
|
111
|
-
if (Buffer.isBuffer(input))
|
|
112
|
-
return input;
|
|
113
|
-
if (Buffer.isBuffer(input) ||
|
|
114
|
-
input instanceof Symbol ||
|
|
115
|
-
input instanceof RegExp ||
|
|
116
|
-
input instanceof Map ||
|
|
117
|
-
input instanceof Set ||
|
|
118
|
-
input instanceof WeakMap ||
|
|
119
|
-
input instanceof WeakSet) {
|
|
120
|
-
return input;
|
|
121
|
-
}
|
|
122
|
-
const out = {};
|
|
123
|
-
objectStack.set(input, out);
|
|
124
|
-
const keys = Object.keys(input);
|
|
125
|
-
for (let i = 0, l = keys.length; i < l; i++) {
|
|
126
|
-
const k = keys[i];
|
|
127
|
-
out[k] = this._deepTranslate(input[k], objectStack, options);
|
|
128
|
-
}
|
|
129
|
-
objectStack.delete(input);
|
|
130
|
-
return out;
|
|
131
|
-
}
|
|
132
|
-
return input;
|
|
133
|
-
}
|
|
134
|
-
static get defaultInstance() {
|
|
135
|
-
return defaultInstance;
|
|
136
|
-
}
|
|
137
|
-
}
|
|
138
|
-
exports.I18n = I18n;
|
|
139
|
-
const defaultInstance = I18n.createInstance();
|
package/cjs/i18n/index.js
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.i18n = void 0;
|
|
4
|
-
const tslib_1 = require("tslib");
|
|
5
|
-
const i18n_js_1 = require("./i18n.js");
|
|
6
|
-
tslib_1.__exportStar(require("./i18n.js"), exports);
|
|
7
|
-
tslib_1.__exportStar(require("./translate.js"), exports);
|
|
8
|
-
const i18n = i18n_js_1.I18n.createInstance();
|
|
9
|
-
exports.i18n = i18n;
|
|
10
|
-
i18n.init().catch(() => undefined);
|
package/cjs/i18n/string-utils.js
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.escapeString = escapeString;
|
|
4
|
-
exports.unescapeString = unescapeString;
|
|
5
|
-
const unescapeRegEx = /\\(.)/g;
|
|
6
|
-
const escapeRegEx = /(\\)/g;
|
|
7
|
-
function escapeString(s) {
|
|
8
|
-
return s.replace(escapeRegEx, '\\\\');
|
|
9
|
-
}
|
|
10
|
-
function unescapeString(s) {
|
|
11
|
-
return s.replace(unescapeRegEx, '$1');
|
|
12
|
-
}
|
package/cjs/i18n/translate.js
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.translate = translate;
|
|
4
|
-
const string_utils_js_1 = require("./string-utils.js");
|
|
5
|
-
const bracketRegEx = /(\))/g;
|
|
6
|
-
function translate(key, arg0, arg1) {
|
|
7
|
-
const options = arg0 && typeof arg0 === 'object' ? arg0 : undefined;
|
|
8
|
-
const fallback = typeof arg0 === 'string' ? arg0 : arg1;
|
|
9
|
-
return ('$t(' +
|
|
10
|
-
key +
|
|
11
|
-
(options ? ',' + JSON.stringify(options) : '') +
|
|
12
|
-
(fallback
|
|
13
|
-
? '?' + (0, string_utils_js_1.escapeString)(fallback).replace(bracketRegEx, '\\$1')
|
|
14
|
-
: '') +
|
|
15
|
-
')');
|
|
16
|
-
}
|
package/cjs/index.js
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.uid = void 0;
|
|
4
|
-
const tslib_1 = require("tslib");
|
|
5
|
-
tslib_1.__exportStar(require("./document/index.js"), exports);
|
|
6
|
-
tslib_1.__exportStar(require("./enums/index.js"), exports);
|
|
7
|
-
tslib_1.__exportStar(require("./exception/index.js"), exports);
|
|
8
|
-
tslib_1.__exportStar(require("./filter/index.js"), exports);
|
|
9
|
-
tslib_1.__exportStar(require("./helpers/index.js"), exports);
|
|
10
|
-
tslib_1.__exportStar(require("./i18n/index.js"), exports);
|
|
11
|
-
tslib_1.__exportStar(require("./schema/index.js"), exports);
|
|
12
|
-
tslib_1.__exportStar(require("./types.js"), exports);
|
|
13
|
-
var uid_1 = require("uid");
|
|
14
|
-
Object.defineProperty(exports, "uid", { enumerable: true, get: function () { return uid_1.uid; } });
|
package/cjs/package.json
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
if (!Array.prototype.findLast) {
|
|
4
|
-
Array.prototype.findLast = function (predicate, thisArg) {
|
|
5
|
-
const i = this.findLastIndex(predicate, thisArg);
|
|
6
|
-
return i >= 0 ? this[i] : undefined;
|
|
7
|
-
};
|
|
8
|
-
Array.prototype.findLastIndex = function (predicate, thisArg) {
|
|
9
|
-
if (this == null) {
|
|
10
|
-
throw new TypeError('this is null or not defined');
|
|
11
|
-
}
|
|
12
|
-
const arr = Object(this);
|
|
13
|
-
const len = this.length;
|
|
14
|
-
thisArg = thisArg || this;
|
|
15
|
-
for (let i = len - 1; i >= 0; i--) {
|
|
16
|
-
if (predicate.call(thisArg, arr[i], i, arr)) {
|
|
17
|
-
return i;
|
|
18
|
-
}
|
|
19
|
-
}
|
|
20
|
-
return -1;
|
|
21
|
-
};
|
|
22
|
-
}
|
package/cjs/schema/constants.js
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.HttpController = void 0;
|
|
4
|
-
/**
|
|
5
|
-
*
|
|
6
|
-
* @namespace HttpController
|
|
7
|
-
*/
|
|
8
|
-
var HttpController;
|
|
9
|
-
(function (HttpController) {
|
|
10
|
-
HttpController.Kind = 'HttpController';
|
|
11
|
-
})(HttpController || (exports.HttpController = HttpController = {}));
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.HttpOperation = void 0;
|
|
4
|
-
var HttpOperation;
|
|
5
|
-
(function (HttpOperation) {
|
|
6
|
-
HttpOperation.Kind = 'HttpOperation';
|
|
7
|
-
})(HttpOperation || (exports.HttpOperation = HttpOperation = {}));
|
package/cjs/schema/index.js
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.MQController = void 0;
|
|
4
|
-
/**
|
|
5
|
-
*
|
|
6
|
-
* @namespace MQController
|
|
7
|
-
*/
|
|
8
|
-
var MQController;
|
|
9
|
-
(function (MQController) {
|
|
10
|
-
MQController.Kind = 'MQController';
|
|
11
|
-
})(MQController || (exports.MQController = MQController = {}));
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const tslib_1 = require("tslib");
|
|
4
|
-
tslib_1.__exportStar(require("./api.interface.js"), exports);
|
|
5
|
-
tslib_1.__exportStar(require("./api-document.interface.js"), exports);
|
|
6
|
-
tslib_1.__exportStar(require("./constants.js"), exports);
|
|
7
|
-
tslib_1.__exportStar(require("./data-type/array-type.interface.js"), exports);
|
|
8
|
-
tslib_1.__exportStar(require("./data-type/complex-type.interface.js"), exports);
|
|
9
|
-
tslib_1.__exportStar(require("./data-type/data-type.interface.js"), exports);
|
|
10
|
-
tslib_1.__exportStar(require("./data-type/enum-type.interface.js"), exports);
|
|
11
|
-
tslib_1.__exportStar(require("./data-type/field.interface.js"), exports);
|
|
12
|
-
tslib_1.__exportStar(require("./data-type/mapped-type.interface.js"), exports);
|
|
13
|
-
tslib_1.__exportStar(require("./data-type/mixin-type.interface.js"), exports);
|
|
14
|
-
tslib_1.__exportStar(require("./data-type/simple-type.interface.js"), exports);
|
|
15
|
-
tslib_1.__exportStar(require("./data-type/union-type.interface.js"), exports);
|
|
16
|
-
tslib_1.__exportStar(require("./data-type-container.interface.js"), exports);
|
|
17
|
-
tslib_1.__exportStar(require("./http/http-api.interface.js"), exports);
|
|
18
|
-
tslib_1.__exportStar(require("./http/http-controller.interface.js"), exports);
|
|
19
|
-
tslib_1.__exportStar(require("./http/http-media-type.interface.js"), exports);
|
|
20
|
-
tslib_1.__exportStar(require("./http/http-multipart-field.interface.js"), exports);
|
|
21
|
-
tslib_1.__exportStar(require("./http/http-operation.interface.js"), exports);
|
|
22
|
-
tslib_1.__exportStar(require("./http/http-operation-response.interface.js"), exports);
|
|
23
|
-
tslib_1.__exportStar(require("./http/http-parameter.interface.js"), exports);
|
|
24
|
-
tslib_1.__exportStar(require("./http/http-request-body.interface.js"), exports);
|
|
25
|
-
tslib_1.__exportStar(require("./http/http-status-range.interface.js"), exports);
|
|
26
|
-
tslib_1.__exportStar(require("./mq/mq-api.interface.js"), exports);
|
|
27
|
-
tslib_1.__exportStar(require("./mq/mq-controller.interface.js"), exports);
|
|
28
|
-
tslib_1.__exportStar(require("./mq/mq-header.interface.js"), exports);
|
|
29
|
-
tslib_1.__exportStar(require("./mq/mq-operation.interface.js"), exports);
|
|
30
|
-
tslib_1.__exportStar(require("./type-guards.js"), exports);
|
|
31
|
-
tslib_1.__exportStar(require("./types.js"), exports);
|
|
32
|
-
tslib_1.__exportStar(require("./value.interface.js"), exports);
|
|
33
|
-
tslib_1.__exportStar(require("./ws/ws-api.interface.js"), exports);
|
|
34
|
-
tslib_1.__exportStar(require("./ws/ws-controller.interface.js"), exports);
|
|
35
|
-
tslib_1.__exportStar(require("./ws/ws-operation.interface.js"), exports);
|