Skip to content

Commit e593a27

Browse files
adding more deprecations
1 parent 527d057 commit e593a27

File tree

9 files changed

+11911
-11861
lines changed

9 files changed

+11911
-11861
lines changed

.github/workflows/build-test-coverage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
22
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
33

4-
name: Node.js CI
4+
name: DynamicsWebApi CI
55

66
on:
77
push:
@@ -17,7 +17,6 @@ jobs:
1717
strategy:
1818
matrix:
1919
node-version: [14.x, 16.x, 18.x]
20-
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
2120

2221
steps:
2322
- uses: actions/checkout@v3
@@ -30,6 +29,7 @@ jobs:
3029
- run: npm run build --if-present
3130
- run: npm test
3231
- name: Prepare coverage
32+
if: ${{ matrix.node-version == '16.x' }}
3333
run: npm run test-coverage
3434
- name: Publish to Coveralls
3535
if: ${{ matrix.node-version == '16.x' }}

.prettierignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
*.md
1+
*.md
2+
*.yml

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ Also, please check [suggestions and contributions](#contributions) section to le
2222

2323
**DynamicsWebApi v2 is coming!**
2424

25-
Check out the open [Discussion](https://github.com/AleksandrRogov/DynamicsWebApi/discussions/137) about the project.
25+
Check out an open [Discussion](https://github.com/AleksandrRogov/DynamicsWebApi/discussions/137) about the project.
2626

27-
Check out the development progress in a [DynamicsWebApi v2 Project](https://github.com/users/AleksandrRogov/projects/2).
27+
Check out a development progress in a [DynamicsWebApi v2 Project](https://github.com/users/AleksandrRogov/projects/2).
2828

2929
**Want to help?** - Let me know. I desperately need help with documentation and examples.
3030

@@ -41,6 +41,8 @@ I am very excited to finally release the new version and I hope you too! Stay tu
4141

4242
Please note, that "Dynamics 365" in this readme refers to Microsoft Dynamics 365 Customer Engagement / Microsoft Dataverse (formerly known as Microsoft Common Data Service).
4343

44+
I use Dataverse SDK terminology in this documentation. [More Info](https://learn.microsoft.com/en-us/power-apps/developer/data-platform/understand-terminology#terminology-use-depending-on-protocol-or-technology)
45+
4446
## Table of Contents
4547

4648
* [Getting Started](#getting-started)
@@ -70,7 +72,7 @@ Please note, that "Dynamics 365" in this readme refers to Microsoft Dynamics 365
7072
* [Execute Web API functions](#execute-web-api-functions)
7173
* [Execute Web API actions](#execute-web-api-actions)
7274
* [Execute Batch Operations](#execute-batch-operations)
73-
* [Work with Metadata Definitions](#work-with-metadata-definitions)
75+
* [Work with Table Difinitions (Metadata)](#work-with-metadata-definitions)
7476
* [Create Entity](#create-entity)
7577
* [Retrieve Entity](#retrieve-entity)
7678
* [Update Entity](#update-entity)
@@ -1206,7 +1208,7 @@ You can find an official documentation that covers Web API batch requests here:
12061208

12071209
`Version 1.4.3+`
12081210

1209-
Before working with metadata read [the following section from Microsoft Documentation](https://docs.microsoft.com/en-us/dynamics365/customer-engagement/developer/webapi/use-web-api-metadata).
1211+
Before working with metadata read [the following section from Microsoft Documentation](https://learn.microsoft.com/en-us/power-apps/developer/data-platform/webapi/query-metadata-web-api).
12101212

12111213
### Create Entity
12121214

0 commit comments

Comments
 (0)