@composio/client 0.1.0-alpha.44 → 0.1.0-alpha.45
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 +13 -0
- package/client.d.mts +1 -1
- package/client.d.mts.map +1 -1
- package/client.d.ts +1 -1
- package/client.d.ts.map +1 -1
- package/package.json +1 -1
- package/resources/connected-accounts.d.mts +44 -80
- package/resources/connected-accounts.d.mts.map +1 -1
- package/resources/connected-accounts.d.ts +44 -80
- package/resources/connected-accounts.d.ts.map +1 -1
- package/resources/link.d.mts +11 -20
- package/resources/link.d.mts.map +1 -1
- package/resources/link.d.ts +11 -20
- package/resources/link.d.ts.map +1 -1
- package/resources/tools.d.mts +2 -4
- package/resources/tools.d.mts.map +1 -1
- package/resources/tools.d.ts +2 -4
- package/resources/tools.d.ts.map +1 -1
- package/src/client.ts +1 -1
- package/src/resources/connected-accounts.ts +76 -100
- package/src/resources/link.ts +19 -25
- package/src/resources/tools.ts +4 -5
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -3765,11 +3765,6 @@ export namespace ConnectedAccountCreateResponse {
|
|
|
3765
3765
|
*/
|
|
3766
3766
|
client_id: string;
|
|
3767
3767
|
|
|
3768
|
-
/**
|
|
3769
|
-
* Dynamically registered client secret
|
|
3770
|
-
*/
|
|
3771
|
-
client_secret: string;
|
|
3772
|
-
|
|
3773
3768
|
redirectUrl: string;
|
|
3774
3769
|
|
|
3775
3770
|
status: 'INITIATED';
|
|
@@ -3786,6 +3781,17 @@ export namespace ConnectedAccountCreateResponse {
|
|
|
3786
3781
|
|
|
3787
3782
|
callback_url?: string;
|
|
3788
3783
|
|
|
3784
|
+
client_id_issued_at?: number;
|
|
3785
|
+
|
|
3786
|
+
/**
|
|
3787
|
+
* Dynamically registered client secret
|
|
3788
|
+
*/
|
|
3789
|
+
client_secret?: string;
|
|
3790
|
+
|
|
3791
|
+
client_secret_expires_at?: number;
|
|
3792
|
+
|
|
3793
|
+
code_verifier?: string;
|
|
3794
|
+
|
|
3789
3795
|
COMPANYDOMAIN?: string;
|
|
3790
3796
|
|
|
3791
3797
|
dc?: string;
|
|
@@ -3813,16 +3819,6 @@ export namespace ConnectedAccountCreateResponse {
|
|
|
3813
3819
|
|
|
3814
3820
|
region?: string;
|
|
3815
3821
|
|
|
3816
|
-
/**
|
|
3817
|
-
* Token for managing the registered client
|
|
3818
|
-
*/
|
|
3819
|
-
registration_access_token?: string;
|
|
3820
|
-
|
|
3821
|
-
/**
|
|
3822
|
-
* URI for managing the registered client
|
|
3823
|
-
*/
|
|
3824
|
-
registration_client_uri?: string;
|
|
3825
|
-
|
|
3826
3822
|
server_location?: string;
|
|
3827
3823
|
|
|
3828
3824
|
shop?: string;
|
|
@@ -3865,11 +3861,15 @@ export namespace ConnectedAccountCreateResponse {
|
|
|
3865
3861
|
|
|
3866
3862
|
borneo_dashboard_url?: string;
|
|
3867
3863
|
|
|
3864
|
+
client_id_issued_at?: number;
|
|
3865
|
+
|
|
3868
3866
|
/**
|
|
3869
3867
|
* Dynamically registered client secret
|
|
3870
3868
|
*/
|
|
3871
3869
|
client_secret?: string;
|
|
3872
3870
|
|
|
3871
|
+
client_secret_expires_at?: number;
|
|
3872
|
+
|
|
3873
3873
|
COMPANYDOMAIN?: string;
|
|
3874
3874
|
|
|
3875
3875
|
dc?: string;
|
|
@@ -3901,11 +3901,6 @@ export namespace ConnectedAccountCreateResponse {
|
|
|
3901
3901
|
|
|
3902
3902
|
region?: string;
|
|
3903
3903
|
|
|
3904
|
-
/**
|
|
3905
|
-
* Token for managing the registered client
|
|
3906
|
-
*/
|
|
3907
|
-
registration_access_token?: string;
|
|
3908
|
-
|
|
3909
3904
|
scope?: string | Array<string> | null;
|
|
3910
3905
|
|
|
3911
3906
|
server_location?: string;
|
|
@@ -3952,11 +3947,15 @@ export namespace ConnectedAccountCreateResponse {
|
|
|
3952
3947
|
|
|
3953
3948
|
borneo_dashboard_url?: string;
|
|
3954
3949
|
|
|
3950
|
+
client_id_issued_at?: number;
|
|
3951
|
+
|
|
3955
3952
|
/**
|
|
3956
3953
|
* Dynamically registered client secret
|
|
3957
3954
|
*/
|
|
3958
3955
|
client_secret?: string;
|
|
3959
3956
|
|
|
3957
|
+
client_secret_expires_at?: number;
|
|
3958
|
+
|
|
3960
3959
|
COMPANYDOMAIN?: string;
|
|
3961
3960
|
|
|
3962
3961
|
dc?: string;
|
|
@@ -3988,11 +3987,6 @@ export namespace ConnectedAccountCreateResponse {
|
|
|
3988
3987
|
|
|
3989
3988
|
region?: string;
|
|
3990
3989
|
|
|
3991
|
-
/**
|
|
3992
|
-
* Token for managing the registered client
|
|
3993
|
-
*/
|
|
3994
|
-
registration_access_token?: string;
|
|
3995
|
-
|
|
3996
3990
|
scope?: string | Array<string> | null;
|
|
3997
3991
|
|
|
3998
3992
|
server_location?: string;
|
|
@@ -7853,11 +7847,6 @@ export namespace ConnectedAccountRetrieveResponse {
|
|
|
7853
7847
|
*/
|
|
7854
7848
|
client_id: string;
|
|
7855
7849
|
|
|
7856
|
-
/**
|
|
7857
|
-
* Dynamically registered client secret
|
|
7858
|
-
*/
|
|
7859
|
-
client_secret: string;
|
|
7860
|
-
|
|
7861
7850
|
redirectUrl: string;
|
|
7862
7851
|
|
|
7863
7852
|
status: 'INITIATED';
|
|
@@ -7874,6 +7863,17 @@ export namespace ConnectedAccountRetrieveResponse {
|
|
|
7874
7863
|
|
|
7875
7864
|
callback_url?: string;
|
|
7876
7865
|
|
|
7866
|
+
client_id_issued_at?: number;
|
|
7867
|
+
|
|
7868
|
+
/**
|
|
7869
|
+
* Dynamically registered client secret
|
|
7870
|
+
*/
|
|
7871
|
+
client_secret?: string;
|
|
7872
|
+
|
|
7873
|
+
client_secret_expires_at?: number;
|
|
7874
|
+
|
|
7875
|
+
code_verifier?: string;
|
|
7876
|
+
|
|
7877
7877
|
COMPANYDOMAIN?: string;
|
|
7878
7878
|
|
|
7879
7879
|
dc?: string;
|
|
@@ -7901,16 +7901,6 @@ export namespace ConnectedAccountRetrieveResponse {
|
|
|
7901
7901
|
|
|
7902
7902
|
region?: string;
|
|
7903
7903
|
|
|
7904
|
-
/**
|
|
7905
|
-
* Token for managing the registered client
|
|
7906
|
-
*/
|
|
7907
|
-
registration_access_token?: string;
|
|
7908
|
-
|
|
7909
|
-
/**
|
|
7910
|
-
* URI for managing the registered client
|
|
7911
|
-
*/
|
|
7912
|
-
registration_client_uri?: string;
|
|
7913
|
-
|
|
7914
7904
|
server_location?: string;
|
|
7915
7905
|
|
|
7916
7906
|
shop?: string;
|
|
@@ -7953,11 +7943,15 @@ export namespace ConnectedAccountRetrieveResponse {
|
|
|
7953
7943
|
|
|
7954
7944
|
borneo_dashboard_url?: string;
|
|
7955
7945
|
|
|
7946
|
+
client_id_issued_at?: number;
|
|
7947
|
+
|
|
7956
7948
|
/**
|
|
7957
7949
|
* Dynamically registered client secret
|
|
7958
7950
|
*/
|
|
7959
7951
|
client_secret?: string;
|
|
7960
7952
|
|
|
7953
|
+
client_secret_expires_at?: number;
|
|
7954
|
+
|
|
7961
7955
|
COMPANYDOMAIN?: string;
|
|
7962
7956
|
|
|
7963
7957
|
dc?: string;
|
|
@@ -7989,11 +7983,6 @@ export namespace ConnectedAccountRetrieveResponse {
|
|
|
7989
7983
|
|
|
7990
7984
|
region?: string;
|
|
7991
7985
|
|
|
7992
|
-
/**
|
|
7993
|
-
* Token for managing the registered client
|
|
7994
|
-
*/
|
|
7995
|
-
registration_access_token?: string;
|
|
7996
|
-
|
|
7997
7986
|
scope?: string | Array<string> | null;
|
|
7998
7987
|
|
|
7999
7988
|
server_location?: string;
|
|
@@ -8040,11 +8029,15 @@ export namespace ConnectedAccountRetrieveResponse {
|
|
|
8040
8029
|
|
|
8041
8030
|
borneo_dashboard_url?: string;
|
|
8042
8031
|
|
|
8032
|
+
client_id_issued_at?: number;
|
|
8033
|
+
|
|
8043
8034
|
/**
|
|
8044
8035
|
* Dynamically registered client secret
|
|
8045
8036
|
*/
|
|
8046
8037
|
client_secret?: string;
|
|
8047
8038
|
|
|
8039
|
+
client_secret_expires_at?: number;
|
|
8040
|
+
|
|
8048
8041
|
COMPANYDOMAIN?: string;
|
|
8049
8042
|
|
|
8050
8043
|
dc?: string;
|
|
@@ -8076,11 +8069,6 @@ export namespace ConnectedAccountRetrieveResponse {
|
|
|
8076
8069
|
|
|
8077
8070
|
region?: string;
|
|
8078
8071
|
|
|
8079
|
-
/**
|
|
8080
|
-
* Token for managing the registered client
|
|
8081
|
-
*/
|
|
8082
|
-
registration_access_token?: string;
|
|
8083
|
-
|
|
8084
8072
|
scope?: string | Array<string> | null;
|
|
8085
8073
|
|
|
8086
8074
|
server_location?: string;
|
|
@@ -11949,11 +11937,6 @@ export namespace ConnectedAccountListResponse {
|
|
|
11949
11937
|
*/
|
|
11950
11938
|
client_id: string;
|
|
11951
11939
|
|
|
11952
|
-
/**
|
|
11953
|
-
* Dynamically registered client secret
|
|
11954
|
-
*/
|
|
11955
|
-
client_secret: string;
|
|
11956
|
-
|
|
11957
11940
|
redirectUrl: string;
|
|
11958
11941
|
|
|
11959
11942
|
status: 'INITIATED';
|
|
@@ -11970,6 +11953,17 @@ export namespace ConnectedAccountListResponse {
|
|
|
11970
11953
|
|
|
11971
11954
|
callback_url?: string;
|
|
11972
11955
|
|
|
11956
|
+
client_id_issued_at?: number;
|
|
11957
|
+
|
|
11958
|
+
/**
|
|
11959
|
+
* Dynamically registered client secret
|
|
11960
|
+
*/
|
|
11961
|
+
client_secret?: string;
|
|
11962
|
+
|
|
11963
|
+
client_secret_expires_at?: number;
|
|
11964
|
+
|
|
11965
|
+
code_verifier?: string;
|
|
11966
|
+
|
|
11973
11967
|
COMPANYDOMAIN?: string;
|
|
11974
11968
|
|
|
11975
11969
|
dc?: string;
|
|
@@ -11997,16 +11991,6 @@ export namespace ConnectedAccountListResponse {
|
|
|
11997
11991
|
|
|
11998
11992
|
region?: string;
|
|
11999
11993
|
|
|
12000
|
-
/**
|
|
12001
|
-
* Token for managing the registered client
|
|
12002
|
-
*/
|
|
12003
|
-
registration_access_token?: string;
|
|
12004
|
-
|
|
12005
|
-
/**
|
|
12006
|
-
* URI for managing the registered client
|
|
12007
|
-
*/
|
|
12008
|
-
registration_client_uri?: string;
|
|
12009
|
-
|
|
12010
11994
|
server_location?: string;
|
|
12011
11995
|
|
|
12012
11996
|
shop?: string;
|
|
@@ -12049,11 +12033,15 @@ export namespace ConnectedAccountListResponse {
|
|
|
12049
12033
|
|
|
12050
12034
|
borneo_dashboard_url?: string;
|
|
12051
12035
|
|
|
12036
|
+
client_id_issued_at?: number;
|
|
12037
|
+
|
|
12052
12038
|
/**
|
|
12053
12039
|
* Dynamically registered client secret
|
|
12054
12040
|
*/
|
|
12055
12041
|
client_secret?: string;
|
|
12056
12042
|
|
|
12043
|
+
client_secret_expires_at?: number;
|
|
12044
|
+
|
|
12057
12045
|
COMPANYDOMAIN?: string;
|
|
12058
12046
|
|
|
12059
12047
|
dc?: string;
|
|
@@ -12085,11 +12073,6 @@ export namespace ConnectedAccountListResponse {
|
|
|
12085
12073
|
|
|
12086
12074
|
region?: string;
|
|
12087
12075
|
|
|
12088
|
-
/**
|
|
12089
|
-
* Token for managing the registered client
|
|
12090
|
-
*/
|
|
12091
|
-
registration_access_token?: string;
|
|
12092
|
-
|
|
12093
12076
|
scope?: string | Array<string> | null;
|
|
12094
12077
|
|
|
12095
12078
|
server_location?: string;
|
|
@@ -12136,11 +12119,15 @@ export namespace ConnectedAccountListResponse {
|
|
|
12136
12119
|
|
|
12137
12120
|
borneo_dashboard_url?: string;
|
|
12138
12121
|
|
|
12122
|
+
client_id_issued_at?: number;
|
|
12123
|
+
|
|
12139
12124
|
/**
|
|
12140
12125
|
* Dynamically registered client secret
|
|
12141
12126
|
*/
|
|
12142
12127
|
client_secret?: string;
|
|
12143
12128
|
|
|
12129
|
+
client_secret_expires_at?: number;
|
|
12130
|
+
|
|
12144
12131
|
COMPANYDOMAIN?: string;
|
|
12145
12132
|
|
|
12146
12133
|
dc?: string;
|
|
@@ -12172,11 +12159,6 @@ export namespace ConnectedAccountListResponse {
|
|
|
12172
12159
|
|
|
12173
12160
|
region?: string;
|
|
12174
12161
|
|
|
12175
|
-
/**
|
|
12176
|
-
* Token for managing the registered client
|
|
12177
|
-
*/
|
|
12178
|
-
registration_access_token?: string;
|
|
12179
|
-
|
|
12180
12162
|
scope?: string | Array<string> | null;
|
|
12181
12163
|
|
|
12182
12164
|
server_location?: string;
|
|
@@ -16048,11 +16030,6 @@ export namespace ConnectedAccountCreateParams {
|
|
|
16048
16030
|
*/
|
|
16049
16031
|
client_id: string;
|
|
16050
16032
|
|
|
16051
|
-
/**
|
|
16052
|
-
* Dynamically registered client secret
|
|
16053
|
-
*/
|
|
16054
|
-
client_secret: string;
|
|
16055
|
-
|
|
16056
16033
|
redirectUrl: string;
|
|
16057
16034
|
|
|
16058
16035
|
status: 'INITIATED';
|
|
@@ -16069,6 +16046,17 @@ export namespace ConnectedAccountCreateParams {
|
|
|
16069
16046
|
|
|
16070
16047
|
callback_url?: string;
|
|
16071
16048
|
|
|
16049
|
+
client_id_issued_at?: number;
|
|
16050
|
+
|
|
16051
|
+
/**
|
|
16052
|
+
* Dynamically registered client secret
|
|
16053
|
+
*/
|
|
16054
|
+
client_secret?: string;
|
|
16055
|
+
|
|
16056
|
+
client_secret_expires_at?: number;
|
|
16057
|
+
|
|
16058
|
+
code_verifier?: string;
|
|
16059
|
+
|
|
16072
16060
|
COMPANYDOMAIN?: string;
|
|
16073
16061
|
|
|
16074
16062
|
dc?: string;
|
|
@@ -16096,16 +16084,6 @@ export namespace ConnectedAccountCreateParams {
|
|
|
16096
16084
|
|
|
16097
16085
|
region?: string;
|
|
16098
16086
|
|
|
16099
|
-
/**
|
|
16100
|
-
* Token for managing the registered client
|
|
16101
|
-
*/
|
|
16102
|
-
registration_access_token?: string;
|
|
16103
|
-
|
|
16104
|
-
/**
|
|
16105
|
-
* URI for managing the registered client
|
|
16106
|
-
*/
|
|
16107
|
-
registration_client_uri?: string;
|
|
16108
|
-
|
|
16109
16087
|
server_location?: string;
|
|
16110
16088
|
|
|
16111
16089
|
shop?: string;
|
|
@@ -16148,11 +16126,15 @@ export namespace ConnectedAccountCreateParams {
|
|
|
16148
16126
|
|
|
16149
16127
|
borneo_dashboard_url?: string;
|
|
16150
16128
|
|
|
16129
|
+
client_id_issued_at?: number;
|
|
16130
|
+
|
|
16151
16131
|
/**
|
|
16152
16132
|
* Dynamically registered client secret
|
|
16153
16133
|
*/
|
|
16154
16134
|
client_secret?: string;
|
|
16155
16135
|
|
|
16136
|
+
client_secret_expires_at?: number;
|
|
16137
|
+
|
|
16156
16138
|
COMPANYDOMAIN?: string;
|
|
16157
16139
|
|
|
16158
16140
|
dc?: string;
|
|
@@ -16184,11 +16166,6 @@ export namespace ConnectedAccountCreateParams {
|
|
|
16184
16166
|
|
|
16185
16167
|
region?: string;
|
|
16186
16168
|
|
|
16187
|
-
/**
|
|
16188
|
-
* Token for managing the registered client
|
|
16189
|
-
*/
|
|
16190
|
-
registration_access_token?: string;
|
|
16191
|
-
|
|
16192
16169
|
scope?: string | Array<string> | null;
|
|
16193
16170
|
|
|
16194
16171
|
server_location?: string;
|
|
@@ -16235,11 +16212,15 @@ export namespace ConnectedAccountCreateParams {
|
|
|
16235
16212
|
|
|
16236
16213
|
borneo_dashboard_url?: string;
|
|
16237
16214
|
|
|
16215
|
+
client_id_issued_at?: number;
|
|
16216
|
+
|
|
16238
16217
|
/**
|
|
16239
16218
|
* Dynamically registered client secret
|
|
16240
16219
|
*/
|
|
16241
16220
|
client_secret?: string;
|
|
16242
16221
|
|
|
16222
|
+
client_secret_expires_at?: number;
|
|
16223
|
+
|
|
16243
16224
|
COMPANYDOMAIN?: string;
|
|
16244
16225
|
|
|
16245
16226
|
dc?: string;
|
|
@@ -16271,11 +16252,6 @@ export namespace ConnectedAccountCreateParams {
|
|
|
16271
16252
|
|
|
16272
16253
|
region?: string;
|
|
16273
16254
|
|
|
16274
|
-
/**
|
|
16275
|
-
* Token for managing the registered client
|
|
16276
|
-
*/
|
|
16277
|
-
registration_access_token?: string;
|
|
16278
|
-
|
|
16279
16255
|
scope?: string | Array<string> | null;
|
|
16280
16256
|
|
|
16281
16257
|
server_location?: string;
|
package/src/resources/link.ts
CHANGED
|
@@ -3447,11 +3447,6 @@ export namespace LinkCreateParams {
|
|
|
3447
3447
|
*/
|
|
3448
3448
|
client_id: string;
|
|
3449
3449
|
|
|
3450
|
-
/**
|
|
3451
|
-
* Dynamically registered client secret
|
|
3452
|
-
*/
|
|
3453
|
-
client_secret: string;
|
|
3454
|
-
|
|
3455
3450
|
redirectUrl: string;
|
|
3456
3451
|
|
|
3457
3452
|
account_id?: string;
|
|
@@ -3466,6 +3461,17 @@ export namespace LinkCreateParams {
|
|
|
3466
3461
|
|
|
3467
3462
|
callback_url?: string;
|
|
3468
3463
|
|
|
3464
|
+
client_id_issued_at?: number;
|
|
3465
|
+
|
|
3466
|
+
/**
|
|
3467
|
+
* Dynamically registered client secret
|
|
3468
|
+
*/
|
|
3469
|
+
client_secret?: string;
|
|
3470
|
+
|
|
3471
|
+
client_secret_expires_at?: number;
|
|
3472
|
+
|
|
3473
|
+
code_verifier?: string;
|
|
3474
|
+
|
|
3469
3475
|
COMPANYDOMAIN?: string;
|
|
3470
3476
|
|
|
3471
3477
|
dc?: string;
|
|
@@ -3493,16 +3499,6 @@ export namespace LinkCreateParams {
|
|
|
3493
3499
|
|
|
3494
3500
|
region?: string;
|
|
3495
3501
|
|
|
3496
|
-
/**
|
|
3497
|
-
* Token for managing the registered client
|
|
3498
|
-
*/
|
|
3499
|
-
registration_access_token?: string;
|
|
3500
|
-
|
|
3501
|
-
/**
|
|
3502
|
-
* URI for managing the registered client
|
|
3503
|
-
*/
|
|
3504
|
-
registration_client_uri?: string;
|
|
3505
|
-
|
|
3506
3502
|
server_location?: string;
|
|
3507
3503
|
|
|
3508
3504
|
shop?: string;
|
|
@@ -3543,11 +3539,15 @@ export namespace LinkCreateParams {
|
|
|
3543
3539
|
|
|
3544
3540
|
borneo_dashboard_url?: string;
|
|
3545
3541
|
|
|
3542
|
+
client_id_issued_at?: number;
|
|
3543
|
+
|
|
3546
3544
|
/**
|
|
3547
3545
|
* Dynamically registered client secret
|
|
3548
3546
|
*/
|
|
3549
3547
|
client_secret?: string;
|
|
3550
3548
|
|
|
3549
|
+
client_secret_expires_at?: number;
|
|
3550
|
+
|
|
3551
3551
|
COMPANYDOMAIN?: string;
|
|
3552
3552
|
|
|
3553
3553
|
dc?: string;
|
|
@@ -3579,11 +3579,6 @@ export namespace LinkCreateParams {
|
|
|
3579
3579
|
|
|
3580
3580
|
region?: string;
|
|
3581
3581
|
|
|
3582
|
-
/**
|
|
3583
|
-
* Token for managing the registered client
|
|
3584
|
-
*/
|
|
3585
|
-
registration_access_token?: string;
|
|
3586
|
-
|
|
3587
3582
|
scope?: string | Array<string> | null;
|
|
3588
3583
|
|
|
3589
3584
|
server_location?: string;
|
|
@@ -3628,11 +3623,15 @@ export namespace LinkCreateParams {
|
|
|
3628
3623
|
|
|
3629
3624
|
borneo_dashboard_url?: string;
|
|
3630
3625
|
|
|
3626
|
+
client_id_issued_at?: number;
|
|
3627
|
+
|
|
3631
3628
|
/**
|
|
3632
3629
|
* Dynamically registered client secret
|
|
3633
3630
|
*/
|
|
3634
3631
|
client_secret?: string;
|
|
3635
3632
|
|
|
3633
|
+
client_secret_expires_at?: number;
|
|
3634
|
+
|
|
3636
3635
|
COMPANYDOMAIN?: string;
|
|
3637
3636
|
|
|
3638
3637
|
dc?: string;
|
|
@@ -3664,11 +3663,6 @@ export namespace LinkCreateParams {
|
|
|
3664
3663
|
|
|
3665
3664
|
region?: string;
|
|
3666
3665
|
|
|
3667
|
-
/**
|
|
3668
|
-
* Token for managing the registered client
|
|
3669
|
-
*/
|
|
3670
|
-
registration_access_token?: string;
|
|
3671
|
-
|
|
3672
3666
|
scope?: string | Array<string> | null;
|
|
3673
3667
|
|
|
3674
3668
|
server_location?: string;
|
package/src/resources/tools.ts
CHANGED
|
@@ -710,11 +710,15 @@ export namespace ToolExecuteParams {
|
|
|
710
710
|
|
|
711
711
|
borneo_dashboard_url?: string;
|
|
712
712
|
|
|
713
|
+
client_id_issued_at?: number;
|
|
714
|
+
|
|
713
715
|
/**
|
|
714
716
|
* Dynamically registered client secret
|
|
715
717
|
*/
|
|
716
718
|
client_secret?: string;
|
|
717
719
|
|
|
720
|
+
client_secret_expires_at?: number;
|
|
721
|
+
|
|
718
722
|
COMPANYDOMAIN?: string;
|
|
719
723
|
|
|
720
724
|
dc?: string;
|
|
@@ -746,11 +750,6 @@ export namespace ToolExecuteParams {
|
|
|
746
750
|
|
|
747
751
|
region?: string;
|
|
748
752
|
|
|
749
|
-
/**
|
|
750
|
-
* Token for managing the registered client
|
|
751
|
-
*/
|
|
752
|
-
registration_access_token?: string;
|
|
753
|
-
|
|
754
753
|
scope?: string | Array<string> | null;
|
|
755
754
|
|
|
756
755
|
server_location?: string;
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.1.0-alpha.
|
|
1
|
+
export const VERSION = '0.1.0-alpha.45'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.1.0-alpha.
|
|
1
|
+
export declare const VERSION = "0.1.0-alpha.45";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.1.0-alpha.
|
|
1
|
+
export declare const VERSION = "0.1.0-alpha.45";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.VERSION = void 0;
|
|
4
|
-
exports.VERSION = '0.1.0-alpha.
|
|
4
|
+
exports.VERSION = '0.1.0-alpha.45'; // x-release-please-version
|
|
5
5
|
//# sourceMappingURL=version.js.map
|
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '0.1.0-alpha.
|
|
1
|
+
export const VERSION = '0.1.0-alpha.45'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|