@heymantle/core-api-client 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.
package/dist/index.d.mts CHANGED
@@ -4114,7 +4114,7 @@ declare class FlowExtensionsResource extends BaseResource {
4114
4114
  /**
4115
4115
  * Resource for managing AI agent runs
4116
4116
  */
4117
- declare class AIAgentRunsResource extends BaseResource {
4117
+ declare class AiAgentRunsResource extends BaseResource {
4118
4118
  /**
4119
4119
  * Create a new AI agent run
4120
4120
  * Returns 202 Accepted as the run executes asynchronously
@@ -4203,7 +4203,7 @@ declare class MantleCoreClient {
4203
4203
  readonly journalEntries: JournalEntriesResource;
4204
4204
  readonly emailUnsubscribeGroups: EmailUnsubscribeGroupsResource;
4205
4205
  readonly flowExtensions: FlowExtensionsResource;
4206
- readonly aiAgentRuns: AIAgentRunsResource;
4206
+ readonly aiAgentRuns: AiAgentRunsResource;
4207
4207
  constructor(config: MantleCoreClientConfig);
4208
4208
  /**
4209
4209
  * Register a middleware function
package/dist/index.d.ts CHANGED
@@ -4114,7 +4114,7 @@ declare class FlowExtensionsResource extends BaseResource {
4114
4114
  /**
4115
4115
  * Resource for managing AI agent runs
4116
4116
  */
4117
- declare class AIAgentRunsResource extends BaseResource {
4117
+ declare class AiAgentRunsResource extends BaseResource {
4118
4118
  /**
4119
4119
  * Create a new AI agent run
4120
4120
  * Returns 202 Accepted as the run executes asynchronously
@@ -4203,7 +4203,7 @@ declare class MantleCoreClient {
4203
4203
  readonly journalEntries: JournalEntriesResource;
4204
4204
  readonly emailUnsubscribeGroups: EmailUnsubscribeGroupsResource;
4205
4205
  readonly flowExtensions: FlowExtensionsResource;
4206
- readonly aiAgentRuns: AIAgentRunsResource;
4206
+ readonly aiAgentRuns: AiAgentRunsResource;
4207
4207
  constructor(config: MantleCoreClientConfig);
4208
4208
  /**
4209
4209
  * Register a middleware function
package/dist/index.js CHANGED
@@ -2310,7 +2310,7 @@ var FlowExtensionsResource = class extends BaseResource {
2310
2310
  };
2311
2311
 
2312
2312
  // src/resources/ai-agent-runs.ts
2313
- var AIAgentRunsResource = class extends BaseResource {
2313
+ var AiAgentRunsResource = class extends BaseResource {
2314
2314
  /**
2315
2315
  * Create a new AI agent run
2316
2316
  * Returns 202 Accepted as the run executes asynchronously
@@ -2415,7 +2415,7 @@ var MantleCoreClient = class {
2415
2415
  this.journalEntries = new JournalEntriesResource(this);
2416
2416
  this.emailUnsubscribeGroups = new EmailUnsubscribeGroupsResource(this);
2417
2417
  this.flowExtensions = new FlowExtensionsResource(this);
2418
- this.aiAgentRuns = new AIAgentRunsResource(this);
2418
+ this.aiAgentRuns = new AiAgentRunsResource(this);
2419
2419
  }
2420
2420
  /**
2421
2421
  * Register a middleware function
package/dist/index.mjs CHANGED
@@ -2244,7 +2244,7 @@ var FlowExtensionsResource = class extends BaseResource {
2244
2244
  };
2245
2245
 
2246
2246
  // src/resources/ai-agent-runs.ts
2247
- var AIAgentRunsResource = class extends BaseResource {
2247
+ var AiAgentRunsResource = class extends BaseResource {
2248
2248
  /**
2249
2249
  * Create a new AI agent run
2250
2250
  * Returns 202 Accepted as the run executes asynchronously
@@ -2349,7 +2349,7 @@ var MantleCoreClient = class {
2349
2349
  this.journalEntries = new JournalEntriesResource(this);
2350
2350
  this.emailUnsubscribeGroups = new EmailUnsubscribeGroupsResource(this);
2351
2351
  this.flowExtensions = new FlowExtensionsResource(this);
2352
- this.aiAgentRuns = new AIAgentRunsResource(this);
2352
+ this.aiAgentRuns = new AiAgentRunsResource(this);
2353
2353
  }
2354
2354
  /**
2355
2355
  * Register a middleware function
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@heymantle/core-api-client",
3
- "version": "0.1.17",
3
+ "version": "0.1.18",
4
4
  "description": "TypeScript SDK for the Mantle Core API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",