@vouchsafe/node 0.1.3 → 0.1.5

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 (56) hide show
  1. package/README.md +6 -0
  2. package/dist/VouchsafeClient.d.ts +5 -0
  3. package/dist/VouchsafeClient.d.ts.map +1 -1
  4. package/dist/VouchsafeClient.js +8 -0
  5. package/dist/VouchsafeClient.js.map +1 -1
  6. package/dist/openapi/apis/FlowsApi.d.ts +38 -0
  7. package/dist/openapi/apis/FlowsApi.d.ts.map +1 -0
  8. package/dist/openapi/apis/FlowsApi.js +120 -0
  9. package/dist/openapi/apis/FlowsApi.js.map +1 -0
  10. package/dist/openapi/apis/SmartLookupsApi.d.ts +2 -2
  11. package/dist/openapi/apis/SmartLookupsApi.js +2 -2
  12. package/dist/openapi/apis/TeamApi.d.ts +39 -0
  13. package/dist/openapi/apis/TeamApi.d.ts.map +1 -0
  14. package/dist/openapi/apis/TeamApi.js +120 -0
  15. package/dist/openapi/apis/TeamApi.js.map +1 -0
  16. package/dist/openapi/apis/index.d.ts +2 -0
  17. package/dist/openapi/apis/index.d.ts.map +1 -1
  18. package/dist/openapi/apis/index.js +2 -0
  19. package/dist/openapi/apis/index.js.map +1 -1
  20. package/dist/openapi/models/CreateTeamInput.d.ts +58 -0
  21. package/dist/openapi/models/CreateTeamInput.d.ts.map +1 -0
  22. package/dist/openapi/models/CreateTeamInput.js +62 -0
  23. package/dist/openapi/models/CreateTeamInput.js.map +1 -0
  24. package/dist/openapi/models/CreateTeamResponse.d.ts +58 -0
  25. package/dist/openapi/models/CreateTeamResponse.d.ts.map +1 -0
  26. package/dist/openapi/models/CreateTeamResponse.js +66 -0
  27. package/dist/openapi/models/CreateTeamResponse.js.map +1 -0
  28. package/dist/openapi/models/CreateTeamResponseCredentials.d.ts +52 -0
  29. package/dist/openapi/models/CreateTeamResponseCredentials.d.ts.map +1 -0
  30. package/dist/openapi/models/CreateTeamResponseCredentials.js +64 -0
  31. package/dist/openapi/models/CreateTeamResponseCredentials.js.map +1 -0
  32. package/dist/openapi/models/Flow.d.ts +64 -0
  33. package/dist/openapi/models/Flow.d.ts.map +1 -0
  34. package/dist/openapi/models/Flow.js +67 -0
  35. package/dist/openapi/models/Flow.js.map +1 -0
  36. package/dist/openapi/models/FlowTemplate.d.ts +28 -0
  37. package/dist/openapi/models/FlowTemplate.d.ts.map +1 -0
  38. package/dist/openapi/models/FlowTemplate.js +54 -0
  39. package/dist/openapi/models/FlowTemplate.js.map +1 -0
  40. package/dist/openapi/models/Model36EnumsEnvironment.d.ts +26 -0
  41. package/dist/openapi/models/Model36EnumsEnvironment.d.ts.map +1 -0
  42. package/dist/openapi/models/Model36EnumsEnvironment.js +52 -0
  43. package/dist/openapi/models/Model36EnumsEnvironment.js.map +1 -0
  44. package/dist/openapi/models/RequestVerificationResponse.d.ts +6 -0
  45. package/dist/openapi/models/RequestVerificationResponse.d.ts.map +1 -1
  46. package/dist/openapi/models/RequestVerificationResponse.js +2 -0
  47. package/dist/openapi/models/RequestVerificationResponse.js.map +1 -1
  48. package/dist/openapi/models/Team.d.ts +79 -0
  49. package/dist/openapi/models/Team.d.ts.map +1 -0
  50. package/dist/openapi/models/Team.js +85 -0
  51. package/dist/openapi/models/Team.js.map +1 -0
  52. package/dist/openapi/models/index.d.ts +7 -0
  53. package/dist/openapi/models/index.d.ts.map +1 -1
  54. package/dist/openapi/models/index.js +7 -0
  55. package/dist/openapi/models/index.js.map +1 -1
  56. package/package.json +1 -1
@@ -0,0 +1,79 @@
1
+ /**
2
+ * Vouchsafe API docs
3
+ * Vouchsafe offers a REST API to conduct operations programmatically. You can request and manage verifications, as well as perform smart lookups. To use the API, you need a client ID and secret from the Vouchsafe dashboard. [Sign up here](https://app.vouchsafe.id/) if you haven\'t already. We also have a [video guide](https://www.youtube.com/playlist?list=PLx6V6SSTMuF_ZNWBPnysvwmdIwboLViE8) showing the basics, as well as [SDKs and libraries](https://help.vouchsafe.id/en/articles/12026847-vouchsafe-sdks-and-libraries) for popular languages.
4
+ *
5
+ * The version of the OpenAPI document: 0.1.0
6
+ * Contact: help@vouchsafe.id
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface Team
16
+ */
17
+ export interface Team {
18
+ /**
19
+ * The client ID of the team, as shown in the dashboard
20
+ * @type {string}
21
+ * @memberof Team
22
+ */
23
+ id: string;
24
+ /**
25
+ * The name of the team
26
+ * @type {string}
27
+ * @memberof Team
28
+ */
29
+ name: string;
30
+ /**
31
+ * The public name of the team, shown in end-user facing screens and communications. If set, overrides the name.
32
+ * @type {string}
33
+ * @memberof Team
34
+ */
35
+ public_name: string;
36
+ /**
37
+ * Which plan is the team on?
38
+ * @type {string}
39
+ * @memberof Team
40
+ */
41
+ plan: TeamPlanEnum;
42
+ /**
43
+ * Path to the team's logo image
44
+ * @type {string}
45
+ * @memberof Team
46
+ */
47
+ logo_url: string;
48
+ /**
49
+ * When the team's details were last changed, formatted as an ISO 8601 string
50
+ * @type {string}
51
+ * @memberof Team
52
+ */
53
+ updated_at: string;
54
+ /**
55
+ * When the team was created, formatted as an ISO 8601 string
56
+ * @type {string}
57
+ * @memberof Team
58
+ */
59
+ created_at: string;
60
+ }
61
+ /**
62
+ * @export
63
+ */
64
+ export declare const TeamPlanEnum: {
65
+ readonly Trial: "Trial";
66
+ readonly Payg: "PAYG";
67
+ readonly Flex: "Flex";
68
+ readonly Enterprise: "Enterprise";
69
+ };
70
+ export type TeamPlanEnum = typeof TeamPlanEnum[keyof typeof TeamPlanEnum];
71
+ /**
72
+ * Check if a given object implements the Team interface.
73
+ */
74
+ export declare function instanceOfTeam(value: object): value is Team;
75
+ export declare function TeamFromJSON(json: any): Team;
76
+ export declare function TeamFromJSONTyped(json: any, ignoreDiscriminator: boolean): Team;
77
+ export declare function TeamToJSON(json: any): Team;
78
+ export declare function TeamToJSONTyped(value?: Team | null, ignoreDiscriminator?: boolean): any;
79
+ //# sourceMappingURL=Team.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Team.d.ts","sourceRoot":"","sources":["../../../src/openapi/models/Team.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH;;;;GAIG;AACH,MAAM,WAAW,IAAI;IACjB;;;;OAIG;IACH,EAAE,EAAE,MAAM,CAAC;IACX;;;;OAIG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;;;OAIG;IACH,WAAW,EAAE,MAAM,CAAC;IACpB;;;;OAIG;IACH,IAAI,EAAE,YAAY,CAAC;IACnB;;;;OAIG;IACH,QAAQ,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,UAAU,EAAE,MAAM,CAAC;IACnB;;;;OAIG;IACH,UAAU,EAAE,MAAM,CAAC;CACtB;AAGD;;GAEG;AACH,eAAO,MAAM,YAAY;;;;;CAKf,CAAC;AACX,MAAM,MAAM,YAAY,GAAG,OAAO,YAAY,CAAC,MAAM,OAAO,YAAY,CAAC,CAAC;AAG1E;;GAEG;AACH,wBAAgB,cAAc,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,IAAI,CAS3D;AAED,wBAAgB,YAAY,CAAC,IAAI,EAAE,GAAG,GAAG,IAAI,CAE5C;AAED,wBAAgB,iBAAiB,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,IAAI,CAc/E;AAED,wBAAgB,UAAU,CAAC,IAAI,EAAE,GAAG,GAAG,IAAI,CAE1C;AAED,wBAAgB,eAAe,CAAC,KAAK,CAAC,EAAE,IAAI,GAAG,IAAI,EAAE,mBAAmB,GAAE,OAAe,GAAG,GAAG,CAe9F"}
@@ -0,0 +1,85 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Vouchsafe API docs
6
+ * Vouchsafe offers a REST API to conduct operations programmatically. You can request and manage verifications, as well as perform smart lookups. To use the API, you need a client ID and secret from the Vouchsafe dashboard. [Sign up here](https://app.vouchsafe.id/) if you haven\'t already. We also have a [video guide](https://www.youtube.com/playlist?list=PLx6V6SSTMuF_ZNWBPnysvwmdIwboLViE8) showing the basics, as well as [SDKs and libraries](https://help.vouchsafe.id/en/articles/12026847-vouchsafe-sdks-and-libraries) for popular languages.
7
+ *
8
+ * The version of the OpenAPI document: 0.1.0
9
+ * Contact: help@vouchsafe.id
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.TeamPlanEnum = void 0;
17
+ exports.instanceOfTeam = instanceOfTeam;
18
+ exports.TeamFromJSON = TeamFromJSON;
19
+ exports.TeamFromJSONTyped = TeamFromJSONTyped;
20
+ exports.TeamToJSON = TeamToJSON;
21
+ exports.TeamToJSONTyped = TeamToJSONTyped;
22
+ /**
23
+ * @export
24
+ */
25
+ exports.TeamPlanEnum = {
26
+ Trial: 'Trial',
27
+ Payg: 'PAYG',
28
+ Flex: 'Flex',
29
+ Enterprise: 'Enterprise'
30
+ };
31
+ /**
32
+ * Check if a given object implements the Team interface.
33
+ */
34
+ function instanceOfTeam(value) {
35
+ if (!('id' in value) || value['id'] === undefined)
36
+ return false;
37
+ if (!('name' in value) || value['name'] === undefined)
38
+ return false;
39
+ if (!('public_name' in value) || value['public_name'] === undefined)
40
+ return false;
41
+ if (!('plan' in value) || value['plan'] === undefined)
42
+ return false;
43
+ if (!('logo_url' in value) || value['logo_url'] === undefined)
44
+ return false;
45
+ if (!('updated_at' in value) || value['updated_at'] === undefined)
46
+ return false;
47
+ if (!('created_at' in value) || value['created_at'] === undefined)
48
+ return false;
49
+ return true;
50
+ }
51
+ function TeamFromJSON(json) {
52
+ return TeamFromJSONTyped(json, false);
53
+ }
54
+ function TeamFromJSONTyped(json, ignoreDiscriminator) {
55
+ if (json == null) {
56
+ return json;
57
+ }
58
+ return {
59
+ 'id': json['id'],
60
+ 'name': json['name'],
61
+ 'public_name': json['public_name'],
62
+ 'plan': json['plan'],
63
+ 'logo_url': json['logo_url'],
64
+ 'updated_at': json['updated_at'],
65
+ 'created_at': json['created_at'],
66
+ };
67
+ }
68
+ function TeamToJSON(json) {
69
+ return TeamToJSONTyped(json, false);
70
+ }
71
+ function TeamToJSONTyped(value, ignoreDiscriminator = false) {
72
+ if (value == null) {
73
+ return value;
74
+ }
75
+ return {
76
+ 'id': value['id'],
77
+ 'name': value['name'],
78
+ 'public_name': value['public_name'],
79
+ 'plan': value['plan'],
80
+ 'logo_url': value['logo_url'],
81
+ 'updated_at': value['updated_at'],
82
+ 'created_at': value['created_at'],
83
+ };
84
+ }
85
+ //# sourceMappingURL=Team.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Team.js","sourceRoot":"","sources":["../../../src/openapi/models/Team.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;;AAqEH,wCASC;AAED,oCAEC;AAED,8CAcC;AAED,gCAEC;AAED,0CAeC;AAjED;;GAEG;AACU,QAAA,YAAY,GAAG;IACxB,KAAK,EAAE,OAAO;IACd,IAAI,EAAE,MAAM;IACZ,IAAI,EAAE,MAAM;IACZ,UAAU,EAAE,YAAY;CAClB,CAAC;AAIX;;GAEG;AACH,SAAgB,cAAc,CAAC,KAAa;IACxC,IAAI,CAAC,CAAC,IAAI,IAAI,KAAK,CAAC,IAAI,KAAK,CAAC,IAAI,CAAC,KAAK,SAAS;QAAE,OAAO,KAAK,CAAC;IAChE,IAAI,CAAC,CAAC,MAAM,IAAI,KAAK,CAAC,IAAI,KAAK,CAAC,MAAM,CAAC,KAAK,SAAS;QAAE,OAAO,KAAK,CAAC;IACpE,IAAI,CAAC,CAAC,aAAa,IAAI,KAAK,CAAC,IAAI,KAAK,CAAC,aAAa,CAAC,KAAK,SAAS;QAAE,OAAO,KAAK,CAAC;IAClF,IAAI,CAAC,CAAC,MAAM,IAAI,KAAK,CAAC,IAAI,KAAK,CAAC,MAAM,CAAC,KAAK,SAAS;QAAE,OAAO,KAAK,CAAC;IACpE,IAAI,CAAC,CAAC,UAAU,IAAI,KAAK,CAAC,IAAI,KAAK,CAAC,UAAU,CAAC,KAAK,SAAS;QAAE,OAAO,KAAK,CAAC;IAC5E,IAAI,CAAC,CAAC,YAAY,IAAI,KAAK,CAAC,IAAI,KAAK,CAAC,YAAY,CAAC,KAAK,SAAS;QAAE,OAAO,KAAK,CAAC;IAChF,IAAI,CAAC,CAAC,YAAY,IAAI,KAAK,CAAC,IAAI,KAAK,CAAC,YAAY,CAAC,KAAK,SAAS;QAAE,OAAO,KAAK,CAAC;IAChF,OAAO,IAAI,CAAC;AAChB,CAAC;AAED,SAAgB,YAAY,CAAC,IAAS;IAClC,OAAO,iBAAiB,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AAC1C,CAAC;AAED,SAAgB,iBAAiB,CAAC,IAAS,EAAE,mBAA4B;IACrE,IAAI,IAAI,IAAI,IAAI,EAAE,CAAC;QACf,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,IAAI,EAAE,IAAI,CAAC,IAAI,CAAC;QAChB,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC;QACpB,aAAa,EAAE,IAAI,CAAC,aAAa,CAAC;QAClC,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC;QACpB,UAAU,EAAE,IAAI,CAAC,UAAU,CAAC;QAC5B,YAAY,EAAE,IAAI,CAAC,YAAY,CAAC;QAChC,YAAY,EAAE,IAAI,CAAC,YAAY,CAAC;KACnC,CAAC;AACN,CAAC;AAED,SAAgB,UAAU,CAAC,IAAS;IAChC,OAAO,eAAe,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACxC,CAAC;AAED,SAAgB,eAAe,CAAC,KAAmB,EAAE,sBAA+B,KAAK;IACrF,IAAI,KAAK,IAAI,IAAI,EAAE,CAAC;QAChB,OAAO,KAAK,CAAC;IACjB,CAAC;IAED,OAAO;QAEH,IAAI,EAAE,KAAK,CAAC,IAAI,CAAC;QACjB,MAAM,EAAE,KAAK,CAAC,MAAM,CAAC;QACrB,aAAa,EAAE,KAAK,CAAC,aAAa,CAAC;QACnC,MAAM,EAAE,KAAK,CAAC,MAAM,CAAC;QACrB,UAAU,EAAE,KAAK,CAAC,UAAU,CAAC;QAC7B,YAAY,EAAE,KAAK,CAAC,YAAY,CAAC;QACjC,YAAY,EAAE,KAAK,CAAC,YAAY,CAAC;KACpC,CAAC;AACN,CAAC"}
@@ -3,8 +3,14 @@ export * from './AuthenticateInput';
3
3
  export * from './AuthenticateResponse';
4
4
  export * from './CheckResult';
5
5
  export * from './CheckState';
6
+ export * from './CreateTeamInput';
7
+ export * from './CreateTeamResponse';
8
+ export * from './CreateTeamResponseCredentials';
9
+ export * from './Flow';
10
+ export * from './FlowTemplate';
6
11
  export * from './GetSmartLookupResponse';
7
12
  export * from './Model36EnumsBackgroundCheck';
13
+ export * from './Model36EnumsEnvironment';
8
14
  export * from './PostcodeResponse';
9
15
  export * from './Reason';
10
16
  export * from './RecordAddressVerificationChecksCheckResult';
@@ -13,5 +19,6 @@ export * from './RequestVerificationInput';
13
19
  export * from './RequestVerificationResponse';
14
20
  export * from './SmartLookupInput';
15
21
  export * from './Status';
22
+ export * from './Team';
16
23
  export * from './Verification';
17
24
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/openapi/models/index.ts"],"names":[],"mappings":"AAEA,cAAc,oBAAoB,CAAC;AACnC,cAAc,qBAAqB,CAAC;AACpC,cAAc,wBAAwB,CAAC;AACvC,cAAc,eAAe,CAAC;AAC9B,cAAc,cAAc,CAAC;AAC7B,cAAc,0BAA0B,CAAC;AACzC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,oBAAoB,CAAC;AACnC,cAAc,UAAU,CAAC;AACzB,cAAc,8CAA8C,CAAC;AAC7D,cAAc,UAAU,CAAC;AACzB,cAAc,4BAA4B,CAAC;AAC3C,cAAc,+BAA+B,CAAC;AAC9C,cAAc,oBAAoB,CAAC;AACnC,cAAc,UAAU,CAAC;AACzB,cAAc,gBAAgB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/openapi/models/index.ts"],"names":[],"mappings":"AAEA,cAAc,oBAAoB,CAAC;AACnC,cAAc,qBAAqB,CAAC;AACpC,cAAc,wBAAwB,CAAC;AACvC,cAAc,eAAe,CAAC;AAC9B,cAAc,cAAc,CAAC;AAC7B,cAAc,mBAAmB,CAAC;AAClC,cAAc,sBAAsB,CAAC;AACrC,cAAc,iCAAiC,CAAC;AAChD,cAAc,QAAQ,CAAC;AACvB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,0BAA0B,CAAC;AACzC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,oBAAoB,CAAC;AACnC,cAAc,UAAU,CAAC;AACzB,cAAc,8CAA8C,CAAC;AAC7D,cAAc,UAAU,CAAC;AACzB,cAAc,4BAA4B,CAAC;AAC3C,cAAc,+BAA+B,CAAC;AAC9C,cAAc,oBAAoB,CAAC;AACnC,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC;AACvB,cAAc,gBAAgB,CAAC"}
@@ -21,8 +21,14 @@ __exportStar(require("./AuthenticateInput"), exports);
21
21
  __exportStar(require("./AuthenticateResponse"), exports);
22
22
  __exportStar(require("./CheckResult"), exports);
23
23
  __exportStar(require("./CheckState"), exports);
24
+ __exportStar(require("./CreateTeamInput"), exports);
25
+ __exportStar(require("./CreateTeamResponse"), exports);
26
+ __exportStar(require("./CreateTeamResponseCredentials"), exports);
27
+ __exportStar(require("./Flow"), exports);
28
+ __exportStar(require("./FlowTemplate"), exports);
24
29
  __exportStar(require("./GetSmartLookupResponse"), exports);
25
30
  __exportStar(require("./Model36EnumsBackgroundCheck"), exports);
31
+ __exportStar(require("./Model36EnumsEnvironment"), exports);
26
32
  __exportStar(require("./PostcodeResponse"), exports);
27
33
  __exportStar(require("./Reason"), exports);
28
34
  __exportStar(require("./RecordAddressVerificationChecksCheckResult"), exports);
@@ -31,5 +37,6 @@ __exportStar(require("./RequestVerificationInput"), exports);
31
37
  __exportStar(require("./RequestVerificationResponse"), exports);
32
38
  __exportStar(require("./SmartLookupInput"), exports);
33
39
  __exportStar(require("./Status"), exports);
40
+ __exportStar(require("./Team"), exports);
34
41
  __exportStar(require("./Verification"), exports);
35
42
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/openapi/models/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,oBAAoB;AACpB,oBAAoB;AACpB,qDAAmC;AACnC,sDAAoC;AACpC,yDAAuC;AACvC,gDAA8B;AAC9B,+CAA6B;AAC7B,2DAAyC;AACzC,gEAA8C;AAC9C,qDAAmC;AACnC,2CAAyB;AACzB,+EAA6D;AAC7D,2CAAyB;AACzB,6DAA2C;AAC3C,gEAA8C;AAC9C,qDAAmC;AACnC,2CAAyB;AACzB,iDAA+B"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/openapi/models/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,oBAAoB;AACpB,oBAAoB;AACpB,qDAAmC;AACnC,sDAAoC;AACpC,yDAAuC;AACvC,gDAA8B;AAC9B,+CAA6B;AAC7B,oDAAkC;AAClC,uDAAqC;AACrC,kEAAgD;AAChD,yCAAuB;AACvB,iDAA+B;AAC/B,2DAAyC;AACzC,gEAA8C;AAC9C,4DAA0C;AAC1C,qDAAmC;AACnC,2CAAyB;AACzB,+EAA6D;AAC7D,2CAAyB;AACzB,6DAA2C;AAC3C,gEAA8C;AAC9C,qDAAmC;AACnC,2CAAyB;AACzB,yCAAuB;AACvB,iDAA+B"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vouchsafe/node",
3
- "version": "0.1.3",
3
+ "version": "0.1.5",
4
4
  "description": "Official TypeScript and Node.js library for the Vouchsafe identity platform. Use it for easy KYC checks, identity verification, remote right-to-work and more.",
5
5
  "keywords": [
6
6
  "vouchsafe",