@emilgroup/public-api-sdk 1.0.0 → 1.2.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.
Files changed (38) hide show
  1. package/.openapi-generator/FILES +3 -0
  2. package/README.md +2 -2
  3. package/api/products-api.ts +174 -0
  4. package/dist/api/products-api.d.ts +101 -0
  5. package/dist/api/products-api.js +123 -0
  6. package/dist/models/create-account-request-dto.d.ts +20 -3
  7. package/dist/models/create-account-request-dto.js +5 -1
  8. package/dist/models/create-bank-account-request-dto.d.ts +1 -1
  9. package/dist/models/create-document-request-dto.d.ts +1 -1
  10. package/dist/models/create-estimated-invoice-response-class.d.ts +1 -1
  11. package/dist/models/document-class.d.ts +1 -1
  12. package/dist/models/index.d.ts +3 -0
  13. package/dist/models/index.js +3 -0
  14. package/dist/models/insured-object-type-class.d.ts +1 -1
  15. package/dist/models/lead-class.d.ts +4 -4
  16. package/dist/models/list-products-response-class.d.ts +31 -0
  17. package/dist/models/list-products-response-class.js +15 -0
  18. package/dist/models/premium-override-dto.d.ts +1 -0
  19. package/dist/models/premium-override-dto.js +2 -1
  20. package/dist/models/product-class.d.ts +74 -0
  21. package/dist/models/product-class.js +15 -0
  22. package/dist/models/product-version-class.d.ts +61 -0
  23. package/dist/models/product-version-class.js +22 -0
  24. package/dist/models/send-notification-request-dto.d.ts +1 -1
  25. package/models/create-account-request-dto.ts +21 -3
  26. package/models/create-bank-account-request-dto.ts +1 -1
  27. package/models/create-document-request-dto.ts +1 -1
  28. package/models/create-estimated-invoice-response-class.ts +1 -1
  29. package/models/document-class.ts +1 -1
  30. package/models/index.ts +3 -0
  31. package/models/insured-object-type-class.ts +1 -1
  32. package/models/lead-class.ts +4 -4
  33. package/models/list-products-response-class.ts +37 -0
  34. package/models/premium-override-dto.ts +2 -1
  35. package/models/product-class.ts +80 -0
  36. package/models/product-version-class.ts +70 -0
  37. package/models/send-notification-request-dto.ts +1 -1
  38. package/package.json +1 -2
@@ -21,7 +21,7 @@
21
21
  */
22
22
  export interface SendNotificationRequestDto {
23
23
  /**
24
- * A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id. In this case, the template used for the email.
24
+ * A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
25
25
  * @type {string}
26
26
  * @memberof SendNotificationRequestDto
27
27
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emilgroup/public-api-sdk",
3
- "version": "1.0.0",
3
+ "version": "1.2.0",
4
4
  "description": "OpenAPI client for @emilgroup/public-api-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [
@@ -21,7 +21,6 @@
21
21
  "axios": "^0.27.2"
22
22
  },
23
23
  "devDependencies": {
24
-
25
24
  "typescript": "^4.0"
26
25
  }
27
26
  }