/errors/conversion_adjustment_upload_error.proto

--- v14/errors/conversion_adjustment_upload_error.proto 2023-10-19 02:11:01.000000000 +0000
+++ v15/errors/conversion_adjustment_upload_error.proto 2023-10-19 02:11:05.000000000 +0000
@@ -41,9 +41,6 @@
     // importing again in 6 hours.
     TOO_RECENT_CONVERSION_ACTION = 2;

-    // Make sure you specify an active conversion action that can be adjusted.
-    INVALID_CONVERSION_ACTION = 3;
-
     // The conversion was already retracted. This adjustment was not processed.
     CONVERSION_ALREADY_RETRACTED = 4;

@@ -131,5 +128,21 @@
     // Can't use adjustment with Order IDs containing personally-identifiable
     // information (PII).
     ORDER_ID_CONTAINS_PII = 25;
+
+    // The provided job id in the request is not within the allowed range. A job
+    // ID must be a positive integer in the range [1, 2^31).
+    INVALID_JOB_ID = 26;
+
+    // The conversion action specified in the adjustment request cannot be
+    // found. Make sure it's available in this account.
+    NO_CONVERSION_ACTION_FOUND = 27;
+
+    // The type of the conversion action specified in the adjustment request
+    // isn't supported for uploading adjustments. A conversion adjustment of
+    // type `RETRACTION` or `RESTATEMENT` is only permitted for conversion
+    // actions of type `SALESFORCE`, `UPLOAD` or `WEBPAGE`. A conversion
+    // adjustment of type `ENHANCEMENT` is only permitted for conversion
+    // actions of type `WEBPAGE`.
+    INVALID_CONVERSION_ACTION_TYPE = 28;
   }
 }