Skip to content

Commit 1810201

Browse files
committed
Merge branch 'main' into jdaly-web-api-types-operations-re-write
2 parents cf55cd2 + d31bf49 commit 1810201

File tree

196 files changed

+1531
-817
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

196 files changed

+1531
-817
lines changed

.openpublishing.redirection.json

Lines changed: 11 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
{
22
"redirections": [
3+
{
4+
"source_path": "powerapps-docs/developer/component-framework/manifest-schema-reference/library.md",
5+
"redirect_url": "../manifest-schema-reference",
6+
"redirect_document_id": "false"
7+
},
8+
{
9+
"source_path": "powerapps-docs/developer/component-framework/manifest-schema-reference/packaged_library.md",
10+
"redirect_url": "../manifest-schema-reference",
11+
"redirect_document_id": "false"
12+
},
313
{
414
"source_path": "powerapps-docs/developer/model-driven-apps/clientapi/reference/formContext-ui-footerSection.md",
515
"redirect_url": "formcontext-ui#formcontextuifootersection-removed",
@@ -1212,7 +1222,7 @@
12121222
},
12131223
{
12141224
"source_path": "powerapps-docs/controls/control-text-input.md",
1215-
"redirect_url": "/powerapps/maker/canvas-apps/controls/control-text-input",
1225+
"redirect_url": "/power-apps/maker/canvas-apps/controls/control-text-input",
12161226
"redirect_document_id": "false"
12171227
},
12181228
{
@@ -3655,46 +3665,6 @@
36553665
"redirect_url": "../../data-platform/deployment-service/administer-deployment-using-deployment-web-service",
36563666
"redirect_document_id": false
36573667
},
3658-
{
3659-
"source_path": "powerapps-docs/developer/common-data-service/includes/cc-connect-plugin-registration-tool.md",
3660-
"redirect_url": "../../data-platform/includes/cc-connect-plugin-registration-tool",
3661-
"redirect_document_id": false
3662-
},
3663-
{
3664-
"source_path": "powerapps-docs/developer/common-data-service/includes/cc-d365ce-note-section.md",
3665-
"redirect_url": "../../data-platform/includes/cc-d365ce-note-section",
3666-
"redirect_document_id": false
3667-
},
3668-
{
3669-
"source_path": "powerapps-docs/developer/common-data-service/includes/cc-d365ce-note-topic.md",
3670-
"redirect_url": "../../data-platform/includes/cc-d365ce-note-topic",
3671-
"redirect_document_id": false
3672-
},
3673-
{
3674-
"source_path": "powerapps-docs/developer/common-data-service/includes/cc-discovery-service-description.md",
3675-
"redirect_url": "../../data-platform/includes/cc-discovery-service-description",
3676-
"redirect_document_id": false
3677-
},
3678-
{
3679-
"source_path": "powerapps-docs/developer/common-data-service/includes/cc-how-to-run-samples.md",
3680-
"redirect_url": "../../data-platform/includes/cc-how-to-run-samples",
3681-
"redirect_document_id": false
3682-
},
3683-
{
3684-
"source_path": "powerapps-docs/developer/common-data-service/includes/cc-legacy-update-messages.md",
3685-
"redirect_url": "../../data-platform/includes/cc-legacy-update-messages",
3686-
"redirect_document_id": false
3687-
},
3688-
{
3689-
"source_path": "powerapps-docs/developer/common-data-service/includes/data-service-errors.md",
3690-
"redirect_url": "../../data-platform/includes/data-service-errors",
3691-
"redirect_document_id": false
3692-
},
3693-
{
3694-
"source_path": "powerapps-docs/developer/common-data-service/includes/synchronous-webhook-error.md",
3695-
"redirect_url": "../../data-platform/includes/synchronous-webhook-error",
3696-
"redirect_document_id": false
3697-
},
36983668
{
36993669
"source_path": "powerapps-docs/developer/common-data-service/online-management-api/authentication.md",
37003670
"redirect_url": "../../data-platform/online-management-api/authentication",
@@ -6445,16 +6415,6 @@
64456415
"redirect_url": "/powerapps/developer/component-framework/reference/linking",
64466416
"redirect_document_id": "false"
64476417
},
6448-
{
6449-
"source_path": "powerapps-docs/developer/component-framework/reference/linking/includes/clear-description.md",
6450-
"redirect_url": "/powerapps/developer/component-framework/reference/linking",
6451-
"redirect_document_id": "false"
6452-
},
6453-
{
6454-
"source_path": "powerapps-docs/developer/component-framework/reference/linking/includes/removeLinkedEntity-description.md",
6455-
"redirect_url": "/powerapps/developer/component-framework/reference/linking",
6456-
"redirect_document_id": "false"
6457-
},
64586418
{
64596419
"source_path": "powerapps-docs/developer/component-framework/reference/linking/removeLinkedEntity.md",
64606420
"redirect_url": "/powerapps/developer/component-framework/reference/linking",

powerapps-docs/developer/component-framework/implementing-controls-using-typescript.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,12 @@ To create a new project:
7373
> [!NOTE]
7474
> If you receive the error `The term 'npm' is not recognized as the name of a cmdlet, function, script file, or operable program.`, make sure you have installed [node.js](https://nodejs.org/en/download/) (LTS version is recommended) and all other prerequisites.
7575
76+
1. After npm install, you will need to generate ManifestDesignTypes.d.ts file in this directory using the below command."
77+
```
78+
npm run refreshTypes
79+
```
80+
81+
7682
## Implementing manifest
7783

7884
The control manifest is an XML file that contains the metadata of the code component. It also defines the behavior of the code component. In this tutorial, this manifest file is created under the `LinearInputControl` subfolder. When you open the `ControlManifest.Input.xml` file in Visual Studio Code, you'll notice that the manifest file is predefined with some properties. More information: [Manifest](manifest-schema-reference/manifest.md).

powerapps-docs/developer/component-framework/import-custom-controls.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ To create a solution project based on an existing solution in Dataverse, run the
117117
> [!NOTE]
118118
> Settings Values: autonumbering, calendar, customization, emailtracking, externalapplications, general, isvconfig, marketing, outlooksynchronization, relationshiproles, sales.
119119
120-
More information: [Settings options](/dotnet/api/microsoft.crm.sdk.messages.exportsolutionrequest?view=dynamics-general-ce-9)
120+
More information: [Settings options](/dotnet/api/microsoft.crm.sdk.messages.exportsolutionrequest)
121121

122122
> [!NOTE]
123123
> Manually publish the customizations if you are importing unmanaged solution.

powerapps-docs/developer/component-framework/manifest-schema-reference/includes/library-description.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

powerapps-docs/developer/component-framework/manifest-schema-reference/includes/packaged_library-description.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

powerapps-docs/developer/component-framework/manifest-schema-reference/library.md

Lines changed: 0 additions & 54 deletions
This file was deleted.

powerapps-docs/developer/component-framework/manifest-schema-reference/packaged_library.md

Lines changed: 0 additions & 51 deletions
This file was deleted.

powerapps-docs/developer/component-framework/reference/dataset/addColumn.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ Model-driven apps
2727

2828
## Parameters
2929

30-
| Parameter Name | Type | Required | Description |
31-
| -------------- | -------- | -------- | -------------------- |
32-
| name | `string` | Yes | Name of the column. |
33-
| columnAlias | `string` | No | Alias of the column. |
30+
| Parameter Name | Type | Required | Description |
31+
| -------------- | -------- | -------- | ------------------------------------------------------------------------------------------------------------------------------------ |
32+
| name | `string` | Yes | Name of the column. For linked entities concatenate linking entity alias and the column name, for example: `contact_alias.firstname`. |
33+
| columnAlias | `string` | No | Alias of the column. |
3434

3535
## Return value
3636

powerapps-docs/developer/component-framework/reference/securityvalues.md

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
title: SecurityValues | Microsoft Docs
33
description: Provides all the information about table definitions security values.
44
keywords:
5-
ms.author: jdaly
5+
ms.author: noazarur
66
author: noazarur-microsoft
77
manager: kvivek
88
ms.date: 03/12/2022
99
ms.reviewer: jdaly
10-
ms.suite: ""
11-
ms.tgt_pltfrm: ""
1210
ms.topic: "article"
11+
contributors:
12+
- JimDaly
1313
---
1414

1515
# Security Values
@@ -20,20 +20,32 @@ Provides all the information about table definitions security values.
2020

2121
### editable
2222

23+
Whether this value is meant to be editable in the current context.
24+
2325
**Type**: `boolean`
2426

27+
28+
2529
### readable
2630

31+
Whether this value is meant to be readable in the current context.
32+
2733
**Type**: `boolean`
2834

35+
36+
2937
### secured
3038

39+
Whether this field has security rules applied to it.
40+
3141
**Type**: `boolean`
3242

43+
44+
3345
### Related topics
3446

3547
[Power Apps component framework API reference](../reference/index.md)<br/>
3648
[Power Apps component framework overview](../overview.md)<br/>
3749
[Field-level security to control access](/power-platform/admin/field-level-security)<br/>
3850

39-
[!INCLUDE[footer-include](../../../includes/footer-banner.md)]
51+
[!INCLUDE[footer-include](../../../includes/footer-banner.md)]

powerapps-docs/developer/data-platform/TOC.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -497,15 +497,13 @@
497497
- name: Web API Reference
498498
href: /dynamics365/customer-engagement/web-api/about
499499
- name: Organization Service
500-
href: /dotnet/api/?view=dynamics-general-ce-9
500+
href: /dotnet/api/microsoft.crm.sdk
501501
- name: XRM Tooling
502-
href: /dotnet/api/?view=dynamics-xrmtooling-ce-9
503-
- name: Virtual Table
504-
href: /dotnet/api/?view=dynamics-virtualentity-ce-9
502+
href: /dotnet/api/microsoft.xrm.tooling.connector
505503
- name: Workflow
506-
href: /dotnet/api/?view=dynamics-workflow-ce-9
504+
href: /dotnet/api/microsoft.xrm.sdk.workflow
507505
- name: Package Deployer
508-
href: /dotnet/api/?view=dynamics-deployer-ce-9
506+
href: /dotnet/api/microsoft.xrm.tooling.packagedeployment.crmpackageextentionbase
509507
- name: Customization solutions file schema
510508
href: customization-solutions-file-schema.md
511509
- name: FetchXML schema

0 commit comments

Comments
 (0)