Skip to content

Commit ff22bf4

Browse files
committed
TASK: Updating RAML types, Postman and OAS definition
1 parent dad4790 commit ff22bf4

35 files changed

+94
-94
lines changed

oas/api/openapi.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -46184,6 +46184,10 @@ components:
4618446184
type: "boolean"
4618546185
customerGroup:
4618646186
$ref: '#/components/schemas/CustomerGroupReference'
46187+
customerGroupAssignments:
46188+
type: "array"
46189+
items:
46190+
$ref: '#/components/schemas/CustomerGroupAssignment'
4618746191
custom:
4618846192
$ref: '#/components/schemas/CustomFields'
4618946193
locale:
@@ -46196,10 +46200,6 @@ components:
4619646200
$ref: '#/components/schemas/StoreKeyReference'
4619746201
authenticationMode:
4619846202
$ref: '#/components/schemas/AuthenticationMode'
46199-
customerGroupAssignments:
46200-
type: "array"
46201-
items:
46202-
$ref: '#/components/schemas/CustomerGroupAssignment'
4620346203
CustomerChangePassword:
4620446204
type: "object"
4620546205
required:
@@ -46305,6 +46305,10 @@ components:
4630546305
type: "boolean"
4630646306
customerGroup:
4630746307
$ref: '#/components/schemas/CustomerGroupResourceIdentifier'
46308+
customerGroupAssignments:
46309+
type: "array"
46310+
items:
46311+
$ref: '#/components/schemas/CustomerGroupAssignmentDraft'
4630846312
custom:
4630946313
$ref: '#/components/schemas/CustomFieldsDraft'
4631046314
locale:
@@ -46317,10 +46321,6 @@ components:
4631746321
$ref: '#/components/schemas/StoreResourceIdentifier'
4631846322
authenticationMode:
4631946323
$ref: '#/components/schemas/AuthenticationMode'
46320-
customerGroupAssignments:
46321-
type: "array"
46322-
items:
46323-
$ref: '#/components/schemas/CustomerGroupAssignmentDraft'
4632446324
CustomerEmailTokenReference:
4632546325
allOf:
4632646326
- $ref: '#/components/schemas/Reference'

uml/api/Address.puml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,12 +165,12 @@ interface Customer [[Customer.svg]] {
165165
billingAddressIds: [[String.svg List<String>]]
166166
isEmailVerified: Boolean
167167
customerGroup: [[CustomerGroupReference.svg CustomerGroupReference]]
168+
customerGroupAssignments: [[CustomerGroupAssignment.svg List<CustomerGroupAssignment>]]
168169
custom: [[CustomFields.svg CustomFields]]
169170
locale: String
170171
salutation: String
171172
stores: [[StoreKeyReference.svg List<StoreKeyReference>]]
172173
authenticationMode: [[AuthenticationMode.svg AuthenticationMode]]
173-
customerGroupAssignments: [[CustomerGroupAssignment.svg List<CustomerGroupAssignment>]]
174174
}
175175
interface Order [[Order.svg]] {
176176
id: String

uml/api/AuthenticationMode.puml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ interface Customer [[Customer.svg]] {
3131
billingAddressIds: [[String.svg List<String>]]
3232
isEmailVerified: Boolean
3333
customerGroup: [[CustomerGroupReference.svg CustomerGroupReference]]
34+
customerGroupAssignments: [[CustomerGroupAssignment.svg List<CustomerGroupAssignment>]]
3435
custom: [[CustomFields.svg CustomFields]]
3536
locale: String
3637
salutation: String
3738
stores: [[StoreKeyReference.svg List<StoreKeyReference>]]
3839
authenticationMode: [[AuthenticationMode.svg AuthenticationMode]]
39-
customerGroupAssignments: [[CustomerGroupAssignment.svg List<CustomerGroupAssignment>]]
4040
}
4141
interface CustomerDraft [[CustomerDraft.svg]] {
4242
key: String
@@ -61,12 +61,12 @@ interface CustomerDraft [[CustomerDraft.svg]] {
6161
billingAddresses: [[Integer.svg List<Integer>]]
6262
isEmailVerified: Boolean
6363
customerGroup: [[CustomerGroupResourceIdentifier.svg CustomerGroupResourceIdentifier]]
64+
customerGroupAssignments: [[CustomerGroupAssignmentDraft.svg List<CustomerGroupAssignmentDraft>]]
6465
custom: [[CustomFieldsDraft.svg CustomFieldsDraft]]
6566
locale: String
6667
salutation: String
6768
stores: [[StoreResourceIdentifier.svg List<StoreResourceIdentifier>]]
6869
authenticationMode: [[AuthenticationMode.svg AuthenticationMode]]
69-
customerGroupAssignments: [[CustomerGroupAssignmentDraft.svg List<CustomerGroupAssignmentDraft>]]
7070
}
7171
interface CustomerSetAuthenticationModeAction [[CustomerSetAuthenticationModeAction.svg]] {
7272
action: String

uml/api/BaseAddress.puml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,12 +165,12 @@ interface CustomerDraft [[CustomerDraft.svg]] {
165165
billingAddresses: [[Integer.svg List<Integer>]]
166166
isEmailVerified: Boolean
167167
customerGroup: [[CustomerGroupResourceIdentifier.svg CustomerGroupResourceIdentifier]]
168+
customerGroupAssignments: [[CustomerGroupAssignmentDraft.svg List<CustomerGroupAssignmentDraft>]]
168169
custom: [[CustomFieldsDraft.svg CustomFieldsDraft]]
169170
locale: String
170171
salutation: String
171172
stores: [[StoreResourceIdentifier.svg List<StoreResourceIdentifier>]]
172173
authenticationMode: [[AuthenticationMode.svg AuthenticationMode]]
173-
customerGroupAssignments: [[CustomerGroupAssignmentDraft.svg List<CustomerGroupAssignmentDraft>]]
174174
}
175175
interface MyBusinessUnitDraft [[MyBusinessUnitDraft.svg]] {
176176
key: String

uml/api/BaseResource.puml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,12 +219,12 @@ interface Customer [[Customer.svg]] extends BaseResource {
219219
billingAddressIds: [[String.svg List<String>]]
220220
isEmailVerified: Boolean
221221
customerGroup: [[CustomerGroupReference.svg CustomerGroupReference]]
222+
customerGroupAssignments: [[CustomerGroupAssignment.svg List<CustomerGroupAssignment>]]
222223
custom: [[CustomFields.svg CustomFields]]
223224
locale: String
224225
salutation: String
225226
stores: [[StoreKeyReference.svg List<StoreKeyReference>]]
226227
authenticationMode: [[AuthenticationMode.svg AuthenticationMode]]
227-
customerGroupAssignments: [[CustomerGroupAssignment.svg List<CustomerGroupAssignment>]]
228228
}
229229
interface CustomerGroup [[CustomerGroup.svg]] extends BaseResource {
230230
id: String

uml/api/CartResourceIdentifier.puml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,12 @@ interface CustomerDraft [[CustomerDraft.svg]] {
4747
billingAddresses: [[Integer.svg List<Integer>]]
4848
isEmailVerified: Boolean
4949
customerGroup: [[CustomerGroupResourceIdentifier.svg CustomerGroupResourceIdentifier]]
50+
customerGroupAssignments: [[CustomerGroupAssignmentDraft.svg List<CustomerGroupAssignmentDraft>]]
5051
custom: [[CustomFieldsDraft.svg CustomFieldsDraft]]
5152
locale: String
5253
salutation: String
5354
stores: [[StoreResourceIdentifier.svg List<StoreResourceIdentifier>]]
5455
authenticationMode: [[AuthenticationMode.svg AuthenticationMode]]
55-
customerGroupAssignments: [[CustomerGroupAssignmentDraft.svg List<CustomerGroupAssignmentDraft>]]
5656
}
5757
interface CustomerSignin [[CustomerSignin.svg]] {
5858
email: String

uml/api/CreatedBy.puml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,12 +268,12 @@ interface Customer [[Customer.svg]] {
268268
billingAddressIds: [[String.svg List<String>]]
269269
isEmailVerified: Boolean
270270
customerGroup: [[CustomerGroupReference.svg CustomerGroupReference]]
271+
customerGroupAssignments: [[CustomerGroupAssignment.svg List<CustomerGroupAssignment>]]
271272
custom: [[CustomFields.svg CustomFields]]
272273
locale: String
273274
salutation: String
274275
stores: [[StoreKeyReference.svg List<StoreKeyReference>]]
275276
authenticationMode: [[AuthenticationMode.svg AuthenticationMode]]
276-
customerGroupAssignments: [[CustomerGroupAssignment.svg List<CustomerGroupAssignment>]]
277277
}
278278
interface DiscountCode [[DiscountCode.svg]] {
279279
id: String

uml/api/CustomFields.puml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -386,12 +386,12 @@ interface Customer [[Customer.svg]] {
386386
billingAddressIds: [[String.svg List<String>]]
387387
isEmailVerified: Boolean
388388
customerGroup: [[CustomerGroupReference.svg CustomerGroupReference]]
389+
customerGroupAssignments: [[CustomerGroupAssignment.svg List<CustomerGroupAssignment>]]
389390
custom: [[CustomFields.svg CustomFields]]
390391
locale: String
391392
salutation: String
392393
stores: [[StoreKeyReference.svg List<StoreKeyReference>]]
393394
authenticationMode: [[AuthenticationMode.svg AuthenticationMode]]
394-
customerGroupAssignments: [[CustomerGroupAssignment.svg List<CustomerGroupAssignment>]]
395395
}
396396
interface DiscountCode [[DiscountCode.svg]] {
397397
id: String

uml/api/CustomFieldsDraft.puml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,12 +314,12 @@ interface CustomerDraft [[CustomerDraft.svg]] {
314314
billingAddresses: [[Integer.svg List<Integer>]]
315315
isEmailVerified: Boolean
316316
customerGroup: [[CustomerGroupResourceIdentifier.svg CustomerGroupResourceIdentifier]]
317+
customerGroupAssignments: [[CustomerGroupAssignmentDraft.svg List<CustomerGroupAssignmentDraft>]]
317318
custom: [[CustomFieldsDraft.svg CustomFieldsDraft]]
318319
locale: String
319320
salutation: String
320321
stores: [[StoreResourceIdentifier.svg List<StoreResourceIdentifier>]]
321322
authenticationMode: [[AuthenticationMode.svg AuthenticationMode]]
322-
customerGroupAssignments: [[CustomerGroupAssignmentDraft.svg List<CustomerGroupAssignmentDraft>]]
323323
}
324324
interface DiscountCodeDraft [[DiscountCodeDraft.svg]] {
325325
key: String

uml/api/Customer.puml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ interface Customer [[Customer.svg]] extends BaseResource {
3434
billingAddressIds: [[String.svg List<String>]]
3535
isEmailVerified: Boolean
3636
customerGroup: [[CustomerGroupReference.svg CustomerGroupReference]]
37+
customerGroupAssignments: [[CustomerGroupAssignment.svg List<CustomerGroupAssignment>]]
3738
custom: [[CustomFields.svg CustomFields]]
3839
locale: String
3940
salutation: String
4041
stores: [[StoreKeyReference.svg List<StoreKeyReference>]]
4142
authenticationMode: [[AuthenticationMode.svg AuthenticationMode]]
42-
customerGroupAssignments: [[CustomerGroupAssignment.svg List<CustomerGroupAssignment>]]
4343
}
4444
interface BaseResource [[BaseResource.svg]] {
4545
id: String

0 commit comments

Comments
 (0)