New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@craftercms/content

Package Overview
Dependencies
Maintainers
3
Versions
35
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@craftercms/content - npm Package Compare versions

Comparing version 1.0.0 to 1.1.0

50

bundles/content.umd.js

@@ -20,3 +20,3 @@ /*

typeof define === 'function' && define.amd ? define('@craftercms/content', ['exports', '@craftercms/classes', '@craftercms/utils'], factory) :
(factory((global.craftercms = global.craftercms || {}, global.craftercms.content = {}),null,global.craftercms.utils));
(factory((global.craftercms = global.craftercms || {}, global.craftercms.content = {}),global.craftercms.classes,global.craftercms.utils));
}(this, (function (exports,classes,utils) { 'use strict';

@@ -67,2 +67,18 @@

/*
* Copyright (C) 2007-2019 Crafter Software Corporation. All rights reserved.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see http://www.gnu.org/licenses/.
*/
/**

@@ -100,2 +116,18 @@ * Content Store Service API

/*
* Copyright (C) 2007-2019 Crafter Software Corporation. All rights reserved.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see http://www.gnu.org/licenses/.
*/
/**

@@ -129,2 +161,18 @@ * Navigation Service API

/*
* Copyright (C) 2007-2019 Crafter Software Corporation. All rights reserved.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see http://www.gnu.org/licenses/.
*/
/**

@@ -131,0 +179,0 @@ * URL Transformation Service API

2

bundles/content.umd.min.js

@@ -1,1 +0,1 @@

!function(global,factory){"object"==typeof exports&&"undefined"!=typeof module?factory(exports,require("@craftercms/classes"),require("@craftercms/utils")):"function"==typeof define&&define.amd?define("@craftercms/content",["exports","@craftercms/classes","@craftercms/utils"],factory):factory((global.craftercms=global.craftercms||{},global.craftercms.content={}),null,global.craftercms.utils)}(this,function(exports,classes,utils){"use strict";var extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(d,b){d.__proto__=b}||function(d,b){for(var p in b)b.hasOwnProperty(p)&&(d[p]=b[p])};function __extends(d,b){function __(){this.constructor=d}extendStatics(d,b),d.prototype=null===b?Object.create(b):(__.prototype=b.prototype,new __)}var ContentStoreService=function(_super){function ContentStoreService(){return null!==_super&&_super.apply(this,arguments)||this}return __extends(ContentStoreService,_super),ContentStoreService.getItem=function(url,config){void 0===config&&(config=classes.crafterConf.getConfig());var requestURL=utils.composeUrl(config,config.endpoints.GET_ITEM_URL);return classes.SDKService.httpGet(requestURL,{url:url,crafterSite:config.site})},ContentStoreService.getDescriptor=function(url,config){void 0===config&&(config=classes.crafterConf.getConfig());var requestURL=utils.composeUrl(config,config.endpoints.GET_DESCRIPTOR);return classes.SDKService.httpGet(requestURL,{url:url,crafterSite:config.site})},ContentStoreService.getChildren=function(url,config){void 0===config&&(config=classes.crafterConf.getConfig());var requestURL=utils.composeUrl(config,config.endpoints.GET_CHILDREN);return classes.SDKService.httpGet(requestURL,{url:url,crafterSite:config.site})},ContentStoreService.getTree=function(url,depth,config){void 0===depth&&(depth=1),void 0===config&&(config=classes.crafterConf.getConfig());var requestURL=utils.composeUrl(config,config.endpoints.GET_TREE);return classes.SDKService.httpGet(requestURL,{url:url,depth:depth,crafterSite:config.site})},ContentStoreService}(classes.SDKService),NavigationService=function(_super){function NavigationService(){return null!==_super&&_super.apply(this,arguments)||this}return __extends(NavigationService,_super),NavigationService.getNavTree=function(url,depth,currentPageUrl,config){void 0===depth&&(depth=1),void 0===currentPageUrl&&(currentPageUrl=""),void 0===config&&(config=classes.crafterConf.getConfig());var requestURL=utils.composeUrl(config,config.endpoints.GET_NAV_TREE);return classes.SDKService.httpGet(requestURL,{crafterSite:config.site,url:url,depth:depth,currentPageUrl:currentPageUrl})},NavigationService.getNavBreadcrumb=function(url,root,config){void 0===root&&(root=""),void 0===config&&(config=classes.crafterConf.getConfig());var requestURL=utils.composeUrl(config,config.endpoints.GET_BREADCRUMB);return classes.SDKService.httpGet(requestURL,{crafterSite:config.site,url:url,root:root})},NavigationService}(classes.SDKService),UrlTransformationService=function(_super){function UrlTransformationService(){return null!==_super&&_super.apply(this,arguments)||this}return __extends(UrlTransformationService,_super),UrlTransformationService.transform=function(transformerName,url,config){void 0===config&&(config=classes.crafterConf.getConfig());var requestURL=utils.composeUrl(config,config.endpoints.TRANSFORM_URL);return classes.SDKService.httpGet(requestURL,{crafterSite:config.site,transformerName:transformerName,url:url})},UrlTransformationService}(classes.SDKService);exports.ContentStoreService=ContentStoreService,exports.NavigationService=NavigationService,exports.UrlTransformationService=UrlTransformationService,Object.defineProperty(exports,"__esModule",{value:!0})});
!function(global,factory){"object"==typeof exports&&"undefined"!=typeof module?factory(exports,require("@craftercms/classes"),require("@craftercms/utils")):"function"==typeof define&&define.amd?define("@craftercms/content",["exports","@craftercms/classes","@craftercms/utils"],factory):factory((global.craftercms=global.craftercms||{},global.craftercms.content={}),global.craftercms.classes,global.craftercms.utils)}(this,function(exports,classes,utils){"use strict";var extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(d,b){d.__proto__=b}||function(d,b){for(var p in b)b.hasOwnProperty(p)&&(d[p]=b[p])};function __extends(d,b){function __(){this.constructor=d}extendStatics(d,b),d.prototype=null===b?Object.create(b):(__.prototype=b.prototype,new __)}var ContentStoreService=function(_super){function ContentStoreService(){return null!==_super&&_super.apply(this,arguments)||this}return __extends(ContentStoreService,_super),ContentStoreService.getItem=function(url,config){void 0===config&&(config=classes.crafterConf.getConfig());var requestURL=utils.composeUrl(config,config.endpoints.GET_ITEM_URL);return classes.SDKService.httpGet(requestURL,{url:url,crafterSite:config.site})},ContentStoreService.getDescriptor=function(url,config){void 0===config&&(config=classes.crafterConf.getConfig());var requestURL=utils.composeUrl(config,config.endpoints.GET_DESCRIPTOR);return classes.SDKService.httpGet(requestURL,{url:url,crafterSite:config.site})},ContentStoreService.getChildren=function(url,config){void 0===config&&(config=classes.crafterConf.getConfig());var requestURL=utils.composeUrl(config,config.endpoints.GET_CHILDREN);return classes.SDKService.httpGet(requestURL,{url:url,crafterSite:config.site})},ContentStoreService.getTree=function(url,depth,config){void 0===depth&&(depth=1),void 0===config&&(config=classes.crafterConf.getConfig());var requestURL=utils.composeUrl(config,config.endpoints.GET_TREE);return classes.SDKService.httpGet(requestURL,{url:url,depth:depth,crafterSite:config.site})},ContentStoreService}(classes.SDKService),NavigationService=function(_super){function NavigationService(){return null!==_super&&_super.apply(this,arguments)||this}return __extends(NavigationService,_super),NavigationService.getNavTree=function(url,depth,currentPageUrl,config){void 0===depth&&(depth=1),void 0===currentPageUrl&&(currentPageUrl=""),void 0===config&&(config=classes.crafterConf.getConfig());var requestURL=utils.composeUrl(config,config.endpoints.GET_NAV_TREE);return classes.SDKService.httpGet(requestURL,{crafterSite:config.site,url:url,depth:depth,currentPageUrl:currentPageUrl})},NavigationService.getNavBreadcrumb=function(url,root,config){void 0===root&&(root=""),void 0===config&&(config=classes.crafterConf.getConfig());var requestURL=utils.composeUrl(config,config.endpoints.GET_BREADCRUMB);return classes.SDKService.httpGet(requestURL,{crafterSite:config.site,url:url,root:root})},NavigationService}(classes.SDKService),UrlTransformationService=function(_super){function UrlTransformationService(){return null!==_super&&_super.apply(this,arguments)||this}return __extends(UrlTransformationService,_super),UrlTransformationService.transform=function(transformerName,url,config){void 0===config&&(config=classes.crafterConf.getConfig());var requestURL=utils.composeUrl(config,config.endpoints.TRANSFORM_URL);return classes.SDKService.httpGet(requestURL,{crafterSite:config.site,transformerName:transformerName,url:url})},UrlTransformationService}(classes.SDKService);exports.ContentStoreService=ContentStoreService,exports.NavigationService=NavigationService,exports.UrlTransformationService=UrlTransformationService,Object.defineProperty(exports,"__esModule",{value:!0})});

@@ -0,1 +1,17 @@

/*
* Copyright (C) 2007-2019 Crafter Software Corporation. All rights reserved.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see http://www.gnu.org/licenses/.
*/
export * from './src/content-store-service';

@@ -2,0 +18,0 @@ export * from './src/navigation-service';

@@ -0,2 +1,18 @@

/*
* Copyright (C) 2007-2019 Crafter Software Corporation. All rights reserved.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see http://www.gnu.org/licenses/.
*/
export * from './content';
//# sourceMappingURL=index.js.map

@@ -0,1 +1,17 @@

/*
* Copyright (C) 2007-2019 Crafter Software Corporation. All rights reserved.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see http://www.gnu.org/licenses/.
*/
import { crafterConf, SDKService } from '@craftercms/classes';

@@ -2,0 +18,0 @@ import { composeUrl } from '@craftercms/utils';

@@ -0,1 +1,17 @@

/*
* Copyright (C) 2007-2019 Crafter Software Corporation. All rights reserved.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see http://www.gnu.org/licenses/.
*/
import { crafterConf, SDKService } from '@craftercms/classes';

@@ -2,0 +18,0 @@ import { composeUrl } from '@craftercms/utils';

@@ -0,1 +1,17 @@

/*
* Copyright (C) 2007-2019 Crafter Software Corporation. All rights reserved.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see http://www.gnu.org/licenses/.
*/
import { crafterConf, SDKService } from '@craftercms/classes';

@@ -2,0 +18,0 @@ import { composeUrl } from '@craftercms/utils';

@@ -0,1 +1,17 @@

/*
* Copyright (C) 2007-2019 Crafter Software Corporation. All rights reserved.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see http://www.gnu.org/licenses/.
*/
export * from './src/content-store-service';

@@ -2,0 +18,0 @@ export * from './src/navigation-service';

@@ -0,2 +1,18 @@

/*
* Copyright (C) 2007-2019 Crafter Software Corporation. All rights reserved.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see http://www.gnu.org/licenses/.
*/
export * from './content';
//# sourceMappingURL=index.js.map

@@ -0,1 +1,17 @@

/*
* Copyright (C) 2007-2019 Crafter Software Corporation. All rights reserved.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see http://www.gnu.org/licenses/.
*/
import * as tslib_1 from "tslib";

@@ -2,0 +18,0 @@ import { crafterConf, SDKService } from '@craftercms/classes';

@@ -0,1 +1,17 @@

/*
* Copyright (C) 2007-2019 Crafter Software Corporation. All rights reserved.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see http://www.gnu.org/licenses/.
*/
import * as tslib_1 from "tslib";

@@ -2,0 +18,0 @@ import { crafterConf, SDKService } from '@craftercms/classes';

@@ -0,1 +1,17 @@

/*
* Copyright (C) 2007-2019 Crafter Software Corporation. All rights reserved.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see http://www.gnu.org/licenses/.
*/
import * as tslib_1 from "tslib";

@@ -2,0 +18,0 @@ import { crafterConf, SDKService } from '@craftercms/classes';

@@ -20,2 +20,18 @@ /*

/*
* Copyright (C) 2007-2019 Crafter Software Corporation. All rights reserved.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see http://www.gnu.org/licenses/.
*/
/**

@@ -43,2 +59,18 @@ * Content Store Service API

/*
* Copyright (C) 2007-2019 Crafter Software Corporation. All rights reserved.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see http://www.gnu.org/licenses/.
*/
/**

@@ -62,2 +94,18 @@ * Navigation Service API

/*
* Copyright (C) 2007-2019 Crafter Software Corporation. All rights reserved.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see http://www.gnu.org/licenses/.
*/
/**

@@ -77,3 +125,20 @@ * URL Transformation Service API

/*
* Copyright (C) 2007-2019 Crafter Software Corporation. All rights reserved.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see http://www.gnu.org/licenses/.
*/
export { ContentStoreService, NavigationService, UrlTransformationService };
//# sourceMappingURL=content.js.map

@@ -21,2 +21,18 @@ /*

/*
* Copyright (C) 2007-2019 Crafter Software Corporation. All rights reserved.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see http://www.gnu.org/licenses/.
*/
/**

@@ -54,2 +70,18 @@ * Content Store Service API

/*
* Copyright (C) 2007-2019 Crafter Software Corporation. All rights reserved.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see http://www.gnu.org/licenses/.
*/
/**

@@ -83,2 +115,18 @@ * Navigation Service API

/*
* Copyright (C) 2007-2019 Crafter Software Corporation. All rights reserved.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see http://www.gnu.org/licenses/.
*/
/**

@@ -104,3 +152,20 @@ * URL Transformation Service API

/*
* Copyright (C) 2007-2019 Crafter Software Corporation. All rights reserved.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see http://www.gnu.org/licenses/.
*/
export { ContentStoreService, NavigationService, UrlTransformationService };
//# sourceMappingURL=content.js.map
{
"name": "@craftercms/content",
"version": "1.0.0",
"version": "1.1.0",
"description": "Crafter CMS services for content and navigation retrieval",

@@ -13,2 +13,7 @@ "main": "./bundles/content.umd.js",

},
"keywords": [
"content management",
"craftercms",
"crafter"
],
"author": "CrafterCMS",

@@ -29,5 +34,5 @@ "license": "GNU LGPL 3.0",

"rxjs": "^6.2.0",
"@craftercms/utils": "1.0.0",
"@craftercms/models": "1.0.0"
"@craftercms/utils": "1.1.0",
"@craftercms/models": "1.1.0"
}
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc