pptb-standard-sample-tool 1.0.0 → 1.0.1

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.
package/dist/app.js CHANGED
@@ -549,19 +549,19 @@ async function demoExecuteParallel() {
549
549
  // Prepare lightweight FetchXML queries (top 1 / top 3) for demo purposes
550
550
  const accountFetchXml = `<fetch top="1"><entity name="account"><attribute name="name" /><attribute name="accountid" /></entity></fetch>`;
551
551
  const contactFetchXml = `<fetch top="1"><entity name="contact"><attribute name="fullname" /><attribute name="contactid" /></entity></fetch>`;
552
- const opportunityFetchXml = `<fetch top="3"><entity name="opportunity"><attribute name="name" /><attribute name="opportunityid" /></entity></fetch>`;
552
+ const userFetchXml = `<fetch top="3"><entity name="systemuser"><attribute name="name" /><attribute name="systemuserid" /></entity></fetch>`;
553
553
  log('Starting parallel Dataverse queries', 'info');
554
- const [accounts, contacts, opportunities] = await toolbox.utils.executeParallel(dataverse.fetchXmlQuery(accountFetchXml), dataverse.fetchXmlQuery(contactFetchXml), dataverse.fetchXmlQuery(opportunityFetchXml));
554
+ const [accounts, contacts, users] = await toolbox.utils.executeParallel(dataverse.fetchXmlQuery(accountFetchXml), dataverse.fetchXmlQuery(contactFetchXml), dataverse.fetchXmlQuery(userFetchXml));
555
555
  if (output) {
556
556
  output.textContent += 'All operations completed!\n\n';
557
557
  output.textContent += `Accounts Returned: ${accounts.value.length}\n`;
558
558
  accounts.value.forEach((a) => output.textContent += ` • ${a.name} (${a.accountid})\n`);
559
559
  output.textContent += `\nContacts Returned: ${contacts.value.length}\n`;
560
560
  contacts.value.forEach((c) => output.textContent += ` • ${c.fullname} (${c.contactid})\n`);
561
- output.textContent += `\nOpportunities Returned: ${opportunities.value.length}\n`;
562
- opportunities.value.forEach((o) => output.textContent += ` • ${o.name} (${o.opportunityid})\n`);
561
+ output.textContent += `\nUsers Returned: ${users.value.length}\n`;
562
+ users.value.forEach((u) => output.textContent += ` • ${u.fullname} (${u.systemuserid})\n`);
563
563
  }
564
- await showNotification('Parallel Complete', 'Fetched accounts, contacts & opportunities', 'success');
564
+ await showNotification('Parallel Complete', 'Fetched accounts, contacts & users', 'success');
565
565
  log('Parallel queries finished successfully', 'success');
566
566
  }
567
567
  catch (error) {
@@ -0,0 +1,640 @@
1
+ {
2
+ "name": "pptb-standard-sample-tool",
3
+ "version": "0.1.6",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "pptb-standard-sample-tool",
9
+ "version": "0.1.6",
10
+ "license": "GPL-3.0",
11
+ "devDependencies": {
12
+ "@pptb/types": "^1.0.8",
13
+ "shx": "^0.4.0",
14
+ "typescript": "^5.0.0"
15
+ },
16
+ "engines": {
17
+ "node": ">=18.0.0"
18
+ }
19
+ },
20
+ "node_modules/@nodelib/fs.scandir": {
21
+ "version": "2.1.5",
22
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
23
+ "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
24
+ "dev": true,
25
+ "license": "MIT",
26
+ "dependencies": {
27
+ "@nodelib/fs.stat": "2.0.5",
28
+ "run-parallel": "^1.1.9"
29
+ },
30
+ "engines": {
31
+ "node": ">= 8"
32
+ }
33
+ },
34
+ "node_modules/@nodelib/fs.stat": {
35
+ "version": "2.0.5",
36
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
37
+ "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
38
+ "dev": true,
39
+ "license": "MIT",
40
+ "engines": {
41
+ "node": ">= 8"
42
+ }
43
+ },
44
+ "node_modules/@nodelib/fs.walk": {
45
+ "version": "1.2.8",
46
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
47
+ "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
48
+ "dev": true,
49
+ "license": "MIT",
50
+ "dependencies": {
51
+ "@nodelib/fs.scandir": "2.1.5",
52
+ "fastq": "^1.6.0"
53
+ },
54
+ "engines": {
55
+ "node": ">= 8"
56
+ }
57
+ },
58
+ "node_modules/@pptb/types": {
59
+ "version": "1.0.8",
60
+ "resolved": "https://registry.npmjs.org/@pptb/types/-/types-1.0.8.tgz",
61
+ "integrity": "sha512-qGjif4qCFvGsHFB4Ly0xcvfTMkr+IB9WXh2/Zn0/C//orX6IBpnlSXn2D3xUjj69a9hAiqjVMhNJ1fpJJNqO7g==",
62
+ "dev": true,
63
+ "license": "GPL-3.0"
64
+ },
65
+ "node_modules/braces": {
66
+ "version": "3.0.3",
67
+ "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
68
+ "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
69
+ "dev": true,
70
+ "license": "MIT",
71
+ "dependencies": {
72
+ "fill-range": "^7.1.1"
73
+ },
74
+ "engines": {
75
+ "node": ">=8"
76
+ }
77
+ },
78
+ "node_modules/cross-spawn": {
79
+ "version": "6.0.6",
80
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.6.tgz",
81
+ "integrity": "sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw==",
82
+ "dev": true,
83
+ "license": "MIT",
84
+ "dependencies": {
85
+ "nice-try": "^1.0.4",
86
+ "path-key": "^2.0.1",
87
+ "semver": "^5.5.0",
88
+ "shebang-command": "^1.2.0",
89
+ "which": "^1.2.9"
90
+ },
91
+ "engines": {
92
+ "node": ">=4.8"
93
+ }
94
+ },
95
+ "node_modules/end-of-stream": {
96
+ "version": "1.4.5",
97
+ "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.5.tgz",
98
+ "integrity": "sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==",
99
+ "dev": true,
100
+ "license": "MIT",
101
+ "dependencies": {
102
+ "once": "^1.4.0"
103
+ }
104
+ },
105
+ "node_modules/execa": {
106
+ "version": "1.0.0",
107
+ "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz",
108
+ "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==",
109
+ "dev": true,
110
+ "license": "MIT",
111
+ "dependencies": {
112
+ "cross-spawn": "^6.0.0",
113
+ "get-stream": "^4.0.0",
114
+ "is-stream": "^1.1.0",
115
+ "npm-run-path": "^2.0.0",
116
+ "p-finally": "^1.0.0",
117
+ "signal-exit": "^3.0.0",
118
+ "strip-eof": "^1.0.0"
119
+ },
120
+ "engines": {
121
+ "node": ">=6"
122
+ }
123
+ },
124
+ "node_modules/fast-glob": {
125
+ "version": "3.3.3",
126
+ "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz",
127
+ "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==",
128
+ "dev": true,
129
+ "license": "MIT",
130
+ "dependencies": {
131
+ "@nodelib/fs.stat": "^2.0.2",
132
+ "@nodelib/fs.walk": "^1.2.3",
133
+ "glob-parent": "^5.1.2",
134
+ "merge2": "^1.3.0",
135
+ "micromatch": "^4.0.8"
136
+ },
137
+ "engines": {
138
+ "node": ">=8.6.0"
139
+ }
140
+ },
141
+ "node_modules/fastq": {
142
+ "version": "1.19.1",
143
+ "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz",
144
+ "integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==",
145
+ "dev": true,
146
+ "license": "ISC",
147
+ "dependencies": {
148
+ "reusify": "^1.0.4"
149
+ }
150
+ },
151
+ "node_modules/fill-range": {
152
+ "version": "7.1.1",
153
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
154
+ "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
155
+ "dev": true,
156
+ "license": "MIT",
157
+ "dependencies": {
158
+ "to-regex-range": "^5.0.1"
159
+ },
160
+ "engines": {
161
+ "node": ">=8"
162
+ }
163
+ },
164
+ "node_modules/function-bind": {
165
+ "version": "1.1.2",
166
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
167
+ "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
168
+ "dev": true,
169
+ "license": "MIT",
170
+ "funding": {
171
+ "url": "https://github.com/sponsors/ljharb"
172
+ }
173
+ },
174
+ "node_modules/get-stream": {
175
+ "version": "4.1.0",
176
+ "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz",
177
+ "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==",
178
+ "dev": true,
179
+ "license": "MIT",
180
+ "dependencies": {
181
+ "pump": "^3.0.0"
182
+ },
183
+ "engines": {
184
+ "node": ">=6"
185
+ }
186
+ },
187
+ "node_modules/glob-parent": {
188
+ "version": "5.1.2",
189
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
190
+ "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
191
+ "dev": true,
192
+ "license": "ISC",
193
+ "dependencies": {
194
+ "is-glob": "^4.0.1"
195
+ },
196
+ "engines": {
197
+ "node": ">= 6"
198
+ }
199
+ },
200
+ "node_modules/hasown": {
201
+ "version": "2.0.2",
202
+ "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
203
+ "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
204
+ "dev": true,
205
+ "license": "MIT",
206
+ "dependencies": {
207
+ "function-bind": "^1.1.2"
208
+ },
209
+ "engines": {
210
+ "node": ">= 0.4"
211
+ }
212
+ },
213
+ "node_modules/interpret": {
214
+ "version": "1.4.0",
215
+ "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz",
216
+ "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==",
217
+ "dev": true,
218
+ "license": "MIT",
219
+ "engines": {
220
+ "node": ">= 0.10"
221
+ }
222
+ },
223
+ "node_modules/is-core-module": {
224
+ "version": "2.16.1",
225
+ "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz",
226
+ "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==",
227
+ "dev": true,
228
+ "license": "MIT",
229
+ "dependencies": {
230
+ "hasown": "^2.0.2"
231
+ },
232
+ "engines": {
233
+ "node": ">= 0.4"
234
+ },
235
+ "funding": {
236
+ "url": "https://github.com/sponsors/ljharb"
237
+ }
238
+ },
239
+ "node_modules/is-extglob": {
240
+ "version": "2.1.1",
241
+ "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
242
+ "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
243
+ "dev": true,
244
+ "license": "MIT",
245
+ "engines": {
246
+ "node": ">=0.10.0"
247
+ }
248
+ },
249
+ "node_modules/is-glob": {
250
+ "version": "4.0.3",
251
+ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
252
+ "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
253
+ "dev": true,
254
+ "license": "MIT",
255
+ "dependencies": {
256
+ "is-extglob": "^2.1.1"
257
+ },
258
+ "engines": {
259
+ "node": ">=0.10.0"
260
+ }
261
+ },
262
+ "node_modules/is-number": {
263
+ "version": "7.0.0",
264
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
265
+ "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
266
+ "dev": true,
267
+ "license": "MIT",
268
+ "engines": {
269
+ "node": ">=0.12.0"
270
+ }
271
+ },
272
+ "node_modules/is-stream": {
273
+ "version": "1.1.0",
274
+ "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz",
275
+ "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==",
276
+ "dev": true,
277
+ "license": "MIT",
278
+ "engines": {
279
+ "node": ">=0.10.0"
280
+ }
281
+ },
282
+ "node_modules/isexe": {
283
+ "version": "2.0.0",
284
+ "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
285
+ "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
286
+ "dev": true,
287
+ "license": "ISC"
288
+ },
289
+ "node_modules/merge2": {
290
+ "version": "1.4.1",
291
+ "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
292
+ "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
293
+ "dev": true,
294
+ "license": "MIT",
295
+ "engines": {
296
+ "node": ">= 8"
297
+ }
298
+ },
299
+ "node_modules/micromatch": {
300
+ "version": "4.0.8",
301
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz",
302
+ "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==",
303
+ "dev": true,
304
+ "license": "MIT",
305
+ "dependencies": {
306
+ "braces": "^3.0.3",
307
+ "picomatch": "^2.3.1"
308
+ },
309
+ "engines": {
310
+ "node": ">=8.6"
311
+ }
312
+ },
313
+ "node_modules/minimist": {
314
+ "version": "1.2.8",
315
+ "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz",
316
+ "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==",
317
+ "dev": true,
318
+ "license": "MIT",
319
+ "funding": {
320
+ "url": "https://github.com/sponsors/ljharb"
321
+ }
322
+ },
323
+ "node_modules/nice-try": {
324
+ "version": "1.0.5",
325
+ "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz",
326
+ "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==",
327
+ "dev": true,
328
+ "license": "MIT"
329
+ },
330
+ "node_modules/npm-run-path": {
331
+ "version": "2.0.2",
332
+ "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz",
333
+ "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==",
334
+ "dev": true,
335
+ "license": "MIT",
336
+ "dependencies": {
337
+ "path-key": "^2.0.0"
338
+ },
339
+ "engines": {
340
+ "node": ">=4"
341
+ }
342
+ },
343
+ "node_modules/once": {
344
+ "version": "1.4.0",
345
+ "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
346
+ "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
347
+ "dev": true,
348
+ "license": "ISC",
349
+ "dependencies": {
350
+ "wrappy": "1"
351
+ }
352
+ },
353
+ "node_modules/p-finally": {
354
+ "version": "1.0.0",
355
+ "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz",
356
+ "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==",
357
+ "dev": true,
358
+ "license": "MIT",
359
+ "engines": {
360
+ "node": ">=4"
361
+ }
362
+ },
363
+ "node_modules/path-key": {
364
+ "version": "2.0.1",
365
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz",
366
+ "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==",
367
+ "dev": true,
368
+ "license": "MIT",
369
+ "engines": {
370
+ "node": ">=4"
371
+ }
372
+ },
373
+ "node_modules/path-parse": {
374
+ "version": "1.0.7",
375
+ "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
376
+ "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==",
377
+ "dev": true,
378
+ "license": "MIT"
379
+ },
380
+ "node_modules/picomatch": {
381
+ "version": "2.3.1",
382
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
383
+ "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
384
+ "dev": true,
385
+ "license": "MIT",
386
+ "engines": {
387
+ "node": ">=8.6"
388
+ },
389
+ "funding": {
390
+ "url": "https://github.com/sponsors/jonschlinkert"
391
+ }
392
+ },
393
+ "node_modules/pump": {
394
+ "version": "3.0.3",
395
+ "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.3.tgz",
396
+ "integrity": "sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==",
397
+ "dev": true,
398
+ "license": "MIT",
399
+ "dependencies": {
400
+ "end-of-stream": "^1.1.0",
401
+ "once": "^1.3.1"
402
+ }
403
+ },
404
+ "node_modules/queue-microtask": {
405
+ "version": "1.2.3",
406
+ "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
407
+ "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
408
+ "dev": true,
409
+ "funding": [
410
+ {
411
+ "type": "github",
412
+ "url": "https://github.com/sponsors/feross"
413
+ },
414
+ {
415
+ "type": "patreon",
416
+ "url": "https://www.patreon.com/feross"
417
+ },
418
+ {
419
+ "type": "consulting",
420
+ "url": "https://feross.org/support"
421
+ }
422
+ ],
423
+ "license": "MIT"
424
+ },
425
+ "node_modules/rechoir": {
426
+ "version": "0.6.2",
427
+ "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz",
428
+ "integrity": "sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==",
429
+ "dev": true,
430
+ "dependencies": {
431
+ "resolve": "^1.1.6"
432
+ },
433
+ "engines": {
434
+ "node": ">= 0.10"
435
+ }
436
+ },
437
+ "node_modules/resolve": {
438
+ "version": "1.22.11",
439
+ "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.11.tgz",
440
+ "integrity": "sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==",
441
+ "dev": true,
442
+ "license": "MIT",
443
+ "dependencies": {
444
+ "is-core-module": "^2.16.1",
445
+ "path-parse": "^1.0.7",
446
+ "supports-preserve-symlinks-flag": "^1.0.0"
447
+ },
448
+ "bin": {
449
+ "resolve": "bin/resolve"
450
+ },
451
+ "engines": {
452
+ "node": ">= 0.4"
453
+ },
454
+ "funding": {
455
+ "url": "https://github.com/sponsors/ljharb"
456
+ }
457
+ },
458
+ "node_modules/reusify": {
459
+ "version": "1.1.0",
460
+ "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz",
461
+ "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==",
462
+ "dev": true,
463
+ "license": "MIT",
464
+ "engines": {
465
+ "iojs": ">=1.0.0",
466
+ "node": ">=0.10.0"
467
+ }
468
+ },
469
+ "node_modules/run-parallel": {
470
+ "version": "1.2.0",
471
+ "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
472
+ "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
473
+ "dev": true,
474
+ "funding": [
475
+ {
476
+ "type": "github",
477
+ "url": "https://github.com/sponsors/feross"
478
+ },
479
+ {
480
+ "type": "patreon",
481
+ "url": "https://www.patreon.com/feross"
482
+ },
483
+ {
484
+ "type": "consulting",
485
+ "url": "https://feross.org/support"
486
+ }
487
+ ],
488
+ "license": "MIT",
489
+ "dependencies": {
490
+ "queue-microtask": "^1.2.2"
491
+ }
492
+ },
493
+ "node_modules/semver": {
494
+ "version": "5.7.2",
495
+ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz",
496
+ "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==",
497
+ "dev": true,
498
+ "license": "ISC",
499
+ "bin": {
500
+ "semver": "bin/semver"
501
+ }
502
+ },
503
+ "node_modules/shebang-command": {
504
+ "version": "1.2.0",
505
+ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz",
506
+ "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==",
507
+ "dev": true,
508
+ "license": "MIT",
509
+ "dependencies": {
510
+ "shebang-regex": "^1.0.0"
511
+ },
512
+ "engines": {
513
+ "node": ">=0.10.0"
514
+ }
515
+ },
516
+ "node_modules/shebang-regex": {
517
+ "version": "1.0.0",
518
+ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz",
519
+ "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==",
520
+ "dev": true,
521
+ "license": "MIT",
522
+ "engines": {
523
+ "node": ">=0.10.0"
524
+ }
525
+ },
526
+ "node_modules/shelljs": {
527
+ "version": "0.9.2",
528
+ "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.9.2.tgz",
529
+ "integrity": "sha512-S3I64fEiKgTZzKCC46zT/Ib9meqofLrQVbpSswtjFfAVDW+AZ54WTnAM/3/yENoxz/V1Cy6u3kiiEbQ4DNphvw==",
530
+ "dev": true,
531
+ "license": "BSD-3-Clause",
532
+ "dependencies": {
533
+ "execa": "^1.0.0",
534
+ "fast-glob": "^3.3.2",
535
+ "interpret": "^1.0.0",
536
+ "rechoir": "^0.6.2"
537
+ },
538
+ "bin": {
539
+ "shjs": "bin/shjs"
540
+ },
541
+ "engines": {
542
+ "node": ">=18"
543
+ }
544
+ },
545
+ "node_modules/shx": {
546
+ "version": "0.4.0",
547
+ "resolved": "https://registry.npmjs.org/shx/-/shx-0.4.0.tgz",
548
+ "integrity": "sha512-Z0KixSIlGPpijKgcH6oCMCbltPImvaKy0sGH8AkLRXw1KyzpKtaCTizP2xen+hNDqVF4xxgvA0KXSb9o4Q6hnA==",
549
+ "dev": true,
550
+ "license": "MIT",
551
+ "dependencies": {
552
+ "minimist": "^1.2.8",
553
+ "shelljs": "^0.9.2"
554
+ },
555
+ "bin": {
556
+ "shx": "lib/cli.js"
557
+ },
558
+ "engines": {
559
+ "node": ">=18"
560
+ }
561
+ },
562
+ "node_modules/signal-exit": {
563
+ "version": "3.0.7",
564
+ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz",
565
+ "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==",
566
+ "dev": true,
567
+ "license": "ISC"
568
+ },
569
+ "node_modules/strip-eof": {
570
+ "version": "1.0.0",
571
+ "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz",
572
+ "integrity": "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==",
573
+ "dev": true,
574
+ "license": "MIT",
575
+ "engines": {
576
+ "node": ">=0.10.0"
577
+ }
578
+ },
579
+ "node_modules/supports-preserve-symlinks-flag": {
580
+ "version": "1.0.0",
581
+ "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
582
+ "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
583
+ "dev": true,
584
+ "license": "MIT",
585
+ "engines": {
586
+ "node": ">= 0.4"
587
+ },
588
+ "funding": {
589
+ "url": "https://github.com/sponsors/ljharb"
590
+ }
591
+ },
592
+ "node_modules/to-regex-range": {
593
+ "version": "5.0.1",
594
+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
595
+ "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
596
+ "dev": true,
597
+ "license": "MIT",
598
+ "dependencies": {
599
+ "is-number": "^7.0.0"
600
+ },
601
+ "engines": {
602
+ "node": ">=8.0"
603
+ }
604
+ },
605
+ "node_modules/typescript": {
606
+ "version": "5.9.3",
607
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
608
+ "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
609
+ "dev": true,
610
+ "license": "Apache-2.0",
611
+ "bin": {
612
+ "tsc": "bin/tsc",
613
+ "tsserver": "bin/tsserver"
614
+ },
615
+ "engines": {
616
+ "node": ">=14.17"
617
+ }
618
+ },
619
+ "node_modules/which": {
620
+ "version": "1.3.1",
621
+ "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz",
622
+ "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==",
623
+ "dev": true,
624
+ "license": "ISC",
625
+ "dependencies": {
626
+ "isexe": "^2.0.0"
627
+ },
628
+ "bin": {
629
+ "which": "bin/which"
630
+ }
631
+ },
632
+ "node_modules/wrappy": {
633
+ "version": "1.0.2",
634
+ "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
635
+ "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
636
+ "dev": true,
637
+ "license": "ISC"
638
+ }
639
+ }
640
+ }
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pptb-standard-sample-tool",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
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",
@@ -34,6 +34,8 @@
34
34
  "shx": "^0.4.0"
35
35
  },
36
36
  "files": [
37
- "dist"
37
+ "dist",
38
+ "icon",
39
+ "package-lock.json"
38
40
  ]
39
41
  }