9 Commits

Author SHA1 Message Date
411516befc 1.0.18 2020-10-19 16:52:38 +00:00
41c2aec293 fix(core): update 2020-10-19 16:52:37 +00:00
8adbfd3118 1.0.17 2020-09-26 12:33:48 +00:00
d9e75a6a57 fix(core): update 2020-09-26 12:33:48 +00:00
6ec0d9dc02 1.0.16 2020-09-26 12:33:24 +00:00
d5516f11f7 1.0.15 2020-09-26 12:31:09 +00:00
a9cf2bb4c3 fix(core): update 2020-09-26 12:31:08 +00:00
ee99ddd23c 1.0.14 2020-09-26 11:57:27 +00:00
b99a0548a2 fix(core): update 2020-09-26 11:57:26 +00:00
5 changed files with 26 additions and 3 deletions

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "@apiglobal/sdk",
"version": "1.0.13",
"version": "1.0.18",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "@apiglobal/sdk",
"version": "1.0.13",
"version": "1.0.18",
"private": false,
"description": "an sdk package for api.global",
"main": "dist_ts/index.js",

View File

@ -1,3 +1,5 @@
export * from './sdk.classes.agenvironment';
export * from './sdk.classes.aghandler';
export * from './sdk.classes.authinfo';
export * from './interfaces';

View File

@ -1 +1 @@
export {};
export * from './projectsettings';

View File

@ -0,0 +1,21 @@
export interface IHandlerSettings {
/**
* the slug is a globally unique slug that the package will be answer under
*/
slug: string;
/**
* the packagename points to the package to use in the supplied registry
*/
packageName: string;
/**
* environment variables are supplied to the service at runtime
*/
environmentVariables: { [key: string]: string };
/**
* this is needed to know where to get the package to run
*/
registryDescriptor: {
registryUrl: string;
registryToken: string;
};
}