@epilot/pricing-client 1.2.10 → 1.2.11

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/pricing-client",
3
- "version": "1.2.10",
3
+ "version": "1.2.11",
4
4
  "description": "Client for epilot Pricing APIs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -19,10 +19,10 @@
19
19
  "test": "jest",
20
20
  "typescript": "tsc",
21
21
  "bundle-definition": "webpack",
22
- "openapi": "openapi read --json ../lambda/ApiHandlerFunction/openapi.yml > src/openapi.json",
23
- "typegen": "echo '/* eslint-disable */' > src/openapi.d.ts && typegen ../lambda/ApiHandlerFunction/openapi.yml >> src/openapi.d.ts",
22
+ "openapi": "openapi read --json ../../lambda/ApiHandlerFunction/openapi.yml > src/openapi.json",
23
+ "typegen": "echo '/* eslint-disable */' > src/openapi.d.ts && typegen ../../lambda/ApiHandlerFunction/openapi.yml >> src/openapi.d.ts",
24
24
  "build": "npm run openapi && npm run typegen && npm run typescript && npm run bundle-definition",
25
- "eslint": "../node_modules/.bin/eslint -c ../.eslintrc.yml",
25
+ "eslint": "../../node_modules/.bin/eslint -c ../.eslintrc.yml",
26
26
  "prepublishOnly": "npm run build"
27
27
  },
28
28
  "files": [
@@ -64,5 +64,5 @@
64
64
  "webpack": "^5.18.0",
65
65
  "webpack-cli": "^4.4.0"
66
66
  },
67
- "gitHead": "72334c685d140535011edbf9b7a22dccbdc33852"
67
+ "gitHead": "8a3a01af2f5139fe14c01240829a4af67105aaea"
68
68
  }
@@ -0,0 +1,751 @@
1
+ /* eslint-disable */
2
+ import {
3
+ OpenAPIClient,
4
+ Parameters,
5
+ UnknownParamsObject,
6
+ OperationResponse,
7
+ AxiosRequestConfig,
8
+ } from 'openapi-client-axios';
9
+
10
+ declare namespace Components {
11
+ namespace Schemas {
12
+ export interface Address {
13
+ [name: string]: any;
14
+ /**
15
+ * The first line of the address. Typically the street address or PO Box number.
16
+ */
17
+ street?: string;
18
+ /**
19
+ * The second line of the address. Typically the number of the apartment, suite, or unit.
20
+ */
21
+ street_number?: string;
22
+ /**
23
+ * The postal code for the address.
24
+ */
25
+ postal_code?: string;
26
+ /**
27
+ * The name of the city, district, village, or town.
28
+ */
29
+ city?: string;
30
+ /**
31
+ * The two-letter code for the country of the address.
32
+ */
33
+ country?: string;
34
+ /**
35
+ * An additional description for the address
36
+ */
37
+ additional_info?: string;
38
+ }
39
+ export type BillingPeriod = "weekly" | "monthly" | "every_quarter" | "every_6_months" | "yearly";
40
+ /**
41
+ * Supports shopping for products and services until ready for checkout.
42
+ */
43
+ export interface Cart {
44
+ /**
45
+ * The cart identifier
46
+ */
47
+ id?: string;
48
+ /**
49
+ * The user's Organization Id the cart belongs to
50
+ */
51
+ readonly org_id?: string;
52
+ /**
53
+ * The status of the Cart:
54
+ * - open - the cart checkout is still in progress. Payment processing has not started
55
+ * - complete - the cart checkout is complete. Payment processing may still be in progress
56
+ * - expired - the cart checkout has expired. No further processing will occur
57
+ *
58
+ */
59
+ readonly status?: "open" | "complete" | "expired";
60
+ customer?: Customer;
61
+ billing_address?: Address;
62
+ delivery_address?: Address;
63
+ metadata?: MetaData;
64
+ line_items?: PriceItems;
65
+ /**
66
+ * Total of all items before (discounts or) taxes are applied.
67
+ */
68
+ readonly amount_subtotal?: number;
69
+ /**
70
+ * Total of all items after (discounts and) taxes are applied.
71
+ */
72
+ readonly amount_total?: number;
73
+ total_details?: TotalDetails;
74
+ readonly created_at?: string; // date-time
75
+ readonly updated_at?: string; // date-time
76
+ }
77
+ /**
78
+ * A valid cart payload from a client.
79
+ */
80
+ export interface CartDto {
81
+ metadata?: MetaData;
82
+ customer?: Customer;
83
+ billing_address?: Address;
84
+ delivery_address?: Address;
85
+ payment_method?: PaymentMethod;
86
+ line_items: PriceItemsDto;
87
+ }
88
+ /**
89
+ * A catalog search payload
90
+ * example:
91
+ * {
92
+ * "q": "_id:1233432 OR _id:123432454 OR _id:23445433",
93
+ * "sort": "description ASC",
94
+ * "from": 0,
95
+ * "size": 200
96
+ * }
97
+ */
98
+ export interface CatalogSearch {
99
+ /**
100
+ * The query to perform using lucene query syntax.
101
+ */
102
+ q?: string;
103
+ /**
104
+ * The sort expression to sort the results.
105
+ */
106
+ sort?: string;
107
+ /**
108
+ * The index from which to query, used for pagination purposes. Defaults to 0
109
+ */
110
+ from?: number;
111
+ /**
112
+ * The max size of the response, defaults to 2000.
113
+ */
114
+ size?: number;
115
+ /**
116
+ * A list of additional fields to expand on the search results, such as non-indexed fields.
117
+ */
118
+ expand?: string[];
119
+ }
120
+ /**
121
+ * The query result payload
122
+ * example:
123
+ * {
124
+ * "hits": 2,
125
+ * "results": [
126
+ * {
127
+ * "schema": "product",
128
+ * "description": "product a"
129
+ * },
130
+ * {
131
+ * "schema": "price",
132
+ * "unit_amount_decimal": "124.342343434"
133
+ * }
134
+ * ]
135
+ * }
136
+ */
137
+ export interface CatalogSearchResult {
138
+ /**
139
+ * The number os results returned.
140
+ */
141
+ hits?: number;
142
+ results?: (Product | Price)[];
143
+ }
144
+ /**
145
+ * The cart checkout request payload
146
+ */
147
+ export interface CheckoutCart {
148
+ cart?: string | CartDto;
149
+ mode?: CheckoutMode;
150
+ }
151
+ /**
152
+ * The cart checkout result
153
+ */
154
+ export interface CheckoutCartResult {
155
+ order?: Order;
156
+ }
157
+ /**
158
+ * The checkout mode for the cart checkout.
159
+ */
160
+ export type CheckoutMode = "create_order" | "create_invoice" | "create_quote";
161
+ /**
162
+ * Three-letter ISO currency code, in lowercase. Must be a supported currency.
163
+ * ISO 4217 CURRENCY CODES as specified in the documentation: https://www.iso.org/iso-4217-currency-codes.html
164
+ *
165
+ */
166
+ export type Currency = string;
167
+ export interface Customer {
168
+ first_name?: string;
169
+ last_name?: string;
170
+ company_name?: string;
171
+ vat_id?: string;
172
+ /**
173
+ * A valid email identifying the customer.
174
+ */
175
+ email?: string;
176
+ phone?: string;
177
+ }
178
+ export interface Error {
179
+ /**
180
+ * Error message
181
+ */
182
+ message: string;
183
+ }
184
+ /**
185
+ * A set of key-value pairs.
186
+ */
187
+ export type MetaData = ({
188
+ /**
189
+ * Item key
190
+ */
191
+ key?: string;
192
+ /**
193
+ * Item value
194
+ */
195
+ value?: string;
196
+ })[];
197
+ /**
198
+ * The order entity
199
+ */
200
+ export interface Order {
201
+ /**
202
+ * The Order Id Number for the customer
203
+ */
204
+ order_number?: string;
205
+ /**
206
+ * The Cart Id that originated or is associated with the order
207
+ */
208
+ cart_id?: string;
209
+ /**
210
+ * The order status
211
+ */
212
+ status?: "Draft" | "Open" | "Paid" | "Shipped" | "Delivered" | "Complete";
213
+ metadata?: MetaData;
214
+ billing_first_name?: string;
215
+ billing_last_name?: string;
216
+ billing_company_name?: string;
217
+ billing_vat?: string;
218
+ billing_email?: string;
219
+ billing_phone?: string;
220
+ billing_address?: Address[];
221
+ currency?: Currency;
222
+ delivery_address?: Address[];
223
+ payment_method?: PaymentMethod[];
224
+ /**
225
+ * The id of an existing contact.
226
+ */
227
+ readonly contact?: string;
228
+ line_items?: PriceItems;
229
+ /**
230
+ * Total of all items before (discounts or) taxes are applied.
231
+ */
232
+ readonly amount_subtotal?: number;
233
+ /**
234
+ * Total of all items after (discounts and) taxes are applied.
235
+ */
236
+ readonly amount_total?: number;
237
+ total_details?: TotalDetails;
238
+ /**
239
+ * Organization Id the order belongs to
240
+ */
241
+ _org_id?: string;
242
+ readonly _id?: string;
243
+ readonly _created_at?: string;
244
+ readonly _updated_at?: string;
245
+ _tags?: string[];
246
+ }
247
+ /**
248
+ * A PaymentMethod represent your customer's payment instruments.
249
+ *
250
+ */
251
+ export interface PaymentMethod {
252
+ /**
253
+ * The type of the PaymentMethod.
254
+ */
255
+ type?: string;
256
+ /**
257
+ * Contains relevant data associated with the payment method type.
258
+ */
259
+ details?: {
260
+ [name: string]: any;
261
+ };
262
+ }
263
+ /**
264
+ * The price configuration
265
+ */
266
+ export interface Price {
267
+ [name: string]: any;
268
+ active?: boolean;
269
+ billing_scheme?: "Per Unit";
270
+ description?: string;
271
+ sales_tax?: "nontaxable" | "reduced" | "standard";
272
+ tax_behavior?: "inclusive" | "exclusive";
273
+ tiers_mode?: "Standard";
274
+ type?: "one_time" | "recurring";
275
+ billing_period?: BillingPeriod;
276
+ unit_amount?: number;
277
+ unit_amount_decimal?: string;
278
+ unit_amount_currency?: Currency;
279
+ billing_duration_amount?: number;
280
+ billing_duration_unit?: "weeks" | "months" | "years";
281
+ notice_time_amount?: number;
282
+ notice_time_unit?: "weeks" | "months" | "years";
283
+ termination_time_amount?: number;
284
+ termination_time_unit?: "weeks" | "months" | "years";
285
+ renewal_duration_amount?: number;
286
+ renewal_duration_unit?: "weeks" | "months" | "years";
287
+ _created_at?: string;
288
+ _id?: string;
289
+ _title?: string;
290
+ _updated_at?: string;
291
+ }
292
+ /**
293
+ * Represents a price item
294
+ */
295
+ export interface PriceItem {
296
+ /**
297
+ * price item id
298
+ */
299
+ readonly id?: string;
300
+ metadata?: MetaData;
301
+ /**
302
+ * The unit amount value
303
+ */
304
+ readonly unit_amount?: number;
305
+ /**
306
+ * Total before any (discounts or) taxes are applied.
307
+ */
308
+ readonly amount_subtotal?: number;
309
+ /**
310
+ * Total after (discounts and) taxes.
311
+ */
312
+ readonly amount_total?: number;
313
+ currency?: Currency;
314
+ /**
315
+ * An arbitrary string attached to the price item. Often useful for displaying to users. Defaults to product name.
316
+ */
317
+ description?: string;
318
+ /**
319
+ * The quantity of products being purchased.
320
+ */
321
+ quantity?: number;
322
+ /**
323
+ * The id of the product.
324
+ */
325
+ product_id?: string;
326
+ /**
327
+ * The id of the price.
328
+ */
329
+ price_id?: string;
330
+ _price?: Price;
331
+ _product?: Product;
332
+ /**
333
+ * The taxes applied to the price item.
334
+ */
335
+ readonly taxes?: (TaxAmount)[];
336
+ /**
337
+ * The sum of amounts of the price items by recurrence.
338
+ */
339
+ readonly recurrences?: (RecurrenceAmount)[];
340
+ }
341
+ /**
342
+ * Represents a valid price item from a client.
343
+ */
344
+ export interface PriceItemDto {
345
+ metadata?: MetaData;
346
+ /**
347
+ * The quantity of products being purchased.
348
+ */
349
+ quantity?: number;
350
+ /**
351
+ * The id of the product.
352
+ */
353
+ product_id?: string;
354
+ /**
355
+ * The id of the price.
356
+ */
357
+ price_id?: string;
358
+ /**
359
+ * The taxes applied to the price item.
360
+ */
361
+ readonly taxes?: (TaxAmountDto)[];
362
+ /**
363
+ * The taxes applied to the price item.
364
+ */
365
+ readonly recurrences?: (RecurrenceAmountDto)[];
366
+ _price?: Price;
367
+ }
368
+ /**
369
+ * Tracks a set of product prices, quantities, (discounts) and taxes.
370
+ */
371
+ export type PriceItems = (PriceItem)[];
372
+ /**
373
+ * A valid set of product prices, quantities, (discounts) and taxes from a client.
374
+ */
375
+ export type PriceItemsDto = (PriceItemDto)[];
376
+ /**
377
+ * The result from the calculation of a set of price items.
378
+ */
379
+ export interface PricingDetails {
380
+ items?: (PriceItem)[];
381
+ /**
382
+ * Total of all items before (discounts or) taxes are applied.
383
+ */
384
+ amount_subtotal?: number;
385
+ /**
386
+ * Total of all items after (discounts and) taxes are applied.
387
+ */
388
+ amount_total?: number;
389
+ total_details?: TotalDetails;
390
+ }
391
+ /**
392
+ * The product configuration
393
+ */
394
+ export interface Product {
395
+ [name: string]: any;
396
+ code?: string;
397
+ type?: "Product" | "Service";
398
+ name?: string;
399
+ _id?: string;
400
+ _title?: string;
401
+ }
402
+ /**
403
+ * An amount associated with a specific recurrence.
404
+ */
405
+ export interface RecurrenceAmount {
406
+ /**
407
+ * The price type.
408
+ */
409
+ type: string;
410
+ /**
411
+ * The price billing period.
412
+ */
413
+ billing_period?: string;
414
+ /**
415
+ * Total of all items, with same recurrence, before (discounts or) taxes are applied.
416
+ */
417
+ amount_subtotal: number;
418
+ /**
419
+ * Total of all items, with same recurrence, after (discounts and) taxes are applied.
420
+ */
421
+ amount_total: number;
422
+ /**
423
+ * Total of all items taxes, with same recurrence.
424
+ */
425
+ amount_tax?: number;
426
+ }
427
+ /**
428
+ * An amount associated with a specific recurrence.
429
+ */
430
+ export interface RecurrenceAmountDto {
431
+ /**
432
+ * The price type.
433
+ */
434
+ type: string;
435
+ /**
436
+ * The price billing period.
437
+ */
438
+ billing_period?: string;
439
+ /**
440
+ * Total of all items, with same recurrence, before (discounts or) taxes are applied.
441
+ */
442
+ amount_subtotal: number;
443
+ /**
444
+ * Total of all items, with same recurrence, after (discounts and) taxes are applied.
445
+ */
446
+ amount_total: number;
447
+ /**
448
+ * Total of all items taxes, with same recurrence.
449
+ */
450
+ amount_tax?: number;
451
+ }
452
+ /**
453
+ * A tax amount associated with a specific tax rate.
454
+ */
455
+ export interface TaxAmount {
456
+ /**
457
+ * The tax amount.
458
+ */
459
+ amount?: number;
460
+ /**
461
+ * The tax rate applied.
462
+ */
463
+ rate?: string;
464
+ }
465
+ /**
466
+ * A valid tax rate from a client.
467
+ */
468
+ export interface TaxAmountDto {
469
+ /**
470
+ * The tax rate applied.
471
+ */
472
+ rate?: string;
473
+ }
474
+ /**
475
+ * The total details with tax (and discount) aggregated totals.
476
+ */
477
+ export interface TotalDetails {
478
+ /**
479
+ * This is the sum of all the price item shipping amounts.
480
+ */
481
+ amount_shipping?: number;
482
+ /**
483
+ * This is the sum of all the price item tax amounts.
484
+ */
485
+ amount_tax?: number;
486
+ /**
487
+ * Breakdown of individual tax (and discount) amounts that add up to the totals.
488
+ */
489
+ breakdown?: {
490
+ /**
491
+ * The aggregated price items tax amount per rate.
492
+ */
493
+ taxes?: (TaxAmount)[];
494
+ /**
495
+ * The aggregated price items tax amount per rate.
496
+ */
497
+ recurrences?: (RecurrenceAmount)[];
498
+ };
499
+ }
500
+ }
501
+ }
502
+ declare namespace Paths {
503
+ namespace $CheckoutCart {
504
+ export interface HeaderParameters {
505
+ "X-Ivy-Org-ID": Parameters.XIvyOrgID;
506
+ }
507
+ namespace Parameters {
508
+ export type XIvyOrgID = string;
509
+ }
510
+ export type RequestBody = Components.Schemas.CheckoutCart;
511
+ namespace Responses {
512
+ export type $200 = Components.Schemas.CheckoutCartResult;
513
+ export type $400 = Components.Schemas.Error;
514
+ }
515
+ }
516
+ namespace $DeleteCart {
517
+ namespace Parameters {
518
+ export type CartId = string;
519
+ }
520
+ export interface PathParameters {
521
+ "cart-id": Parameters.CartId;
522
+ }
523
+ namespace Responses {
524
+ export type $200 = Components.Schemas.Cart;
525
+ export type $400 = Components.Schemas.Error;
526
+ }
527
+ }
528
+ namespace $GetCart {
529
+ namespace Parameters {
530
+ export type CartId = string;
531
+ }
532
+ export interface PathParameters {
533
+ "cart-id": Parameters.CartId;
534
+ }
535
+ namespace Responses {
536
+ export type $200 = Components.Schemas.Cart;
537
+ export type $400 = Components.Schemas.Error;
538
+ }
539
+ }
540
+ namespace $SearchCatalog {
541
+ export interface HeaderParameters {
542
+ "X-Ivy-Org-ID": Parameters.XIvyOrgID;
543
+ }
544
+ namespace Parameters {
545
+ export type XIvyOrgID = string;
546
+ }
547
+ export type RequestBody = Components.Schemas.CatalogSearch;
548
+ namespace Responses {
549
+ export type $200 = Components.Schemas.CatalogSearchResult;
550
+ export type $400 = Components.Schemas.Error;
551
+ }
552
+ }
553
+ namespace $UpsertCart {
554
+ export interface HeaderParameters {
555
+ "X-Ivy-Org-ID": Parameters.XIvyOrgID;
556
+ }
557
+ namespace Parameters {
558
+ export type XIvyOrgID = string;
559
+ }
560
+ export type RequestBody = Components.Schemas.CartDto;
561
+ namespace Responses {
562
+ export type $200 = Components.Schemas.Cart;
563
+ export type $201 = Components.Schemas.Cart;
564
+ export type $400 = Components.Schemas.Error;
565
+ }
566
+ }
567
+ namespace $UpsertOrder {
568
+ export type RequestBody = Components.Schemas.Order;
569
+ namespace Responses {
570
+ export type $200 = Components.Schemas.Order;
571
+ export type $201 = Components.Schemas.Order;
572
+ export type $400 = Components.Schemas.Error;
573
+ }
574
+ }
575
+ }
576
+
577
+ export interface OperationMethods {
578
+ /**
579
+ * $upsertCart - upsertCart
580
+ *
581
+ * Creates a new cart or updates an existing one.
582
+ */
583
+ '$upsertCart'(
584
+ parameters?: Parameters<Paths.$UpsertCart.HeaderParameters> | null,
585
+ data?: Paths.$UpsertCart.RequestBody,
586
+ config?: AxiosRequestConfig
587
+ ): OperationResponse<Paths.$UpsertCart.Responses.$200 | Paths.$UpsertCart.Responses.$201 | Paths.$UpsertCart.Responses.$400>
588
+ /**
589
+ * $checkoutCart - checkoutCart
590
+ *
591
+ * Checkouts a cart and executes the specified checkout `mode` process.
592
+ *
593
+ * A Checkout implicitly finalizes the provided cart (if not transient from a fast-checkout) and behaves in one of the following modes:
594
+ * - `create_order` (**default**): the payment happens at a later date or managed by 3rd-party CRM (SAP)
595
+ * - `create_invoice`: the payment happens on the online checkout (paypal, stripe, adyen)
596
+ * - `create_quote`: the checkout represents a price quote request
597
+ *
598
+ * Fast checkout is also supported, by passing the Cart contents directly.
599
+ * When a fast checkout is performed the cart is considered transient and there is no cart persistance.
600
+ *
601
+ * If the checkout `mode` is omitted, the `mode` will default to `create_order`.
602
+ *
603
+ */
604
+ '$checkoutCart'(
605
+ parameters?: Parameters<Paths.$CheckoutCart.HeaderParameters> | null,
606
+ data?: Paths.$CheckoutCart.RequestBody,
607
+ config?: AxiosRequestConfig
608
+ ): OperationResponse<Paths.$CheckoutCart.Responses.$200 | Paths.$CheckoutCart.Responses.$400>
609
+ /**
610
+ * $getCart - getCart
611
+ *
612
+ * Retrieves a cart by id.
613
+ */
614
+ '$getCart'(
615
+ parameters?: Parameters<Paths.$GetCart.PathParameters> | null,
616
+ data?: any,
617
+ config?: AxiosRequestConfig
618
+ ): OperationResponse<Paths.$GetCart.Responses.$200 | Paths.$GetCart.Responses.$400>
619
+ /**
620
+ * $deleteCart - deleteCart
621
+ *
622
+ * Deletes the Cart specified and returns its content.
623
+ */
624
+ '$deleteCart'(
625
+ parameters?: Parameters<Paths.$DeleteCart.PathParameters> | null,
626
+ data?: any,
627
+ config?: AxiosRequestConfig
628
+ ): OperationResponse<Paths.$DeleteCart.Responses.$200 | Paths.$DeleteCart.Responses.$400>
629
+ /**
630
+ * $upsertOrder - upsertOrder
631
+ *
632
+ * Creates a new order or updates an existing one. During the creation of an order, an unique customer-readable `order_number` will be generated.
633
+ * The `order_number` can be used to universally identify an order within epilot platform.
634
+ *
635
+ * The upsert operation is idempotent, meaning that multiple calls will have effect just once. Calling the upsert multiple times will not duplicate the items on an order.
636
+ *
637
+ * When the the `cart_id` payload field is specified, the cart items are appended to the existing order items, or replaced in-place if they belong to the same `cart_id`.
638
+ *
639
+ * On multiple updates with the same `cart_id` the line items linked with that `cart_id` (`order.line_items[]?.metadata.cart_id`) are removed and re-added.
640
+ *
641
+ */
642
+ '$upsertOrder'(
643
+ parameters?: Parameters<UnknownParamsObject> | null,
644
+ data?: Paths.$UpsertOrder.RequestBody,
645
+ config?: AxiosRequestConfig
646
+ ): OperationResponse<Paths.$UpsertOrder.Responses.$200 | Paths.$UpsertOrder.Responses.$201 | Paths.$UpsertOrder.Responses.$400>
647
+ /**
648
+ * $searchCatalog - searchCatalog
649
+ *
650
+ * Provides a querying functionalities over products and prices of the Catalog for a given organization.
651
+ */
652
+ '$searchCatalog'(
653
+ parameters?: Parameters<Paths.$SearchCatalog.HeaderParameters> | null,
654
+ data?: Paths.$SearchCatalog.RequestBody,
655
+ config?: AxiosRequestConfig
656
+ ): OperationResponse<Paths.$SearchCatalog.Responses.$200 | Paths.$SearchCatalog.Responses.$400>
657
+ }
658
+
659
+ export interface PathsDictionary {
660
+ ['/v1/public/cart']: {
661
+ /**
662
+ * $upsertCart - upsertCart
663
+ *
664
+ * Creates a new cart or updates an existing one.
665
+ */
666
+ 'put'(
667
+ parameters?: Parameters<Paths.$UpsertCart.HeaderParameters> | null,
668
+ data?: Paths.$UpsertCart.RequestBody,
669
+ config?: AxiosRequestConfig
670
+ ): OperationResponse<Paths.$UpsertCart.Responses.$200 | Paths.$UpsertCart.Responses.$201 | Paths.$UpsertCart.Responses.$400>
671
+ }
672
+ ['/v1/public/cart:checkout']: {
673
+ /**
674
+ * $checkoutCart - checkoutCart
675
+ *
676
+ * Checkouts a cart and executes the specified checkout `mode` process.
677
+ *
678
+ * A Checkout implicitly finalizes the provided cart (if not transient from a fast-checkout) and behaves in one of the following modes:
679
+ * - `create_order` (**default**): the payment happens at a later date or managed by 3rd-party CRM (SAP)
680
+ * - `create_invoice`: the payment happens on the online checkout (paypal, stripe, adyen)
681
+ * - `create_quote`: the checkout represents a price quote request
682
+ *
683
+ * Fast checkout is also supported, by passing the Cart contents directly.
684
+ * When a fast checkout is performed the cart is considered transient and there is no cart persistance.
685
+ *
686
+ * If the checkout `mode` is omitted, the `mode` will default to `create_order`.
687
+ *
688
+ */
689
+ 'post'(
690
+ parameters?: Parameters<Paths.$CheckoutCart.HeaderParameters> | null,
691
+ data?: Paths.$CheckoutCart.RequestBody,
692
+ config?: AxiosRequestConfig
693
+ ): OperationResponse<Paths.$CheckoutCart.Responses.$200 | Paths.$CheckoutCart.Responses.$400>
694
+ }
695
+ ['/v1/cart/{cart-id}']: {
696
+ /**
697
+ * $getCart - getCart
698
+ *
699
+ * Retrieves a cart by id.
700
+ */
701
+ 'get'(
702
+ parameters?: Parameters<Paths.$GetCart.PathParameters> | null,
703
+ data?: any,
704
+ config?: AxiosRequestConfig
705
+ ): OperationResponse<Paths.$GetCart.Responses.$200 | Paths.$GetCart.Responses.$400>
706
+ /**
707
+ * $deleteCart - deleteCart
708
+ *
709
+ * Deletes the Cart specified and returns its content.
710
+ */
711
+ 'delete'(
712
+ parameters?: Parameters<Paths.$DeleteCart.PathParameters> | null,
713
+ data?: any,
714
+ config?: AxiosRequestConfig
715
+ ): OperationResponse<Paths.$DeleteCart.Responses.$200 | Paths.$DeleteCart.Responses.$400>
716
+ }
717
+ ['/v1/order']: {
718
+ /**
719
+ * $upsertOrder - upsertOrder
720
+ *
721
+ * Creates a new order or updates an existing one. During the creation of an order, an unique customer-readable `order_number` will be generated.
722
+ * The `order_number` can be used to universally identify an order within epilot platform.
723
+ *
724
+ * The upsert operation is idempotent, meaning that multiple calls will have effect just once. Calling the upsert multiple times will not duplicate the items on an order.
725
+ *
726
+ * When the the `cart_id` payload field is specified, the cart items are appended to the existing order items, or replaced in-place if they belong to the same `cart_id`.
727
+ *
728
+ * On multiple updates with the same `cart_id` the line items linked with that `cart_id` (`order.line_items[]?.metadata.cart_id`) are removed and re-added.
729
+ *
730
+ */
731
+ 'put'(
732
+ parameters?: Parameters<UnknownParamsObject> | null,
733
+ data?: Paths.$UpsertOrder.RequestBody,
734
+ config?: AxiosRequestConfig
735
+ ): OperationResponse<Paths.$UpsertOrder.Responses.$200 | Paths.$UpsertOrder.Responses.$201 | Paths.$UpsertOrder.Responses.$400>
736
+ }
737
+ ['/v1/public/catalog']: {
738
+ /**
739
+ * $searchCatalog - searchCatalog
740
+ *
741
+ * Provides a querying functionalities over products and prices of the Catalog for a given organization.
742
+ */
743
+ 'post'(
744
+ parameters?: Parameters<Paths.$SearchCatalog.HeaderParameters> | null,
745
+ data?: Paths.$SearchCatalog.RequestBody,
746
+ config?: AxiosRequestConfig
747
+ ): OperationResponse<Paths.$SearchCatalog.Responses.$200 | Paths.$SearchCatalog.Responses.$400>
748
+ }
749
+ }
750
+
751
+ export type Client = OpenAPIClient<OperationMethods, PathsDictionary>
package/CHANGELOG.md DELETED
@@ -1,8 +0,0 @@
1
- # Change Log
2
-
3
- All notable changes to this project will be documented in this file.
4
- See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
-
6
- ## [1.2.10](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/compare/@epilot/pricing-client@1.2.9...@epilot/pricing-client@1.2.10) (2021-12-16)
7
-
8
- **Note:** Version bump only for package @epilot/pricing-client