Compare commits
9 Commits
Author | SHA1 | Date | |
---|---|---|---|
411516befc | |||
41c2aec293 | |||
8adbfd3118 | |||
d9e75a6a57 | |||
6ec0d9dc02 | |||
d5516f11f7 | |||
a9cf2bb4c3 | |||
ee99ddd23c | |||
b99a0548a2 |
2
package-lock.json
generated
2
package-lock.json
generated
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@apiglobal/sdk",
|
||||
"version": "1.0.13",
|
||||
"version": "1.0.18",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
@ -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",
|
||||
|
@ -1,3 +1,5 @@
|
||||
export * from './sdk.classes.agenvironment';
|
||||
export * from './sdk.classes.aghandler';
|
||||
export * from './sdk.classes.authinfo';
|
||||
|
||||
export * from './interfaces';
|
||||
|
@ -1 +1 @@
|
||||
export {};
|
||||
export * from './projectsettings';
|
||||
|
21
ts/interfaces/projectsettings.ts
Normal file
21
ts/interfaces/projectsettings.ts
Normal 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;
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user