@epilot/pricing-client 3.51.0 → 3.51.1
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/dist/definition.js +1 -1
- package/dist/openapi.d.ts +26 -29
- package/dist/openapi.json +6 -4
- package/package.json +15 -14
- package/LICENSE +0 -21
package/dist/definition.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
(()=>{"use strict";var e={
|
|
1
|
+
(()=>{"use strict";var e={390:function(e,r,t){var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(r,"__esModule",{value:!0});var a=i(t(466));r.default=a.default},466:e=>{e.exports=JSON.parse('{"openapi":"3.0.3","info":{"title":"","version":""},"servers":[{"url":"https://pricing-api.sls.epilot.io"}],"paths":{"/v1/pricing:compute":{"post":{"operationId":"$calculatePricingDetails","requestBody":{"required":false,"content":{"application/json":{}}},"responses":{}}},"/v1/order":{"post":{"operationId":"createOrder","requestBody":{"required":true,"content":{"application/json":{}}},"responses":{}}},"/v1/order/{id}":{"put":{"operationId":"putOrder","parameters":[{"in":"path","name":"id","required":true}],"requestBody":{"required":true,"content":{"application/json":{}}},"responses":{}}},"/v1/public/cart:checkout":{"post":{"operationId":"$checkoutCart","parameters":[{"in":"header","name":"X-Ivy-Org-ID","required":true}],"requestBody":{"required":true,"content":{"application/json":{}}},"responses":{}}},"/v1/public/catalog":{"post":{"operationId":"$searchCatalog","parameters":[{"in":"header","name":"X-Ivy-Org-ID"},{"in":"header","name":"Authorization"}],"requestBody":{"required":true,"content":{"application/json":{}}},"responses":{}}},"/v1/catalog":{"post":{"operationId":"$privateSearchCatalog","requestBody":{"required":true,"content":{"application/json":{}}},"responses":{}}},"/v1/public/validate-promo-codes":{"post":{"operationId":"$validatePromoCodes","parameters":[{"in":"header","name":"X-Ivy-Org-ID","required":true}],"requestBody":{"required":true,"content":{"application/json":{}}},"responses":{}}},"/v1/public/availability:check":{"post":{"operationId":"$availabilityCheck","parameters":[{"in":"header","name":"X-Ivy-Org-ID","required":true}],"requestBody":{"required":true,"content":{"application/json":{}}},"responses":{}}},"/v1/validate-availability/{id}":{"get":{"operationId":"$validateAvailabilityFile","parameters":[{"in":"path","name":"id","required":true},{"in":"header","name":"X-Epilot-Org-ID","required":true}],"responses":{}}},"/v1/public/historicMarketPrices":{"get":{"operationId":"$historicMarketPrices","parameters":[{"in":"query","name":"market","required":true},{"in":"query","name":"bidding_zone","required":true},{"in":"query","name":"frequency","required":true},{"in":"query","name":"from","required":true},{"in":"query","name":"to","required":true}],"responses":{}}},"/v1/public/averageMarketPrice":{"get":{"operationId":"$averageMarketPrice","parameters":[{"in":"query","name":"market","required":true},{"in":"query","name":"bidding_zone","required":true},{"in":"query","name":"from","required":true},{"in":"query","name":"to","required":true}],"responses":{}}},"/v1/public/integration/{integrationId}/external-catalog":{"post":{"deprecated":true,"operationId":"$searchExternalCatalog","parameters":[{"in":"path","name":"integrationId","required":true}],"requestBody":{"required":true,"content":{"application/json":{}}},"responses":{}}},"/v1/public/integration/{integrationId}/products":{"post":{"operationId":"$searchExternalProducts","parameters":[{"in":"path","name":"integrationId","required":true}],"requestBody":{"required":true,"content":{"application/json":{}}},"responses":{}}},"/v1/public/integration/{integrationId}/providers:search":{"post":{"operationId":"$searchProviders","parameters":[{"in":"header","name":"X-Epilot-Org-ID","required":true},{"in":"path","name":"integrationId","required":true}],"requestBody":{"required":true,"content":{"application/json":{}}},"responses":{}}},"/v1/public/integration/{integrationId}/streets:search":{"post":{"operationId":"$searchStreets","parameters":[{"in":"header","name":"X-Epilot-Org-ID","required":true},{"in":"path","name":"integrationId","required":true}],"requestBody":{"required":true,"content":{"application/json":{}}},"responses":{}}},"/v1/public/integration/{integrationId}/compute-price":{"post":{"operationId":"$computePrice","parameters":[{"in":"header","name":"X-Epilot-Org-ID","required":true},{"in":"path","name":"integrationId","required":true}],"requestBody":{"content":{"application/json":{}}},"responses":{}}},"/v1/integration/{integrationId}/credentials":{"get":{"operationId":"$getCredentials","parameters":[{"in":"path","name":"integrationId","required":true}],"responses":{}}},"/v1/integration/{integrationId}/credentials:save":{"put":{"operationId":"$saveCredentials","parameters":[{"in":"path","name":"integrationId","required":true}],"requestBody":{"content":{"application/json":{}}},"responses":{}}},"/v1/integration/{integrationId}/credentials:delete":{"delete":{"operationId":"$deleteCredentials","parameters":[{"in":"path","name":"integrationId","required":true}],"responses":{}}},"/v1/public/product-recommendations":{"post":{"operationId":"$productRecommendations","parameters":[{"in":"header","name":"X-Ivy-Org-ID"}],"requestBody":{"required":true,"content":{"application/json":{}}},"responses":{}}}},"components":{}}')}},r={},t=function t(i){var a=r[i];if(void 0!==a)return a.exports;var n=r[i]={exports:{}};return e[i].call(n.exports,n,n.exports,t),n.exports}(390),i=exports;for(var a in t)i[a]=t[a];t.__esModule&&Object.defineProperty(i,"__esModule",{value:!0})})();
|
package/dist/openapi.d.ts
CHANGED
|
@@ -336,7 +336,7 @@ declare namespace Components {
|
|
|
336
336
|
/**
|
|
337
337
|
* The billing period duration unit
|
|
338
338
|
*/
|
|
339
|
-
billing_duration_unit?: "weeks" | "months" | "years";
|
|
339
|
+
billing_duration_unit?: "days" | "weeks" | "months" | "years";
|
|
340
340
|
/**
|
|
341
341
|
* The notice period duration
|
|
342
342
|
*/
|
|
@@ -344,7 +344,7 @@ declare namespace Components {
|
|
|
344
344
|
/**
|
|
345
345
|
* The notice period duration unit
|
|
346
346
|
*/
|
|
347
|
-
notice_time_unit?: "weeks" | "months" | "years";
|
|
347
|
+
notice_time_unit?: "days" | "weeks" | "months" | "years";
|
|
348
348
|
/**
|
|
349
349
|
* The termination period duration
|
|
350
350
|
*/
|
|
@@ -352,7 +352,7 @@ declare namespace Components {
|
|
|
352
352
|
/**
|
|
353
353
|
* The termination period duration unit
|
|
354
354
|
*/
|
|
355
|
-
termination_time_unit?: "weeks" | "months" | "years";
|
|
355
|
+
termination_time_unit?: "days" | "weeks" | "months" | "years";
|
|
356
356
|
/**
|
|
357
357
|
* The renewal period duration
|
|
358
358
|
*/
|
|
@@ -360,7 +360,7 @@ declare namespace Components {
|
|
|
360
360
|
/**
|
|
361
361
|
* The renewal period duration unit
|
|
362
362
|
*/
|
|
363
|
-
renewal_duration_unit?: "weeks" | "months" | "years";
|
|
363
|
+
renewal_duration_unit?: "days" | "weeks" | "months" | "years";
|
|
364
364
|
/**
|
|
365
365
|
* Whether the price can be used for new purchases.
|
|
366
366
|
*/
|
|
@@ -4785,7 +4785,7 @@ declare namespace Components {
|
|
|
4785
4785
|
/**
|
|
4786
4786
|
* The billing period duration unit
|
|
4787
4787
|
*/
|
|
4788
|
-
billing_duration_unit?: "weeks" | "months" | "years";
|
|
4788
|
+
billing_duration_unit?: "days" | "weeks" | "months" | "years";
|
|
4789
4789
|
/**
|
|
4790
4790
|
* The notice period duration
|
|
4791
4791
|
*/
|
|
@@ -4793,7 +4793,7 @@ declare namespace Components {
|
|
|
4793
4793
|
/**
|
|
4794
4794
|
* The notice period duration unit
|
|
4795
4795
|
*/
|
|
4796
|
-
notice_time_unit?: "weeks" | "months" | "years";
|
|
4796
|
+
notice_time_unit?: "days" | "weeks" | "months" | "years";
|
|
4797
4797
|
/**
|
|
4798
4798
|
* The termination period duration
|
|
4799
4799
|
*/
|
|
@@ -4801,7 +4801,7 @@ declare namespace Components {
|
|
|
4801
4801
|
/**
|
|
4802
4802
|
* The termination period duration unit
|
|
4803
4803
|
*/
|
|
4804
|
-
termination_time_unit?: "weeks" | "months" | "years";
|
|
4804
|
+
termination_time_unit?: "days" | "weeks" | "months" | "years";
|
|
4805
4805
|
/**
|
|
4806
4806
|
* The renewal period duration
|
|
4807
4807
|
*/
|
|
@@ -4809,7 +4809,7 @@ declare namespace Components {
|
|
|
4809
4809
|
/**
|
|
4810
4810
|
* The renewal period duration unit
|
|
4811
4811
|
*/
|
|
4812
|
-
renewal_duration_unit?: "weeks" | "months" | "years";
|
|
4812
|
+
renewal_duration_unit?: "days" | "weeks" | "months" | "years";
|
|
4813
4813
|
/**
|
|
4814
4814
|
* Whether the price can be used for new purchases.
|
|
4815
4815
|
*/
|
|
@@ -5116,7 +5116,7 @@ declare namespace Components {
|
|
|
5116
5116
|
/**
|
|
5117
5117
|
* The billing period duration unit
|
|
5118
5118
|
*/
|
|
5119
|
-
billing_duration_unit?: "weeks" | "months" | "years";
|
|
5119
|
+
billing_duration_unit?: "days" | "weeks" | "months" | "years";
|
|
5120
5120
|
/**
|
|
5121
5121
|
* The notice period duration
|
|
5122
5122
|
*/
|
|
@@ -5124,7 +5124,7 @@ declare namespace Components {
|
|
|
5124
5124
|
/**
|
|
5125
5125
|
* The notice period duration unit
|
|
5126
5126
|
*/
|
|
5127
|
-
notice_time_unit?: "weeks" | "months" | "years";
|
|
5127
|
+
notice_time_unit?: "days" | "weeks" | "months" | "years";
|
|
5128
5128
|
/**
|
|
5129
5129
|
* The termination period duration
|
|
5130
5130
|
*/
|
|
@@ -5132,7 +5132,7 @@ declare namespace Components {
|
|
|
5132
5132
|
/**
|
|
5133
5133
|
* The termination period duration unit
|
|
5134
5134
|
*/
|
|
5135
|
-
termination_time_unit?: "weeks" | "months" | "years";
|
|
5135
|
+
termination_time_unit?: "days" | "weeks" | "months" | "years";
|
|
5136
5136
|
/**
|
|
5137
5137
|
* The renewal period duration
|
|
5138
5138
|
*/
|
|
@@ -5140,7 +5140,7 @@ declare namespace Components {
|
|
|
5140
5140
|
/**
|
|
5141
5141
|
* The renewal period duration unit
|
|
5142
5142
|
*/
|
|
5143
|
-
renewal_duration_unit?: "weeks" | "months" | "years";
|
|
5143
|
+
renewal_duration_unit?: "days" | "weeks" | "months" | "years";
|
|
5144
5144
|
/**
|
|
5145
5145
|
* Whether the price can be used for new purchases.
|
|
5146
5146
|
*/
|
|
@@ -5281,10 +5281,10 @@ declare namespace Components {
|
|
|
5281
5281
|
* "token": "9e1758a3-2a32-4a5f-b034-a8ab883f8fb9",
|
|
5282
5282
|
* "image_uri": "https://dummy-image.jpg",
|
|
5283
5283
|
* "organization_id": "728",
|
|
5284
|
-
* "department":
|
|
5284
|
+
* "department": "Engineering",
|
|
5285
5285
|
* "preferred_language": "en",
|
|
5286
5286
|
* "status": "Active",
|
|
5287
|
-
* "phone":
|
|
5287
|
+
* "phone": "+49123456789",
|
|
5288
5288
|
* "email_notification_setting": {
|
|
5289
5289
|
* "added_participant_opportunity": true,
|
|
5290
5290
|
* "assigned_opportunity": true,
|
|
@@ -6385,7 +6385,7 @@ declare namespace Components {
|
|
|
6385
6385
|
/**
|
|
6386
6386
|
* The billing period duration unit
|
|
6387
6387
|
*/
|
|
6388
|
-
billing_duration_unit?: "weeks" | "months" | "years";
|
|
6388
|
+
billing_duration_unit?: "days" | "weeks" | "months" | "years";
|
|
6389
6389
|
/**
|
|
6390
6390
|
* The notice period duration
|
|
6391
6391
|
*/
|
|
@@ -6393,7 +6393,7 @@ declare namespace Components {
|
|
|
6393
6393
|
/**
|
|
6394
6394
|
* The notice period duration unit
|
|
6395
6395
|
*/
|
|
6396
|
-
notice_time_unit?: "weeks" | "months" | "years";
|
|
6396
|
+
notice_time_unit?: "days" | "weeks" | "months" | "years";
|
|
6397
6397
|
/**
|
|
6398
6398
|
* The termination period duration
|
|
6399
6399
|
*/
|
|
@@ -6401,7 +6401,7 @@ declare namespace Components {
|
|
|
6401
6401
|
/**
|
|
6402
6402
|
* The termination period duration unit
|
|
6403
6403
|
*/
|
|
6404
|
-
termination_time_unit?: "weeks" | "months" | "years";
|
|
6404
|
+
termination_time_unit?: "days" | "weeks" | "months" | "years";
|
|
6405
6405
|
/**
|
|
6406
6406
|
* The renewal period duration
|
|
6407
6407
|
*/
|
|
@@ -6409,7 +6409,7 @@ declare namespace Components {
|
|
|
6409
6409
|
/**
|
|
6410
6410
|
* The renewal period duration unit
|
|
6411
6411
|
*/
|
|
6412
|
-
renewal_duration_unit?: "weeks" | "months" | "years";
|
|
6412
|
+
renewal_duration_unit?: "days" | "weeks" | "months" | "years";
|
|
6413
6413
|
/**
|
|
6414
6414
|
* Whether the price can be used for new purchases.
|
|
6415
6415
|
*/
|
|
@@ -6593,7 +6593,7 @@ declare namespace Components {
|
|
|
6593
6593
|
/**
|
|
6594
6594
|
* The billing period duration unit
|
|
6595
6595
|
*/
|
|
6596
|
-
billing_duration_unit?: "weeks" | "months" | "years";
|
|
6596
|
+
billing_duration_unit?: "days" | "weeks" | "months" | "years";
|
|
6597
6597
|
/**
|
|
6598
6598
|
* The notice period duration
|
|
6599
6599
|
*/
|
|
@@ -6601,7 +6601,7 @@ declare namespace Components {
|
|
|
6601
6601
|
/**
|
|
6602
6602
|
* The notice period duration unit
|
|
6603
6603
|
*/
|
|
6604
|
-
notice_time_unit?: "weeks" | "months" | "years";
|
|
6604
|
+
notice_time_unit?: "days" | "weeks" | "months" | "years";
|
|
6605
6605
|
/**
|
|
6606
6606
|
* The termination period duration
|
|
6607
6607
|
*/
|
|
@@ -6609,7 +6609,7 @@ declare namespace Components {
|
|
|
6609
6609
|
/**
|
|
6610
6610
|
* The termination period duration unit
|
|
6611
6611
|
*/
|
|
6612
|
-
termination_time_unit?: "weeks" | "months" | "years";
|
|
6612
|
+
termination_time_unit?: "days" | "weeks" | "months" | "years";
|
|
6613
6613
|
/**
|
|
6614
6614
|
* The renewal period duration
|
|
6615
6615
|
*/
|
|
@@ -6617,7 +6617,7 @@ declare namespace Components {
|
|
|
6617
6617
|
/**
|
|
6618
6618
|
* The renewal period duration unit
|
|
6619
6619
|
*/
|
|
6620
|
-
renewal_duration_unit?: "weeks" | "months" | "years";
|
|
6620
|
+
renewal_duration_unit?: "days" | "weeks" | "months" | "years";
|
|
6621
6621
|
}
|
|
6622
6622
|
export interface PriceDynamicTariff {
|
|
6623
6623
|
mode: /* The mode of the dynamic tariff. `day_ahead_market` uses the Day-Ahead spot market price as base. */ DynamicTariffMode;
|
|
@@ -7631,7 +7631,7 @@ declare namespace Components {
|
|
|
7631
7631
|
/**
|
|
7632
7632
|
* The billing period duration unit
|
|
7633
7633
|
*/
|
|
7634
|
-
billing_duration_unit?: "weeks" | "months" | "years";
|
|
7634
|
+
billing_duration_unit?: "days" | "weeks" | "months" | "years";
|
|
7635
7635
|
/**
|
|
7636
7636
|
* The notice period duration
|
|
7637
7637
|
*/
|
|
@@ -7639,7 +7639,7 @@ declare namespace Components {
|
|
|
7639
7639
|
/**
|
|
7640
7640
|
* The notice period duration unit
|
|
7641
7641
|
*/
|
|
7642
|
-
notice_time_unit?: "weeks" | "months" | "years";
|
|
7642
|
+
notice_time_unit?: "days" | "weeks" | "months" | "years";
|
|
7643
7643
|
/**
|
|
7644
7644
|
* The termination period duration
|
|
7645
7645
|
*/
|
|
@@ -7647,7 +7647,7 @@ declare namespace Components {
|
|
|
7647
7647
|
/**
|
|
7648
7648
|
* The termination period duration unit
|
|
7649
7649
|
*/
|
|
7650
|
-
termination_time_unit?: "weeks" | "months" | "years";
|
|
7650
|
+
termination_time_unit?: "days" | "weeks" | "months" | "years";
|
|
7651
7651
|
/**
|
|
7652
7652
|
* The renewal period duration
|
|
7653
7653
|
*/
|
|
@@ -7655,7 +7655,7 @@ declare namespace Components {
|
|
|
7655
7655
|
/**
|
|
7656
7656
|
* The renewal period duration unit
|
|
7657
7657
|
*/
|
|
7658
|
-
renewal_duration_unit?: "weeks" | "months" | "years";
|
|
7658
|
+
renewal_duration_unit?: "days" | "weeks" | "months" | "years";
|
|
7659
7659
|
/**
|
|
7660
7660
|
* Whether the price can be used for new purchases.
|
|
7661
7661
|
*/
|
|
@@ -9023,9 +9023,6 @@ declare namespace Components {
|
|
|
9023
9023
|
* Total tax amount of items with same recurrence.
|
|
9024
9024
|
*/
|
|
9025
9025
|
amount_tax?: number;
|
|
9026
|
-
/**
|
|
9027
|
-
* The taxes applied to the price item.
|
|
9028
|
-
*/
|
|
9029
9026
|
tax?: /* A tax amount associated with a specific tax rate. */ TaxAmountBreakdown;
|
|
9030
9027
|
}
|
|
9031
9028
|
export interface RedeemedPromo {
|
package/dist/openapi.json
CHANGED
|
@@ -2911,10 +2911,10 @@
|
|
|
2911
2911
|
"token": "9e1758a3-2a32-4a5f-b034-a8ab883f8fb9",
|
|
2912
2912
|
"image_uri": "https://dummy-image.jpg",
|
|
2913
2913
|
"organization_id": "728",
|
|
2914
|
-
"department":
|
|
2914
|
+
"department": "Engineering",
|
|
2915
2915
|
"preferred_language": "en",
|
|
2916
2916
|
"status": "Active",
|
|
2917
|
-
"phone":
|
|
2917
|
+
"phone": "+49123456789",
|
|
2918
2918
|
"email_notification_setting": {
|
|
2919
2919
|
"added_participant_opportunity": true,
|
|
2920
2920
|
"assigned_opportunity": true,
|
|
@@ -4605,6 +4605,7 @@
|
|
|
4605
4605
|
"description": "The billing period duration unit",
|
|
4606
4606
|
"type": "string",
|
|
4607
4607
|
"enum": [
|
|
4608
|
+
"days",
|
|
4608
4609
|
"weeks",
|
|
4609
4610
|
"months",
|
|
4610
4611
|
"years"
|
|
@@ -4620,6 +4621,7 @@
|
|
|
4620
4621
|
"description": "The notice period duration unit",
|
|
4621
4622
|
"type": "string",
|
|
4622
4623
|
"enum": [
|
|
4624
|
+
"days",
|
|
4623
4625
|
"weeks",
|
|
4624
4626
|
"months",
|
|
4625
4627
|
"years"
|
|
@@ -4635,6 +4637,7 @@
|
|
|
4635
4637
|
"description": "The termination period duration unit",
|
|
4636
4638
|
"type": "string",
|
|
4637
4639
|
"enum": [
|
|
4640
|
+
"days",
|
|
4638
4641
|
"weeks",
|
|
4639
4642
|
"months",
|
|
4640
4643
|
"years"
|
|
@@ -4650,6 +4653,7 @@
|
|
|
4650
4653
|
"description": "The renewal period duration unit",
|
|
4651
4654
|
"type": "string",
|
|
4652
4655
|
"enum": [
|
|
4656
|
+
"days",
|
|
4653
4657
|
"weeks",
|
|
4654
4658
|
"months",
|
|
4655
4659
|
"years"
|
|
@@ -6856,8 +6860,6 @@
|
|
|
6856
6860
|
"description": "Total tax amount of items with same recurrence."
|
|
6857
6861
|
},
|
|
6858
6862
|
"tax": {
|
|
6859
|
-
"type": "object",
|
|
6860
|
-
"description": "The taxes applied to the price item.",
|
|
6861
6863
|
"$ref": "#/components/schemas/TaxAmountBreakdown"
|
|
6862
6864
|
}
|
|
6863
6865
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@epilot/pricing-client",
|
|
3
|
-
"version": "3.51.
|
|
3
|
+
"version": "3.51.1",
|
|
4
4
|
"description": "Client for epilot Pricing APIs",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -21,6 +21,18 @@
|
|
|
21
21
|
"cart",
|
|
22
22
|
"pricing"
|
|
23
23
|
],
|
|
24
|
+
"scripts": {
|
|
25
|
+
"test": "jest",
|
|
26
|
+
"bundle-definition": "webpack",
|
|
27
|
+
"openapi": "node ../../scripts/update-openapi.js https://docs.api.epilot.io/pricing-api.yaml",
|
|
28
|
+
"openapi:local": "node ../../scripts/update-openapi.js ../../../pricing-api/lambda/ApiHandlerFunction/openapi.yml",
|
|
29
|
+
"typegen": "openapi typegen src/openapi.json --client -b '/* eslint-disable */' > src/openapi.d.ts",
|
|
30
|
+
"build": "tsc && npm run build:patch && npm run bundle-definition",
|
|
31
|
+
"build:patch": "sed -i'' -e '/^__exportStar.*openapi.*$/d' dist/index.js",
|
|
32
|
+
"build:watch": "npm run build && tsc -w",
|
|
33
|
+
"prepublishOnly": "npm run typegen && npm run build",
|
|
34
|
+
"lint": "pnpm exec eslint src"
|
|
35
|
+
},
|
|
24
36
|
"files": [
|
|
25
37
|
"*.js",
|
|
26
38
|
"*.d.ts",
|
|
@@ -60,16 +72,5 @@
|
|
|
60
72
|
"webpack": "^5.18.0",
|
|
61
73
|
"webpack-cli": "^4.4.0"
|
|
62
74
|
},
|
|
63
|
-
"gitHead": "39426e86cfb320fa3227dc03f60ee6a10848e7c7"
|
|
64
|
-
|
|
65
|
-
"test": "jest",
|
|
66
|
-
"bundle-definition": "webpack",
|
|
67
|
-
"openapi": "node ../../scripts/update-openapi.js https://docs.api.epilot.io/pricing-api.yaml",
|
|
68
|
-
"openapi:local": "node ../../scripts/update-openapi.js ../../../pricing-api/lambda/ApiHandlerFunction/openapi.yml",
|
|
69
|
-
"typegen": "openapi typegen src/openapi.json --client -b '/* eslint-disable */' > src/openapi.d.ts",
|
|
70
|
-
"build": "tsc && npm run build:patch && npm run bundle-definition",
|
|
71
|
-
"build:patch": "sed -i'' -e '/^__exportStar.*openapi.*$/d' dist/index.js",
|
|
72
|
-
"build:watch": "npm run build && tsc -w",
|
|
73
|
-
"lint": "pnpm exec eslint src"
|
|
74
|
-
}
|
|
75
|
-
}
|
|
75
|
+
"gitHead": "39426e86cfb320fa3227dc03f60ee6a10848e7c7"
|
|
76
|
+
}
|
package/LICENSE
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
The MIT License (MIT)
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2025 epilot GmbH
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in
|
|
13
|
-
all copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
21
|
-
THE SOFTWARE.
|