Skip to content

Commit 79aec9f

Browse files
author
Linda Caputo
committed
Changed App Catalog to app catalog
Per style guidelines
1 parent cbbad19 commit 79aec9f

32 files changed

+126
-126
lines changed

docs/apis/alm-api-for-spfx-add-ins.md

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ ms.assetid: fdf7ecb2-8851-425b-b058-3285fba77b68
1010

1111
ALM APIs provide simple APIs to manage deployment of your SharePoint Framework solutions and add-ins across your tenant. ALM APIs support the following capabilities:
1212

13-
- Add SharePoint Framework solution or SharePoint Add-in to tenant App Catalog.
14-
- Enable SharePoint Framework solution or SharePoint Add-in to be available for installation in tenant App Catalog.
15-
- Disable SharePoint Framework solution or SharePoint Add-in not to be available for installation in tenant App Catalog.
16-
- Install SharePoint Framework solution or SharePoint Add-in from tenant App Catalog to a site.
17-
- Upgrade SharePoint Framework solution or SharePoint Add-in to a site, which has a newer version available in the tenant App Catalog.
13+
- Add SharePoint Framework solution or SharePoint Add-in to tenant app catalog.
14+
- Enable SharePoint Framework solution or SharePoint Add-in to be available for installation in tenant app catalog.
15+
- Disable SharePoint Framework solution or SharePoint Add-in not to be available for installation in tenant app catalog.
16+
- Install SharePoint Framework solution or SharePoint Add-in from tenant app catalog to a site.
17+
- Upgrade SharePoint Framework solution or SharePoint Add-in to a site, which has a newer version available in the tenant app catalog.
1818
- Uninstall SharePoint Framework solution or SharePoint Add-in from the site.
1919

2020
ALM APIs can be used to perform exactly the same operations that are available from a UI perspective. When these APIs are used, all typical actions are performed. Following are some of the characteristics of ALM APIs:
@@ -25,13 +25,13 @@ ALM APIs can be used to perform exactly the same operations that are available f
2525
ALM APIs are natively provided by using REST APIs, but there are also additional CSOM extensions and PowerShell cmdlets available through SharePoint Patterns and Practices.
2626

2727
> [!NOTE]
28-
> ALM APIs are not currently supported for the [site collection App Catalog](../general-development/site-collection-app-catalog.md). Support will be added in early 2018.
28+
> ALM APIs are not currently supported for the [site collection app catalog](../general-development/site-collection-app-catalog.md). Support will be added in early 2018.
2929
3030
## REST API
3131

32-
### Add solution packages to the tenant App Catalog
32+
### Add solution packages to the tenant app catalog
3333

34-
This API is designed to be executed in the context of the tenant App Catalog site.
34+
This API is designed to be executed in the context of the tenant app catalog site.
3535

3636
```
3737
url: /_api/web/tenantappcatalog/Add(overwrite=true, url='test.txt')
@@ -40,9 +40,9 @@ binaryStringRequestBody: true
4040
body: 'byte array of the file'
4141
```
4242

43-
### Deploy solution packages in the tenant App Catalog
43+
### Deploy solution packages in the tenant app catalog
4444

45-
This enables the solution to be available to install to specific sites. This API is designed to be executed in the context of the tenant App Catalog site.
45+
This enables the solution to be available to install to specific sites. This API is designed to be executed in the context of the tenant app catalog site.
4646

4747
```
4848
url: /_api/web/tenantappcatalog/AvailableApps/GetById('xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx')/Deploy
@@ -51,9 +51,9 @@ url: /_api/web/tenantappcatalog/AvailableApps/GetById('xxxxxxxx-xxxx-xxxx-xxxx-x
5151
> [!NOTE]
5252
> This operation is required to be completed after Add before you can install packages to specific sites.
5353
54-
### Retract solution packages in the tenant App Catalog
54+
### Retract solution packages in the tenant app catalog
5555

56-
This retracts the solution to be available from the sites. This API is designed to be executed in the context of the tenant App Catalog site.
56+
This retracts the solution to be available from the sites. This API is designed to be executed in the context of the tenant app catalog site.
5757

5858
```
5959
url: /_api/web/tenantappcatalog/AvailableApps/GetById('xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx')/Retract
@@ -62,9 +62,9 @@ url: /_api/web/tenantappcatalog/AvailableApps/GetById('xxxxxxxx-xxxx-xxxx-xxxx-x
6262
> [!NOTE]
6363
> If you run this operation after you have installed solutions to the site, they will stop working because the solution is disabled from the tenant level.
6464
65-
### Remove solution packages from the tenant App Catalog
65+
### Remove solution packages from the tenant app catalog
6666

67-
This API is designed to be executed in the context of the tenant App Catalog site.
67+
This API is designed to be executed in the context of the tenant app catalog site.
6868

6969
```
7070
url: /_api/web/tenantappcatalog/AvailableApps/GetById('xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx')/Remove
@@ -73,27 +73,27 @@ url: /_api/web/tenantappcatalog/AvailableApps/GetById('xxxxxxxx-xxxx-xxxx-xxxx-x
7373
> [!NOTE]
7474
> If the Retract operation is not performed before the Remove operation, the solution is automatically retracted.
7575
76-
### List available packages from the tenant App Catalog
76+
### List available packages from the tenant app catalog
7777

78-
Use this REST API for getting a list of available SharePoint Framework solutions or add-ins in the tenant App Catalog.
78+
Use this REST API for getting a list of available SharePoint Framework solutions or add-ins in the tenant app catalog.
7979

8080
```
8181
url: /_api/web/tenantappcatalog/AvailableApps
8282
method: GET
8383
```
8484

85-
### Details about individual solution packages in the tenant App Catalog
85+
### Details about individual solution packages in the tenant app catalog
8686

87-
Use this REST API for getting details about individual SharePoint Framework solutions or add-ins available in the tenant App Catalog.
87+
Use this REST API for getting details about individual SharePoint Framework solutions or add-ins available in the tenant app catalog.
8888

8989
```
9090
url: /_api/web/tenantappcatalog/AvailableApps/GetById('xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx')
9191
method: GET
9292
```
9393

94-
### Install solution package from the tenant App Catalog to a SharePoint site
94+
### Install solution package from the tenant app catalog to a SharePoint site
9595

96-
Install a solution package with a specific identifier from the tenant App Catalog to the site based on URL context. This REST call can be executed in the context of the site where the install operation should happen.
96+
Install a solution package with a specific identifier from the tenant app catalog to the site based on URL context. This REST call can be executed in the context of the site where the install operation should happen.
9797

9898
```
9999
url: /_api/web/tenantappcatalog/AvailableApps/GetById('xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx')/Install
@@ -102,7 +102,7 @@ method: POST
102102

103103
### Upgrade solution packages on the SharePoint site
104104

105-
Upgrade a solution package from the site to a newer version available in the tenant App Catalog. This REST call can be executed in the context of the site where the upgrade operation should happen.
105+
Upgrade a solution package from the site to a newer version available in the tenant app catalog. This REST call can be executed in the context of the site where the upgrade operation should happen.
106106

107107
```
108108
url: /_api/web/tenantappcatalog/AvailableApps/GetById('xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx')/Upgrade
@@ -125,9 +125,9 @@ method: POST
125125

126126
By using [PnP PowerShell](https://docs.microsoft.com/en-us/powershell/sharepoint/sharepoint-pnp/sharepoint-pnp-cmdlets?view=sharepoint-ps), you can automate deploying, publishing, installing, upgrading, and retracting your apps.
127127

128-
### Add and publish your app to the App Catalog
128+
### Add and publish your app to the app catalog
129129

130-
Adding your app (.sppkg file, .app file) to the tenant App Catalog is a prerequisite to making your app available for use on your SharePoint sites. You can do so by using the following cmdlet:
130+
Adding your app (.sppkg file, .app file) to the tenant app catalog is a prerequisite to making your app available for use on your SharePoint sites. You can do so by using the following cmdlet:
131131

132132
```PowerShell
133133
Add-PnPApp -Path ./myapp.sppkg
@@ -145,7 +145,7 @@ Publish-PnPApp -Identity <app id> -SkipFeatureDeployment
145145
146146

147147

148-
### Remove the app from the App Catalog
148+
### Remove the app from the app catalog
149149

150150
To remove an app added earlier, use the following cmdlet:
151151

@@ -156,7 +156,7 @@ Remove-PnPApp -Identity <app id>
156156

157157
### Use apps on your site
158158

159-
After the app is added to the App Catalog and published, you can install the app to your site:
159+
After the app is added to the app catalog and published, you can install the app to your site:
160160

161161
```PowerShell
162162
Install-PnPApp -Identity <app id>

docs/general-development/create-a-workflow-with-elevated-permissions-by-using-the-sharepoint-workflo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ Finally, you need to wrap the workflow actions inside an App Step. The following
118118

119119
### To wrap actions inside an App Step
120120

121-
1. Open the App Catalog site in SharePoint Designer.
121+
1. Open the app catalog site in SharePoint Designer.
122122

123123
2. Create a new Custom List on which to run the workflow. In this example, the list name is **App Demo**.
124124

docs/general-development/site-collection-app-catalog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,4 +112,4 @@ Before deploying solutions to site collection app catalogs, site collection admi
112112

113113
## See also
114114

115-
- [Manage the Site Collection App Catalog](https://support.office.com/en-us/article/Manage-the-Site-Collection-App-Catalog-928b9b61-a9de-4563-a7d1-6231aa9d4d19)
115+
- [Manage the Site Collection app catalog](https://support.office.com/en-us/article/Manage-the-Site-Collection-App-Catalog-928b9b61-a9de-4563-a7d1-6231aa9d4d19)

docs/solution-guidance/Branding-and-site-provisioning-solutions-for-SharePoint.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Conceptually, the hierarchy of SharePoint objects is expressed in terms of conta
7676
## add-ins for SharePoint
7777
<a name="sectionSection3"> </a>
7878

79-
add-ins for SharePoint are lightweight solutions that don't install on the SharePoint host server, which means they don't make excessive API calls to the host server. You can build add-ins for SharePoint by using the Cloud Add-in Model. Users can discover and download add-ins from the Office Store or from the enterprise's App Catalog. For more information, see [Overview of add-ins for SharePoint](http://msdn.microsoft.com/library/cd1eda9e-8e54-4223-93a9-a6ea0d18df70.aspx).
79+
add-ins for SharePoint are lightweight solutions that don't install on the SharePoint host server, which means they don't make excessive API calls to the host server. You can build add-ins for SharePoint by using the Cloud Add-in Model. Users can discover and download add-ins from the Office Store or from the enterprise's app catalog. For more information, see [Overview of add-ins for SharePoint](http://msdn.microsoft.com/library/cd1eda9e-8e54-4223-93a9-a6ea0d18df70.aspx).
8080

8181
## File system and content databases, and how they work together
8282
<a name="sectionSection4"> </a>

docs/solution-guidance/development-experience-tenant-apponly-permissions-in-sharepoint-online.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Supply the **Client ID** and **Client Secret **created in Step 1.
4545
Since you want to debug the add-in, ensure that you supply https://localhost.com including the port as depicted below.
4646
![](http://i.imgur.com/nQmSbPC.png)
4747

48-
Now deploy the add-in in the App Catalog site.
48+
Now deploy the add-in in the app catalog site.
4949

5050
### Step 5: Install your add-in in your developer site collection
5151

@@ -55,7 +55,7 @@ Navigate to the developer site and add the app. Click on **App Details**.
5555
If you clicked on the app tile, you will have to click on "**Find out why**" and request your app
5656
![](http://i.imgur.com/DwWUkG0.png)
5757

58-
Once the request has been submitted the status will be in a pending state until the SharePoint Administrator or the App Catalog Administrator approves the request. To approve the request, navigate to the app catalog, App Requests and approve the request.
58+
Once the request has been submitted the status will be in a pending state until the SharePoint Administrator or the app catalog Administrator approves the request. To approve the request, navigate to the app catalog, App Requests and approve the request.
5959

6060
![](http://i.imgur.com/yZ8vNEc.png)
6161

docs/solution-guidance/feature-stapling-sharepoint-add-in.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,12 @@ The following article describes how to staple features to a site definition.
5050

5151
Staple Add-ins
5252
--------------
53-
In this pattern you deploy Add-ins stored in the App Catalog to specific site collections, managed paths, and site templates.
53+
In this pattern you deploy Add-ins stored in the app catalog to specific site collections, managed paths, and site templates.
5454

5555
- See the [SharePoint 2013 App Deployment through 'App Stapling' (MSDN Blog Article - Richard DiZerega)](http://blogs.msdn.com/b/richard_dizeregas_blog/archive/2013/09/18/10399333.aspx) for more details about the Add-in stapling model.
5656
- Because the add-in is pushed by an administrator, site owners will not be able to remove the add-in from a site that meets the deployment criteria. Not even a site collection administrator can remove the add-in.
57-
- This centralized deployment also shares the same centralized add-in resources (Add-in Web and Remote Web). Essentially, the Add-in is deployed, but not installed in the sites. All sites will leverage the Add-in Web and Remote Web from the instance installed in the App Catalog.
58-
- Because of centralized deployment, remote events such as 'Handle App Installed', 'Handle App Uninstalled', and 'Handle App Upgrade' will only fire once (when the Add-In is installed in the App Catalog).
57+
- This centralized deployment also shares the same centralized add-in resources (Add-in Web and Remote Web). Essentially, the Add-in is deployed, but not installed in the sites. All sites will leverage the Add-in Web and Remote Web from the instance installed in the app catalog.
58+
- Because of centralized deployment, remote events such as 'Handle App Installed', 'Handle App Uninstalled', and 'Handle App Upgrade' will only fire once (when the Add-In is installed in the app catalog).
5959
+ This can make it difficult to use the Add-in stapling pattern to automatically apply changes to sites where it is deployed because these events do not fire when it is deployed to sites.
6060
- Add-in parts are not supported when Add-ins are stapled to sites.
6161
- This pattern requires manual user actions to deploy the Add-ins.

docs/sp-add-ins/access-sharepoint-data-from-add-ins-using-the-cross-___domain-library.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ To switch the context site in your code, use the **AppContextSite** endpoint (RE
361361

362362
Here is a reminder of the REST endpoint: /_api/SP.AppContextSite(@target)/web/title?@target='weburl', and an example on how to instantiate the object in JSOM: `appContextSite = new SP.AppContextSite(context, weburl);`.
363363

364-
As a developer, you can only deploy tenant-scoped add-ins from the add-in catalog. You can provision an add-in catalog to your on-premises or SharePoint Online environments. Uploading your add-in to the add-in catalog is as simple as uploading a file to a document library. For detailed instructions, see [Use the App Catalog to make custom business apps available for your SharePoint Online environment](https://support.office.com/en-us/article/Use-the-App-Catalog-to-make-custom-business-apps-available-for-your-SharePoint-Online-environment-0b6ab336-8b83-423f-a06b-bcc52861cba0?CorrelationId=94979966-ff7b-4e00-985a-5c9e614b35c9&ui=en-US&rs=en-US&ad=US&ocmsassetID=HA102772362).
364+
As a developer, you can only deploy tenant-scoped add-ins from the add-in catalog. You can provision an add-in catalog to your on-premises or SharePoint Online environments. Uploading your add-in to the add-in catalog is as simple as uploading a file to a document library. For detailed instructions, see [Use the app catalog to make custom business apps available for your SharePoint Online environment](https://support.office.com/en-us/article/Use-the-App-Catalog-to-make-custom-business-apps-available-for-your-SharePoint-Online-environment-0b6ab336-8b83-423f-a06b-bcc52861cba0?CorrelationId=94979966-ff7b-4e00-985a-5c9e614b35c9&ui=en-US&rs=en-US&ad=US&ocmsassetID=HA102772362).
365365

366366
From the add-in catalog, you can deploy the add-in to one or more websites in the tenant. Because your add-in has permissions to access data in the tenant, you only have to deploy to one website to access data on the whole tenant. For instructions on how to deploy an add-in from the add-in catalog, see [Deploy a custom add-in](https://support.office.com/en-us/article/Use-the-App-Catalog-to-make-custom-business-apps-available-for-your-SharePoint-Online-environment-0b6ab336-8b83-423f-a06b-bcc52861cba0?CorrelationId=94979966-ff7b-4e00-985a-5c9e614b35c9&ui=en-US&rs=en-US&ad=US&ocmsassetID=HA102772362)
367367

docs/spfx/call-microsoft-graph-using-graphhttpclient.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -179,8 +179,8 @@ The code needs to call the **GraphHttpClient** application that runs on SharePoi
179179
```
180180

181181
2. Deploy the solution to your SharePoint tenant:
182-
* Go to your site's App Catalog.
183-
* Upload or drag and drop the **hellograph-webpart.sppkg** to the App Catalog.
182+
* Go to your site's app catalog.
183+
* Upload or drag and drop the **hellograph-webpart.sppkg** to the app catalog.
184184
* When prompted, if you trust the **hellograph-webpart-client-side-solution**, select **Make this solution available to all sites in the organization**, and select **Deploy**.
185185

186186
3. Use gulp serve to host the web part.
@@ -282,8 +282,8 @@ Again, you need to modify the HTML to add a button that creates a new group.
282282
```
283283

284284
2. Deploy the solution to your SharePoint tenant:
285-
* Go to your site's App Catalog.
286-
* Upload or drag and drop the **hellograph-webpart.sppkg** to the App Catalog.
285+
* Go to your site's app catalog.
286+
* Upload or drag and drop the **hellograph-webpart.sppkg** to the app catalog.
287287
* Because your solution is already registered, you are prompted as to whether you want to replace it. Select **Replace it**.
288288
* When prompted as to whether you trust the solution, select **Deploy**.
289289

0 commit comments

Comments
 (0)