@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 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,5 @@
1
+ export declare const TYPES: {
2
+ IExtensionMongoConnection: symbol;
3
+ IRegistryExtensionService: symbol;
4
+ IRegistryExtensionRepository: symbol;
5
+ };
@@ -0,0 +1 @@
1
+ export * from './module';
@@ -0,0 +1,2 @@
1
+ import { interfaces } from 'inversify';
2
+ export declare const extensionModule: (settings: any) => interfaces.ContainerModule;
@@ -0,0 +1 @@
1
+ export * from './resolvers';
@@ -0,0 +1 @@
1
+ export declare const resolver: any;
@@ -0,0 +1,2 @@
1
+ import schema from './schema.graphql';
2
+ export { schema };
package/lib/index.d.ts ADDED
@@ -0,0 +1,5 @@
1
+ import { Feature } from '@common-stack/server-core';
2
+ export * from './interfaces';
3
+ export * from './constants';
4
+ declare const _default: Feature<import("@common-stack/server-core").ConfigurationScope>;
5
+ export default _default;