@@ -277,6 +277,7 @@ export interface Application {
277277 maxDuration ?: string | null ;
278278 } | null ;
279279 limit ?: number | null ;
280+ refresh ?: boolean | null ;
280281 } | null ;
281282 sync ?: {
282283 autoHealAttemptsCount ?: number | null ;
@@ -359,6 +360,7 @@ export interface Application {
359360 maxDuration ?: string | null ;
360361 } | null ;
361362 limit ?: number | null ;
363+ refresh ?: boolean | null ;
362364 } | null ;
363365 syncOptions ?: Array < string > | null ;
364366 } | null ;
@@ -408,6 +410,7 @@ export interface Application {
408410 maxDuration ?: string | null ;
409411 } | null ;
410412 limit ?: number | null ;
413+ refresh ?: boolean | null ;
411414 } | null ;
412415 sync ?: {
413416 autoHealAttemptsCount ?: number | null ;
@@ -699,6 +702,7 @@ function toApplication_operation_retry(input: c.JSONValue) {
699702 return {
700703 backoff : c . readOpt ( obj [ "backoff" ] , toApplication_operation_retry_backoff ) ,
701704 limit : c . readOpt ( obj [ "limit" ] , c . checkNum ) ,
705+ refresh : c . readOpt ( obj [ "refresh" ] , c . checkBool ) ,
702706 } }
703707function toApplication_operation_sync ( input : c . JSONValue ) {
704708 const obj = c . checkObj ( input ) ;
@@ -884,6 +888,7 @@ function toApplication_spec_syncPolicy_retry(input: c.JSONValue) {
884888 return {
885889 backoff : c . readOpt ( obj [ "backoff" ] , toApplication_spec_syncPolicy_retry_backoff ) ,
886890 limit : c . readOpt ( obj [ "limit" ] , c . checkNum ) ,
891+ refresh : c . readOpt ( obj [ "refresh" ] , c . checkBool ) ,
887892 } }
888893function toApplication_status_history_initiatedBy ( input : c . JSONValue ) {
889894 const obj = c . checkObj ( input ) ;
@@ -976,6 +981,7 @@ function toApplication_status_operationState_operation_retry(input: c.JSONValue)
976981 return {
977982 backoff : c . readOpt ( obj [ "backoff" ] , toApplication_status_operationState_operation_retry_backoff ) ,
978983 limit : c . readOpt ( obj [ "limit" ] , c . checkNum ) ,
984+ refresh : c . readOpt ( obj [ "refresh" ] , c . checkBool ) ,
979985 } }
980986function toApplication_status_operationState_operation_sync ( input : c . JSONValue ) {
981987 const obj = c . checkObj ( input ) ;
@@ -1234,9 +1240,11 @@ export interface ApplicationSetGenerator {
12341240 project : string ;
12351241 repo : string ;
12361242 } | null ;
1243+ continueOnRepoNotFoundError ?: boolean | null ;
12371244 filters ?: Array < {
12381245 branchMatch ?: string | null ;
12391246 targetBranchMatch ?: string | null ;
1247+ titleMatch ?: string | null ;
12401248 } > | null ;
12411249 gitea ?: {
12421250 api : string ;
@@ -1506,6 +1514,7 @@ function toApplicationSetGenerator_pullRequest(input: c.JSONValue) {
15061514 azuredevops : c . readOpt ( obj [ "azuredevops" ] , toApplicationSetGenerator_pullRequest_azuredevops ) ,
15071515 bitbucket : c . readOpt ( obj [ "bitbucket" ] , toApplicationSetGenerator_pullRequest_bitbucket ) ,
15081516 bitbucketServer : c . readOpt ( obj [ "bitbucketServer" ] , toApplicationSetGenerator_pullRequest_bitbucketServer ) ,
1517+ continueOnRepoNotFoundError : c . readOpt ( obj [ "continueOnRepoNotFoundError" ] , c . checkBool ) ,
15091518 filters : c . readOpt ( obj [ "filters" ] , x => c . readList ( x , toApplicationSetGenerator_pullRequest_filters ) ) ,
15101519 gitea : c . readOpt ( obj [ "gitea" ] , toApplicationSetGenerator_pullRequest_gitea ) ,
15111520 github : c . readOpt ( obj [ "github" ] , toApplicationSetGenerator_pullRequest_github ) ,
@@ -1587,6 +1596,7 @@ function toApplicationSetGenerator_pullRequest_filters(input: c.JSONValue) {
15871596 return {
15881597 branchMatch : c . readOpt ( obj [ "branchMatch" ] , c . checkStr ) ,
15891598 targetBranchMatch : c . readOpt ( obj [ "targetBranchMatch" ] , c . checkStr ) ,
1599+ titleMatch : c . readOpt ( obj [ "titleMatch" ] , c . checkStr ) ,
15901600 } }
15911601function toApplicationSetGenerator_pullRequest_gitea ( input : c . JSONValue ) {
15921602 const obj = c . checkObj ( input ) ;
@@ -1912,6 +1922,7 @@ export interface ApplicationTemplate {
19121922 maxDuration ?: string | null ;
19131923 } | null ;
19141924 limit ?: number | null ;
1925+ refresh ?: boolean | null ;
19151926 } | null ;
19161927 syncOptions ?: Array < string > | null ;
19171928 } | null ;
@@ -2030,6 +2041,7 @@ function toApplicationTemplate_spec_syncPolicy_retry(input: c.JSONValue) {
20302041 return {
20312042 backoff : c . readOpt ( obj [ "backoff" ] , toApplicationTemplate_spec_syncPolicy_retry_backoff ) ,
20322043 limit : c . readOpt ( obj [ "limit" ] , c . checkNum ) ,
2044+ refresh : c . readOpt ( obj [ "refresh" ] , c . checkBool ) ,
20332045 } }
20342046function toApplicationTemplate_spec_syncPolicy_retry_backoff ( input : c . JSONValue ) {
20352047 const obj = c . checkObj ( input ) ;
@@ -2058,6 +2070,7 @@ export interface ApplicationSet {
20582070 labels ?: Array < string > | null ;
20592071 } | null ;
20602072 strategy ?: {
2073+ deletionOrder ?: string | null ;
20612074 rollingSync ?: {
20622075 steps ?: Array < {
20632076 matchExpressions ?: Array < {
@@ -2110,6 +2123,7 @@ export interface ApplicationSet {
21102123 syncWave ?: number | null ;
21112124 version ?: string | null ;
21122125 } > | null ;
2126+ resourcesCount ?: number | null ;
21132127 } | null ;
21142128}
21152129export function toApplicationSet ( input : c . JSONValue ) : ApplicationSet & c . ApiKind {
@@ -2169,6 +2183,7 @@ function toApplicationSet_status(input: c.JSONValue) {
21692183 applicationStatus : c . readOpt ( obj [ "applicationStatus" ] , x => c . readList ( x , toApplicationSet_status_applicationStatus ) ) ,
21702184 conditions : c . readOpt ( obj [ "conditions" ] , x => c . readList ( x , toApplicationSet_status_conditions ) ) ,
21712185 resources : c . readOpt ( obj [ "resources" ] , x => c . readList ( x , toApplicationSet_status_resources ) ) ,
2186+ resourcesCount : c . readOpt ( obj [ "resourcesCount" ] , c . checkNum ) ,
21722187 } }
21732188function toApplicationSet_spec_ignoreApplicationDifferences ( input : c . JSONValue ) {
21742189 const obj = c . checkObj ( input ) ;
@@ -2186,6 +2201,7 @@ function toApplicationSet_spec_preservedFields(input: c.JSONValue) {
21862201function toApplicationSet_spec_strategy ( input : c . JSONValue ) {
21872202 const obj = c . checkObj ( input ) ;
21882203 return {
2204+ deletionOrder : c . readOpt ( obj [ "deletionOrder" ] , c . checkStr ) ,
21892205 rollingSync : c . readOpt ( obj [ "rollingSync" ] , toApplicationSet_spec_strategy_rollingSync ) ,
21902206 type : c . readOpt ( obj [ "type" ] , c . checkStr ) ,
21912207 } }
0 commit comments