@adminide-stack/marketplace-module-server 0.0.2-alpha.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/LICENSE +39 -0
- package/lib/constants/index.d.ts +1 -0
- package/lib/constants/types.d.ts +5 -0
- package/lib/containers/index.d.ts +1 -0
- package/lib/containers/module.d.ts +2 -0
- package/lib/graphql/resolvers/index.d.ts +1 -0
- package/lib/graphql/resolvers/resolvers.d.ts +1 -0
- package/lib/graphql/schemas/index.d.ts +2 -0
- package/lib/index.d.ts +5 -0
- package/lib/index.js +935 -0
- package/lib/index.js.map +1 -0
- package/lib/interfaces/index.d.ts +2 -0
- package/lib/interfaces/registry-extension-repository.d.ts +14 -0
- package/lib/interfaces/registry-extension-service.d.ts +10 -0
- package/lib/module.d.ts +3 -0
- package/lib/services/extension-service.d.ts +31 -0
- package/lib/services/index.d.ts +1 -0
- package/lib/store/index.d.ts +2 -0
- package/lib/store/models/index.d.ts +1 -0
- package/lib/store/models/registry-extension-model.d.ts +9 -0
- package/lib/store/repository/index.d.ts +1 -0
- package/lib/store/repository/registry-extension-repository.d.ts +26 -0
- package/package.json +36 -0
package/LICENSE
ADDED
@@ -0,0 +1,39 @@
|
|
1
|
+
The CDEBase Enterprise license (the “Enterprise License”)
|
2
|
+
Copyright (c) 2018 cdebase LLC.
|
3
|
+
|
4
|
+
With regard to the CDEBase Software:
|
5
|
+
|
6
|
+
This software and associated documentation files (the "Software") may only be
|
7
|
+
used in production, if you (and any entity that you represent) have agreed to,
|
8
|
+
and are in compliance with, the CDEBase Terms of Service, available
|
9
|
+
at https://about.cdebase.com/terms (the “Enterprise Terms”), or other
|
10
|
+
agreement governing the use of the Software, as agreed by you and CDEBase,
|
11
|
+
and otherwise have a valid CDEBase Enterprise subscription for the
|
12
|
+
correct number of user seats. Subject to the foregoing sentence, you are free to
|
13
|
+
modify this Software and publish patches to the Software. You agree that CDEBase
|
14
|
+
and/or its licensors (as applicable) retain all right, title and interest in and
|
15
|
+
to all such modifications and/or patches, and all such modifications and/or
|
16
|
+
patches may only be used, copied, modified, displayed, distributed, or otherwise
|
17
|
+
exploited with a valid CDEBase Enterprise subscription for the correct
|
18
|
+
number of user seats. Notwithstanding the foregoing, you may copy and modify
|
19
|
+
the Software for development and testing purposes, without requiring a
|
20
|
+
subscription. You agree that CDEBase and/or its licensors (as applicable) retain
|
21
|
+
all right, title and interest in and to all such modifications. You are not
|
22
|
+
granted any other rights beyond what is expressly stated herein. Subject to the
|
23
|
+
foregoing, it is forbidden to copy, merge, publish, distribute, sublicense,
|
24
|
+
and/or sell the Software.
|
25
|
+
|
26
|
+
The full text of this Enterprise License shall be included in all copies or
|
27
|
+
substantial portions of the Software.
|
28
|
+
|
29
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
30
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
31
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
32
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
33
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
34
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
35
|
+
SOFTWARE.
|
36
|
+
|
37
|
+
For all third party components incorporated into the CDEBase Software, those
|
38
|
+
components are licensed under the original license provided by the owner of the
|
39
|
+
applicable component.
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from './types';
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from './module';
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from './resolvers';
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const resolver: any;
|