pptb-standard-sample-tool 0.1.3 → 0.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/app.js +1 -1
  2. package/package.json +1 -1
package/dist/app.js CHANGED
@@ -364,7 +364,7 @@ async function createAccount() {
364
364
  output.textContent = 'Creating account...\n';
365
365
  const result = await dataverse.create('account', {
366
366
  name: name,
367
- accountnumber: 'TST-' + Math.floor(Math.random() * 1000000),
367
+ accountnumber: 'TST-12345',
368
368
  telephone1: '555-0100',
369
369
  description: 'Created by HTML Sample Tool'
370
370
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pptb-standard-sample-tool",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "displayName": "HTML Sample Tool",
5
5
  "description": "A sample Power Platform Tool Box tool built with HTML, CSS, and TypeScript",
6
6
  "main": "index.html",