@keystrokehq/sendgrid 0.0.6-rename-t1.0 → 0.0.8

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.
@@ -36,7 +36,7 @@ const eventWebhookInputSchema = z.object({
36
36
  oauth_token_url: z.string().optional()
37
37
  });
38
38
  const createEventWebhook = sendgridOperation({
39
- id: "create_event_webhook",
39
+ id: "sendgrid.create-event-webhook",
40
40
  name: "Create Event Webhook",
41
41
  description: "Register a new Event Webhook endpoint.",
42
42
  input: eventWebhookInputSchema,
@@ -51,7 +51,7 @@ const createEventWebhook = sendgridOperation({
51
51
  }
52
52
  });
53
53
  const updateEventWebhook = sendgridOperation({
54
- id: "update_event_webhook",
54
+ id: "sendgrid.update-event-webhook",
55
55
  name: "Update Event Webhook",
56
56
  description: "Update an Event Webhook endpoint.",
57
57
  input: eventWebhookInputSchema.partial().extend({ webhookId }),
@@ -68,7 +68,7 @@ const updateEventWebhook = sendgridOperation({
68
68
  }
69
69
  });
70
70
  const deleteEventWebhook = sendgridOperation({
71
- id: "delete_event_webhook",
71
+ id: "sendgrid.delete-event-webhook",
72
72
  name: "Delete Event Webhook",
73
73
  description: "Delete an Event Webhook endpoint.",
74
74
  input: z.object({ webhookId }),
@@ -80,7 +80,7 @@ const deleteEventWebhook = sendgridOperation({
80
80
  }
81
81
  });
82
82
  const listEventWebhooks = sendgridOperation({
83
- id: "list_event_webhooks",
83
+ id: "sendgrid.list-event-webhooks",
84
84
  name: "List Event Webhooks",
85
85
  description: "List all Event Webhook endpoints configured on the account.",
86
86
  input: z.object({}).optional(),
@@ -91,7 +91,7 @@ const listEventWebhooks = sendgridOperation({
91
91
  }
92
92
  });
93
93
  const getEventWebhook = sendgridOperation({
94
- id: "get_event_webhook",
94
+ id: "sendgrid.get-event-webhook",
95
95
  name: "Get Event Webhook",
96
96
  description: "Retrieve a single Event Webhook endpoint by ID.",
97
97
  input: z.object({ webhookId }),
@@ -102,7 +102,7 @@ const getEventWebhook = sendgridOperation({
102
102
  }
103
103
  });
104
104
  const getSignedPublicKey = sendgridOperation({
105
- id: "get_signed_public_key",
105
+ id: "sendgrid.get-signed-public-key",
106
106
  name: "Get Signed Event Webhook Public Key",
107
107
  description: "Retrieve the Ed25519 public key used to verify signed Event Webhook POSTs. Cache + rotate on `toggle_webhook_signature`.",
108
108
  input: z.object({}).optional(),
@@ -113,7 +113,7 @@ const getSignedPublicKey = sendgridOperation({
113
113
  }
114
114
  });
115
115
  const toggleWebhookSignature = sendgridOperation({
116
- id: "toggle_webhook_signature",
116
+ id: "sendgrid.toggle-webhook-signature",
117
117
  name: "Toggle Webhook Signature",
118
118
  description: "Enable or disable Ed25519 signing on Event Webhook deliveries.",
119
119
  input: z.object({ enabled: z.boolean() }),
@@ -128,7 +128,7 @@ const toggleWebhookSignature = sendgridOperation({
128
128
  }
129
129
  });
130
130
  const testEventWebhook = sendgridOperation({
131
- id: "test_event_webhook",
131
+ id: "sendgrid.test-event-webhook",
132
132
  name: "Test Event Webhook",
133
133
  description: "Ask SendGrid to POST a test payload to the configured Event Webhook URL.",
134
134
  input: z.object({ url: z.string().url() }),
@@ -21,7 +21,7 @@ const parseInputSchema = z.object({
21
21
  sendRaw: z.boolean().optional()
22
22
  });
23
23
  const createParseSetting = sendgridOperation({
24
- id: "create_parse_setting",
24
+ id: "sendgrid.create-parse-setting",
25
25
  name: "Create Inbound Parse Setting",
26
26
  description: "Configure an Inbound Parse hostname + receiver URL.",
27
27
  input: parseInputSchema,
@@ -41,7 +41,7 @@ const createParseSetting = sendgridOperation({
41
41
  }
42
42
  });
43
43
  const updateParseSetting = sendgridOperation({
44
- id: "update_parse_setting",
44
+ id: "sendgrid.update-parse-setting",
45
45
  name: "Update Inbound Parse Setting",
46
46
  description: "Update an Inbound Parse configuration (by hostname).",
47
47
  input: parseInputSchema.partial().extend({ hostname }),
@@ -60,7 +60,7 @@ const updateParseSetting = sendgridOperation({
60
60
  }
61
61
  });
62
62
  const deleteParseSetting = sendgridOperation({
63
- id: "delete_parse_setting",
63
+ id: "sendgrid.delete-parse-setting",
64
64
  name: "Delete Inbound Parse Setting",
65
65
  description: "Remove an Inbound Parse configuration by hostname.",
66
66
  input: z.object({ hostname }),
@@ -72,7 +72,7 @@ const deleteParseSetting = sendgridOperation({
72
72
  }
73
73
  });
74
74
  const listParseSettings = sendgridOperation({
75
- id: "list_parse_settings",
75
+ id: "sendgrid.list-parse-settings",
76
76
  name: "List Inbound Parse Settings",
77
77
  description: "List all Inbound Parse configurations on the account.",
78
78
  input: z.object({}).optional(),
@@ -83,7 +83,7 @@ const listParseSettings = sendgridOperation({
83
83
  }
84
84
  });
85
85
  const getParseSetting = sendgridOperation({
86
- id: "get_parse_setting",
86
+ id: "sendgrid.get-parse-setting",
87
87
  name: "Get Inbound Parse Setting",
88
88
  description: "Retrieve a single Inbound Parse configuration.",
89
89
  input: z.object({ hostname }),
@@ -94,7 +94,7 @@ const getParseSetting = sendgridOperation({
94
94
  }
95
95
  });
96
96
  const getParseStats = sendgridOperation({
97
- id: "get_parse_stats",
97
+ id: "sendgrid.get-parse-stats",
98
98
  name: "Get Inbound Parse Stats",
99
99
  description: "Retrieve Inbound Parse statistics.",
100
100
  input: z.object({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keystrokehq/sendgrid",
3
- "version": "0.0.6-rename-t1.0",
3
+ "version": "0.0.8",
4
4
  "private": false,
5
5
  "sideEffects": false,
6
6
  "type": "module",
@@ -116,18 +116,18 @@
116
116
  "LICENSE"
117
117
  ],
118
118
  "dependencies": {
119
- "@keystrokehq/integration-authoring": "^0.0.6-rename-t1.0",
119
+ "@keystrokehq/integration-authoring": "^0.0.8",
120
120
  "zod": "^4.3.6"
121
121
  },
122
122
  "peerDependencies": {
123
- "@keystrokehq/core": ">=0.0.7 <0.1.0"
123
+ "@keystrokehq/core": ">=0.0.8 <0.1.0"
124
124
  },
125
125
  "devDependencies": {
126
126
  "@types/node": "^22.19.11",
127
127
  "tsdown": "^0.20.3",
128
128
  "typescript": "^5.9.3",
129
129
  "vitest": "^4.0.18",
130
- "@keystrokehq/core": "^0.0.7",
130
+ "@keystrokehq/core": "^0.0.8",
131
131
  "@keystrokehq/test-utils": "0.0.0",
132
132
  "@keystrokehq/typescript-config": "0.0.0"
133
133
  },