You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// import ContentstackCollection from '../../contentstackCollection'
4
-
// import error from '../../core/contentstackError'
5
3
4
+
/**
5
+
* Delivery tokens provide read-only access to the associated environments. Read more about <a href='https://www.contentstack.com/docs/developers/create-tokens/about-delivery-tokens'>DeliveryToken</a>.
* A publishing environment corresponds to one or more deployment servers or a content delivery destination where the entries need to be published. Read more about <a href='https://www.contentstack.com/docs/developers/set-up-environments'>Environment</a>.
Copy file name to clipboardexpand all lines: lib/stack/index.js
+14-14
Original file line number
Diff line number
Diff line change
@@ -73,7 +73,7 @@ export function Stack (http, data) {
73
73
/**
74
74
* @description Content type defines the structure or schema of a page or a section of your web or mobile property.
75
75
* @param {String} uid The UID of the ContentType you want to get details.
76
-
* @returns {ContenType} Instace of ContentType.
76
+
* @returns {ContentType} Instance of ContentType.
77
77
* @example
78
78
* import * as contentstack from '@contentstack/management'
79
79
* const client = contentstack.client()
@@ -95,7 +95,7 @@ export function Stack (http, data) {
95
95
/**
96
96
* @description Locale allows you to create and publish entries in any language.
97
97
* @param {String} uid The UID of the Locale you want to get details.
98
-
* @returns {Locale} Instace of Locale.
98
+
* @returns {Locale} Instance of Locale.
99
99
* @example
100
100
* import * as contentstack from '@contentstack/management'
101
101
* const client = contentstack.client()
@@ -117,7 +117,7 @@ export function Stack (http, data) {
117
117
/**
118
118
* @description Assets refer to all the media files (images, videos, PDFs, audio files, and so on) uploaded in your Contentstack repository for future use.
119
119
* @param {String} uid The UID of the Asset you want to get details.
120
-
* @returns {Asset} Instace of Asset.
120
+
* @returns {Asset} Instance of Asset.
121
121
* @example
122
122
* import * as contentstack from '@contentstack/management'
123
123
* const client = contentstack.client()
@@ -138,7 +138,7 @@ export function Stack (http, data) {
138
138
/**
139
139
* @description Global field defines the structure or schema of a page or a section of your web or mobile property.
140
140
* @param {String} uid The UID of the Global field you want to get details.
141
-
* @returns {ContenType} Instace of Global field.
141
+
* @returns {GlobalField} Instance of Global field.
142
142
* @example
143
143
* import * as contentstack from '@contentstack/management'
144
144
* const client = contentstack.client()
@@ -160,16 +160,16 @@ export function Stack (http, data) {
160
160
/**
161
161
* @description Environment corresponds to one or more deployment servers or a content delivery destination where the entries need to be published.
162
162
* @param {String} uid The UID of the Environment you want to get details.
163
-
* @returns {Environment} Instace of Environment.
163
+
* @returns {Environment} Instance of Environment.
164
164
* @example
165
165
* import * as contentstack from '@contentstack/management'
@@ -181,7 +181,7 @@ export function Stack (http, data) {
181
181
/**
182
182
* @description Delivery Tokens provide read-only access to the associated environments.
183
183
* @param {String} deliveryTokenUid The UID of the Delivery Token field you want to get details.
184
-
* @returns {DeliveryToken} Instace of DeliveryToken.
184
+
* @returns {DeliveryToken} Instance of DeliveryToken.
185
185
* @example
186
186
* import * as contentstack from '@contentstack/management'
187
187
* const client = contentstack.client()
@@ -203,7 +203,7 @@ export function Stack (http, data) {
203
203
/**
204
204
* @description Extensions let you create custom fields and custom widgets that lets you customize Contentstack's default UI and behavior.
205
205
* @param {String} extensionUid The UID of the Extension you want to get details.
206
-
* @returns {Extension} Instace of Extension.
206
+
* @returns {Extension} Instance of Extension.
207
207
* @example
208
208
* import * as contentstack from '@contentstack/management'
209
209
* const client = contentstack.client()
@@ -226,7 +226,7 @@ export function Stack (http, data) {
226
226
/**
227
227
* @description Workflow is a tool that allows you to streamline the process of content creation and publishing, and lets you manage the content lifecycle of your project smoothly.
228
228
* @param {String} workflowUid The UID of the Workflow you want to get details.
229
-
* @returns {Workflow} Instace of Workflow.
229
+
* @returns {Workflow} Instance of Workflow.
230
230
* @example
231
231
* import * as contentstack from '@contentstack/management'
232
232
* const client = contentstack.client()
@@ -248,7 +248,7 @@ export function Stack (http, data) {
248
248
/**
249
249
* @description Webhooks allow you to specify a URL to which you would like Contentstack to post data when an event happens.
250
250
* @param {String} webhookUid The UID of the Webhook you want to get details.
251
-
* @returns {Webhook} Instace of Webhook.
251
+
* @returns {Webhook} Instance of Webhook.
252
252
* @example
253
253
* import * as contentstack from '@contentstack/management'
254
254
* const client = contentstack.client()
@@ -270,7 +270,7 @@ export function Stack (http, data) {
270
270
/**
271
271
* @description Labels allow you to group a collection of content within a stack. Using labels you can group content types that need to work together
272
272
* @param {String} uid The UID of the Label you want to get details.
273
-
* @returns {Label} Instace of Label.
273
+
* @returns {Label} Instance of Label.
274
274
* @example
275
275
* import * as contentstack from '@contentstack/management'
0 commit comments