Skip to content

Commit

Permalink
Merge pull request #85 from gunjandatta/gdatta
Browse files Browse the repository at this point in the history
Added the ALM API
  • Loading branch information
gunjandatta committed Dec 9, 2017
2 parents 0bbec3e + 88f990d commit edbaf40
Show file tree
Hide file tree
Showing 47 changed files with 1,178 additions and 203 deletions.
51 changes: 51 additions & 0 deletions build/mapper/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -836,6 +836,57 @@ export declare const Mapper: {
requestType: number;
};
};
tenantapp: {
Deploy: {
requestType: number;
};
Install: {
requestType: number;
};
query: {
argNames: string[];
requestType: number;
};
Remove: {
requestType: number;
};
Retract: {
requestType: number;
};
Upgrade: {
requestType: number;
};
Uninstall: {
requestType: number;
};
};
tenantappcatalog: {
properties: string[];
Add: {
argNames: string[];
requestType: number;
};
GetById: {
argNames: string[];
name: string;
requestType: number;
returnType: string;
};
SiteCollectionAppCatalogsSites: {
requestType: number;
};
};
tenantapps: {
GetById: {
argNames: string[];
requestType: number;
returnType: string;
};
query: {
argNames: string[];
requestType: number;
};
};
user: {
properties: string[];
delete: {
Expand Down
1 change: 1 addition & 0 deletions build/mapper/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion build/mapper/index.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions build/mapper/site/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
export * from "./site";
export * from "./tenantApp";
export * from "./tenantApps";
export * from "./tenantAppCatalog";
export * from "./web";
export * from "./webs";
60 changes: 60 additions & 0 deletions build/mapper/site/mapper.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,66 @@ export declare const site: {
requestType: number;
};
};
/**
* Tenant App
*/
export declare const tenantapp: {
Deploy: {
requestType: number;
};
Install: {
requestType: number;
};
query: {
argNames: string[];
requestType: number;
};
Remove: {
requestType: number;
};
Retract: {
requestType: number;
};
Upgrade: {
requestType: number;
};
Uninstall: {
requestType: number;
};
};
/**
* Tenant Apps
*/
export declare const tenantapps: {
GetById: {
argNames: string[];
requestType: number;
returnType: string;
};
query: {
argNames: string[];
requestType: number;
};
};
/**
* Tenant App Catalog
*/
export declare const tenantappcatalog: {
properties: string[];
Add: {
argNames: string[];
requestType: number;
};
GetById: {
argNames: string[];
name: string;
requestType: number;
returnType: string;
};
SiteCollectionAppCatalogsSites: {
requestType: number;
};
};
/**
* Web
*/
Expand Down
85 changes: 83 additions & 2 deletions build/mapper/site/mapper.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit edbaf40

Please sign in to comment.