@pescheckit/pescheck-client-js 0.0.5 → 0.0.6

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 (46) hide show
  1. package/README.md +1 -1
  2. package/dist/ApiClient.js +5 -20
  3. package/dist/api/AuthenticationApi.js +1 -1
  4. package/dist/api/ChecksApi.js +1 -1
  5. package/dist/api/DivisionsApi.js +1 -1
  6. package/dist/api/OAuthApi.js +1 -1
  7. package/dist/api/ProfilesApi.js +1 -1
  8. package/dist/api/ScreeningsApi.js +1 -1
  9. package/dist/api/WebhooksApi.js +1 -1
  10. package/dist/model/CustomTokenObtainPair.js +1 -1
  11. package/dist/model/DivisionReadOnly.js +1 -1
  12. package/dist/model/DivisionWrite.js +1 -1
  13. package/dist/model/JWTGeneration.js +1 -1
  14. package/dist/model/JWTResponse.js +1 -1
  15. package/dist/model/OAuthApplication.js +1 -1
  16. package/dist/model/OAuthApplicationResponse.js +1 -1
  17. package/dist/model/PaginatedDivisionReadOnlyList.js +1 -1
  18. package/dist/model/PaginatedV2ProfileListItemList.js +1 -1
  19. package/dist/model/PaginatedV2ScreeningListItemList.js +1 -1
  20. package/dist/model/PatchedDivisionWrite.js +1 -1
  21. package/dist/model/PatchedV2ProfilePartialUpdate.js +1 -1
  22. package/dist/model/TokenRefresh.js +1 -1
  23. package/dist/model/V2Candidate.js +1 -1
  24. package/dist/model/V2CheckField.js +1 -1
  25. package/dist/model/V2CheckInfo.js +1 -1
  26. package/dist/model/V2Document.js +1 -1
  27. package/dist/model/V2DocumentContent.js +1 -1
  28. package/dist/model/V2Money.js +1 -1
  29. package/dist/model/V2ProfileCheck.js +1 -1
  30. package/dist/model/V2ProfileCheckEntry.js +1 -1
  31. package/dist/model/V2ProfileCreate.js +1 -1
  32. package/dist/model/V2ProfileDetail.js +1 -1
  33. package/dist/model/V2ProfileListItem.js +1 -1
  34. package/dist/model/V2ProfileUpdate.js +1 -1
  35. package/dist/model/V2ProfileUpdateCheck.js +1 -1
  36. package/dist/model/V2ScreeningCheck.js +1 -1
  37. package/dist/model/V2ScreeningCheckEntry.js +1 -1
  38. package/dist/model/V2ScreeningCheckListItem.js +1 -1
  39. package/dist/model/V2ScreeningCreate.js +1 -1
  40. package/dist/model/V2ScreeningDetail.js +1 -1
  41. package/dist/model/V2ScreeningDetailProfile.js +1 -1
  42. package/dist/model/V2ScreeningListItem.js +1 -1
  43. package/dist/model/VerifyWebhook.js +1 -1
  44. package/dist/model/Webhook.js +1 -1
  45. package/dist/model/WebhookResponse.js +1 -1
  46. package/package.json +1 -1
package/README.md CHANGED
@@ -5,7 +5,7 @@ Official client library for the Pescheck API (v2), generated from the OpenAPI sp
5
5
  This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
6
6
 
7
7
  - API version: 2.0.0
8
- - Package version: 0.0.5
8
+ - Package version: 0.0.6
9
9
  - Generator version: 7.23.0
10
10
  - Build package: org.openapitools.codegen.languages.JavascriptClientCodegen
11
11
 
package/dist/ApiClient.js CHANGED
@@ -25,7 +25,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
25
25
  */
26
26
  /**
27
27
  * @module ApiClient
28
- * @version 0.0.5
28
+ * @version 0.0.6
29
29
  */
30
30
  /**
31
31
  * Manages low level client-server communications, parameter marshalling, etc. There should not be any need for an
@@ -75,7 +75,7 @@ var ApiClient = /*#__PURE__*/function () {
75
75
  * @default {}
76
76
  */
77
77
  this.defaultHeaders = {
78
- 'User-Agent': 'OpenAPI-Generator/0.0.5/Javascript'
78
+ 'User-Agent': 'OpenAPI-Generator/0.0.6/Javascript'
79
79
  };
80
80
 
81
81
  /**
@@ -533,26 +533,11 @@ var ApiClient = /*#__PURE__*/function () {
533
533
  */
534
534
  function hostSettings() {
535
535
  return [{
536
- 'url': "{baseUrl}",
537
- 'description': "Current environment",
538
- 'variables': {
539
- baseUrl: {
540
- 'description': "API base URL",
541
- 'default_value': "https://api.pescheck.io"
542
- }
543
- }
544
- }, {
545
- 'url': "https://dash-test-api.pescheck.me",
546
- 'description': "Test server"
547
- }, {
548
536
  'url': "https://api.pescheck.io",
549
- 'description': "Production server"
550
- }, {
551
- 'url': "https://staging-api.pescheck.io",
552
- 'description': "Staging server"
537
+ 'description': "Production"
553
538
  }, {
554
- 'url': "http://localhost",
555
- 'description': "Local development server"
539
+ 'url': "https://api-staging.pescheck.io",
540
+ 'description': "Staging"
556
541
  }];
557
542
  }
558
543
  }, {
@@ -30,7 +30,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
30
30
  /**
31
31
  * Authentication service.
32
32
  * @module api/AuthenticationApi
33
- * @version 0.0.5
33
+ * @version 0.0.6
34
34
  */
35
35
  var AuthenticationApi = exports["default"] = /*#__PURE__*/function () {
36
36
  /**
@@ -27,7 +27,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
27
27
  /**
28
28
  * Checks service.
29
29
  * @module api/ChecksApi
30
- * @version 0.0.5
30
+ * @version 0.0.6
31
31
  */
32
32
  var ChecksApi = exports["default"] = /*#__PURE__*/function () {
33
33
  /**
@@ -30,7 +30,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
30
30
  /**
31
31
  * Divisions service.
32
32
  * @module api/DivisionsApi
33
- * @version 0.0.5
33
+ * @version 0.0.6
34
34
  */
35
35
  var DivisionsApi = exports["default"] = /*#__PURE__*/function () {
36
36
  /**
@@ -28,7 +28,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
28
28
  /**
29
29
  * OAuth service.
30
30
  * @module api/OAuthApi
31
- * @version 0.0.5
31
+ * @version 0.0.6
32
32
  */
33
33
  var OAuthApi = exports["default"] = /*#__PURE__*/function () {
34
34
  /**
@@ -31,7 +31,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
31
31
  /**
32
32
  * Profiles service.
33
33
  * @module api/ProfilesApi
34
- * @version 0.0.5
34
+ * @version 0.0.6
35
35
  */
36
36
  var ProfilesApi = exports["default"] = /*#__PURE__*/function () {
37
37
  /**
@@ -30,7 +30,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
30
30
  /**
31
31
  * Screenings service.
32
32
  * @module api/ScreeningsApi
33
- * @version 0.0.5
33
+ * @version 0.0.6
34
34
  */
35
35
  var ScreeningsApi = exports["default"] = /*#__PURE__*/function () {
36
36
  /**
@@ -29,7 +29,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
29
29
  /**
30
30
  * Webhooks service.
31
31
  * @module api/WebhooksApi
32
- * @version 0.0.5
32
+ * @version 0.0.6
33
33
  */
34
34
  var WebhooksApi = exports["default"] = /*#__PURE__*/function () {
35
35
  /**
@@ -29,7 +29,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
29
29
  /**
30
30
  * The CustomTokenObtainPair model module.
31
31
  * @module model/CustomTokenObtainPair
32
- * @version 0.0.5
32
+ * @version 0.0.6
33
33
  */
34
34
  var CustomTokenObtainPair = /*#__PURE__*/function () {
35
35
  /**
@@ -29,7 +29,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
29
29
  /**
30
30
  * The DivisionReadOnly model module.
31
31
  * @module model/DivisionReadOnly
32
- * @version 0.0.5
32
+ * @version 0.0.6
33
33
  */
34
34
  var DivisionReadOnly = /*#__PURE__*/function () {
35
35
  /**
@@ -29,7 +29,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
29
29
  /**
30
30
  * The DivisionWrite model module.
31
31
  * @module model/DivisionWrite
32
- * @version 0.0.5
32
+ * @version 0.0.6
33
33
  */
34
34
  var DivisionWrite = /*#__PURE__*/function () {
35
35
  /**
@@ -29,7 +29,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
29
29
  /**
30
30
  * The JWTGeneration model module.
31
31
  * @module model/JWTGeneration
32
- * @version 0.0.5
32
+ * @version 0.0.6
33
33
  */
34
34
  var JWTGeneration = /*#__PURE__*/function () {
35
35
  /**
@@ -29,7 +29,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
29
29
  /**
30
30
  * The JWTResponse model module.
31
31
  * @module model/JWTResponse
32
- * @version 0.0.5
32
+ * @version 0.0.6
33
33
  */
34
34
  var JWTResponse = /*#__PURE__*/function () {
35
35
  /**
@@ -29,7 +29,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
29
29
  /**
30
30
  * The OAuthApplication model module.
31
31
  * @module model/OAuthApplication
32
- * @version 0.0.5
32
+ * @version 0.0.6
33
33
  */
34
34
  var OAuthApplication = /*#__PURE__*/function () {
35
35
  /**
@@ -29,7 +29,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
29
29
  /**
30
30
  * The OAuthApplicationResponse model module.
31
31
  * @module model/OAuthApplicationResponse
32
- * @version 0.0.5
32
+ * @version 0.0.6
33
33
  */
34
34
  var OAuthApplicationResponse = /*#__PURE__*/function () {
35
35
  /**
@@ -30,7 +30,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
30
30
  /**
31
31
  * The PaginatedDivisionReadOnlyList model module.
32
32
  * @module model/PaginatedDivisionReadOnlyList
33
- * @version 0.0.5
33
+ * @version 0.0.6
34
34
  */
35
35
  var PaginatedDivisionReadOnlyList = /*#__PURE__*/function () {
36
36
  /**
@@ -30,7 +30,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
30
30
  /**
31
31
  * The PaginatedV2ProfileListItemList model module.
32
32
  * @module model/PaginatedV2ProfileListItemList
33
- * @version 0.0.5
33
+ * @version 0.0.6
34
34
  */
35
35
  var PaginatedV2ProfileListItemList = /*#__PURE__*/function () {
36
36
  /**
@@ -30,7 +30,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
30
30
  /**
31
31
  * The PaginatedV2ScreeningListItemList model module.
32
32
  * @module model/PaginatedV2ScreeningListItemList
33
- * @version 0.0.5
33
+ * @version 0.0.6
34
34
  */
35
35
  var PaginatedV2ScreeningListItemList = /*#__PURE__*/function () {
36
36
  /**
@@ -26,7 +26,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
26
26
  /**
27
27
  * The PatchedDivisionWrite model module.
28
28
  * @module model/PatchedDivisionWrite
29
- * @version 0.0.5
29
+ * @version 0.0.6
30
30
  */
31
31
  var PatchedDivisionWrite = /*#__PURE__*/function () {
32
32
  /**
@@ -26,7 +26,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
26
26
  /**
27
27
  * The PatchedV2ProfilePartialUpdate model module.
28
28
  * @module model/PatchedV2ProfilePartialUpdate
29
- * @version 0.0.5
29
+ * @version 0.0.6
30
30
  */
31
31
  var PatchedV2ProfilePartialUpdate = /*#__PURE__*/function () {
32
32
  /**
@@ -29,7 +29,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
29
29
  /**
30
30
  * The TokenRefresh model module.
31
31
  * @module model/TokenRefresh
32
- * @version 0.0.5
32
+ * @version 0.0.6
33
33
  */
34
34
  var TokenRefresh = /*#__PURE__*/function () {
35
35
  /**
@@ -29,7 +29,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
29
29
  /**
30
30
  * The V2Candidate model module.
31
31
  * @module model/V2Candidate
32
- * @version 0.0.5
32
+ * @version 0.0.6
33
33
  */
34
34
  var V2Candidate = /*#__PURE__*/function () {
35
35
  /**
@@ -29,7 +29,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
29
29
  /**
30
30
  * The V2CheckField model module.
31
31
  * @module model/V2CheckField
32
- * @version 0.0.5
32
+ * @version 0.0.6
33
33
  */
34
34
  var V2CheckField = /*#__PURE__*/function () {
35
35
  /**
@@ -31,7 +31,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
31
31
  /**
32
32
  * The V2CheckInfo model module.
33
33
  * @module model/V2CheckInfo
34
- * @version 0.0.5
34
+ * @version 0.0.6
35
35
  */
36
36
  var V2CheckInfo = /*#__PURE__*/function () {
37
37
  /**
@@ -30,7 +30,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
30
30
  /**
31
31
  * The V2Document model module.
32
32
  * @module model/V2Document
33
- * @version 0.0.5
33
+ * @version 0.0.6
34
34
  */
35
35
  var V2Document = /*#__PURE__*/function () {
36
36
  /**
@@ -29,7 +29,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
29
29
  /**
30
30
  * The V2DocumentContent model module.
31
31
  * @module model/V2DocumentContent
32
- * @version 0.0.5
32
+ * @version 0.0.6
33
33
  */
34
34
  var V2DocumentContent = /*#__PURE__*/function () {
35
35
  /**
@@ -29,7 +29,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
29
29
  /**
30
30
  * The V2Money model module.
31
31
  * @module model/V2Money
32
- * @version 0.0.5
32
+ * @version 0.0.6
33
33
  */
34
34
  var V2Money = /*#__PURE__*/function () {
35
35
  /**
@@ -29,7 +29,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
29
29
  /**
30
30
  * The V2ProfileCheck model module.
31
31
  * @module model/V2ProfileCheck
32
- * @version 0.0.5
32
+ * @version 0.0.6
33
33
  */
34
34
  var V2ProfileCheck = /*#__PURE__*/function () {
35
35
  /**
@@ -30,7 +30,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
30
30
  /**
31
31
  * The V2ProfileCheckEntry model module.
32
32
  * @module model/V2ProfileCheckEntry
33
- * @version 0.0.5
33
+ * @version 0.0.6
34
34
  */
35
35
  var V2ProfileCheckEntry = /*#__PURE__*/function () {
36
36
  /**
@@ -30,7 +30,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
30
30
  /**
31
31
  * The V2ProfileCreate model module.
32
32
  * @module model/V2ProfileCreate
33
- * @version 0.0.5
33
+ * @version 0.0.6
34
34
  */
35
35
  var V2ProfileCreate = /*#__PURE__*/function () {
36
36
  /**
@@ -31,7 +31,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
31
31
  /**
32
32
  * The V2ProfileDetail model module.
33
33
  * @module model/V2ProfileDetail
34
- * @version 0.0.5
34
+ * @version 0.0.6
35
35
  */
36
36
  var V2ProfileDetail = /*#__PURE__*/function () {
37
37
  /**
@@ -29,7 +29,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
29
29
  /**
30
30
  * The V2ProfileListItem model module.
31
31
  * @module model/V2ProfileListItem
32
- * @version 0.0.5
32
+ * @version 0.0.6
33
33
  */
34
34
  var V2ProfileListItem = /*#__PURE__*/function () {
35
35
  /**
@@ -30,7 +30,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
30
30
  /**
31
31
  * The V2ProfileUpdate model module.
32
32
  * @module model/V2ProfileUpdate
33
- * @version 0.0.5
33
+ * @version 0.0.6
34
34
  */
35
35
  var V2ProfileUpdate = /*#__PURE__*/function () {
36
36
  /**
@@ -29,7 +29,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
29
29
  /**
30
30
  * The V2ProfileUpdateCheck model module.
31
31
  * @module model/V2ProfileUpdateCheck
32
- * @version 0.0.5
32
+ * @version 0.0.6
33
33
  */
34
34
  var V2ProfileUpdateCheck = /*#__PURE__*/function () {
35
35
  /**
@@ -29,7 +29,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
29
29
  /**
30
30
  * The V2ScreeningCheck model module.
31
31
  * @module model/V2ScreeningCheck
32
- * @version 0.0.5
32
+ * @version 0.0.6
33
33
  */
34
34
  var V2ScreeningCheck = /*#__PURE__*/function () {
35
35
  /**
@@ -29,7 +29,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
29
29
  /**
30
30
  * The V2ScreeningCheckEntry model module.
31
31
  * @module model/V2ScreeningCheckEntry
32
- * @version 0.0.5
32
+ * @version 0.0.6
33
33
  */
34
34
  var V2ScreeningCheckEntry = /*#__PURE__*/function () {
35
35
  /**
@@ -29,7 +29,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
29
29
  /**
30
30
  * The V2ScreeningCheckListItem model module.
31
31
  * @module model/V2ScreeningCheckListItem
32
- * @version 0.0.5
32
+ * @version 0.0.6
33
33
  */
34
34
  var V2ScreeningCheckListItem = /*#__PURE__*/function () {
35
35
  /**
@@ -31,7 +31,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
31
31
  /**
32
32
  * The V2ScreeningCreate model module.
33
33
  * @module model/V2ScreeningCreate
34
- * @version 0.0.5
34
+ * @version 0.0.6
35
35
  */
36
36
  var V2ScreeningCreate = /*#__PURE__*/function () {
37
37
  /**
@@ -32,7 +32,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
32
32
  /**
33
33
  * The V2ScreeningDetail model module.
34
34
  * @module model/V2ScreeningDetail
35
- * @version 0.0.5
35
+ * @version 0.0.6
36
36
  */
37
37
  var V2ScreeningDetail = /*#__PURE__*/function () {
38
38
  /**
@@ -26,7 +26,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
26
26
  /**
27
27
  * The V2ScreeningDetailProfile model module.
28
28
  * @module model/V2ScreeningDetailProfile
29
- * @version 0.0.5
29
+ * @version 0.0.6
30
30
  */
31
31
  var V2ScreeningDetailProfile = /*#__PURE__*/function () {
32
32
  /**
@@ -32,7 +32,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
32
32
  /**
33
33
  * The V2ScreeningListItem model module.
34
34
  * @module model/V2ScreeningListItem
35
- * @version 0.0.5
35
+ * @version 0.0.6
36
36
  */
37
37
  var V2ScreeningListItem = /*#__PURE__*/function () {
38
38
  /**
@@ -29,7 +29,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
29
29
  /**
30
30
  * The VerifyWebhook model module.
31
31
  * @module model/VerifyWebhook
32
- * @version 0.0.5
32
+ * @version 0.0.6
33
33
  */
34
34
  var VerifyWebhook = /*#__PURE__*/function () {
35
35
  /**
@@ -29,7 +29,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
29
29
  /**
30
30
  * The Webhook model module.
31
31
  * @module model/Webhook
32
- * @version 0.0.5
32
+ * @version 0.0.6
33
33
  */
34
34
  var Webhook = /*#__PURE__*/function () {
35
35
  /**
@@ -29,7 +29,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
29
29
  /**
30
30
  * The WebhookResponse model module.
31
31
  * @module model/WebhookResponse
32
- * @version 0.0.5
32
+ * @version 0.0.6
33
33
  */
34
34
  var WebhookResponse = /*#__PURE__*/function () {
35
35
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pescheckit/pescheck-client-js",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "description": "Official client library for the Pescheck API (v2), generated from the OpenAPI specification. Authenticate with OAuth2 client credentials and use the checks, profiles, screenings, webhooks and divisions endpoints. See https://github.com/pescheckit/pescheck-clients for installation and usage.",
5
5
  "license": "Unlicense",
6
6
  "main": "dist/index.js",