@factpulse/sdk 3.0.13 → 3.0.15

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.
Files changed (24) hide show
  1. package/.openapi-generator/FILES +2 -2
  2. package/CHANGELOG.md +3 -3
  3. package/README.md +19 -17
  4. package/dist/esm/models/{facture-electronique-rest-api-schemas-convert-validation-error.d.ts → facture-electronique-rest-api-schemas-ereporting-validation-error.d.ts} +6 -14
  5. package/dist/esm/models/index.d.ts +1 -1
  6. package/dist/esm/models/index.js +1 -1
  7. package/dist/esm/models/validate-ereporting-response.d.ts +3 -3
  8. package/dist/esm/models/validation-info.d.ts +2 -2
  9. package/dist/models/{facture-electronique-rest-api-schemas-convert-validation-error.d.ts → facture-electronique-rest-api-schemas-ereporting-validation-error.d.ts} +6 -14
  10. package/dist/models/index.d.ts +1 -1
  11. package/dist/models/index.js +1 -1
  12. package/dist/models/validate-ereporting-response.d.ts +3 -3
  13. package/dist/models/validation-info.d.ts +2 -2
  14. package/docs/FactureElectroniqueRestApiSchemasEreportingValidationError.md +25 -0
  15. package/docs/ValidateEReportingResponse.md +2 -2
  16. package/docs/ValidationInfo.md +1 -1
  17. package/models/{facture-electronique-rest-api-schemas-convert-validation-error.ts → facture-electronique-rest-api-schemas-ereporting-validation-error.ts} +6 -14
  18. package/models/index.ts +1 -1
  19. package/models/validate-ereporting-response.ts +3 -3
  20. package/models/validation-info.ts +2 -2
  21. package/package.json +1 -1
  22. package/docs/FactureElectroniqueRestApiSchemasConvertValidationError.md +0 -35
  23. /package/dist/esm/models/{facture-electronique-rest-api-schemas-convert-validation-error.js → facture-electronique-rest-api-schemas-ereporting-validation-error.js} +0 -0
  24. /package/dist/models/{facture-electronique-rest-api-schemas-convert-validation-error.js → facture-electronique-rest-api-schemas-ereporting-validation-error.js} +0 -0
@@ -166,7 +166,7 @@ docs/ExtractionInfo.md
166
166
  docs/FacturXInvoice.md
167
167
  docs/FacturXPDFInfo.md
168
168
  docs/FactureElectroniqueModelsInvoiceTypeCode.md
169
- docs/FactureElectroniqueRestApiSchemasConvertValidationError.md
169
+ docs/FactureElectroniqueRestApiSchemasEreportingValidationError.md
170
170
  docs/FactureElectroniqueRestApiSchemasProcessingChorusProCredentials.md
171
171
  docs/FieldStatus.md
172
172
  docs/FileInfo.md
@@ -449,7 +449,7 @@ models/extraction-info.ts
449
449
  models/factur-xinvoice.ts
450
450
  models/factur-xpdfinfo.ts
451
451
  models/facture-electronique-models-invoice-type-code.ts
452
- models/facture-electronique-rest-api-schemas-convert-validation-error.ts
452
+ models/facture-electronique-rest-api-schemas-ereporting-validation-error.ts
453
453
  models/facture-electronique-rest-api-schemas-processing-chorus-pro-credentials.ts
454
454
  models/field-status.ts
455
455
  models/file-info.ts
package/CHANGELOG.md CHANGED
@@ -7,7 +7,7 @@ et ce projet adhère au [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
- ## [3.0.13] - 2026-01-14
10
+ ## [3.0.15] - 2026-01-14
11
11
 
12
12
  ### Added
13
13
  - Version initiale du SDK typescript
@@ -24,5 +24,5 @@ et ce projet adhère au [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
24
24
  - Guide d'authentification JWT
25
25
  - Configuration avancée (timeout, proxy, debug)
26
26
 
27
- [Unreleased]: https://github.com/factpulse/sdk-typescript/compare/v3.0.13...HEAD
28
- [3.0.13]: https://github.com/factpulse/sdk-typescript/releases/tag/v3.0.13
27
+ [Unreleased]: https://github.com/factpulse/sdk-typescript/compare/v3.0.15...HEAD
28
+ [3.0.15]: https://github.com/factpulse/sdk-typescript/releases/tag/v3.0.15
package/README.md CHANGED
@@ -26,7 +26,7 @@ The `helpers` module provides a simplified API with automatic authentication and
26
26
  import {
27
27
  FactPulseClient,
28
28
  amount,
29
- totalAmount,
29
+ invoiceTotals,
30
30
  invoiceLine,
31
31
  vatLine,
32
32
  supplier,
@@ -42,8 +42,10 @@ const client = new FactPulseClient({
42
42
 
43
43
  // Build the invoice with helpers
44
44
  const invoiceData = {
45
- number: 'INV-2025-001',
46
- date: '2025-01-15',
45
+ invoiceNumber: 'INV-2025-001',
46
+ issueDate: '2025-01-15',
47
+ dueDate: '2025-02-15',
48
+ currencyCode: 'EUR',
47
49
  supplier: supplier(
48
50
  'My Company SAS',
49
51
  '12345678901234',
@@ -58,7 +60,7 @@ const invoiceData = {
58
60
  '69001',
59
61
  'Lyon'
60
62
  ),
61
- totalAmount: totalAmount(1000.00, 200.00, 1200.00, 1200.00),
63
+ totals: invoiceTotals(1000.00, 200.00, 1200.00, 1200.00),
62
64
  lines: [
63
65
  invoiceLine(1, 'Consulting services', 10, 100.00, 1000.00)
64
66
  ],
@@ -91,21 +93,21 @@ amount("1234.56"); // "1234.56"
91
93
  amount(null); // "0.00"
92
94
  ```
93
95
 
94
- ### totalAmount(excludingTax, vat, includingTax, due, options?)
96
+ ### invoiceTotals(exclTax, vat, inclTax, amountDue, options?)
95
97
 
96
- Creates a complete TotalAmount object.
98
+ Creates a complete invoice totals object.
97
99
 
98
100
  ```typescript
99
- import { totalAmount } from '@factpulse/sdk/helpers';
101
+ import { invoiceTotals } from '@factpulse/sdk/helpers';
100
102
 
101
- const total = totalAmount(1000.00, 200.00, 1200.00, 1200.00, {
102
- discountIncludingTax: 50.00, // Optional
103
- discountReason: 'Loyalty', // Optional
104
- prepayment: 100.00, // Optional
103
+ const totals = invoiceTotals(1000.00, 200.00, 1200.00, 1200.00, {
104
+ globalAllowanceAmount: 50.00, // Optional
105
+ globalAllowanceReason: 'Loyalty', // Optional
106
+ prepayment: 100.00, // Optional
105
107
  });
106
108
  ```
107
109
 
108
- ### invoiceLine(number, description, quantity, unitPrice, lineTotal, options?)
110
+ ### invoiceLine(lineNumber, itemName, quantity, unitNetPrice, lineNetAmount, options?)
109
111
 
110
112
  Creates an invoice line.
111
113
 
@@ -117,17 +119,17 @@ const line = invoiceLine(
117
119
  'Consulting services',
118
120
  5,
119
121
  200.00,
120
- 1000.00, // lineTotal required
122
+ 1000.00,
121
123
  {
122
- vatRate: 'VAT20', // Or manualVatRate: '20.00'
124
+ vatRate: 'TVA20', // Or manualVatRate: '20.00'
123
125
  vatCategory: 'S', // S, Z, E, AE, K
124
- unit: 'HOUR', // PACKAGE, PIECE, HOUR, DAY...
126
+ unit: 'HOUR', // LUMP_SUM, PIECE, HOUR, DAY...
125
127
  reference: 'REF-001', // Optional
126
128
  }
127
129
  );
128
130
  ```
129
131
 
130
- ### vatLine(baseAmount, vatAmount, options?)
132
+ ### vatLine(taxableAmount, vatAmount, options?)
131
133
 
132
134
  Creates a VAT breakdown line.
133
135
 
@@ -135,7 +137,7 @@ Creates a VAT breakdown line.
135
137
  import { vatLine } from '@factpulse/sdk/helpers';
136
138
 
137
139
  const vat = vatLine(1000.00, 200.00, {
138
- rate: 'VAT20', // Or manualRate: '20.00'
140
+ rate: 'TVA20', // Or manualRate: '20.00'
139
141
  category: 'S', // S, Z, E, AE, K
140
142
  });
141
143
  ```
@@ -10,24 +10,16 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  /**
13
- * Erreur de validation Schematron avec suggestion de correction.
13
+ * Validation error detail.
14
14
  */
15
- export interface FactureElectroniqueRestApiSchemasConvertValidationError {
15
+ export interface FactureElectroniqueRestApiSchemasEreportingValidationError {
16
16
  /**
17
- * Code de la regle (BR-XX, BR-FR-XX)
17
+ * Field path with error
18
18
  */
19
- 'rule': string;
20
- 'bt_code'?: string | null;
19
+ 'field': string;
21
20
  /**
22
- * Gravite: error, warning
23
- */
24
- 'severity': string;
25
- /**
26
- * Message d\'erreur
21
+ * Error message
27
22
  */
28
23
  'message': string;
29
- 'suggested_value'?: string | null;
30
- 'suggested_field'?: string | null;
31
- 'explanation'?: string | null;
32
- 'confidence'?: number | null;
24
+ 'code'?: string | null;
33
25
  }
@@ -140,7 +140,7 @@ export * from './extraction-info';
140
140
  export * from './factur-xinvoice';
141
141
  export * from './factur-xpdfinfo';
142
142
  export * from './facture-electronique-models-invoice-type-code';
143
- export * from './facture-electronique-rest-api-schemas-convert-validation-error';
143
+ export * from './facture-electronique-rest-api-schemas-ereporting-validation-error';
144
144
  export * from './facture-electronique-rest-api-schemas-processing-chorus-pro-credentials';
145
145
  export * from './field-status';
146
146
  export * from './file-info';
@@ -140,7 +140,7 @@ export * from './extraction-info';
140
140
  export * from './factur-xinvoice';
141
141
  export * from './factur-xpdfinfo';
142
142
  export * from './facture-electronique-models-invoice-type-code';
143
- export * from './facture-electronique-rest-api-schemas-convert-validation-error';
143
+ export * from './facture-electronique-rest-api-schemas-ereporting-validation-error';
144
144
  export * from './facture-electronique-rest-api-schemas-processing-chorus-pro-credentials';
145
145
  export * from './field-status';
146
146
  export * from './file-info';
@@ -9,7 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
- import type { ValidationError } from './validation-error';
12
+ import type { FactureElectroniqueRestApiSchemasEreportingValidationError } from './facture-electronique-rest-api-schemas-ereporting-validation-error';
13
13
  /**
14
14
  * Response after validating e-reporting data.
15
15
  */
@@ -29,11 +29,11 @@ export interface ValidateEReportingResponse {
29
29
  /**
30
30
  * List of validation errors (if any)
31
31
  */
32
- 'errors'?: Array<ValidationError>;
32
+ 'errors'?: Array<FactureElectroniqueRestApiSchemasEreportingValidationError>;
33
33
  /**
34
34
  * List of validation warnings (if any)
35
35
  */
36
- 'warnings'?: Array<ValidationError>;
36
+ 'warnings'?: Array<FactureElectroniqueRestApiSchemasEreportingValidationError>;
37
37
  /**
38
38
  * Status message
39
39
  */
@@ -9,7 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
- import type { FactureElectroniqueRestApiSchemasConvertValidationError } from './facture-electronique-rest-api-schemas-convert-validation-error';
12
+ import type { ValidationError } from './validation-error';
13
13
  /**
14
14
  * Informations sur la validation.
15
15
  */
@@ -34,5 +34,5 @@ export interface ValidationInfo {
34
34
  * XML embarque dans PDF
35
35
  */
36
36
  'xml_embedded'?: boolean;
37
- 'errors'?: Array<FactureElectroniqueRestApiSchemasConvertValidationError>;
37
+ 'errors'?: Array<ValidationError>;
38
38
  }
@@ -10,24 +10,16 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  /**
13
- * Erreur de validation Schematron avec suggestion de correction.
13
+ * Validation error detail.
14
14
  */
15
- export interface FactureElectroniqueRestApiSchemasConvertValidationError {
15
+ export interface FactureElectroniqueRestApiSchemasEreportingValidationError {
16
16
  /**
17
- * Code de la regle (BR-XX, BR-FR-XX)
17
+ * Field path with error
18
18
  */
19
- 'rule': string;
20
- 'bt_code'?: string | null;
19
+ 'field': string;
21
20
  /**
22
- * Gravite: error, warning
23
- */
24
- 'severity': string;
25
- /**
26
- * Message d\'erreur
21
+ * Error message
27
22
  */
28
23
  'message': string;
29
- 'suggested_value'?: string | null;
30
- 'suggested_field'?: string | null;
31
- 'explanation'?: string | null;
32
- 'confidence'?: number | null;
24
+ 'code'?: string | null;
33
25
  }
@@ -140,7 +140,7 @@ export * from './extraction-info';
140
140
  export * from './factur-xinvoice';
141
141
  export * from './factur-xpdfinfo';
142
142
  export * from './facture-electronique-models-invoice-type-code';
143
- export * from './facture-electronique-rest-api-schemas-convert-validation-error';
143
+ export * from './facture-electronique-rest-api-schemas-ereporting-validation-error';
144
144
  export * from './facture-electronique-rest-api-schemas-processing-chorus-pro-credentials';
145
145
  export * from './field-status';
146
146
  export * from './file-info';
@@ -156,7 +156,7 @@ __exportStar(require("./extraction-info"), exports);
156
156
  __exportStar(require("./factur-xinvoice"), exports);
157
157
  __exportStar(require("./factur-xpdfinfo"), exports);
158
158
  __exportStar(require("./facture-electronique-models-invoice-type-code"), exports);
159
- __exportStar(require("./facture-electronique-rest-api-schemas-convert-validation-error"), exports);
159
+ __exportStar(require("./facture-electronique-rest-api-schemas-ereporting-validation-error"), exports);
160
160
  __exportStar(require("./facture-electronique-rest-api-schemas-processing-chorus-pro-credentials"), exports);
161
161
  __exportStar(require("./field-status"), exports);
162
162
  __exportStar(require("./file-info"), exports);
@@ -9,7 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
- import type { ValidationError } from './validation-error';
12
+ import type { FactureElectroniqueRestApiSchemasEreportingValidationError } from './facture-electronique-rest-api-schemas-ereporting-validation-error';
13
13
  /**
14
14
  * Response after validating e-reporting data.
15
15
  */
@@ -29,11 +29,11 @@ export interface ValidateEReportingResponse {
29
29
  /**
30
30
  * List of validation errors (if any)
31
31
  */
32
- 'errors'?: Array<ValidationError>;
32
+ 'errors'?: Array<FactureElectroniqueRestApiSchemasEreportingValidationError>;
33
33
  /**
34
34
  * List of validation warnings (if any)
35
35
  */
36
- 'warnings'?: Array<ValidationError>;
36
+ 'warnings'?: Array<FactureElectroniqueRestApiSchemasEreportingValidationError>;
37
37
  /**
38
38
  * Status message
39
39
  */
@@ -9,7 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
- import type { FactureElectroniqueRestApiSchemasConvertValidationError } from './facture-electronique-rest-api-schemas-convert-validation-error';
12
+ import type { ValidationError } from './validation-error';
13
13
  /**
14
14
  * Informations sur la validation.
15
15
  */
@@ -34,5 +34,5 @@ export interface ValidationInfo {
34
34
  * XML embarque dans PDF
35
35
  */
36
36
  'xml_embedded'?: boolean;
37
- 'errors'?: Array<FactureElectroniqueRestApiSchemasConvertValidationError>;
37
+ 'errors'?: Array<ValidationError>;
38
38
  }
@@ -0,0 +1,25 @@
1
+ # FactureElectroniqueRestApiSchemasEreportingValidationError
2
+
3
+ Validation error detail.
4
+
5
+ ## Properties
6
+
7
+ Name | Type | Description | Notes
8
+ ------------ | ------------- | ------------- | -------------
9
+ **field** | **string** | Field path with error | [default to undefined]
10
+ **message** | **string** | Error message | [default to undefined]
11
+ **code** | **string** | | [optional] [default to undefined]
12
+
13
+ ## Example
14
+
15
+ ```typescript
16
+ import { FactureElectroniqueRestApiSchemasEreportingValidationError } from '@factpulse/sdk';
17
+
18
+ const instance: FactureElectroniqueRestApiSchemasEreportingValidationError = {
19
+ field,
20
+ message,
21
+ code,
22
+ };
23
+ ```
24
+
25
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -9,8 +9,8 @@ Name | Type | Description | Notes
9
9
  **valid** | **boolean** | Whether the data is valid | [default to undefined]
10
10
  **reportId** | **string** | Report identifier | [default to undefined]
11
11
  **flowType** | **string** | Flux type | [default to undefined]
12
- **errors** | [**Array&lt;ValidationError&gt;**](ValidationError.md) | List of validation errors (if any) | [optional] [default to undefined]
13
- **warnings** | [**Array&lt;ValidationError&gt;**](ValidationError.md) | List of validation warnings (if any) | [optional] [default to undefined]
12
+ **errors** | [**Array&lt;FactureElectroniqueRestApiSchemasEreportingValidationError&gt;**](FactureElectroniqueRestApiSchemasEreportingValidationError.md) | List of validation errors (if any) | [optional] [default to undefined]
13
+ **warnings** | [**Array&lt;FactureElectroniqueRestApiSchemasEreportingValidationError&gt;**](FactureElectroniqueRestApiSchemasEreportingValidationError.md) | List of validation warnings (if any) | [optional] [default to undefined]
14
14
  **message** | **string** | Status message | [default to undefined]
15
15
 
16
16
  ## Example
@@ -11,7 +11,7 @@ Name | Type | Description | Notes
11
11
  **schematron_rules_total** | **number** | Total regles | [default to undefined]
12
12
  **pdfa_compliant** | **boolean** | PDF/A-3 conforme | [optional] [default to true]
13
13
  **xml_embedded** | **boolean** | XML embarque dans PDF | [optional] [default to true]
14
- **errors** | [**Array&lt;FactureElectroniqueRestApiSchemasConvertValidationError&gt;**](FactureElectroniqueRestApiSchemasConvertValidationError.md) | | [optional] [default to undefined]
14
+ **errors** | [**Array&lt;ValidationError&gt;**](ValidationError.md) | | [optional] [default to undefined]
15
15
 
16
16
  ## Example
17
17
 
@@ -15,25 +15,17 @@
15
15
 
16
16
 
17
17
  /**
18
- * Erreur de validation Schematron avec suggestion de correction.
18
+ * Validation error detail.
19
19
  */
20
- export interface FactureElectroniqueRestApiSchemasConvertValidationError {
20
+ export interface FactureElectroniqueRestApiSchemasEreportingValidationError {
21
21
  /**
22
- * Code de la regle (BR-XX, BR-FR-XX)
22
+ * Field path with error
23
23
  */
24
- 'rule': string;
25
- 'bt_code'?: string | null;
24
+ 'field': string;
26
25
  /**
27
- * Gravite: error, warning
28
- */
29
- 'severity': string;
30
- /**
31
- * Message d\'erreur
26
+ * Error message
32
27
  */
33
28
  'message': string;
34
- 'suggested_value'?: string | null;
35
- 'suggested_field'?: string | null;
36
- 'explanation'?: string | null;
37
- 'confidence'?: number | null;
29
+ 'code'?: string | null;
38
30
  }
39
31
 
package/models/index.ts CHANGED
@@ -140,7 +140,7 @@ export * from './extraction-info';
140
140
  export * from './factur-xinvoice';
141
141
  export * from './factur-xpdfinfo';
142
142
  export * from './facture-electronique-models-invoice-type-code';
143
- export * from './facture-electronique-rest-api-schemas-convert-validation-error';
143
+ export * from './facture-electronique-rest-api-schemas-ereporting-validation-error';
144
144
  export * from './facture-electronique-rest-api-schemas-processing-chorus-pro-credentials';
145
145
  export * from './field-status';
146
146
  export * from './file-info';
@@ -15,7 +15,7 @@
15
15
 
16
16
  // May contain unused imports in some cases
17
17
  // @ts-ignore
18
- import type { ValidationError } from './validation-error';
18
+ import type { FactureElectroniqueRestApiSchemasEreportingValidationError } from './facture-electronique-rest-api-schemas-ereporting-validation-error';
19
19
 
20
20
  /**
21
21
  * Response after validating e-reporting data.
@@ -36,11 +36,11 @@ export interface ValidateEReportingResponse {
36
36
  /**
37
37
  * List of validation errors (if any)
38
38
  */
39
- 'errors'?: Array<ValidationError>;
39
+ 'errors'?: Array<FactureElectroniqueRestApiSchemasEreportingValidationError>;
40
40
  /**
41
41
  * List of validation warnings (if any)
42
42
  */
43
- 'warnings'?: Array<ValidationError>;
43
+ 'warnings'?: Array<FactureElectroniqueRestApiSchemasEreportingValidationError>;
44
44
  /**
45
45
  * Status message
46
46
  */
@@ -15,7 +15,7 @@
15
15
 
16
16
  // May contain unused imports in some cases
17
17
  // @ts-ignore
18
- import type { FactureElectroniqueRestApiSchemasConvertValidationError } from './facture-electronique-rest-api-schemas-convert-validation-error';
18
+ import type { ValidationError } from './validation-error';
19
19
 
20
20
  /**
21
21
  * Informations sur la validation.
@@ -41,6 +41,6 @@ export interface ValidationInfo {
41
41
  * XML embarque dans PDF
42
42
  */
43
43
  'xml_embedded'?: boolean;
44
- 'errors'?: Array<FactureElectroniqueRestApiSchemasConvertValidationError>;
44
+ 'errors'?: Array<ValidationError>;
45
45
  }
46
46
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@factpulse/sdk",
3
- "version": "3.0.13",
3
+ "version": "3.0.15",
4
4
  "description": "OpenAPI client for @factpulse/sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
@@ -1,35 +0,0 @@
1
- # FactureElectroniqueRestApiSchemasConvertValidationError
2
-
3
- Erreur de validation Schematron avec suggestion de correction.
4
-
5
- ## Properties
6
-
7
- Name | Type | Description | Notes
8
- ------------ | ------------- | ------------- | -------------
9
- **rule** | **string** | Code de la regle (BR-XX, BR-FR-XX) | [default to undefined]
10
- **bt_code** | **string** | | [optional] [default to undefined]
11
- **severity** | **string** | Gravite: error, warning | [default to undefined]
12
- **message** | **string** | Message d\&#39;erreur | [default to undefined]
13
- **suggested_value** | **string** | | [optional] [default to undefined]
14
- **suggested_field** | **string** | | [optional] [default to undefined]
15
- **explanation** | **string** | | [optional] [default to undefined]
16
- **confidence** | **number** | | [optional] [default to undefined]
17
-
18
- ## Example
19
-
20
- ```typescript
21
- import { FactureElectroniqueRestApiSchemasConvertValidationError } from '@factpulse/sdk';
22
-
23
- const instance: FactureElectroniqueRestApiSchemasConvertValidationError = {
24
- rule,
25
- bt_code,
26
- severity,
27
- message,
28
- suggested_value,
29
- suggested_field,
30
- explanation,
31
- confidence,
32
- };
33
- ```
34
-
35
- [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)