@zapier/zapier-sdk 0.93.0 → 0.94.0

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.
@@ -5791,7 +5791,21 @@ declare const appsPlugin: PropertyPlugin<"apps", ActionProxy & ZapierSdkApps> &
5791
5791
  pageSize?: number;
5792
5792
  } & {
5793
5793
  maxItems?: number;
5794
- }, PaginatedSdkResult<unknown>, readonly []> & LeafSummary<"", "runAction", readonly [PropertyPlugin<"connections", ConnectionsProvider> & PluginSummary<"zapier/connections", never>, PropertyPlugin<"manifest", ManifestProvider> & PluginSummary<"zapier/manifest", never>, PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>, MethodPlugin<"getAction", {
5794
+ }, PaginatedSdkResult<unknown>, readonly []> & LeafSummary<"", "runAction", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>, PropertyPlugin<"connections", ConnectionsProvider> & PluginSummary<"zapier/connections", never>, MethodPlugin<"createActionRun", {
5795
+ app: string;
5796
+ actionType: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run";
5797
+ action: string;
5798
+ connection?: string | number | undefined;
5799
+ inputs?: Record<string, unknown> | undefined;
5800
+ page?: string | undefined;
5801
+ callbackUrl?: string | undefined;
5802
+ }, Promise<{
5803
+ data: {
5804
+ id: string;
5805
+ implementation_id: string;
5806
+ };
5807
+ meta?: ResponseMeta;
5808
+ }>, readonly []> & LeafSummary<"", "createActionRun", readonly [PropertyPlugin<"connections", ConnectionsProvider> & PluginSummary<"zapier/connections", never>, PropertyPlugin<"manifest", ManifestProvider> & PluginSummary<"zapier/manifest", never>, PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>, MethodPlugin<"getAction", {
5795
5809
  app: string;
5796
5810
  actionType: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run";
5797
5811
  action: string;
@@ -5841,7 +5855,7 @@ declare const appsPlugin: PropertyPlugin<"apps", ActionProxy & ZapierSdkApps> &
5841
5855
  id?: string | undefined;
5842
5856
  is_important?: boolean | undefined;
5843
5857
  app_version?: string | undefined;
5844
- }>, readonly []> & LeafSummary<"", "listActions", readonly [PropertyPlugin<"manifest", ManifestProvider> & PluginSummary<"zapier/manifest", never>, PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>]>]>]>;
5858
+ }>, readonly []> & LeafSummary<"", "listActions", readonly [PropertyPlugin<"manifest", ManifestProvider> & PluginSummary<"zapier/manifest", never>, PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>]>]>]>]>;
5845
5859
 
5846
5860
  interface ZapierSdkApps {
5847
5861
  }
@@ -6849,6 +6863,91 @@ interface FindUniqueAuthenticationPluginProvides {
6849
6863
 
6850
6864
  declare const CONTEXT_CACHE_TTL_MILLISECONDS = 60000;
6851
6865
  declare const CONTEXT_CACHE_MAX_SIZE = 500;
6866
+ declare const createActionRunPlugin: MethodPlugin<"createActionRun", {
6867
+ app: string;
6868
+ actionType: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run";
6869
+ action: string;
6870
+ connection?: string | number | undefined;
6871
+ inputs?: Record<string, unknown> | undefined;
6872
+ page?: string | undefined;
6873
+ callbackUrl?: string | undefined;
6874
+ }, Promise<{
6875
+ data: {
6876
+ id: string;
6877
+ implementation_id: string;
6878
+ };
6879
+ meta?: ResponseMeta;
6880
+ }>, readonly []> & LeafSummary<"", "createActionRun", readonly [PropertyPlugin<"connections", ConnectionsProvider> & PluginSummary<"zapier/connections", never>, PropertyPlugin<"manifest", ManifestProvider> & PluginSummary<"zapier/manifest", never>, PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>, MethodPlugin<"getAction", {
6881
+ app: string;
6882
+ actionType: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run";
6883
+ action: string;
6884
+ } | {
6885
+ appKey: string;
6886
+ actionType: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run";
6887
+ actionKey: string;
6888
+ }, Promise<{
6889
+ data: {
6890
+ description: string;
6891
+ key: string;
6892
+ app_key: string;
6893
+ action_type: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run";
6894
+ title: string;
6895
+ type: "action";
6896
+ is_hidden?: boolean | undefined;
6897
+ id?: string | undefined;
6898
+ is_important?: boolean | undefined;
6899
+ app_version?: string | undefined;
6900
+ };
6901
+ meta?: ResponseMeta;
6902
+ }>, readonly []> & LeafSummary<"", "getAction", readonly [MethodPlugin<"listActions", ({
6903
+ app: string;
6904
+ actionType?: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run" | undefined;
6905
+ pageSize?: number | undefined;
6906
+ maxItems?: number | undefined;
6907
+ cursor?: string | undefined;
6908
+ } | {
6909
+ appKey: string;
6910
+ actionType?: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run" | undefined;
6911
+ pageSize?: number | undefined;
6912
+ maxItems?: number | undefined;
6913
+ cursor?: string | undefined;
6914
+ }) & {
6915
+ cursor?: string;
6916
+ pageSize?: number;
6917
+ } & {
6918
+ maxItems?: number;
6919
+ }, PaginatedSdkResult<{
6920
+ description: string;
6921
+ key: string;
6922
+ app_key: string;
6923
+ action_type: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run";
6924
+ title: string;
6925
+ type: "action";
6926
+ is_hidden?: boolean | undefined;
6927
+ id?: string | undefined;
6928
+ is_important?: boolean | undefined;
6929
+ app_version?: string | undefined;
6930
+ }>, readonly []> & LeafSummary<"", "listActions", readonly [PropertyPlugin<"manifest", ManifestProvider> & PluginSummary<"zapier/manifest", never>, PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>]>]>;
6931
+ type CreateActionRunPluginProvides = PluginSurface<typeof createActionRunPlugin>;
6932
+
6933
+ declare const getActionRunPlugin: MethodPlugin<"getActionRun", {
6934
+ run: string;
6935
+ }, Promise<{
6936
+ data: {
6937
+ id: string;
6938
+ status: string;
6939
+ results: unknown[];
6940
+ errors: {
6941
+ code?: string | undefined;
6942
+ title?: string | null | undefined;
6943
+ detail?: string | undefined;
6944
+ }[];
6945
+ next_page?: string | undefined;
6946
+ };
6947
+ meta?: ResponseMeta;
6948
+ }>, readonly []> & LeafSummary<"", "getActionRun", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
6949
+ type GetActionRunPluginProvides = PluginSurface<typeof getActionRunPlugin>;
6950
+
6852
6951
  declare const runActionPlugin: MethodPlugin<"runAction", ({
6853
6952
  app: string;
6854
6953
  actionType: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run";
@@ -6880,7 +6979,21 @@ declare const runActionPlugin: MethodPlugin<"runAction", ({
6880
6979
  pageSize?: number;
6881
6980
  } & {
6882
6981
  maxItems?: number;
6883
- }, PaginatedSdkResult<unknown>, readonly []> & LeafSummary<"", "runAction", readonly [PropertyPlugin<"connections", ConnectionsProvider> & PluginSummary<"zapier/connections", never>, PropertyPlugin<"manifest", ManifestProvider> & PluginSummary<"zapier/manifest", never>, PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>, MethodPlugin<"getAction", {
6982
+ }, PaginatedSdkResult<unknown>, readonly []> & LeafSummary<"", "runAction", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>, PropertyPlugin<"connections", ConnectionsProvider> & PluginSummary<"zapier/connections", never>, MethodPlugin<"createActionRun", {
6983
+ app: string;
6984
+ actionType: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run";
6985
+ action: string;
6986
+ connection?: string | number | undefined;
6987
+ inputs?: Record<string, unknown> | undefined;
6988
+ page?: string | undefined;
6989
+ callbackUrl?: string | undefined;
6990
+ }, Promise<{
6991
+ data: {
6992
+ id: string;
6993
+ implementation_id: string;
6994
+ };
6995
+ meta?: ResponseMeta;
6996
+ }>, readonly []> & LeafSummary<"", "createActionRun", readonly [PropertyPlugin<"connections", ConnectionsProvider> & PluginSummary<"zapier/connections", never>, PropertyPlugin<"manifest", ManifestProvider> & PluginSummary<"zapier/manifest", never>, PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>, MethodPlugin<"getAction", {
6884
6997
  app: string;
6885
6998
  actionType: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run";
6886
6999
  action: string;
@@ -6930,7 +7043,7 @@ declare const runActionPlugin: MethodPlugin<"runAction", ({
6930
7043
  id?: string | undefined;
6931
7044
  is_important?: boolean | undefined;
6932
7045
  app_version?: string | undefined;
6933
- }>, readonly []> & LeafSummary<"", "listActions", readonly [PropertyPlugin<"manifest", ManifestProvider> & PluginSummary<"zapier/manifest", never>, PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>]>]>;
7046
+ }>, readonly []> & LeafSummary<"", "listActions", readonly [PropertyPlugin<"manifest", ManifestProvider> & PluginSummary<"zapier/manifest", never>, PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>]>]>]>;
6934
7047
  type RunActionPluginProvides = PluginSurface<typeof runActionPlugin>;
6935
7048
 
6936
7049
  /**
@@ -8562,6 +8675,37 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
8562
8675
  sample?: string | undefined;
8563
8676
  value?: string | undefined;
8564
8677
  }>;
8678
+ createActionRun: (input: {
8679
+ app: string;
8680
+ actionType: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run";
8681
+ action: string;
8682
+ connection?: string | number | undefined;
8683
+ inputs?: Record<string, unknown> | undefined;
8684
+ page?: string | undefined;
8685
+ callbackUrl?: string | undefined;
8686
+ }) => Promise<{
8687
+ data: {
8688
+ id: string;
8689
+ implementation_id: string;
8690
+ };
8691
+ meta?: ResponseMeta;
8692
+ }>;
8693
+ getActionRun: (input: {
8694
+ run: string;
8695
+ }) => Promise<{
8696
+ data: {
8697
+ id: string;
8698
+ status: string;
8699
+ results: unknown[];
8700
+ errors: {
8701
+ code?: string | undefined;
8702
+ title?: string | null | undefined;
8703
+ detail?: string | undefined;
8704
+ }[];
8705
+ next_page?: string | undefined;
8706
+ };
8707
+ meta?: ResponseMeta;
8708
+ }>;
8565
8709
  runAction: (input: ({
8566
8710
  app: string;
8567
8711
  actionType: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run";
@@ -10966,6 +11110,89 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
10966
11110
  is_important?: boolean | undefined;
10967
11111
  app_version?: string | undefined;
10968
11112
  }>, readonly []> & LeafSummary<"", "listActions", readonly [PropertyPlugin<"manifest", ManifestProvider> & PluginSummary<"zapier/manifest", never>, PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>]>]>]>;
11113
+ } & {
11114
+ createActionRun: MethodPlugin<"createActionRun", {
11115
+ app: string;
11116
+ actionType: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run";
11117
+ action: string;
11118
+ connection?: string | number | undefined;
11119
+ inputs?: Record<string, unknown> | undefined;
11120
+ page?: string | undefined;
11121
+ callbackUrl?: string | undefined;
11122
+ }, Promise<{
11123
+ data: {
11124
+ id: string;
11125
+ implementation_id: string;
11126
+ };
11127
+ meta?: ResponseMeta;
11128
+ }>, readonly []> & LeafSummary<"", "createActionRun", readonly [PropertyPlugin<"connections", ConnectionsProvider> & PluginSummary<"zapier/connections", never>, PropertyPlugin<"manifest", ManifestProvider> & PluginSummary<"zapier/manifest", never>, PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>, MethodPlugin<"getAction", {
11129
+ app: string;
11130
+ actionType: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run";
11131
+ action: string;
11132
+ } | {
11133
+ appKey: string;
11134
+ actionType: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run";
11135
+ actionKey: string;
11136
+ }, Promise<{
11137
+ data: {
11138
+ description: string;
11139
+ key: string;
11140
+ app_key: string;
11141
+ action_type: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run";
11142
+ title: string;
11143
+ type: "action";
11144
+ is_hidden?: boolean | undefined;
11145
+ id?: string | undefined;
11146
+ is_important?: boolean | undefined;
11147
+ app_version?: string | undefined;
11148
+ };
11149
+ meta?: ResponseMeta;
11150
+ }>, readonly []> & LeafSummary<"", "getAction", readonly [MethodPlugin<"listActions", ({
11151
+ app: string;
11152
+ actionType?: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run" | undefined;
11153
+ pageSize?: number | undefined;
11154
+ maxItems?: number | undefined;
11155
+ cursor?: string | undefined;
11156
+ } | {
11157
+ appKey: string;
11158
+ actionType?: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run" | undefined;
11159
+ pageSize?: number | undefined;
11160
+ maxItems?: number | undefined;
11161
+ cursor?: string | undefined;
11162
+ }) & {
11163
+ cursor?: string;
11164
+ pageSize?: number;
11165
+ } & {
11166
+ maxItems?: number;
11167
+ }, PaginatedSdkResult<{
11168
+ description: string;
11169
+ key: string;
11170
+ app_key: string;
11171
+ action_type: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run";
11172
+ title: string;
11173
+ type: "action";
11174
+ is_hidden?: boolean | undefined;
11175
+ id?: string | undefined;
11176
+ is_important?: boolean | undefined;
11177
+ app_version?: string | undefined;
11178
+ }>, readonly []> & LeafSummary<"", "listActions", readonly [PropertyPlugin<"manifest", ManifestProvider> & PluginSummary<"zapier/manifest", never>, PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>]>]>;
11179
+ } & {
11180
+ getActionRun: MethodPlugin<"getActionRun", {
11181
+ run: string;
11182
+ }, Promise<{
11183
+ data: {
11184
+ id: string;
11185
+ status: string;
11186
+ results: unknown[];
11187
+ errors: {
11188
+ code?: string | undefined;
11189
+ title?: string | null | undefined;
11190
+ detail?: string | undefined;
11191
+ }[];
11192
+ next_page?: string | undefined;
11193
+ };
11194
+ meta?: ResponseMeta;
11195
+ }>, readonly []> & LeafSummary<"", "getActionRun", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
10969
11196
  } & {
10970
11197
  runAction: MethodPlugin<"runAction", ({
10971
11198
  app: string;
@@ -10998,7 +11225,21 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
10998
11225
  pageSize?: number;
10999
11226
  } & {
11000
11227
  maxItems?: number;
11001
- }, PaginatedSdkResult<unknown>, readonly []> & LeafSummary<"", "runAction", readonly [PropertyPlugin<"connections", ConnectionsProvider> & PluginSummary<"zapier/connections", never>, PropertyPlugin<"manifest", ManifestProvider> & PluginSummary<"zapier/manifest", never>, PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>, MethodPlugin<"getAction", {
11228
+ }, PaginatedSdkResult<unknown>, readonly []> & LeafSummary<"", "runAction", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>, PropertyPlugin<"connections", ConnectionsProvider> & PluginSummary<"zapier/connections", never>, MethodPlugin<"createActionRun", {
11229
+ app: string;
11230
+ actionType: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run";
11231
+ action: string;
11232
+ connection?: string | number | undefined;
11233
+ inputs?: Record<string, unknown> | undefined;
11234
+ page?: string | undefined;
11235
+ callbackUrl?: string | undefined;
11236
+ }, Promise<{
11237
+ data: {
11238
+ id: string;
11239
+ implementation_id: string;
11240
+ };
11241
+ meta?: ResponseMeta;
11242
+ }>, readonly []> & LeafSummary<"", "createActionRun", readonly [PropertyPlugin<"connections", ConnectionsProvider> & PluginSummary<"zapier/connections", never>, PropertyPlugin<"manifest", ManifestProvider> & PluginSummary<"zapier/manifest", never>, PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>, MethodPlugin<"getAction", {
11002
11243
  app: string;
11003
11244
  actionType: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run";
11004
11245
  action: string;
@@ -11048,7 +11289,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
11048
11289
  id?: string | undefined;
11049
11290
  is_important?: boolean | undefined;
11050
11291
  app_version?: string | undefined;
11051
- }>, readonly []> & LeafSummary<"", "listActions", readonly [PropertyPlugin<"manifest", ManifestProvider> & PluginSummary<"zapier/manifest", never>, PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>]>]>;
11292
+ }>, readonly []> & LeafSummary<"", "listActions", readonly [PropertyPlugin<"manifest", ManifestProvider> & PluginSummary<"zapier/manifest", never>, PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>]>]>]>;
11052
11293
  } & {
11053
11294
  fetch: MethodPlugin<"fetch", {
11054
11295
  url: string | URL;
@@ -11103,7 +11344,21 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
11103
11344
  pageSize?: number;
11104
11345
  } & {
11105
11346
  maxItems?: number;
11106
- }, PaginatedSdkResult<unknown>, readonly []> & LeafSummary<"", "runAction", readonly [PropertyPlugin<"connections", ConnectionsProvider> & PluginSummary<"zapier/connections", never>, PropertyPlugin<"manifest", ManifestProvider> & PluginSummary<"zapier/manifest", never>, PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>, MethodPlugin<"getAction", {
11347
+ }, PaginatedSdkResult<unknown>, readonly []> & LeafSummary<"", "runAction", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>, PropertyPlugin<"connections", ConnectionsProvider> & PluginSummary<"zapier/connections", never>, MethodPlugin<"createActionRun", {
11348
+ app: string;
11349
+ actionType: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run";
11350
+ action: string;
11351
+ connection?: string | number | undefined;
11352
+ inputs?: Record<string, unknown> | undefined;
11353
+ page?: string | undefined;
11354
+ callbackUrl?: string | undefined;
11355
+ }, Promise<{
11356
+ data: {
11357
+ id: string;
11358
+ implementation_id: string;
11359
+ };
11360
+ meta?: ResponseMeta;
11361
+ }>, readonly []> & LeafSummary<"", "createActionRun", readonly [PropertyPlugin<"connections", ConnectionsProvider> & PluginSummary<"zapier/connections", never>, PropertyPlugin<"manifest", ManifestProvider> & PluginSummary<"zapier/manifest", never>, PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>, MethodPlugin<"getAction", {
11107
11362
  app: string;
11108
11363
  actionType: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run";
11109
11364
  action: string;
@@ -11153,7 +11408,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
11153
11408
  id?: string | undefined;
11154
11409
  is_important?: boolean | undefined;
11155
11410
  app_version?: string | undefined;
11156
- }>, readonly []> & LeafSummary<"", "listActions", readonly [PropertyPlugin<"manifest", ManifestProvider> & PluginSummary<"zapier/manifest", never>, PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>]>]>]>;
11411
+ }>, readonly []> & LeafSummary<"", "listActions", readonly [PropertyPlugin<"manifest", ManifestProvider> & PluginSummary<"zapier/manifest", never>, PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>]>]>]>]>;
11157
11412
  } & {
11158
11413
  listTriggerInboxes: MethodPlugin<"listTriggerInboxes", {
11159
11414
  key?: string | undefined;
@@ -12034,7 +12289,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
12034
12289
  }[];
12035
12290
  meta?: ResponseMeta;
12036
12291
  }>, readonly []> & LeafSummary<"", "updateTableRecords", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
12037
- }> & 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">;
12292
+ }> & 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" | "createActionRun" | "runAction" | "getActionInputFieldsSchema" | "createClientCredentials" | "deleteClientCredentials" | "getConnection" | "findFirstConnection" | "findUniqueConnection" | "listAuthentications" | "getAuthentication" | "findFirstAuthentication" | "findUniqueAuthentication" | "getActionRun" | "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">;
12038
12293
  declare function createZapierSdk(options?: ZapierSdkOptions): {
12039
12294
  getRegistry: (input?: {
12040
12295
  package?: string | undefined;
@@ -12870,6 +13125,37 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
12870
13125
  sample?: string | undefined;
12871
13126
  value?: string | undefined;
12872
13127
  }>;
13128
+ createActionRun: (input: {
13129
+ app: string;
13130
+ actionType: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run";
13131
+ action: string;
13132
+ connection?: string | number | undefined;
13133
+ inputs?: Record<string, unknown> | undefined;
13134
+ page?: string | undefined;
13135
+ callbackUrl?: string | undefined;
13136
+ }) => Promise<{
13137
+ data: {
13138
+ id: string;
13139
+ implementation_id: string;
13140
+ };
13141
+ meta?: ResponseMeta;
13142
+ }>;
13143
+ getActionRun: (input: {
13144
+ run: string;
13145
+ }) => Promise<{
13146
+ data: {
13147
+ id: string;
13148
+ status: string;
13149
+ results: unknown[];
13150
+ errors: {
13151
+ code?: string | undefined;
13152
+ title?: string | null | undefined;
13153
+ detail?: string | undefined;
13154
+ }[];
13155
+ next_page?: string | undefined;
13156
+ };
13157
+ meta?: ResponseMeta;
13158
+ }>;
12873
13159
  runAction: (input: ({
12874
13160
  app: string;
12875
13161
  actionType: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run";
@@ -13786,6 +14072,10 @@ declare const DEFAULT_PAGE_SIZE = 100;
13786
14072
  * Default timeout for action execution (in milliseconds)
13787
14073
  */
13788
14074
  declare const DEFAULT_ACTION_TIMEOUT_MILLISECONDS = 180000;
14075
+ /**
14076
+ * Actions API collection that action runs are created in and fetched from.
14077
+ */
14078
+ declare const ACTION_RUNS_PATH = "/zapier/api/actions/v1/runs";
13789
14079
  /**
13790
14080
  * Network retry configuration from environment variables
13791
14081
  */
@@ -14201,4 +14491,4 @@ declare function getAgent(): string | null;
14201
14491
  */
14202
14492
  declare const registryPlugin: (_sdk: {}) => {};
14203
14493
 
14204
- 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, runWithCallerContext 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, getNegatable as a7, type NegatableMetadata as a8, createFunction as a9, sdkOptionsPluginRef as aA, type FormattedItem as aB, type BoundFormatter as aC, type Formatter as aD, type OutputFormatter as aE, type Resolver$1 as aF, type ArrayResolver$1 as aG, type ResolverMetadata as aH, type StaticResolver$1 as aI, type DynamicResolver$1 as aJ, type DynamicListResolver as aK, type DynamicSearchResolver as aL, type FieldsResolver as aM, type Resolver as aN, type DynamicMember as aO, type PluginSurface as aP, createController as aQ, type ControllerQuestion as aR, type ControllerAction as aS, type ControllerAnswerFn as aT, type ControllerChoice as aU, type ControllerMethodSummary as aV, type ControllerMethodDescription as aW, type ControllerParameterDescription as aX, runInMethodScope as aY, runWithTelemetryContext as aZ, getCallerContext as a_, createPaginatedFunction as aa, createPluginStack as ab, createCorePlugin as ac, addPlugin as ad, disposeSdk as ae, CoreDisposeError as af, createSdk as ag, CONTEXT as ah, resolvePlugin as ai, fromFunctionPlugin as aj, defineLegacyMerge as ak, getContext as al, declarePlugin as am, defineMethod as an, defineMethodOverride as ao, defineProperty as ap, defineResolver as aq, defineFormatter as ar, declareMethod as as, declareProperty as at, declareOptionalProperty as au, selectExports as av, omitExports as aw, getRegistryPlugin as ax, zapierSdkPlugin as ay, SDK_OPTIONS_ID as az, type ApiClient as b, AuthenticationIdPropertySchema as b$, type CallerContext as b0, toSnakeCase as b1, toTitleCase as b2, batch as b3, type BatchOptions as b4, buildCapabilityMessage as b5, logDeprecation as b6, resetDeprecationWarnings as b7, RelayRequestSchema as b8, RelayFetchSchema as b9, getAgent as bA, registryPlugin as bB, type RequestOptions as bC, type PollOptions as bD, createZapierApi as bE, getOrCreateApiClient as bF, isPermanentHttpError as bG, type SseMessage as bH, type JsonSseMessage as bI, DEPRECATION_NOTICE_EVENT as bJ, type DeprecationNoticePayload as bK, type AppItem as bL, type ConnectionItem as bM, type ActionItem$1 as bN, type InputFieldItem as bO, type InfoFieldItem as bP, type RootFieldItem as bQ, type UserProfileItem as bR, type SdkPage as bS, type PaginatedSdkFunction as bT, AppKeyPropertySchema as bU, AppPropertySchema as bV, ActionTypePropertySchema as bW, ActionKeyPropertySchema as bX, ActionPropertySchema as bY, InputFieldPropertySchema as bZ, ConnectionIdPropertySchema as b_, createZapierSdkWithoutRegistry as ba, zapierCoreOptions as bb, CORE_OPTIONS_ID as bc, type FunctionRegistryEntry as bd, type FunctionDeprecation as be, BaseSdkOptionsSchema as bf, isCoreError as bg, getCoreErrorCode as bh, getCoreErrorCause as bi, CORE_ERROR_SYMBOL as bj, CoreErrorCode as bk, CoreSignal as bl, CoreCancelledSignal as bm, isCoreSignal as bn, isCoreCancelledSignal as bo, CORE_SIGNAL_SYMBOL as bp, type Plugin as bq, type PluginProvides as br, type MethodOverridePlugin as bs, definePlugin as bt, createPluginMethod as bu, createPaginatedPluginMethod as bv, composePlugins as bw, type ActionItem as bx, type ActionTypeItem as by, type ResolvedAppLocator as bz, type PluginSummary as c, ZapierBundleError as c$, ConnectionPropertySchema as c0, InputsPropertySchema as c1, LimitPropertySchema as c2, OffsetPropertySchema as c3, OutputPropertySchema as c4, DebugPropertySchema as c5, ParamsPropertySchema as c6, ActionTimeoutSecondsPropertySchema as c7, ActionTimeoutMillisecondsPropertySchema as c8, TablePropertySchema as c9, type ParamsProperty as cA, type ActionTimeoutSecondsProperty as cB, type ActionTimeoutMillisecondsProperty as cC, type TableProperty as cD, type RecordProperty as cE, type RecordsProperty as cF, type FieldsProperty as cG, type AppsProperty as cH, type TablesProperty as cI, type ConnectionsProperty as cJ, type TriggerInboxProperty as cK, type TriggerInboxKeyProperty as cL, type TriggerInboxNameProperty as cM, type LeaseProperty as cN, type LeaseSecondsProperty as cO, type LeaseLimitProperty as cP, type ErrorOptions as cQ, ZapierError as cR, ZapierValidationError as cS, ZapierUnknownError as cT, ZapierAuthenticationError as cU, zapierAdaptError as cV, ZapierApiError as cW, ZapierAppNotFoundError as cX, ZapierNotFoundError as cY, ZapierResourceNotFoundError as cZ, ZapierConfigurationError as c_, RecordPropertySchema as ca, RecordsPropertySchema as cb, FieldsPropertySchema as cc, AppsPropertySchema as cd, TablesPropertySchema as ce, ConnectionsPropertySchema as cf, TriggerInboxPropertySchema as cg, TriggerInboxKeyPropertySchema as ch, TriggerInboxNamePropertySchema as ci, LeasePropertySchema as cj, LeaseSecondsPropertySchema as ck, LeaseLimitPropertySchema as cl, type AppKeyProperty as cm, type AppProperty as cn, type ActionTypeProperty as co, type ActionKeyProperty as cp, type ActionProperty as cq, type InputFieldProperty as cr, type ConnectionIdProperty as cs, type ConnectionProperty as ct, type AuthenticationIdProperty as cu, type InputsProperty as cv, type LimitProperty as cw, type OffsetProperty as cx, type OutputProperty as cy, type DebugProperty as cz, type PaginatedSdkResult as d, type ManifestEntry as d$, ZapierTimeoutError as d0, ZapierActionError as d1, ZapierConflictError as d2, type RateLimitInfo as d3, ZapierRateLimitError as d4, type ApprovalStatus as d5, ZapierApprovalError as d6, ZapierRelayError as d7, isZapierError as d8, isZapierValidationError as d9, listActionInputFieldChoicesPlugin as dA, getActionInputFieldsSchemaPlugin as dB, listConnectionsPlugin as dC, type ListConnectionsPluginProvides as dD, listClientCredentialsPlugin as dE, createClientCredentialsPlugin as dF, deleteClientCredentialsPlugin as dG, getAppPlugin as dH, getActionPlugin as dI, getConnectionPlugin as dJ, findFirstConnectionPlugin as dK, findUniqueConnectionPlugin as dL, CONTEXT_CACHE_TTL_MILLISECONDS as dM, CONTEXT_CACHE_MAX_SIZE as dN, runActionPlugin as dO, type RunActionPluginProvides as dP, requestPlugin as dQ, type ManifestPluginOptions as dR, readManifestFromFile as dS, getPreferredManifestEntryKey as dT, findManifestEntry as dU, MANIFEST_ID as dV, manifestPluginRef as dW, manifestPlugin as dX, type UpdateManifestEntryOptions as dY, type UpdateManifestEntryResult as dZ, DEFAULT_CONFIG_PATH as d_, isZapierAuthenticationError as da, isZapierAppNotFoundError as db, isZapierNotFoundError as dc, isZapierResourceNotFoundError as dd, isZapierConflictError as de, isZapierTimeoutError as df, isZapierBundleError as dg, isZapierActionError as dh, isZapierRateLimitError as di, isZapierApprovalError as dj, formatErrorMessage as dk, type CoreApiError as dl, ZapierSignal as dm, isZapierSignal as dn, appsPlugin as dp, type ActionExecutionOptions as dq, type AppFactoryInput as dr, type FetchPluginProvides as ds, fetchPlugin as dt, listAppsPlugin as du, type ListAppsPluginProvides as dv, listActionsPlugin as dw, type ListActionsPluginProvides as dx, listActionInputFieldsPlugin as dy, type ListActionInputFieldsPluginProvides as dz, type ManifestProvider as e, isCredentialsObject as e$, type ActionEntry as e0, getProfilePlugin as e1, type GetProfilePluginProvides as e2, type ApiPluginOptions as e3, type ResolveCredentialsFn as e4, API_ID as e5, apiPluginRef as e6, apiPlugin as e7, RESOLVE_CREDENTIALS_ID as e8, resolveCredentialsPluginRef as e9, tableFiltersResolver as eA, tableSortResolver as eB, type ResolveAuthTokenOptions as eC, AuthMechanism as eD, type ResolvedAuth as eE, clearTokenCache as eF, invalidateCachedToken as eG, injectCliLogin as eH, isCliLoginAvailable as eI, getTokenFromCliLogin as eJ, resolveAuth as eK, resolveAuthToken as eL, invalidateCredentialsToken as eM, type ZapierCacheEntry as eN, type ZapierCacheSetOptions as eO, createMemoryCache as eP, type SdkEvent as eQ, type AuthEvent as eR, type ApiEvent as eS, type LoadingEvent as eT, type Credentials as eU, type ResolvedCredentials as eV, type CredentialsObject as eW, type ClientCredentialsObject as eX, type PkceCredentialsObject as eY, isClientCredentials as eZ, isPkceCredentials as e_, resolveCredentialsPlugin as ea, appKeyResolver as eb, actionTypeResolver as ec, actionKeyResolver as ed, connectionIdResolver as ee, connectionIdGenericResolver as ef, inputsResolver as eg, inputsAllOptionalResolver as eh, inputFieldKeyResolver as ei, clientCredentialsNameResolver as ej, clientIdResolver as ek, tableIdResolver as el, triggerInboxResolver as em, workflowIdResolver as en, durableRunIdResolver as eo, workflowVersionIdResolver as ep, workflowDraftIdResolver as eq, workflowRunIdResolver as er, triggerMessagesResolver as es, tableRecordIdResolver as et, tableRecordIdsResolver as eu, tableFieldIdsResolver as ev, tableNameResolver as ew, tableFieldsResolver as ex, tableRecordsResolver as ey, tableUpdateRecordsResolver as ez, type CapabilitiesContext as f, createBaseEvent as f$, isCredentialsFunction as f0, type ResolveCredentialsOptions as f1, resolveCredentialsFromEnv as f2, resolveCredentials as f3, getBaseUrlFromCredentials as f4, getClientIdFromCredentials as f5, ClientCredentialsObjectSchema as f6, PkceCredentialsObjectSchema as f7, CredentialsObjectSchema as f8, ResolvedCredentialsSchema as f9, listTablesPlugin as fA, getTablePlugin as fB, createTablePlugin as fC, deleteTablePlugin as fD, listTableFieldsPlugin as fE, createTableFieldsPlugin as fF, deleteTableFieldsPlugin as fG, getTableRecordPlugin as fH, listTableRecordsPlugin as fI, createTableRecordsPlugin as fJ, deleteTableRecordsPlugin as fK, updateTableRecordsPlugin as fL, cleanupEventListeners as fM, type EventEmissionContext as fN, type EventEmitter as fO, EVENT_EMISSION_ID as fP, eventEmissionPluginRef as fQ, eventEmissionPlugin as fR, eventEmissionHookPlugin as fS, type EventTransport as fT, type EventContext as fU, type ApplicationLifecycleEventData as fV, type EnhancedErrorEventData as fW, type MethodCalledEventData as fX, buildApplicationLifecycleEvent as fY, buildErrorEventWithContext as fZ, buildErrorEvent as f_, CredentialsFunctionSchema as fa, type CredentialsFunction as fb, CredentialsSchema as fc, ConnectionEntrySchema as fd, type ConnectionEntry as fe, ConnectionsMapSchema as ff, type ConnectionsMap as fg, type ResolveConnection as fh, CONNECTIONS_ID as fi, connectionsPluginRef as fj, connectionsPlugin as fk, ZAPIER_BASE_URL as fl, getZapierSdkService as fm, MAX_PAGE_LIMIT as fn, DEFAULT_PAGE_SIZE as fo, DEFAULT_ACTION_TIMEOUT_MILLISECONDS as fp, ZAPIER_MAX_NETWORK_RETRIES as fq, ZAPIER_MAX_NETWORK_RETRY_DELAY_MILLISECONDS as fr, MAX_CONCURRENCY_LIMIT as fs, parseConcurrencyEnvVar as ft, ZAPIER_MAX_CONCURRENT_REQUESTS as fu, getZapierApprovalMode as fv, getZapierOpenAutoModeApprovalsInBrowser as fw, getZapierDefaultApprovalMode as fx, DEFAULT_APPROVAL_TIMEOUT_MILLISECONDS as fy, DEFAULT_MAX_APPROVAL_RETRIES as fz, type CoreOptions as g, buildMethodCalledEvent as g0, type BaseEvent as g1, type MethodCalledEvent as g2, operationAnnotatorPlugin as g3, generateEventId as g4, getCurrentTimestamp as g5, getReleaseId as g6, getOsInfo as g7, getPlatformVersions as g8, isCi as g9, getCiPlatform as ga, getMemoryUsage as gb, getCpuTime as gc, getTtyContext as gd, createZapierSdk as ge, type ZapierSdkOptions as gf, type ZapierSdk as gg, 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 };
14494
+ 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, runWithCallerContext 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, getNegatable as a7, type NegatableMetadata as a8, createFunction as a9, sdkOptionsPluginRef as aA, type FormattedItem as aB, type BoundFormatter as aC, type Formatter as aD, type OutputFormatter as aE, type Resolver$1 as aF, type ArrayResolver$1 as aG, type ResolverMetadata as aH, type StaticResolver$1 as aI, type DynamicResolver$1 as aJ, type DynamicListResolver as aK, type DynamicSearchResolver as aL, type FieldsResolver as aM, type Resolver as aN, type DynamicMember as aO, type PluginSurface as aP, createController as aQ, type ControllerQuestion as aR, type ControllerAction as aS, type ControllerAnswerFn as aT, type ControllerChoice as aU, type ControllerMethodSummary as aV, type ControllerMethodDescription as aW, type ControllerParameterDescription as aX, runInMethodScope as aY, runWithTelemetryContext as aZ, getCallerContext as a_, createPaginatedFunction as aa, createPluginStack as ab, createCorePlugin as ac, addPlugin as ad, disposeSdk as ae, CoreDisposeError as af, createSdk as ag, CONTEXT as ah, resolvePlugin as ai, fromFunctionPlugin as aj, defineLegacyMerge as ak, getContext as al, declarePlugin as am, defineMethod as an, defineMethodOverride as ao, defineProperty as ap, defineResolver as aq, defineFormatter as ar, declareMethod as as, declareProperty as at, declareOptionalProperty as au, selectExports as av, omitExports as aw, getRegistryPlugin as ax, zapierSdkPlugin as ay, SDK_OPTIONS_ID as az, type ApiClient as b, AuthenticationIdPropertySchema as b$, type CallerContext as b0, toSnakeCase as b1, toTitleCase as b2, batch as b3, type BatchOptions as b4, buildCapabilityMessage as b5, logDeprecation as b6, resetDeprecationWarnings as b7, RelayRequestSchema as b8, RelayFetchSchema as b9, getAgent as bA, registryPlugin as bB, type RequestOptions as bC, type PollOptions as bD, createZapierApi as bE, getOrCreateApiClient as bF, isPermanentHttpError as bG, type SseMessage as bH, type JsonSseMessage as bI, DEPRECATION_NOTICE_EVENT as bJ, type DeprecationNoticePayload as bK, type AppItem as bL, type ConnectionItem as bM, type ActionItem$1 as bN, type InputFieldItem as bO, type InfoFieldItem as bP, type RootFieldItem as bQ, type UserProfileItem as bR, type SdkPage as bS, type PaginatedSdkFunction as bT, AppKeyPropertySchema as bU, AppPropertySchema as bV, ActionTypePropertySchema as bW, ActionKeyPropertySchema as bX, ActionPropertySchema as bY, InputFieldPropertySchema as bZ, ConnectionIdPropertySchema as b_, createZapierSdkWithoutRegistry as ba, zapierCoreOptions as bb, CORE_OPTIONS_ID as bc, type FunctionRegistryEntry as bd, type FunctionDeprecation as be, BaseSdkOptionsSchema as bf, isCoreError as bg, getCoreErrorCode as bh, getCoreErrorCause as bi, CORE_ERROR_SYMBOL as bj, CoreErrorCode as bk, CoreSignal as bl, CoreCancelledSignal as bm, isCoreSignal as bn, isCoreCancelledSignal as bo, CORE_SIGNAL_SYMBOL as bp, type Plugin as bq, type PluginProvides as br, type MethodOverridePlugin as bs, definePlugin as bt, createPluginMethod as bu, createPaginatedPluginMethod as bv, composePlugins as bw, type ActionItem as bx, type ActionTypeItem as by, type ResolvedAppLocator as bz, type PluginSummary as c, ZapierBundleError as c$, ConnectionPropertySchema as c0, InputsPropertySchema as c1, LimitPropertySchema as c2, OffsetPropertySchema as c3, OutputPropertySchema as c4, DebugPropertySchema as c5, ParamsPropertySchema as c6, ActionTimeoutSecondsPropertySchema as c7, ActionTimeoutMillisecondsPropertySchema as c8, TablePropertySchema as c9, type ParamsProperty as cA, type ActionTimeoutSecondsProperty as cB, type ActionTimeoutMillisecondsProperty as cC, type TableProperty as cD, type RecordProperty as cE, type RecordsProperty as cF, type FieldsProperty as cG, type AppsProperty as cH, type TablesProperty as cI, type ConnectionsProperty as cJ, type TriggerInboxProperty as cK, type TriggerInboxKeyProperty as cL, type TriggerInboxNameProperty as cM, type LeaseProperty as cN, type LeaseSecondsProperty as cO, type LeaseLimitProperty as cP, type ErrorOptions as cQ, ZapierError as cR, ZapierValidationError as cS, ZapierUnknownError as cT, ZapierAuthenticationError as cU, zapierAdaptError as cV, ZapierApiError as cW, ZapierAppNotFoundError as cX, ZapierNotFoundError as cY, ZapierResourceNotFoundError as cZ, ZapierConfigurationError as c_, RecordPropertySchema as ca, RecordsPropertySchema as cb, FieldsPropertySchema as cc, AppsPropertySchema as cd, TablesPropertySchema as ce, ConnectionsPropertySchema as cf, TriggerInboxPropertySchema as cg, TriggerInboxKeyPropertySchema as ch, TriggerInboxNamePropertySchema as ci, LeasePropertySchema as cj, LeaseSecondsPropertySchema as ck, LeaseLimitPropertySchema as cl, type AppKeyProperty as cm, type AppProperty as cn, type ActionTypeProperty as co, type ActionKeyProperty as cp, type ActionProperty as cq, type InputFieldProperty as cr, type ConnectionIdProperty as cs, type ConnectionProperty as ct, type AuthenticationIdProperty as cu, type InputsProperty as cv, type LimitProperty as cw, type OffsetProperty as cx, type OutputProperty as cy, type DebugProperty as cz, type PaginatedSdkResult as d, manifestPlugin as d$, ZapierTimeoutError as d0, ZapierActionError as d1, ZapierConflictError as d2, type RateLimitInfo as d3, ZapierRateLimitError as d4, type ApprovalStatus as d5, ZapierApprovalError as d6, ZapierRelayError as d7, isZapierError as d8, isZapierValidationError as d9, listActionInputFieldChoicesPlugin as dA, getActionInputFieldsSchemaPlugin as dB, listConnectionsPlugin as dC, type ListConnectionsPluginProvides as dD, listClientCredentialsPlugin as dE, createClientCredentialsPlugin as dF, deleteClientCredentialsPlugin as dG, getAppPlugin as dH, getActionPlugin as dI, getConnectionPlugin as dJ, findFirstConnectionPlugin as dK, findUniqueConnectionPlugin as dL, CONTEXT_CACHE_TTL_MILLISECONDS as dM, CONTEXT_CACHE_MAX_SIZE as dN, createActionRunPlugin as dO, type CreateActionRunPluginProvides as dP, getActionRunPlugin as dQ, type GetActionRunPluginProvides as dR, runActionPlugin as dS, type RunActionPluginProvides as dT, requestPlugin as dU, type ManifestPluginOptions as dV, readManifestFromFile as dW, getPreferredManifestEntryKey as dX, findManifestEntry as dY, MANIFEST_ID as dZ, manifestPluginRef as d_, isZapierAuthenticationError as da, isZapierAppNotFoundError as db, isZapierNotFoundError as dc, isZapierResourceNotFoundError as dd, isZapierConflictError as de, isZapierTimeoutError as df, isZapierBundleError as dg, isZapierActionError as dh, isZapierRateLimitError as di, isZapierApprovalError as dj, formatErrorMessage as dk, type CoreApiError as dl, ZapierSignal as dm, isZapierSignal as dn, appsPlugin as dp, type ActionExecutionOptions as dq, type AppFactoryInput as dr, type FetchPluginProvides as ds, fetchPlugin as dt, listAppsPlugin as du, type ListAppsPluginProvides as dv, listActionsPlugin as dw, type ListActionsPluginProvides as dx, listActionInputFieldsPlugin as dy, type ListActionInputFieldsPluginProvides as dz, type ManifestProvider as e, type ClientCredentialsObject as e$, type UpdateManifestEntryOptions as e0, type UpdateManifestEntryResult as e1, DEFAULT_CONFIG_PATH as e2, type ManifestEntry as e3, type ActionEntry as e4, getProfilePlugin as e5, type GetProfilePluginProvides as e6, type ApiPluginOptions as e7, type ResolveCredentialsFn as e8, API_ID as e9, tableNameResolver as eA, tableFieldsResolver as eB, tableRecordsResolver as eC, tableUpdateRecordsResolver as eD, tableFiltersResolver as eE, tableSortResolver as eF, type ResolveAuthTokenOptions as eG, AuthMechanism as eH, type ResolvedAuth as eI, clearTokenCache as eJ, invalidateCachedToken as eK, injectCliLogin as eL, isCliLoginAvailable as eM, getTokenFromCliLogin as eN, resolveAuth as eO, resolveAuthToken as eP, invalidateCredentialsToken as eQ, type ZapierCacheEntry as eR, type ZapierCacheSetOptions as eS, createMemoryCache as eT, type SdkEvent as eU, type AuthEvent as eV, type ApiEvent as eW, type LoadingEvent as eX, type Credentials as eY, type ResolvedCredentials as eZ, type CredentialsObject as e_, apiPluginRef as ea, apiPlugin as eb, RESOLVE_CREDENTIALS_ID as ec, resolveCredentialsPluginRef as ed, resolveCredentialsPlugin as ee, appKeyResolver as ef, actionTypeResolver as eg, actionKeyResolver as eh, connectionIdResolver as ei, connectionIdGenericResolver as ej, inputsResolver as ek, inputsAllOptionalResolver as el, inputFieldKeyResolver as em, clientCredentialsNameResolver as en, clientIdResolver as eo, tableIdResolver as ep, triggerInboxResolver as eq, workflowIdResolver as er, durableRunIdResolver as es, workflowVersionIdResolver as et, workflowDraftIdResolver as eu, workflowRunIdResolver as ev, triggerMessagesResolver as ew, tableRecordIdResolver as ex, tableRecordIdsResolver as ey, tableFieldIdsResolver as ez, type CapabilitiesContext as f, type EnhancedErrorEventData as f$, type PkceCredentialsObject as f0, isClientCredentials as f1, isPkceCredentials as f2, isCredentialsObject as f3, isCredentialsFunction as f4, type ResolveCredentialsOptions as f5, resolveCredentialsFromEnv as f6, resolveCredentials as f7, getBaseUrlFromCredentials as f8, getClientIdFromCredentials as f9, getZapierApprovalMode as fA, getZapierOpenAutoModeApprovalsInBrowser as fB, getZapierDefaultApprovalMode as fC, DEFAULT_APPROVAL_TIMEOUT_MILLISECONDS as fD, DEFAULT_MAX_APPROVAL_RETRIES as fE, listTablesPlugin as fF, getTablePlugin as fG, createTablePlugin as fH, deleteTablePlugin as fI, listTableFieldsPlugin as fJ, createTableFieldsPlugin as fK, deleteTableFieldsPlugin as fL, getTableRecordPlugin as fM, listTableRecordsPlugin as fN, createTableRecordsPlugin as fO, deleteTableRecordsPlugin as fP, updateTableRecordsPlugin as fQ, cleanupEventListeners as fR, type EventEmissionContext as fS, type EventEmitter as fT, EVENT_EMISSION_ID as fU, eventEmissionPluginRef as fV, eventEmissionPlugin as fW, eventEmissionHookPlugin as fX, type EventTransport as fY, type EventContext as fZ, type ApplicationLifecycleEventData as f_, ClientCredentialsObjectSchema as fa, PkceCredentialsObjectSchema as fb, CredentialsObjectSchema as fc, ResolvedCredentialsSchema as fd, CredentialsFunctionSchema as fe, type CredentialsFunction as ff, CredentialsSchema as fg, ConnectionEntrySchema as fh, type ConnectionEntry as fi, ConnectionsMapSchema as fj, type ConnectionsMap as fk, type ResolveConnection as fl, CONNECTIONS_ID as fm, connectionsPluginRef as fn, connectionsPlugin as fo, ZAPIER_BASE_URL as fp, getZapierSdkService as fq, MAX_PAGE_LIMIT as fr, DEFAULT_PAGE_SIZE as fs, DEFAULT_ACTION_TIMEOUT_MILLISECONDS as ft, ACTION_RUNS_PATH as fu, ZAPIER_MAX_NETWORK_RETRIES as fv, ZAPIER_MAX_NETWORK_RETRY_DELAY_MILLISECONDS as fw, MAX_CONCURRENCY_LIMIT as fx, parseConcurrencyEnvVar as fy, ZAPIER_MAX_CONCURRENT_REQUESTS as fz, type CoreOptions as g, type MethodCalledEventData as g0, buildApplicationLifecycleEvent as g1, buildErrorEventWithContext as g2, buildErrorEvent as g3, createBaseEvent as g4, buildMethodCalledEvent as g5, type BaseEvent as g6, type MethodCalledEvent as g7, operationAnnotatorPlugin as g8, generateEventId as g9, getCurrentTimestamp as ga, getReleaseId as gb, getOsInfo as gc, getPlatformVersions as gd, isCi as ge, getCiPlatform as gf, getMemoryUsage as gg, getCpuTime as gh, getTtyContext as gi, createZapierSdk as gj, type ZapierSdkOptions as gk, type ZapierSdk as gl, 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 };