@simpleapps-com/augur-api 0.8.6 → 0.8.7

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.
@@ -1,4 +1,4 @@
1
- export declare const VERSION = "0.8.6";
1
+ export declare const VERSION = "0.8.7";
2
2
  export { AugurAPI } from './client';
3
3
  export { authenticateUserForSite, createCrossSiteAuthenticator, type CrossSiteAuthParams, type CrossSiteAuthResult, } from './utils/cross-site-auth';
4
4
  export { AugurAPIConfig, RequestConfig, type AugurContext, ContextCreationError, } from './core/config';
package/dist/cjs/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.Basecamp2Client = exports.UPSClient = exports.SmartyStreetsClient = exports.SlackClient = exports.ShippingClient = exports.P21ApisClient = exports.LogisticsClient = exports.GregorovichClient = exports.BrandFolderClient = exports.AvalaraClient = exports.AgrWorkClient = exports.AgrInfoClient = exports.P21SismClient = exports.PaymentsClient = exports.P21PimClient = exports.OrdersClient = exports.CustomersClient = exports.AgrSiteClient = exports.LegacyClient = exports.NexusClient = exports.ItemsClient = exports.OpenSearchClient = exports.VMIClient = exports.PricingClient = exports.CommerceClient = exports.JoomlaClient = exports.PaginationParamsSchema = exports.HealthCheckDataSchema = exports.BaseResponseSchema = exports.RateLimitError = exports.NotFoundError = exports.AuthenticationError = exports.ValidationError = exports.AugurError = exports.ContextCreationError = exports.createCrossSiteAuthenticator = exports.authenticateUserForSite = exports.AugurAPI = exports.VERSION = void 0;
4
- exports.VERSION = '0.8.6';
4
+ exports.VERSION = '0.8.7';
5
5
  // Main client
6
6
  var client_1 = require("./client");
7
7
  Object.defineProperty(exports, "AugurAPI", { enumerable: true, get: function () { return client_1.AugurAPI; } });
@@ -193,7 +193,7 @@ export declare function createUsersDataResource(users: ReturnType<typeof createU
193
193
  username: string;
194
194
  email: string;
195
195
  isVerified: boolean;
196
- token: string;
196
+ token: string | false;
197
197
  } & {
198
198
  [k: string]: unknown;
199
199
  }>;
@@ -20,19 +20,19 @@ export declare const UsersVerifyPasswordDataSchema: z.ZodObject<{
20
20
  id: z.ZodNumber;
21
21
  isVerified: z.ZodBoolean;
22
22
  username: z.ZodString;
23
- token: z.ZodString;
23
+ token: z.ZodUnion<[z.ZodString, z.ZodLiteral<false>]>;
24
24
  email: z.ZodString;
25
25
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
26
26
  id: z.ZodNumber;
27
27
  isVerified: z.ZodBoolean;
28
28
  username: z.ZodString;
29
- token: z.ZodString;
29
+ token: z.ZodUnion<[z.ZodString, z.ZodLiteral<false>]>;
30
30
  email: z.ZodString;
31
31
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
32
32
  id: z.ZodNumber;
33
33
  isVerified: z.ZodBoolean;
34
34
  username: z.ZodString;
35
- token: z.ZodString;
35
+ token: z.ZodUnion<[z.ZodString, z.ZodLiteral<false>]>;
36
36
  email: z.ZodString;
37
37
  }, z.ZodTypeAny, "passthrough">>;
38
38
  export declare const UsersVerifyPasswordResponseSchema: z.ZodEffects<z.ZodObject<{
@@ -41,19 +41,19 @@ export declare const UsersVerifyPasswordResponseSchema: z.ZodEffects<z.ZodObject
41
41
  id: z.ZodNumber;
42
42
  isVerified: z.ZodBoolean;
43
43
  username: z.ZodString;
44
- token: z.ZodString;
44
+ token: z.ZodUnion<[z.ZodString, z.ZodLiteral<false>]>;
45
45
  email: z.ZodString;
46
46
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
47
47
  id: z.ZodNumber;
48
48
  isVerified: z.ZodBoolean;
49
49
  username: z.ZodString;
50
- token: z.ZodString;
50
+ token: z.ZodUnion<[z.ZodString, z.ZodLiteral<false>]>;
51
51
  email: z.ZodString;
52
52
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
53
53
  id: z.ZodNumber;
54
54
  isVerified: z.ZodBoolean;
55
55
  username: z.ZodString;
56
- token: z.ZodString;
56
+ token: z.ZodUnion<[z.ZodString, z.ZodLiteral<false>]>;
57
57
  email: z.ZodString;
58
58
  }, z.ZodTypeAny, "passthrough">>;
59
59
  message: z.ZodString;
@@ -69,7 +69,7 @@ export declare const UsersVerifyPasswordResponseSchema: z.ZodEffects<z.ZodObject
69
69
  username: string;
70
70
  email: string;
71
71
  isVerified: boolean;
72
- token: string;
72
+ token: string | false;
73
73
  } & {
74
74
  [k: string]: unknown;
75
75
  };
@@ -86,7 +86,7 @@ export declare const UsersVerifyPasswordResponseSchema: z.ZodEffects<z.ZodObject
86
86
  username: string;
87
87
  email: string;
88
88
  isVerified: boolean;
89
- token: string;
89
+ token: string | false;
90
90
  } & {
91
91
  [k: string]: unknown;
92
92
  };
@@ -103,7 +103,7 @@ export declare const UsersVerifyPasswordResponseSchema: z.ZodEffects<z.ZodObject
103
103
  username: string;
104
104
  email: string;
105
105
  isVerified: boolean;
106
- token: string;
106
+ token: string | false;
107
107
  } & {
108
108
  [k: string]: unknown;
109
109
  };
@@ -120,7 +120,7 @@ export declare const UsersVerifyPasswordResponseSchema: z.ZodEffects<z.ZodObject
120
120
  username: string;
121
121
  email: string;
122
122
  isVerified: boolean;
123
- token: string;
123
+ token: string | false;
124
124
  } & {
125
125
  [k: string]: unknown;
126
126
  };
@@ -19,7 +19,7 @@ exports.UsersVerifyPasswordDataSchema = zod_1.z
19
19
  id: zod_1.z.number(),
20
20
  isVerified: zod_1.z.boolean(),
21
21
  username: zod_1.z.string(),
22
- token: zod_1.z.string(),
22
+ token: zod_1.z.union([zod_1.z.string(), zod_1.z.literal(false)]),
23
23
  email: zod_1.z.string(),
24
24
  })
25
25
  .passthrough();
@@ -1 +1 @@
1
- {"version":3,"file":"usersVerifyPassword.js","sourceRoot":"","sources":["../../../../../src/services/joomla/schemas/usersVerifyPassword.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AACxB,mDAA2D;AAE3D;;;GAGG;AACU,QAAA,gCAAgC,GAAG,OAAC;KAC9C,MAAM,CAAC;IACN,QAAQ,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,sBAAsB,CAAC;IACnD,QAAQ,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,sBAAsB,CAAC;IACnD,MAAM,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAC9B,CAAC;KACD,WAAW,EAAE,CAAC;AAEJ,QAAA,6BAA6B,GAAG,OAAC;KAC3C,MAAM,CAAC;IACN,EAAE,EAAE,OAAC,CAAC,MAAM,EAAE;IACd,UAAU,EAAE,OAAC,CAAC,OAAO,EAAE;IACvB,QAAQ,EAAE,OAAC,CAAC,MAAM,EAAE;IACpB,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE;IACjB,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE;CAClB,CAAC;KACD,WAAW,EAAE,CAAC;AAEJ,QAAA,iCAAiC,GAAG,IAAA,4BAAkB,EAAC,qCAA6B,CAAC,CAAC"}
1
+ {"version":3,"file":"usersVerifyPassword.js","sourceRoot":"","sources":["../../../../../src/services/joomla/schemas/usersVerifyPassword.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AACxB,mDAA2D;AAE3D;;;GAGG;AACU,QAAA,gCAAgC,GAAG,OAAC;KAC9C,MAAM,CAAC;IACN,QAAQ,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,sBAAsB,CAAC;IACnD,QAAQ,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,sBAAsB,CAAC;IACnD,MAAM,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAC9B,CAAC;KACD,WAAW,EAAE,CAAC;AAEJ,QAAA,6BAA6B,GAAG,OAAC;KAC3C,MAAM,CAAC;IACN,EAAE,EAAE,OAAC,CAAC,MAAM,EAAE;IACd,UAAU,EAAE,OAAC,CAAC,OAAO,EAAE;IACvB,QAAQ,EAAE,OAAC,CAAC,MAAM,EAAE;IACpB,KAAK,EAAE,OAAC,CAAC,KAAK,CAAC,CAAC,OAAC,CAAC,MAAM,EAAE,EAAE,OAAC,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,CAAC;IAC9C,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE;CAClB,CAAC;KACD,WAAW,EAAE,CAAC;AAEJ,QAAA,iCAAiC,GAAG,IAAA,4BAAkB,EAAC,qCAA6B,CAAC,CAAC"}
@@ -1,4 +1,4 @@
1
- export declare const VERSION = "0.8.6";
1
+ export declare const VERSION = "0.8.7";
2
2
  export { AugurAPI } from './client';
3
3
  export { authenticateUserForSite, createCrossSiteAuthenticator, type CrossSiteAuthParams, type CrossSiteAuthResult, } from './utils/cross-site-auth';
4
4
  export { AugurAPIConfig, RequestConfig, type AugurContext, ContextCreationError, } from './core/config';
package/dist/esm/index.js CHANGED
@@ -1,4 +1,4 @@
1
- export const VERSION = '0.8.6';
1
+ export const VERSION = '0.8.7';
2
2
  // Main client
3
3
  export { AugurAPI } from './client';
4
4
  // Utilities
@@ -193,7 +193,7 @@ export declare function createUsersDataResource(users: ReturnType<typeof createU
193
193
  username: string;
194
194
  email: string;
195
195
  isVerified: boolean;
196
- token: string;
196
+ token: string | false;
197
197
  } & {
198
198
  [k: string]: unknown;
199
199
  }>;
@@ -20,19 +20,19 @@ export declare const UsersVerifyPasswordDataSchema: z.ZodObject<{
20
20
  id: z.ZodNumber;
21
21
  isVerified: z.ZodBoolean;
22
22
  username: z.ZodString;
23
- token: z.ZodString;
23
+ token: z.ZodUnion<[z.ZodString, z.ZodLiteral<false>]>;
24
24
  email: z.ZodString;
25
25
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
26
26
  id: z.ZodNumber;
27
27
  isVerified: z.ZodBoolean;
28
28
  username: z.ZodString;
29
- token: z.ZodString;
29
+ token: z.ZodUnion<[z.ZodString, z.ZodLiteral<false>]>;
30
30
  email: z.ZodString;
31
31
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
32
32
  id: z.ZodNumber;
33
33
  isVerified: z.ZodBoolean;
34
34
  username: z.ZodString;
35
- token: z.ZodString;
35
+ token: z.ZodUnion<[z.ZodString, z.ZodLiteral<false>]>;
36
36
  email: z.ZodString;
37
37
  }, z.ZodTypeAny, "passthrough">>;
38
38
  export declare const UsersVerifyPasswordResponseSchema: z.ZodEffects<z.ZodObject<{
@@ -41,19 +41,19 @@ export declare const UsersVerifyPasswordResponseSchema: z.ZodEffects<z.ZodObject
41
41
  id: z.ZodNumber;
42
42
  isVerified: z.ZodBoolean;
43
43
  username: z.ZodString;
44
- token: z.ZodString;
44
+ token: z.ZodUnion<[z.ZodString, z.ZodLiteral<false>]>;
45
45
  email: z.ZodString;
46
46
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
47
47
  id: z.ZodNumber;
48
48
  isVerified: z.ZodBoolean;
49
49
  username: z.ZodString;
50
- token: z.ZodString;
50
+ token: z.ZodUnion<[z.ZodString, z.ZodLiteral<false>]>;
51
51
  email: z.ZodString;
52
52
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
53
53
  id: z.ZodNumber;
54
54
  isVerified: z.ZodBoolean;
55
55
  username: z.ZodString;
56
- token: z.ZodString;
56
+ token: z.ZodUnion<[z.ZodString, z.ZodLiteral<false>]>;
57
57
  email: z.ZodString;
58
58
  }, z.ZodTypeAny, "passthrough">>;
59
59
  message: z.ZodString;
@@ -69,7 +69,7 @@ export declare const UsersVerifyPasswordResponseSchema: z.ZodEffects<z.ZodObject
69
69
  username: string;
70
70
  email: string;
71
71
  isVerified: boolean;
72
- token: string;
72
+ token: string | false;
73
73
  } & {
74
74
  [k: string]: unknown;
75
75
  };
@@ -86,7 +86,7 @@ export declare const UsersVerifyPasswordResponseSchema: z.ZodEffects<z.ZodObject
86
86
  username: string;
87
87
  email: string;
88
88
  isVerified: boolean;
89
- token: string;
89
+ token: string | false;
90
90
  } & {
91
91
  [k: string]: unknown;
92
92
  };
@@ -103,7 +103,7 @@ export declare const UsersVerifyPasswordResponseSchema: z.ZodEffects<z.ZodObject
103
103
  username: string;
104
104
  email: string;
105
105
  isVerified: boolean;
106
- token: string;
106
+ token: string | false;
107
107
  } & {
108
108
  [k: string]: unknown;
109
109
  };
@@ -120,7 +120,7 @@ export declare const UsersVerifyPasswordResponseSchema: z.ZodEffects<z.ZodObject
120
120
  username: string;
121
121
  email: string;
122
122
  isVerified: boolean;
123
- token: string;
123
+ token: string | false;
124
124
  } & {
125
125
  [k: string]: unknown;
126
126
  };
@@ -16,7 +16,7 @@ export const UsersVerifyPasswordDataSchema = z
16
16
  id: z.number(),
17
17
  isVerified: z.boolean(),
18
18
  username: z.string(),
19
- token: z.string(),
19
+ token: z.union([z.string(), z.literal(false)]),
20
20
  email: z.string(),
21
21
  })
22
22
  .passthrough();
@@ -1 +1 @@
1
- {"version":3,"file":"usersVerifyPassword.js","sourceRoot":"","sources":["../../../../../src/services/joomla/schemas/usersVerifyPassword.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,kBAAkB,EAAE,MAAM,uBAAuB,CAAC;AAE3D;;;GAGG;AACH,MAAM,CAAC,MAAM,gCAAgC,GAAG,CAAC;KAC9C,MAAM,CAAC;IACN,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,sBAAsB,CAAC;IACnD,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,sBAAsB,CAAC;IACnD,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAC9B,CAAC;KACD,WAAW,EAAE,CAAC;AAEjB,MAAM,CAAC,MAAM,6BAA6B,GAAG,CAAC;KAC3C,MAAM,CAAC;IACN,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE;IACd,UAAU,EAAE,CAAC,CAAC,OAAO,EAAE;IACvB,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE;IACpB,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;CAClB,CAAC;KACD,WAAW,EAAE,CAAC;AAEjB,MAAM,CAAC,MAAM,iCAAiC,GAAG,kBAAkB,CAAC,6BAA6B,CAAC,CAAC"}
1
+ {"version":3,"file":"usersVerifyPassword.js","sourceRoot":"","sources":["../../../../../src/services/joomla/schemas/usersVerifyPassword.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,kBAAkB,EAAE,MAAM,uBAAuB,CAAC;AAE3D;;;GAGG;AACH,MAAM,CAAC,MAAM,gCAAgC,GAAG,CAAC;KAC9C,MAAM,CAAC;IACN,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,sBAAsB,CAAC;IACnD,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,sBAAsB,CAAC;IACnD,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAC9B,CAAC;KACD,WAAW,EAAE,CAAC;AAEjB,MAAM,CAAC,MAAM,6BAA6B,GAAG,CAAC;KAC3C,MAAM,CAAC;IACN,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE;IACd,UAAU,EAAE,CAAC,CAAC,OAAO,EAAE;IACvB,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE;IACpB,KAAK,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,CAAC;IAC9C,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;CAClB,CAAC;KACD,WAAW,EAAE,CAAC;AAEjB,MAAM,CAAC,MAAM,iCAAiC,GAAG,kBAAkB,CAAC,6BAA6B,CAAC,CAAC"}
@@ -1,4 +1,4 @@
1
- export declare const VERSION = "0.8.6";
1
+ export declare const VERSION = "0.8.7";
2
2
  export { AugurAPI } from './client';
3
3
  export { authenticateUserForSite, createCrossSiteAuthenticator, type CrossSiteAuthParams, type CrossSiteAuthResult, } from './utils/cross-site-auth';
4
4
  export { AugurAPIConfig, RequestConfig, type AugurContext, ContextCreationError, } from './core/config';
@@ -193,7 +193,7 @@ export declare function createUsersDataResource(users: ReturnType<typeof createU
193
193
  username: string;
194
194
  email: string;
195
195
  isVerified: boolean;
196
- token: string;
196
+ token: string | false;
197
197
  } & {
198
198
  [k: string]: unknown;
199
199
  }>;
@@ -20,19 +20,19 @@ export declare const UsersVerifyPasswordDataSchema: z.ZodObject<{
20
20
  id: z.ZodNumber;
21
21
  isVerified: z.ZodBoolean;
22
22
  username: z.ZodString;
23
- token: z.ZodString;
23
+ token: z.ZodUnion<[z.ZodString, z.ZodLiteral<false>]>;
24
24
  email: z.ZodString;
25
25
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
26
26
  id: z.ZodNumber;
27
27
  isVerified: z.ZodBoolean;
28
28
  username: z.ZodString;
29
- token: z.ZodString;
29
+ token: z.ZodUnion<[z.ZodString, z.ZodLiteral<false>]>;
30
30
  email: z.ZodString;
31
31
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
32
32
  id: z.ZodNumber;
33
33
  isVerified: z.ZodBoolean;
34
34
  username: z.ZodString;
35
- token: z.ZodString;
35
+ token: z.ZodUnion<[z.ZodString, z.ZodLiteral<false>]>;
36
36
  email: z.ZodString;
37
37
  }, z.ZodTypeAny, "passthrough">>;
38
38
  export declare const UsersVerifyPasswordResponseSchema: z.ZodEffects<z.ZodObject<{
@@ -41,19 +41,19 @@ export declare const UsersVerifyPasswordResponseSchema: z.ZodEffects<z.ZodObject
41
41
  id: z.ZodNumber;
42
42
  isVerified: z.ZodBoolean;
43
43
  username: z.ZodString;
44
- token: z.ZodString;
44
+ token: z.ZodUnion<[z.ZodString, z.ZodLiteral<false>]>;
45
45
  email: z.ZodString;
46
46
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
47
47
  id: z.ZodNumber;
48
48
  isVerified: z.ZodBoolean;
49
49
  username: z.ZodString;
50
- token: z.ZodString;
50
+ token: z.ZodUnion<[z.ZodString, z.ZodLiteral<false>]>;
51
51
  email: z.ZodString;
52
52
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
53
53
  id: z.ZodNumber;
54
54
  isVerified: z.ZodBoolean;
55
55
  username: z.ZodString;
56
- token: z.ZodString;
56
+ token: z.ZodUnion<[z.ZodString, z.ZodLiteral<false>]>;
57
57
  email: z.ZodString;
58
58
  }, z.ZodTypeAny, "passthrough">>;
59
59
  message: z.ZodString;
@@ -69,7 +69,7 @@ export declare const UsersVerifyPasswordResponseSchema: z.ZodEffects<z.ZodObject
69
69
  username: string;
70
70
  email: string;
71
71
  isVerified: boolean;
72
- token: string;
72
+ token: string | false;
73
73
  } & {
74
74
  [k: string]: unknown;
75
75
  };
@@ -86,7 +86,7 @@ export declare const UsersVerifyPasswordResponseSchema: z.ZodEffects<z.ZodObject
86
86
  username: string;
87
87
  email: string;
88
88
  isVerified: boolean;
89
- token: string;
89
+ token: string | false;
90
90
  } & {
91
91
  [k: string]: unknown;
92
92
  };
@@ -103,7 +103,7 @@ export declare const UsersVerifyPasswordResponseSchema: z.ZodEffects<z.ZodObject
103
103
  username: string;
104
104
  email: string;
105
105
  isVerified: boolean;
106
- token: string;
106
+ token: string | false;
107
107
  } & {
108
108
  [k: string]: unknown;
109
109
  };
@@ -120,7 +120,7 @@ export declare const UsersVerifyPasswordResponseSchema: z.ZodEffects<z.ZodObject
120
120
  username: string;
121
121
  email: string;
122
122
  isVerified: boolean;
123
- token: string;
123
+ token: string | false;
124
124
  } & {
125
125
  [k: string]: unknown;
126
126
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simpleapps-com/augur-api",
3
- "version": "0.8.6",
3
+ "version": "0.8.7",
4
4
  "description": "TypeScript client library for Augur microservices API endpoints",
5
5
  "keywords": [
6
6
  "augur",