@structbuild/sdk 0.1.17 → 0.1.18

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 @@ export interface paths {
36
36
  };
37
37
  /**
38
38
  * List event types
39
- * @description Retrieve all available webhook event types with descriptions
39
+ * @description Retrieve all available webhook event types with descriptions, categories, credits cost, and applicable filter fields
40
40
  */
41
41
  get: operations["list_events"];
42
42
  put?: never;
@@ -1273,6 +1273,15 @@ export interface components {
1273
1273
  event: string;
1274
1274
  /** @description Human-readable description */
1275
1275
  description: string;
1276
+ /** @description Category grouping: "trader", "market", "event", or "position" */
1277
+ category: string;
1278
+ /**
1279
+ * Format: int64
1280
+ * @description Credits consumed per webhook delivery
1281
+ */
1282
+ credits_cost: number;
1283
+ /** @description Filter field names that apply to this event type */
1284
+ applicable_filters: string[];
1276
1285
  };
1277
1286
  /** @description Webhook filters request body */
1278
1287
  WebhookFiltersBody: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@structbuild/sdk",
3
- "version": "0.1.17",
3
+ "version": "0.1.18",
4
4
  "type": "module",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.js",