Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 13 additions & 3 deletions .jsdoc.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
"lib/stack/asset/index.js",
"lib/stack/asset/folders/index.js",
"lib/stack/branch/index.js",
"lib/stack/branch/compare.js",
"lib/stack/branch/mergeQueue.js",
"lib/stack/branchAlias/index.js",
"lib/stack/bulkOperation/index.js",
"lib/stack/extension/index.js",
Expand All @@ -27,15 +29,23 @@
"lib/stack/environment/index.js",
"lib/stack/deliveryToken/index.js",
"lib/stack/roles/index.js",
"lib/stack/webhook/index.js",
"lib/stack/workflow/index.js",
"lib/stack/workflow/publishRules/index.js"
"lib/stack/workflow/publishRules/index.js",
"lib/marketplace/app/oauth/index.js",
"lib/marketplace/app/index.js",
"lib/marketplace/app/hosting/deployment.js",
"lib/marketplace/app/hosting/index.js",
"lib/marketplace/index.js",
"lib/marketplace/installation/index.js",
"lib/marketplace/installation/webhooks/index.js",
"lib/marketplace/apprequest/index.js",
"lib/marketplace/authorization/index.js"

],
"excludePattern": "(node_modules/|jsdocs)"
},
"opts": {
"template": "docdash-template",
"template": "./node_modules/docdash",
"destination": "./jsdocs/",
"encoding": "utf8",
"private": true,
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ contentstackClient.stack({ api_key: 'API_KEY' }).asset().create({ asset })
- [Content Management API Docs](https://www.contentstack.com/docs/developers/apis/content-management-api)

### The MIT License (MIT)
Copyright © 2012-2022 [Contentstack](https://www.contentstack.com/). All Rights Reserved
Copyright © 2012-2023 [Contentstack](https://www.contentstack.com/). All Rights Reserved

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

Expand Down
253 changes: 0 additions & 253 deletions lib/app/installation/index.js

This file was deleted.

2 changes: 1 addition & 1 deletion lib/entity.js
Original file line number Diff line number Diff line change
Expand Up @@ -288,4 +288,4 @@ export async function get (http, url, params, data) {
} catch (err) {
throw error(err)
}
}
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import cloneDeep from 'lodash/cloneDeep'
import ContentstackCollection from '../../contentstackCollection'
import error from '../../core/contentstackError'
import ContentstackCollection from '../../../contentstackCollection'
import error from '../../../core/contentstackError'

export function Deployment (http, data, params) {
http.defaults.versioningStrategy = undefined
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import cloneDeep from 'lodash/cloneDeep'
import error from '../../core/contentstackError'
import error from '../../../core/contentstackError'
import { Deployment } from './deployment'

export function Hosting (http, data, params) {
Expand Down
Loading