@boltic/swirl 1.0.2-uat.0 β 1.0.2
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 +6 -0
- package/dist/index.d.ts +6 -0
- package/dist/swirl.es.js +22077 -22091
- package/dist/swirl.umd.js +174 -174
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -385,6 +385,12 @@ Swirl is perfect for building:
|
|
|
385
385
|
|
|
386
386
|
## π€ Publishing (maintainers)
|
|
387
387
|
|
|
388
|
+
### Access & prerequisites
|
|
389
|
+
|
|
390
|
+
- **npm account**: Use a Gofynd email address for your npm account.
|
|
391
|
+
- **Two-factor authentication (2FA)**: Enable 2FA on your npm account using an authenticator app (e.g. Google Authenticator). Required for publishing.
|
|
392
|
+
- **Publish access**: If you donβt have permission to publish `@boltic/swirl` on npm, reach out to **Ahmed Sakri** β [ahmedsakri@gofynd.com](mailto:ahmedsakri@gofynd.com) β to get access.
|
|
393
|
+
|
|
388
394
|
### Branches & release strategy
|
|
389
395
|
|
|
390
396
|
- **`fcz0`** β SIT (System Integration Testing) releases. Publish from this branch for SIT versions.
|
package/dist/index.d.ts
CHANGED
|
@@ -9,6 +9,12 @@ export interface WorkflowBuilderProps {
|
|
|
9
9
|
ENTITY_ID: string;
|
|
10
10
|
TOKEN: string;
|
|
11
11
|
openIntegrationDrawer?: (data: any, action?: string) => void;
|
|
12
|
+
api?: any;
|
|
13
|
+
navigate?: any;
|
|
14
|
+
USER_DATA: any;
|
|
15
|
+
pro_integration: boolean;
|
|
16
|
+
openUpgradeModal: () => void;
|
|
17
|
+
analytics: any;
|
|
12
18
|
}
|
|
13
19
|
|
|
14
20
|
export interface ExecutionDataProps {
|