@3e/sqa-common 6.0.8-13 → 6.0.8-14
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/index.d.ts +13 -0
- package/package.json +1 -1
- package/sqa_common.js +1403 -983
package/index.d.ts
CHANGED
|
@@ -1602,6 +1602,19 @@ declare module '@3e/sqa-common' {
|
|
|
1602
1602
|
* @param view
|
|
1603
1603
|
*/
|
|
1604
1604
|
getViewParameters(view: SQView): Parameter[]
|
|
1605
|
+
|
|
1606
|
+
/**
|
|
1607
|
+
* Generate a new password for the user
|
|
1608
|
+
*
|
|
1609
|
+
* Password will
|
|
1610
|
+
* - be between 12 and 100 characters
|
|
1611
|
+
* - contain at least one lower-case character
|
|
1612
|
+
* - contain at least one upper-case character
|
|
1613
|
+
* - contain at least one digit
|
|
1614
|
+
* - contain at least one special character ("!%&@#$^*?_~-")
|
|
1615
|
+
*
|
|
1616
|
+
*/
|
|
1617
|
+
generatePassword(): string
|
|
1605
1618
|
}
|
|
1606
1619
|
|
|
1607
1620
|
export const sqa: {
|