Skip to content
Merged
Show file tree
Hide file tree
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
17 changes: 17 additions & 0 deletions .changeset/changes_import.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
'@commercetools/importapi-sdk': minor
---

**Import changes**

<details>
<summary>Added Enum(s)</summary>

- added enum `partiallyImported` to type `ProcessingState`
</details>

<details>
<summary>Added Property(s)</summary>

- added property `partiallyImported` to type `OperationStates`
</details>
14 changes: 14 additions & 0 deletions changes.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
**Import changes**

<details>
<summary>Added Enum(s)</summary>

- added enum `partiallyImported` to type `ProcessingState`
</details>

<details>
<summary>Added Property(s)</summary>

- added property `partiallyImported` to type `OperationStates`
</details>

**Checkout changes**

<details>
Expand Down
2 changes: 2 additions & 0 deletions packages/importapi-sdk/src/generated/models/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -713,6 +713,7 @@ export type ReferenceType =
export enum ProcessingStateValues {
Canceled = 'canceled',
Imported = 'imported',
PartiallyImported = 'partiallyImported',
Processing = 'processing',
Rejected = 'rejected',
Unresolved = 'unresolved',
Expand All @@ -723,6 +724,7 @@ export enum ProcessingStateValues {
export type ProcessingState =
| 'canceled'
| 'imported'
| 'partiallyImported'
| 'processing'
| 'rejected'
| 'unresolved'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,9 @@ export interface OperationStates {
*
*/
readonly canceled: number
/**
* The number of ImportOperations in the `partiallyImported` state.
*
*/
readonly partiallyImported: number
}
1 change: 1 addition & 0 deletions references.txt
Original file line number Diff line number Diff line change
Expand Up @@ -522,3 +522,4 @@ d71139f421f6ec0343438bef335b6826feaa86e7
1c132d4f4baa5b0c2972dfa0340a2ed5d5e781e8
f2c34069b067b892f11f451fccc4b0b7886874c6
9c2df52905e1196479f72e6f31d9d5b2688acc5b
d6881e9b71486cb67db3ba779f13d2f5142ef525
Loading