@blocklet/server-js 1.17.8-beta-20260106-113136-b3c09e14 → 1.17.8-beta-20260108-120904-21cb5fb6
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 +14 -0
- package/dist/bundle.js +1 -1
- package/dist/report.html +2 -2
- package/dist/schema/graphql.json +66 -0
- package/dist/types.js +35 -0
- package/dist/types.js.map +1 -1
- package/docs/QUERIES.md +1447 -1
- package/lib/node.d.ts +14 -0
- package/lib/schema/graphql.json +66 -0
- package/lib/types.js +35 -0
- package/lib/types.js.map +1 -1
- package/package.json +4 -4
package/lib/node.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
|
}
|
package/lib/schema/graphql.json
CHANGED
|
@@ -4599,6 +4599,37 @@
|
|
|
4599
4599
|
"enumValues": null,
|
|
4600
4600
|
"possibleTypes": null
|
|
4601
4601
|
},
|
|
4602
|
+
{
|
|
4603
|
+
"kind": "INPUT_OBJECT",
|
|
4604
|
+
"name": "RequestConfigDidConnectActionsInput",
|
|
4605
|
+
"description": null,
|
|
4606
|
+
"fields": null,
|
|
4607
|
+
"inputFields": [
|
|
4608
|
+
{
|
|
4609
|
+
"name": "did",
|
|
4610
|
+
"description": null,
|
|
4611
|
+
"type": {
|
|
4612
|
+
"kind": "SCALAR",
|
|
4613
|
+
"name": "String",
|
|
4614
|
+
"ofType": null
|
|
4615
|
+
},
|
|
4616
|
+
"defaultValue": null
|
|
4617
|
+
},
|
|
4618
|
+
{
|
|
4619
|
+
"name": "actionConfig",
|
|
4620
|
+
"description": null,
|
|
4621
|
+
"type": {
|
|
4622
|
+
"kind": "SCALAR",
|
|
4623
|
+
"name": "String",
|
|
4624
|
+
"ofType": null
|
|
4625
|
+
},
|
|
4626
|
+
"defaultValue": null
|
|
4627
|
+
}
|
|
4628
|
+
],
|
|
4629
|
+
"interfaces": null,
|
|
4630
|
+
"enumValues": null,
|
|
4631
|
+
"possibleTypes": null
|
|
4632
|
+
},
|
|
4602
4633
|
{
|
|
4603
4634
|
"kind": "INPUT_OBJECT",
|
|
4604
4635
|
"name": "RequestConfigNavigationsInput",
|
|
@@ -18600,6 +18631,18 @@
|
|
|
18600
18631
|
},
|
|
18601
18632
|
"isDeprecated": false,
|
|
18602
18633
|
"deprecationReason": null
|
|
18634
|
+
},
|
|
18635
|
+
{
|
|
18636
|
+
"name": "actionConfig",
|
|
18637
|
+
"description": null,
|
|
18638
|
+
"args": [],
|
|
18639
|
+
"type": {
|
|
18640
|
+
"kind": "SCALAR",
|
|
18641
|
+
"name": "Any",
|
|
18642
|
+
"ofType": null
|
|
18643
|
+
},
|
|
18644
|
+
"isDeprecated": false,
|
|
18645
|
+
"deprecationReason": null
|
|
18603
18646
|
}
|
|
18604
18647
|
],
|
|
18605
18648
|
"inputFields": null,
|
|
@@ -36857,6 +36900,29 @@
|
|
|
36857
36900
|
"isDeprecated": false,
|
|
36858
36901
|
"deprecationReason": null
|
|
36859
36902
|
},
|
|
36903
|
+
{
|
|
36904
|
+
"name": "configDidConnectActions",
|
|
36905
|
+
"description": null,
|
|
36906
|
+
"args": [
|
|
36907
|
+
{
|
|
36908
|
+
"name": "input",
|
|
36909
|
+
"description": null,
|
|
36910
|
+
"type": {
|
|
36911
|
+
"kind": "INPUT_OBJECT",
|
|
36912
|
+
"name": "RequestConfigDidConnectActionsInput",
|
|
36913
|
+
"ofType": null
|
|
36914
|
+
},
|
|
36915
|
+
"defaultValue": null
|
|
36916
|
+
}
|
|
36917
|
+
],
|
|
36918
|
+
"type": {
|
|
36919
|
+
"kind": "OBJECT",
|
|
36920
|
+
"name": "ResponseBlocklet",
|
|
36921
|
+
"ofType": null
|
|
36922
|
+
},
|
|
36923
|
+
"isDeprecated": false,
|
|
36924
|
+
"deprecationReason": null
|
|
36925
|
+
},
|
|
36860
36926
|
{
|
|
36861
36927
|
"name": "configNotification",
|
|
36862
36928
|
"description": null,
|
package/lib/types.js
CHANGED
|
@@ -129,6 +129,7 @@
|
|
|
129
129
|
* // configNavigations,
|
|
130
130
|
* // configAuthentication,
|
|
131
131
|
* // configDidConnect,
|
|
132
|
+
* // configDidConnectActions,
|
|
132
133
|
* // configNotification,
|
|
133
134
|
* // configVault,
|
|
134
135
|
* // sendEmail,
|
|
@@ -1188,6 +1189,15 @@
|
|
|
1188
1189
|
* @property {Array<...ABTNodeClient.null>} configs
|
|
1189
1190
|
*/
|
|
1190
1191
|
|
|
1192
|
+
/**
|
|
1193
|
+
* Structure of ABTNodeClient.RequestConfigDidConnectActionsInput
|
|
1194
|
+
*
|
|
1195
|
+
* @memberof ABTNodeClient
|
|
1196
|
+
* @typedef {object} ABTNodeClient.RequestConfigDidConnectActionsInput
|
|
1197
|
+
* @property {string} did
|
|
1198
|
+
* @property {string} actionConfig
|
|
1199
|
+
*/
|
|
1200
|
+
|
|
1191
1201
|
/**
|
|
1192
1202
|
* Structure of ABTNodeClient.RequestConfigDidConnectInput
|
|
1193
1203
|
*
|
|
@@ -3883,6 +3893,7 @@
|
|
|
3883
3893
|
* @property {...ABTNodeClient.OrgSettings} org
|
|
3884
3894
|
* @property {any} didConnect
|
|
3885
3895
|
* @property {any} oauth
|
|
3896
|
+
* @property {any} actionConfig
|
|
3886
3897
|
*/
|
|
3887
3898
|
|
|
3888
3899
|
/**
|
|
@@ -4514,6 +4525,7 @@
|
|
|
4514
4525
|
* @property {...ABTNodeClient.ResponseBlocklet} configNavigations
|
|
4515
4526
|
* @property {...ABTNodeClient.ResponseBlocklet} configAuthentication
|
|
4516
4527
|
* @property {...ABTNodeClient.ResponseBlocklet} configDidConnect
|
|
4528
|
+
* @property {...ABTNodeClient.ResponseBlocklet} configDidConnectActions
|
|
4517
4529
|
* @property {...ABTNodeClient.ResponseBlocklet} configNotification
|
|
4518
4530
|
* @property {...ABTNodeClient.ResponseConfigVault} configVault
|
|
4519
4531
|
* @property {...ABTNodeClient.GeneralResponse} sendEmail
|
|
@@ -8654,6 +8666,19 @@
|
|
|
8654
8666
|
* @property {...ABTNodeClient.RequestConfigDidConnectInput} input
|
|
8655
8667
|
*/
|
|
8656
8668
|
|
|
8669
|
+
/**
|
|
8670
|
+
* Structure of ABTNodeClient.ConfigDidConnectActionsParams
|
|
8671
|
+
*
|
|
8672
|
+
* Checkout the following snippet for the format of ConfigDidConnectActionsParams:
|
|
8673
|
+
* ```json
|
|
8674
|
+
{}
|
|
8675
|
+
* ```
|
|
8676
|
+
*
|
|
8677
|
+
* @memberof ABTNodeClient
|
|
8678
|
+
* @typedef {object} ABTNodeClient.ConfigDidConnectActionsParams
|
|
8679
|
+
* @property {...ABTNodeClient.RequestConfigDidConnectActionsInput} input
|
|
8680
|
+
*/
|
|
8681
|
+
|
|
8657
8682
|
/**
|
|
8658
8683
|
* Structure of ABTNodeClient.ConfigNotificationParams
|
|
8659
8684
|
*
|
|
@@ -11368,6 +11393,16 @@
|
|
|
11368
11393
|
* @returns {Promise<ABTNodeClient.ResponseBlocklet>} Checkout {@link ABTNodeClient.ResponseBlocklet} for resolved data format
|
|
11369
11394
|
*/
|
|
11370
11395
|
|
|
11396
|
+
/**
|
|
11397
|
+
* configDidConnectActions
|
|
11398
|
+
*
|
|
11399
|
+
* @name ABTNodeClient#configDidConnectActions
|
|
11400
|
+
* @param {ABTNodeClient.ConfigDidConnectActionsParams} params
|
|
11401
|
+
* @function
|
|
11402
|
+
* @memberof ABTNodeClient
|
|
11403
|
+
* @returns {Promise<ABTNodeClient.ResponseBlocklet>} Checkout {@link ABTNodeClient.ResponseBlocklet} for resolved data format
|
|
11404
|
+
*/
|
|
11405
|
+
|
|
11371
11406
|
/**
|
|
11372
11407
|
* configNotification
|
|
11373
11408
|
*
|