update the dependency sigs.k8s.io/structured-merge-diff/v4 to latest tag

This commit is contained in:
Keerthan Reddy Mala
2023-07-14 09:47:59 -07:00
parent f3f5dd99ac
commit d2df65ba6c
70 changed files with 163 additions and 115 deletions

View File

@@ -73,7 +73,7 @@ type Atom struct {
}
// Scalar (AKA "primitive") represents a type which has a single value which is
// either numeric, string, or boolean.
// either numeric, string, or boolean, or untyped for any of them.
//
// TODO: split numeric into float/int? Something even more fine-grained?
type Scalar string
@@ -82,6 +82,7 @@ const (
Numeric = Scalar("numeric")
String = Scalar("string")
Boolean = Scalar("boolean")
Untyped = Scalar("untyped")
)
// ElementRelationship is an enum of the different possible relationships