@polar-sh/sdk 0.17.2 → 0.17.4

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/docs/sdks/files/README.md +5 -1
  2. package/funcs/filesCreate.js +1 -1
  3. package/funcs/filesDelete.d.ts +1 -1
  4. package/funcs/filesDelete.d.ts.map +1 -1
  5. package/funcs/filesDelete.js +1 -1
  6. package/funcs/filesDelete.js.map +1 -1
  7. package/funcs/filesUpdate.d.ts +1 -1
  8. package/funcs/filesUpdate.d.ts.map +1 -1
  9. package/funcs/filesUpdate.js +2 -2
  10. package/funcs/filesUpdate.js.map +1 -1
  11. package/funcs/filesUploaded.d.ts +1 -1
  12. package/funcs/filesUploaded.d.ts.map +1 -1
  13. package/funcs/filesUploaded.js +2 -2
  14. package/funcs/filesUploaded.js.map +1 -1
  15. package/lib/config.d.ts +2 -2
  16. package/lib/config.js +2 -2
  17. package/models/errors/alreadycanceledsubscription.d.ts +10 -10
  18. package/models/errors/alreadycanceledsubscription.d.ts.map +1 -1
  19. package/models/errors/alreadycanceledsubscription.js +14 -14
  20. package/models/errors/alreadycanceledsubscription.js.map +1 -1
  21. package/models/errors/index.d.ts +0 -1
  22. package/models/errors/index.d.ts.map +1 -1
  23. package/models/errors/index.js +0 -1
  24. package/models/errors/index.js.map +1 -1
  25. package/models/errors/notpermitted.d.ts +10 -10
  26. package/models/errors/notpermitted.d.ts.map +1 -1
  27. package/models/errors/notpermitted.js +14 -14
  28. package/models/errors/notpermitted.js.map +1 -1
  29. package/models/errors/resourcenotfound.d.ts +10 -10
  30. package/models/errors/resourcenotfound.d.ts.map +1 -1
  31. package/models/errors/resourcenotfound.js +15 -14
  32. package/models/errors/resourcenotfound.js.map +1 -1
  33. package/models/errors/unauthorized.d.ts +10 -10
  34. package/models/errors/unauthorized.d.ts.map +1 -1
  35. package/models/errors/unauthorized.js +14 -14
  36. package/models/errors/unauthorized.js.map +1 -1
  37. package/models/operations/filesupdate.d.ts +1 -1
  38. package/models/operations/filesuploaded.d.ts +1 -1
  39. package/package.json +1 -1
  40. package/src/funcs/filesCreate.ts +1 -1
  41. package/src/funcs/filesDelete.ts +3 -3
  42. package/src/funcs/filesUpdate.ts +7 -1
  43. package/src/funcs/filesUploaded.ts +7 -1
  44. package/src/lib/config.ts +2 -2
  45. package/src/models/errors/alreadycanceledsubscription.ts +20 -20
  46. package/src/models/errors/index.ts +0 -1
  47. package/src/models/errors/notpermitted.ts +19 -19
  48. package/src/models/errors/resourcenotfound.ts +17 -18
  49. package/src/models/errors/unauthorized.ts +19 -19
  50. package/src/models/operations/filesupdate.ts +1 -1
  51. package/src/models/operations/filesuploaded.ts +1 -1
  52. package/models/errors/filenotfound.d.ts +0 -57
  53. package/models/errors/filenotfound.d.ts.map +0 -1
  54. package/models/errors/filenotfound.js +0 -88
  55. package/models/errors/filenotfound.js.map +0 -1
  56. package/src/models/errors/filenotfound.ts +0 -102
@@ -26,9 +26,9 @@ var __importStar = (this && this.__importStar) || function (mod) {
26
26
  return result;
27
27
  };
28
28
  Object.defineProperty(exports, "__esModule", { value: true });
29
- exports.ResourceNotFound$ = exports.ResourceNotFound$outboundSchema = exports.ResourceNotFound$inboundSchema = exports.Type$ = exports.Type$outboundSchema = exports.Type$inboundSchema = exports.ResourceNotFound = exports.Type = void 0;
29
+ exports.ResourceNotFound$ = exports.ResourceNotFound$outboundSchema = exports.ResourceNotFound$inboundSchema = exports.ErrorT$ = exports.ErrorT$outboundSchema = exports.ErrorT$inboundSchema = exports.ResourceNotFound = exports.ErrorT = void 0;
30
30
  const z = __importStar(require("zod"));
31
- exports.Type = {
31
+ exports.ErrorT = {
32
32
  ResourceNotFound: "ResourceNotFound",
33
33
  };
34
34
  class ResourceNotFound extends Error {
@@ -38,30 +38,31 @@ class ResourceNotFound extends Error {
38
38
  : `API error occurred: ${JSON.stringify(err)}`;
39
39
  super(message);
40
40
  this.data$ = err;
41
- this.type = err.type;
41
+ this.error = err.error;
42
42
  this.detail = err.detail;
43
43
  this.name = "ResourceNotFound";
44
44
  }
45
45
  }
46
46
  exports.ResourceNotFound = ResourceNotFound;
47
47
  /** @internal */
48
- exports.Type$inboundSchema = z.nativeEnum(exports.Type);
48
+ exports.ErrorT$inboundSchema = z
49
+ .nativeEnum(exports.ErrorT);
49
50
  /** @internal */
50
- exports.Type$outboundSchema = exports.Type$inboundSchema;
51
+ exports.ErrorT$outboundSchema = exports.ErrorT$inboundSchema;
51
52
  /**
52
53
  * @internal
53
54
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
54
55
  */
55
- var Type$;
56
- (function (Type$) {
57
- /** @deprecated use `Type$inboundSchema` instead. */
58
- Type$.inboundSchema = exports.Type$inboundSchema;
59
- /** @deprecated use `Type$outboundSchema` instead. */
60
- Type$.outboundSchema = exports.Type$outboundSchema;
61
- })(Type$ || (exports.Type$ = Type$ = {}));
56
+ var ErrorT$;
57
+ (function (ErrorT$) {
58
+ /** @deprecated use `ErrorT$inboundSchema` instead. */
59
+ ErrorT$.inboundSchema = exports.ErrorT$inboundSchema;
60
+ /** @deprecated use `ErrorT$outboundSchema` instead. */
61
+ ErrorT$.outboundSchema = exports.ErrorT$outboundSchema;
62
+ })(ErrorT$ || (exports.ErrorT$ = ErrorT$ = {}));
62
63
  /** @internal */
63
64
  exports.ResourceNotFound$inboundSchema = z.object({
64
- type: z.literal("ResourceNotFound"),
65
+ error: z.literal("ResourceNotFound"),
65
66
  detail: z.string(),
66
67
  })
67
68
  .transform((v) => {
@@ -71,7 +72,7 @@ exports.ResourceNotFound$inboundSchema = z.object({
71
72
  exports.ResourceNotFound$outboundSchema = z.instanceof(ResourceNotFound)
72
73
  .transform(v => v.data$)
73
74
  .pipe(z.object({
74
- type: z.literal("ResourceNotFound").default("ResourceNotFound"),
75
+ error: z.literal("ResourceNotFound").default("ResourceNotFound"),
75
76
  detail: z.string(),
76
77
  }));
77
78
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"resourcenotfound.js","sourceRoot":"","sources":["../../src/models/errors/resourcenotfound.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AAGZ,QAAA,IAAI,GAAG;IAClB,gBAAgB,EAAE,kBAAkB;CAC5B,CAAC;AAQX,MAAa,gBAAiB,SAAQ,KAAK;IAOzC,YAAY,GAAyB;QACnC,MAAM,OAAO,GAAG,SAAS,IAAI,GAAG,IAAI,OAAO,GAAG,CAAC,OAAO,KAAK,QAAQ;YACjE,CAAC,CAAC,GAAG,CAAC,OAAO;YACb,CAAC,CAAC,uBAAuB,IAAI,CAAC,SAAS,CAAC,GAAG,CAAC,EAAE,CAAC;QACjD,KAAK,CAAC,OAAO,CAAC,CAAC;QACf,IAAI,CAAC,KAAK,GAAG,GAAG,CAAC;QAEjB,IAAI,CAAC,IAAI,GAAG,GAAG,CAAC,IAAI,CAAC;QACrB,IAAI,CAAC,MAAM,GAAG,GAAG,CAAC,MAAM,CAAC;QAEzB,IAAI,CAAC,IAAI,GAAG,kBAAkB,CAAC;IACjC,CAAC;CACF;AAnBD,4CAmBC;AAED,gBAAgB;AACH,QAAA,kBAAkB,GAAiC,CAAC,CAAC,UAAU,CAC1E,YAAI,CACL,CAAC;AAEF,gBAAgB;AACH,QAAA,mBAAmB,GAC9B,0BAAkB,CAAC;AAErB;;;GAGG;AACH,IAAiB,KAAK,CAKrB;AALD,WAAiB,KAAK;IACpB,oDAAoD;IACvC,mBAAa,GAAG,0BAAkB,CAAC;IAChD,qDAAqD;IACxC,oBAAc,GAAG,2BAAmB,CAAC;AACpD,CAAC,EALgB,KAAK,qBAAL,KAAK,QAKrB;AAED,gBAAgB;AACH,QAAA,8BAA8B,GAIvC,CAAC,CAAC,MAAM,CAAC;IACX,IAAI,EAAE,CAAC,CAAC,OAAO,CAAC,kBAAkB,CAAC;IACnC,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE;CACnB,CAAC;KACC,SAAS,CAAC,CAAC,CAAC,EAAE,EAAE;IACf,OAAO,IAAI,gBAAgB,CAAC,CAAC,CAAC,CAAC;AACjC,CAAC,CAAC,CAAC;AAQL,gBAAgB;AACH,QAAA,+BAA+B,GAIxC,CAAC,CAAC,UAAU,CAAC,gBAAgB,CAAC;KAC/B,SAAS,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,KAAK,CAAC;KACvB,IAAI,CAAC,CAAC,CAAC,MAAM,CAAC;IACb,IAAI,EAAE,CAAC,CAAC,OAAO,CAAC,kBAAkB,CAAC,CAAC,OAAO,CAAC,kBAAkB,CAAC;IAC/D,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE;CACnB,CAAC,CAAC,CAAC;AAEN;;;GAGG;AACH,IAAiB,iBAAiB,CAOjC;AAPD,WAAiB,iBAAiB;IAChC,gEAAgE;IACnD,+BAAa,GAAG,sCAA8B,CAAC;IAC5D,iEAAiE;IACpD,gCAAc,GAAG,uCAA+B,CAAC;AAGhE,CAAC,EAPgB,iBAAiB,iCAAjB,iBAAiB,QAOjC"}
1
+ {"version":3,"file":"resourcenotfound.js","sourceRoot":"","sources":["../../src/models/errors/resourcenotfound.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AAGZ,QAAA,MAAM,GAAG;IACpB,gBAAgB,EAAE,kBAAkB;CAC5B,CAAC;AAQX,MAAa,gBAAiB,SAAQ,KAAK;IAOzC,YAAY,GAAyB;QACnC,MAAM,OAAO,GAAG,SAAS,IAAI,GAAG,IAAI,OAAO,GAAG,CAAC,OAAO,KAAK,QAAQ;YACjE,CAAC,CAAC,GAAG,CAAC,OAAO;YACb,CAAC,CAAC,uBAAuB,IAAI,CAAC,SAAS,CAAC,GAAG,CAAC,EAAE,CAAC;QACjD,KAAK,CAAC,OAAO,CAAC,CAAC;QACf,IAAI,CAAC,KAAK,GAAG,GAAG,CAAC;QAEjB,IAAI,CAAC,KAAK,GAAG,GAAG,CAAC,KAAK,CAAC;QACvB,IAAI,CAAC,MAAM,GAAG,GAAG,CAAC,MAAM,CAAC;QAEzB,IAAI,CAAC,IAAI,GAAG,kBAAkB,CAAC;IACjC,CAAC;CACF;AAnBD,4CAmBC;AAED,gBAAgB;AACH,QAAA,oBAAoB,GAAmC,CAAC;KAClE,UAAU,CAAC,cAAM,CAAC,CAAC;AAEtB,gBAAgB;AACH,QAAA,qBAAqB,GAChC,4BAAoB,CAAC;AAEvB;;;GAGG;AACH,IAAiB,OAAO,CAKvB;AALD,WAAiB,OAAO;IACtB,sDAAsD;IACzC,qBAAa,GAAG,4BAAoB,CAAC;IAClD,uDAAuD;IAC1C,sBAAc,GAAG,6BAAqB,CAAC;AACtD,CAAC,EALgB,OAAO,uBAAP,OAAO,QAKvB;AAED,gBAAgB;AACH,QAAA,8BAA8B,GAIvC,CAAC,CAAC,MAAM,CAAC;IACX,KAAK,EAAE,CAAC,CAAC,OAAO,CAAC,kBAAkB,CAAC;IACpC,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE;CACnB,CAAC;KACC,SAAS,CAAC,CAAC,CAAC,EAAE,EAAE;IACf,OAAO,IAAI,gBAAgB,CAAC,CAAC,CAAC,CAAC;AACjC,CAAC,CAAC,CAAC;AAQL,gBAAgB;AACH,QAAA,+BAA+B,GAIxC,CAAC,CAAC,UAAU,CAAC,gBAAgB,CAAC;KAC/B,SAAS,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,KAAK,CAAC;KACvB,IAAI,CAAC,CAAC,CAAC,MAAM,CAAC;IACb,KAAK,EAAE,CAAC,CAAC,OAAO,CAAC,kBAAkB,CAAC,CAAC,OAAO,CAAC,kBAAkB,CAAC;IAChE,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE;CACnB,CAAC,CAAC,CAAC;AAEN;;;GAGG;AACH,IAAiB,iBAAiB,CAOjC;AAPD,WAAiB,iBAAiB;IAChC,gEAAgE;IACnD,+BAAa,GAAG,sCAA8B,CAAC;IAC5D,iEAAiE;IACpD,gCAAc,GAAG,uCAA+B,CAAC;AAGhE,CAAC,EAPgB,iBAAiB,iCAAjB,iBAAiB,QAOjC"}
@@ -1,34 +1,34 @@
1
1
  import * as z from "zod";
2
2
  import { ClosedEnum } from "../../types/enums.js";
3
- export declare const UnauthorizedType: {
3
+ export declare const UnauthorizedError: {
4
4
  readonly Unauthorized: "Unauthorized";
5
5
  };
6
- export type UnauthorizedType = ClosedEnum<typeof UnauthorizedType>;
6
+ export type UnauthorizedError = ClosedEnum<typeof UnauthorizedError>;
7
7
  export type UnauthorizedData = {
8
- type: "Unauthorized";
8
+ error: "Unauthorized";
9
9
  detail: string;
10
10
  };
11
11
  export declare class Unauthorized extends Error {
12
- type: "Unauthorized";
12
+ error: "Unauthorized";
13
13
  detail: string;
14
14
  /** The original data that was passed to this error instance. */
15
15
  data$: UnauthorizedData;
16
16
  constructor(err: UnauthorizedData);
17
17
  }
18
18
  /** @internal */
19
- export declare const UnauthorizedType$inboundSchema: z.ZodNativeEnum<typeof UnauthorizedType>;
19
+ export declare const UnauthorizedError$inboundSchema: z.ZodNativeEnum<typeof UnauthorizedError>;
20
20
  /** @internal */
21
- export declare const UnauthorizedType$outboundSchema: z.ZodNativeEnum<typeof UnauthorizedType>;
21
+ export declare const UnauthorizedError$outboundSchema: z.ZodNativeEnum<typeof UnauthorizedError>;
22
22
  /**
23
23
  * @internal
24
24
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
25
25
  */
26
- export declare namespace UnauthorizedType$ {
27
- /** @deprecated use `UnauthorizedType$inboundSchema` instead. */
26
+ export declare namespace UnauthorizedError$ {
27
+ /** @deprecated use `UnauthorizedError$inboundSchema` instead. */
28
28
  const inboundSchema: z.ZodNativeEnum<{
29
29
  readonly Unauthorized: "Unauthorized";
30
30
  }>;
31
- /** @deprecated use `UnauthorizedType$outboundSchema` instead. */
31
+ /** @deprecated use `UnauthorizedError$outboundSchema` instead. */
32
32
  const outboundSchema: z.ZodNativeEnum<{
33
33
  readonly Unauthorized: "Unauthorized";
34
34
  }>;
@@ -37,7 +37,7 @@ export declare namespace UnauthorizedType$ {
37
37
  export declare const Unauthorized$inboundSchema: z.ZodType<Unauthorized, z.ZodTypeDef, unknown>;
38
38
  /** @internal */
39
39
  export type Unauthorized$Outbound = {
40
- type: "Unauthorized";
40
+ error: "Unauthorized";
41
41
  detail: string;
42
42
  };
43
43
  /** @internal */
@@ -1 +1 @@
1
- {"version":3,"file":"unauthorized.d.ts","sourceRoot":"","sources":["../../src/models/errors/unauthorized.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAElD,eAAO,MAAM,gBAAgB;;CAEnB,CAAC;AACX,MAAM,MAAM,gBAAgB,GAAG,UAAU,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAEnE,MAAM,MAAM,gBAAgB,GAAG;IAC7B,IAAI,EAAE,cAAc,CAAC;IACrB,MAAM,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF,qBAAa,YAAa,SAAQ,KAAK;IACrC,IAAI,EAAE,cAAc,CAAC;IACrB,MAAM,EAAE,MAAM,CAAC;IAEf,gEAAgE;IAChE,KAAK,EAAE,gBAAgB,CAAC;gBAEZ,GAAG,EAAE,gBAAgB;CAYlC;AAED,gBAAgB;AAChB,eAAO,MAAM,8BAA8B,EAAE,CAAC,CAAC,aAAa,CAC1D,OAAO,gBAAgB,CACS,CAAC;AAEnC,gBAAgB;AAChB,eAAO,MAAM,+BAA+B,EAAE,CAAC,CAAC,aAAa,CAC3D,OAAO,gBAAgB,CACS,CAAC;AAEnC;;;GAGG;AACH,yBAAiB,iBAAiB,CAAC;IACjC,gEAAgE;IACzD,MAAM,aAAa;;MAAiC,CAAC;IAC5D,iEAAiE;IAC1D,MAAM,cAAc;;MAAkC,CAAC;CAC/D;AAED,gBAAgB;AAChB,eAAO,MAAM,0BAA0B,EAAE,CAAC,CAAC,OAAO,CAChD,YAAY,EACZ,CAAC,CAAC,UAAU,EACZ,OAAO,CAOL,CAAC;AAEL,gBAAgB;AAChB,MAAM,MAAM,qBAAqB,GAAG;IAClC,IAAI,EAAE,cAAc,CAAC;IACrB,MAAM,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,2BAA2B,EAAE,CAAC,CAAC,OAAO,CACjD,qBAAqB,EACrB,CAAC,CAAC,UAAU,EACZ,YAAY,CAMT,CAAC;AAEN;;;GAGG;AACH,yBAAiB,aAAa,CAAC;IAC7B,4DAA4D;IACrD,MAAM,aAAa,gDAA6B,CAAC;IACxD,6DAA6D;IACtD,MAAM,cAAc,8DAA8B,CAAC;IAC1D,uDAAuD;IACvD,KAAY,QAAQ,GAAG,qBAAqB,CAAC;CAC9C"}
1
+ {"version":3,"file":"unauthorized.d.ts","sourceRoot":"","sources":["../../src/models/errors/unauthorized.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAElD,eAAO,MAAM,iBAAiB;;CAEpB,CAAC;AACX,MAAM,MAAM,iBAAiB,GAAG,UAAU,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAErE,MAAM,MAAM,gBAAgB,GAAG;IAC7B,KAAK,EAAE,cAAc,CAAC;IACtB,MAAM,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF,qBAAa,YAAa,SAAQ,KAAK;IACrC,KAAK,EAAE,cAAc,CAAC;IACtB,MAAM,EAAE,MAAM,CAAC;IAEf,gEAAgE;IAChE,KAAK,EAAE,gBAAgB,CAAC;gBAEZ,GAAG,EAAE,gBAAgB;CAYlC;AAED,gBAAgB;AAChB,eAAO,MAAM,+BAA+B,EAAE,CAAC,CAAC,aAAa,CAC3D,OAAO,iBAAiB,CACS,CAAC;AAEpC,gBAAgB;AAChB,eAAO,MAAM,gCAAgC,EAAE,CAAC,CAAC,aAAa,CAC5D,OAAO,iBAAiB,CACS,CAAC;AAEpC;;;GAGG;AACH,yBAAiB,kBAAkB,CAAC;IAClC,iEAAiE;IAC1D,MAAM,aAAa;;MAAkC,CAAC;IAC7D,kEAAkE;IAC3D,MAAM,cAAc;;MAAmC,CAAC;CAChE;AAED,gBAAgB;AAChB,eAAO,MAAM,0BAA0B,EAAE,CAAC,CAAC,OAAO,CAChD,YAAY,EACZ,CAAC,CAAC,UAAU,EACZ,OAAO,CAOL,CAAC;AAEL,gBAAgB;AAChB,MAAM,MAAM,qBAAqB,GAAG;IAClC,KAAK,EAAE,cAAc,CAAC;IACtB,MAAM,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,2BAA2B,EAAE,CAAC,CAAC,OAAO,CACjD,qBAAqB,EACrB,CAAC,CAAC,UAAU,EACZ,YAAY,CAMT,CAAC;AAEN;;;GAGG;AACH,yBAAiB,aAAa,CAAC;IAC7B,4DAA4D;IACrD,MAAM,aAAa,gDAA6B,CAAC;IACxD,6DAA6D;IACtD,MAAM,cAAc,8DAA8B,CAAC;IAC1D,uDAAuD;IACvD,KAAY,QAAQ,GAAG,qBAAqB,CAAC;CAC9C"}
@@ -26,9 +26,9 @@ var __importStar = (this && this.__importStar) || function (mod) {
26
26
  return result;
27
27
  };
28
28
  Object.defineProperty(exports, "__esModule", { value: true });
29
- exports.Unauthorized$ = exports.Unauthorized$outboundSchema = exports.Unauthorized$inboundSchema = exports.UnauthorizedType$ = exports.UnauthorizedType$outboundSchema = exports.UnauthorizedType$inboundSchema = exports.Unauthorized = exports.UnauthorizedType = void 0;
29
+ exports.Unauthorized$ = exports.Unauthorized$outboundSchema = exports.Unauthorized$inboundSchema = exports.UnauthorizedError$ = exports.UnauthorizedError$outboundSchema = exports.UnauthorizedError$inboundSchema = exports.Unauthorized = exports.UnauthorizedError = void 0;
30
30
  const z = __importStar(require("zod"));
31
- exports.UnauthorizedType = {
31
+ exports.UnauthorizedError = {
32
32
  Unauthorized: "Unauthorized",
33
33
  };
34
34
  class Unauthorized extends Error {
@@ -38,30 +38,30 @@ class Unauthorized extends Error {
38
38
  : `API error occurred: ${JSON.stringify(err)}`;
39
39
  super(message);
40
40
  this.data$ = err;
41
- this.type = err.type;
41
+ this.error = err.error;
42
42
  this.detail = err.detail;
43
43
  this.name = "Unauthorized";
44
44
  }
45
45
  }
46
46
  exports.Unauthorized = Unauthorized;
47
47
  /** @internal */
48
- exports.UnauthorizedType$inboundSchema = z.nativeEnum(exports.UnauthorizedType);
48
+ exports.UnauthorizedError$inboundSchema = z.nativeEnum(exports.UnauthorizedError);
49
49
  /** @internal */
50
- exports.UnauthorizedType$outboundSchema = exports.UnauthorizedType$inboundSchema;
50
+ exports.UnauthorizedError$outboundSchema = exports.UnauthorizedError$inboundSchema;
51
51
  /**
52
52
  * @internal
53
53
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
54
54
  */
55
- var UnauthorizedType$;
56
- (function (UnauthorizedType$) {
57
- /** @deprecated use `UnauthorizedType$inboundSchema` instead. */
58
- UnauthorizedType$.inboundSchema = exports.UnauthorizedType$inboundSchema;
59
- /** @deprecated use `UnauthorizedType$outboundSchema` instead. */
60
- UnauthorizedType$.outboundSchema = exports.UnauthorizedType$outboundSchema;
61
- })(UnauthorizedType$ || (exports.UnauthorizedType$ = UnauthorizedType$ = {}));
55
+ var UnauthorizedError$;
56
+ (function (UnauthorizedError$) {
57
+ /** @deprecated use `UnauthorizedError$inboundSchema` instead. */
58
+ UnauthorizedError$.inboundSchema = exports.UnauthorizedError$inboundSchema;
59
+ /** @deprecated use `UnauthorizedError$outboundSchema` instead. */
60
+ UnauthorizedError$.outboundSchema = exports.UnauthorizedError$outboundSchema;
61
+ })(UnauthorizedError$ || (exports.UnauthorizedError$ = UnauthorizedError$ = {}));
62
62
  /** @internal */
63
63
  exports.Unauthorized$inboundSchema = z.object({
64
- type: z.literal("Unauthorized"),
64
+ error: z.literal("Unauthorized"),
65
65
  detail: z.string(),
66
66
  })
67
67
  .transform((v) => {
@@ -71,7 +71,7 @@ exports.Unauthorized$inboundSchema = z.object({
71
71
  exports.Unauthorized$outboundSchema = z.instanceof(Unauthorized)
72
72
  .transform(v => v.data$)
73
73
  .pipe(z.object({
74
- type: z.literal("Unauthorized").default("Unauthorized"),
74
+ error: z.literal("Unauthorized").default("Unauthorized"),
75
75
  detail: z.string(),
76
76
  }));
77
77
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"unauthorized.js","sourceRoot":"","sources":["../../src/models/errors/unauthorized.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AAGZ,QAAA,gBAAgB,GAAG;IAC9B,YAAY,EAAE,cAAc;CACpB,CAAC;AAQX,MAAa,YAAa,SAAQ,KAAK;IAOrC,YAAY,GAAqB;QAC/B,MAAM,OAAO,GAAG,SAAS,IAAI,GAAG,IAAI,OAAO,GAAG,CAAC,OAAO,KAAK,QAAQ;YACjE,CAAC,CAAC,GAAG,CAAC,OAAO;YACb,CAAC,CAAC,uBAAuB,IAAI,CAAC,SAAS,CAAC,GAAG,CAAC,EAAE,CAAC;QACjD,KAAK,CAAC,OAAO,CAAC,CAAC;QACf,IAAI,CAAC,KAAK,GAAG,GAAG,CAAC;QAEjB,IAAI,CAAC,IAAI,GAAG,GAAG,CAAC,IAAI,CAAC;QACrB,IAAI,CAAC,MAAM,GAAG,GAAG,CAAC,MAAM,CAAC;QAEzB,IAAI,CAAC,IAAI,GAAG,cAAc,CAAC;IAC7B,CAAC;CACF;AAnBD,oCAmBC;AAED,gBAAgB;AACH,QAAA,8BAA8B,GAEvC,CAAC,CAAC,UAAU,CAAC,wBAAgB,CAAC,CAAC;AAEnC,gBAAgB;AACH,QAAA,+BAA+B,GAExC,sCAA8B,CAAC;AAEnC;;;GAGG;AACH,IAAiB,iBAAiB,CAKjC;AALD,WAAiB,iBAAiB;IAChC,gEAAgE;IACnD,+BAAa,GAAG,sCAA8B,CAAC;IAC5D,iEAAiE;IACpD,gCAAc,GAAG,uCAA+B,CAAC;AAChE,CAAC,EALgB,iBAAiB,iCAAjB,iBAAiB,QAKjC;AAED,gBAAgB;AACH,QAAA,0BAA0B,GAInC,CAAC,CAAC,MAAM,CAAC;IACX,IAAI,EAAE,CAAC,CAAC,OAAO,CAAC,cAAc,CAAC;IAC/B,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE;CACnB,CAAC;KACC,SAAS,CAAC,CAAC,CAAC,EAAE,EAAE;IACf,OAAO,IAAI,YAAY,CAAC,CAAC,CAAC,CAAC;AAC7B,CAAC,CAAC,CAAC;AAQL,gBAAgB;AACH,QAAA,2BAA2B,GAIpC,CAAC,CAAC,UAAU,CAAC,YAAY,CAAC;KAC3B,SAAS,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,KAAK,CAAC;KACvB,IAAI,CAAC,CAAC,CAAC,MAAM,CAAC;IACb,IAAI,EAAE,CAAC,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC,OAAO,CAAC,cAAc,CAAC;IACvD,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE;CACnB,CAAC,CAAC,CAAC;AAEN;;;GAGG;AACH,IAAiB,aAAa,CAO7B;AAPD,WAAiB,aAAa;IAC5B,4DAA4D;IAC/C,2BAAa,GAAG,kCAA0B,CAAC;IACxD,6DAA6D;IAChD,4BAAc,GAAG,mCAA2B,CAAC;AAG5D,CAAC,EAPgB,aAAa,6BAAb,aAAa,QAO7B"}
1
+ {"version":3,"file":"unauthorized.js","sourceRoot":"","sources":["../../src/models/errors/unauthorized.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AAGZ,QAAA,iBAAiB,GAAG;IAC/B,YAAY,EAAE,cAAc;CACpB,CAAC;AAQX,MAAa,YAAa,SAAQ,KAAK;IAOrC,YAAY,GAAqB;QAC/B,MAAM,OAAO,GAAG,SAAS,IAAI,GAAG,IAAI,OAAO,GAAG,CAAC,OAAO,KAAK,QAAQ;YACjE,CAAC,CAAC,GAAG,CAAC,OAAO;YACb,CAAC,CAAC,uBAAuB,IAAI,CAAC,SAAS,CAAC,GAAG,CAAC,EAAE,CAAC;QACjD,KAAK,CAAC,OAAO,CAAC,CAAC;QACf,IAAI,CAAC,KAAK,GAAG,GAAG,CAAC;QAEjB,IAAI,CAAC,KAAK,GAAG,GAAG,CAAC,KAAK,CAAC;QACvB,IAAI,CAAC,MAAM,GAAG,GAAG,CAAC,MAAM,CAAC;QAEzB,IAAI,CAAC,IAAI,GAAG,cAAc,CAAC;IAC7B,CAAC;CACF;AAnBD,oCAmBC;AAED,gBAAgB;AACH,QAAA,+BAA+B,GAExC,CAAC,CAAC,UAAU,CAAC,yBAAiB,CAAC,CAAC;AAEpC,gBAAgB;AACH,QAAA,gCAAgC,GAEzC,uCAA+B,CAAC;AAEpC;;;GAGG;AACH,IAAiB,kBAAkB,CAKlC;AALD,WAAiB,kBAAkB;IACjC,iEAAiE;IACpD,gCAAa,GAAG,uCAA+B,CAAC;IAC7D,kEAAkE;IACrD,iCAAc,GAAG,wCAAgC,CAAC;AACjE,CAAC,EALgB,kBAAkB,kCAAlB,kBAAkB,QAKlC;AAED,gBAAgB;AACH,QAAA,0BAA0B,GAInC,CAAC,CAAC,MAAM,CAAC;IACX,KAAK,EAAE,CAAC,CAAC,OAAO,CAAC,cAAc,CAAC;IAChC,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE;CACnB,CAAC;KACC,SAAS,CAAC,CAAC,CAAC,EAAE,EAAE;IACf,OAAO,IAAI,YAAY,CAAC,CAAC,CAAC,CAAC;AAC7B,CAAC,CAAC,CAAC;AAQL,gBAAgB;AACH,QAAA,2BAA2B,GAIpC,CAAC,CAAC,UAAU,CAAC,YAAY,CAAC;KAC3B,SAAS,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,KAAK,CAAC;KACvB,IAAI,CAAC,CAAC,CAAC,MAAM,CAAC;IACb,KAAK,EAAE,CAAC,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC,OAAO,CAAC,cAAc,CAAC;IACxD,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE;CACnB,CAAC,CAAC,CAAC;AAEN;;;GAGG;AACH,IAAiB,aAAa,CAO7B;AAPD,WAAiB,aAAa;IAC5B,4DAA4D;IAC/C,2BAAa,GAAG,kCAA0B,CAAC;IACxD,6DAA6D;IAChD,4BAAc,GAAG,mCAA2B,CAAC;AAG5D,CAAC,EAPgB,aAAa,6BAAb,aAAa,QAO7B"}
@@ -10,7 +10,7 @@ export type FilesUpdateRequest = {
10
10
  filePatch: components.FilePatch;
11
11
  };
12
12
  /**
13
- * Successful Response
13
+ * File updated.
14
14
  */
15
15
  export type FilesUpdateResponseFilesUpdate = (components.DownloadableFileRead & {
16
16
  service: "downloadable";
@@ -10,7 +10,7 @@ export type FilesUploadedRequest = {
10
10
  fileUploadCompleted: components.FileUploadCompleted;
11
11
  };
12
12
  /**
13
- * Successful Response
13
+ * File upload completed.
14
14
  */
15
15
  export type FilesUploadedResponseFilesUploaded = (components.DownloadableFileRead & {
16
16
  service: "downloadable";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@polar-sh/sdk",
3
- "version": "0.17.2",
3
+ "version": "0.17.4",
4
4
  "author": "Speakeasy",
5
5
  "main": "./index.js",
6
6
  "sideEffects": false,
@@ -119,7 +119,7 @@ export async function filesCreate(
119
119
  | RequestTimeoutError
120
120
  | ConnectionError
121
121
  >(
122
- M.json(200, components.FileUpload$inboundSchema),
122
+ M.json(201, components.FileUpload$inboundSchema),
123
123
  M.jsonErr(422, errors.HTTPValidationError$inboundSchema),
124
124
  M.fail(["4XX", "5XX"]),
125
125
  )(response, { extraFields: responseFields });
@@ -37,7 +37,7 @@ export async function filesDelete(
37
37
  Result<
38
38
  void,
39
39
  | errors.NotPermitted
40
- | errors.FileNotFound
40
+ | errors.ResourceNotFound
41
41
  | errors.HTTPValidationError
42
42
  | SDKError
43
43
  | SDKValidationError
@@ -120,7 +120,7 @@ export async function filesDelete(
120
120
  const [result] = await M.match<
121
121
  void,
122
122
  | errors.NotPermitted
123
- | errors.FileNotFound
123
+ | errors.ResourceNotFound
124
124
  | errors.HTTPValidationError
125
125
  | SDKError
126
126
  | SDKValidationError
@@ -132,7 +132,7 @@ export async function filesDelete(
132
132
  >(
133
133
  M.nil(204, z.void()),
134
134
  M.jsonErr(403, errors.NotPermitted$inboundSchema),
135
- M.jsonErr(404, errors.FileNotFound$inboundSchema),
135
+ M.jsonErr(404, errors.ResourceNotFound$inboundSchema),
136
136
  M.jsonErr(422, errors.HTTPValidationError$inboundSchema),
137
137
  M.fail(["4XX", "5XX"]),
138
138
  )(response, { extraFields: responseFields });
@@ -35,6 +35,8 @@ export async function filesUpdate(
35
35
  ): Promise<
36
36
  Result<
37
37
  operations.FilesUpdateResponseFilesUpdate,
38
+ | errors.NotPermitted
39
+ | errors.ResourceNotFound
38
40
  | errors.HTTPValidationError
39
41
  | SDKError
40
42
  | SDKValidationError
@@ -102,7 +104,7 @@ export async function filesUpdate(
102
104
 
103
105
  const doResult = await client._do(req, {
104
106
  context,
105
- errorCodes: ["422", "4XX", "5XX"],
107
+ errorCodes: ["403", "404", "422", "4XX", "5XX"],
106
108
  retryConfig: context.retryConfig,
107
109
  retryCodes: context.retryCodes,
108
110
  });
@@ -117,6 +119,8 @@ export async function filesUpdate(
117
119
 
118
120
  const [result] = await M.match<
119
121
  operations.FilesUpdateResponseFilesUpdate,
122
+ | errors.NotPermitted
123
+ | errors.ResourceNotFound
120
124
  | errors.HTTPValidationError
121
125
  | SDKError
122
126
  | SDKValidationError
@@ -127,6 +131,8 @@ export async function filesUpdate(
127
131
  | ConnectionError
128
132
  >(
129
133
  M.json(200, operations.FilesUpdateResponseFilesUpdate$inboundSchema),
134
+ M.jsonErr(403, errors.NotPermitted$inboundSchema),
135
+ M.jsonErr(404, errors.ResourceNotFound$inboundSchema),
130
136
  M.jsonErr(422, errors.HTTPValidationError$inboundSchema),
131
137
  M.fail(["4XX", "5XX"]),
132
138
  )(response, { extraFields: responseFields });
@@ -35,6 +35,8 @@ export async function filesUploaded(
35
35
  ): Promise<
36
36
  Result<
37
37
  operations.FilesUploadedResponseFilesUploaded,
38
+ | errors.NotPermitted
39
+ | errors.ResourceNotFound
38
40
  | errors.HTTPValidationError
39
41
  | SDKError
40
42
  | SDKValidationError
@@ -104,7 +106,7 @@ export async function filesUploaded(
104
106
 
105
107
  const doResult = await client._do(req, {
106
108
  context,
107
- errorCodes: ["422", "4XX", "5XX"],
109
+ errorCodes: ["403", "404", "422", "4XX", "5XX"],
108
110
  retryConfig: context.retryConfig,
109
111
  retryCodes: context.retryCodes,
110
112
  });
@@ -119,6 +121,8 @@ export async function filesUploaded(
119
121
 
120
122
  const [result] = await M.match<
121
123
  operations.FilesUploadedResponseFilesUploaded,
124
+ | errors.NotPermitted
125
+ | errors.ResourceNotFound
122
126
  | errors.HTTPValidationError
123
127
  | SDKError
124
128
  | SDKValidationError
@@ -129,6 +133,8 @@ export async function filesUploaded(
129
133
  | ConnectionError
130
134
  >(
131
135
  M.json(200, operations.FilesUploadedResponseFilesUploaded$inboundSchema),
136
+ M.jsonErr(403, errors.NotPermitted$inboundSchema),
137
+ M.jsonErr(404, errors.ResourceNotFound$inboundSchema),
132
138
  M.jsonErr(422, errors.HTTPValidationError$inboundSchema),
133
139
  M.fail(["4XX", "5XX"]),
134
140
  )(response, { extraFields: responseFields });
package/src/lib/config.ts CHANGED
@@ -60,7 +60,7 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
60
60
  export const SDK_METADATA = {
61
61
  language: "typescript",
62
62
  openapiDocVersion: "0.1.0",
63
- sdkVersion: "0.17.2",
63
+ sdkVersion: "0.17.4",
64
64
  genVersion: "2.467.4",
65
- userAgent: "speakeasy-sdk/typescript 0.17.2 2.467.4 0.1.0 @polar-sh/sdk",
65
+ userAgent: "speakeasy-sdk/typescript 0.17.4 2.467.4 0.1.0 @polar-sh/sdk",
66
66
  } as const;
@@ -5,20 +5,20 @@
5
5
  import * as z from "zod";
6
6
  import { ClosedEnum } from "../../types/enums.js";
7
7
 
8
- export const AlreadyCanceledSubscriptionType = {
8
+ export const AlreadyCanceledSubscriptionError = {
9
9
  AlreadyCanceledSubscription: "AlreadyCanceledSubscription",
10
10
  } as const;
11
- export type AlreadyCanceledSubscriptionType = ClosedEnum<
12
- typeof AlreadyCanceledSubscriptionType
11
+ export type AlreadyCanceledSubscriptionError = ClosedEnum<
12
+ typeof AlreadyCanceledSubscriptionError
13
13
  >;
14
14
 
15
15
  export type AlreadyCanceledSubscriptionData = {
16
- type: "AlreadyCanceledSubscription";
16
+ error: "AlreadyCanceledSubscription";
17
17
  detail: string;
18
18
  };
19
19
 
20
20
  export class AlreadyCanceledSubscription extends Error {
21
- type: "AlreadyCanceledSubscription";
21
+ error: "AlreadyCanceledSubscription";
22
22
  detail: string;
23
23
 
24
24
  /** The original data that was passed to this error instance. */
@@ -31,7 +31,7 @@ export class AlreadyCanceledSubscription extends Error {
31
31
  super(message);
32
32
  this.data$ = err;
33
33
 
34
- this.type = err.type;
34
+ this.error = err.error;
35
35
  this.detail = err.detail;
36
36
 
37
37
  this.name = "AlreadyCanceledSubscription";
@@ -39,24 +39,24 @@ export class AlreadyCanceledSubscription extends Error {
39
39
  }
40
40
 
41
41
  /** @internal */
42
- export const AlreadyCanceledSubscriptionType$inboundSchema: z.ZodNativeEnum<
43
- typeof AlreadyCanceledSubscriptionType
44
- > = z.nativeEnum(AlreadyCanceledSubscriptionType);
42
+ export const AlreadyCanceledSubscriptionError$inboundSchema: z.ZodNativeEnum<
43
+ typeof AlreadyCanceledSubscriptionError
44
+ > = z.nativeEnum(AlreadyCanceledSubscriptionError);
45
45
 
46
46
  /** @internal */
47
- export const AlreadyCanceledSubscriptionType$outboundSchema: z.ZodNativeEnum<
48
- typeof AlreadyCanceledSubscriptionType
49
- > = AlreadyCanceledSubscriptionType$inboundSchema;
47
+ export const AlreadyCanceledSubscriptionError$outboundSchema: z.ZodNativeEnum<
48
+ typeof AlreadyCanceledSubscriptionError
49
+ > = AlreadyCanceledSubscriptionError$inboundSchema;
50
50
 
51
51
  /**
52
52
  * @internal
53
53
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
54
54
  */
55
- export namespace AlreadyCanceledSubscriptionType$ {
56
- /** @deprecated use `AlreadyCanceledSubscriptionType$inboundSchema` instead. */
57
- export const inboundSchema = AlreadyCanceledSubscriptionType$inboundSchema;
58
- /** @deprecated use `AlreadyCanceledSubscriptionType$outboundSchema` instead. */
59
- export const outboundSchema = AlreadyCanceledSubscriptionType$outboundSchema;
55
+ export namespace AlreadyCanceledSubscriptionError$ {
56
+ /** @deprecated use `AlreadyCanceledSubscriptionError$inboundSchema` instead. */
57
+ export const inboundSchema = AlreadyCanceledSubscriptionError$inboundSchema;
58
+ /** @deprecated use `AlreadyCanceledSubscriptionError$outboundSchema` instead. */
59
+ export const outboundSchema = AlreadyCanceledSubscriptionError$outboundSchema;
60
60
  }
61
61
 
62
62
  /** @internal */
@@ -65,7 +65,7 @@ export const AlreadyCanceledSubscription$inboundSchema: z.ZodType<
65
65
  z.ZodTypeDef,
66
66
  unknown
67
67
  > = z.object({
68
- type: z.literal("AlreadyCanceledSubscription"),
68
+ error: z.literal("AlreadyCanceledSubscription"),
69
69
  detail: z.string(),
70
70
  })
71
71
  .transform((v) => {
@@ -74,7 +74,7 @@ export const AlreadyCanceledSubscription$inboundSchema: z.ZodType<
74
74
 
75
75
  /** @internal */
76
76
  export type AlreadyCanceledSubscription$Outbound = {
77
- type: "AlreadyCanceledSubscription";
77
+ error: "AlreadyCanceledSubscription";
78
78
  detail: string;
79
79
  };
80
80
 
@@ -86,7 +86,7 @@ export const AlreadyCanceledSubscription$outboundSchema: z.ZodType<
86
86
  > = z.instanceof(AlreadyCanceledSubscription)
87
87
  .transform(v => v.data$)
88
88
  .pipe(z.object({
89
- type: z.literal("AlreadyCanceledSubscription").default(
89
+ error: z.literal("AlreadyCanceledSubscription").default(
90
90
  "AlreadyCanceledSubscription",
91
91
  ),
92
92
  detail: z.string(),
@@ -3,7 +3,6 @@
3
3
  */
4
4
 
5
5
  export * from "./alreadycanceledsubscription.js";
6
- export * from "./filenotfound.js";
7
6
  export * from "./httpclienterrors.js";
8
7
  export * from "./httpvalidationerror.js";
9
8
  export * from "./notpermitted.js";
@@ -5,18 +5,18 @@
5
5
  import * as z from "zod";
6
6
  import { ClosedEnum } from "../../types/enums.js";
7
7
 
8
- export const NotPermittedType = {
8
+ export const NotPermittedError = {
9
9
  NotPermitted: "NotPermitted",
10
10
  } as const;
11
- export type NotPermittedType = ClosedEnum<typeof NotPermittedType>;
11
+ export type NotPermittedError = ClosedEnum<typeof NotPermittedError>;
12
12
 
13
13
  export type NotPermittedData = {
14
- type: "NotPermitted";
14
+ error: "NotPermitted";
15
15
  detail: string;
16
16
  };
17
17
 
18
18
  export class NotPermitted extends Error {
19
- type: "NotPermitted";
19
+ error: "NotPermitted";
20
20
  detail: string;
21
21
 
22
22
  /** The original data that was passed to this error instance. */
@@ -29,7 +29,7 @@ export class NotPermitted extends Error {
29
29
  super(message);
30
30
  this.data$ = err;
31
31
 
32
- this.type = err.type;
32
+ this.error = err.error;
33
33
  this.detail = err.detail;
34
34
 
35
35
  this.name = "NotPermitted";
@@ -37,24 +37,24 @@ export class NotPermitted extends Error {
37
37
  }
38
38
 
39
39
  /** @internal */
40
- export const NotPermittedType$inboundSchema: z.ZodNativeEnum<
41
- typeof NotPermittedType
42
- > = z.nativeEnum(NotPermittedType);
40
+ export const NotPermittedError$inboundSchema: z.ZodNativeEnum<
41
+ typeof NotPermittedError
42
+ > = z.nativeEnum(NotPermittedError);
43
43
 
44
44
  /** @internal */
45
- export const NotPermittedType$outboundSchema: z.ZodNativeEnum<
46
- typeof NotPermittedType
47
- > = NotPermittedType$inboundSchema;
45
+ export const NotPermittedError$outboundSchema: z.ZodNativeEnum<
46
+ typeof NotPermittedError
47
+ > = NotPermittedError$inboundSchema;
48
48
 
49
49
  /**
50
50
  * @internal
51
51
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
52
52
  */
53
- export namespace NotPermittedType$ {
54
- /** @deprecated use `NotPermittedType$inboundSchema` instead. */
55
- export const inboundSchema = NotPermittedType$inboundSchema;
56
- /** @deprecated use `NotPermittedType$outboundSchema` instead. */
57
- export const outboundSchema = NotPermittedType$outboundSchema;
53
+ export namespace NotPermittedError$ {
54
+ /** @deprecated use `NotPermittedError$inboundSchema` instead. */
55
+ export const inboundSchema = NotPermittedError$inboundSchema;
56
+ /** @deprecated use `NotPermittedError$outboundSchema` instead. */
57
+ export const outboundSchema = NotPermittedError$outboundSchema;
58
58
  }
59
59
 
60
60
  /** @internal */
@@ -63,7 +63,7 @@ export const NotPermitted$inboundSchema: z.ZodType<
63
63
  z.ZodTypeDef,
64
64
  unknown
65
65
  > = z.object({
66
- type: z.literal("NotPermitted"),
66
+ error: z.literal("NotPermitted"),
67
67
  detail: z.string(),
68
68
  })
69
69
  .transform((v) => {
@@ -72,7 +72,7 @@ export const NotPermitted$inboundSchema: z.ZodType<
72
72
 
73
73
  /** @internal */
74
74
  export type NotPermitted$Outbound = {
75
- type: "NotPermitted";
75
+ error: "NotPermitted";
76
76
  detail: string;
77
77
  };
78
78
 
@@ -84,7 +84,7 @@ export const NotPermitted$outboundSchema: z.ZodType<
84
84
  > = z.instanceof(NotPermitted)
85
85
  .transform(v => v.data$)
86
86
  .pipe(z.object({
87
- type: z.literal("NotPermitted").default("NotPermitted"),
87
+ error: z.literal("NotPermitted").default("NotPermitted"),
88
88
  detail: z.string(),
89
89
  }));
90
90
 
@@ -5,18 +5,18 @@
5
5
  import * as z from "zod";
6
6
  import { ClosedEnum } from "../../types/enums.js";
7
7
 
8
- export const Type = {
8
+ export const ErrorT = {
9
9
  ResourceNotFound: "ResourceNotFound",
10
10
  } as const;
11
- export type Type = ClosedEnum<typeof Type>;
11
+ export type ErrorT = ClosedEnum<typeof ErrorT>;
12
12
 
13
13
  export type ResourceNotFoundData = {
14
- type: "ResourceNotFound";
14
+ error: "ResourceNotFound";
15
15
  detail: string;
16
16
  };
17
17
 
18
18
  export class ResourceNotFound extends Error {
19
- type: "ResourceNotFound";
19
+ error: "ResourceNotFound";
20
20
  detail: string;
21
21
 
22
22
  /** The original data that was passed to this error instance. */
@@ -29,7 +29,7 @@ export class ResourceNotFound extends Error {
29
29
  super(message);
30
30
  this.data$ = err;
31
31
 
32
- this.type = err.type;
32
+ this.error = err.error;
33
33
  this.detail = err.detail;
34
34
 
35
35
  this.name = "ResourceNotFound";
@@ -37,23 +37,22 @@ export class ResourceNotFound extends Error {
37
37
  }
38
38
 
39
39
  /** @internal */
40
- export const Type$inboundSchema: z.ZodNativeEnum<typeof Type> = z.nativeEnum(
41
- Type,
42
- );
40
+ export const ErrorT$inboundSchema: z.ZodNativeEnum<typeof ErrorT> = z
41
+ .nativeEnum(ErrorT);
43
42
 
44
43
  /** @internal */
45
- export const Type$outboundSchema: z.ZodNativeEnum<typeof Type> =
46
- Type$inboundSchema;
44
+ export const ErrorT$outboundSchema: z.ZodNativeEnum<typeof ErrorT> =
45
+ ErrorT$inboundSchema;
47
46
 
48
47
  /**
49
48
  * @internal
50
49
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
51
50
  */
52
- export namespace Type$ {
53
- /** @deprecated use `Type$inboundSchema` instead. */
54
- export const inboundSchema = Type$inboundSchema;
55
- /** @deprecated use `Type$outboundSchema` instead. */
56
- export const outboundSchema = Type$outboundSchema;
51
+ export namespace ErrorT$ {
52
+ /** @deprecated use `ErrorT$inboundSchema` instead. */
53
+ export const inboundSchema = ErrorT$inboundSchema;
54
+ /** @deprecated use `ErrorT$outboundSchema` instead. */
55
+ export const outboundSchema = ErrorT$outboundSchema;
57
56
  }
58
57
 
59
58
  /** @internal */
@@ -62,7 +61,7 @@ export const ResourceNotFound$inboundSchema: z.ZodType<
62
61
  z.ZodTypeDef,
63
62
  unknown
64
63
  > = z.object({
65
- type: z.literal("ResourceNotFound"),
64
+ error: z.literal("ResourceNotFound"),
66
65
  detail: z.string(),
67
66
  })
68
67
  .transform((v) => {
@@ -71,7 +70,7 @@ export const ResourceNotFound$inboundSchema: z.ZodType<
71
70
 
72
71
  /** @internal */
73
72
  export type ResourceNotFound$Outbound = {
74
- type: "ResourceNotFound";
73
+ error: "ResourceNotFound";
75
74
  detail: string;
76
75
  };
77
76
 
@@ -83,7 +82,7 @@ export const ResourceNotFound$outboundSchema: z.ZodType<
83
82
  > = z.instanceof(ResourceNotFound)
84
83
  .transform(v => v.data$)
85
84
  .pipe(z.object({
86
- type: z.literal("ResourceNotFound").default("ResourceNotFound"),
85
+ error: z.literal("ResourceNotFound").default("ResourceNotFound"),
87
86
  detail: z.string(),
88
87
  }));
89
88