Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions codegen/Crm/Imports/Api/CoreApi.php
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ public function cancelWithHttpInfo($import_id, string $contentType = self::conte
);
}



if ($statusCode < 200 || $statusCode > 299) {
throw new ApiException(
Expand Down Expand Up @@ -245,7 +245,7 @@ public function cancelWithHttpInfo($import_id, string $contentType = self::conte
$e->setResponseObject($data);
throw $e;
}


throw $e;
}
Expand Down Expand Up @@ -494,7 +494,7 @@ public function createWithHttpInfo($files = null, $import_request = null, string
);
}



if ($statusCode < 200 || $statusCode > 299) {
throw new ApiException(
Expand Down Expand Up @@ -533,7 +533,7 @@ public function createWithHttpInfo($files = null, $import_request = null, string
$e->setResponseObject($data);
throw $e;
}


throw $e;
}
Expand Down Expand Up @@ -645,7 +645,7 @@ public function createRequest($files = null, $import_request = null, string $con

$formData = $formDataProcessor->prepare([
'files' => $files,
'import_request' => $import_request,
'importRequest' => $import_request,
]);

$formParams = $formDataProcessor->flatten($formData);
Expand Down Expand Up @@ -781,7 +781,7 @@ public function getByIdWithHttpInfo($import_id, string $contentType = self::cont
);
}



if ($statusCode < 200 || $statusCode > 299) {
throw new ApiException(
Expand Down Expand Up @@ -820,7 +820,7 @@ public function getByIdWithHttpInfo($import_id, string $contentType = self::cont
$e->setResponseObject($data);
throw $e;
}


throw $e;
}
Expand Down Expand Up @@ -1071,7 +1071,7 @@ public function getPageWithHttpInfo($after = null, $before = null, $limit = null
);
}



if ($statusCode < 200 || $statusCode > 299) {
throw new ApiException(
Expand Down Expand Up @@ -1110,7 +1110,7 @@ public function getPageWithHttpInfo($after = null, $before = null, $limit = null
$e->setResponseObject($data);
throw $e;
}


throw $e;
}
Expand Down
Loading