7 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
3 changed files with 22 additions and 8 deletions

2
package-lock.json generated
View File

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

View File

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

View File

@ -1,7 +1,21 @@
export interface IProjectSettings {
registryId: string;
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;
packageName: string;
environmentVariables: {[key: string]: string};
};
}