Skip to content
Merged
Show file tree
Hide file tree
Changes from 15 commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
8516287
feat: :recycle: refactored manifest api functions in marketplace app …
nadeem-cs May 22, 2023
bd25707
refactor: :art: adds marketplace in collection and adds missing funct…
nadeem-cs May 31, 2023
ba56413
feat: :sparkles: restructures the files for marketplace apis and refa…
nadeem-cs Jun 1, 2023
e6f6cde
feat: adds webhook functions in installation and deletes previous web…
nadeem-cs Jun 5, 2023
97182f4
test: adds test cases for installation functions
nadeem-cs Jun 5, 2023
03cf2ee
fix: :package: package version updates for generate docs script
nadeem-cs Jun 20, 2023
077dd4c
fix: :adhesive_bandage: updated files list in jsdoc config
nadeem-cs Jun 20, 2023
8ce50b5
fix: added back stack/webhook apis and fixed some routing issues
nadeem-cs Jun 20, 2023
cc1eec8
Merge pull request #56 from contentstack/refactor/CS-38336-Marketplac…
nadeem-cs Jul 5, 2023
b0a6868
feat: :sparkles: adds update fn, auditlog fn, users type correction
nadeem-cs Jul 7, 2023
9d982cc
chore: replaced uid and other data
nadeem-cs Jul 7, 2023
a1ff3b7
Merge pull request #57 from contentstack/feat/CS-39614-adds-nrp-audit…
nadeem-cs Jul 10, 2023
536b6f2
fix: :bug: corrected type of env parameter
nadeem-cs Jul 11, 2023
38de96f
Merge branch 'master' into next
nadeem-cs Jul 14, 2023
72750a0
refactor: adds and corrects types of ContentstackCollectin and market…
nadeem-cs Jul 14, 2023
195d0eb
Merge pull request #61 from contentstack/feat/CS-39614-adds-nrp-audit…
nadeem-cs Jul 14, 2023
269a7ba
fix: credentials in response fix; bulkOperation types fixes;
nadeem-cs Jul 17, 2023
3e437f3
test: :white_check_mark: improves code coverage
nadeem-cs Jul 17, 2023
c40f512
Merge pull request #62 from contentstack/feat/CS-39614-adds-nrp-audit…
ishaileshmishra Jul 17, 2023
a59abdc
Merge pull request #63 from contentstack/bug/env-type-change
nadeem-cs Jul 18, 2023
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