7 Commits

Author SHA1 Message Date
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 15 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.17",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "@apiglobal/sdk",
"version": "1.0.13",
"version": "1.0.17",
"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,10 @@
export interface IHandlerSettings {
slug: string;
packageName: string;
environmentVariables: { [key: string]: string };
registryId: string;
registryDescriptor: {
registryUrl: string;
registryToken: string;
};
}