ng2-wp-api
Advanced tools
Comparing version 1.0.6 to 1.0.7
@@ -1,2 +0,2 @@ | ||
export interface QueryArgs { | ||
export declare class QueryArgs { | ||
author: string; | ||
@@ -12,2 +12,3 @@ context: any; | ||
_embed: boolean; | ||
constructor(); | ||
} |
"use strict"; | ||
class QueryArgs { | ||
constructor() { | ||
} | ||
} | ||
exports.QueryArgs = QueryArgs; | ||
//# sourceMappingURL=args.model.js.map |
@@ -1,12 +0,15 @@ | ||
export interface QueryArgs { | ||
author: string; | ||
context: any; | ||
filter: any; | ||
order: string; | ||
orderby: string; | ||
page: number; | ||
per_page: number; | ||
search: string; | ||
status: any; | ||
_embed: boolean; | ||
export class QueryArgs { | ||
public author: string; | ||
public context: any; | ||
public filter: any; | ||
public order: string; | ||
public orderby: string; | ||
public page: number; | ||
public per_page: number; | ||
public search: string; | ||
public status: any; | ||
public _embed: boolean; | ||
constructor(){ | ||
} | ||
} |
@@ -10,2 +10,3 @@ "use strict"; | ||
__export(require('./service/config.service')); | ||
__export(require('./models/args.model')); | ||
__export(require('./models/post.model')); | ||
@@ -12,0 +13,0 @@ const config_service_2 = require('./service/config.service'); |
{ | ||
"name": "ng2-wp-api", | ||
"version": "1.0.6", | ||
"version": "1.0.7", | ||
"description": "WordPress API Service for Angular2", | ||
@@ -5,0 +5,0 @@ "main": "./index.js", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
38200
805