Expo BuildProperties extra pods not adding pod

Am I misunderstanding what this build property is supposed to do? I’ve included my plugins portion of my app.json below. I added the pod I want to the extraPods portion, but it isn’t being added to my pod file. I got around this by manually putting it in there. My understanding though is if I want to blow away my ios dir and do a rebuild I will have to do that each time. Can anyone advise if I have a format wrong or if I am misunderstanding what that prop is supposed to be doing?

    "plugins": [
      "@morrowdigital/watermelondb-expo-plugin",
      [
        "expo-build-properties",
        {
          "android": {
            "kotlinVersion": "1.6.10"
          },
          "ios": {
            "extraPods": [{"name": "TensorFlowLiteSwift"}]
          }
        }
      ],
      [
        "expo-media-library",
        {
          "photosPermission": "Allow to access your photos.",
          "savePhotosPermission": "Allow to save photos.",
          "isAccessMediaLocationEnabled": true
        }
      ]
    ],