Skip to content

Commit ac43d9a

Browse files
authored
build(codegen): updating SDK (#1245)
Co-authored-by: ct-sdks[bot] <153784748+ct-sdks[bot]@users.noreply.github.com>
1 parent b950a0a commit ac43d9a

File tree

5 files changed

+39
-0
lines changed

5 files changed

+39
-0
lines changed

.changeset/changes_import.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
'@commercetools/importapi-sdk': minor
3+
---
4+
5+
**Import changes**
6+
7+
<details>
8+
<summary>Added Enum(s)</summary>
9+
10+
- added enum `partiallyImported` to type `ProcessingState`
11+
</details>
12+
13+
<details>
14+
<summary>Added Property(s)</summary>
15+
16+
- added property `partiallyImported` to type `OperationStates`
17+
</details>

changes.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
**Import changes**
2+
3+
<details>
4+
<summary>Added Enum(s)</summary>
5+
6+
- added enum `partiallyImported` to type `ProcessingState`
7+
</details>
8+
9+
<details>
10+
<summary>Added Property(s)</summary>
11+
12+
- added property `partiallyImported` to type `OperationStates`
13+
</details>
14+
115
**Checkout changes**
216

317
<details>

packages/importapi-sdk/src/generated/models/common.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -713,6 +713,7 @@ export type ReferenceType =
713713
export enum ProcessingStateValues {
714714
Canceled = 'canceled',
715715
Imported = 'imported',
716+
PartiallyImported = 'partiallyImported',
716717
Processing = 'processing',
717718
Rejected = 'rejected',
718719
Unresolved = 'unresolved',
@@ -723,6 +724,7 @@ export enum ProcessingStateValues {
723724
export type ProcessingState =
724725
| 'canceled'
725726
| 'imported'
727+
| 'partiallyImported'
726728
| 'processing'
727729
| 'rejected'
728730
| 'unresolved'

packages/importapi-sdk/src/generated/models/importsummaries.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,9 @@ export interface OperationStates {
6060
*
6161
*/
6262
readonly canceled: number
63+
/**
64+
* The number of ImportOperations in the `partiallyImported` state.
65+
*
66+
*/
67+
readonly partiallyImported: number
6368
}

references.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -522,3 +522,4 @@ d71139f421f6ec0343438bef335b6826feaa86e7
522522
1c132d4f4baa5b0c2972dfa0340a2ed5d5e781e8
523523
f2c34069b067b892f11f451fccc4b0b7886874c6
524524
9c2df52905e1196479f72e6f31d9d5b2688acc5b
525+
d6881e9b71486cb67db3ba779f13d2f5142ef525

0 commit comments

Comments
 (0)