@lessly/sdk-app 32.1.0 → 32.1.2
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/README.md +1 -1
- package/dist/analytics/index.d.cts +1 -1
- package/dist/analytics/index.d.ts +1 -1
- package/dist/brain/index.cjs +5 -0
- package/dist/brain/index.cjs.map +1 -1
- package/dist/brain/index.d.cts +6 -2
- package/dist/brain/index.d.ts +6 -2
- package/dist/brain/index.js +5 -1
- package/dist/brain/index.js.map +1 -1
- package/dist/{client.gen-BaBUJ3xx.d.cts → client.gen-p_iZK5OO.d.cts} +255 -1274
- package/dist/{client.gen-BaBUJ3xx.d.ts → client.gen-p_iZK5OO.d.ts} +255 -1274
- package/dist/consent/index.d.cts +1 -1
- package/dist/consent/index.d.ts +1 -1
- package/dist/deployment/index.d.cts +1 -1
- package/dist/deployment/index.d.ts +1 -1
- package/dist/index.cjs +70 -411
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +6 -1
- package/dist/index.d.ts +6 -1
- package/dist/index.js +70 -411
- package/dist/index.js.map +1 -1
- package/dist/mail/index.d.cts +2 -2
- package/dist/mail/index.d.ts +2 -2
- package/dist/organization/index.cjs +18 -33
- package/dist/organization/index.cjs.map +1 -1
- package/dist/organization/index.d.cts +15 -27
- package/dist/organization/index.d.ts +15 -27
- package/dist/organization/index.js +15 -27
- package/dist/organization/index.js.map +1 -1
- package/dist/realtime/index.d.cts +1 -1
- package/dist/realtime/index.d.ts +1 -1
- package/dist/support/index.d.cts +1 -1
- package/dist/support/index.d.ts +1 -1
- package/dist/tracking/index.d.cts +1 -1
- package/dist/tracking/index.d.ts +1 -1
- package/dist/users/index.d.cts +1 -1
- package/dist/users/index.d.ts +1 -1
- package/dist/waitlist/index.d.cts +1 -1
- package/dist/waitlist/index.d.ts +1 -1
- package/docs/recipes/local-dev.md +4 -0
- package/docs/recipes/sdk-usage.md +20 -0
- package/package.json +2 -12
- package/src/gen/bindings.gen.ts +51 -410
- package/src/gen/brain/index.ts +1 -1
- package/src/gen/brain/queryOptions.gen.ts +7 -0
- package/src/gen/client.gen.ts +17 -126
- package/src/gen/manifest.gen.ts +1 -1
- package/src/gen/organization/index.ts +1 -1
- package/src/gen/organization/queryOptions.gen.ts +21 -41
- package/src/gen/types.gen.ts +246 -1273
- package/dist/observe/index.cjs +0 -71
- package/dist/observe/index.cjs.map +0 -1
- package/dist/observe/index.d.cts +0 -56
- package/dist/observe/index.d.ts +0 -56
- package/dist/observe/index.js +0 -57
- package/dist/observe/index.js.map +0 -1
- package/dist/playground/index.cjs +0 -66
- package/dist/playground/index.cjs.map +0 -1
- package/dist/playground/index.d.cts +0 -52
- package/dist/playground/index.d.ts +0 -52
- package/dist/playground/index.js +0 -53
- package/dist/playground/index.js.map +0 -1
- package/src/gen/observe/index.ts +0 -3
- package/src/gen/observe/queryOptions.gen.ts +0 -89
- package/src/gen/playground/index.ts +0 -3
- package/src/gen/playground/queryOptions.gen.ts +0 -86
package/dist/index.cjs
CHANGED
|
@@ -64,8 +64,26 @@ function resolveRequest(binding, input = {}) {
|
|
|
64
64
|
}
|
|
65
65
|
return { path, query, body: Object.keys(body).length > 0 ? body : void 0 };
|
|
66
66
|
}
|
|
67
|
+
function documentBase(baseUrl) {
|
|
68
|
+
const href = globalThis.location?.href;
|
|
69
|
+
if (typeof href !== "string" || href === "") {
|
|
70
|
+
throw new Error(
|
|
71
|
+
`@lessly/sdk-app: relative baseUrl "${baseUrl}" cannot be resolved outside a browser (globalThis.location is unavailable). Pass an absolute baseUrl, e.g. "https://api.lessly.dev".`
|
|
72
|
+
);
|
|
73
|
+
}
|
|
74
|
+
return href;
|
|
75
|
+
}
|
|
76
|
+
function isAbsolute(baseUrl) {
|
|
77
|
+
try {
|
|
78
|
+
new URL(baseUrl);
|
|
79
|
+
return true;
|
|
80
|
+
} catch {
|
|
81
|
+
return false;
|
|
82
|
+
}
|
|
83
|
+
}
|
|
67
84
|
function buildUrl(baseUrl, path, query) {
|
|
68
|
-
const
|
|
85
|
+
const base = baseUrl.replace(/\/$/, "") + path;
|
|
86
|
+
const url = isAbsolute(baseUrl) ? new URL(base) : new URL(base, documentBase(baseUrl));
|
|
69
87
|
for (const [k, v] of Object.entries(query)) {
|
|
70
88
|
if (v === void 0 || v === null) continue;
|
|
71
89
|
if (Array.isArray(v)) v.forEach((item) => url.searchParams.append(k, String(item)));
|
|
@@ -805,6 +823,19 @@ var bindings = {
|
|
|
805
823
|
"path": "/brain/restores/:restoreId",
|
|
806
824
|
"readOnly": true
|
|
807
825
|
}
|
|
826
|
+
},
|
|
827
|
+
"usage": {
|
|
828
|
+
"report": {
|
|
829
|
+
"method": "GET",
|
|
830
|
+
"params": [
|
|
831
|
+
{
|
|
832
|
+
"in": "query",
|
|
833
|
+
"name": "days"
|
|
834
|
+
}
|
|
835
|
+
],
|
|
836
|
+
"path": "/brain/usage/report",
|
|
837
|
+
"readOnly": true
|
|
838
|
+
}
|
|
808
839
|
}
|
|
809
840
|
},
|
|
810
841
|
"consent": {
|
|
@@ -3592,227 +3623,6 @@ var bindings = {
|
|
|
3592
3623
|
}
|
|
3593
3624
|
}
|
|
3594
3625
|
},
|
|
3595
|
-
"observe": {
|
|
3596
|
-
"artifacts": {
|
|
3597
|
-
"delete": {
|
|
3598
|
-
"method": "DELETE",
|
|
3599
|
-
"params": [
|
|
3600
|
-
{
|
|
3601
|
-
"in": "path",
|
|
3602
|
-
"name": "id"
|
|
3603
|
-
}
|
|
3604
|
-
],
|
|
3605
|
-
"path": "/observe/artifacts/:id",
|
|
3606
|
-
"readOnly": false
|
|
3607
|
-
},
|
|
3608
|
-
"list": {
|
|
3609
|
-
"method": "GET",
|
|
3610
|
-
"params": [
|
|
3611
|
-
{
|
|
3612
|
-
"in": "query",
|
|
3613
|
-
"name": "debugId"
|
|
3614
|
-
},
|
|
3615
|
-
{
|
|
3616
|
-
"in": "query",
|
|
3617
|
-
"name": "limit"
|
|
3618
|
-
}
|
|
3619
|
-
],
|
|
3620
|
-
"path": "/observe/artifacts",
|
|
3621
|
-
"readOnly": true
|
|
3622
|
-
},
|
|
3623
|
-
"resolve": {
|
|
3624
|
-
"method": "GET",
|
|
3625
|
-
"params": [
|
|
3626
|
-
{
|
|
3627
|
-
"in": "path",
|
|
3628
|
-
"name": "issueId"
|
|
3629
|
-
}
|
|
3630
|
-
],
|
|
3631
|
-
"path": "/observe/artifacts/:issueId/resolve",
|
|
3632
|
-
"readOnly": true
|
|
3633
|
-
}
|
|
3634
|
-
},
|
|
3635
|
-
"issues": {
|
|
3636
|
-
"archive": {
|
|
3637
|
-
"method": "POST",
|
|
3638
|
-
"params": [
|
|
3639
|
-
{
|
|
3640
|
-
"in": "path",
|
|
3641
|
-
"name": "id"
|
|
3642
|
-
}
|
|
3643
|
-
],
|
|
3644
|
-
"path": "/observe/issues/:id/archive",
|
|
3645
|
-
"readOnly": false
|
|
3646
|
-
},
|
|
3647
|
-
"assign": {
|
|
3648
|
-
"method": "POST",
|
|
3649
|
-
"params": [
|
|
3650
|
-
{
|
|
3651
|
-
"in": "path",
|
|
3652
|
-
"name": "id"
|
|
3653
|
-
},
|
|
3654
|
-
{
|
|
3655
|
-
"in": "body",
|
|
3656
|
-
"name": "assignee"
|
|
3657
|
-
}
|
|
3658
|
-
],
|
|
3659
|
-
"path": "/observe/issues/:id/assign",
|
|
3660
|
-
"readOnly": false
|
|
3661
|
-
},
|
|
3662
|
-
"get": {
|
|
3663
|
-
"method": "GET",
|
|
3664
|
-
"params": [
|
|
3665
|
-
{
|
|
3666
|
-
"in": "path",
|
|
3667
|
-
"name": "id"
|
|
3668
|
-
}
|
|
3669
|
-
],
|
|
3670
|
-
"path": "/observe/issues/:id",
|
|
3671
|
-
"readOnly": true
|
|
3672
|
-
},
|
|
3673
|
-
"list": {
|
|
3674
|
-
"method": "GET",
|
|
3675
|
-
"params": [
|
|
3676
|
-
{
|
|
3677
|
-
"in": "query",
|
|
3678
|
-
"name": "status"
|
|
3679
|
-
},
|
|
3680
|
-
{
|
|
3681
|
-
"in": "query",
|
|
3682
|
-
"name": "assignee"
|
|
3683
|
-
},
|
|
3684
|
-
{
|
|
3685
|
-
"in": "query",
|
|
3686
|
-
"name": "limit"
|
|
3687
|
-
}
|
|
3688
|
-
],
|
|
3689
|
-
"path": "/observe/issues",
|
|
3690
|
-
"readOnly": true
|
|
3691
|
-
},
|
|
3692
|
-
"resolve": {
|
|
3693
|
-
"method": "POST",
|
|
3694
|
-
"params": [
|
|
3695
|
-
{
|
|
3696
|
-
"in": "path",
|
|
3697
|
-
"name": "id"
|
|
3698
|
-
}
|
|
3699
|
-
],
|
|
3700
|
-
"path": "/observe/issues/:id/resolve",
|
|
3701
|
-
"readOnly": false
|
|
3702
|
-
}
|
|
3703
|
-
},
|
|
3704
|
-
"keys": {
|
|
3705
|
-
"create": {
|
|
3706
|
-
"method": "POST",
|
|
3707
|
-
"params": [
|
|
3708
|
-
{
|
|
3709
|
-
"in": "body",
|
|
3710
|
-
"name": "environment"
|
|
3711
|
-
},
|
|
3712
|
-
{
|
|
3713
|
-
"in": "body",
|
|
3714
|
-
"name": "name"
|
|
3715
|
-
},
|
|
3716
|
-
{
|
|
3717
|
-
"in": "body",
|
|
3718
|
-
"name": "kind"
|
|
3719
|
-
}
|
|
3720
|
-
],
|
|
3721
|
-
"path": "/observe/keys",
|
|
3722
|
-
"readOnly": false
|
|
3723
|
-
},
|
|
3724
|
-
"list": {
|
|
3725
|
-
"method": "GET",
|
|
3726
|
-
"params": [
|
|
3727
|
-
{
|
|
3728
|
-
"in": "query",
|
|
3729
|
-
"name": "environment"
|
|
3730
|
-
}
|
|
3731
|
-
],
|
|
3732
|
-
"path": "/observe/keys",
|
|
3733
|
-
"readOnly": true
|
|
3734
|
-
},
|
|
3735
|
-
"revoke": {
|
|
3736
|
-
"method": "POST",
|
|
3737
|
-
"params": [
|
|
3738
|
-
{
|
|
3739
|
-
"in": "path",
|
|
3740
|
-
"name": "id"
|
|
3741
|
-
}
|
|
3742
|
-
],
|
|
3743
|
-
"path": "/observe/keys/:id/revoke",
|
|
3744
|
-
"readOnly": false
|
|
3745
|
-
}
|
|
3746
|
-
},
|
|
3747
|
-
"logs": {
|
|
3748
|
-
"search": {
|
|
3749
|
-
"method": "GET",
|
|
3750
|
-
"params": [
|
|
3751
|
-
{
|
|
3752
|
-
"in": "query",
|
|
3753
|
-
"name": "environment"
|
|
3754
|
-
},
|
|
3755
|
-
{
|
|
3756
|
-
"in": "query",
|
|
3757
|
-
"name": "service"
|
|
3758
|
-
},
|
|
3759
|
-
{
|
|
3760
|
-
"in": "query",
|
|
3761
|
-
"name": "severityIn"
|
|
3762
|
-
},
|
|
3763
|
-
{
|
|
3764
|
-
"in": "query",
|
|
3765
|
-
"name": "search"
|
|
3766
|
-
},
|
|
3767
|
-
{
|
|
3768
|
-
"in": "query",
|
|
3769
|
-
"name": "traceId"
|
|
3770
|
-
},
|
|
3771
|
-
{
|
|
3772
|
-
"in": "query",
|
|
3773
|
-
"name": "from"
|
|
3774
|
-
},
|
|
3775
|
-
{
|
|
3776
|
-
"in": "query",
|
|
3777
|
-
"name": "to"
|
|
3778
|
-
},
|
|
3779
|
-
{
|
|
3780
|
-
"in": "query",
|
|
3781
|
-
"name": "limit"
|
|
3782
|
-
},
|
|
3783
|
-
{
|
|
3784
|
-
"in": "query",
|
|
3785
|
-
"name": "cursor"
|
|
3786
|
-
}
|
|
3787
|
-
],
|
|
3788
|
-
"path": "/observe/logs/search",
|
|
3789
|
-
"readOnly": true
|
|
3790
|
-
},
|
|
3791
|
-
"tail": {
|
|
3792
|
-
"method": "GET",
|
|
3793
|
-
"params": [
|
|
3794
|
-
{
|
|
3795
|
-
"in": "query",
|
|
3796
|
-
"name": "environment"
|
|
3797
|
-
},
|
|
3798
|
-
{
|
|
3799
|
-
"in": "query",
|
|
3800
|
-
"name": "service"
|
|
3801
|
-
},
|
|
3802
|
-
{
|
|
3803
|
-
"in": "query",
|
|
3804
|
-
"name": "severityIn"
|
|
3805
|
-
},
|
|
3806
|
-
{
|
|
3807
|
-
"in": "query",
|
|
3808
|
-
"name": "cursor"
|
|
3809
|
-
}
|
|
3810
|
-
],
|
|
3811
|
-
"path": "/observe/logs/tail",
|
|
3812
|
-
"readOnly": true
|
|
3813
|
-
}
|
|
3814
|
-
}
|
|
3815
|
-
},
|
|
3816
3626
|
"organization": {
|
|
3817
3627
|
"$root": {
|
|
3818
3628
|
"create": {
|
|
@@ -4466,6 +4276,17 @@ var bindings = {
|
|
|
4466
4276
|
}
|
|
4467
4277
|
},
|
|
4468
4278
|
"product": {
|
|
4279
|
+
"accept-invitation": {
|
|
4280
|
+
"method": "POST",
|
|
4281
|
+
"params": [
|
|
4282
|
+
{
|
|
4283
|
+
"in": "path",
|
|
4284
|
+
"name": "token"
|
|
4285
|
+
}
|
|
4286
|
+
],
|
|
4287
|
+
"path": "/governance/api/v1/invitations/:token/accept",
|
|
4288
|
+
"readOnly": false
|
|
4289
|
+
},
|
|
4469
4290
|
"create": {
|
|
4470
4291
|
"method": "POST",
|
|
4471
4292
|
"params": [
|
|
@@ -4485,6 +4306,25 @@ var bindings = {
|
|
|
4485
4306
|
"path": "/governance/api/v1/products",
|
|
4486
4307
|
"readOnly": false
|
|
4487
4308
|
},
|
|
4309
|
+
"invite": {
|
|
4310
|
+
"method": "POST",
|
|
4311
|
+
"params": [
|
|
4312
|
+
{
|
|
4313
|
+
"in": "path",
|
|
4314
|
+
"name": "productId"
|
|
4315
|
+
},
|
|
4316
|
+
{
|
|
4317
|
+
"in": "body",
|
|
4318
|
+
"name": "email"
|
|
4319
|
+
},
|
|
4320
|
+
{
|
|
4321
|
+
"in": "body",
|
|
4322
|
+
"name": "role"
|
|
4323
|
+
}
|
|
4324
|
+
],
|
|
4325
|
+
"path": "/governance/api/v1/products/:productId/invitations",
|
|
4326
|
+
"readOnly": false
|
|
4327
|
+
},
|
|
4488
4328
|
"list": {
|
|
4489
4329
|
"method": "GET",
|
|
4490
4330
|
"params": [
|
|
@@ -4496,7 +4336,7 @@ var bindings = {
|
|
|
4496
4336
|
"path": "/governance/api/v1/products",
|
|
4497
4337
|
"readOnly": true
|
|
4498
4338
|
},
|
|
4499
|
-
"list-
|
|
4339
|
+
"list-invitations": {
|
|
4500
4340
|
"method": "GET",
|
|
4501
4341
|
"params": [
|
|
4502
4342
|
{
|
|
@@ -4504,7 +4344,7 @@ var bindings = {
|
|
|
4504
4344
|
"name": "productId"
|
|
4505
4345
|
}
|
|
4506
4346
|
],
|
|
4507
|
-
"path": "/governance/api/v1/products/:productId/
|
|
4347
|
+
"path": "/governance/api/v1/products/:productId/invitations",
|
|
4508
4348
|
"readOnly": true
|
|
4509
4349
|
},
|
|
4510
4350
|
"list-members": {
|
|
@@ -4529,19 +4369,19 @@ var bindings = {
|
|
|
4529
4369
|
"path": "/governance/api/v1/products/:productId/roles",
|
|
4530
4370
|
"readOnly": true
|
|
4531
4371
|
},
|
|
4532
|
-
"revoke-
|
|
4533
|
-
"method": "
|
|
4372
|
+
"revoke-invitation": {
|
|
4373
|
+
"method": "POST",
|
|
4534
4374
|
"params": [
|
|
4535
4375
|
{
|
|
4536
|
-
"in": "
|
|
4376
|
+
"in": "body",
|
|
4537
4377
|
"name": "productId"
|
|
4538
4378
|
},
|
|
4539
4379
|
{
|
|
4540
|
-
"in": "
|
|
4541
|
-
"name": "
|
|
4380
|
+
"in": "body",
|
|
4381
|
+
"name": "invitationId"
|
|
4542
4382
|
}
|
|
4543
4383
|
],
|
|
4544
|
-
"path": "/governance/api/v1/products
|
|
4384
|
+
"path": "/governance/api/v1/products/revoke-invitation",
|
|
4545
4385
|
"readOnly": false
|
|
4546
4386
|
},
|
|
4547
4387
|
"select": {
|
|
@@ -4555,29 +4395,6 @@ var bindings = {
|
|
|
4555
4395
|
"path": "/governance/api/v1/products/select",
|
|
4556
4396
|
"readOnly": false
|
|
4557
4397
|
},
|
|
4558
|
-
"set-access": {
|
|
4559
|
-
"method": "PUT",
|
|
4560
|
-
"params": [
|
|
4561
|
-
{
|
|
4562
|
-
"in": "path",
|
|
4563
|
-
"name": "productId"
|
|
4564
|
-
},
|
|
4565
|
-
{
|
|
4566
|
-
"in": "path",
|
|
4567
|
-
"name": "userId"
|
|
4568
|
-
},
|
|
4569
|
-
{
|
|
4570
|
-
"in": "body",
|
|
4571
|
-
"name": "role"
|
|
4572
|
-
},
|
|
4573
|
-
{
|
|
4574
|
-
"in": "body",
|
|
4575
|
-
"name": "roleId"
|
|
4576
|
-
}
|
|
4577
|
-
],
|
|
4578
|
-
"path": "/governance/api/v1/products/:productId/access/:userId",
|
|
4579
|
-
"readOnly": false
|
|
4580
|
-
},
|
|
4581
4398
|
"update": {
|
|
4582
4399
|
"method": "PATCH",
|
|
4583
4400
|
"params": [
|
|
@@ -4588,10 +4405,6 @@ var bindings = {
|
|
|
4588
4405
|
{
|
|
4589
4406
|
"in": "body",
|
|
4590
4407
|
"name": "name"
|
|
4591
|
-
},
|
|
4592
|
-
{
|
|
4593
|
-
"in": "body",
|
|
4594
|
-
"name": "description"
|
|
4595
4408
|
}
|
|
4596
4409
|
],
|
|
4597
4410
|
"path": "/governance/api/v1/products/:productId",
|
|
@@ -4782,160 +4595,6 @@ var bindings = {
|
|
|
4782
4595
|
"path": "/governance/api/v1/organizations/:organizationId/security/mfa/enable",
|
|
4783
4596
|
"readOnly": false
|
|
4784
4597
|
}
|
|
4785
|
-
},
|
|
4786
|
-
"support-thread": {
|
|
4787
|
-
"create": {
|
|
4788
|
-
"method": "POST",
|
|
4789
|
-
"params": [
|
|
4790
|
-
{
|
|
4791
|
-
"in": "body",
|
|
4792
|
-
"name": "title"
|
|
4793
|
-
},
|
|
4794
|
-
{
|
|
4795
|
-
"in": "body",
|
|
4796
|
-
"name": "body"
|
|
4797
|
-
}
|
|
4798
|
-
],
|
|
4799
|
-
"path": "/governance/api/v1/support/threads",
|
|
4800
|
-
"readOnly": false
|
|
4801
|
-
},
|
|
4802
|
-
"get": {
|
|
4803
|
-
"method": "GET",
|
|
4804
|
-
"params": [
|
|
4805
|
-
{
|
|
4806
|
-
"in": "path",
|
|
4807
|
-
"name": "id"
|
|
4808
|
-
}
|
|
4809
|
-
],
|
|
4810
|
-
"path": "/governance/api/v1/support/threads/:id",
|
|
4811
|
-
"readOnly": true
|
|
4812
|
-
},
|
|
4813
|
-
"reply": {
|
|
4814
|
-
"method": "POST",
|
|
4815
|
-
"params": [
|
|
4816
|
-
{
|
|
4817
|
-
"in": "path",
|
|
4818
|
-
"name": "id"
|
|
4819
|
-
},
|
|
4820
|
-
{
|
|
4821
|
-
"in": "body",
|
|
4822
|
-
"name": "body"
|
|
4823
|
-
}
|
|
4824
|
-
],
|
|
4825
|
-
"path": "/governance/api/v1/support/threads/:id/messages",
|
|
4826
|
-
"readOnly": false
|
|
4827
|
-
}
|
|
4828
|
-
},
|
|
4829
|
-
"support-threads": {
|
|
4830
|
-
"list": {
|
|
4831
|
-
"method": "GET",
|
|
4832
|
-
"path": "/governance/api/v1/support/threads",
|
|
4833
|
-
"readOnly": true
|
|
4834
|
-
}
|
|
4835
|
-
}
|
|
4836
|
-
},
|
|
4837
|
-
"playground": {
|
|
4838
|
-
"analytics": {
|
|
4839
|
-
"overview": {
|
|
4840
|
-
"method": "POST",
|
|
4841
|
-
"params": [
|
|
4842
|
-
{
|
|
4843
|
-
"in": "body",
|
|
4844
|
-
"name": "limit"
|
|
4845
|
-
}
|
|
4846
|
-
],
|
|
4847
|
-
"path": "/playground/analytics/overview",
|
|
4848
|
-
"readOnly": true
|
|
4849
|
-
}
|
|
4850
|
-
},
|
|
4851
|
-
"billing": {
|
|
4852
|
-
"entitlements": {
|
|
4853
|
-
"method": "POST",
|
|
4854
|
-
"path": "/playground/billing/entitlements",
|
|
4855
|
-
"readOnly": true
|
|
4856
|
-
},
|
|
4857
|
-
"record-usage": {
|
|
4858
|
-
"method": "POST",
|
|
4859
|
-
"params": [
|
|
4860
|
-
{
|
|
4861
|
-
"in": "body",
|
|
4862
|
-
"name": "value"
|
|
4863
|
-
}
|
|
4864
|
-
],
|
|
4865
|
-
"path": "/playground/billing/usage",
|
|
4866
|
-
"readOnly": false
|
|
4867
|
-
}
|
|
4868
|
-
},
|
|
4869
|
-
"clickup": {
|
|
4870
|
-
"create-task": {
|
|
4871
|
-
"method": "POST",
|
|
4872
|
-
"params": [
|
|
4873
|
-
{
|
|
4874
|
-
"in": "body",
|
|
4875
|
-
"name": "listId"
|
|
4876
|
-
},
|
|
4877
|
-
{
|
|
4878
|
-
"in": "body",
|
|
4879
|
-
"name": "name"
|
|
4880
|
-
}
|
|
4881
|
-
],
|
|
4882
|
-
"path": "/playground/clickup/tasks",
|
|
4883
|
-
"readOnly": false
|
|
4884
|
-
},
|
|
4885
|
-
"get-last-webhook": {
|
|
4886
|
-
"method": "GET",
|
|
4887
|
-
"path": "/playground/clickup/webhooks/last",
|
|
4888
|
-
"readOnly": true
|
|
4889
|
-
},
|
|
4890
|
-
"get-overview": {
|
|
4891
|
-
"method": "GET",
|
|
4892
|
-
"path": "/playground/clickup/overview",
|
|
4893
|
-
"readOnly": true
|
|
4894
|
-
}
|
|
4895
|
-
},
|
|
4896
|
-
"gdrive": {
|
|
4897
|
-
"get-last-change": {
|
|
4898
|
-
"method": "GET",
|
|
4899
|
-
"path": "/playground/gdrive/changes/last",
|
|
4900
|
-
"readOnly": true
|
|
4901
|
-
},
|
|
4902
|
-
"read-file": {
|
|
4903
|
-
"method": "POST",
|
|
4904
|
-
"params": [
|
|
4905
|
-
{
|
|
4906
|
-
"in": "body",
|
|
4907
|
-
"name": "fileId"
|
|
4908
|
-
}
|
|
4909
|
-
],
|
|
4910
|
-
"path": "/playground/gdrive/file",
|
|
4911
|
-
"readOnly": true
|
|
4912
|
-
}
|
|
4913
|
-
},
|
|
4914
|
-
"googleads": {
|
|
4915
|
-
"read-customer": {
|
|
4916
|
-
"method": "POST",
|
|
4917
|
-
"path": "/playground/googleads/customer",
|
|
4918
|
-
"readOnly": true
|
|
4919
|
-
}
|
|
4920
|
-
},
|
|
4921
|
-
"lifecycle": {
|
|
4922
|
-
"get-state": {
|
|
4923
|
-
"method": "GET",
|
|
4924
|
-
"path": "/playground/lifecycle/state",
|
|
4925
|
-
"readOnly": true
|
|
4926
|
-
},
|
|
4927
|
-
"list-events": {
|
|
4928
|
-
"method": "GET",
|
|
4929
|
-
"path": "/playground/lifecycle/events",
|
|
4930
|
-
"readOnly": true
|
|
4931
|
-
}
|
|
4932
|
-
},
|
|
4933
|
-
"webhook": {
|
|
4934
|
-
"get-last": {
|
|
4935
|
-
"method": "GET",
|
|
4936
|
-
"path": "/playground/webhooks/last",
|
|
4937
|
-
"readOnly": true
|
|
4938
|
-
}
|
|
4939
4598
|
}
|
|
4940
4599
|
},
|
|
4941
4600
|
"realtime": {
|