@zapier/zapier-sdk 0.91.1 → 0.92.1

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.
@@ -186,9 +186,33 @@ declare module "zod" {
186
186
  }
187
187
  }
188
188
 
189
+ /**
190
+ * The response `meta` sidecar, shared by both output modes: an item method's
191
+ * `{ data, meta }` envelope and a list method's page carry the same shape, so a
192
+ * caller reads a framework report the same way regardless of the mode it came
193
+ * from.
194
+ *
195
+ * Every member is optional and framework-owned. A method's `run` returns `data`;
196
+ * the boundary attaches what belongs here.
197
+ */
198
+ interface ResponseMeta {
199
+ /**
200
+ * What output validation's strip removed from the response, present only when
201
+ * the head enables the `includeOutputValidationDroppedPaths` core option AND
202
+ * something was actually dropped. Paths are relative to `data` in both modes
203
+ * (`a.b` for an item), with array elements collapsed to one `[]` segment and
204
+ * unioned (`[].b` on a page, `items[].b` for an array inside an item), matching
205
+ * connectors' format.
206
+ */
207
+ outputValidation?: {
208
+ droppedPaths: string[];
209
+ };
210
+ }
211
+
189
212
  /**
190
213
  * Pagination shapes used by the plugin framework.
191
214
  */
215
+
192
216
  /**
193
217
  * Single page of a paginated SDK list result. Returned from the page-level
194
218
  * promise and yielded from the page-level async iterable.
@@ -196,6 +220,10 @@ declare module "zod" {
196
220
  interface SdkPage<T = unknown> {
197
221
  data: T[];
198
222
  nextCursor?: string;
223
+ /** Additive per-page framework sidecar, the same shape an item method's
224
+ * envelope carries. Framework-set, not something a handler or `adaptPage`
225
+ * returns. See {@link ResponseMeta}. */
226
+ meta?: ResponseMeta;
199
227
  }
200
228
  /**
201
229
  * Return type of every paginated SDK method. The documented surface is:
@@ -652,6 +680,13 @@ interface LeafMetaFields {
652
680
  itemType?: string;
653
681
  returnType?: string;
654
682
  outputSchema?: z.ZodSchema;
683
+ /** Behavioral opt-out that rides on this config for every `defineMethod`
684
+ * overload (all merge `LeafMetaFields`), the partner of `outputSchema`: when
685
+ * true, the materializer skips validating/stripping the output. It is
686
+ * consumed at build time and stored as a first-class plugin field, NOT folded
687
+ * into the projected meta (hence absent from `LEAF_META_KEYS`), so it stays
688
+ * off the registry / CLI / MCP surface, exactly like `skipInputValidation`. */
689
+ skipOutputValidation?: boolean;
655
690
  packages?: string[];
656
691
  experimental?: boolean;
657
692
  confirm?: "create-secret" | "delete";
@@ -1148,9 +1183,15 @@ interface MethodPlugin<TName extends string = string, TInput = unknown, TOutput
1148
1183
  /** True for a `declareMethod` stand-in: a typed reference with no real
1149
1184
  * implementation. A real plugin under the same id satisfies it. */
1150
1185
  standIn?: boolean;
1151
- /** True for a `declareOptionalProperty` stand-in over a method id: dependents bind
1152
- * `undefined` if no real plugin satisfies it. */
1186
+ /** True for a `declareOptionalMethod` stand-in: dependents bind `undefined` if
1187
+ * no real plugin satisfies it, and `PluginSurface` types the binding
1188
+ * `| undefined`. */
1153
1189
  optional?: boolean;
1190
+ /** Present on a `declareDefault` wrapper: this entry is the DEFAULT provider
1191
+ * for its id (preempted by any explicit provider). Its value is the wrapped
1192
+ * plugin, so two defaults for one id dedup (same source) or conflict
1193
+ * (different source). */
1194
+ defaultSource?: AnyLeafPlugin;
1154
1195
  imports: readonly AnyPlugin[];
1155
1196
  /** Binding-name to plugin-id edges, normalized from `imports`;
1156
1197
  * what the `imports` bag is built from. */
@@ -1172,6 +1213,10 @@ interface MethodPlugin<TName extends string = string, TInput = unknown, TOutput
1172
1213
  * For raw methods that own their own validation and must not have their input
1173
1214
  * transformed, e.g. `fetch` passing a `RequestInit` bag through unchanged. */
1174
1215
  skipInputValidation?: boolean;
1216
+ /** When true, the materializer skips validating/stripping `run`'s output
1217
+ * against `meta.outputSchema` (the schema stays for projection). The output
1218
+ * partner of {@link MethodPlugin.skipInputValidation}. */
1219
+ skipOutputValidation?: boolean;
1175
1220
  /** Descriptive metadata for the registry / CLI / MCP / docs (carry-only at
1176
1221
  * runtime). */
1177
1222
  meta?: LeafMeta;
@@ -1286,6 +1331,11 @@ interface PropertyPlugin<TName extends string = string, TValue = unknown> {
1286
1331
  * property satisfies it, dependents bind `undefined` rather than the build
1287
1332
  * failing on a missing dependency. */
1288
1333
  optional?: boolean;
1334
+ /** Present on a `declareDefault` wrapper: this entry is the DEFAULT provider
1335
+ * for its id (preempted by any explicit provider). Its value is the wrapped
1336
+ * plugin, so two defaults for one id dedup (same source) or conflict
1337
+ * (different source). */
1338
+ defaultSource?: AnyLeafPlugin;
1289
1339
  imports: readonly AnyPlugin[];
1290
1340
  /** Binding-name to plugin-id edges, normalized from `imports`;
1291
1341
  * what the `imports` bag is built from. */
@@ -1606,7 +1656,11 @@ type ExportSurface<TChild extends AnyLeafPlugin> = TChild extends MethodPlugin<a
1606
1656
  * bag and `ProvidesOf` is the completeness ledger's phantom ids — both
1607
1657
  * different concepts.
1608
1658
  */
1609
- type PluginSurface<P extends AnyPlugin> = P extends MethodPlugin<infer TName, infer TInput, infer TOutput, infer TPositional> ? {
1659
+ type PluginSurface<P extends AnyPlugin> = P extends MethodPlugin<infer TName, infer TInput, infer TOutput, infer TPositional> ? P extends {
1660
+ optional: true;
1661
+ } ? {
1662
+ [K in TName]: SurfaceCall<TInput, TOutput, TPositional> | undefined;
1663
+ } : {
1610
1664
  [K in TName]: SurfaceCall<TInput, TOutput, TPositional>;
1611
1665
  } : P extends PropertyPlugin<infer TName, infer TValue> ? {
1612
1666
  [K in TName]: TValue;
@@ -2352,6 +2406,7 @@ declare function defineMethod<const TName extends string, TInput, TResponse exte
2352
2406
  run: (bag: MethodRunBag<ImportsOf<TImports>, TInput, TState>) => TResponse | Promise<TResponse>;
2353
2407
  } & LeafMetaFields): MethodPlugin<TName, TInput, Promise<{
2354
2408
  data: TData;
2409
+ meta?: ResponseMeta;
2355
2410
  }>> & LeafSummary<TNamespace, TName, TImports>;
2356
2411
  declare function defineMethod<const TName extends string, TInput, TResponse extends StrictPage$1<TResponse>, TItem = ItemOf$1<TResponse>, const TImports extends ImportsInput = readonly [], const TNamespace extends string = "", TState = undefined>(config: {
2357
2412
  name: TName;
@@ -2889,6 +2944,15 @@ interface CoreOptions {
2889
2944
  * reserved for an `on*`-named observer when the unified event bus lands.
2890
2945
  */
2891
2946
  logDeprecation?: (warning: DeprecationWarning) => void;
2947
+ /**
2948
+ * Report what output validation stripped, on the response's
2949
+ * `meta.outputValidation.droppedPaths` (the name mirrors that path). Off by
2950
+ * default: the report is a debugging aid for reconciling a schema against the
2951
+ * wire, and a sidecar every caller has to ignore is worse than one a head
2952
+ * turns on while it audits its schemas. Off also skips the recursive
2953
+ * raw-vs-parsed diff, so the strip costs a parse and nothing more.
2954
+ */
2955
+ includeOutputValidationDroppedPaths?: boolean;
2892
2956
  }
2893
2957
  /**
2894
2958
  * A built-in that reports the live SDK surface as the canonical
@@ -3450,6 +3514,8 @@ declare function createPaginatedFunction<TUserOptions, TResponse, TItem = ItemTy
3450
3514
  adaptPage?: (response: TResponse) => SdkPage<NoInfer<TItem>>;
3451
3515
  /** Pre-run per-method annotator (see applyAnnotations). */
3452
3516
  annotator?: (input: unknown) => Annotations;
3517
+ /** Applied to each canonical page after the shape guard (output validation). */
3518
+ finalizePage?: (page: SdkPage<TItem>) => SdkPage<TItem>;
3453
3519
  /** Live read of the method's deprecation meta (see signalDeprecation). */
3454
3520
  getDeprecation?: () => FunctionDeprecation | undefined;
3455
3521
  }): (options?: TUserOptions & {
@@ -3807,8 +3873,16 @@ declare class ZapierConflictError extends ZapierError {
3807
3873
  readonly name = "ZapierConflictError";
3808
3874
  readonly code: "ZAPIER_CONFLICT_ERROR";
3809
3875
  resourceType?: string;
3876
+ /**
3877
+ * Structured, machine-readable context from the server's JSON:API error
3878
+ * `meta` member — e.g. the open-draft publish guard lists the blocking
3879
+ * drafts under `meta.open_drafts`. Lets callers resolve the conflict
3880
+ * programmatically instead of parsing the message.
3881
+ */
3882
+ meta?: Record<string, unknown>;
3810
3883
  constructor(message: string, options?: ErrorOptions & {
3811
3884
  resourceType?: string;
3885
+ meta?: Record<string, unknown>;
3812
3886
  });
3813
3887
  }
3814
3888
  /**
@@ -5716,6 +5790,7 @@ declare const appsPlugin: PropertyPlugin<"apps", ActionProxy & ZapierSdkApps> &
5716
5790
  is_important?: boolean | undefined;
5717
5791
  app_version?: string | undefined;
5718
5792
  };
5793
+ meta?: ResponseMeta;
5719
5794
  }>, readonly []> & LeafSummary<"", "getAction", readonly [MethodPlugin<"listActions", ({
5720
5795
  app: string;
5721
5796
  actionType?: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run" | undefined;
@@ -5945,6 +6020,7 @@ declare const listActionInputFieldsPlugin: MethodPlugin<"listActionInputFields",
5945
6020
  is_important?: boolean | undefined;
5946
6021
  app_version?: string | undefined;
5947
6022
  };
6023
+ meta?: ResponseMeta;
5948
6024
  }>, readonly []> & LeafSummary<"", "getAction", readonly [MethodPlugin<"listActions", ({
5949
6025
  app: string;
5950
6026
  actionType?: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run" | undefined;
@@ -6033,6 +6109,7 @@ declare const listActionInputFieldChoicesPlugin: MethodPlugin<"listActionInputFi
6033
6109
  is_important?: boolean | undefined;
6034
6110
  app_version?: string | undefined;
6035
6111
  };
6112
+ meta?: ResponseMeta;
6036
6113
  }>, readonly []> & LeafSummary<"", "getAction", readonly [MethodPlugin<"listActions", ({
6037
6114
  app: string;
6038
6115
  actionType?: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run" | undefined;
@@ -6081,6 +6158,7 @@ declare const getActionInputFieldsSchemaPlugin: MethodPlugin<"getActionInputFiel
6081
6158
  inputs?: Record<string, unknown> | undefined;
6082
6159
  }, Promise<{
6083
6160
  data: Record<string, unknown>;
6161
+ meta?: ResponseMeta;
6084
6162
  }>, readonly []> & LeafSummary<"", "getActionInputFieldsSchema", readonly [PropertyPlugin<"connections", ConnectionsProvider> & PluginSummary<"zapier/connections", never>, PropertyPlugin<"manifest", ManifestProvider> & PluginSummary<"zapier/manifest", never>, PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>, MethodPlugin<"getAction", {
6085
6163
  app: string;
6086
6164
  actionType: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run";
@@ -6102,6 +6180,7 @@ declare const getActionInputFieldsSchemaPlugin: MethodPlugin<"getActionInputFiel
6102
6180
  is_important?: boolean | undefined;
6103
6181
  app_version?: string | undefined;
6104
6182
  };
6183
+ meta?: ResponseMeta;
6105
6184
  }>, readonly []> & LeafSummary<"", "getAction", readonly [MethodPlugin<"listActions", ({
6106
6185
  app: string;
6107
6186
  actionType?: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run" | undefined;
@@ -6221,6 +6300,7 @@ declare const createClientCredentialsPlugin: MethodPlugin<"createClientCredentia
6221
6300
  name: string;
6222
6301
  client_secret: string;
6223
6302
  };
6303
+ meta?: ResponseMeta;
6224
6304
  }>, readonly []> & LeafSummary<"", "createClientCredentials", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
6225
6305
 
6226
6306
  declare const deleteClientCredentialsPlugin: MethodPlugin<"deleteClientCredentials", {
@@ -6287,6 +6367,7 @@ declare const getAppPlugin: MethodPlugin<"getApp", {
6287
6367
  image?: string | undefined;
6288
6368
  version?: string | undefined;
6289
6369
  };
6370
+ meta?: ResponseMeta;
6290
6371
  }>, readonly []> & LeafSummary<"", "getApp", readonly [MethodPlugin<"listApps", {
6291
6372
  search?: string | undefined;
6292
6373
  apps?: string[] | undefined;
@@ -6374,6 +6455,7 @@ declare const getActionPlugin: MethodPlugin<"getAction", {
6374
6455
  is_important?: boolean | undefined;
6375
6456
  app_version?: string | undefined;
6376
6457
  };
6458
+ meta?: ResponseMeta;
6377
6459
  }>, readonly []> & LeafSummary<"", "getAction", readonly [MethodPlugin<"listActions", ({
6378
6460
  app: string;
6379
6461
  actionType?: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run" | undefined;
@@ -6441,6 +6523,7 @@ declare const getConnectionPlugin: MethodPlugin<"getConnection", {
6441
6523
  app_key?: string | undefined;
6442
6524
  app_version?: string | undefined;
6443
6525
  };
6526
+ meta?: ResponseMeta;
6444
6527
  }>, readonly []> & LeafSummary<"", "getConnection", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
6445
6528
 
6446
6529
  declare const findFirstConnectionPlugin: MethodPlugin<"findFirstConnection", {
@@ -6485,6 +6568,7 @@ declare const findFirstConnectionPlugin: MethodPlugin<"findFirstConnection", {
6485
6568
  app_key?: string | undefined;
6486
6569
  app_version?: string | undefined;
6487
6570
  };
6571
+ meta?: ResponseMeta;
6488
6572
  }>, readonly []> & LeafSummary<"", "findFirstConnection", readonly [MethodPlugin<"listConnections", {
6489
6573
  title?: string | undefined;
6490
6574
  search?: string | undefined;
@@ -6580,6 +6664,7 @@ declare const findUniqueConnectionPlugin: MethodPlugin<"findUniqueConnection", {
6580
6664
  app_key?: string | undefined;
6581
6665
  app_version?: string | undefined;
6582
6666
  };
6667
+ meta?: ResponseMeta;
6583
6668
  }>, readonly []> & LeafSummary<"", "findUniqueConnection", readonly [MethodPlugin<"listConnections", {
6584
6669
  title?: string | undefined;
6585
6670
  search?: string | undefined;
@@ -6794,6 +6879,7 @@ declare const runActionPlugin: MethodPlugin<"runAction", ({
6794
6879
  is_important?: boolean | undefined;
6795
6880
  app_version?: string | undefined;
6796
6881
  };
6882
+ meta?: ResponseMeta;
6797
6883
  }>, readonly []> & LeafSummary<"", "getAction", readonly [MethodPlugin<"listActions", ({
6798
6884
  app: string;
6799
6885
  actionType?: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run" | undefined;
@@ -6862,7 +6948,9 @@ declare const getProfilePlugin: MethodPlugin<"getProfile", Record<string, never>
6862
6948
  email_confirmed: boolean;
6863
6949
  timezone: string;
6864
6950
  };
6951
+ meta?: ResponseMeta;
6865
6952
  }>, readonly []> & LeafSummary<"", "getProfile", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
6953
+ type GetProfilePluginProvides = PluginSurface<typeof getProfilePlugin>;
6866
6954
 
6867
6955
  declare const ListActionInputFieldsSchema: z.ZodObject<{
6868
6956
  app: z.ZodString & {
@@ -7631,6 +7719,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
7631
7719
  email_confirmed: boolean;
7632
7720
  timezone: string;
7633
7721
  };
7722
+ meta?: ResponseMeta;
7634
7723
  }>;
7635
7724
  listApps: (input?: ({
7636
7725
  search?: string | undefined;
@@ -7755,6 +7844,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
7755
7844
  image?: string | undefined;
7756
7845
  version?: string | undefined;
7757
7846
  };
7847
+ meta?: ResponseMeta;
7758
7848
  }>;
7759
7849
  listActions: (input: ({
7760
7850
  app: string;
@@ -7806,6 +7896,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
7806
7896
  is_important?: boolean | undefined;
7807
7897
  app_version?: string | undefined;
7808
7898
  };
7899
+ meta?: ResponseMeta;
7809
7900
  }>;
7810
7901
  listConnections: (input?: ({
7811
7902
  title?: string | undefined;
@@ -7896,6 +7987,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
7896
7987
  app_key?: string | undefined;
7897
7988
  app_version?: string | undefined;
7898
7989
  };
7990
+ meta?: ResponseMeta;
7899
7991
  }>;
7900
7992
  findFirstConnection: (input?: {
7901
7993
  title?: string | undefined;
@@ -7939,6 +8031,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
7939
8031
  app_key?: string | undefined;
7940
8032
  app_version?: string | undefined;
7941
8033
  };
8034
+ meta?: ResponseMeta;
7942
8035
  }>;
7943
8036
  findUniqueConnection: (input?: {
7944
8037
  title?: string | undefined;
@@ -7982,6 +8075,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
7982
8075
  app_key?: string | undefined;
7983
8076
  app_version?: string | undefined;
7984
8077
  };
8078
+ meta?: ResponseMeta;
7985
8079
  }>;
7986
8080
  listAuthentications: (input?: ({
7987
8081
  title?: string | undefined;
@@ -8072,6 +8166,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
8072
8166
  app_key?: string | undefined;
8073
8167
  app_version?: string | undefined;
8074
8168
  };
8169
+ meta?: ResponseMeta;
8075
8170
  }>;
8076
8171
  findFirstAuthentication: (input?: {
8077
8172
  title?: string | undefined;
@@ -8115,6 +8210,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
8115
8210
  app_key?: string | undefined;
8116
8211
  app_version?: string | undefined;
8117
8212
  };
8213
+ meta?: ResponseMeta;
8118
8214
  }>;
8119
8215
  findUniqueAuthentication: (input?: {
8120
8216
  title?: string | undefined;
@@ -8158,6 +8254,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
8158
8254
  app_key?: string | undefined;
8159
8255
  app_version?: string | undefined;
8160
8256
  };
8257
+ meta?: ResponseMeta;
8161
8258
  }>;
8162
8259
  listClientCredentials: (input?: ({
8163
8260
  pageSize?: number | undefined;
@@ -8185,6 +8282,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
8185
8282
  name: string;
8186
8283
  client_secret: string;
8187
8284
  };
8285
+ meta?: ResponseMeta;
8188
8286
  }>;
8189
8287
  deleteClientCredentials: (input: {
8190
8288
  clientId: string;
@@ -8200,6 +8298,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
8200
8298
  startedAt: number;
8201
8299
  app: string;
8202
8300
  };
8301
+ meta?: ResponseMeta;
8203
8302
  }>;
8204
8303
  waitForNewConnection: (input: {
8205
8304
  app: string;
@@ -8214,6 +8313,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
8214
8313
  app: string;
8215
8314
  title?: string | null | undefined;
8216
8315
  };
8316
+ meta?: ResponseMeta;
8217
8317
  }>;
8218
8318
  createConnection: (input: {
8219
8319
  app: string;
@@ -8228,6 +8328,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
8228
8328
  app: string;
8229
8329
  title?: string | null | undefined;
8230
8330
  };
8331
+ meta?: ResponseMeta;
8231
8332
  }>;
8232
8333
  listActionInputFields: (input: ({
8233
8334
  app: string;
@@ -8295,6 +8396,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
8295
8396
  inputs?: Record<string, unknown> | undefined;
8296
8397
  }) => Promise<{
8297
8398
  data: Record<string, unknown>;
8399
+ meta?: ResponseMeta;
8298
8400
  }>;
8299
8401
  listActionInputFieldChoices: (input: ({
8300
8402
  app: string;
@@ -8399,6 +8501,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
8399
8501
  inputs?: Record<string, unknown> | undefined;
8400
8502
  }) => Promise<{
8401
8503
  data: Record<string, unknown>;
8504
+ meta?: ResponseMeta;
8402
8505
  }>;
8403
8506
  listInputFieldChoices: (input: ({
8404
8507
  app: string;
@@ -8532,6 +8635,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
8532
8635
  inputs: Record<string, unknown>;
8533
8636
  };
8534
8637
  };
8638
+ meta?: ResponseMeta;
8535
8639
  }>;
8536
8640
  ensureTriggerInbox: (input: {
8537
8641
  key: string;
@@ -8563,6 +8667,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
8563
8667
  inputs: Record<string, unknown>;
8564
8668
  };
8565
8669
  };
8670
+ meta?: ResponseMeta;
8566
8671
  }>;
8567
8672
  getTriggerInbox: (input: {
8568
8673
  inbox: string;
@@ -8582,6 +8687,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
8582
8687
  inputs: Record<string, unknown>;
8583
8688
  };
8584
8689
  };
8690
+ meta?: ResponseMeta;
8585
8691
  }>;
8586
8692
  updateTriggerInbox: (input: {
8587
8693
  inbox: string;
@@ -8602,6 +8708,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
8602
8708
  inputs: Record<string, unknown>;
8603
8709
  };
8604
8710
  };
8711
+ meta?: ResponseMeta;
8605
8712
  }>;
8606
8713
  deleteTriggerInbox: (input: {
8607
8714
  inbox: string;
@@ -8624,6 +8731,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
8624
8731
  inputs: Record<string, unknown>;
8625
8732
  };
8626
8733
  };
8734
+ meta?: ResponseMeta;
8627
8735
  }>;
8628
8736
  resumeTriggerInbox: (input: {
8629
8737
  inbox: string;
@@ -8643,6 +8751,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
8643
8751
  inputs: Record<string, unknown>;
8644
8752
  };
8645
8753
  };
8754
+ meta?: ResponseMeta;
8646
8755
  }>;
8647
8756
  listTriggerInboxMessages: (input: {
8648
8757
  inbox: string;
@@ -8689,6 +8798,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
8689
8798
  paused_reason: string | null;
8690
8799
  };
8691
8800
  };
8801
+ meta?: ResponseMeta;
8692
8802
  }>;
8693
8803
  ackTriggerInboxMessages: (input: {
8694
8804
  inbox: string;
@@ -8708,6 +8818,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
8708
8818
  };
8709
8819
  }[];
8710
8820
  };
8821
+ meta?: ResponseMeta;
8711
8822
  }>;
8712
8823
  releaseTriggerInboxMessages: (input: {
8713
8824
  inbox: string;
@@ -8727,6 +8838,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
8727
8838
  };
8728
8839
  }[];
8729
8840
  };
8841
+ meta?: ResponseMeta;
8730
8842
  }>;
8731
8843
  drainTriggerInbox: (input: TriggerInboxCommandSharedFields & {
8732
8844
  maxMessages?: number;
@@ -8861,6 +8973,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
8861
8973
  description?: string | undefined;
8862
8974
  parent_table_id?: string | undefined;
8863
8975
  };
8976
+ meta?: ResponseMeta;
8864
8977
  }>;
8865
8978
  deleteTable: (input: {
8866
8979
  table: string;
@@ -8884,6 +8997,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
8884
8997
  description?: string | undefined;
8885
8998
  parent_table_id?: string | undefined;
8886
8999
  };
9000
+ meta?: ResponseMeta;
8887
9001
  }>;
8888
9002
  listTableFields: (input: {
8889
9003
  table: string;
@@ -8906,6 +9020,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
8906
9020
  config?: Record<string, unknown> | undefined;
8907
9021
  deleted_at?: string | null | undefined;
8908
9022
  }[];
9023
+ meta?: ResponseMeta;
8909
9024
  }>;
8910
9025
  createTableFields: (input: {
8911
9026
  table: string;
@@ -8934,6 +9049,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
8934
9049
  config?: Record<string, unknown> | undefined;
8935
9050
  deleted_at?: string | null | undefined;
8936
9051
  }[];
9052
+ meta?: ResponseMeta;
8937
9053
  }>;
8938
9054
  deleteTableFields: (input: {
8939
9055
  table: string;
@@ -9004,6 +9120,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
9004
9120
  edited_at: string;
9005
9121
  deleted_at?: string | null | undefined;
9006
9122
  };
9123
+ meta?: ResponseMeta;
9007
9124
  }>;
9008
9125
  createTableRecords: (input: {
9009
9126
  table: string;
@@ -9025,6 +9142,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
9025
9142
  edited_at: string;
9026
9143
  deleted_at?: string | null | undefined;
9027
9144
  }[];
9145
+ meta?: ResponseMeta;
9028
9146
  }>;
9029
9147
  deleteTableRecords: (input: {
9030
9148
  table: string;
@@ -9057,6 +9175,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
9057
9175
  edited_at: string;
9058
9176
  deleted_at?: string | null | undefined;
9059
9177
  }[];
9178
+ meta?: ResponseMeta;
9060
9179
  }>;
9061
9180
  } & {
9062
9181
  context: SdkContext;
@@ -9083,6 +9202,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
9083
9202
  email_confirmed: boolean;
9084
9203
  timezone: string;
9085
9204
  };
9205
+ meta?: ResponseMeta;
9086
9206
  }>, readonly []> & LeafSummary<"", "getProfile", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
9087
9207
  } & {
9088
9208
  listApps: MethodPlugin<"listApps", {
@@ -9209,6 +9329,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
9209
9329
  image?: string | undefined;
9210
9330
  version?: string | undefined;
9211
9331
  };
9332
+ meta?: ResponseMeta;
9212
9333
  }>, readonly []> & LeafSummary<"", "getApp", readonly [MethodPlugin<"listApps", {
9213
9334
  search?: string | undefined;
9214
9335
  apps?: string[] | undefined;
@@ -9326,6 +9447,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
9326
9447
  is_important?: boolean | undefined;
9327
9448
  app_version?: string | undefined;
9328
9449
  };
9450
+ meta?: ResponseMeta;
9329
9451
  }>, readonly []> & LeafSummary<"", "getAction", readonly [MethodPlugin<"listActions", ({
9330
9452
  app: string;
9331
9453
  actionType?: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run" | undefined;
@@ -9446,6 +9568,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
9446
9568
  app_key?: string | undefined;
9447
9569
  app_version?: string | undefined;
9448
9570
  };
9571
+ meta?: ResponseMeta;
9449
9572
  }>, readonly []> & LeafSummary<"", "getConnection", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
9450
9573
  } & {
9451
9574
  findFirstConnection: MethodPlugin<"findFirstConnection", {
@@ -9490,6 +9613,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
9490
9613
  app_key?: string | undefined;
9491
9614
  app_version?: string | undefined;
9492
9615
  };
9616
+ meta?: ResponseMeta;
9493
9617
  }>, readonly []> & LeafSummary<"", "findFirstConnection", readonly [MethodPlugin<"listConnections", {
9494
9618
  title?: string | undefined;
9495
9619
  search?: string | undefined;
@@ -9585,6 +9709,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
9585
9709
  app_key?: string | undefined;
9586
9710
  app_version?: string | undefined;
9587
9711
  };
9712
+ meta?: ResponseMeta;
9588
9713
  }>, readonly []> & LeafSummary<"", "findUniqueConnection", readonly [MethodPlugin<"listConnections", {
9589
9714
  title?: string | undefined;
9590
9715
  search?: string | undefined;
@@ -9779,6 +9904,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
9779
9904
  app_key?: string | undefined;
9780
9905
  app_version?: string | undefined;
9781
9906
  };
9907
+ meta?: ResponseMeta;
9782
9908
  }>, readonly []> & LeafSummary<"", "getAuthentication", readonly [MethodPlugin<"getConnection", {
9783
9909
  connection: string | number;
9784
9910
  } | {
@@ -9816,6 +9942,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
9816
9942
  app_key?: string | undefined;
9817
9943
  app_version?: string | undefined;
9818
9944
  };
9945
+ meta?: ResponseMeta;
9819
9946
  }>, readonly []> & LeafSummary<"", "getConnection", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>]>;
9820
9947
  } & {
9821
9948
  findFirstAuthentication: MethodPlugin<"findFirstAuthentication", {
@@ -9860,6 +9987,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
9860
9987
  app_key?: string | undefined;
9861
9988
  app_version?: string | undefined;
9862
9989
  };
9990
+ meta?: ResponseMeta;
9863
9991
  }>, readonly []> & LeafSummary<"", "findFirstAuthentication", readonly [MethodPlugin<"findFirstConnection", {
9864
9992
  title?: string | undefined;
9865
9993
  search?: string | undefined;
@@ -9902,6 +10030,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
9902
10030
  app_key?: string | undefined;
9903
10031
  app_version?: string | undefined;
9904
10032
  };
10033
+ meta?: ResponseMeta;
9905
10034
  }>, readonly []> & LeafSummary<"", "findFirstConnection", readonly [MethodPlugin<"listConnections", {
9906
10035
  title?: string | undefined;
9907
10036
  search?: string | undefined;
@@ -9997,6 +10126,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
9997
10126
  app_key?: string | undefined;
9998
10127
  app_version?: string | undefined;
9999
10128
  };
10129
+ meta?: ResponseMeta;
10000
10130
  }>, readonly []> & LeafSummary<"", "findUniqueAuthentication", readonly [MethodPlugin<"findUniqueConnection", {
10001
10131
  title?: string | undefined;
10002
10132
  search?: string | undefined;
@@ -10039,6 +10169,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
10039
10169
  app_key?: string | undefined;
10040
10170
  app_version?: string | undefined;
10041
10171
  };
10172
+ meta?: ResponseMeta;
10042
10173
  }>, readonly []> & LeafSummary<"", "findUniqueConnection", readonly [MethodPlugin<"listConnections", {
10043
10174
  title?: string | undefined;
10044
10175
  search?: string | undefined;
@@ -10119,6 +10250,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
10119
10250
  name: string;
10120
10251
  client_secret: string;
10121
10252
  };
10253
+ meta?: ResponseMeta;
10122
10254
  }>, readonly []> & LeafSummary<"", "createClientCredentials", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
10123
10255
  } & {
10124
10256
  deleteClientCredentials: MethodPlugin<"deleteClientCredentials", {
@@ -10136,6 +10268,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
10136
10268
  startedAt: number;
10137
10269
  app: string;
10138
10270
  };
10271
+ meta?: ResponseMeta;
10139
10272
  }>, readonly []> & LeafSummary<"", "getConnectionStartUrl", readonly [PropertyPlugin<"manifest", ManifestProvider> & PluginSummary<"zapier/manifest", never>, PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
10140
10273
  } & {
10141
10274
  waitForNewConnection: MethodPlugin<"waitForNewConnection", {
@@ -10151,6 +10284,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
10151
10284
  app: string;
10152
10285
  title?: string | null | undefined;
10153
10286
  };
10287
+ meta?: ResponseMeta;
10154
10288
  }>, readonly []> & LeafSummary<"", "waitForNewConnection", readonly [PropertyPlugin<"manifest", ManifestProvider> & PluginSummary<"zapier/manifest", never>, PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
10155
10289
  } & {
10156
10290
  createConnection: MethodPlugin<"createConnection", {
@@ -10166,6 +10300,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
10166
10300
  app: string;
10167
10301
  title?: string | null | undefined;
10168
10302
  };
10303
+ meta?: ResponseMeta;
10169
10304
  }>, readonly []> & LeafSummary<"", "createConnection", readonly [MethodPlugin<"getConnectionStartUrl", {
10170
10305
  app: string;
10171
10306
  }, Promise<{
@@ -10175,6 +10310,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
10175
10310
  startedAt: number;
10176
10311
  app: string;
10177
10312
  };
10313
+ meta?: ResponseMeta;
10178
10314
  }>, readonly []> & LeafSummary<"", "getConnectionStartUrl", readonly [PropertyPlugin<"manifest", ManifestProvider> & PluginSummary<"zapier/manifest", never>, PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>, MethodPlugin<"waitForNewConnection", {
10179
10315
  app: string;
10180
10316
  startedAt: number;
@@ -10188,6 +10324,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
10188
10324
  app: string;
10189
10325
  title?: string | null | undefined;
10190
10326
  };
10327
+ meta?: ResponseMeta;
10191
10328
  }>, readonly []> & LeafSummary<"", "waitForNewConnection", readonly [PropertyPlugin<"manifest", ManifestProvider> & PluginSummary<"zapier/manifest", never>, PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>]>;
10192
10329
  } & {
10193
10330
  listActionInputFields: MethodPlugin<"listActionInputFields", ({
@@ -10258,6 +10395,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
10258
10395
  is_important?: boolean | undefined;
10259
10396
  app_version?: string | undefined;
10260
10397
  };
10398
+ meta?: ResponseMeta;
10261
10399
  }>, readonly []> & LeafSummary<"", "getAction", readonly [MethodPlugin<"listActions", ({
10262
10400
  app: string;
10263
10401
  actionType?: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run" | undefined;
@@ -10306,6 +10444,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
10306
10444
  inputs?: Record<string, unknown> | undefined;
10307
10445
  }, Promise<{
10308
10446
  data: Record<string, unknown>;
10447
+ meta?: ResponseMeta;
10309
10448
  }>, readonly []> & LeafSummary<"", "getActionInputFieldsSchema", readonly [PropertyPlugin<"connections", ConnectionsProvider> & PluginSummary<"zapier/connections", never>, PropertyPlugin<"manifest", ManifestProvider> & PluginSummary<"zapier/manifest", never>, PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>, MethodPlugin<"getAction", {
10310
10449
  app: string;
10311
10450
  actionType: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run";
@@ -10327,6 +10466,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
10327
10466
  is_important?: boolean | undefined;
10328
10467
  app_version?: string | undefined;
10329
10468
  };
10469
+ meta?: ResponseMeta;
10330
10470
  }>, readonly []> & LeafSummary<"", "getAction", readonly [MethodPlugin<"listActions", ({
10331
10471
  app: string;
10332
10472
  actionType?: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run" | undefined;
@@ -10414,6 +10554,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
10414
10554
  is_important?: boolean | undefined;
10415
10555
  app_version?: string | undefined;
10416
10556
  };
10557
+ meta?: ResponseMeta;
10417
10558
  }>, readonly []> & LeafSummary<"", "getAction", readonly [MethodPlugin<"listActions", ({
10418
10559
  app: string;
10419
10560
  actionType?: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run" | undefined;
@@ -10559,6 +10700,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
10559
10700
  is_important?: boolean | undefined;
10560
10701
  app_version?: string | undefined;
10561
10702
  };
10703
+ meta?: ResponseMeta;
10562
10704
  }>, readonly []> & LeafSummary<"", "getAction", readonly [MethodPlugin<"listActions", ({
10563
10705
  app: string;
10564
10706
  actionType?: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run" | undefined;
@@ -10607,6 +10749,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
10607
10749
  inputs?: Record<string, unknown> | undefined;
10608
10750
  }, Promise<{
10609
10751
  data: Record<string, unknown>;
10752
+ meta?: ResponseMeta;
10610
10753
  }>, readonly []> & LeafSummary<"", "getInputFieldsSchema", readonly [MethodPlugin<"getActionInputFieldsSchema", {
10611
10754
  app: string;
10612
10755
  actionType: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run";
@@ -10625,6 +10768,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
10625
10768
  inputs?: Record<string, unknown> | undefined;
10626
10769
  }, Promise<{
10627
10770
  data: Record<string, unknown>;
10771
+ meta?: ResponseMeta;
10628
10772
  }>, readonly []> & LeafSummary<"", "getActionInputFieldsSchema", readonly [PropertyPlugin<"connections", ConnectionsProvider> & PluginSummary<"zapier/connections", never>, PropertyPlugin<"manifest", ManifestProvider> & PluginSummary<"zapier/manifest", never>, PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>, MethodPlugin<"getAction", {
10629
10773
  app: string;
10630
10774
  actionType: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run";
@@ -10646,6 +10790,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
10646
10790
  is_important?: boolean | undefined;
10647
10791
  app_version?: string | undefined;
10648
10792
  };
10793
+ meta?: ResponseMeta;
10649
10794
  }>, readonly []> & LeafSummary<"", "getAction", readonly [MethodPlugin<"listActions", ({
10650
10795
  app: string;
10651
10796
  actionType?: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run" | undefined;
@@ -10769,6 +10914,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
10769
10914
  is_important?: boolean | undefined;
10770
10915
  app_version?: string | undefined;
10771
10916
  };
10917
+ meta?: ResponseMeta;
10772
10918
  }>, readonly []> & LeafSummary<"", "getAction", readonly [MethodPlugin<"listActions", ({
10773
10919
  app: string;
10774
10920
  actionType?: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run" | undefined;
@@ -10851,6 +10997,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
10851
10997
  is_important?: boolean | undefined;
10852
10998
  app_version?: string | undefined;
10853
10999
  };
11000
+ meta?: ResponseMeta;
10854
11001
  }>, readonly []> & LeafSummary<"", "getAction", readonly [MethodPlugin<"listActions", ({
10855
11002
  app: string;
10856
11003
  actionType?: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run" | undefined;
@@ -10955,6 +11102,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
10955
11102
  is_important?: boolean | undefined;
10956
11103
  app_version?: string | undefined;
10957
11104
  };
11105
+ meta?: ResponseMeta;
10958
11106
  }>, readonly []> & LeafSummary<"", "getAction", readonly [MethodPlugin<"listActions", ({
10959
11107
  app: string;
10960
11108
  actionType?: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run" | undefined;
@@ -11037,6 +11185,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
11037
11185
  inputs: Record<string, unknown>;
11038
11186
  };
11039
11187
  };
11188
+ meta?: ResponseMeta;
11040
11189
  }>, readonly []> & LeafSummary<"", "createTriggerInbox", readonly [PropertyPlugin<"connections", ConnectionsProvider> & PluginSummary<"zapier/connections", never>, PropertyPlugin<"manifest", ManifestProvider> & PluginSummary<"zapier/manifest", never>, PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
11041
11190
  } & {
11042
11191
  ensureTriggerInbox: MethodPlugin<"ensureTriggerInbox", {
@@ -11069,6 +11218,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
11069
11218
  inputs: Record<string, unknown>;
11070
11219
  };
11071
11220
  };
11221
+ meta?: ResponseMeta;
11072
11222
  }>, readonly []> & LeafSummary<"", "ensureTriggerInbox", readonly [PropertyPlugin<"connections", ConnectionsProvider> & PluginSummary<"zapier/connections", never>, PropertyPlugin<"manifest", ManifestProvider> & PluginSummary<"zapier/manifest", never>, PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
11073
11223
  } & {
11074
11224
  getTriggerInbox: MethodPlugin<"getTriggerInbox", {
@@ -11089,6 +11239,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
11089
11239
  inputs: Record<string, unknown>;
11090
11240
  };
11091
11241
  };
11242
+ meta?: ResponseMeta;
11092
11243
  }>, readonly []> & LeafSummary<"", "getTriggerInbox", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
11093
11244
  } & {
11094
11245
  updateTriggerInbox: MethodPlugin<"updateTriggerInbox", {
@@ -11110,6 +11261,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
11110
11261
  inputs: Record<string, unknown>;
11111
11262
  };
11112
11263
  };
11264
+ meta?: ResponseMeta;
11113
11265
  }>, readonly []> & LeafSummary<"", "updateTriggerInbox", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
11114
11266
  } & {
11115
11267
  deleteTriggerInbox: MethodPlugin<"deleteTriggerInbox", {
@@ -11134,6 +11286,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
11134
11286
  inputs: Record<string, unknown>;
11135
11287
  };
11136
11288
  };
11289
+ meta?: ResponseMeta;
11137
11290
  }>, readonly []> & LeafSummary<"", "pauseTriggerInbox", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
11138
11291
  } & {
11139
11292
  resumeTriggerInbox: MethodPlugin<"resumeTriggerInbox", {
@@ -11154,6 +11307,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
11154
11307
  inputs: Record<string, unknown>;
11155
11308
  };
11156
11309
  };
11310
+ meta?: ResponseMeta;
11157
11311
  }>, readonly []> & LeafSummary<"", "resumeTriggerInbox", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
11158
11312
  } & {
11159
11313
  listTriggerInboxMessages: MethodPlugin<"listTriggerInboxMessages", {
@@ -11202,6 +11356,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
11202
11356
  paused_reason: string | null;
11203
11357
  };
11204
11358
  };
11359
+ meta?: ResponseMeta;
11205
11360
  }>, readonly []> & LeafSummary<"", "leaseTriggerInboxMessages", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
11206
11361
  } & {
11207
11362
  ackTriggerInboxMessages: MethodPlugin<"ackTriggerInboxMessages", {
@@ -11222,6 +11377,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
11222
11377
  };
11223
11378
  }[];
11224
11379
  };
11380
+ meta?: ResponseMeta;
11225
11381
  }>, readonly []> & LeafSummary<"", "ackTriggerInboxMessages", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
11226
11382
  } & {
11227
11383
  releaseTriggerInboxMessages: MethodPlugin<"releaseTriggerInboxMessages", {
@@ -11242,6 +11398,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
11242
11398
  };
11243
11399
  }[];
11244
11400
  };
11401
+ meta?: ResponseMeta;
11245
11402
  }>, readonly []> & LeafSummary<"", "releaseTriggerInboxMessages", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
11246
11403
  } & {
11247
11404
  drainTriggerInbox: MethodPlugin<"drainTriggerInbox", DrainTriggerInboxOptions, Promise<void>, readonly []> & LeafSummary<"", "drainTriggerInbox", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>, MethodPlugin<"leaseTriggerInboxMessages", {
@@ -11269,6 +11426,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
11269
11426
  paused_reason: string | null;
11270
11427
  };
11271
11428
  };
11429
+ meta?: ResponseMeta;
11272
11430
  }>, readonly []> & PluginSummary<"leaseTriggerInboxMessages", never>, MethodPlugin<"ackTriggerInboxMessages", {
11273
11431
  inbox: string;
11274
11432
  lease: string;
@@ -11287,6 +11445,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
11287
11445
  };
11288
11446
  }[];
11289
11447
  };
11448
+ meta?: ResponseMeta;
11290
11449
  }>, readonly []> & PluginSummary<"ackTriggerInboxMessages", never>, MethodPlugin<"releaseTriggerInboxMessages", {
11291
11450
  inbox: string;
11292
11451
  lease: string;
@@ -11305,6 +11464,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
11305
11464
  };
11306
11465
  }[];
11307
11466
  };
11467
+ meta?: ResponseMeta;
11308
11468
  }>, readonly []> & PluginSummary<"releaseTriggerInboxMessages", never>]>;
11309
11469
  } & {
11310
11470
  watchTriggerInbox: MethodPlugin<"watchTriggerInbox", WatchTriggerInboxOptions, Promise<void>, readonly []> & LeafSummary<"", "watchTriggerInbox", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>, PropertyPlugin<"sdkOptions", {
@@ -11401,6 +11561,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
11401
11561
  paused_reason: string | null;
11402
11562
  };
11403
11563
  };
11564
+ meta?: ResponseMeta;
11404
11565
  }>, readonly []> & PluginSummary<"leaseTriggerInboxMessages", never>, MethodPlugin<"ackTriggerInboxMessages", {
11405
11566
  inbox: string;
11406
11567
  lease: string;
@@ -11419,6 +11580,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
11419
11580
  };
11420
11581
  }[];
11421
11582
  };
11583
+ meta?: ResponseMeta;
11422
11584
  }>, readonly []> & PluginSummary<"ackTriggerInboxMessages", never>, MethodPlugin<"releaseTriggerInboxMessages", {
11423
11585
  inbox: string;
11424
11586
  lease: string;
@@ -11437,6 +11599,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
11437
11599
  };
11438
11600
  }[];
11439
11601
  };
11602
+ meta?: ResponseMeta;
11440
11603
  }>, readonly []> & PluginSummary<"releaseTriggerInboxMessages", never>]>;
11441
11604
  } & {
11442
11605
  listTriggers: MethodPlugin<"listTriggers", {
@@ -11635,6 +11798,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
11635
11798
  description?: string | undefined;
11636
11799
  parent_table_id?: string | undefined;
11637
11800
  };
11801
+ meta?: ResponseMeta;
11638
11802
  }>, readonly []> & LeafSummary<"", "getTable", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
11639
11803
  } & {
11640
11804
  deleteTable: MethodPlugin<"deleteTable", {
@@ -11660,6 +11824,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
11660
11824
  description?: string | undefined;
11661
11825
  parent_table_id?: string | undefined;
11662
11826
  };
11827
+ meta?: ResponseMeta;
11663
11828
  }>, readonly []> & LeafSummary<"", "createTable", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
11664
11829
  } & {
11665
11830
  listTableFields: MethodPlugin<"listTableFields", {
@@ -11683,6 +11848,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
11683
11848
  config?: Record<string, unknown> | undefined;
11684
11849
  deleted_at?: string | null | undefined;
11685
11850
  }[];
11851
+ meta?: ResponseMeta;
11686
11852
  }>, readonly []> & LeafSummary<"", "listTableFields", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
11687
11853
  } & {
11688
11854
  createTableFields: MethodPlugin<"createTableFields", {
@@ -11712,6 +11878,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
11712
11878
  config?: Record<string, unknown> | undefined;
11713
11879
  deleted_at?: string | null | undefined;
11714
11880
  }[];
11881
+ meta?: ResponseMeta;
11715
11882
  }>, readonly []> & LeafSummary<"", "createTableFields", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
11716
11883
  } & {
11717
11884
  deleteTableFields: MethodPlugin<"deleteTableFields", {
@@ -11785,6 +11952,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
11785
11952
  edited_at: string;
11786
11953
  deleted_at?: string | null | undefined;
11787
11954
  };
11955
+ meta?: ResponseMeta;
11788
11956
  }>, readonly []> & LeafSummary<"", "getTableRecord", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
11789
11957
  } & {
11790
11958
  createTableRecords: MethodPlugin<"createTableRecords", {
@@ -11807,6 +11975,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
11807
11975
  edited_at: string;
11808
11976
  deleted_at?: string | null | undefined;
11809
11977
  }[];
11978
+ meta?: ResponseMeta;
11810
11979
  }>, readonly []> & LeafSummary<"", "createTableRecords", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
11811
11980
  } & {
11812
11981
  deleteTableRecords: MethodPlugin<"deleteTableRecords", {
@@ -11841,6 +12010,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
11841
12010
  edited_at: string;
11842
12011
  deleted_at?: string | null | undefined;
11843
12012
  }[];
12013
+ meta?: ResponseMeta;
11844
12014
  }>, readonly []> & LeafSummary<"", "updateTableRecords", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
11845
12015
  }> & PluginSummary<never, "fetch" | "zapier/eventEmission" | "apps" | "zapier/manifest" | "zapier/api" | "zapier/resolveCredentials" | "zapier/connections" | "getApp" | "listApps" | "listActions" | "zapier/capabilities" | "listConnections" | "listActionInputFields" | "listActionInputFieldChoices" | "listClientCredentials" | "listTablesInternal" | "listTriggerInboxes" | "listTriggerInboxMessages" | "listTableRecords" | "listTableFields" | "getAction" | "runAction" | "getActionInputFieldsSchema" | "createClientCredentials" | "deleteClientCredentials" | "getConnection" | "findFirstConnection" | "findUniqueConnection" | "listAuthentications" | "getAuthentication" | "findFirstAuthentication" | "findUniqueAuthentication" | "request" | "getProfile" | "getConnectionStartUrl" | "waitForNewConnection" | "createConnection" | "listInputFields" | "listInputFieldChoices" | "getInputFieldsSchema" | "createTriggerInbox" | "ensureTriggerInbox" | "getTriggerInbox" | "updateTriggerInbox" | "deleteTriggerInbox" | "pauseTriggerInbox" | "resumeTriggerInbox" | "leaseTriggerInboxMessages" | "ackTriggerInboxMessages" | "releaseTriggerInboxMessages" | "drainTriggerInbox" | "watchTriggerInbox" | "listTriggers" | "listTriggerInputFields" | "listTriggerInputFieldChoices" | "getTriggerInputFieldsSchema" | "listTables" | "getTable" | "deleteTable" | "createTable" | "createTableFields" | "deleteTableFields" | "getTableRecord" | "createTableRecords" | "deleteTableRecords" | "updateTableRecords" | "kitcore/getRegistry" | "zapier/sdk">;
11846
12016
  declare function createZapierSdk(options?: ZapierSdkOptions): {
@@ -11857,6 +12027,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
11857
12027
  email_confirmed: boolean;
11858
12028
  timezone: string;
11859
12029
  };
12030
+ meta?: ResponseMeta;
11860
12031
  }>;
11861
12032
  listApps: (input?: ({
11862
12033
  search?: string | undefined;
@@ -11981,6 +12152,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
11981
12152
  image?: string | undefined;
11982
12153
  version?: string | undefined;
11983
12154
  };
12155
+ meta?: ResponseMeta;
11984
12156
  }>;
11985
12157
  listActions: (input: ({
11986
12158
  app: string;
@@ -12032,6 +12204,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
12032
12204
  is_important?: boolean | undefined;
12033
12205
  app_version?: string | undefined;
12034
12206
  };
12207
+ meta?: ResponseMeta;
12035
12208
  }>;
12036
12209
  listConnections: (input?: ({
12037
12210
  title?: string | undefined;
@@ -12122,6 +12295,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
12122
12295
  app_key?: string | undefined;
12123
12296
  app_version?: string | undefined;
12124
12297
  };
12298
+ meta?: ResponseMeta;
12125
12299
  }>;
12126
12300
  findFirstConnection: (input?: {
12127
12301
  title?: string | undefined;
@@ -12165,6 +12339,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
12165
12339
  app_key?: string | undefined;
12166
12340
  app_version?: string | undefined;
12167
12341
  };
12342
+ meta?: ResponseMeta;
12168
12343
  }>;
12169
12344
  findUniqueConnection: (input?: {
12170
12345
  title?: string | undefined;
@@ -12208,6 +12383,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
12208
12383
  app_key?: string | undefined;
12209
12384
  app_version?: string | undefined;
12210
12385
  };
12386
+ meta?: ResponseMeta;
12211
12387
  }>;
12212
12388
  listAuthentications: (input?: ({
12213
12389
  title?: string | undefined;
@@ -12298,6 +12474,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
12298
12474
  app_key?: string | undefined;
12299
12475
  app_version?: string | undefined;
12300
12476
  };
12477
+ meta?: ResponseMeta;
12301
12478
  }>;
12302
12479
  findFirstAuthentication: (input?: {
12303
12480
  title?: string | undefined;
@@ -12341,6 +12518,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
12341
12518
  app_key?: string | undefined;
12342
12519
  app_version?: string | undefined;
12343
12520
  };
12521
+ meta?: ResponseMeta;
12344
12522
  }>;
12345
12523
  findUniqueAuthentication: (input?: {
12346
12524
  title?: string | undefined;
@@ -12384,6 +12562,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
12384
12562
  app_key?: string | undefined;
12385
12563
  app_version?: string | undefined;
12386
12564
  };
12565
+ meta?: ResponseMeta;
12387
12566
  }>;
12388
12567
  listClientCredentials: (input?: ({
12389
12568
  pageSize?: number | undefined;
@@ -12411,6 +12590,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
12411
12590
  name: string;
12412
12591
  client_secret: string;
12413
12592
  };
12593
+ meta?: ResponseMeta;
12414
12594
  }>;
12415
12595
  deleteClientCredentials: (input: {
12416
12596
  clientId: string;
@@ -12426,6 +12606,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
12426
12606
  startedAt: number;
12427
12607
  app: string;
12428
12608
  };
12609
+ meta?: ResponseMeta;
12429
12610
  }>;
12430
12611
  waitForNewConnection: (input: {
12431
12612
  app: string;
@@ -12440,6 +12621,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
12440
12621
  app: string;
12441
12622
  title?: string | null | undefined;
12442
12623
  };
12624
+ meta?: ResponseMeta;
12443
12625
  }>;
12444
12626
  createConnection: (input: {
12445
12627
  app: string;
@@ -12454,6 +12636,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
12454
12636
  app: string;
12455
12637
  title?: string | null | undefined;
12456
12638
  };
12639
+ meta?: ResponseMeta;
12457
12640
  }>;
12458
12641
  listActionInputFields: (input: ({
12459
12642
  app: string;
@@ -12521,6 +12704,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
12521
12704
  inputs?: Record<string, unknown> | undefined;
12522
12705
  }) => Promise<{
12523
12706
  data: Record<string, unknown>;
12707
+ meta?: ResponseMeta;
12524
12708
  }>;
12525
12709
  listActionInputFieldChoices: (input: ({
12526
12710
  app: string;
@@ -12625,6 +12809,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
12625
12809
  inputs?: Record<string, unknown> | undefined;
12626
12810
  }) => Promise<{
12627
12811
  data: Record<string, unknown>;
12812
+ meta?: ResponseMeta;
12628
12813
  }>;
12629
12814
  listInputFieldChoices: (input: ({
12630
12815
  app: string;
@@ -12758,6 +12943,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
12758
12943
  inputs: Record<string, unknown>;
12759
12944
  };
12760
12945
  };
12946
+ meta?: ResponseMeta;
12761
12947
  }>;
12762
12948
  ensureTriggerInbox: (input: {
12763
12949
  key: string;
@@ -12789,6 +12975,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
12789
12975
  inputs: Record<string, unknown>;
12790
12976
  };
12791
12977
  };
12978
+ meta?: ResponseMeta;
12792
12979
  }>;
12793
12980
  getTriggerInbox: (input: {
12794
12981
  inbox: string;
@@ -12808,6 +12995,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
12808
12995
  inputs: Record<string, unknown>;
12809
12996
  };
12810
12997
  };
12998
+ meta?: ResponseMeta;
12811
12999
  }>;
12812
13000
  updateTriggerInbox: (input: {
12813
13001
  inbox: string;
@@ -12828,6 +13016,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
12828
13016
  inputs: Record<string, unknown>;
12829
13017
  };
12830
13018
  };
13019
+ meta?: ResponseMeta;
12831
13020
  }>;
12832
13021
  deleteTriggerInbox: (input: {
12833
13022
  inbox: string;
@@ -12850,6 +13039,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
12850
13039
  inputs: Record<string, unknown>;
12851
13040
  };
12852
13041
  };
13042
+ meta?: ResponseMeta;
12853
13043
  }>;
12854
13044
  resumeTriggerInbox: (input: {
12855
13045
  inbox: string;
@@ -12869,6 +13059,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
12869
13059
  inputs: Record<string, unknown>;
12870
13060
  };
12871
13061
  };
13062
+ meta?: ResponseMeta;
12872
13063
  }>;
12873
13064
  listTriggerInboxMessages: (input: {
12874
13065
  inbox: string;
@@ -12915,6 +13106,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
12915
13106
  paused_reason: string | null;
12916
13107
  };
12917
13108
  };
13109
+ meta?: ResponseMeta;
12918
13110
  }>;
12919
13111
  ackTriggerInboxMessages: (input: {
12920
13112
  inbox: string;
@@ -12934,6 +13126,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
12934
13126
  };
12935
13127
  }[];
12936
13128
  };
13129
+ meta?: ResponseMeta;
12937
13130
  }>;
12938
13131
  releaseTriggerInboxMessages: (input: {
12939
13132
  inbox: string;
@@ -12953,6 +13146,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
12953
13146
  };
12954
13147
  }[];
12955
13148
  };
13149
+ meta?: ResponseMeta;
12956
13150
  }>;
12957
13151
  drainTriggerInbox: (input: TriggerInboxCommandSharedFields & {
12958
13152
  maxMessages?: number;
@@ -13087,6 +13281,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
13087
13281
  description?: string | undefined;
13088
13282
  parent_table_id?: string | undefined;
13089
13283
  };
13284
+ meta?: ResponseMeta;
13090
13285
  }>;
13091
13286
  deleteTable: (input: {
13092
13287
  table: string;
@@ -13110,6 +13305,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
13110
13305
  description?: string | undefined;
13111
13306
  parent_table_id?: string | undefined;
13112
13307
  };
13308
+ meta?: ResponseMeta;
13113
13309
  }>;
13114
13310
  listTableFields: (input: {
13115
13311
  table: string;
@@ -13132,6 +13328,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
13132
13328
  config?: Record<string, unknown> | undefined;
13133
13329
  deleted_at?: string | null | undefined;
13134
13330
  }[];
13331
+ meta?: ResponseMeta;
13135
13332
  }>;
13136
13333
  createTableFields: (input: {
13137
13334
  table: string;
@@ -13160,6 +13357,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
13160
13357
  config?: Record<string, unknown> | undefined;
13161
13358
  deleted_at?: string | null | undefined;
13162
13359
  }[];
13360
+ meta?: ResponseMeta;
13163
13361
  }>;
13164
13362
  deleteTableFields: (input: {
13165
13363
  table: string;
@@ -13230,6 +13428,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
13230
13428
  edited_at: string;
13231
13429
  deleted_at?: string | null | undefined;
13232
13430
  };
13431
+ meta?: ResponseMeta;
13233
13432
  }>;
13234
13433
  createTableRecords: (input: {
13235
13434
  table: string;
@@ -13251,6 +13450,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
13251
13450
  edited_at: string;
13252
13451
  deleted_at?: string | null | undefined;
13253
13452
  }[];
13453
+ meta?: ResponseMeta;
13254
13454
  }>;
13255
13455
  deleteTableRecords: (input: {
13256
13456
  table: string;
@@ -13283,6 +13483,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
13283
13483
  edited_at: string;
13284
13484
  deleted_at?: string | null | undefined;
13285
13485
  }[];
13486
+ meta?: ResponseMeta;
13286
13487
  }>;
13287
13488
  } & {
13288
13489
  context: SdkContext;
@@ -13695,6 +13896,7 @@ declare const getTablePlugin: MethodPlugin<"getTable", {
13695
13896
  description?: string | undefined;
13696
13897
  parent_table_id?: string | undefined;
13697
13898
  };
13899
+ meta?: ResponseMeta;
13698
13900
  }>, readonly []> & LeafSummary<"", "getTable", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
13699
13901
 
13700
13902
  declare const createTablePlugin: MethodPlugin<"createTable", {
@@ -13712,6 +13914,7 @@ declare const createTablePlugin: MethodPlugin<"createTable", {
13712
13914
  description?: string | undefined;
13713
13915
  parent_table_id?: string | undefined;
13714
13916
  };
13917
+ meta?: ResponseMeta;
13715
13918
  }>, readonly []> & LeafSummary<"", "createTable", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
13716
13919
 
13717
13920
  declare const deleteTablePlugin: MethodPlugin<"deleteTable", {
@@ -13743,6 +13946,7 @@ declare const listTableFieldsPlugin: MethodPlugin<"listTableFields", {
13743
13946
  config?: Record<string, unknown> | undefined;
13744
13947
  deleted_at?: string | null | undefined;
13745
13948
  }[];
13949
+ meta?: ResponseMeta;
13746
13950
  }>, readonly []> & LeafSummary<"", "listTableFields", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
13747
13951
 
13748
13952
  declare const createTableFieldsPlugin: MethodPlugin<"createTableFields", {
@@ -13772,6 +13976,7 @@ declare const createTableFieldsPlugin: MethodPlugin<"createTableFields", {
13772
13976
  config?: Record<string, unknown> | undefined;
13773
13977
  deleted_at?: string | null | undefined;
13774
13978
  }[];
13979
+ meta?: ResponseMeta;
13775
13980
  }>, readonly []> & LeafSummary<"", "createTableFields", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
13776
13981
 
13777
13982
  declare const deleteTableFieldsPlugin: MethodPlugin<"deleteTableFields", {
@@ -13800,6 +14005,7 @@ declare const getTableRecordPlugin: MethodPlugin<"getTableRecord", {
13800
14005
  edited_at: string;
13801
14006
  deleted_at?: string | null | undefined;
13802
14007
  };
14008
+ meta?: ResponseMeta;
13803
14009
  }>, readonly []> & LeafSummary<"", "getTableRecord", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
13804
14010
 
13805
14011
  declare const listTableRecordsPlugin: MethodPlugin<"listTableRecords", ({
@@ -13867,6 +14073,7 @@ declare const createTableRecordsPlugin: MethodPlugin<"createTableRecords", {
13867
14073
  edited_at: string;
13868
14074
  deleted_at?: string | null | undefined;
13869
14075
  }[];
14076
+ meta?: ResponseMeta;
13870
14077
  }>, readonly []> & LeafSummary<"", "createTableRecords", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
13871
14078
 
13872
14079
  declare const deleteTableRecordsPlugin: MethodPlugin<"deleteTableRecords", {
@@ -13901,6 +14108,7 @@ declare const updateTableRecordsPlugin: MethodPlugin<"updateTableRecords", {
13901
14108
  edited_at: string;
13902
14109
  deleted_at?: string | null | undefined;
13903
14110
  }[];
14111
+ meta?: ResponseMeta;
13904
14112
  }>, readonly []> & LeafSummary<"", "updateTableRecords", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
13905
14113
 
13906
14114
  /**
@@ -13971,4 +14179,4 @@ declare function getAgent(): string | null;
13971
14179
  */
13972
14180
  declare const registryPlugin: (_sdk: {}) => {};
13973
14181
 
13974
- export { type NeedsRequest as $, type AggregatePlugin as A, type BaseSdkOptions as B, type ConnectionsProvider as C, type DeleteTriggerInboxResult as D, type EventCallback as E, type FieldsetItem as F, type GetActionInputFieldsSchemaOptions as G, type ListAuthenticationsPluginProvides as H, type GetAuthenticationPluginProvides as I, type FindFirstAuthenticationPluginProvides as J, type FindUniqueAuthenticationPluginProvides as K, type LeafSummary as L, type MethodPlugin as M, type Action as N, type App as O, type PropertyPlugin as P, type Need as Q, type RegistryResult as R, type SdkContext as S, type TriggerInboxCommandSharedFields as T, type Field as U, type Choice as V, type WatchTriggerInboxOptions as W, type ActionExecutionResult as X, type ActionField as Y, type ZapierFetchInitOptions as Z, type ActionFieldChoice as _, type ApiClient as a, toTitleCase as a$, type NeedsResponse as a0, type Connection as a1, type ConnectionsResponse as a2, type UserProfile as a3, isPositional as a4, type PositionalMetadata as a5, createFunction as a6, createPaginatedFunction as a7, createPluginStack as a8, createCorePlugin as a9, type Formatter as aA, type OutputFormatter as aB, type Resolver$1 as aC, type ArrayResolver$1 as aD, type ResolverMetadata as aE, type StaticResolver$1 as aF, type DynamicResolver$1 as aG, type DynamicListResolver as aH, type DynamicSearchResolver as aI, type FieldsResolver as aJ, type Resolver as aK, type DynamicMember as aL, type PluginSurface as aM, createController as aN, type ControllerQuestion as aO, type ControllerAction as aP, type ControllerAnswerFn as aQ, type ControllerChoice as aR, type ControllerMethodSummary as aS, type ControllerMethodDescription as aT, type ControllerParameterDescription as aU, runInMethodScope as aV, runWithTelemetryContext as aW, getCallerContext as aX, runWithCallerContext as aY, type CallerContext as aZ, toSnakeCase as a_, addPlugin as aa, disposeSdk as ab, CoreDisposeError as ac, createSdk as ad, CONTEXT as ae, resolvePlugin as af, fromFunctionPlugin as ag, defineLegacyMerge as ah, getContext as ai, declarePlugin as aj, defineMethod as ak, defineMethodOverride as al, defineProperty as am, defineResolver as an, defineFormatter as ao, declareMethod as ap, declareProperty as aq, declareOptionalProperty as ar, selectExports as as, omitExports as at, getRegistryPlugin as au, zapierSdkPlugin as av, SDK_OPTIONS_ID as aw, sdkOptionsPluginRef as ax, type FormattedItem as ay, type BoundFormatter as az, type PluginSummary as b, LimitPropertySchema as b$, batch as b0, type BatchOptions as b1, buildCapabilityMessage as b2, logDeprecation as b3, resetDeprecationWarnings as b4, RelayRequestSchema as b5, RelayFetchSchema as b6, createZapierSdkWithoutRegistry as b7, zapierCoreOptions as b8, CORE_OPTIONS_ID as b9, type PollOptions as bA, createZapierApi as bB, getOrCreateApiClient as bC, isPermanentHttpError as bD, type SseMessage as bE, type JsonSseMessage as bF, DEPRECATION_NOTICE_EVENT as bG, type DeprecationNoticePayload as bH, type AppItem as bI, type ConnectionItem as bJ, type ActionItem$1 as bK, type InputFieldItem as bL, type InfoFieldItem as bM, type RootFieldItem as bN, type UserProfileItem as bO, type SdkPage as bP, type PaginatedSdkFunction as bQ, AppKeyPropertySchema as bR, AppPropertySchema as bS, ActionTypePropertySchema as bT, ActionKeyPropertySchema as bU, ActionPropertySchema as bV, InputFieldPropertySchema as bW, ConnectionIdPropertySchema as bX, AuthenticationIdPropertySchema as bY, ConnectionPropertySchema as bZ, InputsPropertySchema as b_, type FunctionRegistryEntry as ba, type FunctionDeprecation as bb, BaseSdkOptionsSchema as bc, isCoreError as bd, getCoreErrorCode as be, getCoreErrorCause as bf, CORE_ERROR_SYMBOL as bg, CoreErrorCode as bh, CoreSignal as bi, CoreCancelledSignal as bj, isCoreSignal as bk, isCoreCancelledSignal as bl, CORE_SIGNAL_SYMBOL as bm, type Plugin as bn, type PluginProvides as bo, type MethodOverridePlugin as bp, definePlugin as bq, createPluginMethod as br, createPaginatedPluginMethod as bs, composePlugins as bt, type ActionItem as bu, type ActionTypeItem as bv, type ResolvedAppLocator as bw, getAgent as bx, registryPlugin as by, type RequestOptions as bz, type PaginatedSdkResult as c, ZapierConflictError as c$, OffsetPropertySchema as c0, OutputPropertySchema as c1, DebugPropertySchema as c2, ParamsPropertySchema as c3, ActionTimeoutSecondsPropertySchema as c4, ActionTimeoutMillisecondsPropertySchema as c5, TablePropertySchema as c6, RecordPropertySchema as c7, RecordsPropertySchema as c8, FieldsPropertySchema as c9, type TableProperty as cA, type RecordProperty as cB, type RecordsProperty as cC, type FieldsProperty as cD, type AppsProperty as cE, type TablesProperty as cF, type ConnectionsProperty as cG, type TriggerInboxProperty as cH, type TriggerInboxKeyProperty as cI, type TriggerInboxNameProperty as cJ, type LeaseProperty as cK, type LeaseSecondsProperty as cL, type LeaseLimitProperty as cM, type ErrorOptions as cN, ZapierError as cO, ZapierValidationError as cP, ZapierUnknownError as cQ, ZapierAuthenticationError as cR, zapierAdaptError as cS, ZapierApiError as cT, ZapierAppNotFoundError as cU, ZapierNotFoundError as cV, ZapierResourceNotFoundError as cW, ZapierConfigurationError as cX, ZapierBundleError as cY, ZapierTimeoutError as cZ, ZapierActionError as c_, AppsPropertySchema as ca, TablesPropertySchema as cb, ConnectionsPropertySchema as cc, TriggerInboxPropertySchema as cd, TriggerInboxKeyPropertySchema as ce, TriggerInboxNamePropertySchema as cf, LeasePropertySchema as cg, LeaseSecondsPropertySchema as ch, LeaseLimitPropertySchema as ci, type AppKeyProperty as cj, type AppProperty as ck, type ActionTypeProperty as cl, type ActionKeyProperty as cm, type ActionProperty as cn, type InputFieldProperty as co, type ConnectionIdProperty as cp, type ConnectionProperty as cq, type AuthenticationIdProperty as cr, type InputsProperty as cs, type LimitProperty as ct, type OffsetProperty as cu, type OutputProperty as cv, type DebugProperty as cw, type ParamsProperty as cx, type ActionTimeoutSecondsProperty as cy, type ActionTimeoutMillisecondsProperty as cz, type ManifestProvider as d, type ApiPluginOptions as d$, type RateLimitInfo as d0, ZapierRateLimitError as d1, type ApprovalStatus as d2, ZapierApprovalError as d3, ZapierRelayError as d4, isZapierError as d5, isZapierValidationError as d6, isZapierAuthenticationError as d7, isZapierAppNotFoundError as d8, isZapierNotFoundError as d9, type ListConnectionsPluginProvides as dA, listClientCredentialsPlugin as dB, createClientCredentialsPlugin as dC, deleteClientCredentialsPlugin as dD, getAppPlugin as dE, getActionPlugin as dF, getConnectionPlugin as dG, findFirstConnectionPlugin as dH, findUniqueConnectionPlugin as dI, CONTEXT_CACHE_TTL_MILLISECONDS as dJ, CONTEXT_CACHE_MAX_SIZE as dK, runActionPlugin as dL, type RunActionPluginProvides as dM, requestPlugin as dN, type ManifestPluginOptions as dO, readManifestFromFile as dP, getPreferredManifestEntryKey as dQ, findManifestEntry as dR, MANIFEST_ID as dS, manifestPluginRef as dT, manifestPlugin as dU, type UpdateManifestEntryOptions as dV, type UpdateManifestEntryResult as dW, DEFAULT_CONFIG_PATH as dX, type ManifestEntry as dY, type ActionEntry as dZ, getProfilePlugin as d_, isZapierResourceNotFoundError as da, isZapierConflictError as db, isZapierTimeoutError as dc, isZapierBundleError as dd, isZapierActionError as de, isZapierRateLimitError as df, isZapierApprovalError as dg, formatErrorMessage as dh, type CoreApiError as di, ZapierSignal as dj, isZapierSignal as dk, appsPlugin as dl, type ActionExecutionOptions as dm, type AppFactoryInput as dn, type FetchPluginProvides as dp, fetchPlugin as dq, listAppsPlugin as dr, type ListAppsPluginProvides as ds, listActionsPlugin as dt, type ListActionsPluginProvides as du, listActionInputFieldsPlugin as dv, type ListActionInputFieldsPluginProvides as dw, listActionInputFieldChoicesPlugin as dx, getActionInputFieldsSchemaPlugin as dy, listConnectionsPlugin as dz, type CapabilitiesContext as e, resolveCredentials as e$, type ResolveCredentialsFn as e0, API_ID as e1, apiPluginRef as e2, apiPlugin as e3, RESOLVE_CREDENTIALS_ID as e4, resolveCredentialsPluginRef as e5, resolveCredentialsPlugin as e6, appKeyResolver as e7, actionTypeResolver as e8, actionKeyResolver as e9, type ResolvedAuth as eA, clearTokenCache as eB, invalidateCachedToken as eC, injectCliLogin as eD, isCliLoginAvailable as eE, getTokenFromCliLogin as eF, resolveAuth as eG, resolveAuthToken as eH, invalidateCredentialsToken as eI, type ZapierCacheEntry as eJ, type ZapierCacheSetOptions as eK, createMemoryCache as eL, type SdkEvent as eM, type AuthEvent as eN, type ApiEvent as eO, type LoadingEvent as eP, type Credentials as eQ, type ResolvedCredentials as eR, type CredentialsObject as eS, type ClientCredentialsObject as eT, type PkceCredentialsObject as eU, isClientCredentials as eV, isPkceCredentials as eW, isCredentialsObject as eX, isCredentialsFunction as eY, type ResolveCredentialsOptions as eZ, resolveCredentialsFromEnv as e_, connectionIdResolver as ea, connectionIdGenericResolver as eb, inputsResolver as ec, inputsAllOptionalResolver as ed, inputFieldKeyResolver as ee, clientCredentialsNameResolver as ef, clientIdResolver as eg, tableIdResolver as eh, triggerInboxResolver as ei, workflowIdResolver as ej, durableRunIdResolver as ek, workflowVersionIdResolver as el, workflowDraftIdResolver as em, workflowRunIdResolver as en, triggerMessagesResolver as eo, tableRecordIdResolver as ep, tableRecordIdsResolver as eq, tableFieldIdsResolver as er, tableNameResolver as es, tableFieldsResolver as et, tableRecordsResolver as eu, tableUpdateRecordsResolver as ev, tableFiltersResolver as ew, tableSortResolver as ex, type ResolveAuthTokenOptions as ey, AuthMechanism as ez, type CoreOptions as f, operationAnnotatorPlugin as f$, getBaseUrlFromCredentials as f0, getClientIdFromCredentials as f1, ClientCredentialsObjectSchema as f2, PkceCredentialsObjectSchema as f3, CredentialsObjectSchema as f4, ResolvedCredentialsSchema as f5, CredentialsFunctionSchema as f6, type CredentialsFunction as f7, CredentialsSchema as f8, ConnectionEntrySchema as f9, listTableFieldsPlugin as fA, createTableFieldsPlugin as fB, deleteTableFieldsPlugin as fC, getTableRecordPlugin as fD, listTableRecordsPlugin as fE, createTableRecordsPlugin as fF, deleteTableRecordsPlugin as fG, updateTableRecordsPlugin as fH, cleanupEventListeners as fI, type EventEmissionContext as fJ, type EventEmitter as fK, EVENT_EMISSION_ID as fL, eventEmissionPluginRef as fM, eventEmissionPlugin as fN, eventEmissionHookPlugin as fO, type EventTransport as fP, type EventContext as fQ, type ApplicationLifecycleEventData as fR, type EnhancedErrorEventData as fS, type MethodCalledEventData as fT, buildApplicationLifecycleEvent as fU, buildErrorEventWithContext as fV, buildErrorEvent as fW, createBaseEvent as fX, buildMethodCalledEvent as fY, type BaseEvent as fZ, type MethodCalledEvent as f_, type ConnectionEntry as fa, ConnectionsMapSchema as fb, type ConnectionsMap as fc, type ResolveConnection as fd, CONNECTIONS_ID as fe, connectionsPluginRef as ff, connectionsPlugin as fg, ZAPIER_BASE_URL as fh, getZapierSdkService as fi, MAX_PAGE_LIMIT as fj, DEFAULT_PAGE_SIZE as fk, DEFAULT_ACTION_TIMEOUT_MILLISECONDS as fl, ZAPIER_MAX_NETWORK_RETRIES as fm, ZAPIER_MAX_NETWORK_RETRY_DELAY_MILLISECONDS as fn, MAX_CONCURRENCY_LIMIT as fo, parseConcurrencyEnvVar as fp, ZAPIER_MAX_CONCURRENT_REQUESTS as fq, getZapierApprovalMode as fr, getZapierOpenAutoModeApprovalsInBrowser as fs, getZapierDefaultApprovalMode as ft, DEFAULT_APPROVAL_TIMEOUT_MILLISECONDS as fu, DEFAULT_MAX_APPROVAL_RETRIES as fv, listTablesPlugin as fw, getTablePlugin as fx, createTablePlugin as fy, deleteTablePlugin as fz, type ActionProxy as g, generateEventId as g0, getCurrentTimestamp as g1, getReleaseId as g2, getOsInfo as g3, getPlatformVersions as g4, isCi as g5, getCiPlatform as g6, getMemoryUsage as g7, getCpuTime as g8, getTtyContext as g9, createZapierSdk as ga, type ZapierSdkOptions as gb, type ZapierSdk as gc, type ZapierSdkApps as h, type DrainTriggerInboxOptions as i, type Manifest as j, type EventEmissionConfig as k, type ZapierCache as l, type ListActionsOptions as m, type ListActionInputFieldsOptions as n, type ListActionInputFieldChoicesOptions as o, type PluginMeta as p, DrainTriggerInboxSchema as q, WatchTriggerInboxSchema as r, ZapierAbortDrainSignal as s, ZapierReleaseTriggerMessageSignal as t, isZapierAbortDrainSignal as u, isZapierReleaseTriggerMessageSignal as v, type DrainTriggerInboxCallback as w, type DrainTriggerInboxErrorObserver as x, type LeasedTriggerMessageItem as y, type TriggerMessageStatus as z };
14182
+ export { type ActionFieldChoice as $, type AggregatePlugin as A, type BaseSdkOptions as B, type ConnectionsProvider as C, type DeleteTriggerInboxResult as D, type EventCallback as E, type FieldsetItem as F, type GetActionInputFieldsSchemaOptions as G, type TriggerMessageStatus as H, type ListAuthenticationsPluginProvides as I, type GetAuthenticationPluginProvides as J, type FindFirstAuthenticationPluginProvides as K, type LeafSummary as L, type MethodPlugin as M, type FindUniqueAuthenticationPluginProvides as N, type Action as O, type PropertyPlugin as P, type App as Q, type RegistryResult as R, type SdkContext as S, type TriggerInboxCommandSharedFields as T, type Need as U, type Field as V, type WatchTriggerInboxOptions as W, type Choice as X, type ActionExecutionResult as Y, type ZapierFetchInitOptions as Z, type ActionField as _, type ResponseMeta as a, toSnakeCase as a$, type NeedsRequest as a0, type NeedsResponse as a1, type Connection as a2, type ConnectionsResponse as a3, type UserProfile as a4, isPositional as a5, type PositionalMetadata as a6, createFunction as a7, createPaginatedFunction as a8, createPluginStack as a9, type BoundFormatter as aA, type Formatter as aB, type OutputFormatter as aC, type Resolver$1 as aD, type ArrayResolver$1 as aE, type ResolverMetadata as aF, type StaticResolver$1 as aG, type DynamicResolver$1 as aH, type DynamicListResolver as aI, type DynamicSearchResolver as aJ, type FieldsResolver as aK, type Resolver as aL, type DynamicMember as aM, type PluginSurface as aN, createController as aO, type ControllerQuestion as aP, type ControllerAction as aQ, type ControllerAnswerFn as aR, type ControllerChoice as aS, type ControllerMethodSummary as aT, type ControllerMethodDescription as aU, type ControllerParameterDescription as aV, runInMethodScope as aW, runWithTelemetryContext as aX, getCallerContext as aY, runWithCallerContext as aZ, type CallerContext as a_, createCorePlugin as aa, addPlugin as ab, disposeSdk as ac, CoreDisposeError as ad, createSdk as ae, CONTEXT as af, resolvePlugin as ag, fromFunctionPlugin as ah, defineLegacyMerge as ai, getContext as aj, declarePlugin as ak, defineMethod as al, defineMethodOverride as am, defineProperty as an, defineResolver as ao, defineFormatter as ap, declareMethod as aq, declareProperty as ar, declareOptionalProperty as as, selectExports as at, omitExports as au, getRegistryPlugin as av, zapierSdkPlugin as aw, SDK_OPTIONS_ID as ax, sdkOptionsPluginRef as ay, type FormattedItem as az, type ApiClient as b, InputsPropertySchema as b$, toTitleCase as b0, batch as b1, type BatchOptions as b2, buildCapabilityMessage as b3, logDeprecation as b4, resetDeprecationWarnings as b5, RelayRequestSchema as b6, RelayFetchSchema as b7, createZapierSdkWithoutRegistry as b8, zapierCoreOptions as b9, type RequestOptions as bA, type PollOptions as bB, createZapierApi as bC, getOrCreateApiClient as bD, isPermanentHttpError as bE, type SseMessage as bF, type JsonSseMessage as bG, DEPRECATION_NOTICE_EVENT as bH, type DeprecationNoticePayload as bI, type AppItem as bJ, type ConnectionItem as bK, type ActionItem$1 as bL, type InputFieldItem as bM, type InfoFieldItem as bN, type RootFieldItem as bO, type UserProfileItem as bP, type SdkPage as bQ, type PaginatedSdkFunction as bR, AppKeyPropertySchema as bS, AppPropertySchema as bT, ActionTypePropertySchema as bU, ActionKeyPropertySchema as bV, ActionPropertySchema as bW, InputFieldPropertySchema as bX, ConnectionIdPropertySchema as bY, AuthenticationIdPropertySchema as bZ, ConnectionPropertySchema as b_, CORE_OPTIONS_ID as ba, type FunctionRegistryEntry as bb, type FunctionDeprecation as bc, BaseSdkOptionsSchema as bd, isCoreError as be, getCoreErrorCode as bf, getCoreErrorCause as bg, CORE_ERROR_SYMBOL as bh, CoreErrorCode as bi, CoreSignal as bj, CoreCancelledSignal as bk, isCoreSignal as bl, isCoreCancelledSignal as bm, CORE_SIGNAL_SYMBOL as bn, type Plugin as bo, type PluginProvides as bp, type MethodOverridePlugin as bq, definePlugin as br, createPluginMethod as bs, createPaginatedPluginMethod as bt, composePlugins as bu, type ActionItem as bv, type ActionTypeItem as bw, type ResolvedAppLocator as bx, getAgent as by, registryPlugin as bz, type PluginSummary as c, ZapierActionError as c$, LimitPropertySchema as c0, OffsetPropertySchema as c1, OutputPropertySchema as c2, DebugPropertySchema as c3, ParamsPropertySchema as c4, ActionTimeoutSecondsPropertySchema as c5, ActionTimeoutMillisecondsPropertySchema as c6, TablePropertySchema as c7, RecordPropertySchema as c8, RecordsPropertySchema as c9, type ActionTimeoutMillisecondsProperty as cA, type TableProperty as cB, type RecordProperty as cC, type RecordsProperty as cD, type FieldsProperty as cE, type AppsProperty as cF, type TablesProperty as cG, type ConnectionsProperty as cH, type TriggerInboxProperty as cI, type TriggerInboxKeyProperty as cJ, type TriggerInboxNameProperty as cK, type LeaseProperty as cL, type LeaseSecondsProperty as cM, type LeaseLimitProperty as cN, type ErrorOptions as cO, ZapierError as cP, ZapierValidationError as cQ, ZapierUnknownError as cR, ZapierAuthenticationError as cS, zapierAdaptError as cT, ZapierApiError as cU, ZapierAppNotFoundError as cV, ZapierNotFoundError as cW, ZapierResourceNotFoundError as cX, ZapierConfigurationError as cY, ZapierBundleError as cZ, ZapierTimeoutError as c_, FieldsPropertySchema as ca, AppsPropertySchema as cb, TablesPropertySchema as cc, ConnectionsPropertySchema as cd, TriggerInboxPropertySchema as ce, TriggerInboxKeyPropertySchema as cf, TriggerInboxNamePropertySchema as cg, LeasePropertySchema as ch, LeaseSecondsPropertySchema as ci, LeaseLimitPropertySchema as cj, type AppKeyProperty as ck, type AppProperty as cl, type ActionTypeProperty as cm, type ActionKeyProperty as cn, type ActionProperty as co, type InputFieldProperty as cp, type ConnectionIdProperty as cq, type ConnectionProperty as cr, type AuthenticationIdProperty as cs, type InputsProperty as ct, type LimitProperty as cu, type OffsetProperty as cv, type OutputProperty as cw, type DebugProperty as cx, type ParamsProperty as cy, type ActionTimeoutSecondsProperty as cz, type PaginatedSdkResult as d, getProfilePlugin as d$, ZapierConflictError as d0, type RateLimitInfo as d1, ZapierRateLimitError as d2, type ApprovalStatus as d3, ZapierApprovalError as d4, ZapierRelayError as d5, isZapierError as d6, isZapierValidationError as d7, isZapierAuthenticationError as d8, isZapierAppNotFoundError as d9, listConnectionsPlugin as dA, type ListConnectionsPluginProvides as dB, listClientCredentialsPlugin as dC, createClientCredentialsPlugin as dD, deleteClientCredentialsPlugin as dE, getAppPlugin as dF, getActionPlugin as dG, getConnectionPlugin as dH, findFirstConnectionPlugin as dI, findUniqueConnectionPlugin as dJ, CONTEXT_CACHE_TTL_MILLISECONDS as dK, CONTEXT_CACHE_MAX_SIZE as dL, runActionPlugin as dM, type RunActionPluginProvides as dN, requestPlugin as dO, type ManifestPluginOptions as dP, readManifestFromFile as dQ, getPreferredManifestEntryKey as dR, findManifestEntry as dS, MANIFEST_ID as dT, manifestPluginRef as dU, manifestPlugin as dV, type UpdateManifestEntryOptions as dW, type UpdateManifestEntryResult as dX, DEFAULT_CONFIG_PATH as dY, type ManifestEntry as dZ, type ActionEntry as d_, isZapierNotFoundError as da, isZapierResourceNotFoundError as db, isZapierConflictError as dc, isZapierTimeoutError as dd, isZapierBundleError as de, isZapierActionError as df, isZapierRateLimitError as dg, isZapierApprovalError as dh, formatErrorMessage as di, type CoreApiError as dj, ZapierSignal as dk, isZapierSignal as dl, appsPlugin as dm, type ActionExecutionOptions as dn, type AppFactoryInput as dp, type FetchPluginProvides as dq, fetchPlugin as dr, listAppsPlugin as ds, type ListAppsPluginProvides as dt, listActionsPlugin as du, type ListActionsPluginProvides as dv, listActionInputFieldsPlugin as dw, type ListActionInputFieldsPluginProvides as dx, listActionInputFieldChoicesPlugin as dy, getActionInputFieldsSchemaPlugin as dz, type ManifestProvider as e, type ResolveCredentialsOptions as e$, type GetProfilePluginProvides as e0, type ApiPluginOptions as e1, type ResolveCredentialsFn as e2, API_ID as e3, apiPluginRef as e4, apiPlugin as e5, RESOLVE_CREDENTIALS_ID as e6, resolveCredentialsPluginRef as e7, resolveCredentialsPlugin as e8, appKeyResolver as e9, type ResolveAuthTokenOptions as eA, AuthMechanism as eB, type ResolvedAuth as eC, clearTokenCache as eD, invalidateCachedToken as eE, injectCliLogin as eF, isCliLoginAvailable as eG, getTokenFromCliLogin as eH, resolveAuth as eI, resolveAuthToken as eJ, invalidateCredentialsToken as eK, type ZapierCacheEntry as eL, type ZapierCacheSetOptions as eM, createMemoryCache as eN, type SdkEvent as eO, type AuthEvent as eP, type ApiEvent as eQ, type LoadingEvent as eR, type Credentials as eS, type ResolvedCredentials as eT, type CredentialsObject as eU, type ClientCredentialsObject as eV, type PkceCredentialsObject as eW, isClientCredentials as eX, isPkceCredentials as eY, isCredentialsObject as eZ, isCredentialsFunction as e_, actionTypeResolver as ea, actionKeyResolver as eb, connectionIdResolver as ec, connectionIdGenericResolver as ed, inputsResolver as ee, inputsAllOptionalResolver as ef, inputFieldKeyResolver as eg, clientCredentialsNameResolver as eh, clientIdResolver as ei, tableIdResolver as ej, triggerInboxResolver as ek, workflowIdResolver as el, durableRunIdResolver as em, workflowVersionIdResolver as en, workflowDraftIdResolver as eo, workflowRunIdResolver as ep, triggerMessagesResolver as eq, tableRecordIdResolver as er, tableRecordIdsResolver as es, tableFieldIdsResolver as et, tableNameResolver as eu, tableFieldsResolver as ev, tableRecordsResolver as ew, tableUpdateRecordsResolver as ex, tableFiltersResolver as ey, tableSortResolver as ez, type CapabilitiesContext as f, type BaseEvent as f$, resolveCredentialsFromEnv as f0, resolveCredentials as f1, getBaseUrlFromCredentials as f2, getClientIdFromCredentials as f3, ClientCredentialsObjectSchema as f4, PkceCredentialsObjectSchema as f5, CredentialsObjectSchema as f6, ResolvedCredentialsSchema as f7, CredentialsFunctionSchema as f8, type CredentialsFunction as f9, createTablePlugin as fA, deleteTablePlugin as fB, listTableFieldsPlugin as fC, createTableFieldsPlugin as fD, deleteTableFieldsPlugin as fE, getTableRecordPlugin as fF, listTableRecordsPlugin as fG, createTableRecordsPlugin as fH, deleteTableRecordsPlugin as fI, updateTableRecordsPlugin as fJ, cleanupEventListeners as fK, type EventEmissionContext as fL, type EventEmitter as fM, EVENT_EMISSION_ID as fN, eventEmissionPluginRef as fO, eventEmissionPlugin as fP, eventEmissionHookPlugin as fQ, type EventTransport as fR, type EventContext as fS, type ApplicationLifecycleEventData as fT, type EnhancedErrorEventData as fU, type MethodCalledEventData as fV, buildApplicationLifecycleEvent as fW, buildErrorEventWithContext as fX, buildErrorEvent as fY, createBaseEvent as fZ, buildMethodCalledEvent as f_, CredentialsSchema as fa, ConnectionEntrySchema as fb, type ConnectionEntry as fc, ConnectionsMapSchema as fd, type ConnectionsMap as fe, type ResolveConnection as ff, CONNECTIONS_ID as fg, connectionsPluginRef as fh, connectionsPlugin as fi, ZAPIER_BASE_URL as fj, getZapierSdkService as fk, MAX_PAGE_LIMIT as fl, DEFAULT_PAGE_SIZE as fm, DEFAULT_ACTION_TIMEOUT_MILLISECONDS as fn, ZAPIER_MAX_NETWORK_RETRIES as fo, ZAPIER_MAX_NETWORK_RETRY_DELAY_MILLISECONDS as fp, MAX_CONCURRENCY_LIMIT as fq, parseConcurrencyEnvVar as fr, ZAPIER_MAX_CONCURRENT_REQUESTS as fs, getZapierApprovalMode as ft, getZapierOpenAutoModeApprovalsInBrowser as fu, getZapierDefaultApprovalMode as fv, DEFAULT_APPROVAL_TIMEOUT_MILLISECONDS as fw, DEFAULT_MAX_APPROVAL_RETRIES as fx, listTablesPlugin as fy, getTablePlugin as fz, type CoreOptions as g, type MethodCalledEvent as g0, operationAnnotatorPlugin as g1, generateEventId as g2, getCurrentTimestamp as g3, getReleaseId as g4, getOsInfo as g5, getPlatformVersions as g6, isCi as g7, getCiPlatform as g8, getMemoryUsage as g9, getCpuTime as ga, getTtyContext as gb, createZapierSdk as gc, type ZapierSdkOptions as gd, type ZapierSdk as ge, type ActionProxy as h, type ZapierSdkApps as i, type DrainTriggerInboxOptions as j, type Manifest as k, type EventEmissionConfig as l, type ZapierCache as m, type ListActionsOptions as n, type ListActionInputFieldsOptions as o, type ListActionInputFieldChoicesOptions as p, type PluginMeta as q, DrainTriggerInboxSchema as r, WatchTriggerInboxSchema as s, ZapierAbortDrainSignal as t, ZapierReleaseTriggerMessageSignal as u, isZapierAbortDrainSignal as v, isZapierReleaseTriggerMessageSignal as w, type DrainTriggerInboxCallback as x, type DrainTriggerInboxErrorObserver as y, type LeasedTriggerMessageItem as z };