The backend dev didn't tell you what they changed?

We will tell you.

1
1
 
interface Root {
2

                                
-
 age: string;

                                
2
+
  age: number;
3
3
 
  name: string;
4

                                
-
 pets: Array<>;

                                
4
+
  pets: Array<{

                                
5
+
    name: string;

                                
6
+
  }>;
5
7
 
}
  • Coming soon

The backend dev didn't tell you what they
changed?

We will tell you.

1
1
 
interface Root {
2

                                
-
 age: string;

                                
2
+
  age: number;
3
3
 
  name: string;
4

                                
-
 pets: Array<>;

                                
4
+
  pets: Array<{

                                
5
+
    name: string;

                                
6
+
  }>;
5
7
 
}
  • Coming soon