@linked365/pptb-flowfinder 0.1.9 → 0.2.0
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/README.md +10 -83
- package/dist/assets/index-D63BbEik.js +118 -0
- package/dist/index.html +1 -1
- package/npm-shrinkwrap.json +180 -4
- package/package.json +4 -3
- package/dist/assets/index-bZDwkcSu.js +0 -104
package/README.md
CHANGED
|
@@ -1,95 +1,22 @@
|
|
|
1
1
|
# FlowFinder
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Power Platform ToolBox tool to help you find and manage your Power Automate flows.
|
|
4
4
|
|
|
5
5
|
## Features
|
|
6
6
|
|
|
7
|
-
- ✅
|
|
8
|
-
- ✅
|
|
9
|
-
- ✅
|
|
10
|
-
- ✅
|
|
11
|
-
- ✅
|
|
12
|
-
- ✅ Hot Module Replacement (HMR) for development
|
|
13
|
-
|
|
14
|
-
## Structure
|
|
15
|
-
|
|
16
|
-
```
|
|
17
|
-
pptb-flowfinder/
|
|
18
|
-
├── src/
|
|
19
|
-
│ ├── App.tsx # Main component
|
|
20
|
-
│ ├── main.tsx # Entry point
|
|
21
|
-
│ └── styles.css # Styling
|
|
22
|
-
├── dist/ # Build output
|
|
23
|
-
├── index.html
|
|
24
|
-
├── package.json
|
|
25
|
-
├── tsconfig.json
|
|
26
|
-
└── vite.config.ts
|
|
27
|
-
```
|
|
7
|
+
- ✅ View all Cloud Flows in an environment
|
|
8
|
+
- ✅ See the owners, description, solutions, status
|
|
9
|
+
- ✅ Filter the data by solution, owner, status, and more
|
|
10
|
+
- ✅ Update and manage Co-Owners of flows
|
|
11
|
+
- ✅ Update and manage solutions the flows are contained within
|
|
28
12
|
|
|
29
13
|
## Installation
|
|
30
14
|
|
|
31
|
-
Install
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
npm install
|
|
35
|
-
```
|
|
36
|
-
|
|
37
|
-
## Development
|
|
38
|
-
|
|
39
|
-
Start development server with HMR:
|
|
40
|
-
|
|
41
|
-
```bash
|
|
42
|
-
npm run dev
|
|
43
|
-
```
|
|
44
|
-
|
|
45
|
-
Build the tool:
|
|
46
|
-
|
|
47
|
-
```bash
|
|
48
|
-
npm run build
|
|
49
|
-
```
|
|
50
|
-
|
|
51
|
-
Preview production build:
|
|
52
|
-
|
|
53
|
-
```bash
|
|
54
|
-
npm run preview
|
|
55
|
-
```
|
|
56
|
-
|
|
57
|
-
## Usage in ToolBox
|
|
58
|
-
|
|
59
|
-
1. Build the tool using `npm run build`
|
|
60
|
-
2. Install the tool in ToolBox
|
|
61
|
-
3. Load and use the tool from the ToolBox interface
|
|
62
|
-
|
|
63
|
-
## API Usage
|
|
64
|
-
|
|
65
|
-
The tool demonstrates various ToolBox API features:
|
|
66
|
-
|
|
67
|
-
### Getting Connection Context
|
|
68
|
-
|
|
69
|
-
```typescript
|
|
70
|
-
const context = await window.toolboxAPI.getToolContext();
|
|
71
|
-
console.log(context.connectionUrl);
|
|
72
|
-
console.log(context.accessToken);
|
|
73
|
-
```
|
|
74
|
-
|
|
75
|
-
### Showing Notifications
|
|
76
|
-
|
|
77
|
-
```typescript
|
|
78
|
-
await window.toolboxAPI.showNotification({
|
|
79
|
-
title: 'Success',
|
|
80
|
-
body: 'Operation completed',
|
|
81
|
-
type: 'success'
|
|
82
|
-
});
|
|
83
|
-
```
|
|
84
|
-
|
|
85
|
-
### Subscribing to Events
|
|
15
|
+
Install the tool in ToolBox
|
|
16
|
+
Load and use the tool from the ToolBox interface
|
|
17
|
+
The tool should be intuitive, but documentation is here.
|
|
86
18
|
|
|
87
|
-
|
|
88
|
-
window.toolboxAPI.onToolboxEvent((event, payload) => {
|
|
89
|
-
console.log('Event:', payload.event);
|
|
90
|
-
console.log('Data:', payload.data);
|
|
91
|
-
});
|
|
92
|
-
```
|
|
19
|
+
Please create Issues and feature requests
|
|
93
20
|
|
|
94
21
|
## License
|
|
95
22
|
|