@cloudcannon/sdk 0.0.2 → 0.0.4
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 +1514 -0
- package/dist/index.d.ts +15 -9
- package/dist/index.js +15 -6
- package/dist/schema.d.ts +932 -155
- package/dist/src/backup.d.ts +6 -0
- package/dist/src/backup.js +15 -0
- package/dist/src/helpers/query.d.ts +28 -0
- package/dist/src/helpers/query.js +34 -0
- package/dist/src/inbox.d.ts +4 -1
- package/dist/src/inbox.js +5 -3
- package/dist/src/org.d.ts +7 -3
- package/dist/src/org.js +13 -9
- package/dist/src/site.d.ts +13 -3
- package/dist/src/site.js +42 -6
- package/package.json +1 -1
package/dist/schema.d.ts
CHANGED
|
@@ -998,6 +998,23 @@ export interface paths {
|
|
|
998
998
|
patch?: never;
|
|
999
999
|
trace?: never;
|
|
1000
1000
|
};
|
|
1001
|
+
'/api/v0/projects/{project_uuid}/branches': {
|
|
1002
|
+
parameters: {
|
|
1003
|
+
query?: never;
|
|
1004
|
+
header?: never;
|
|
1005
|
+
path?: never;
|
|
1006
|
+
cookie?: never;
|
|
1007
|
+
};
|
|
1008
|
+
/** @description List branches for the project repository */
|
|
1009
|
+
get: operations['Project Git_Branches'];
|
|
1010
|
+
put?: never;
|
|
1011
|
+
post?: never;
|
|
1012
|
+
delete?: never;
|
|
1013
|
+
options?: never;
|
|
1014
|
+
head?: never;
|
|
1015
|
+
patch?: never;
|
|
1016
|
+
trace?: never;
|
|
1017
|
+
};
|
|
1001
1018
|
'/api/v0/projects/{project_uuid}/git': {
|
|
1002
1019
|
parameters: {
|
|
1003
1020
|
query?: never;
|
|
@@ -1015,6 +1032,40 @@ export interface paths {
|
|
|
1015
1032
|
patch?: never;
|
|
1016
1033
|
trace?: never;
|
|
1017
1034
|
};
|
|
1035
|
+
'/api/v0/projects/{project_uuid}/pull-requests': {
|
|
1036
|
+
parameters: {
|
|
1037
|
+
query?: never;
|
|
1038
|
+
header?: never;
|
|
1039
|
+
path?: never;
|
|
1040
|
+
cookie?: never;
|
|
1041
|
+
};
|
|
1042
|
+
/** @description List open pull requests for the project repository */
|
|
1043
|
+
get: operations['Project Git_PullRequests'];
|
|
1044
|
+
put?: never;
|
|
1045
|
+
post?: never;
|
|
1046
|
+
delete?: never;
|
|
1047
|
+
options?: never;
|
|
1048
|
+
head?: never;
|
|
1049
|
+
patch?: never;
|
|
1050
|
+
trace?: never;
|
|
1051
|
+
};
|
|
1052
|
+
'/api/v0/projects/{project_uuid}/refresh-pr-comments': {
|
|
1053
|
+
parameters: {
|
|
1054
|
+
query?: never;
|
|
1055
|
+
header?: never;
|
|
1056
|
+
path?: never;
|
|
1057
|
+
cookie?: never;
|
|
1058
|
+
};
|
|
1059
|
+
get?: never;
|
|
1060
|
+
put?: never;
|
|
1061
|
+
/** @description Refresh deploy-preview PR comments for every site on this project */
|
|
1062
|
+
post: operations['Projects_RefreshPrComments'];
|
|
1063
|
+
delete?: never;
|
|
1064
|
+
options?: never;
|
|
1065
|
+
head?: never;
|
|
1066
|
+
patch?: never;
|
|
1067
|
+
trace?: never;
|
|
1068
|
+
};
|
|
1018
1069
|
'/api/v0/projects/{project_uuid}/sites': {
|
|
1019
1070
|
parameters: {
|
|
1020
1071
|
query?: never;
|
|
@@ -2308,6 +2359,8 @@ export interface components {
|
|
|
2308
2359
|
BranchSchema: {
|
|
2309
2360
|
name?: string;
|
|
2310
2361
|
sha?: string;
|
|
2362
|
+
/** Format: date-time */
|
|
2363
|
+
updated_at?: string | null;
|
|
2311
2364
|
};
|
|
2312
2365
|
PullRequestSchema: {
|
|
2313
2366
|
number?: number;
|
|
@@ -2323,6 +2376,7 @@ export interface components {
|
|
|
2323
2376
|
/** Format: date-time */
|
|
2324
2377
|
merged_at?: string | null;
|
|
2325
2378
|
locked?: boolean | null;
|
|
2379
|
+
draft?: boolean | null;
|
|
2326
2380
|
head?: {
|
|
2327
2381
|
ref?: string;
|
|
2328
2382
|
sha?: string;
|
|
@@ -2564,6 +2618,8 @@ export interface components {
|
|
|
2564
2618
|
mode?: string | null;
|
|
2565
2619
|
project_id?: number | null;
|
|
2566
2620
|
project_uuid?: string | null;
|
|
2621
|
+
pr_number?: number | null;
|
|
2622
|
+
pr_external_url?: string | null;
|
|
2567
2623
|
cloudcannon_config_path?: string | null;
|
|
2568
2624
|
output_storage_provider?: string | null;
|
|
2569
2625
|
domain_name?: string | null;
|
|
@@ -2620,6 +2676,8 @@ export interface components {
|
|
|
2620
2676
|
mode?: string | null;
|
|
2621
2677
|
project_id?: number | null;
|
|
2622
2678
|
project_uuid?: string | null;
|
|
2679
|
+
pr_number?: number | null;
|
|
2680
|
+
pr_external_url?: string | null;
|
|
2623
2681
|
cloudcannon_config_path?: string | null;
|
|
2624
2682
|
output_storage_provider?: string | null;
|
|
2625
2683
|
base_domain?: components['schemas']['BaseDomainBlueprint'] | (string | null);
|
|
@@ -2736,6 +2794,13 @@ export interface components {
|
|
|
2736
2794
|
last_compiled?: string | null;
|
|
2737
2795
|
/** Format: date-time */
|
|
2738
2796
|
last_compiled_success?: string | null;
|
|
2797
|
+
auto_create_site_on_pr?: boolean;
|
|
2798
|
+
comment_on_pr?: boolean;
|
|
2799
|
+
auto_delete_site_on_pr_close?: boolean;
|
|
2800
|
+
pr_comment_skip_drafts?: boolean;
|
|
2801
|
+
pr_comment_footer?: string | null;
|
|
2802
|
+
auto_create_skip_drafts?: boolean;
|
|
2803
|
+
pr_features_enabled?: boolean;
|
|
2739
2804
|
/** Format: date-time */
|
|
2740
2805
|
created_at: string;
|
|
2741
2806
|
/** Format: date-time */
|
|
@@ -3219,7 +3284,9 @@ export interface components {
|
|
|
3219
3284
|
};
|
|
3220
3285
|
};
|
|
3221
3286
|
parameters: {
|
|
3287
|
+
/** @description Page number to fetch (1-indexed) */
|
|
3222
3288
|
PageQuery: number;
|
|
3289
|
+
/** @description Number of items per page */
|
|
3223
3290
|
ItemsQuery: number;
|
|
3224
3291
|
SortAttributeQuery: string;
|
|
3225
3292
|
SortDirectionQuery: string;
|
|
@@ -3394,10 +3461,10 @@ export interface operations {
|
|
|
3394
3461
|
'Base Domain Dns Records_List': {
|
|
3395
3462
|
parameters: {
|
|
3396
3463
|
query?: {
|
|
3464
|
+
/** @description Page number to fetch (1-indexed) */
|
|
3397
3465
|
page?: components['parameters']['PageQuery'];
|
|
3398
|
-
|
|
3399
|
-
|
|
3400
|
-
sort_direction?: components['parameters']['SortDirectionQuery'];
|
|
3466
|
+
/** @description Number of items per page */
|
|
3467
|
+
items?: components['parameters']['ItemsQuery'];
|
|
3401
3468
|
};
|
|
3402
3469
|
header?: never;
|
|
3403
3470
|
path: {
|
|
@@ -3410,11 +3477,11 @@ export interface operations {
|
|
|
3410
3477
|
/** @description OK */
|
|
3411
3478
|
200: {
|
|
3412
3479
|
headers: {
|
|
3413
|
-
/** @description
|
|
3480
|
+
/** @description The current page number */
|
|
3414
3481
|
current_page?: string;
|
|
3415
|
-
/** @description
|
|
3482
|
+
/** @description The total number of items across all pages */
|
|
3416
3483
|
total_items?: string;
|
|
3417
|
-
/** @description
|
|
3484
|
+
/** @description The total number of pages available */
|
|
3418
3485
|
total_pages?: string;
|
|
3419
3486
|
[name: string]: unknown;
|
|
3420
3487
|
};
|
|
@@ -3600,10 +3667,10 @@ export interface operations {
|
|
|
3600
3667
|
Subdomains_Index: {
|
|
3601
3668
|
parameters: {
|
|
3602
3669
|
query?: {
|
|
3670
|
+
/** @description Page number to fetch (1-indexed) */
|
|
3603
3671
|
page?: components['parameters']['PageQuery'];
|
|
3604
|
-
|
|
3605
|
-
|
|
3606
|
-
sort_direction?: components['parameters']['SortDirectionQuery'];
|
|
3672
|
+
/** @description Number of items per page */
|
|
3673
|
+
items?: components['parameters']['ItemsQuery'];
|
|
3607
3674
|
};
|
|
3608
3675
|
header?: never;
|
|
3609
3676
|
path: {
|
|
@@ -3616,11 +3683,11 @@ export interface operations {
|
|
|
3616
3683
|
/** @description OK */
|
|
3617
3684
|
200: {
|
|
3618
3685
|
headers: {
|
|
3619
|
-
/** @description
|
|
3686
|
+
/** @description The current page number */
|
|
3620
3687
|
current_page?: string;
|
|
3621
|
-
/** @description
|
|
3688
|
+
/** @description The total number of items across all pages */
|
|
3622
3689
|
total_items?: string;
|
|
3623
|
-
/** @description
|
|
3690
|
+
/** @description The total number of pages available */
|
|
3624
3691
|
total_pages?: string;
|
|
3625
3692
|
[name: string]: unknown;
|
|
3626
3693
|
};
|
|
@@ -3720,10 +3787,10 @@ export interface operations {
|
|
|
3720
3787
|
content: {
|
|
3721
3788
|
'application/json': {
|
|
3722
3789
|
/** @enum {string} */
|
|
3723
|
-
dam_type
|
|
3724
|
-
name
|
|
3725
|
-
config
|
|
3726
|
-
base_url
|
|
3790
|
+
dam_type?: 's3' | 'tenovos' | 'cloudinary' | 'azure' | 'google' | 'cloudflare' | 'digitalocean';
|
|
3791
|
+
name?: string;
|
|
3792
|
+
config?: string;
|
|
3793
|
+
base_url?: string;
|
|
3727
3794
|
access_key?: string | null;
|
|
3728
3795
|
access_secret?: string | null;
|
|
3729
3796
|
max_upload_size?: number | null;
|
|
@@ -4516,7 +4583,22 @@ export interface operations {
|
|
|
4516
4583
|
};
|
|
4517
4584
|
'Form Hook_Sends': {
|
|
4518
4585
|
parameters: {
|
|
4519
|
-
query?:
|
|
4586
|
+
query?: {
|
|
4587
|
+
success?: boolean;
|
|
4588
|
+
inbox_target_uuid?: string;
|
|
4589
|
+
form_hook_uuid?: string;
|
|
4590
|
+
updated_at_lt?: string;
|
|
4591
|
+
updated_at_gt?: string;
|
|
4592
|
+
updated_at_lte?: string;
|
|
4593
|
+
updated_at_gte?: string;
|
|
4594
|
+
uuid?: string;
|
|
4595
|
+
id?: number;
|
|
4596
|
+
created_at_lt?: string;
|
|
4597
|
+
created_at_gt?: string;
|
|
4598
|
+
created_at_lte?: string;
|
|
4599
|
+
created_at_gte?: string;
|
|
4600
|
+
search?: string;
|
|
4601
|
+
};
|
|
4520
4602
|
header?: never;
|
|
4521
4603
|
path: {
|
|
4522
4604
|
form_hook_uuid: components['schemas']['UUID'];
|
|
@@ -4727,10 +4809,51 @@ export interface operations {
|
|
|
4727
4809
|
parameters: {
|
|
4728
4810
|
query?: {
|
|
4729
4811
|
category?: 'spam' | 'sent' | 'errored' | 'pending';
|
|
4812
|
+
/** @description Page number to fetch (1-indexed) */
|
|
4730
4813
|
page?: components['parameters']['PageQuery'];
|
|
4731
|
-
|
|
4732
|
-
|
|
4733
|
-
|
|
4814
|
+
/** @description Number of items per page */
|
|
4815
|
+
items?: components['parameters']['ItemsQuery'];
|
|
4816
|
+
/** @description Attribute to sort the results by */
|
|
4817
|
+
sort_attribute?: 'last_sent_at' | 'created_at' | 'id' | 'uuid';
|
|
4818
|
+
/** @description Direction to sort the results */
|
|
4819
|
+
sort_direction?: 'ASC' | 'DESC';
|
|
4820
|
+
site_id?: number;
|
|
4821
|
+
recaptcha?: boolean;
|
|
4822
|
+
sent?: boolean;
|
|
4823
|
+
spam_checked?: boolean;
|
|
4824
|
+
automatically_marked_spam?: boolean;
|
|
4825
|
+
ip?: string;
|
|
4826
|
+
host?: string;
|
|
4827
|
+
explicitly_marked_status?: number;
|
|
4828
|
+
inbox_uuid?: string;
|
|
4829
|
+
has_error?: string | number | boolean;
|
|
4830
|
+
has_spam_check_error?: string | number | boolean;
|
|
4831
|
+
cleared_at_lt?: string;
|
|
4832
|
+
cleared_at_gt?: string;
|
|
4833
|
+
cleared_at_lte?: string;
|
|
4834
|
+
cleared_at_gte?: string;
|
|
4835
|
+
last_sent_at_lt?: string;
|
|
4836
|
+
last_sent_at_gt?: string;
|
|
4837
|
+
last_sent_at_lte?: string;
|
|
4838
|
+
last_sent_at_gte?: string;
|
|
4839
|
+
sent_count_lt?: number;
|
|
4840
|
+
sent_count_gt?: number;
|
|
4841
|
+
sent_count_lte?: number;
|
|
4842
|
+
sent_count_gte?: number;
|
|
4843
|
+
site_uuid?: string;
|
|
4844
|
+
org_uuid?: string;
|
|
4845
|
+
org_id?: number;
|
|
4846
|
+
updated_at_lt?: string;
|
|
4847
|
+
updated_at_gt?: string;
|
|
4848
|
+
updated_at_lte?: string;
|
|
4849
|
+
updated_at_gte?: string;
|
|
4850
|
+
uuid?: string;
|
|
4851
|
+
id?: number;
|
|
4852
|
+
created_at_lt?: string;
|
|
4853
|
+
created_at_gt?: string;
|
|
4854
|
+
created_at_lte?: string;
|
|
4855
|
+
created_at_gte?: string;
|
|
4856
|
+
search?: string;
|
|
4734
4857
|
};
|
|
4735
4858
|
header?: never;
|
|
4736
4859
|
path: {
|
|
@@ -4743,11 +4866,11 @@ export interface operations {
|
|
|
4743
4866
|
/** @description OK */
|
|
4744
4867
|
200: {
|
|
4745
4868
|
headers: {
|
|
4746
|
-
/** @description
|
|
4869
|
+
/** @description The current page number */
|
|
4747
4870
|
current_page?: string;
|
|
4748
|
-
/** @description
|
|
4871
|
+
/** @description The total number of items across all pages */
|
|
4749
4872
|
total_items?: string;
|
|
4750
|
-
/** @description
|
|
4873
|
+
/** @description The total number of pages available */
|
|
4751
4874
|
total_pages?: string;
|
|
4752
4875
|
[name: string]: unknown;
|
|
4753
4876
|
};
|
|
@@ -4848,7 +4971,52 @@ export interface operations {
|
|
|
4848
4971
|
};
|
|
4849
4972
|
Organizations_Index: {
|
|
4850
4973
|
parameters: {
|
|
4851
|
-
query?:
|
|
4974
|
+
query?: {
|
|
4975
|
+
/** @description Page number to fetch (1-indexed) */
|
|
4976
|
+
page?: components['parameters']['PageQuery'];
|
|
4977
|
+
/** @description Number of items per page */
|
|
4978
|
+
items?: components['parameters']['ItemsQuery'];
|
|
4979
|
+
/** @description Attribute to sort the results by */
|
|
4980
|
+
sort_attribute?: 'id' | 'uuid' | 'name' | 'partner_points' | 'updated_at';
|
|
4981
|
+
/** @description Direction to sort the results */
|
|
4982
|
+
sort_direction?: 'ASC' | 'DESC';
|
|
4983
|
+
hubspot_migrated?: boolean;
|
|
4984
|
+
organisation_type?: string;
|
|
4985
|
+
country?: string;
|
|
4986
|
+
partner_organisation_id?: number;
|
|
4987
|
+
billing_status?: string;
|
|
4988
|
+
has_partner_organisation_id?: number;
|
|
4989
|
+
expired?: string | number | boolean;
|
|
4990
|
+
has_address?: string | number | boolean;
|
|
4991
|
+
has_organisation_type?: string | number | boolean;
|
|
4992
|
+
locked?: string | number | boolean;
|
|
4993
|
+
has_billing_name?: string | number | boolean;
|
|
4994
|
+
has_billing_email?: string | number | boolean;
|
|
4995
|
+
hosting_limit_exceeded?: boolean;
|
|
4996
|
+
build_time_limit_exceeded?: boolean;
|
|
4997
|
+
user_limit_exceeded?: boolean;
|
|
4998
|
+
domain_limit_exceeded?: boolean;
|
|
4999
|
+
provider_account_linked?: string | number | boolean;
|
|
5000
|
+
user_uuid?: string;
|
|
5001
|
+
trial?: string | number | boolean;
|
|
5002
|
+
plan_period?: string | number | boolean;
|
|
5003
|
+
pricing_version_is_current?: string | number | boolean;
|
|
5004
|
+
in_partner_program?: string | number | boolean;
|
|
5005
|
+
given_user_is_sole_owner?: string | number | boolean;
|
|
5006
|
+
plan?: string;
|
|
5007
|
+
storage_provider_uuid?: string;
|
|
5008
|
+
updated_at_lt?: string;
|
|
5009
|
+
updated_at_gt?: string;
|
|
5010
|
+
updated_at_lte?: string;
|
|
5011
|
+
updated_at_gte?: string;
|
|
5012
|
+
uuid?: string;
|
|
5013
|
+
id?: number;
|
|
5014
|
+
created_at_lt?: string;
|
|
5015
|
+
created_at_gt?: string;
|
|
5016
|
+
created_at_lte?: string;
|
|
5017
|
+
created_at_gte?: string;
|
|
5018
|
+
search?: string;
|
|
5019
|
+
};
|
|
4852
5020
|
header?: never;
|
|
4853
5021
|
path?: never;
|
|
4854
5022
|
cookie?: never;
|
|
@@ -4858,12 +5026,19 @@ export interface operations {
|
|
|
4858
5026
|
/** @description OK */
|
|
4859
5027
|
200: {
|
|
4860
5028
|
headers: {
|
|
5029
|
+
/** @description The current page number */
|
|
5030
|
+
current_page?: string;
|
|
5031
|
+
/** @description The total number of items across all pages */
|
|
5032
|
+
total_items?: string;
|
|
5033
|
+
/** @description The total number of pages available */
|
|
5034
|
+
total_pages?: string;
|
|
4861
5035
|
[name: string]: unknown;
|
|
4862
5036
|
};
|
|
4863
5037
|
content: {
|
|
4864
5038
|
'application/json': components['schemas']['OrgBlueprintNormal'][];
|
|
4865
5039
|
};
|
|
4866
5040
|
};
|
|
5041
|
+
403: components['responses']['ForbiddenResp'];
|
|
4867
5042
|
};
|
|
4868
5043
|
};
|
|
4869
5044
|
Organizations_Show: {
|
|
@@ -4939,10 +5114,34 @@ export interface operations {
|
|
|
4939
5114
|
'Organization Activity_Index': {
|
|
4940
5115
|
parameters: {
|
|
4941
5116
|
query?: {
|
|
5117
|
+
/** @description Page number to fetch (1-indexed) */
|
|
4942
5118
|
page?: components['parameters']['PageQuery'];
|
|
4943
|
-
|
|
4944
|
-
|
|
4945
|
-
|
|
5119
|
+
/** @description Number of items per page */
|
|
5120
|
+
items?: components['parameters']['ItemsQuery'];
|
|
5121
|
+
/** @description Attribute to sort the results by */
|
|
5122
|
+
sort_attribute?: 'id' | 'uuid' | 'updated_at' | 'happened_at' | 'created_at';
|
|
5123
|
+
/** @description Direction to sort the results */
|
|
5124
|
+
sort_direction?: 'ASC' | 'DESC';
|
|
5125
|
+
size_gte?: string | number | boolean;
|
|
5126
|
+
site_id?: number;
|
|
5127
|
+
size_lt?: string | number | boolean;
|
|
5128
|
+
size_gt?: string | number | boolean;
|
|
5129
|
+
size_lte?: string | number | boolean;
|
|
5130
|
+
organisation_uuid?: string;
|
|
5131
|
+
site_uuid?: string;
|
|
5132
|
+
org_uuid?: string;
|
|
5133
|
+
org_id?: number;
|
|
5134
|
+
updated_at_lt?: string;
|
|
5135
|
+
updated_at_gt?: string;
|
|
5136
|
+
updated_at_lte?: string;
|
|
5137
|
+
updated_at_gte?: string;
|
|
5138
|
+
uuid?: string;
|
|
5139
|
+
id?: number;
|
|
5140
|
+
created_at_lt?: string;
|
|
5141
|
+
created_at_gt?: string;
|
|
5142
|
+
created_at_lte?: string;
|
|
5143
|
+
created_at_gte?: string;
|
|
5144
|
+
search?: string;
|
|
4946
5145
|
};
|
|
4947
5146
|
header?: never;
|
|
4948
5147
|
path: {
|
|
@@ -4955,11 +5154,11 @@ export interface operations {
|
|
|
4955
5154
|
/** @description OK */
|
|
4956
5155
|
200: {
|
|
4957
5156
|
headers: {
|
|
4958
|
-
/** @description
|
|
5157
|
+
/** @description The current page number */
|
|
4959
5158
|
current_page?: string;
|
|
4960
|
-
/** @description
|
|
5159
|
+
/** @description The total number of items across all pages */
|
|
4961
5160
|
total_items?: string;
|
|
4962
|
-
/** @description
|
|
5161
|
+
/** @description The total number of pages available */
|
|
4963
5162
|
total_pages?: string;
|
|
4964
5163
|
[name: string]: unknown;
|
|
4965
5164
|
};
|
|
@@ -4973,10 +5172,33 @@ export interface operations {
|
|
|
4973
5172
|
'Base Domains_Index': {
|
|
4974
5173
|
parameters: {
|
|
4975
5174
|
query?: {
|
|
5175
|
+
/** @description Page number to fetch (1-indexed) */
|
|
4976
5176
|
page?: components['parameters']['PageQuery'];
|
|
4977
|
-
|
|
4978
|
-
|
|
4979
|
-
|
|
5177
|
+
/** @description Number of items per page */
|
|
5178
|
+
items?: components['parameters']['ItemsQuery'];
|
|
5179
|
+
/** @description Attribute to sort the results by */
|
|
5180
|
+
sort_attribute?: 'id' | 'uuid' | 'base_domain' | 'auto_generate_ssl_failures' | 'next_ssl_generate_attempt_at';
|
|
5181
|
+
/** @description Direction to sort the results */
|
|
5182
|
+
sort_direction?: 'ASC' | 'DESC';
|
|
5183
|
+
organisation_id?: number;
|
|
5184
|
+
base_domain?: string;
|
|
5185
|
+
has_zone_id?: number;
|
|
5186
|
+
has_cloudflare_zone_id?: number;
|
|
5187
|
+
has_cloudflare_zone_create_error?: string | number | boolean;
|
|
5188
|
+
uses_dns?: boolean;
|
|
5189
|
+
organisation_uuid?: string;
|
|
5190
|
+
auto_ssl_retries?: string | number | boolean;
|
|
5191
|
+
updated_at_lt?: string | number | boolean;
|
|
5192
|
+
updated_at_gt?: string | number | boolean;
|
|
5193
|
+
updated_at_lte?: string | number | boolean;
|
|
5194
|
+
updated_at_gte?: string | number | boolean;
|
|
5195
|
+
uuid?: string;
|
|
5196
|
+
id?: number;
|
|
5197
|
+
created_at_lt?: string | number | boolean;
|
|
5198
|
+
created_at_gt?: string | number | boolean;
|
|
5199
|
+
created_at_lte?: string | number | boolean;
|
|
5200
|
+
created_at_gte?: string | number | boolean;
|
|
5201
|
+
search?: string;
|
|
4980
5202
|
};
|
|
4981
5203
|
header?: never;
|
|
4982
5204
|
path: {
|
|
@@ -4989,11 +5211,11 @@ export interface operations {
|
|
|
4989
5211
|
/** @description OK */
|
|
4990
5212
|
200: {
|
|
4991
5213
|
headers: {
|
|
4992
|
-
/** @description
|
|
5214
|
+
/** @description The current page number */
|
|
4993
5215
|
current_page?: string;
|
|
4994
|
-
/** @description
|
|
5216
|
+
/** @description The total number of items across all pages */
|
|
4995
5217
|
total_items?: string;
|
|
4996
|
-
/** @description
|
|
5218
|
+
/** @description The total number of pages available */
|
|
4997
5219
|
total_pages?: string;
|
|
4998
5220
|
[name: string]: unknown;
|
|
4999
5221
|
};
|
|
@@ -5084,10 +5306,31 @@ export interface operations {
|
|
|
5084
5306
|
DAMs_Index: {
|
|
5085
5307
|
parameters: {
|
|
5086
5308
|
query?: {
|
|
5309
|
+
/** @description Page number to fetch (1-indexed) */
|
|
5087
5310
|
page?: components['parameters']['PageQuery'];
|
|
5088
|
-
|
|
5089
|
-
|
|
5090
|
-
|
|
5311
|
+
/** @description Number of items per page */
|
|
5312
|
+
items?: components['parameters']['ItemsQuery'];
|
|
5313
|
+
/** @description Attribute to sort the results by */
|
|
5314
|
+
sort_attribute?: 'id' | 'uuid' | 'name' | 'type' | 'base_url';
|
|
5315
|
+
/** @description Direction to sort the results */
|
|
5316
|
+
sort_direction?: 'ASC' | 'DESC';
|
|
5317
|
+
name?: string;
|
|
5318
|
+
dam_type?: string;
|
|
5319
|
+
organisation_id?: number;
|
|
5320
|
+
organisation_uuid?: string;
|
|
5321
|
+
unlinked_site_uuid?: string;
|
|
5322
|
+
site_uuid?: string;
|
|
5323
|
+
updated_at_lt?: string;
|
|
5324
|
+
updated_at_gt?: string;
|
|
5325
|
+
updated_at_lte?: string;
|
|
5326
|
+
updated_at_gte?: string;
|
|
5327
|
+
uuid?: string;
|
|
5328
|
+
id?: number;
|
|
5329
|
+
created_at_lt?: string;
|
|
5330
|
+
created_at_gt?: string;
|
|
5331
|
+
created_at_lte?: string;
|
|
5332
|
+
created_at_gte?: string;
|
|
5333
|
+
search?: string;
|
|
5091
5334
|
};
|
|
5092
5335
|
header?: never;
|
|
5093
5336
|
path: {
|
|
@@ -5100,11 +5343,11 @@ export interface operations {
|
|
|
5100
5343
|
/** @description OK */
|
|
5101
5344
|
200: {
|
|
5102
5345
|
headers: {
|
|
5103
|
-
/** @description
|
|
5346
|
+
/** @description The current page number */
|
|
5104
5347
|
current_page?: string;
|
|
5105
|
-
/** @description
|
|
5348
|
+
/** @description The total number of items across all pages */
|
|
5106
5349
|
total_items?: string;
|
|
5107
|
-
/** @description
|
|
5350
|
+
/** @description The total number of pages available */
|
|
5108
5351
|
total_pages?: string;
|
|
5109
5352
|
[name: string]: unknown;
|
|
5110
5353
|
};
|
|
@@ -5154,10 +5397,30 @@ export interface operations {
|
|
|
5154
5397
|
'Organization Inboxes_Index': {
|
|
5155
5398
|
parameters: {
|
|
5156
5399
|
query?: {
|
|
5400
|
+
/** @description Page number to fetch (1-indexed) */
|
|
5157
5401
|
page?: components['parameters']['PageQuery'];
|
|
5158
|
-
|
|
5159
|
-
|
|
5160
|
-
|
|
5402
|
+
/** @description Number of items per page */
|
|
5403
|
+
items?: components['parameters']['ItemsQuery'];
|
|
5404
|
+
/** @description Attribute to sort the results by */
|
|
5405
|
+
sort_attribute?: 'created_at' | 'updated_at' | 'id' | 'key' | 'name' | 'uuid';
|
|
5406
|
+
/** @description Direction to sort the results */
|
|
5407
|
+
sort_direction?: 'ASC' | 'DESC';
|
|
5408
|
+
name?: string;
|
|
5409
|
+
organisation_id?: number;
|
|
5410
|
+
captcha_type?: string;
|
|
5411
|
+
site_uuid?: string;
|
|
5412
|
+
organisation_uuid?: string;
|
|
5413
|
+
updated_at_lt?: string;
|
|
5414
|
+
updated_at_gt?: string;
|
|
5415
|
+
updated_at_lte?: string;
|
|
5416
|
+
updated_at_gte?: string;
|
|
5417
|
+
uuid?: string;
|
|
5418
|
+
id?: number;
|
|
5419
|
+
created_at_lt?: string;
|
|
5420
|
+
created_at_gt?: string;
|
|
5421
|
+
created_at_lte?: string;
|
|
5422
|
+
created_at_gte?: string;
|
|
5423
|
+
search?: string;
|
|
5161
5424
|
};
|
|
5162
5425
|
header?: never;
|
|
5163
5426
|
path: {
|
|
@@ -5170,11 +5433,11 @@ export interface operations {
|
|
|
5170
5433
|
/** @description OK */
|
|
5171
5434
|
200: {
|
|
5172
5435
|
headers: {
|
|
5173
|
-
/** @description
|
|
5436
|
+
/** @description The current page number */
|
|
5174
5437
|
current_page?: string;
|
|
5175
|
-
/** @description
|
|
5438
|
+
/** @description The total number of items across all pages */
|
|
5176
5439
|
total_items?: string;
|
|
5177
|
-
/** @description
|
|
5440
|
+
/** @description The total number of pages available */
|
|
5178
5441
|
total_pages?: string;
|
|
5179
5442
|
[name: string]: unknown;
|
|
5180
5443
|
};
|
|
@@ -5225,10 +5488,32 @@ export interface operations {
|
|
|
5225
5488
|
Projects_Index: {
|
|
5226
5489
|
parameters: {
|
|
5227
5490
|
query?: {
|
|
5491
|
+
/** @description Page number to fetch (1-indexed) */
|
|
5228
5492
|
page?: components['parameters']['PageQuery'];
|
|
5229
|
-
|
|
5230
|
-
|
|
5231
|
-
|
|
5493
|
+
/** @description Number of items per page */
|
|
5494
|
+
items?: components['parameters']['ItemsQuery'];
|
|
5495
|
+
/** @description Attribute to sort the results by */
|
|
5496
|
+
sort_attribute?: 'id' | 'uuid' | 'name' | 'external_url' | 'git_repository' | 'main_git_branch' | 'updated_at' | 'created_at' | 'last_synced' | 'last_compiled' | 'last_compiled_success' | 'provider';
|
|
5497
|
+
/** @description Direction to sort the results */
|
|
5498
|
+
sort_direction?: 'ASC' | 'DESC';
|
|
5499
|
+
git_repository?: string;
|
|
5500
|
+
last_synced?: string;
|
|
5501
|
+
last_compiled?: string;
|
|
5502
|
+
last_compiled_success?: string;
|
|
5503
|
+
name?: string;
|
|
5504
|
+
organisation_id?: number;
|
|
5505
|
+
organisation_uuid?: string;
|
|
5506
|
+
updated_at_lt?: string;
|
|
5507
|
+
updated_at_gt?: string;
|
|
5508
|
+
updated_at_lte?: string;
|
|
5509
|
+
updated_at_gte?: string;
|
|
5510
|
+
uuid?: string;
|
|
5511
|
+
id?: number;
|
|
5512
|
+
created_at_lt?: string;
|
|
5513
|
+
created_at_gt?: string;
|
|
5514
|
+
created_at_lte?: string;
|
|
5515
|
+
created_at_gte?: string;
|
|
5516
|
+
search?: string;
|
|
5232
5517
|
};
|
|
5233
5518
|
header?: never;
|
|
5234
5519
|
path: {
|
|
@@ -5241,11 +5526,11 @@ export interface operations {
|
|
|
5241
5526
|
/** @description OK */
|
|
5242
5527
|
200: {
|
|
5243
5528
|
headers: {
|
|
5244
|
-
/** @description
|
|
5529
|
+
/** @description The current page number */
|
|
5245
5530
|
current_page?: string;
|
|
5246
|
-
/** @description
|
|
5531
|
+
/** @description The total number of items across all pages */
|
|
5247
5532
|
total_items?: string;
|
|
5248
|
-
/** @description
|
|
5533
|
+
/** @description The total number of pages available */
|
|
5249
5534
|
total_pages?: string;
|
|
5250
5535
|
[name: string]: unknown;
|
|
5251
5536
|
};
|
|
@@ -5276,11 +5561,18 @@ export interface operations {
|
|
|
5276
5561
|
default_authentication?: string | null;
|
|
5277
5562
|
default_publish_mode?: string | null;
|
|
5278
5563
|
default_password?: Record<string, never>;
|
|
5564
|
+
pr_features_enabled?: boolean;
|
|
5279
5565
|
git_repository: string;
|
|
5280
5566
|
allow_all_branching?: boolean;
|
|
5281
5567
|
prevent_permissions_granted_on_branch?: boolean;
|
|
5282
5568
|
main_git_branch?: string | null;
|
|
5283
5569
|
provider: string;
|
|
5570
|
+
auto_create_site_on_pr?: boolean;
|
|
5571
|
+
auto_delete_site_on_pr_close?: boolean;
|
|
5572
|
+
auto_create_skip_drafts?: boolean;
|
|
5573
|
+
comment_on_pr?: boolean;
|
|
5574
|
+
pr_comment_skip_drafts?: boolean;
|
|
5575
|
+
pr_comment_footer?: string | null;
|
|
5284
5576
|
};
|
|
5285
5577
|
};
|
|
5286
5578
|
};
|
|
@@ -5388,10 +5680,82 @@ export interface operations {
|
|
|
5388
5680
|
Sites_Index: {
|
|
5389
5681
|
parameters: {
|
|
5390
5682
|
query?: {
|
|
5683
|
+
/** @description Page number to fetch (1-indexed) */
|
|
5391
5684
|
page?: components['parameters']['PageQuery'];
|
|
5392
|
-
|
|
5393
|
-
|
|
5394
|
-
|
|
5685
|
+
/** @description Number of items per page */
|
|
5686
|
+
items?: components['parameters']['ItemsQuery'];
|
|
5687
|
+
/** @description Attribute to sort the results by */
|
|
5688
|
+
sort_attribute?: 'id' | 'uuid' | 'site_name' | 'domain_name' | 'created_at' | 'updated_at' | 'last_synced' | 'last_compressed' | 'last_compiled' | 'last_cleaned' | 'priority_domain_at' | 'storage_provider' | 'stable_domain' | 'subpath' | 'sync_error';
|
|
5689
|
+
/** @description Direction to sort the results */
|
|
5690
|
+
sort_direction?: 'ASC' | 'DESC';
|
|
5691
|
+
has_subpath?: string | number | boolean;
|
|
5692
|
+
has_client_password?: string | number | boolean;
|
|
5693
|
+
cloudflare_hostname?: string | number | boolean;
|
|
5694
|
+
locales?: string;
|
|
5695
|
+
sync_error?: string;
|
|
5696
|
+
compile_error?: string;
|
|
5697
|
+
files?: string;
|
|
5698
|
+
latest_hosted_build_id?: number;
|
|
5699
|
+
last_synced?: string;
|
|
5700
|
+
last_compiled?: string;
|
|
5701
|
+
last_compiled_success?: string;
|
|
5702
|
+
site_name?: string;
|
|
5703
|
+
base_domain_id?: number;
|
|
5704
|
+
domain_name?: string;
|
|
5705
|
+
ssl_certificate_id?: number;
|
|
5706
|
+
project_id?: number;
|
|
5707
|
+
project_uuid?: string;
|
|
5708
|
+
storage_provider?: string;
|
|
5709
|
+
output_storage_provider?: string;
|
|
5710
|
+
hosting_choice?: string;
|
|
5711
|
+
ssg?: string;
|
|
5712
|
+
authentication?: string;
|
|
5713
|
+
force_ssl?: boolean;
|
|
5714
|
+
editing_locked?: boolean;
|
|
5715
|
+
uploads_locked?: boolean;
|
|
5716
|
+
browsing_locked?: boolean;
|
|
5717
|
+
building_locked?: boolean;
|
|
5718
|
+
uses_i18n?: boolean;
|
|
5719
|
+
auto_generate_ssl?: boolean;
|
|
5720
|
+
organisation_id?: number;
|
|
5721
|
+
use_rbenv_builds?: boolean;
|
|
5722
|
+
needs_clean?: boolean;
|
|
5723
|
+
has_storage_provider?: string | number | boolean;
|
|
5724
|
+
has_output_storage_provider?: string | number | boolean;
|
|
5725
|
+
has_source?: string | number | boolean;
|
|
5726
|
+
has_domain_name?: string | number | boolean;
|
|
5727
|
+
has_unsaved_changes?: string | number | boolean;
|
|
5728
|
+
error?: string | number | boolean;
|
|
5729
|
+
compiled?: string | number | boolean;
|
|
5730
|
+
last_compiled_status?: string | number | boolean;
|
|
5731
|
+
base_domain_uuid?: string;
|
|
5732
|
+
cloudflare_hostname_uuid?: string;
|
|
5733
|
+
cloudflare_error?: string;
|
|
5734
|
+
dam_uuid?: string;
|
|
5735
|
+
publish_branch?: string | number | boolean;
|
|
5736
|
+
owner_locked?: string | number | boolean;
|
|
5737
|
+
owner_trial?: string | number | boolean;
|
|
5738
|
+
ssl_certificate?: string | number | boolean;
|
|
5739
|
+
ssl_certificate_expired?: string | number | boolean;
|
|
5740
|
+
bearer_tokens?: string | number | boolean;
|
|
5741
|
+
site_scanner?: string | number | boolean;
|
|
5742
|
+
old_includes?: string | number | boolean;
|
|
5743
|
+
inbox_uuid?: string;
|
|
5744
|
+
repeatables?: string | number | boolean;
|
|
5745
|
+
storage_provider_details_full_name?: string | number | boolean;
|
|
5746
|
+
source?: string | number | boolean;
|
|
5747
|
+
organisation_uuid?: string;
|
|
5748
|
+
updated_at_lt?: string;
|
|
5749
|
+
updated_at_gt?: string;
|
|
5750
|
+
updated_at_lte?: string;
|
|
5751
|
+
updated_at_gte?: string;
|
|
5752
|
+
uuid?: string;
|
|
5753
|
+
id?: number;
|
|
5754
|
+
created_at_lt?: string;
|
|
5755
|
+
created_at_gt?: string;
|
|
5756
|
+
created_at_lte?: string;
|
|
5757
|
+
created_at_gte?: string;
|
|
5758
|
+
search?: string;
|
|
5395
5759
|
};
|
|
5396
5760
|
header?: never;
|
|
5397
5761
|
path: {
|
|
@@ -5404,11 +5768,11 @@ export interface operations {
|
|
|
5404
5768
|
/** @description OK */
|
|
5405
5769
|
200: {
|
|
5406
5770
|
headers: {
|
|
5407
|
-
/** @description
|
|
5771
|
+
/** @description The current page number */
|
|
5408
5772
|
current_page?: string;
|
|
5409
|
-
/** @description
|
|
5773
|
+
/** @description The total number of items across all pages */
|
|
5410
5774
|
total_items?: string;
|
|
5411
|
-
/** @description
|
|
5775
|
+
/** @description The total number of pages available */
|
|
5412
5776
|
total_pages?: string;
|
|
5413
5777
|
[name: string]: unknown;
|
|
5414
5778
|
};
|
|
@@ -5502,10 +5866,35 @@ export interface operations {
|
|
|
5502
5866
|
'Ssl Certificates_Index': {
|
|
5503
5867
|
parameters: {
|
|
5504
5868
|
query?: {
|
|
5869
|
+
/** @description Page number to fetch (1-indexed) */
|
|
5505
5870
|
page?: components['parameters']['PageQuery'];
|
|
5506
|
-
|
|
5507
|
-
|
|
5508
|
-
|
|
5871
|
+
/** @description Number of items per page */
|
|
5872
|
+
items?: components['parameters']['ItemsQuery'];
|
|
5873
|
+
/** @description Attribute to sort the results by */
|
|
5874
|
+
sort_attribute?: 'id' | 'uuid' | 'name' | 'expires_at' | 'created_at';
|
|
5875
|
+
/** @description Direction to sort the results */
|
|
5876
|
+
sort_direction?: 'ASC' | 'DESC';
|
|
5877
|
+
expires_at_lt?: string;
|
|
5878
|
+
expires_at_gt?: string;
|
|
5879
|
+
expires_at_lte?: string;
|
|
5880
|
+
expires_at_gte?: string;
|
|
5881
|
+
autorenew?: boolean;
|
|
5882
|
+
has_cloudflare_id?: number;
|
|
5883
|
+
name?: string;
|
|
5884
|
+
organisation_id?: number;
|
|
5885
|
+
organisation_uuid?: string;
|
|
5886
|
+
expired?: string | number | boolean;
|
|
5887
|
+
updated_at_lt?: string;
|
|
5888
|
+
updated_at_gt?: string;
|
|
5889
|
+
updated_at_lte?: string;
|
|
5890
|
+
updated_at_gte?: string;
|
|
5891
|
+
uuid?: string;
|
|
5892
|
+
id?: number;
|
|
5893
|
+
created_at_lt?: string;
|
|
5894
|
+
created_at_gt?: string;
|
|
5895
|
+
created_at_lte?: string;
|
|
5896
|
+
created_at_gte?: string;
|
|
5897
|
+
search?: string;
|
|
5509
5898
|
};
|
|
5510
5899
|
header?: never;
|
|
5511
5900
|
path: {
|
|
@@ -5518,11 +5907,11 @@ export interface operations {
|
|
|
5518
5907
|
/** @description OK */
|
|
5519
5908
|
200: {
|
|
5520
5909
|
headers: {
|
|
5521
|
-
/** @description
|
|
5910
|
+
/** @description The current page number */
|
|
5522
5911
|
current_page?: string;
|
|
5523
|
-
/** @description
|
|
5912
|
+
/** @description The total number of items across all pages */
|
|
5524
5913
|
total_items?: string;
|
|
5525
|
-
/** @description
|
|
5914
|
+
/** @description The total number of pages available */
|
|
5526
5915
|
total_pages?: string;
|
|
5527
5916
|
[name: string]: unknown;
|
|
5528
5917
|
};
|
|
@@ -5550,9 +5939,9 @@ export interface operations {
|
|
|
5550
5939
|
expires_at: string;
|
|
5551
5940
|
crt: string;
|
|
5552
5941
|
key: string;
|
|
5553
|
-
chain
|
|
5942
|
+
chain?: string;
|
|
5554
5943
|
autorenew?: boolean | null;
|
|
5555
|
-
cipher
|
|
5944
|
+
cipher?: string;
|
|
5556
5945
|
};
|
|
5557
5946
|
};
|
|
5558
5947
|
};
|
|
@@ -5702,6 +6091,7 @@ export interface operations {
|
|
|
5702
6091
|
default_authentication?: string | null;
|
|
5703
6092
|
default_publish_mode?: string | null;
|
|
5704
6093
|
default_password?: Record<string, never>;
|
|
6094
|
+
pr_features_enabled?: boolean;
|
|
5705
6095
|
};
|
|
5706
6096
|
};
|
|
5707
6097
|
};
|
|
@@ -5742,6 +6132,30 @@ export interface operations {
|
|
|
5742
6132
|
403: components['responses']['ForbiddenResp'];
|
|
5743
6133
|
};
|
|
5744
6134
|
};
|
|
6135
|
+
'Project Git_Branches': {
|
|
6136
|
+
parameters: {
|
|
6137
|
+
query?: never;
|
|
6138
|
+
header?: never;
|
|
6139
|
+
path: {
|
|
6140
|
+
project_uuid: components['schemas']['UUID'];
|
|
6141
|
+
};
|
|
6142
|
+
cookie?: never;
|
|
6143
|
+
};
|
|
6144
|
+
requestBody?: never;
|
|
6145
|
+
responses: {
|
|
6146
|
+
/** @description OK */
|
|
6147
|
+
200: {
|
|
6148
|
+
headers: {
|
|
6149
|
+
[name: string]: unknown;
|
|
6150
|
+
};
|
|
6151
|
+
content: {
|
|
6152
|
+
'application/json': components['schemas']['BranchSchema'][];
|
|
6153
|
+
};
|
|
6154
|
+
};
|
|
6155
|
+
401: components['responses']['UnauthorizedResp'];
|
|
6156
|
+
403: components['responses']['ForbiddenResp'];
|
|
6157
|
+
};
|
|
6158
|
+
};
|
|
5745
6159
|
Projects_UpdateGit: {
|
|
5746
6160
|
parameters: {
|
|
5747
6161
|
query?: never;
|
|
@@ -5777,13 +6191,133 @@ export interface operations {
|
|
|
5777
6191
|
422: components['responses']['ErrorResp'];
|
|
5778
6192
|
};
|
|
5779
6193
|
};
|
|
6194
|
+
'Project Git_PullRequests': {
|
|
6195
|
+
parameters: {
|
|
6196
|
+
query?: never;
|
|
6197
|
+
header?: never;
|
|
6198
|
+
path: {
|
|
6199
|
+
project_uuid: components['schemas']['UUID'];
|
|
6200
|
+
};
|
|
6201
|
+
cookie?: never;
|
|
6202
|
+
};
|
|
6203
|
+
requestBody?: never;
|
|
6204
|
+
responses: {
|
|
6205
|
+
/** @description OK */
|
|
6206
|
+
200: {
|
|
6207
|
+
headers: {
|
|
6208
|
+
[name: string]: unknown;
|
|
6209
|
+
};
|
|
6210
|
+
content: {
|
|
6211
|
+
'application/json': components['schemas']['PullRequestSchema'][];
|
|
6212
|
+
};
|
|
6213
|
+
};
|
|
6214
|
+
401: components['responses']['UnauthorizedResp'];
|
|
6215
|
+
403: components['responses']['ForbiddenResp'];
|
|
6216
|
+
};
|
|
6217
|
+
};
|
|
6218
|
+
Projects_RefreshPrComments: {
|
|
6219
|
+
parameters: {
|
|
6220
|
+
query?: never;
|
|
6221
|
+
header?: never;
|
|
6222
|
+
path: {
|
|
6223
|
+
project_uuid: components['schemas']['UUID'];
|
|
6224
|
+
};
|
|
6225
|
+
cookie?: never;
|
|
6226
|
+
};
|
|
6227
|
+
requestBody?: never;
|
|
6228
|
+
responses: {
|
|
6229
|
+
/** @description OK */
|
|
6230
|
+
200: {
|
|
6231
|
+
headers: {
|
|
6232
|
+
[name: string]: unknown;
|
|
6233
|
+
};
|
|
6234
|
+
content: {
|
|
6235
|
+
'application/json': components['schemas']['ProjectBlueprint'];
|
|
6236
|
+
};
|
|
6237
|
+
};
|
|
6238
|
+
401: components['responses']['UnauthorizedResp'];
|
|
6239
|
+
403: components['responses']['ForbiddenResp'];
|
|
6240
|
+
};
|
|
6241
|
+
};
|
|
5780
6242
|
Projects_Sites: {
|
|
5781
6243
|
parameters: {
|
|
5782
6244
|
query?: {
|
|
6245
|
+
/** @description Page number to fetch (1-indexed) */
|
|
5783
6246
|
page?: components['parameters']['PageQuery'];
|
|
5784
|
-
|
|
5785
|
-
|
|
5786
|
-
|
|
6247
|
+
/** @description Number of items per page */
|
|
6248
|
+
items?: components['parameters']['ItemsQuery'];
|
|
6249
|
+
/** @description Attribute to sort the results by */
|
|
6250
|
+
sort_attribute?: 'id' | 'uuid' | 'site_name' | 'domain_name' | 'created_at' | 'updated_at' | 'last_synced' | 'last_compressed' | 'last_compiled' | 'last_cleaned' | 'priority_domain_at' | 'storage_provider' | 'stable_domain' | 'subpath' | 'sync_error';
|
|
6251
|
+
/** @description Direction to sort the results */
|
|
6252
|
+
sort_direction?: 'ASC' | 'DESC';
|
|
6253
|
+
has_subpath?: string | number | boolean;
|
|
6254
|
+
has_client_password?: string | number | boolean;
|
|
6255
|
+
cloudflare_hostname?: string | number | boolean;
|
|
6256
|
+
locales?: string;
|
|
6257
|
+
sync_error?: string;
|
|
6258
|
+
compile_error?: string;
|
|
6259
|
+
files?: string;
|
|
6260
|
+
latest_hosted_build_id?: number;
|
|
6261
|
+
last_synced?: string;
|
|
6262
|
+
last_compiled?: string;
|
|
6263
|
+
last_compiled_success?: string;
|
|
6264
|
+
site_name?: string;
|
|
6265
|
+
base_domain_id?: number;
|
|
6266
|
+
domain_name?: string;
|
|
6267
|
+
ssl_certificate_id?: number;
|
|
6268
|
+
project_id?: number;
|
|
6269
|
+
project_uuid?: string;
|
|
6270
|
+
storage_provider?: string;
|
|
6271
|
+
output_storage_provider?: string;
|
|
6272
|
+
hosting_choice?: string;
|
|
6273
|
+
ssg?: string;
|
|
6274
|
+
authentication?: string;
|
|
6275
|
+
force_ssl?: boolean;
|
|
6276
|
+
editing_locked?: boolean;
|
|
6277
|
+
uploads_locked?: boolean;
|
|
6278
|
+
browsing_locked?: boolean;
|
|
6279
|
+
building_locked?: boolean;
|
|
6280
|
+
uses_i18n?: boolean;
|
|
6281
|
+
auto_generate_ssl?: boolean;
|
|
6282
|
+
organisation_id?: number;
|
|
6283
|
+
use_rbenv_builds?: boolean;
|
|
6284
|
+
needs_clean?: boolean;
|
|
6285
|
+
has_storage_provider?: string | number | boolean;
|
|
6286
|
+
has_output_storage_provider?: string | number | boolean;
|
|
6287
|
+
has_source?: string | number | boolean;
|
|
6288
|
+
has_domain_name?: string | number | boolean;
|
|
6289
|
+
has_unsaved_changes?: string | number | boolean;
|
|
6290
|
+
error?: string | number | boolean;
|
|
6291
|
+
compiled?: string | number | boolean;
|
|
6292
|
+
last_compiled_status?: string | number | boolean;
|
|
6293
|
+
base_domain_uuid?: string;
|
|
6294
|
+
cloudflare_hostname_uuid?: string;
|
|
6295
|
+
cloudflare_error?: string;
|
|
6296
|
+
dam_uuid?: string;
|
|
6297
|
+
publish_branch?: string | number | boolean;
|
|
6298
|
+
owner_locked?: string | number | boolean;
|
|
6299
|
+
owner_trial?: string | number | boolean;
|
|
6300
|
+
ssl_certificate?: string | number | boolean;
|
|
6301
|
+
ssl_certificate_expired?: string | number | boolean;
|
|
6302
|
+
bearer_tokens?: string | number | boolean;
|
|
6303
|
+
site_scanner?: string | number | boolean;
|
|
6304
|
+
old_includes?: string | number | boolean;
|
|
6305
|
+
inbox_uuid?: string;
|
|
6306
|
+
repeatables?: string | number | boolean;
|
|
6307
|
+
storage_provider_details_full_name?: string | number | boolean;
|
|
6308
|
+
source?: string | number | boolean;
|
|
6309
|
+
organisation_uuid?: string;
|
|
6310
|
+
updated_at_lt?: string;
|
|
6311
|
+
updated_at_gt?: string;
|
|
6312
|
+
updated_at_lte?: string;
|
|
6313
|
+
updated_at_gte?: string;
|
|
6314
|
+
uuid?: string;
|
|
6315
|
+
id?: number;
|
|
6316
|
+
created_at_lt?: string;
|
|
6317
|
+
created_at_gt?: string;
|
|
6318
|
+
created_at_lte?: string;
|
|
6319
|
+
created_at_gte?: string;
|
|
6320
|
+
search?: string;
|
|
5787
6321
|
};
|
|
5788
6322
|
header?: never;
|
|
5789
6323
|
path: {
|
|
@@ -5796,11 +6330,11 @@ export interface operations {
|
|
|
5796
6330
|
/** @description OK */
|
|
5797
6331
|
200: {
|
|
5798
6332
|
headers: {
|
|
5799
|
-
/** @description
|
|
6333
|
+
/** @description The current page number */
|
|
5800
6334
|
current_page?: string;
|
|
5801
|
-
/** @description
|
|
6335
|
+
/** @description The total number of items across all pages */
|
|
5802
6336
|
total_items?: string;
|
|
5803
|
-
/** @description
|
|
6337
|
+
/** @description The total number of pages available */
|
|
5804
6338
|
total_pages?: string;
|
|
5805
6339
|
[name: string]: unknown;
|
|
5806
6340
|
};
|
|
@@ -5919,7 +6453,7 @@ export interface operations {
|
|
|
5919
6453
|
requestBody: {
|
|
5920
6454
|
content: {
|
|
5921
6455
|
'application/json': {
|
|
5922
|
-
dam_uuid
|
|
6456
|
+
dam_uuid?: string;
|
|
5923
6457
|
uploads_locked?: boolean;
|
|
5924
6458
|
config?: {
|
|
5925
6459
|
[key: string]: unknown;
|
|
@@ -6142,7 +6676,6 @@ export interface operations {
|
|
|
6142
6676
|
editing_locked?: boolean | null;
|
|
6143
6677
|
active_quest?: string | null;
|
|
6144
6678
|
cloudcannon_config_path?: string | null;
|
|
6145
|
-
stable_domain?: string;
|
|
6146
6679
|
flags?: {
|
|
6147
6680
|
[key: string]: unknown;
|
|
6148
6681
|
};
|
|
@@ -6186,10 +6719,34 @@ export interface operations {
|
|
|
6186
6719
|
'Site Activity_Index': {
|
|
6187
6720
|
parameters: {
|
|
6188
6721
|
query?: {
|
|
6722
|
+
/** @description Page number to fetch (1-indexed) */
|
|
6189
6723
|
page?: components['parameters']['PageQuery'];
|
|
6190
|
-
|
|
6191
|
-
|
|
6192
|
-
|
|
6724
|
+
/** @description Number of items per page */
|
|
6725
|
+
items?: components['parameters']['ItemsQuery'];
|
|
6726
|
+
/** @description Attribute to sort the results by */
|
|
6727
|
+
sort_attribute?: 'id' | 'uuid' | 'updated_at' | 'happened_at' | 'created_at';
|
|
6728
|
+
/** @description Direction to sort the results */
|
|
6729
|
+
sort_direction?: 'ASC' | 'DESC';
|
|
6730
|
+
size_gte?: string | number | boolean;
|
|
6731
|
+
site_id?: number;
|
|
6732
|
+
size_lt?: string | number | boolean;
|
|
6733
|
+
size_gt?: string | number | boolean;
|
|
6734
|
+
size_lte?: string | number | boolean;
|
|
6735
|
+
organisation_uuid?: string;
|
|
6736
|
+
site_uuid?: string;
|
|
6737
|
+
org_uuid?: string;
|
|
6738
|
+
org_id?: number;
|
|
6739
|
+
updated_at_lt?: string;
|
|
6740
|
+
updated_at_gt?: string;
|
|
6741
|
+
updated_at_lte?: string;
|
|
6742
|
+
updated_at_gte?: string;
|
|
6743
|
+
uuid?: string;
|
|
6744
|
+
id?: number;
|
|
6745
|
+
created_at_lt?: string;
|
|
6746
|
+
created_at_gt?: string;
|
|
6747
|
+
created_at_lte?: string;
|
|
6748
|
+
created_at_gte?: string;
|
|
6749
|
+
search?: string;
|
|
6193
6750
|
};
|
|
6194
6751
|
header?: never;
|
|
6195
6752
|
path: {
|
|
@@ -6202,11 +6759,11 @@ export interface operations {
|
|
|
6202
6759
|
/** @description OK */
|
|
6203
6760
|
200: {
|
|
6204
6761
|
headers: {
|
|
6205
|
-
/** @description
|
|
6762
|
+
/** @description The current page number */
|
|
6206
6763
|
current_page?: string;
|
|
6207
|
-
/** @description
|
|
6764
|
+
/** @description The total number of items across all pages */
|
|
6208
6765
|
total_items?: string;
|
|
6209
|
-
/** @description
|
|
6766
|
+
/** @description The total number of pages available */
|
|
6210
6767
|
total_pages?: string;
|
|
6211
6768
|
[name: string]: unknown;
|
|
6212
6769
|
};
|
|
@@ -6355,10 +6912,33 @@ export interface operations {
|
|
|
6355
6912
|
Backups_Index: {
|
|
6356
6913
|
parameters: {
|
|
6357
6914
|
query?: {
|
|
6915
|
+
/** @description Page number to fetch (1-indexed) */
|
|
6358
6916
|
page?: components['parameters']['PageQuery'];
|
|
6359
|
-
|
|
6360
|
-
|
|
6361
|
-
|
|
6917
|
+
/** @description Number of items per page */
|
|
6918
|
+
items?: components['parameters']['ItemsQuery'];
|
|
6919
|
+
/** @description Attribute to sort the results by */
|
|
6920
|
+
sort_attribute?: 'id' | 'uuid' | 'created_at';
|
|
6921
|
+
/** @description Direction to sort the results */
|
|
6922
|
+
sort_direction?: 'ASC' | 'DESC';
|
|
6923
|
+
size_gte?: number;
|
|
6924
|
+
site_id?: number;
|
|
6925
|
+
size_lt?: number;
|
|
6926
|
+
size_gt?: number;
|
|
6927
|
+
size_lte?: number;
|
|
6928
|
+
site_uuid?: string;
|
|
6929
|
+
org_uuid?: string;
|
|
6930
|
+
org_id?: number;
|
|
6931
|
+
updated_at_lt?: string;
|
|
6932
|
+
updated_at_gt?: string;
|
|
6933
|
+
updated_at_lte?: string;
|
|
6934
|
+
updated_at_gte?: string;
|
|
6935
|
+
uuid?: string;
|
|
6936
|
+
id?: number;
|
|
6937
|
+
created_at_lt?: string;
|
|
6938
|
+
created_at_gt?: string;
|
|
6939
|
+
created_at_lte?: string;
|
|
6940
|
+
created_at_gte?: string;
|
|
6941
|
+
search?: string;
|
|
6362
6942
|
};
|
|
6363
6943
|
header?: never;
|
|
6364
6944
|
path: {
|
|
@@ -6371,11 +6951,11 @@ export interface operations {
|
|
|
6371
6951
|
/** @description OK */
|
|
6372
6952
|
200: {
|
|
6373
6953
|
headers: {
|
|
6374
|
-
/** @description
|
|
6954
|
+
/** @description The current page number */
|
|
6375
6955
|
current_page?: string;
|
|
6376
|
-
/** @description
|
|
6956
|
+
/** @description The total number of items across all pages */
|
|
6377
6957
|
total_items?: string;
|
|
6378
|
-
/** @description
|
|
6958
|
+
/** @description The total number of pages available */
|
|
6379
6959
|
total_pages?: string;
|
|
6380
6960
|
[name: string]: unknown;
|
|
6381
6961
|
};
|
|
@@ -6395,7 +6975,13 @@ export interface operations {
|
|
|
6395
6975
|
};
|
|
6396
6976
|
cookie?: never;
|
|
6397
6977
|
};
|
|
6398
|
-
requestBody
|
|
6978
|
+
requestBody: {
|
|
6979
|
+
content: {
|
|
6980
|
+
'application/json': {
|
|
6981
|
+
exclude_git?: boolean;
|
|
6982
|
+
};
|
|
6983
|
+
};
|
|
6984
|
+
};
|
|
6399
6985
|
responses: {
|
|
6400
6986
|
/** @description Created */
|
|
6401
6987
|
201: {
|
|
@@ -6444,10 +7030,30 @@ export interface operations {
|
|
|
6444
7030
|
'Site Bearer Tokens_Index': {
|
|
6445
7031
|
parameters: {
|
|
6446
7032
|
query?: {
|
|
7033
|
+
/** @description Page number to fetch (1-indexed) */
|
|
6447
7034
|
page?: components['parameters']['PageQuery'];
|
|
6448
|
-
|
|
6449
|
-
|
|
6450
|
-
|
|
7035
|
+
/** @description Number of items per page */
|
|
7036
|
+
items?: components['parameters']['ItemsQuery'];
|
|
7037
|
+
/** @description Attribute to sort the results by */
|
|
7038
|
+
sort_attribute?: 'id' | 'uuid';
|
|
7039
|
+
/** @description Direction to sort the results */
|
|
7040
|
+
sort_direction?: 'ASC' | 'DESC';
|
|
7041
|
+
name?: string;
|
|
7042
|
+
token?: string;
|
|
7043
|
+
site_id?: number;
|
|
7044
|
+
site_uuid?: string;
|
|
7045
|
+
org_uuid?: string;
|
|
7046
|
+
org_id?: number;
|
|
7047
|
+
updated_at_lt?: string;
|
|
7048
|
+
updated_at_gt?: string;
|
|
7049
|
+
updated_at_lte?: string;
|
|
7050
|
+
updated_at_gte?: string;
|
|
7051
|
+
uuid?: string;
|
|
7052
|
+
id?: number;
|
|
7053
|
+
created_at_lt?: string;
|
|
7054
|
+
created_at_gt?: string;
|
|
7055
|
+
created_at_lte?: string;
|
|
7056
|
+
created_at_gte?: string;
|
|
6451
7057
|
};
|
|
6452
7058
|
header?: never;
|
|
6453
7059
|
path: {
|
|
@@ -6460,11 +7066,11 @@ export interface operations {
|
|
|
6460
7066
|
/** @description OK */
|
|
6461
7067
|
200: {
|
|
6462
7068
|
headers: {
|
|
6463
|
-
/** @description
|
|
7069
|
+
/** @description The current page number */
|
|
6464
7070
|
current_page?: string;
|
|
6465
|
-
/** @description
|
|
7071
|
+
/** @description The total number of items across all pages */
|
|
6466
7072
|
total_items?: string;
|
|
6467
|
-
/** @description
|
|
7073
|
+
/** @description The total number of pages available */
|
|
6468
7074
|
total_pages?: string;
|
|
6469
7075
|
[name: string]: unknown;
|
|
6470
7076
|
};
|
|
@@ -6598,10 +7204,30 @@ export interface operations {
|
|
|
6598
7204
|
'Site Authentication Users_Index': {
|
|
6599
7205
|
parameters: {
|
|
6600
7206
|
query?: {
|
|
7207
|
+
/** @description Page number to fetch (1-indexed) */
|
|
6601
7208
|
page?: components['parameters']['PageQuery'];
|
|
6602
|
-
|
|
6603
|
-
|
|
6604
|
-
|
|
7209
|
+
/** @description Number of items per page */
|
|
7210
|
+
items?: components['parameters']['ItemsQuery'];
|
|
7211
|
+
/** @description Attribute to sort the results by */
|
|
7212
|
+
sort_attribute?: 'id' | 'uuid';
|
|
7213
|
+
/** @description Direction to sort the results */
|
|
7214
|
+
sort_direction?: 'ASC' | 'DESC';
|
|
7215
|
+
email?: string;
|
|
7216
|
+
has_password?: string | number | boolean;
|
|
7217
|
+
site_id?: number;
|
|
7218
|
+
site_uuid?: string;
|
|
7219
|
+
org_uuid?: string;
|
|
7220
|
+
org_id?: number;
|
|
7221
|
+
updated_at_lt?: string;
|
|
7222
|
+
updated_at_gt?: string;
|
|
7223
|
+
updated_at_lte?: string;
|
|
7224
|
+
updated_at_gte?: string;
|
|
7225
|
+
uuid?: string;
|
|
7226
|
+
id?: number;
|
|
7227
|
+
created_at_lt?: string;
|
|
7228
|
+
created_at_gt?: string;
|
|
7229
|
+
created_at_lte?: string;
|
|
7230
|
+
created_at_gte?: string;
|
|
6605
7231
|
};
|
|
6606
7232
|
header?: never;
|
|
6607
7233
|
path: {
|
|
@@ -6614,11 +7240,11 @@ export interface operations {
|
|
|
6614
7240
|
/** @description OK */
|
|
6615
7241
|
200: {
|
|
6616
7242
|
headers: {
|
|
6617
|
-
/** @description
|
|
7243
|
+
/** @description The current page number */
|
|
6618
7244
|
current_page?: string;
|
|
6619
|
-
/** @description
|
|
7245
|
+
/** @description The total number of items across all pages */
|
|
6620
7246
|
total_items?: string;
|
|
6621
|
-
/** @description
|
|
7247
|
+
/** @description The total number of pages available */
|
|
6622
7248
|
total_pages?: string;
|
|
6623
7249
|
[name: string]: unknown;
|
|
6624
7250
|
};
|
|
@@ -6695,10 +7321,33 @@ export interface operations {
|
|
|
6695
7321
|
Builds_Index: {
|
|
6696
7322
|
parameters: {
|
|
6697
7323
|
query?: {
|
|
7324
|
+
/** @description Page number to fetch (1-indexed) */
|
|
6698
7325
|
page?: components['parameters']['PageQuery'];
|
|
6699
|
-
|
|
6700
|
-
|
|
6701
|
-
|
|
7326
|
+
/** @description Number of items per page */
|
|
7327
|
+
items?: components['parameters']['ItemsQuery'];
|
|
7328
|
+
/** @description Attribute to sort the results by */
|
|
7329
|
+
sort_attribute?: 'id' | 'uuid' | 'created_at';
|
|
7330
|
+
/** @description Direction to sort the results */
|
|
7331
|
+
sort_direction?: 'ASC' | 'DESC';
|
|
7332
|
+
name?: string;
|
|
7333
|
+
site_id?: number;
|
|
7334
|
+
completed_at?: string;
|
|
7335
|
+
successful?: boolean;
|
|
7336
|
+
pinnable?: boolean;
|
|
7337
|
+
site_uuid?: string;
|
|
7338
|
+
org_uuid?: string;
|
|
7339
|
+
org_id?: number;
|
|
7340
|
+
updated_at_lt?: string;
|
|
7341
|
+
updated_at_gt?: string;
|
|
7342
|
+
updated_at_lte?: string;
|
|
7343
|
+
updated_at_gte?: string;
|
|
7344
|
+
uuid?: string;
|
|
7345
|
+
id?: number;
|
|
7346
|
+
created_at_lt?: string;
|
|
7347
|
+
created_at_gt?: string;
|
|
7348
|
+
created_at_lte?: string;
|
|
7349
|
+
created_at_gte?: string;
|
|
7350
|
+
search?: string;
|
|
6702
7351
|
};
|
|
6703
7352
|
header?: never;
|
|
6704
7353
|
path: {
|
|
@@ -6711,11 +7360,11 @@ export interface operations {
|
|
|
6711
7360
|
/** @description OK */
|
|
6712
7361
|
200: {
|
|
6713
7362
|
headers: {
|
|
6714
|
-
/** @description
|
|
7363
|
+
/** @description The current page number */
|
|
6715
7364
|
current_page?: string;
|
|
6716
|
-
/** @description
|
|
7365
|
+
/** @description The total number of items across all pages */
|
|
6717
7366
|
total_items?: string;
|
|
6718
|
-
/** @description
|
|
7367
|
+
/** @description The total number of pages available */
|
|
6719
7368
|
total_pages?: string;
|
|
6720
7369
|
[name: string]: unknown;
|
|
6721
7370
|
};
|
|
@@ -7255,10 +7904,51 @@ export interface operations {
|
|
|
7255
7904
|
parameters: {
|
|
7256
7905
|
query?: {
|
|
7257
7906
|
category?: 'spam' | 'sent' | 'errored' | 'pending';
|
|
7907
|
+
/** @description Page number to fetch (1-indexed) */
|
|
7258
7908
|
page?: components['parameters']['PageQuery'];
|
|
7259
|
-
|
|
7260
|
-
|
|
7261
|
-
|
|
7909
|
+
/** @description Number of items per page */
|
|
7910
|
+
items?: components['parameters']['ItemsQuery'];
|
|
7911
|
+
/** @description Attribute to sort the results by */
|
|
7912
|
+
sort_attribute?: 'last_sent_at' | 'created_at' | 'id' | 'uuid';
|
|
7913
|
+
/** @description Direction to sort the results */
|
|
7914
|
+
sort_direction?: 'ASC' | 'DESC';
|
|
7915
|
+
site_id?: number;
|
|
7916
|
+
recaptcha?: boolean;
|
|
7917
|
+
sent?: boolean;
|
|
7918
|
+
spam_checked?: boolean;
|
|
7919
|
+
automatically_marked_spam?: boolean;
|
|
7920
|
+
ip?: string;
|
|
7921
|
+
host?: string;
|
|
7922
|
+
explicitly_marked_status?: number;
|
|
7923
|
+
inbox_uuid?: string;
|
|
7924
|
+
has_error?: string | number | boolean;
|
|
7925
|
+
has_spam_check_error?: string | number | boolean;
|
|
7926
|
+
cleared_at_lt?: string;
|
|
7927
|
+
cleared_at_gt?: string;
|
|
7928
|
+
cleared_at_lte?: string;
|
|
7929
|
+
cleared_at_gte?: string;
|
|
7930
|
+
last_sent_at_lt?: string;
|
|
7931
|
+
last_sent_at_gt?: string;
|
|
7932
|
+
last_sent_at_lte?: string;
|
|
7933
|
+
last_sent_at_gte?: string;
|
|
7934
|
+
sent_count_lt?: number;
|
|
7935
|
+
sent_count_gt?: number;
|
|
7936
|
+
sent_count_lte?: number;
|
|
7937
|
+
sent_count_gte?: number;
|
|
7938
|
+
site_uuid?: string;
|
|
7939
|
+
org_uuid?: string;
|
|
7940
|
+
org_id?: number;
|
|
7941
|
+
updated_at_lt?: string;
|
|
7942
|
+
updated_at_gt?: string;
|
|
7943
|
+
updated_at_lte?: string;
|
|
7944
|
+
updated_at_gte?: string;
|
|
7945
|
+
uuid?: string;
|
|
7946
|
+
id?: number;
|
|
7947
|
+
created_at_lt?: string;
|
|
7948
|
+
created_at_gt?: string;
|
|
7949
|
+
created_at_lte?: string;
|
|
7950
|
+
created_at_gte?: string;
|
|
7951
|
+
search?: string;
|
|
7262
7952
|
};
|
|
7263
7953
|
header?: never;
|
|
7264
7954
|
path: {
|
|
@@ -7271,11 +7961,11 @@ export interface operations {
|
|
|
7271
7961
|
/** @description OK */
|
|
7272
7962
|
200: {
|
|
7273
7963
|
headers: {
|
|
7274
|
-
/** @description
|
|
7964
|
+
/** @description The current page number */
|
|
7275
7965
|
current_page?: string;
|
|
7276
|
-
/** @description
|
|
7966
|
+
/** @description The total number of items across all pages */
|
|
7277
7967
|
total_items?: string;
|
|
7278
|
-
/** @description
|
|
7968
|
+
/** @description The total number of pages available */
|
|
7279
7969
|
total_pages?: string;
|
|
7280
7970
|
[name: string]: unknown;
|
|
7281
7971
|
};
|
|
@@ -7326,10 +8016,10 @@ export interface operations {
|
|
|
7326
8016
|
'Site Inboxes_Index': {
|
|
7327
8017
|
parameters: {
|
|
7328
8018
|
query?: {
|
|
8019
|
+
/** @description Page number to fetch (1-indexed) */
|
|
7329
8020
|
page?: components['parameters']['PageQuery'];
|
|
7330
|
-
|
|
7331
|
-
|
|
7332
|
-
sort_direction?: components['parameters']['SortDirectionQuery'];
|
|
8021
|
+
/** @description Number of items per page */
|
|
8022
|
+
items?: components['parameters']['ItemsQuery'];
|
|
7333
8023
|
};
|
|
7334
8024
|
header?: never;
|
|
7335
8025
|
path: {
|
|
@@ -7342,11 +8032,11 @@ export interface operations {
|
|
|
7342
8032
|
/** @description OK */
|
|
7343
8033
|
200: {
|
|
7344
8034
|
headers: {
|
|
7345
|
-
/** @description
|
|
8035
|
+
/** @description The current page number */
|
|
7346
8036
|
current_page?: string;
|
|
7347
|
-
/** @description
|
|
8037
|
+
/** @description The total number of items across all pages */
|
|
7348
8038
|
total_items?: string;
|
|
7349
|
-
/** @description
|
|
8039
|
+
/** @description The total number of pages available */
|
|
7350
8040
|
total_pages?: string;
|
|
7351
8041
|
[name: string]: unknown;
|
|
7352
8042
|
};
|
|
@@ -7505,10 +8195,38 @@ export interface operations {
|
|
|
7505
8195
|
Outputs_Index: {
|
|
7506
8196
|
parameters: {
|
|
7507
8197
|
query?: {
|
|
8198
|
+
/** @description Page number to fetch (1-indexed) */
|
|
7508
8199
|
page?: components['parameters']['PageQuery'];
|
|
7509
|
-
|
|
7510
|
-
|
|
7511
|
-
|
|
8200
|
+
/** @description Number of items per page */
|
|
8201
|
+
items?: components['parameters']['ItemsQuery'];
|
|
8202
|
+
/** @description Attribute to sort the results by */
|
|
8203
|
+
sort_attribute?: 'id' | 'uuid' | 'created_at';
|
|
8204
|
+
/** @description Direction to sort the results */
|
|
8205
|
+
sort_direction?: 'ASC' | 'DESC';
|
|
8206
|
+
completed_at_lte?: string;
|
|
8207
|
+
completed_at_gte?: string;
|
|
8208
|
+
site_id?: number;
|
|
8209
|
+
successful?: boolean;
|
|
8210
|
+
name?: string;
|
|
8211
|
+
identifier?: string;
|
|
8212
|
+
after_identifier?: string;
|
|
8213
|
+
diff_id?: string;
|
|
8214
|
+
provider?: string;
|
|
8215
|
+
completed_at_lt?: string;
|
|
8216
|
+
completed_at_gt?: string;
|
|
8217
|
+
site_uuid?: string;
|
|
8218
|
+
org_uuid?: string;
|
|
8219
|
+
org_id?: number;
|
|
8220
|
+
updated_at_lt?: string;
|
|
8221
|
+
updated_at_gt?: string;
|
|
8222
|
+
updated_at_lte?: string;
|
|
8223
|
+
updated_at_gte?: string;
|
|
8224
|
+
uuid?: string;
|
|
8225
|
+
id?: number;
|
|
8226
|
+
created_at_lt?: string;
|
|
8227
|
+
created_at_gt?: string;
|
|
8228
|
+
created_at_lte?: string;
|
|
8229
|
+
created_at_gte?: string;
|
|
7512
8230
|
};
|
|
7513
8231
|
header?: never;
|
|
7514
8232
|
path: {
|
|
@@ -7521,11 +8239,11 @@ export interface operations {
|
|
|
7521
8239
|
/** @description OK */
|
|
7522
8240
|
200: {
|
|
7523
8241
|
headers: {
|
|
7524
|
-
/** @description
|
|
8242
|
+
/** @description The current page number */
|
|
7525
8243
|
current_page?: string;
|
|
7526
|
-
/** @description
|
|
8244
|
+
/** @description The total number of items across all pages */
|
|
7527
8245
|
total_items?: string;
|
|
7528
|
-
/** @description
|
|
8246
|
+
/** @description The total number of pages available */
|
|
7529
8247
|
total_pages?: string;
|
|
7530
8248
|
[name: string]: unknown;
|
|
7531
8249
|
};
|
|
@@ -7629,10 +8347,10 @@ export interface operations {
|
|
|
7629
8347
|
'Site Provider Branch_Branches': {
|
|
7630
8348
|
parameters: {
|
|
7631
8349
|
query?: {
|
|
8350
|
+
/** @description Page number to fetch (1-indexed) */
|
|
7632
8351
|
page?: components['parameters']['PageQuery'];
|
|
7633
|
-
|
|
7634
|
-
|
|
7635
|
-
sort_direction?: components['parameters']['SortDirectionQuery'];
|
|
8352
|
+
/** @description Number of items per page */
|
|
8353
|
+
items?: components['parameters']['ItemsQuery'];
|
|
7636
8354
|
};
|
|
7637
8355
|
header?: never;
|
|
7638
8356
|
path: {
|
|
@@ -7645,11 +8363,11 @@ export interface operations {
|
|
|
7645
8363
|
/** @description OK */
|
|
7646
8364
|
200: {
|
|
7647
8365
|
headers: {
|
|
7648
|
-
/** @description
|
|
8366
|
+
/** @description The current page number */
|
|
7649
8367
|
current_page?: string;
|
|
7650
|
-
/** @description
|
|
8368
|
+
/** @description The total number of items across all pages */
|
|
7651
8369
|
total_items?: string;
|
|
7652
|
-
/** @description
|
|
8370
|
+
/** @description The total number of pages available */
|
|
7653
8371
|
total_pages?: string;
|
|
7654
8372
|
[name: string]: unknown;
|
|
7655
8373
|
};
|
|
@@ -7816,10 +8534,10 @@ export interface operations {
|
|
|
7816
8534
|
'Pull Requests_Index': {
|
|
7817
8535
|
parameters: {
|
|
7818
8536
|
query?: {
|
|
8537
|
+
/** @description Page number to fetch (1-indexed) */
|
|
7819
8538
|
page?: components['parameters']['PageQuery'];
|
|
7820
|
-
|
|
7821
|
-
|
|
7822
|
-
sort_direction?: components['parameters']['SortDirectionQuery'];
|
|
8539
|
+
/** @description Number of items per page */
|
|
8540
|
+
items?: components['parameters']['ItemsQuery'];
|
|
7823
8541
|
};
|
|
7824
8542
|
header?: never;
|
|
7825
8543
|
path: {
|
|
@@ -7832,11 +8550,11 @@ export interface operations {
|
|
|
7832
8550
|
/** @description OK */
|
|
7833
8551
|
200: {
|
|
7834
8552
|
headers: {
|
|
7835
|
-
/** @description
|
|
8553
|
+
/** @description The current page number */
|
|
7836
8554
|
current_page?: string;
|
|
7837
|
-
/** @description
|
|
8555
|
+
/** @description The total number of items across all pages */
|
|
7838
8556
|
total_items?: string;
|
|
7839
|
-
/** @description
|
|
8557
|
+
/** @description The total number of pages available */
|
|
7840
8558
|
total_pages?: string;
|
|
7841
8559
|
[name: string]: unknown;
|
|
7842
8560
|
};
|
|
@@ -8036,10 +8754,10 @@ export interface operations {
|
|
|
8036
8754
|
'Upstream Pull Requests_Index': {
|
|
8037
8755
|
parameters: {
|
|
8038
8756
|
query?: {
|
|
8757
|
+
/** @description Page number to fetch (1-indexed) */
|
|
8039
8758
|
page?: components['parameters']['PageQuery'];
|
|
8040
|
-
|
|
8041
|
-
|
|
8042
|
-
sort_direction?: components['parameters']['SortDirectionQuery'];
|
|
8759
|
+
/** @description Number of items per page */
|
|
8760
|
+
items?: components['parameters']['ItemsQuery'];
|
|
8043
8761
|
};
|
|
8044
8762
|
header?: never;
|
|
8045
8763
|
path: {
|
|
@@ -8052,11 +8770,11 @@ export interface operations {
|
|
|
8052
8770
|
/** @description OK */
|
|
8053
8771
|
200: {
|
|
8054
8772
|
headers: {
|
|
8055
|
-
/** @description
|
|
8773
|
+
/** @description The current page number */
|
|
8056
8774
|
current_page?: string;
|
|
8057
|
-
/** @description
|
|
8775
|
+
/** @description The total number of items across all pages */
|
|
8058
8776
|
total_items?: string;
|
|
8059
|
-
/** @description
|
|
8777
|
+
/** @description The total number of pages available */
|
|
8060
8778
|
total_pages?: string;
|
|
8061
8779
|
[name: string]: unknown;
|
|
8062
8780
|
};
|
|
@@ -8156,10 +8874,44 @@ export interface operations {
|
|
|
8156
8874
|
'Site Scheduled Builds_Index': {
|
|
8157
8875
|
parameters: {
|
|
8158
8876
|
query?: {
|
|
8877
|
+
/** @description Page number to fetch (1-indexed) */
|
|
8159
8878
|
page?: components['parameters']['PageQuery'];
|
|
8160
|
-
|
|
8161
|
-
|
|
8162
|
-
|
|
8879
|
+
/** @description Number of items per page */
|
|
8880
|
+
items?: components['parameters']['ItemsQuery'];
|
|
8881
|
+
/** @description Attribute to sort the results by */
|
|
8882
|
+
sort_attribute?: 'id' | 'uuid' | 'created_at';
|
|
8883
|
+
/** @description Direction to sort the results */
|
|
8884
|
+
sort_direction?: 'ASC' | 'DESC';
|
|
8885
|
+
site_id?: number;
|
|
8886
|
+
filename?: string;
|
|
8887
|
+
run_date_lt?: string;
|
|
8888
|
+
run_date_gt?: string;
|
|
8889
|
+
run_date_lte?: string;
|
|
8890
|
+
run_date_gte?: string;
|
|
8891
|
+
period_lt?: number;
|
|
8892
|
+
period_gt?: number;
|
|
8893
|
+
period_lte?: number;
|
|
8894
|
+
period_gte?: number;
|
|
8895
|
+
run_count_lt?: number;
|
|
8896
|
+
run_count_gt?: number;
|
|
8897
|
+
run_count_lte?: number;
|
|
8898
|
+
name?: string;
|
|
8899
|
+
run_count_gte?: number;
|
|
8900
|
+
from_source?: boolean;
|
|
8901
|
+
scheduled_at?: string;
|
|
8902
|
+
site_uuid?: string;
|
|
8903
|
+
org_uuid?: string;
|
|
8904
|
+
org_id?: number;
|
|
8905
|
+
updated_at_lt?: string;
|
|
8906
|
+
updated_at_gt?: string;
|
|
8907
|
+
updated_at_lte?: string;
|
|
8908
|
+
updated_at_gte?: string;
|
|
8909
|
+
uuid?: string;
|
|
8910
|
+
id?: number;
|
|
8911
|
+
created_at_lt?: string;
|
|
8912
|
+
created_at_gt?: string;
|
|
8913
|
+
created_at_lte?: string;
|
|
8914
|
+
created_at_gte?: string;
|
|
8163
8915
|
};
|
|
8164
8916
|
header?: never;
|
|
8165
8917
|
path: {
|
|
@@ -8172,11 +8924,11 @@ export interface operations {
|
|
|
8172
8924
|
/** @description OK */
|
|
8173
8925
|
200: {
|
|
8174
8926
|
headers: {
|
|
8175
|
-
/** @description
|
|
8927
|
+
/** @description The current page number */
|
|
8176
8928
|
current_page?: string;
|
|
8177
|
-
/** @description
|
|
8929
|
+
/** @description The total number of items across all pages */
|
|
8178
8930
|
total_items?: string;
|
|
8179
|
-
/** @description
|
|
8931
|
+
/** @description The total number of pages available */
|
|
8180
8932
|
total_pages?: string;
|
|
8181
8933
|
[name: string]: unknown;
|
|
8182
8934
|
};
|
|
@@ -8542,10 +9294,35 @@ export interface operations {
|
|
|
8542
9294
|
Syncs_Index: {
|
|
8543
9295
|
parameters: {
|
|
8544
9296
|
query?: {
|
|
9297
|
+
/** @description Page number to fetch (1-indexed) */
|
|
8545
9298
|
page?: components['parameters']['PageQuery'];
|
|
8546
|
-
|
|
8547
|
-
|
|
8548
|
-
|
|
9299
|
+
/** @description Number of items per page */
|
|
9300
|
+
items?: components['parameters']['ItemsQuery'];
|
|
9301
|
+
/** @description Attribute to sort the results by */
|
|
9302
|
+
sort_attribute?: 'id' | 'uuid' | 'created_at';
|
|
9303
|
+
/** @description Direction to sort the results */
|
|
9304
|
+
sort_direction?: 'ASC' | 'DESC';
|
|
9305
|
+
site_id?: number;
|
|
9306
|
+
completed_at?: string;
|
|
9307
|
+
successful?: boolean;
|
|
9308
|
+
name?: string;
|
|
9309
|
+
identifier?: string;
|
|
9310
|
+
after_identifier?: string;
|
|
9311
|
+
diff_id?: string;
|
|
9312
|
+
provider?: string;
|
|
9313
|
+
site_uuid?: string;
|
|
9314
|
+
org_uuid?: string;
|
|
9315
|
+
org_id?: number;
|
|
9316
|
+
updated_at_lt?: string;
|
|
9317
|
+
updated_at_gt?: string;
|
|
9318
|
+
updated_at_lte?: string;
|
|
9319
|
+
updated_at_gte?: string;
|
|
9320
|
+
uuid?: string;
|
|
9321
|
+
id?: number;
|
|
9322
|
+
created_at_lt?: string;
|
|
9323
|
+
created_at_gt?: string;
|
|
9324
|
+
created_at_lte?: string;
|
|
9325
|
+
created_at_gte?: string;
|
|
8549
9326
|
};
|
|
8550
9327
|
header?: never;
|
|
8551
9328
|
path: {
|
|
@@ -8558,11 +9335,11 @@ export interface operations {
|
|
|
8558
9335
|
/** @description OK */
|
|
8559
9336
|
200: {
|
|
8560
9337
|
headers: {
|
|
8561
|
-
/** @description
|
|
9338
|
+
/** @description The current page number */
|
|
8562
9339
|
current_page?: string;
|
|
8563
|
-
/** @description
|
|
9340
|
+
/** @description The total number of items across all pages */
|
|
8564
9341
|
total_items?: string;
|
|
8565
|
-
/** @description
|
|
9342
|
+
/** @description The total number of pages available */
|
|
8566
9343
|
total_pages?: string;
|
|
8567
9344
|
[name: string]: unknown;
|
|
8568
9345
|
};
|