@blocklet/server-js 1.17.8-beta-20260106-113136-b3c09e14 → 1.17.8-beta-20260108-021819-e099f0ca

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/browser.d.ts CHANGED
@@ -260,6 +260,9 @@ declare class ABTNodeClient {
260
260
  params: PartialDeep<ABTNodeClient.ConfigAuthenticationParams>
261
261
  ): Promise<ABTNodeClient.ResponseBlocklet>;
262
262
  configDidConnect(params: PartialDeep<ABTNodeClient.ConfigDidConnectParams>): Promise<ABTNodeClient.ResponseBlocklet>;
263
+ configDidConnectActions(
264
+ params: PartialDeep<ABTNodeClient.ConfigDidConnectActionsParams>
265
+ ): Promise<ABTNodeClient.ResponseBlocklet>;
263
266
  configNotification(
264
267
  params: PartialDeep<ABTNodeClient.ConfigNotificationParams>
265
268
  ): Promise<ABTNodeClient.ResponseBlocklet>;
@@ -1262,6 +1265,11 @@ declare namespace ABTNodeClient {
1262
1265
  configs: ABTNodeClient.ConfigEntryInput[];
1263
1266
  }
1264
1267
 
1268
+ interface RequestConfigDidConnectActionsInput {
1269
+ did: string;
1270
+ actionConfig: string;
1271
+ }
1272
+
1265
1273
  interface RequestConfigDidConnectInput {
1266
1274
  did: string;
1267
1275
  didConnect: string;
@@ -3001,6 +3009,7 @@ declare namespace ABTNodeClient {
3001
3009
  org: ABTNodeClient.OrgSettings;
3002
3010
  didConnect: Record<string, any>;
3003
3011
  oauth: Record<string, any>;
3012
+ actionConfig: Record<string, any>;
3004
3013
  }
3005
3014
 
3006
3015
  interface BlockletState {
@@ -3452,6 +3461,7 @@ declare namespace ABTNodeClient {
3452
3461
  configNavigations: ABTNodeClient.ResponseBlocklet;
3453
3462
  configAuthentication: ABTNodeClient.ResponseBlocklet;
3454
3463
  configDidConnect: ABTNodeClient.ResponseBlocklet;
3464
+ configDidConnectActions: ABTNodeClient.ResponseBlocklet;
3455
3465
  configNotification: ABTNodeClient.ResponseBlocklet;
3456
3466
  configVault: ABTNodeClient.ResponseConfigVault;
3457
3467
  sendEmail: ABTNodeClient.GeneralResponse;
@@ -5477,6 +5487,10 @@ declare namespace ABTNodeClient {
5477
5487
  input: ABTNodeClient.RequestConfigDidConnectInput;
5478
5488
  }
5479
5489
 
5490
+ interface ConfigDidConnectActionsParams {
5491
+ input: ABTNodeClient.RequestConfigDidConnectActionsInput;
5492
+ }
5493
+
5480
5494
  interface ConfigNotificationParams {
5481
5495
  input: ABTNodeClient.RequestConfigNotificationInput;
5482
5496
  }