@salesforce/lds-adapters-industries-cpq 0.131.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.txt +82 -0
- package/dist/es/es2018/industries-cpq.js +1062 -0
- package/dist/es/es2018/types/src/generated/adapters/SearchProductsList.d.ts +15 -0
- package/dist/es/es2018/types/src/generated/adapters/adapter-utils.d.ts +66 -0
- package/dist/es/es2018/types/src/generated/adapters/preview.d.ts +15 -0
- package/dist/es/es2018/types/src/generated/adapters/productDetails.d.ts +16 -0
- package/dist/es/es2018/types/src/generated/adapters/productList.d.ts +15 -0
- package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +4 -0
- package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +5 -0
- package/dist/es/es2018/types/src/generated/resources/postConnectCpqPreview.d.ts +13 -0
- package/dist/es/es2018/types/src/generated/resources/postConnectCpqProducts.d.ts +13 -0
- package/dist/es/es2018/types/src/generated/resources/postConnectCpqProductsByProductId.d.ts +16 -0
- package/dist/es/es2018/types/src/generated/resources/postConnectCpqProductsSearch.d.ts +13 -0
- package/dist/es/es2018/types/src/generated/types/AdditionalFieldsOutputRepresentation.d.ts +35 -0
- package/dist/es/es2018/types/src/generated/types/ApiStatusOutputRepresentation.d.ts +39 -0
- package/dist/es/es2018/types/src/generated/types/AttributeCategoryOutputRepresentation.d.ts +48 -0
- package/dist/es/es2018/types/src/generated/types/AttributePickListOutputRepresentation.d.ts +45 -0
- package/dist/es/es2018/types/src/generated/types/AttributePickListValueOutputRepresentation.d.ts +56 -0
- package/dist/es/es2018/types/src/generated/types/CpqBaseDetailsOutputRepresentation.d.ts +43 -0
- package/dist/es/es2018/types/src/generated/types/CpqBaseListOutputRepresentation.d.ts +55 -0
- package/dist/es/es2018/types/src/generated/types/CpqMessageOutputRepresentation.d.ts +38 -0
- package/dist/es/es2018/types/src/generated/types/PreviewInputRepresentation.d.ts +45 -0
- package/dist/es/es2018/types/src/generated/types/PreviewInputRepresentationWrapper.d.ts +30 -0
- package/dist/es/es2018/types/src/generated/types/PricingModelOutputRepresentation.d.ts +44 -0
- package/dist/es/es2018/types/src/generated/types/ProductAttributeOutputRepresentation.d.ts +69 -0
- package/dist/es/es2018/types/src/generated/types/ProductConfigurationInputRepresentation.d.ts +32 -0
- package/dist/es/es2018/types/src/generated/types/ProductDeltaConfigurationInputRepresentation.d.ts +36 -0
- package/dist/es/es2018/types/src/generated/types/ProductDetailsInputRepresentation.d.ts +38 -0
- package/dist/es/es2018/types/src/generated/types/ProductDetailsInputRepresentationWrapper.d.ts +30 -0
- package/dist/es/es2018/types/src/generated/types/ProductDetailsOutputRepresentation.d.ts +75 -0
- package/dist/es/es2018/types/src/generated/types/ProductListInputRepresentation.d.ts +47 -0
- package/dist/es/es2018/types/src/generated/types/ProductListInputRepresentationWrapper.d.ts +30 -0
- package/dist/es/es2018/types/src/generated/types/ProductListOutputRepresentation.d.ts +65 -0
- package/dist/es/es2018/types/src/generated/types/ProductOutputRepresentation.d.ts +58 -0
- package/dist/es/es2018/types/src/generated/types/ProductPricesOutputRepresentation.d.ts +48 -0
- package/dist/es/es2018/types/src/generated/types/ProductQuantityOutputRepresentation.d.ts +35 -0
- package/dist/es/es2018/types/src/generated/types/SearchOffersInputRepresentation.d.ts +53 -0
- package/dist/es/es2018/types/src/generated/types/SearchOffersInputRepresentationWrapper.d.ts +30 -0
- package/dist/es/es2018/types/src/generated/types/SearchOffersOutputRepresentation.d.ts +63 -0
- package/dist/es/es2018/types/src/generated/types/type-utils.d.ts +39 -0
- package/package.json +67 -0
- package/sfdc/index.d.ts +1 -0
- package/sfdc/index.js +1098 -0
- package/src/raml/api.raml +850 -0
- package/src/raml/luvio.raml +37 -0
|
@@ -0,0 +1,850 @@
|
|
|
1
|
+
#%RAML 1.0
|
|
2
|
+
securedBy:
|
|
3
|
+
- OAuth2
|
|
4
|
+
title: Salesforce Connect API
|
|
5
|
+
version: '58.0'
|
|
6
|
+
mediaType: application/json
|
|
7
|
+
protocols:
|
|
8
|
+
- https
|
|
9
|
+
baseUri: /services/data/v58.0
|
|
10
|
+
securitySchemes:
|
|
11
|
+
OAuth2:
|
|
12
|
+
type: OAuth 2.0
|
|
13
|
+
settings:
|
|
14
|
+
authorizationUri: https://example.com/oauth/authorize
|
|
15
|
+
accessTokenUri: ''
|
|
16
|
+
authorizationGrants:
|
|
17
|
+
- implicit
|
|
18
|
+
annotationTypes:
|
|
19
|
+
oas-readOnly:
|
|
20
|
+
type: boolean
|
|
21
|
+
allowedTargets: TypeDeclaration
|
|
22
|
+
oas-collectionFormat:
|
|
23
|
+
type: string
|
|
24
|
+
oas-body-name:
|
|
25
|
+
type: string
|
|
26
|
+
allowedTargets: TypeDeclaration
|
|
27
|
+
types:
|
|
28
|
+
AdditionalFieldsOutputRepresentation:
|
|
29
|
+
description: Output representation for custom fields
|
|
30
|
+
type: object
|
|
31
|
+
properties:
|
|
32
|
+
fieldApiName:
|
|
33
|
+
description: Api name of the custom field
|
|
34
|
+
type: string
|
|
35
|
+
required: false
|
|
36
|
+
fieldName:
|
|
37
|
+
description: Name of the custom field
|
|
38
|
+
type: string
|
|
39
|
+
required: false
|
|
40
|
+
value:
|
|
41
|
+
description: Value of the custom field
|
|
42
|
+
type: string
|
|
43
|
+
required: false
|
|
44
|
+
ApiStatusOutputRepresentation:
|
|
45
|
+
description: API Status Output Representation
|
|
46
|
+
type: object
|
|
47
|
+
properties:
|
|
48
|
+
httpStatusCode:
|
|
49
|
+
description: HTTP Status Code for API
|
|
50
|
+
type: string
|
|
51
|
+
required: false
|
|
52
|
+
messages:
|
|
53
|
+
description: API status messages
|
|
54
|
+
type: array
|
|
55
|
+
required: false
|
|
56
|
+
items:
|
|
57
|
+
type: CpqMessageOutputRepresentation
|
|
58
|
+
statusCode:
|
|
59
|
+
description: Status Code
|
|
60
|
+
type: string
|
|
61
|
+
statusMessage:
|
|
62
|
+
description: Status Message - Display label for API status
|
|
63
|
+
type: string
|
|
64
|
+
required: false
|
|
65
|
+
AttributeCategoryOutputRepresentation:
|
|
66
|
+
description: Output Representation for AttributeCategory
|
|
67
|
+
type: object
|
|
68
|
+
properties:
|
|
69
|
+
code:
|
|
70
|
+
description: Code of the attribute category
|
|
71
|
+
type: string
|
|
72
|
+
required: false
|
|
73
|
+
description:
|
|
74
|
+
description: Description of the attribute category
|
|
75
|
+
type: string
|
|
76
|
+
required: false
|
|
77
|
+
name:
|
|
78
|
+
description: Name of the attribute category
|
|
79
|
+
type: string
|
|
80
|
+
required: false
|
|
81
|
+
records:
|
|
82
|
+
description: Attributes in this category
|
|
83
|
+
type: array
|
|
84
|
+
required: false
|
|
85
|
+
items:
|
|
86
|
+
type: ProductAttributeOutputRepresentation
|
|
87
|
+
status:
|
|
88
|
+
description: Status of the attribute category
|
|
89
|
+
type: string
|
|
90
|
+
required: false
|
|
91
|
+
totalSize:
|
|
92
|
+
description: Total Size of attributes in this category
|
|
93
|
+
type: integer
|
|
94
|
+
required: false
|
|
95
|
+
usageType:
|
|
96
|
+
description: Usage Type of the attribute category
|
|
97
|
+
type: string
|
|
98
|
+
required: false
|
|
99
|
+
AttributePickListOutputRepresentation:
|
|
100
|
+
description: Attribute picklist output representation
|
|
101
|
+
type: object
|
|
102
|
+
properties:
|
|
103
|
+
code:
|
|
104
|
+
description: Code of attribute picklist
|
|
105
|
+
type: string
|
|
106
|
+
required: false
|
|
107
|
+
description:
|
|
108
|
+
description: Description of attribute picklist
|
|
109
|
+
type: string
|
|
110
|
+
required: false
|
|
111
|
+
id:
|
|
112
|
+
description: Id of attribute picklist
|
|
113
|
+
type: string
|
|
114
|
+
required: false
|
|
115
|
+
name:
|
|
116
|
+
description: Name of attribute picklist
|
|
117
|
+
type: string
|
|
118
|
+
required: false
|
|
119
|
+
status:
|
|
120
|
+
description: Status of attribute picklist - Active/InActive
|
|
121
|
+
type: string
|
|
122
|
+
required: false
|
|
123
|
+
values:
|
|
124
|
+
description: List of values of attribute picklist
|
|
125
|
+
type: array
|
|
126
|
+
required: false
|
|
127
|
+
items:
|
|
128
|
+
type: AttributePickListValueOutputRepresentation
|
|
129
|
+
AttributePickListValueOutputRepresentation:
|
|
130
|
+
description: Attribute picklist value output representation
|
|
131
|
+
type: object
|
|
132
|
+
properties:
|
|
133
|
+
code:
|
|
134
|
+
description: Code of attribute picklist value
|
|
135
|
+
type: string
|
|
136
|
+
required: false
|
|
137
|
+
description:
|
|
138
|
+
description: Description of attribute picklist value
|
|
139
|
+
type: string
|
|
140
|
+
required: false
|
|
141
|
+
displayValue:
|
|
142
|
+
description: Display value of attribute picklist value
|
|
143
|
+
type: string
|
|
144
|
+
required: false
|
|
145
|
+
id:
|
|
146
|
+
description: Id of attribute picklist value
|
|
147
|
+
type: string
|
|
148
|
+
required: false
|
|
149
|
+
isBooleanValue:
|
|
150
|
+
description: Is the attribute picklist value a boolean
|
|
151
|
+
type: boolean
|
|
152
|
+
required: false
|
|
153
|
+
label:
|
|
154
|
+
description: Label of attribute picklist value
|
|
155
|
+
type: string
|
|
156
|
+
required: false
|
|
157
|
+
name:
|
|
158
|
+
description: Name of attribute picklist value
|
|
159
|
+
type: string
|
|
160
|
+
required: false
|
|
161
|
+
sequence:
|
|
162
|
+
description: Sequence of attribute picklist value
|
|
163
|
+
type: integer
|
|
164
|
+
required: false
|
|
165
|
+
status:
|
|
166
|
+
description: Status of attribute picklist value - Active/InActive
|
|
167
|
+
type: string
|
|
168
|
+
required: false
|
|
169
|
+
textValue:
|
|
170
|
+
description: Text value of the attribute picklist value
|
|
171
|
+
type: string
|
|
172
|
+
required: false
|
|
173
|
+
CpqBaseDetailsOutputRepresentation:
|
|
174
|
+
description: Base representation for details apis
|
|
175
|
+
type: object
|
|
176
|
+
properties:
|
|
177
|
+
apiStatus:
|
|
178
|
+
description: Api Status Object
|
|
179
|
+
type: ApiStatusOutputRepresentation
|
|
180
|
+
result:
|
|
181
|
+
description: Result object
|
|
182
|
+
type: object
|
|
183
|
+
CpqBaseListOutputRepresentation:
|
|
184
|
+
description: Base representation for list apis
|
|
185
|
+
type: object
|
|
186
|
+
properties:
|
|
187
|
+
apiStatus:
|
|
188
|
+
description: Api Status Object
|
|
189
|
+
type: ApiStatusOutputRepresentation
|
|
190
|
+
limit:
|
|
191
|
+
description: Limit
|
|
192
|
+
type: integer
|
|
193
|
+
required: false
|
|
194
|
+
offSet:
|
|
195
|
+
description: Offset
|
|
196
|
+
type: integer
|
|
197
|
+
required: false
|
|
198
|
+
query:
|
|
199
|
+
description: Input Query Object
|
|
200
|
+
type: any
|
|
201
|
+
required: false
|
|
202
|
+
result:
|
|
203
|
+
description: Result object
|
|
204
|
+
type: array
|
|
205
|
+
items:
|
|
206
|
+
type: object
|
|
207
|
+
total:
|
|
208
|
+
description: Totals
|
|
209
|
+
type: integer
|
|
210
|
+
required: false
|
|
211
|
+
CpqMessageOutputRepresentation:
|
|
212
|
+
description: Output representation for apis message
|
|
213
|
+
type: object
|
|
214
|
+
properties:
|
|
215
|
+
code:
|
|
216
|
+
description: Code specifying the type/cause of message
|
|
217
|
+
type: string
|
|
218
|
+
required: false
|
|
219
|
+
detail:
|
|
220
|
+
description: Message detail contains any info needed other than message text
|
|
221
|
+
type: string
|
|
222
|
+
required: false
|
|
223
|
+
message:
|
|
224
|
+
description: Message text
|
|
225
|
+
type: string
|
|
226
|
+
required: false
|
|
227
|
+
severity:
|
|
228
|
+
description: Message Severity
|
|
229
|
+
type: string
|
|
230
|
+
required: false
|
|
231
|
+
PreviewInputRepresentation:
|
|
232
|
+
description: Input Representation for Preview Product or cart item.
|
|
233
|
+
type: object
|
|
234
|
+
properties:
|
|
235
|
+
cartId:
|
|
236
|
+
description: Id of the Cart to which ths conigured items belongs to.
|
|
237
|
+
type: string
|
|
238
|
+
required: false
|
|
239
|
+
configuredItems:
|
|
240
|
+
description: Items to be configure and update to the cart.
|
|
241
|
+
type: array
|
|
242
|
+
required: false
|
|
243
|
+
items:
|
|
244
|
+
type: object
|
|
245
|
+
correlationId:
|
|
246
|
+
description: CorrelationId
|
|
247
|
+
type: string
|
|
248
|
+
required: false
|
|
249
|
+
customFields:
|
|
250
|
+
description: Key value pair of custom fields.
|
|
251
|
+
type: object
|
|
252
|
+
required: false
|
|
253
|
+
properties:
|
|
254
|
+
//:
|
|
255
|
+
type: string
|
|
256
|
+
userContext:
|
|
257
|
+
description: User context in which cart would be created.
|
|
258
|
+
type: object
|
|
259
|
+
required: false
|
|
260
|
+
PricingModelOutputRepresentation:
|
|
261
|
+
description: Pricing Model representation
|
|
262
|
+
type: object
|
|
263
|
+
properties:
|
|
264
|
+
frequency:
|
|
265
|
+
description: Frequency of Recurrence
|
|
266
|
+
type: string
|
|
267
|
+
required: false
|
|
268
|
+
id:
|
|
269
|
+
description: Price Model Id
|
|
270
|
+
type: string
|
|
271
|
+
required: false
|
|
272
|
+
name:
|
|
273
|
+
description: Name of Pricing Model
|
|
274
|
+
type: string
|
|
275
|
+
required: false
|
|
276
|
+
occurrence:
|
|
277
|
+
description: Number of occurrences
|
|
278
|
+
type: integer
|
|
279
|
+
required: false
|
|
280
|
+
pricingModelType:
|
|
281
|
+
description: Type of Pricing Model
|
|
282
|
+
type: string
|
|
283
|
+
required: false
|
|
284
|
+
unitOfMeasure:
|
|
285
|
+
description: Unit of Measure
|
|
286
|
+
type: string
|
|
287
|
+
required: false
|
|
288
|
+
ProductAttributeOutputRepresentation:
|
|
289
|
+
description: Product Attributes output representation
|
|
290
|
+
type: object
|
|
291
|
+
properties:
|
|
292
|
+
attributeCategoryId:
|
|
293
|
+
description: Attribute Category Id
|
|
294
|
+
type: string
|
|
295
|
+
required: false
|
|
296
|
+
attributePickList:
|
|
297
|
+
description: Attribute picklist in product attribute
|
|
298
|
+
type: AttributePickListOutputRepresentation
|
|
299
|
+
required: false
|
|
300
|
+
code:
|
|
301
|
+
description: Code of the attribute
|
|
302
|
+
type: string
|
|
303
|
+
required: false
|
|
304
|
+
dataType:
|
|
305
|
+
description: DataType of product attribute
|
|
306
|
+
type: string
|
|
307
|
+
required: false
|
|
308
|
+
defaultHelpText:
|
|
309
|
+
description: Help text of the attribute
|
|
310
|
+
type: string
|
|
311
|
+
required: false
|
|
312
|
+
defaultValue:
|
|
313
|
+
description: Default of the attribute
|
|
314
|
+
type: string
|
|
315
|
+
required: false
|
|
316
|
+
description:
|
|
317
|
+
description: description of product attribute
|
|
318
|
+
type: string
|
|
319
|
+
required: false
|
|
320
|
+
hidden:
|
|
321
|
+
description: Is true if attribute is hidden
|
|
322
|
+
type: boolean
|
|
323
|
+
required: false
|
|
324
|
+
id:
|
|
325
|
+
description: Id of product attribute
|
|
326
|
+
type: string
|
|
327
|
+
required: false
|
|
328
|
+
isPriceImpacting:
|
|
329
|
+
description: Is Price Impacting field in attribute
|
|
330
|
+
type: boolean
|
|
331
|
+
required: false
|
|
332
|
+
label:
|
|
333
|
+
description: Label of the attribute
|
|
334
|
+
type: string
|
|
335
|
+
required: false
|
|
336
|
+
name:
|
|
337
|
+
description: name of product attribute
|
|
338
|
+
type: string
|
|
339
|
+
required: false
|
|
340
|
+
status:
|
|
341
|
+
description: Status of product attribute - Active/InActive
|
|
342
|
+
type: string
|
|
343
|
+
required: false
|
|
344
|
+
userValue:
|
|
345
|
+
description: user value of the product attribute
|
|
346
|
+
type: string
|
|
347
|
+
required: false
|
|
348
|
+
ProductConfigurationInputRepresentation:
|
|
349
|
+
description: Input Representation for Product Configuration.
|
|
350
|
+
type: object
|
|
351
|
+
properties:
|
|
352
|
+
configuration:
|
|
353
|
+
description: Product delta configurations
|
|
354
|
+
type: object
|
|
355
|
+
required: false
|
|
356
|
+
productId:
|
|
357
|
+
description: Product Id
|
|
358
|
+
type: string
|
|
359
|
+
required: false
|
|
360
|
+
ProductDeltaConfigurationInputRepresentation:
|
|
361
|
+
description: Input Representation for Product Delta Configuration.
|
|
362
|
+
type: object
|
|
363
|
+
properties:
|
|
364
|
+
attributes:
|
|
365
|
+
description: Product attribute configuration
|
|
366
|
+
type: object
|
|
367
|
+
required: false
|
|
368
|
+
properties:
|
|
369
|
+
//:
|
|
370
|
+
type: object
|
|
371
|
+
quantity:
|
|
372
|
+
description: Product quantity
|
|
373
|
+
format: double
|
|
374
|
+
type: number
|
|
375
|
+
required: false
|
|
376
|
+
ProductDetailsInputRepresentation:
|
|
377
|
+
description: Input Representation for Product Details.
|
|
378
|
+
type: object
|
|
379
|
+
properties:
|
|
380
|
+
additionalFields:
|
|
381
|
+
description: Key value pair of additional fields
|
|
382
|
+
type: array
|
|
383
|
+
required: false
|
|
384
|
+
items:
|
|
385
|
+
type: string
|
|
386
|
+
catalogId:
|
|
387
|
+
description: Id of the catalog.
|
|
388
|
+
type: string
|
|
389
|
+
correlationId:
|
|
390
|
+
description: CorrelationId
|
|
391
|
+
type: string
|
|
392
|
+
required: false
|
|
393
|
+
userContext:
|
|
394
|
+
description: User context
|
|
395
|
+
type: object
|
|
396
|
+
required: false
|
|
397
|
+
ProductDetailsOutputRepresentation:
|
|
398
|
+
description: Product details output representation
|
|
399
|
+
type: object
|
|
400
|
+
properties:
|
|
401
|
+
attributes:
|
|
402
|
+
description: List of attributes in the product
|
|
403
|
+
type: array
|
|
404
|
+
required: false
|
|
405
|
+
items:
|
|
406
|
+
type: ProductAttributeOutputRepresentation
|
|
407
|
+
childProducts:
|
|
408
|
+
description: List of Child products
|
|
409
|
+
type: array
|
|
410
|
+
required: false
|
|
411
|
+
items:
|
|
412
|
+
type: ProductDetailsOutputRepresentation
|
|
413
|
+
displayName:
|
|
414
|
+
description: DisplayName of the product
|
|
415
|
+
type: string
|
|
416
|
+
required: false
|
|
417
|
+
prices:
|
|
418
|
+
description: List of prices of the product
|
|
419
|
+
type: array
|
|
420
|
+
required: false
|
|
421
|
+
items:
|
|
422
|
+
type: ProductPricesOutputRepresentation
|
|
423
|
+
quantity:
|
|
424
|
+
description: quantity of the product
|
|
425
|
+
type: string
|
|
426
|
+
required: false
|
|
427
|
+
additionalFields:
|
|
428
|
+
description: List of additional fields
|
|
429
|
+
type: array
|
|
430
|
+
required: false
|
|
431
|
+
items:
|
|
432
|
+
type: AdditionalFieldsOutputRepresentation
|
|
433
|
+
attributeCategories:
|
|
434
|
+
description: List of attribute categories in a product
|
|
435
|
+
type: array
|
|
436
|
+
required: false
|
|
437
|
+
items:
|
|
438
|
+
type: AttributeCategoryOutputRepresentation
|
|
439
|
+
description:
|
|
440
|
+
description: Description of the product
|
|
441
|
+
type: string
|
|
442
|
+
required: false
|
|
443
|
+
id:
|
|
444
|
+
description: Id of the product
|
|
445
|
+
type: string
|
|
446
|
+
required: false
|
|
447
|
+
isComponentRequired:
|
|
448
|
+
description: Is Component required of a product
|
|
449
|
+
type: boolean
|
|
450
|
+
required: false
|
|
451
|
+
isDefaultComponent:
|
|
452
|
+
description: Is the product a Default Component
|
|
453
|
+
type: boolean
|
|
454
|
+
required: false
|
|
455
|
+
isQuantityEditable:
|
|
456
|
+
description: Is Quantity of product editable
|
|
457
|
+
type: boolean
|
|
458
|
+
required: false
|
|
459
|
+
name:
|
|
460
|
+
description: Name of the product
|
|
461
|
+
type: string
|
|
462
|
+
required: false
|
|
463
|
+
productQuantity:
|
|
464
|
+
description: Quantity information of a product
|
|
465
|
+
type: ProductQuantityOutputRepresentation
|
|
466
|
+
required: false
|
|
467
|
+
status:
|
|
468
|
+
description: Status of the product
|
|
469
|
+
type: string
|
|
470
|
+
required: false
|
|
471
|
+
ProductListInputRepresentation:
|
|
472
|
+
description: Input Representation for Product List.
|
|
473
|
+
type: object
|
|
474
|
+
properties:
|
|
475
|
+
catalogId:
|
|
476
|
+
description: Id of the catalog.
|
|
477
|
+
type: string
|
|
478
|
+
categoryId:
|
|
479
|
+
description: Id of the catalog.
|
|
480
|
+
type: string
|
|
481
|
+
required: false
|
|
482
|
+
correlationId:
|
|
483
|
+
description: CorrelationId
|
|
484
|
+
type: string
|
|
485
|
+
required: false
|
|
486
|
+
limit:
|
|
487
|
+
description: Number of item count you want in the response
|
|
488
|
+
type: integer
|
|
489
|
+
required: false
|
|
490
|
+
offset:
|
|
491
|
+
description: Offset size from which you need the catalog count
|
|
492
|
+
type: integer
|
|
493
|
+
required: false
|
|
494
|
+
orderBy:
|
|
495
|
+
description: Sort by ascending/descending order
|
|
496
|
+
type: array
|
|
497
|
+
required: false
|
|
498
|
+
items:
|
|
499
|
+
type: string
|
|
500
|
+
userContext:
|
|
501
|
+
description: User context
|
|
502
|
+
type: object
|
|
503
|
+
required: false
|
|
504
|
+
ProductListOutputRepresentation:
|
|
505
|
+
description: Product list output representation
|
|
506
|
+
type: object
|
|
507
|
+
properties:
|
|
508
|
+
childProducts:
|
|
509
|
+
description: List of Child Products
|
|
510
|
+
type: array
|
|
511
|
+
required: false
|
|
512
|
+
items:
|
|
513
|
+
type: ProductListOutputRepresentation
|
|
514
|
+
prices:
|
|
515
|
+
description: List of prices of the product
|
|
516
|
+
type: array
|
|
517
|
+
required: false
|
|
518
|
+
items:
|
|
519
|
+
type: ProductPricesOutputRepresentation
|
|
520
|
+
additionalFields:
|
|
521
|
+
description: List of additional fields
|
|
522
|
+
type: array
|
|
523
|
+
required: false
|
|
524
|
+
items:
|
|
525
|
+
type: AdditionalFieldsOutputRepresentation
|
|
526
|
+
attributeCategories:
|
|
527
|
+
description: List of attribute categories in a product
|
|
528
|
+
type: array
|
|
529
|
+
required: false
|
|
530
|
+
items:
|
|
531
|
+
type: AttributeCategoryOutputRepresentation
|
|
532
|
+
description:
|
|
533
|
+
description: Description of the product
|
|
534
|
+
type: string
|
|
535
|
+
required: false
|
|
536
|
+
id:
|
|
537
|
+
description: Id of the product
|
|
538
|
+
type: string
|
|
539
|
+
required: false
|
|
540
|
+
isComponentRequired:
|
|
541
|
+
description: Is Component required of a product
|
|
542
|
+
type: boolean
|
|
543
|
+
required: false
|
|
544
|
+
isDefaultComponent:
|
|
545
|
+
description: Is the product a Default Component
|
|
546
|
+
type: boolean
|
|
547
|
+
required: false
|
|
548
|
+
isQuantityEditable:
|
|
549
|
+
description: Is Quantity of product editable
|
|
550
|
+
type: boolean
|
|
551
|
+
required: false
|
|
552
|
+
name:
|
|
553
|
+
description: Name of the product
|
|
554
|
+
type: string
|
|
555
|
+
required: false
|
|
556
|
+
productQuantity:
|
|
557
|
+
description: Quantity information of a product
|
|
558
|
+
type: ProductQuantityOutputRepresentation
|
|
559
|
+
required: false
|
|
560
|
+
status:
|
|
561
|
+
description: Status of the product
|
|
562
|
+
type: string
|
|
563
|
+
required: false
|
|
564
|
+
ProductOutputRepresentation:
|
|
565
|
+
description: Product output representation
|
|
566
|
+
type: object
|
|
567
|
+
properties:
|
|
568
|
+
additionalFields:
|
|
569
|
+
description: List of additional fields
|
|
570
|
+
type: array
|
|
571
|
+
required: false
|
|
572
|
+
items:
|
|
573
|
+
type: AdditionalFieldsOutputRepresentation
|
|
574
|
+
attributeCategories:
|
|
575
|
+
description: List of attribute categories in a product
|
|
576
|
+
type: array
|
|
577
|
+
required: false
|
|
578
|
+
items:
|
|
579
|
+
type: AttributeCategoryOutputRepresentation
|
|
580
|
+
description:
|
|
581
|
+
description: Description of the product
|
|
582
|
+
type: string
|
|
583
|
+
required: false
|
|
584
|
+
id:
|
|
585
|
+
description: Id of the product
|
|
586
|
+
type: string
|
|
587
|
+
required: false
|
|
588
|
+
isComponentRequired:
|
|
589
|
+
description: Is Component required of a product
|
|
590
|
+
type: boolean
|
|
591
|
+
required: false
|
|
592
|
+
isDefaultComponent:
|
|
593
|
+
description: Is the product a Default Component
|
|
594
|
+
type: boolean
|
|
595
|
+
required: false
|
|
596
|
+
isQuantityEditable:
|
|
597
|
+
description: Is Quantity of product editable
|
|
598
|
+
type: boolean
|
|
599
|
+
required: false
|
|
600
|
+
name:
|
|
601
|
+
description: Name of the product
|
|
602
|
+
type: string
|
|
603
|
+
required: false
|
|
604
|
+
productQuantity:
|
|
605
|
+
description: Quantity information of a product
|
|
606
|
+
type: ProductQuantityOutputRepresentation
|
|
607
|
+
required: false
|
|
608
|
+
status:
|
|
609
|
+
description: Status of the product
|
|
610
|
+
type: string
|
|
611
|
+
required: false
|
|
612
|
+
ProductPricesOutputRepresentation:
|
|
613
|
+
description: Product Prices output representation
|
|
614
|
+
type: object
|
|
615
|
+
properties:
|
|
616
|
+
currencyIsoCode:
|
|
617
|
+
description: Currency ISO Code of the given price
|
|
618
|
+
type: string
|
|
619
|
+
required: false
|
|
620
|
+
effectiveFrom:
|
|
621
|
+
description: Effective From Date of the given price
|
|
622
|
+
type: string
|
|
623
|
+
required: false
|
|
624
|
+
effectiveTo:
|
|
625
|
+
description: Effective To Date of the given price
|
|
626
|
+
type: string
|
|
627
|
+
required: false
|
|
628
|
+
price:
|
|
629
|
+
description: Price
|
|
630
|
+
format: double
|
|
631
|
+
type: number
|
|
632
|
+
required: false
|
|
633
|
+
priceBookEntryId:
|
|
634
|
+
description: Price book entry id of the given price
|
|
635
|
+
type: string
|
|
636
|
+
required: false
|
|
637
|
+
priceBookId:
|
|
638
|
+
description: Price book id of given price
|
|
639
|
+
type: string
|
|
640
|
+
required: false
|
|
641
|
+
pricingModel:
|
|
642
|
+
description: Pricing Model of the given price
|
|
643
|
+
type: PricingModelOutputRepresentation
|
|
644
|
+
required: false
|
|
645
|
+
ProductQuantityOutputRepresentation:
|
|
646
|
+
description: Product Quantity information output representation
|
|
647
|
+
type: object
|
|
648
|
+
properties:
|
|
649
|
+
maxQuantity:
|
|
650
|
+
description: Max Quantity allowed of a product
|
|
651
|
+
format: double
|
|
652
|
+
type: number
|
|
653
|
+
required: false
|
|
654
|
+
minQuantity:
|
|
655
|
+
description: Min Quantity allowed of a product
|
|
656
|
+
format: double
|
|
657
|
+
type: number
|
|
658
|
+
required: false
|
|
659
|
+
quantity:
|
|
660
|
+
description: Default Quantity allowed of a product
|
|
661
|
+
format: double
|
|
662
|
+
type: number
|
|
663
|
+
required: false
|
|
664
|
+
SearchOffersInputRepresentation:
|
|
665
|
+
description: Offers List input representation
|
|
666
|
+
type: object
|
|
667
|
+
properties:
|
|
668
|
+
catalogId:
|
|
669
|
+
description: Id of the catalog.
|
|
670
|
+
type: string
|
|
671
|
+
required: false
|
|
672
|
+
categoryId:
|
|
673
|
+
description: Id of of the category.
|
|
674
|
+
type: string
|
|
675
|
+
required: false
|
|
676
|
+
correlationId:
|
|
677
|
+
description: CorrelationId
|
|
678
|
+
type: string
|
|
679
|
+
required: false
|
|
680
|
+
customFields:
|
|
681
|
+
description: CustomFields
|
|
682
|
+
type: array
|
|
683
|
+
required: false
|
|
684
|
+
items:
|
|
685
|
+
type: string
|
|
686
|
+
limit:
|
|
687
|
+
description: Number of item count you want in the response
|
|
688
|
+
type: integer
|
|
689
|
+
required: false
|
|
690
|
+
offset:
|
|
691
|
+
description: Offset size from which you need the item count
|
|
692
|
+
type: integer
|
|
693
|
+
required: false
|
|
694
|
+
orderBy:
|
|
695
|
+
description: Sort by ascending/descending order
|
|
696
|
+
type: array
|
|
697
|
+
required: false
|
|
698
|
+
items:
|
|
699
|
+
type: string
|
|
700
|
+
query:
|
|
701
|
+
description: Search query
|
|
702
|
+
type: any
|
|
703
|
+
required: false
|
|
704
|
+
userContext:
|
|
705
|
+
description: User context in which cart would be created.
|
|
706
|
+
type: object
|
|
707
|
+
required: false
|
|
708
|
+
SearchOffersOutputRepresentation:
|
|
709
|
+
description: Search Offers output representation
|
|
710
|
+
type: object
|
|
711
|
+
properties:
|
|
712
|
+
prices:
|
|
713
|
+
description: List of prices of the product
|
|
714
|
+
type: array
|
|
715
|
+
required: false
|
|
716
|
+
items:
|
|
717
|
+
type: ProductPricesOutputRepresentation
|
|
718
|
+
additionalFields:
|
|
719
|
+
description: List of additional fields
|
|
720
|
+
type: array
|
|
721
|
+
required: false
|
|
722
|
+
items:
|
|
723
|
+
type: AdditionalFieldsOutputRepresentation
|
|
724
|
+
attributeCategories:
|
|
725
|
+
description: List of attribute categories in a product
|
|
726
|
+
type: array
|
|
727
|
+
required: false
|
|
728
|
+
items:
|
|
729
|
+
type: AttributeCategoryOutputRepresentation
|
|
730
|
+
description:
|
|
731
|
+
description: Description of the product
|
|
732
|
+
type: string
|
|
733
|
+
required: false
|
|
734
|
+
id:
|
|
735
|
+
description: Id of the product
|
|
736
|
+
type: string
|
|
737
|
+
required: false
|
|
738
|
+
isComponentRequired:
|
|
739
|
+
description: Is Component required of a product
|
|
740
|
+
type: boolean
|
|
741
|
+
required: false
|
|
742
|
+
isDefaultComponent:
|
|
743
|
+
description: Is the product a Default Component
|
|
744
|
+
type: boolean
|
|
745
|
+
required: false
|
|
746
|
+
isQuantityEditable:
|
|
747
|
+
description: Is Quantity of product editable
|
|
748
|
+
type: boolean
|
|
749
|
+
required: false
|
|
750
|
+
name:
|
|
751
|
+
description: Name of the product
|
|
752
|
+
type: string
|
|
753
|
+
required: false
|
|
754
|
+
productQuantity:
|
|
755
|
+
description: Quantity information of a product
|
|
756
|
+
type: ProductQuantityOutputRepresentation
|
|
757
|
+
required: false
|
|
758
|
+
status:
|
|
759
|
+
description: Status of the product
|
|
760
|
+
type: string
|
|
761
|
+
required: false
|
|
762
|
+
PreviewInputRepresentationWrapper:
|
|
763
|
+
description: Preview Input Representation Wrapper
|
|
764
|
+
type: object
|
|
765
|
+
properties:
|
|
766
|
+
previewInput:
|
|
767
|
+
description: Key for api call
|
|
768
|
+
type: PreviewInputRepresentation
|
|
769
|
+
SearchOffersInputRepresentationWrapper:
|
|
770
|
+
description: Search Offers Input Representation Wrapper
|
|
771
|
+
type: object
|
|
772
|
+
properties:
|
|
773
|
+
SearchOffersInput:
|
|
774
|
+
description: Key for api call
|
|
775
|
+
type: SearchOffersInputRepresentation
|
|
776
|
+
ProductDetailsInputRepresentationWrapper:
|
|
777
|
+
description: Product Details Input Representation Wrapper
|
|
778
|
+
type: object
|
|
779
|
+
properties:
|
|
780
|
+
requestBody:
|
|
781
|
+
description: Key for api call
|
|
782
|
+
type: ProductDetailsInputRepresentation
|
|
783
|
+
ProductListInputRepresentationWrapper:
|
|
784
|
+
description: Product List Input Representation Wrapper
|
|
785
|
+
type: object
|
|
786
|
+
properties:
|
|
787
|
+
requestBody:
|
|
788
|
+
description: Key for api call
|
|
789
|
+
type: ProductListInputRepresentation
|
|
790
|
+
/connect/cpq:
|
|
791
|
+
/preview:
|
|
792
|
+
post:
|
|
793
|
+
description: Preview product
|
|
794
|
+
responses:
|
|
795
|
+
'200':
|
|
796
|
+
description: Success
|
|
797
|
+
body:
|
|
798
|
+
application/json:
|
|
799
|
+
type: CpqBaseListOutputRepresentation
|
|
800
|
+
body:
|
|
801
|
+
application/json:
|
|
802
|
+
type: PreviewInputRepresentationWrapper
|
|
803
|
+
#required: false
|
|
804
|
+
(oas-body-name): previewInput
|
|
805
|
+
/products:
|
|
806
|
+
post:
|
|
807
|
+
displayName: postProductList
|
|
808
|
+
description: Products List
|
|
809
|
+
responses:
|
|
810
|
+
'200':
|
|
811
|
+
description: Success
|
|
812
|
+
body:
|
|
813
|
+
application/json:
|
|
814
|
+
type: CpqBaseListOutputRepresentation
|
|
815
|
+
body:
|
|
816
|
+
application/json:
|
|
817
|
+
type: ProductListInputRepresentationWrapper
|
|
818
|
+
(oas-body-name): requestBody
|
|
819
|
+
/search:
|
|
820
|
+
post:
|
|
821
|
+
displayName: postSearchOffers
|
|
822
|
+
description: Get products list based on search query
|
|
823
|
+
responses:
|
|
824
|
+
'200':
|
|
825
|
+
description: Success
|
|
826
|
+
body:
|
|
827
|
+
application/json:
|
|
828
|
+
type: CpqBaseListOutputRepresentation
|
|
829
|
+
body:
|
|
830
|
+
application/json:
|
|
831
|
+
type: SearchOffersInputRepresentationWrapper
|
|
832
|
+
(oas-body-name): SearchOffersInput
|
|
833
|
+
/{productId}:
|
|
834
|
+
post:
|
|
835
|
+
displayName: postProductDetails
|
|
836
|
+
description: Product Details
|
|
837
|
+
responses:
|
|
838
|
+
'200':
|
|
839
|
+
description: Success
|
|
840
|
+
body:
|
|
841
|
+
application/json:
|
|
842
|
+
type: CpqBaseDetailsOutputRepresentation
|
|
843
|
+
body:
|
|
844
|
+
application/json:
|
|
845
|
+
type: ProductDetailsInputRepresentationWrapper
|
|
846
|
+
(oas-body-name): requestBody
|
|
847
|
+
uriParameters:
|
|
848
|
+
productId:
|
|
849
|
+
type: string
|
|
850
|
+
required: true
|