File tree Expand file tree Collapse file tree 7 files changed +1652
-7
lines changed Expand file tree Collapse file tree 7 files changed +1652
-7
lines changed Original file line number Diff line number Diff line change 1
1
🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲
2
2
🟥🟥🟥 STDERR️️ 🟥🟥🟥️
3
- Project settings allow you to manage the configuration of your settings .
3
+ Project settings allow you to manage the configuration of your projects .
4
4
5
5
USAGE:
6
6
scw tem project-settings
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ AVAILABLE COMMANDS:
9
9
blocklists Blocklist
10
10
domain Domain management commands
11
11
email Email management commands
12
+ offers Project offers management commands
12
13
project-settings Project settings management commands
13
14
webhook Webhook management commands
14
15
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ This API allows you to manage your Transactional Email services.
20
20
- [ Get an email] ( #get-an-email )
21
21
- [ Email statuses] ( #email-statuses )
22
22
- [ List emails] ( #list-emails )
23
+ - [ Project offers management commands] ( #project-offers-management-commands )
23
24
- [ Project settings management commands] ( #project-settings-management-commands )
24
25
- [ Webhook management commands] ( #webhook-management-commands )
25
26
- [ Create a Webhook] ( #create-a-webhook )
@@ -392,11 +393,25 @@ scw tem email list [arg=value ...]
392
393
393
394
394
395
396
+ ## Project offers management commands
397
+
398
+ This section allows you to manage and get get subscribed information about your project email offer.
399
+
400
+ This section allows you to manage and get get subscribed information about your project email offer.
401
+
402
+ ** Usage:**
403
+
404
+ ```
405
+ scw tem offers
406
+ ```
407
+
408
+
409
+
395
410
## Project settings management commands
396
411
397
- Project settings allow you to manage the configuration of your settings .
412
+ Project settings allow you to manage the configuration of your projects .
398
413
399
- Project settings allow you to manage the configuration of your settings .
414
+ Project settings allow you to manage the configuration of your projects .
400
415
401
416
** Usage:**
402
417
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ require (
26
26
github.com/mattn/go-isatty v0.0.20
27
27
github.com/moby/buildkit v0.13.2
28
28
github.com/opencontainers/go-digest v1.0.0
29
- github.com/scaleway/scaleway-sdk-go v1.0.0-beta.30 .0.20250117133139-e360c98f921d
29
+ github.com/scaleway/scaleway-sdk-go v1.0.0-beta.31 .0.20250130081923-422331c4eeb7
30
30
github.com/skratchdot/open-golang v0.0.0-20200116055534-eef842397966
31
31
github.com/spf13/cobra v1.8.1
32
32
github.com/spf13/pflag v1.0.6
Original file line number Diff line number Diff line change @@ -463,8 +463,8 @@ github.com/rogpeppe/go-internal v1.11.0/go.mod h1:ddIwULY96R17DhadqLgMfk9H9tvdUz
463
463
github.com/russross/blackfriday/v2 v2.1.0 /go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM =
464
464
github.com/sabhiram/go-gitignore v0.0.0-20210923224102-525f6e181f06 h1:OkMGxebDjyw0ULyrTYWeN0UNCCkmCWfjPnIA2W6oviI =
465
465
github.com/sabhiram/go-gitignore v0.0.0-20210923224102-525f6e181f06 /go.mod h1:+ePHsJ1keEjQtpvf9HHw0f4ZeJ0TLRsxhunSI2hYJSs =
466
- github.com/scaleway/scaleway-sdk-go v1.0.0-beta.30 .0.20250117133139-e360c98f921d h1:npDtKGreHq1EA6DoHo18YG25bsvZVlo4XlNm822GZ7A =
467
- github.com/scaleway/scaleway-sdk-go v1.0.0-beta.30 .0.20250117133139-e360c98f921d /go.mod h1:kzh+BSAvpoyHHdHBCDhmSWtBc1NbLMZ2lWHqnBoxFks =
466
+ github.com/scaleway/scaleway-sdk-go v1.0.0-beta.31 .0.20250130081923-422331c4eeb7 h1:iZSgQ0e3DtYoUKI1mcxArXzWlX711NKbAjsyjkrTPQ4 =
467
+ github.com/scaleway/scaleway-sdk-go v1.0.0-beta.31 .0.20250130081923-422331c4eeb7 /go.mod h1:kzh+BSAvpoyHHdHBCDhmSWtBc1NbLMZ2lWHqnBoxFks =
468
468
github.com/sclevine/spec v1.4.0 h1:z/Q9idDcay5m5irkZ28M7PtQM4aOISzOpj4bUPkDee8 =
469
469
github.com/sclevine/spec v1.4.0 /go.mod h1:LvpgJaFyvQzRvc1kaDs0bulYwzC70PbiYjC4QnFHkOM =
470
470
github.com/secure-systems-lab/go-securesystemslib v0.8.0 h1:mr5An6X45Kb2nddcFlbmfHkLguCE9laoZCUzEEpIZXA =
Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ func GetGeneratedCommands() *core.Commands {
25
25
temWebhook (),
26
26
temProjectSettings (),
27
27
temBlocklists (),
28
+ temOffers (),
28
29
temEmailCreate (),
29
30
temEmailGet (),
30
31
temEmailList (),
@@ -86,7 +87,7 @@ func temWebhook() *core.Command {
86
87
func temProjectSettings () * core.Command {
87
88
return & core.Command {
88
89
Short : `Project settings management commands` ,
89
- Long : `Project settings allow you to manage the configuration of your settings .` ,
90
+ Long : `Project settings allow you to manage the configuration of your projects .` ,
90
91
Namespace : "tem" ,
91
92
Resource : "project-settings" ,
92
93
}
@@ -101,6 +102,15 @@ func temBlocklists() *core.Command {
101
102
}
102
103
}
103
104
105
+ func temOffers () * core.Command {
106
+ return & core.Command {
107
+ Short : `Project offers management commands` ,
108
+ Long : `This section allows you to manage and get get subscribed information about your project email offer.` ,
109
+ Namespace : "tem" ,
110
+ Resource : "offers" ,
111
+ }
112
+ }
113
+
104
114
func temEmailCreate () * core.Command {
105
115
return & core.Command {
106
116
Short : `Send an email` ,
You can’t perform that action at this time.
0 commit comments