@asaleh37/ui-base 25.6.2-0.2 → 25.6.2-0.3

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.
@@ -29,3 +29,21 @@ jobs:
29
29
  run: npm publish
30
30
  env:
31
31
  NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
32
+ notify:
33
+ needs: publish
34
+ runs-on: ubuntu-latest
35
+ if: always() # ensures this step runs regardless of success or failure
36
+ steps:
37
+ - name: Send email notification
38
+ uses: dawidd6/action-send-mail@v3
39
+ with:
40
+ server_address: smtp.gmail.com
41
+ server_port: 587
42
+ username: ${{ secrets.SMTP_USERNAME }}
43
+ password: ${{ secrets.SMTP_PASSWORD }}
44
+ subject: ui-base package publish job is finished
45
+ to: ahmed.saleh.mohamed.92@gmail.com
46
+ from: ${{ secrets.SMTP_USERNAME }}
47
+ body: |
48
+ The GitHub Actions workflow has finished.
49
+ Status: ${{ needs.publish.result }}
package/dist/index.d.ts CHANGED
@@ -75,6 +75,7 @@ type AppInfo = {
75
75
  };
76
76
  muiPremiumKey: string;
77
77
  enableAdministrationModule: boolean;
78
+ enableUINotifications: Boolean;
78
79
  appTheme?: {
79
80
  light: {
80
81
  primaryColor: string;