@arbidocs/client 0.3.61 → 0.3.63
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/index.d.cts +131 -2
- package/dist/index.d.ts +131 -2
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -639,6 +639,46 @@ interface paths {
|
|
|
639
639
|
patch: operations['update_user_settings'];
|
|
640
640
|
trace?: never;
|
|
641
641
|
};
|
|
642
|
+
'/v1/user/request-deletion': {
|
|
643
|
+
parameters: {
|
|
644
|
+
query?: never;
|
|
645
|
+
header?: never;
|
|
646
|
+
path?: never;
|
|
647
|
+
cookie?: never;
|
|
648
|
+
};
|
|
649
|
+
get?: never;
|
|
650
|
+
put?: never;
|
|
651
|
+
/**
|
|
652
|
+
* Request Account Deletion
|
|
653
|
+
* @description Schedule account deletion after a 30-day grace period.
|
|
654
|
+
*/
|
|
655
|
+
post: operations['request_account_deletion'];
|
|
656
|
+
delete?: never;
|
|
657
|
+
options?: never;
|
|
658
|
+
head?: never;
|
|
659
|
+
patch?: never;
|
|
660
|
+
trace?: never;
|
|
661
|
+
};
|
|
662
|
+
'/v1/user/cancel-deletion': {
|
|
663
|
+
parameters: {
|
|
664
|
+
query?: never;
|
|
665
|
+
header?: never;
|
|
666
|
+
path?: never;
|
|
667
|
+
cookie?: never;
|
|
668
|
+
};
|
|
669
|
+
get?: never;
|
|
670
|
+
put?: never;
|
|
671
|
+
/**
|
|
672
|
+
* Cancel Account Deletion
|
|
673
|
+
* @description Cancel a pending account deletion, restoring full access.
|
|
674
|
+
*/
|
|
675
|
+
post: operations['cancel_account_deletion'];
|
|
676
|
+
delete?: never;
|
|
677
|
+
options?: never;
|
|
678
|
+
head?: never;
|
|
679
|
+
patch?: never;
|
|
680
|
+
trace?: never;
|
|
681
|
+
};
|
|
642
682
|
'/v1/user/me': {
|
|
643
683
|
parameters: {
|
|
644
684
|
query?: never;
|
|
@@ -2163,7 +2203,7 @@ interface components {
|
|
|
2163
2203
|
/**
|
|
2164
2204
|
* Skills Enabled
|
|
2165
2205
|
* @description Enable the skills system: /skill (create) and /<skill-name> (invoke) commands.
|
|
2166
|
-
* @default
|
|
2206
|
+
* @default false
|
|
2167
2207
|
*/
|
|
2168
2208
|
SKILLS_ENABLED: boolean;
|
|
2169
2209
|
/**
|
|
@@ -2331,7 +2371,7 @@ interface components {
|
|
|
2331
2371
|
* "VISION_ENABLED": false,
|
|
2332
2372
|
* "PERSONAL_AGENT": false,
|
|
2333
2373
|
* "MEMORY_ENABLED": false,
|
|
2334
|
-
* "SKILLS_ENABLED":
|
|
2374
|
+
* "SKILLS_ENABLED": false,
|
|
2335
2375
|
* "SKILL_CREATION": false,
|
|
2336
2376
|
* "MEMORY_CREATION": false,
|
|
2337
2377
|
* "REVIEW_ENABLED": false,
|
|
@@ -3169,6 +3209,25 @@ interface components {
|
|
|
3169
3209
|
/** Email */
|
|
3170
3210
|
email: string;
|
|
3171
3211
|
};
|
|
3212
|
+
/**
|
|
3213
|
+
* RequestDeletionResponse
|
|
3214
|
+
* @description Response returned when a user requests account deletion.
|
|
3215
|
+
*/
|
|
3216
|
+
RequestDeletionResponse: {
|
|
3217
|
+
/**
|
|
3218
|
+
* Deletion Scheduled At
|
|
3219
|
+
* Format: date-time
|
|
3220
|
+
*/
|
|
3221
|
+
deletion_scheduled_at: string;
|
|
3222
|
+
};
|
|
3223
|
+
/**
|
|
3224
|
+
* CancelDeletionResponse
|
|
3225
|
+
* @description Response returned when a user cancels account deletion.
|
|
3226
|
+
*/
|
|
3227
|
+
CancelDeletionResponse: {
|
|
3228
|
+
/** Detail */
|
|
3229
|
+
detail: string;
|
|
3230
|
+
};
|
|
3172
3231
|
/**
|
|
3173
3232
|
* ConnectionClosedMessage
|
|
3174
3233
|
* @description Sent when connection is closed (e.g., another tab opened).
|
|
@@ -7458,6 +7517,11 @@ interface components {
|
|
|
7458
7517
|
* @default false
|
|
7459
7518
|
*/
|
|
7460
7519
|
show_templates: boolean;
|
|
7520
|
+
/**
|
|
7521
|
+
* Show Skills
|
|
7522
|
+
* @default false
|
|
7523
|
+
*/
|
|
7524
|
+
show_skills: boolean;
|
|
7461
7525
|
/**
|
|
7462
7526
|
* Show Pa Mode
|
|
7463
7527
|
* @default false
|
|
@@ -7487,6 +7551,11 @@ interface components {
|
|
|
7487
7551
|
premium_model?: string | null;
|
|
7488
7552
|
/** Picture */
|
|
7489
7553
|
picture?: string | null;
|
|
7554
|
+
/**
|
|
7555
|
+
* Deletion Requested At
|
|
7556
|
+
* Format: date-time
|
|
7557
|
+
*/
|
|
7558
|
+
deletion_requested_at?: string | null;
|
|
7490
7559
|
} & {
|
|
7491
7560
|
[key: string]: unknown;
|
|
7492
7561
|
};
|
|
@@ -7517,6 +7586,8 @@ interface components {
|
|
|
7517
7586
|
show_help_page?: boolean | null;
|
|
7518
7587
|
/** Show Templates */
|
|
7519
7588
|
show_templates?: boolean | null;
|
|
7589
|
+
/** Show Skills */
|
|
7590
|
+
show_skills?: boolean | null;
|
|
7520
7591
|
/** Show Pa Mode */
|
|
7521
7592
|
show_pa_mode?: boolean | null;
|
|
7522
7593
|
/** Show Agent Sessions */
|
|
@@ -8843,6 +8914,64 @@ interface operations {
|
|
|
8843
8914
|
};
|
|
8844
8915
|
};
|
|
8845
8916
|
};
|
|
8917
|
+
request_account_deletion: {
|
|
8918
|
+
parameters: {
|
|
8919
|
+
query?: never;
|
|
8920
|
+
header?: never;
|
|
8921
|
+
path?: never;
|
|
8922
|
+
cookie?: never;
|
|
8923
|
+
};
|
|
8924
|
+
requestBody?: never;
|
|
8925
|
+
responses: {
|
|
8926
|
+
/** @description Successful Response */
|
|
8927
|
+
200: {
|
|
8928
|
+
headers: {
|
|
8929
|
+
[name: string]: unknown;
|
|
8930
|
+
};
|
|
8931
|
+
content: {
|
|
8932
|
+
'application/json': components['schemas']['RequestDeletionResponse'];
|
|
8933
|
+
};
|
|
8934
|
+
};
|
|
8935
|
+
/** @description Validation Error */
|
|
8936
|
+
422: {
|
|
8937
|
+
headers: {
|
|
8938
|
+
[name: string]: unknown;
|
|
8939
|
+
};
|
|
8940
|
+
content: {
|
|
8941
|
+
'application/json': components['schemas']['HTTPValidationError'];
|
|
8942
|
+
};
|
|
8943
|
+
};
|
|
8944
|
+
};
|
|
8945
|
+
};
|
|
8946
|
+
cancel_account_deletion: {
|
|
8947
|
+
parameters: {
|
|
8948
|
+
query?: never;
|
|
8949
|
+
header?: never;
|
|
8950
|
+
path?: never;
|
|
8951
|
+
cookie?: never;
|
|
8952
|
+
};
|
|
8953
|
+
requestBody?: never;
|
|
8954
|
+
responses: {
|
|
8955
|
+
/** @description Successful Response */
|
|
8956
|
+
200: {
|
|
8957
|
+
headers: {
|
|
8958
|
+
[name: string]: unknown;
|
|
8959
|
+
};
|
|
8960
|
+
content: {
|
|
8961
|
+
'application/json': components['schemas']['CancelDeletionResponse'];
|
|
8962
|
+
};
|
|
8963
|
+
};
|
|
8964
|
+
/** @description Validation Error */
|
|
8965
|
+
422: {
|
|
8966
|
+
headers: {
|
|
8967
|
+
[name: string]: unknown;
|
|
8968
|
+
};
|
|
8969
|
+
content: {
|
|
8970
|
+
'application/json': components['schemas']['HTTPValidationError'];
|
|
8971
|
+
};
|
|
8972
|
+
};
|
|
8973
|
+
};
|
|
8974
|
+
};
|
|
8846
8975
|
list_test_accounts: {
|
|
8847
8976
|
parameters: {
|
|
8848
8977
|
query?: never;
|
package/dist/index.d.ts
CHANGED
|
@@ -639,6 +639,46 @@ interface paths {
|
|
|
639
639
|
patch: operations['update_user_settings'];
|
|
640
640
|
trace?: never;
|
|
641
641
|
};
|
|
642
|
+
'/v1/user/request-deletion': {
|
|
643
|
+
parameters: {
|
|
644
|
+
query?: never;
|
|
645
|
+
header?: never;
|
|
646
|
+
path?: never;
|
|
647
|
+
cookie?: never;
|
|
648
|
+
};
|
|
649
|
+
get?: never;
|
|
650
|
+
put?: never;
|
|
651
|
+
/**
|
|
652
|
+
* Request Account Deletion
|
|
653
|
+
* @description Schedule account deletion after a 30-day grace period.
|
|
654
|
+
*/
|
|
655
|
+
post: operations['request_account_deletion'];
|
|
656
|
+
delete?: never;
|
|
657
|
+
options?: never;
|
|
658
|
+
head?: never;
|
|
659
|
+
patch?: never;
|
|
660
|
+
trace?: never;
|
|
661
|
+
};
|
|
662
|
+
'/v1/user/cancel-deletion': {
|
|
663
|
+
parameters: {
|
|
664
|
+
query?: never;
|
|
665
|
+
header?: never;
|
|
666
|
+
path?: never;
|
|
667
|
+
cookie?: never;
|
|
668
|
+
};
|
|
669
|
+
get?: never;
|
|
670
|
+
put?: never;
|
|
671
|
+
/**
|
|
672
|
+
* Cancel Account Deletion
|
|
673
|
+
* @description Cancel a pending account deletion, restoring full access.
|
|
674
|
+
*/
|
|
675
|
+
post: operations['cancel_account_deletion'];
|
|
676
|
+
delete?: never;
|
|
677
|
+
options?: never;
|
|
678
|
+
head?: never;
|
|
679
|
+
patch?: never;
|
|
680
|
+
trace?: never;
|
|
681
|
+
};
|
|
642
682
|
'/v1/user/me': {
|
|
643
683
|
parameters: {
|
|
644
684
|
query?: never;
|
|
@@ -2163,7 +2203,7 @@ interface components {
|
|
|
2163
2203
|
/**
|
|
2164
2204
|
* Skills Enabled
|
|
2165
2205
|
* @description Enable the skills system: /skill (create) and /<skill-name> (invoke) commands.
|
|
2166
|
-
* @default
|
|
2206
|
+
* @default false
|
|
2167
2207
|
*/
|
|
2168
2208
|
SKILLS_ENABLED: boolean;
|
|
2169
2209
|
/**
|
|
@@ -2331,7 +2371,7 @@ interface components {
|
|
|
2331
2371
|
* "VISION_ENABLED": false,
|
|
2332
2372
|
* "PERSONAL_AGENT": false,
|
|
2333
2373
|
* "MEMORY_ENABLED": false,
|
|
2334
|
-
* "SKILLS_ENABLED":
|
|
2374
|
+
* "SKILLS_ENABLED": false,
|
|
2335
2375
|
* "SKILL_CREATION": false,
|
|
2336
2376
|
* "MEMORY_CREATION": false,
|
|
2337
2377
|
* "REVIEW_ENABLED": false,
|
|
@@ -3169,6 +3209,25 @@ interface components {
|
|
|
3169
3209
|
/** Email */
|
|
3170
3210
|
email: string;
|
|
3171
3211
|
};
|
|
3212
|
+
/**
|
|
3213
|
+
* RequestDeletionResponse
|
|
3214
|
+
* @description Response returned when a user requests account deletion.
|
|
3215
|
+
*/
|
|
3216
|
+
RequestDeletionResponse: {
|
|
3217
|
+
/**
|
|
3218
|
+
* Deletion Scheduled At
|
|
3219
|
+
* Format: date-time
|
|
3220
|
+
*/
|
|
3221
|
+
deletion_scheduled_at: string;
|
|
3222
|
+
};
|
|
3223
|
+
/**
|
|
3224
|
+
* CancelDeletionResponse
|
|
3225
|
+
* @description Response returned when a user cancels account deletion.
|
|
3226
|
+
*/
|
|
3227
|
+
CancelDeletionResponse: {
|
|
3228
|
+
/** Detail */
|
|
3229
|
+
detail: string;
|
|
3230
|
+
};
|
|
3172
3231
|
/**
|
|
3173
3232
|
* ConnectionClosedMessage
|
|
3174
3233
|
* @description Sent when connection is closed (e.g., another tab opened).
|
|
@@ -7458,6 +7517,11 @@ interface components {
|
|
|
7458
7517
|
* @default false
|
|
7459
7518
|
*/
|
|
7460
7519
|
show_templates: boolean;
|
|
7520
|
+
/**
|
|
7521
|
+
* Show Skills
|
|
7522
|
+
* @default false
|
|
7523
|
+
*/
|
|
7524
|
+
show_skills: boolean;
|
|
7461
7525
|
/**
|
|
7462
7526
|
* Show Pa Mode
|
|
7463
7527
|
* @default false
|
|
@@ -7487,6 +7551,11 @@ interface components {
|
|
|
7487
7551
|
premium_model?: string | null;
|
|
7488
7552
|
/** Picture */
|
|
7489
7553
|
picture?: string | null;
|
|
7554
|
+
/**
|
|
7555
|
+
* Deletion Requested At
|
|
7556
|
+
* Format: date-time
|
|
7557
|
+
*/
|
|
7558
|
+
deletion_requested_at?: string | null;
|
|
7490
7559
|
} & {
|
|
7491
7560
|
[key: string]: unknown;
|
|
7492
7561
|
};
|
|
@@ -7517,6 +7586,8 @@ interface components {
|
|
|
7517
7586
|
show_help_page?: boolean | null;
|
|
7518
7587
|
/** Show Templates */
|
|
7519
7588
|
show_templates?: boolean | null;
|
|
7589
|
+
/** Show Skills */
|
|
7590
|
+
show_skills?: boolean | null;
|
|
7520
7591
|
/** Show Pa Mode */
|
|
7521
7592
|
show_pa_mode?: boolean | null;
|
|
7522
7593
|
/** Show Agent Sessions */
|
|
@@ -8843,6 +8914,64 @@ interface operations {
|
|
|
8843
8914
|
};
|
|
8844
8915
|
};
|
|
8845
8916
|
};
|
|
8917
|
+
request_account_deletion: {
|
|
8918
|
+
parameters: {
|
|
8919
|
+
query?: never;
|
|
8920
|
+
header?: never;
|
|
8921
|
+
path?: never;
|
|
8922
|
+
cookie?: never;
|
|
8923
|
+
};
|
|
8924
|
+
requestBody?: never;
|
|
8925
|
+
responses: {
|
|
8926
|
+
/** @description Successful Response */
|
|
8927
|
+
200: {
|
|
8928
|
+
headers: {
|
|
8929
|
+
[name: string]: unknown;
|
|
8930
|
+
};
|
|
8931
|
+
content: {
|
|
8932
|
+
'application/json': components['schemas']['RequestDeletionResponse'];
|
|
8933
|
+
};
|
|
8934
|
+
};
|
|
8935
|
+
/** @description Validation Error */
|
|
8936
|
+
422: {
|
|
8937
|
+
headers: {
|
|
8938
|
+
[name: string]: unknown;
|
|
8939
|
+
};
|
|
8940
|
+
content: {
|
|
8941
|
+
'application/json': components['schemas']['HTTPValidationError'];
|
|
8942
|
+
};
|
|
8943
|
+
};
|
|
8944
|
+
};
|
|
8945
|
+
};
|
|
8946
|
+
cancel_account_deletion: {
|
|
8947
|
+
parameters: {
|
|
8948
|
+
query?: never;
|
|
8949
|
+
header?: never;
|
|
8950
|
+
path?: never;
|
|
8951
|
+
cookie?: never;
|
|
8952
|
+
};
|
|
8953
|
+
requestBody?: never;
|
|
8954
|
+
responses: {
|
|
8955
|
+
/** @description Successful Response */
|
|
8956
|
+
200: {
|
|
8957
|
+
headers: {
|
|
8958
|
+
[name: string]: unknown;
|
|
8959
|
+
};
|
|
8960
|
+
content: {
|
|
8961
|
+
'application/json': components['schemas']['CancelDeletionResponse'];
|
|
8962
|
+
};
|
|
8963
|
+
};
|
|
8964
|
+
/** @description Validation Error */
|
|
8965
|
+
422: {
|
|
8966
|
+
headers: {
|
|
8967
|
+
[name: string]: unknown;
|
|
8968
|
+
};
|
|
8969
|
+
content: {
|
|
8970
|
+
'application/json': components['schemas']['HTTPValidationError'];
|
|
8971
|
+
};
|
|
8972
|
+
};
|
|
8973
|
+
};
|
|
8974
|
+
};
|
|
8846
8975
|
list_test_accounts: {
|
|
8847
8976
|
parameters: {
|
|
8848
8977
|
query?: never;
|
package/package.json
CHANGED