@lepsto/sdk-app 89.2.0 → 89.4.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.
- package/CHANGELOG.md +28 -15
- package/dist/_types/gen/client.gen.d.ts +48 -1
- package/dist/_types/gen/mail/index.d.ts +1 -1
- package/dist/_types/gen/mail/queryOptions.gen.d.ts +25 -1
- package/dist/_types/gen/manifest.gen.d.ts +1 -1
- package/dist/_types/gen/playground/connect.gen.d.ts +3 -0
- package/dist/_types/gen/playground/index.d.ts +3 -0
- package/dist/_types/gen/playground/queryOptions.gen.d.ts +70 -0
- package/dist/_types/gen/types.gen.d.ts +782 -19
- package/dist/chunk-ZH37YJ7E.js +11502 -0
- package/dist/chunk-ZH37YJ7E.js.map +1 -0
- package/dist/index.cjs +339 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +36 -11189
- package/dist/index.js.map +1 -1
- package/dist/mail/index.cjs +30 -0
- package/dist/mail/index.cjs.map +1 -1
- package/dist/mail/index.js +25 -1
- package/dist/mail/index.js.map +1 -1
- package/dist/playground/index.cjs +106 -0
- package/dist/playground/index.cjs.map +1 -0
- package/dist/playground/index.d.cts +1 -0
- package/dist/playground/index.d.ts +1 -0
- package/dist/playground/index.js +78 -0
- package/dist/playground/index.js.map +1 -0
- package/package.json +12 -2
- package/src/gen/bindings.gen.ts +314 -3
- package/src/gen/client.gen.ts +93 -0
- package/src/gen/mail/index.ts +1 -1
- package/src/gen/mail/queryOptions.gen.ts +38 -0
- package/src/gen/manifest.gen.ts +35 -3
- package/src/gen/playground/connect.gen.ts +9 -0
- package/src/gen/playground/index.ts +4 -0
- package/src/gen/playground/queryOptions.gen.ts +119 -0
- package/src/gen/types.gen.ts +1102 -282
package/dist/index.cjs
CHANGED
|
@@ -5030,6 +5030,19 @@ var bindings = {
|
|
|
5030
5030
|
}
|
|
5031
5031
|
},
|
|
5032
5032
|
"template": {
|
|
5033
|
+
"archive": {
|
|
5034
|
+
"level": "write",
|
|
5035
|
+
"method": "POST",
|
|
5036
|
+
"operationKey": "mail_template_archive",
|
|
5037
|
+
"params": [
|
|
5038
|
+
{
|
|
5039
|
+
"in": "path",
|
|
5040
|
+
"name": "id"
|
|
5041
|
+
}
|
|
5042
|
+
],
|
|
5043
|
+
"path": "/mail/templates/:id/archive",
|
|
5044
|
+
"readOnly": false
|
|
5045
|
+
},
|
|
5033
5046
|
"create": {
|
|
5034
5047
|
"level": "write",
|
|
5035
5048
|
"method": "POST",
|
|
@@ -5089,6 +5102,12 @@ var bindings = {
|
|
|
5089
5102
|
"level": "read",
|
|
5090
5103
|
"method": "GET",
|
|
5091
5104
|
"operationKey": "mail_template_list",
|
|
5105
|
+
"params": [
|
|
5106
|
+
{
|
|
5107
|
+
"in": "query",
|
|
5108
|
+
"name": "include_archived"
|
|
5109
|
+
}
|
|
5110
|
+
],
|
|
5092
5111
|
"path": "/mail/templates",
|
|
5093
5112
|
"readOnly": true
|
|
5094
5113
|
},
|
|
@@ -5105,6 +5124,36 @@ var bindings = {
|
|
|
5105
5124
|
"path": "/mail/templates/:id/publish",
|
|
5106
5125
|
"readOnly": false
|
|
5107
5126
|
},
|
|
5127
|
+
"restore": {
|
|
5128
|
+
"level": "write",
|
|
5129
|
+
"method": "POST",
|
|
5130
|
+
"operationKey": "mail_template_restore",
|
|
5131
|
+
"params": [
|
|
5132
|
+
{
|
|
5133
|
+
"in": "path",
|
|
5134
|
+
"name": "id"
|
|
5135
|
+
},
|
|
5136
|
+
{
|
|
5137
|
+
"in": "path",
|
|
5138
|
+
"name": "revision"
|
|
5139
|
+
}
|
|
5140
|
+
],
|
|
5141
|
+
"path": "/mail/templates/:id/revisions/:revision/restore",
|
|
5142
|
+
"readOnly": false
|
|
5143
|
+
},
|
|
5144
|
+
"unarchive": {
|
|
5145
|
+
"level": "write",
|
|
5146
|
+
"method": "POST",
|
|
5147
|
+
"operationKey": "mail_template_unarchive",
|
|
5148
|
+
"params": [
|
|
5149
|
+
{
|
|
5150
|
+
"in": "path",
|
|
5151
|
+
"name": "id"
|
|
5152
|
+
}
|
|
5153
|
+
],
|
|
5154
|
+
"path": "/mail/templates/:id/unarchive",
|
|
5155
|
+
"readOnly": false
|
|
5156
|
+
},
|
|
5108
5157
|
"update": {
|
|
5109
5158
|
"level": "write",
|
|
5110
5159
|
"method": "PATCH",
|
|
@@ -5139,6 +5188,53 @@ var bindings = {
|
|
|
5139
5188
|
"readOnly": false
|
|
5140
5189
|
}
|
|
5141
5190
|
},
|
|
5191
|
+
"template-draft": {
|
|
5192
|
+
"discard": {
|
|
5193
|
+
"level": "write",
|
|
5194
|
+
"method": "DELETE",
|
|
5195
|
+
"operationKey": "mail_template_draft_discard",
|
|
5196
|
+
"params": [
|
|
5197
|
+
{
|
|
5198
|
+
"in": "path",
|
|
5199
|
+
"name": "id"
|
|
5200
|
+
}
|
|
5201
|
+
],
|
|
5202
|
+
"path": "/mail/templates/:id/draft",
|
|
5203
|
+
"readOnly": false
|
|
5204
|
+
}
|
|
5205
|
+
},
|
|
5206
|
+
"template-revision": {
|
|
5207
|
+
"get": {
|
|
5208
|
+
"level": "read",
|
|
5209
|
+
"method": "GET",
|
|
5210
|
+
"operationKey": "mail_template_revision_get",
|
|
5211
|
+
"params": [
|
|
5212
|
+
{
|
|
5213
|
+
"in": "path",
|
|
5214
|
+
"name": "id"
|
|
5215
|
+
},
|
|
5216
|
+
{
|
|
5217
|
+
"in": "path",
|
|
5218
|
+
"name": "revision"
|
|
5219
|
+
}
|
|
5220
|
+
],
|
|
5221
|
+
"path": "/mail/templates/:id/revisions/:revision",
|
|
5222
|
+
"readOnly": true
|
|
5223
|
+
},
|
|
5224
|
+
"list": {
|
|
5225
|
+
"level": "read",
|
|
5226
|
+
"method": "GET",
|
|
5227
|
+
"operationKey": "mail_template_revision_list",
|
|
5228
|
+
"params": [
|
|
5229
|
+
{
|
|
5230
|
+
"in": "path",
|
|
5231
|
+
"name": "id"
|
|
5232
|
+
}
|
|
5233
|
+
],
|
|
5234
|
+
"path": "/mail/templates/:id/revisions",
|
|
5235
|
+
"readOnly": true
|
|
5236
|
+
}
|
|
5237
|
+
},
|
|
5142
5238
|
"usage": {
|
|
5143
5239
|
"get": {
|
|
5144
5240
|
"level": "read",
|
|
@@ -7496,6 +7592,213 @@ var bindings = {
|
|
|
7496
7592
|
}
|
|
7497
7593
|
}
|
|
7498
7594
|
},
|
|
7595
|
+
"playground": {
|
|
7596
|
+
"analytics": {
|
|
7597
|
+
"overview": {
|
|
7598
|
+
"level": "read",
|
|
7599
|
+
"method": "POST",
|
|
7600
|
+
"operationKey": "playground_analytics_overview",
|
|
7601
|
+
"params": [
|
|
7602
|
+
{
|
|
7603
|
+
"in": "body",
|
|
7604
|
+
"name": "limit"
|
|
7605
|
+
}
|
|
7606
|
+
],
|
|
7607
|
+
"path": "/playground/analytics/overview",
|
|
7608
|
+
"readOnly": true
|
|
7609
|
+
}
|
|
7610
|
+
},
|
|
7611
|
+
"billing": {
|
|
7612
|
+
"entitlements": {
|
|
7613
|
+
"level": "read",
|
|
7614
|
+
"method": "POST",
|
|
7615
|
+
"operationKey": "playground_billing_entitlements",
|
|
7616
|
+
"path": "/playground/billing/entitlements",
|
|
7617
|
+
"readOnly": true
|
|
7618
|
+
},
|
|
7619
|
+
"record-usage": {
|
|
7620
|
+
"level": "write",
|
|
7621
|
+
"method": "POST",
|
|
7622
|
+
"operationKey": "playground_billing_record-usage",
|
|
7623
|
+
"params": [
|
|
7624
|
+
{
|
|
7625
|
+
"in": "body",
|
|
7626
|
+
"name": "value"
|
|
7627
|
+
}
|
|
7628
|
+
],
|
|
7629
|
+
"path": "/playground/billing/usage",
|
|
7630
|
+
"readOnly": false
|
|
7631
|
+
}
|
|
7632
|
+
},
|
|
7633
|
+
"clickup": {
|
|
7634
|
+
"create-task": {
|
|
7635
|
+
"level": "write",
|
|
7636
|
+
"method": "POST",
|
|
7637
|
+
"operationKey": "playground_clickup_create-task",
|
|
7638
|
+
"params": [
|
|
7639
|
+
{
|
|
7640
|
+
"in": "body",
|
|
7641
|
+
"name": "listId"
|
|
7642
|
+
},
|
|
7643
|
+
{
|
|
7644
|
+
"in": "body",
|
|
7645
|
+
"name": "name"
|
|
7646
|
+
}
|
|
7647
|
+
],
|
|
7648
|
+
"path": "/playground/clickup/tasks",
|
|
7649
|
+
"readOnly": false
|
|
7650
|
+
},
|
|
7651
|
+
"get-last-webhook": {
|
|
7652
|
+
"level": "read",
|
|
7653
|
+
"method": "GET",
|
|
7654
|
+
"operationKey": "playground_clickup_get-last-webhook",
|
|
7655
|
+
"path": "/playground/clickup/webhooks/last",
|
|
7656
|
+
"readOnly": true
|
|
7657
|
+
},
|
|
7658
|
+
"get-overview": {
|
|
7659
|
+
"level": "read",
|
|
7660
|
+
"method": "GET",
|
|
7661
|
+
"operationKey": "playground_clickup_get-overview",
|
|
7662
|
+
"path": "/playground/clickup/overview",
|
|
7663
|
+
"readOnly": true
|
|
7664
|
+
}
|
|
7665
|
+
},
|
|
7666
|
+
"echo": {
|
|
7667
|
+
"ping": {
|
|
7668
|
+
"level": "read",
|
|
7669
|
+
"method": "POST",
|
|
7670
|
+
"operationKey": "playground_echo_ping",
|
|
7671
|
+
"params": [
|
|
7672
|
+
{
|
|
7673
|
+
"in": "body",
|
|
7674
|
+
"name": "message"
|
|
7675
|
+
}
|
|
7676
|
+
],
|
|
7677
|
+
"path": "/playground/echo/ping",
|
|
7678
|
+
"readOnly": true
|
|
7679
|
+
}
|
|
7680
|
+
},
|
|
7681
|
+
"gdrive": {
|
|
7682
|
+
"get-last-change": {
|
|
7683
|
+
"level": "read",
|
|
7684
|
+
"method": "GET",
|
|
7685
|
+
"operationKey": "playground_gdrive_get-last-change",
|
|
7686
|
+
"path": "/playground/gdrive/changes/last",
|
|
7687
|
+
"readOnly": true
|
|
7688
|
+
},
|
|
7689
|
+
"read-file": {
|
|
7690
|
+
"level": "read",
|
|
7691
|
+
"method": "POST",
|
|
7692
|
+
"operationKey": "playground_gdrive_read-file",
|
|
7693
|
+
"params": [
|
|
7694
|
+
{
|
|
7695
|
+
"in": "body",
|
|
7696
|
+
"name": "fileId"
|
|
7697
|
+
}
|
|
7698
|
+
],
|
|
7699
|
+
"path": "/playground/gdrive/file",
|
|
7700
|
+
"readOnly": true
|
|
7701
|
+
}
|
|
7702
|
+
},
|
|
7703
|
+
"googleads": {
|
|
7704
|
+
"read-customer": {
|
|
7705
|
+
"level": "read",
|
|
7706
|
+
"method": "POST",
|
|
7707
|
+
"operationKey": "playground_googleads_read-customer",
|
|
7708
|
+
"path": "/playground/googleads/customer",
|
|
7709
|
+
"readOnly": true
|
|
7710
|
+
}
|
|
7711
|
+
},
|
|
7712
|
+
"lifecycle": {
|
|
7713
|
+
"get-state": {
|
|
7714
|
+
"level": "read",
|
|
7715
|
+
"method": "GET",
|
|
7716
|
+
"operationKey": "playground_lifecycle_get-state",
|
|
7717
|
+
"path": "/playground/lifecycle/state",
|
|
7718
|
+
"readOnly": true
|
|
7719
|
+
},
|
|
7720
|
+
"list-events": {
|
|
7721
|
+
"level": "read",
|
|
7722
|
+
"method": "GET",
|
|
7723
|
+
"operationKey": "playground_lifecycle_list-events",
|
|
7724
|
+
"path": "/playground/lifecycle/events",
|
|
7725
|
+
"readOnly": true
|
|
7726
|
+
}
|
|
7727
|
+
},
|
|
7728
|
+
"webhook": {
|
|
7729
|
+
"get-last": {
|
|
7730
|
+
"level": "read",
|
|
7731
|
+
"method": "GET",
|
|
7732
|
+
"operationKey": "playground_webhook_get-last",
|
|
7733
|
+
"path": "/playground/webhooks/last",
|
|
7734
|
+
"readOnly": true
|
|
7735
|
+
}
|
|
7736
|
+
},
|
|
7737
|
+
"workflow": {
|
|
7738
|
+
"echo": {
|
|
7739
|
+
"level": "write",
|
|
7740
|
+
"method": "POST",
|
|
7741
|
+
"operationKey": "playground_workflow_echo",
|
|
7742
|
+
"params": [
|
|
7743
|
+
{
|
|
7744
|
+
"in": "body",
|
|
7745
|
+
"name": "note"
|
|
7746
|
+
},
|
|
7747
|
+
{
|
|
7748
|
+
"in": "body",
|
|
7749
|
+
"name": "tags"
|
|
7750
|
+
}
|
|
7751
|
+
],
|
|
7752
|
+
"path": "/playground/workflow/echo",
|
|
7753
|
+
"readOnly": false
|
|
7754
|
+
},
|
|
7755
|
+
"echo-list": {
|
|
7756
|
+
"level": "read",
|
|
7757
|
+
"method": "GET",
|
|
7758
|
+
"operationKey": "playground_workflow_echo-list",
|
|
7759
|
+
"path": "/playground/workflow/echoes",
|
|
7760
|
+
"readOnly": true
|
|
7761
|
+
},
|
|
7762
|
+
"ping": {
|
|
7763
|
+
"level": "write",
|
|
7764
|
+
"method": "POST",
|
|
7765
|
+
"operationKey": "playground_workflow_ping",
|
|
7766
|
+
"params": [
|
|
7767
|
+
{
|
|
7768
|
+
"in": "body",
|
|
7769
|
+
"name": "kind"
|
|
7770
|
+
}
|
|
7771
|
+
],
|
|
7772
|
+
"path": "/playground/workflow/ping",
|
|
7773
|
+
"readOnly": false
|
|
7774
|
+
},
|
|
7775
|
+
"subjects-list": {
|
|
7776
|
+
"level": "read",
|
|
7777
|
+
"method": "GET",
|
|
7778
|
+
"operationKey": "playground_workflow_subjects-list",
|
|
7779
|
+
"params": [
|
|
7780
|
+
{
|
|
7781
|
+
"in": "query",
|
|
7782
|
+
"name": "last_activity_before"
|
|
7783
|
+
},
|
|
7784
|
+
{
|
|
7785
|
+
"in": "query",
|
|
7786
|
+
"name": "last_activity_after"
|
|
7787
|
+
},
|
|
7788
|
+
{
|
|
7789
|
+
"in": "query",
|
|
7790
|
+
"name": "limit"
|
|
7791
|
+
},
|
|
7792
|
+
{
|
|
7793
|
+
"in": "query",
|
|
7794
|
+
"name": "cursor"
|
|
7795
|
+
}
|
|
7796
|
+
],
|
|
7797
|
+
"path": "/playground/workflow/subjects",
|
|
7798
|
+
"readOnly": true
|
|
7799
|
+
}
|
|
7800
|
+
}
|
|
7801
|
+
},
|
|
7499
7802
|
"realtime": {
|
|
7500
7803
|
"archive": {
|
|
7501
7804
|
"export": {
|
|
@@ -11066,7 +11369,7 @@ var bindings = {
|
|
|
11066
11369
|
"readOnly": true
|
|
11067
11370
|
},
|
|
11068
11371
|
"set": {
|
|
11069
|
-
"level": "
|
|
11372
|
+
"level": "admin",
|
|
11070
11373
|
"method": "POST",
|
|
11071
11374
|
"operationKey": "workflow_killswitch_set",
|
|
11072
11375
|
"params": [
|
|
@@ -11376,7 +11679,7 @@ var bindings = {
|
|
|
11376
11679
|
},
|
|
11377
11680
|
"wait-list": {
|
|
11378
11681
|
"all": {
|
|
11379
|
-
"level": "
|
|
11682
|
+
"level": "admin",
|
|
11380
11683
|
"method": "GET",
|
|
11381
11684
|
"operationKey": "workflow_wait_list_all",
|
|
11382
11685
|
"params": [
|
|
@@ -11659,11 +11962,17 @@ var operations = {
|
|
|
11659
11962
|
"mail_suppression_add": "write",
|
|
11660
11963
|
"mail_suppression_list": "read",
|
|
11661
11964
|
"mail_suppression_remove": "admin",
|
|
11965
|
+
"mail_template_archive": "write",
|
|
11662
11966
|
"mail_template_create": "write",
|
|
11663
11967
|
"mail_template_delete": "admin",
|
|
11968
|
+
"mail_template_draft_discard": "write",
|
|
11664
11969
|
"mail_template_get": "read",
|
|
11665
11970
|
"mail_template_list": "read",
|
|
11666
11971
|
"mail_template_publish": "write",
|
|
11972
|
+
"mail_template_restore": "write",
|
|
11973
|
+
"mail_template_revision_get": "read",
|
|
11974
|
+
"mail_template_revision_list": "read",
|
|
11975
|
+
"mail_template_unarchive": "write",
|
|
11667
11976
|
"mail_template_update": "write",
|
|
11668
11977
|
"mail_usage_get": "read",
|
|
11669
11978
|
"mail_webhook_create": "admin",
|
|
@@ -11797,6 +12106,23 @@ var operations = {
|
|
|
11797
12106
|
"organization_support_threads_list": "read",
|
|
11798
12107
|
"organization_x_install": "read",
|
|
11799
12108
|
"organization_youtube_install": "read",
|
|
12109
|
+
"playground_analytics_overview": "read",
|
|
12110
|
+
"playground_billing_entitlements": "read",
|
|
12111
|
+
"playground_billing_record-usage": "write",
|
|
12112
|
+
"playground_clickup_create-task": "write",
|
|
12113
|
+
"playground_clickup_get-last-webhook": "read",
|
|
12114
|
+
"playground_clickup_get-overview": "read",
|
|
12115
|
+
"playground_echo_ping": "read",
|
|
12116
|
+
"playground_gdrive_get-last-change": "read",
|
|
12117
|
+
"playground_gdrive_read-file": "read",
|
|
12118
|
+
"playground_googleads_read-customer": "read",
|
|
12119
|
+
"playground_lifecycle_get-state": "read",
|
|
12120
|
+
"playground_lifecycle_list-events": "read",
|
|
12121
|
+
"playground_webhook_get-last": "read",
|
|
12122
|
+
"playground_workflow_echo": "write",
|
|
12123
|
+
"playground_workflow_echo-list": "read",
|
|
12124
|
+
"playground_workflow_ping": "write",
|
|
12125
|
+
"playground_workflow_subjects-list": "read",
|
|
11800
12126
|
"realtime_archive_export": "admin",
|
|
11801
12127
|
"realtime_archive_export_status": "read",
|
|
11802
12128
|
"realtime_archive_get": "read",
|
|
@@ -11982,7 +12308,7 @@ var operations = {
|
|
|
11982
12308
|
"workflow_health_list": "read",
|
|
11983
12309
|
"workflow_health_ping": "read",
|
|
11984
12310
|
"workflow_killswitch_get": "read",
|
|
11985
|
-
"workflow_killswitch_set": "
|
|
12311
|
+
"workflow_killswitch_set": "admin",
|
|
11986
12312
|
"workflow_run_cancel": "write",
|
|
11987
12313
|
"workflow_run_get": "read",
|
|
11988
12314
|
"workflow_run_list": "read",
|
|
@@ -11997,7 +12323,7 @@ var operations = {
|
|
|
11997
12323
|
"workflow_version_list": "read",
|
|
11998
12324
|
"workflow_wait_get": "read",
|
|
11999
12325
|
"workflow_wait_list": "read",
|
|
12000
|
-
"workflow_wait_list_all": "
|
|
12326
|
+
"workflow_wait_list_all": "admin",
|
|
12001
12327
|
"workflow_wait_resolve": "write"
|
|
12002
12328
|
};
|
|
12003
12329
|
var compositions = {
|
|
@@ -12062,13 +12388,22 @@ var compositions = {
|
|
|
12062
12388
|
"mail_suppression_add": { "pii": ["input.address", "output.address"], "label": "Suppress address" },
|
|
12063
12389
|
"mail_suppression_list": { "pii": ["input.q", "output.items[].address"], "label": "List suppressions" },
|
|
12064
12390
|
"mail_suppression_remove": { "pii": ["input.address", "output.address"], "label": "Unsuppress address" },
|
|
12391
|
+
"mail_template_archive": { "label": "Archive template", "options": { "id": "mail_template_list" } },
|
|
12065
12392
|
"mail_template_create": { "label": "Create template" },
|
|
12066
12393
|
"mail_template_delete": { "label": "Delete template", "options": { "id": "mail_template_list" } },
|
|
12394
|
+
"mail_template_draft_discard": { "label": "Discard template draft", "options": { "id": "mail_template_list" } },
|
|
12067
12395
|
"mail_template_get": { "label": "Get template", "options": { "id": "mail_template_list" } },
|
|
12068
12396
|
"mail_template_list": { "label": "List templates" },
|
|
12069
12397
|
"mail_template_publish": { "label": "Publish template", "options": { "id": "mail_template_list" } },
|
|
12398
|
+
"mail_template_restore": { "label": "Restore template revision", "options": { "id": "mail_template_list" } },
|
|
12399
|
+
"mail_template_revision_get": { "label": "Get template revision", "options": { "id": "mail_template_list" } },
|
|
12400
|
+
"mail_template_revision_list": { "label": "List template revisions", "options": { "id": "mail_template_list" } },
|
|
12401
|
+
"mail_template_unarchive": { "label": "Unarchive template", "options": { "id": "mail_template_list" } },
|
|
12070
12402
|
"mail_template_update": { "label": "Update template", "options": { "id": "mail_template_list" } },
|
|
12071
12403
|
"mail_usage_get": { "label": "Get usage" },
|
|
12404
|
+
"playground_workflow_echo": { "pii": ["input.note", "output.note"], "label": "Store workflow echo", "completion_event": "playground/workflow.echoed" },
|
|
12405
|
+
"playground_workflow_ping": { "label": "Fire workflow ping", "completion_event": "playground/workflow.ping" },
|
|
12406
|
+
"playground_workflow_subjects-list": { "pii": ["output.items[].display_name"], "label": "List workflow subjects" },
|
|
12072
12407
|
"support_agent_create": { "pii": ["input.lesslyUserId", "output.lesslyUserId"], "label": "Create agent" },
|
|
12073
12408
|
"support_agent_get": { "pii": ["output.lesslyUserId"], "label": "Get agent", "options": { "id": "support_agent_list" } },
|
|
12074
12409
|
"support_agent_list": { "pii": ["output.agents[].lesslyUserId"], "label": "List agents" },
|