@pulumi/mailgun 3.5.6 → 3.5.7

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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/webhook.d.ts +3 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/mailgun",
3
- "version": "3.5.6",
3
+ "version": "3.5.7",
4
4
  "description": "A Pulumi package for creating and managing Mailgun resources.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -23,6 +23,6 @@
23
23
  "pulumi": {
24
24
  "resource": true,
25
25
  "name": "mailgun",
26
- "version": "3.5.6"
26
+ "version": "3.5.7"
27
27
  }
28
28
  }
package/webhook.d.ts CHANGED
@@ -39,7 +39,7 @@ export declare class Webhook extends pulumi.CustomResource {
39
39
  */
40
40
  readonly domain: pulumi.Output<string>;
41
41
  /**
42
- * The kind of webhook. Supported values (`clicked` `complained` `delivered` `opened` `permanentFail`, `temporaryFail` `unsubscribed`)
42
+ * The kind of webhook. Supported values (`accepted` `clicked` `complained` `delivered` `opened` `permanentFail`, `temporaryFail` `unsubscribed`)
43
43
  */
44
44
  readonly kind: pulumi.Output<string>;
45
45
  /**
@@ -68,7 +68,7 @@ export interface WebhookState {
68
68
  */
69
69
  domain?: pulumi.Input<string>;
70
70
  /**
71
- * The kind of webhook. Supported values (`clicked` `complained` `delivered` `opened` `permanentFail`, `temporaryFail` `unsubscribed`)
71
+ * The kind of webhook. Supported values (`accepted` `clicked` `complained` `delivered` `opened` `permanentFail`, `temporaryFail` `unsubscribed`)
72
72
  */
73
73
  kind?: pulumi.Input<string>;
74
74
  /**
@@ -89,7 +89,7 @@ export interface WebhookArgs {
89
89
  */
90
90
  domain: pulumi.Input<string>;
91
91
  /**
92
- * The kind of webhook. Supported values (`clicked` `complained` `delivered` `opened` `permanentFail`, `temporaryFail` `unsubscribed`)
92
+ * The kind of webhook. Supported values (`accepted` `clicked` `complained` `delivered` `opened` `permanentFail`, `temporaryFail` `unsubscribed`)
93
93
  */
94
94
  kind: pulumi.Input<string>;
95
95
  /**