@stacksjs/scheduler 0.70.22 → 0.70.25
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 +21 -21
- package/dist/index.js +1 -4784
- package/dist/src/index.d.ts +4 -0
- package/dist/src/run.d.ts +2 -0
- package/dist/src/schedule.d.ts +73 -0
- package/dist/{types.d.ts → src/types.d.ts} +44 -38
- package/package.json +21 -7
- package/dist/index.d.ts +0 -3
- package/dist/run.d.ts +0 -7
- package/dist/schedule.d.ts +0 -239
package/README.md
CHANGED
|
@@ -38,62 +38,62 @@ Drivers are configured with the following environment variables:
|
|
|
38
38
|
#### Twilio
|
|
39
39
|
|
|
40
40
|
```bash
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
41
|
+
TWILIO*ACCOUNT*SID=ACtest
|
|
42
|
+
TWILIO*AUTH*TOKEN=testtoken
|
|
43
|
+
TWILIO*FROM*NUMBER=+112345
|
|
44
|
+
TWILIO*TO*NUMBER=+145678
|
|
45
45
|
```
|
|
46
46
|
|
|
47
47
|
#### Nexmo
|
|
48
48
|
|
|
49
49
|
```bash
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
50
|
+
VONAGE*API*KEY=VN123
|
|
51
|
+
VONAGE*API*SECRET=testkey
|
|
52
|
+
VONAGE*FROM*NUMBER=+112345
|
|
53
53
|
```
|
|
54
54
|
|
|
55
55
|
#### Gupshup
|
|
56
56
|
|
|
57
57
|
```bash
|
|
58
|
-
|
|
59
|
-
|
|
58
|
+
GUPSHUP*USER*ID=GU123
|
|
59
|
+
GUPSHUP*PASSWORD=password
|
|
60
60
|
```
|
|
61
61
|
|
|
62
62
|
#### Plivo
|
|
63
63
|
|
|
64
64
|
```bash
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
65
|
+
PLIVO*ACCOUNT*ID=PA123
|
|
66
|
+
PLIVO*AUTH*TOKEN=testtoken
|
|
67
|
+
PLIVO*FROM*NUMBER=+112345
|
|
68
68
|
```
|
|
69
69
|
|
|
70
70
|
#### SMS77
|
|
71
71
|
|
|
72
72
|
```bash
|
|
73
|
-
|
|
74
|
-
|
|
73
|
+
SMS77*API*KEY=SA123
|
|
74
|
+
SMS77*FROM=from@example.com
|
|
75
75
|
```
|
|
76
76
|
|
|
77
77
|
#### SNS
|
|
78
78
|
|
|
79
79
|
```bash
|
|
80
|
-
|
|
81
|
-
|
|
80
|
+
SMS77*API*KEY=SA123
|
|
81
|
+
SMS77*FROM=from@example.com
|
|
82
82
|
```
|
|
83
83
|
|
|
84
84
|
#### Telnyx
|
|
85
85
|
|
|
86
86
|
```bash
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
87
|
+
TELNYX*API*KEY=TA123
|
|
88
|
+
TELNYX*MESSAGE*PROFILE*ID=testprofileid
|
|
89
|
+
TELNYX*FROM=from@example.com
|
|
90
90
|
```
|
|
91
91
|
|
|
92
92
|
#### Termii
|
|
93
93
|
|
|
94
94
|
```bash
|
|
95
|
-
|
|
96
|
-
|
|
95
|
+
TERMII*API*KEY=TermA123
|
|
96
|
+
TERMII*SENDER=from@example.com
|
|
97
97
|
```
|
|
98
98
|
|
|
99
99
|
Learn more in the docs.
|