@novu/api 0.0.5 → 0.1.1

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 (117) hide show
  1. package/FUNCTIONS.md +15 -8
  2. package/README.md +218 -45
  3. package/docs/sdks/credentials/README.md +44 -0
  4. package/docs/sdks/messages/README.md +8 -2
  5. package/docs/sdks/notifications/README.md +2 -32
  6. package/docs/sdks/novu/README.md +247 -244
  7. package/docs/sdks/novumessages/README.md +4 -4
  8. package/docs/sdks/novunotifications/README.md +4 -2
  9. package/docs/sdks/preferences/README.md +4 -4
  10. package/docs/sdks/properties/README.md +2 -2
  11. package/docs/sdks/subscribers/README.md +2 -4
  12. package/funcs/create.d.ts +9 -0
  13. package/funcs/create.d.ts.map +1 -0
  14. package/funcs/{healthControllerHealthCheck.js → create.js} +17 -16
  15. package/funcs/create.js.map +1 -0
  16. package/funcs/supportControllerFetchUserOrganizations.d.ts +10 -0
  17. package/funcs/supportControllerFetchUserOrganizations.d.ts.map +1 -0
  18. package/funcs/{generateRandomNumber.js → supportControllerFetchUserOrganizations.js} +16 -31
  19. package/funcs/supportControllerFetchUserOrganizations.js.map +1 -0
  20. package/jsr.json +1 -1
  21. package/lib/config.d.ts +3 -3
  22. package/lib/config.js +3 -3
  23. package/lib/schemas.d.ts +1 -1
  24. package/lib/schemas.d.ts.map +1 -1
  25. package/lib/schemas.js +4 -1
  26. package/lib/schemas.js.map +1 -1
  27. package/models/components/createsupportthreaddto.d.ts +29 -0
  28. package/models/components/createsupportthreaddto.d.ts.map +1 -0
  29. package/models/components/{idempotencetestingresponse.js → createsupportthreaddto.js} +19 -19
  30. package/models/components/createsupportthreaddto.js.map +1 -0
  31. package/models/components/index.d.ts +2 -3
  32. package/models/components/index.d.ts.map +1 -1
  33. package/models/components/index.js +2 -3
  34. package/models/components/index.js.map +1 -1
  35. package/models/components/plaincardrequestdto.d.ts +100 -0
  36. package/models/components/plaincardrequestdto.d.ts.map +1 -0
  37. package/models/components/plaincardrequestdto.js +139 -0
  38. package/models/components/plaincardrequestdto.js.map +1 -0
  39. package/models/errors/index.d.ts +0 -1
  40. package/models/errors/index.d.ts.map +1 -1
  41. package/models/errors/index.js +0 -1
  42. package/models/errors/index.js.map +1 -1
  43. package/models/operations/index.d.ts +2 -3
  44. package/models/operations/index.d.ts.map +1 -1
  45. package/models/operations/index.js +2 -3
  46. package/models/operations/index.js.map +1 -1
  47. package/models/operations/supportcontrollercreatethread.d.ts +35 -0
  48. package/models/operations/supportcontrollercreatethread.d.ts.map +1 -0
  49. package/models/operations/supportcontrollercreatethread.js +73 -0
  50. package/models/operations/supportcontrollercreatethread.js.map +1 -0
  51. package/models/operations/supportcontrollerfetchuserorganizations.d.ts +56 -0
  52. package/models/operations/supportcontrollerfetchuserorganizations.d.ts.map +1 -0
  53. package/models/operations/supportcontrollerfetchuserorganizations.js +96 -0
  54. package/models/operations/supportcontrollerfetchuserorganizations.js.map +1 -0
  55. package/package.json +5 -1
  56. package/sdk/sdk.d.ts +8 -3
  57. package/sdk/sdk.d.ts.map +1 -1
  58. package/sdk/sdk.js +14 -12
  59. package/sdk/sdk.js.map +1 -1
  60. package/sources/json-development.json +116 -1161
  61. package/src/funcs/{testIdempotency.ts → create.ts} +15 -57
  62. package/src/funcs/{healthControllerHealthCheck.ts → supportControllerFetchUserOrganizations.ts} +22 -25
  63. package/src/lib/config.ts +3 -3
  64. package/src/lib/schemas.ts +5 -0
  65. package/src/models/components/createsupportthreaddto.ts +66 -0
  66. package/src/models/components/index.ts +2 -3
  67. package/src/models/components/plaincardrequestdto.ts +223 -0
  68. package/src/models/errors/index.ts +0 -1
  69. package/src/models/operations/index.ts +2 -3
  70. package/src/models/operations/supportcontrollercreatethread.ts +90 -0
  71. package/src/models/operations/supportcontrollerfetchuserorganizations.ts +163 -0
  72. package/src/sdk/sdk.ts +34 -38
  73. package/funcs/generateRandomNumber.d.ts +0 -10
  74. package/funcs/generateRandomNumber.d.ts.map +0 -1
  75. package/funcs/generateRandomNumber.js.map +0 -1
  76. package/funcs/healthControllerHealthCheck.d.ts +0 -10
  77. package/funcs/healthControllerHealthCheck.d.ts.map +0 -1
  78. package/funcs/healthControllerHealthCheck.js.map +0 -1
  79. package/funcs/testIdempotency.d.ts +0 -11
  80. package/funcs/testIdempotency.d.ts.map +0 -1
  81. package/funcs/testIdempotency.js +0 -129
  82. package/funcs/testIdempotency.js.map +0 -1
  83. package/models/components/idempotencetestingresponse.d.ts +0 -32
  84. package/models/components/idempotencetestingresponse.d.ts.map +0 -1
  85. package/models/components/idempotencetestingresponse.js.map +0 -1
  86. package/models/components/idempotencybehaviorenum.d.ts +0 -37
  87. package/models/components/idempotencybehaviorenum.d.ts.map +0 -1
  88. package/models/components/idempotencybehaviorenum.js +0 -54
  89. package/models/components/idempotencybehaviorenum.js.map +0 -1
  90. package/models/components/idempotencytestingdto.d.ts +0 -33
  91. package/models/components/idempotencytestingdto.d.ts.map +0 -1
  92. package/models/components/idempotencytestingdto.js +0 -60
  93. package/models/components/idempotencytestingdto.js.map +0 -1
  94. package/models/errors/healthcontrollerhealthcheck.d.ts +0 -153
  95. package/models/errors/healthcontrollerhealthcheck.d.ts.map +0 -1
  96. package/models/errors/healthcontrollerhealthcheck.js +0 -190
  97. package/models/errors/healthcontrollerhealthcheck.js.map +0 -1
  98. package/models/operations/healthcontrollergeneraterandomnumber.d.ts +0 -64
  99. package/models/operations/healthcontrollergeneraterandomnumber.d.ts.map +0 -1
  100. package/models/operations/healthcontrollergeneraterandomnumber.js +0 -108
  101. package/models/operations/healthcontrollergeneraterandomnumber.js.map +0 -1
  102. package/models/operations/healthcontrollerhealthcheck.d.ts +0 -165
  103. package/models/operations/healthcontrollerhealthcheck.d.ts.map +0 -1
  104. package/models/operations/healthcontrollerhealthcheck.js +0 -206
  105. package/models/operations/healthcontrollerhealthcheck.js.map +0 -1
  106. package/models/operations/healthcontrollertestidempotency.d.ts +0 -66
  107. package/models/operations/healthcontrollertestidempotency.d.ts.map +0 -1
  108. package/models/operations/healthcontrollertestidempotency.js +0 -112
  109. package/models/operations/healthcontrollertestidempotency.js.map +0 -1
  110. package/src/funcs/generateRandomNumber.ts +0 -183
  111. package/src/models/components/idempotencetestingresponse.ts +0 -69
  112. package/src/models/components/idempotencybehaviorenum.ts +0 -42
  113. package/src/models/components/idempotencytestingdto.ts +0 -74
  114. package/src/models/errors/healthcontrollerhealthcheck.ts +0 -291
  115. package/src/models/operations/healthcontrollergeneraterandomnumber.ts +0 -177
  116. package/src/models/operations/healthcontrollerhealthcheck.ts +0 -358
  117. package/src/models/operations/healthcontrollertestidempotency.ts +0 -174
@@ -1,108 +0,0 @@
1
- "use strict";
2
- /*
3
- * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
4
- */
5
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6
- if (k2 === undefined) k2 = k;
7
- var desc = Object.getOwnPropertyDescriptor(m, k);
8
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
9
- desc = { enumerable: true, get: function() { return m[k]; } };
10
- }
11
- Object.defineProperty(o, k2, desc);
12
- }) : (function(o, m, k, k2) {
13
- if (k2 === undefined) k2 = k;
14
- o[k2] = m[k];
15
- }));
16
- var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
17
- Object.defineProperty(o, "default", { enumerable: true, value: v });
18
- }) : function(o, v) {
19
- o["default"] = v;
20
- });
21
- var __importStar = (this && this.__importStar) || function (mod) {
22
- if (mod && mod.__esModule) return mod;
23
- var result = {};
24
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
25
- __setModuleDefault(result, mod);
26
- return result;
27
- };
28
- Object.defineProperty(exports, "__esModule", { value: true });
29
- exports.healthControllerGenerateRandomNumberResponseFromJSON = exports.healthControllerGenerateRandomNumberResponseToJSON = exports.HealthControllerGenerateRandomNumberResponse$ = exports.HealthControllerGenerateRandomNumberResponse$outboundSchema = exports.HealthControllerGenerateRandomNumberResponse$inboundSchema = exports.healthControllerGenerateRandomNumberRequestFromJSON = exports.healthControllerGenerateRandomNumberRequestToJSON = exports.HealthControllerGenerateRandomNumberRequest$ = exports.HealthControllerGenerateRandomNumberRequest$outboundSchema = exports.HealthControllerGenerateRandomNumberRequest$inboundSchema = void 0;
30
- const z = __importStar(require("zod"));
31
- const primitives_js_1 = require("../../lib/primitives.js");
32
- const schemas_js_1 = require("../../lib/schemas.js");
33
- const components = __importStar(require("../components/index.js"));
34
- /** @internal */
35
- exports.HealthControllerGenerateRandomNumberRequest$inboundSchema = z.object({
36
- "idempotency-key": z.string().optional(),
37
- }).transform((v) => {
38
- return (0, primitives_js_1.remap)(v, {
39
- "idempotency-key": "idempotencyKey",
40
- });
41
- });
42
- /** @internal */
43
- exports.HealthControllerGenerateRandomNumberRequest$outboundSchema = z.object({
44
- idempotencyKey: z.string().optional(),
45
- }).transform((v) => {
46
- return (0, primitives_js_1.remap)(v, {
47
- idempotencyKey: "idempotency-key",
48
- });
49
- });
50
- /**
51
- * @internal
52
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
53
- */
54
- var HealthControllerGenerateRandomNumberRequest$;
55
- (function (HealthControllerGenerateRandomNumberRequest$) {
56
- /** @deprecated use `HealthControllerGenerateRandomNumberRequest$inboundSchema` instead. */
57
- HealthControllerGenerateRandomNumberRequest$.inboundSchema = exports.HealthControllerGenerateRandomNumberRequest$inboundSchema;
58
- /** @deprecated use `HealthControllerGenerateRandomNumberRequest$outboundSchema` instead. */
59
- HealthControllerGenerateRandomNumberRequest$.outboundSchema = exports.HealthControllerGenerateRandomNumberRequest$outboundSchema;
60
- })(HealthControllerGenerateRandomNumberRequest$ || (exports.HealthControllerGenerateRandomNumberRequest$ = HealthControllerGenerateRandomNumberRequest$ = {}));
61
- function healthControllerGenerateRandomNumberRequestToJSON(healthControllerGenerateRandomNumberRequest) {
62
- return JSON.stringify(exports.HealthControllerGenerateRandomNumberRequest$outboundSchema.parse(healthControllerGenerateRandomNumberRequest));
63
- }
64
- exports.healthControllerGenerateRandomNumberRequestToJSON = healthControllerGenerateRandomNumberRequestToJSON;
65
- function healthControllerGenerateRandomNumberRequestFromJSON(jsonString) {
66
- return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.HealthControllerGenerateRandomNumberRequest$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'HealthControllerGenerateRandomNumberRequest' from JSON`);
67
- }
68
- exports.healthControllerGenerateRandomNumberRequestFromJSON = healthControllerGenerateRandomNumberRequestFromJSON;
69
- /** @internal */
70
- exports.HealthControllerGenerateRandomNumberResponse$inboundSchema = z.object({
71
- Headers: z.record(z.array(z.string())),
72
- Result: components.IdempotenceTestingResponse$inboundSchema,
73
- }).transform((v) => {
74
- return (0, primitives_js_1.remap)(v, {
75
- "Headers": "headers",
76
- "Result": "result",
77
- });
78
- });
79
- /** @internal */
80
- exports.HealthControllerGenerateRandomNumberResponse$outboundSchema = z.object({
81
- headers: z.record(z.array(z.string())),
82
- result: components.IdempotenceTestingResponse$outboundSchema,
83
- }).transform((v) => {
84
- return (0, primitives_js_1.remap)(v, {
85
- headers: "Headers",
86
- result: "Result",
87
- });
88
- });
89
- /**
90
- * @internal
91
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
92
- */
93
- var HealthControllerGenerateRandomNumberResponse$;
94
- (function (HealthControllerGenerateRandomNumberResponse$) {
95
- /** @deprecated use `HealthControllerGenerateRandomNumberResponse$inboundSchema` instead. */
96
- HealthControllerGenerateRandomNumberResponse$.inboundSchema = exports.HealthControllerGenerateRandomNumberResponse$inboundSchema;
97
- /** @deprecated use `HealthControllerGenerateRandomNumberResponse$outboundSchema` instead. */
98
- HealthControllerGenerateRandomNumberResponse$.outboundSchema = exports.HealthControllerGenerateRandomNumberResponse$outboundSchema;
99
- })(HealthControllerGenerateRandomNumberResponse$ || (exports.HealthControllerGenerateRandomNumberResponse$ = HealthControllerGenerateRandomNumberResponse$ = {}));
100
- function healthControllerGenerateRandomNumberResponseToJSON(healthControllerGenerateRandomNumberResponse) {
101
- return JSON.stringify(exports.HealthControllerGenerateRandomNumberResponse$outboundSchema.parse(healthControllerGenerateRandomNumberResponse));
102
- }
103
- exports.healthControllerGenerateRandomNumberResponseToJSON = healthControllerGenerateRandomNumberResponseToJSON;
104
- function healthControllerGenerateRandomNumberResponseFromJSON(jsonString) {
105
- return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.HealthControllerGenerateRandomNumberResponse$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'HealthControllerGenerateRandomNumberResponse' from JSON`);
106
- }
107
- exports.healthControllerGenerateRandomNumberResponseFromJSON = healthControllerGenerateRandomNumberResponseFromJSON;
108
- //# sourceMappingURL=healthcontrollergeneraterandomnumber.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"healthcontrollergeneraterandomnumber.js","sourceRoot":"","sources":["../../src/models/operations/healthcontrollergeneraterandomnumber.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AACzB,2DAA0D;AAC1D,qDAAiD;AAEjD,mEAAqD;AAerD,gBAAgB;AACH,QAAA,yDAAyD,GAKhE,CAAC,CAAC,MAAM,CAAC;IACX,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CACzC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,EAAE;IACjB,OAAO,IAAA,qBAAM,EAAC,CAAC,EAAE;QACf,iBAAiB,EAAE,gBAAgB;KACpC,CAAC,CAAC;AACL,CAAC,CAAC,CAAC;AAOL,gBAAgB;AACH,QAAA,0DAA0D,GAKjE,CAAC,CAAC,MAAM,CAAC;IACX,cAAc,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CACtC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,EAAE;IACjB,OAAO,IAAA,qBAAM,EAAC,CAAC,EAAE;QACf,cAAc,EAAE,iBAAiB;KAClC,CAAC,CAAC;AACL,CAAC,CAAC,CAAC;AAEL;;;GAGG;AACH,IAAiB,4CAA4C,CAS5D;AATD,WAAiB,4CAA4C;IAC3D,2FAA2F;IAC9E,0DAAa,GACxB,iEAAyD,CAAC;IAC5D,4FAA4F;IAC/E,2DAAc,GACzB,kEAA0D,CAAC;AAG/D,CAAC,EATgB,4CAA4C,4DAA5C,4CAA4C,QAS5D;AAED,SAAgB,iDAAiD,CAC/D,2CAC6C;IAE7C,OAAO,IAAI,CAAC,SAAS,CACnB,kEAA0D,CAAC,KAAK,CAC9D,2CAA2C,CAC5C,CACF,CAAC;AACJ,CAAC;AATD,8GASC;AAED,SAAgB,mDAAmD,CACjE,UAAkB;IAKlB,OAAO,IAAA,sBAAS,EACd,UAAU,EACV,CAAC,CAAC,EAAE,EAAE,CACJ,iEAAyD,CAAC,KAAK,CAC7D,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CACd,EACH,yEAAyE,CAC1E,CAAC;AACJ,CAAC;AAdD,kHAcC;AAED,gBAAgB;AACH,QAAA,0DAA0D,GAKjE,CAAC,CAAC,MAAM,CAAC;IACX,OAAO,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC;IACtC,MAAM,EAAE,UAAU,CAAC,wCAAwC;CAC5D,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,EAAE;IACjB,OAAO,IAAA,qBAAM,EAAC,CAAC,EAAE;QACf,SAAS,EAAE,SAAS;QACpB,QAAQ,EAAE,QAAQ;KACnB,CAAC,CAAC;AACL,CAAC,CAAC,CAAC;AAQL,gBAAgB;AACH,QAAA,2DAA2D,GAKlE,CAAC,CAAC,MAAM,CAAC;IACX,OAAO,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC;IACtC,MAAM,EAAE,UAAU,CAAC,yCAAyC;CAC7D,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,EAAE;IACjB,OAAO,IAAA,qBAAM,EAAC,CAAC,EAAE;QACf,OAAO,EAAE,SAAS;QAClB,MAAM,EAAE,QAAQ;KACjB,CAAC,CAAC;AACL,CAAC,CAAC,CAAC;AAEL;;;GAGG;AACH,IAAiB,6CAA6C,CAS7D;AATD,WAAiB,6CAA6C;IAC5D,4FAA4F;IAC/E,2DAAa,GACxB,kEAA0D,CAAC;IAC7D,6FAA6F;IAChF,4DAAc,GACzB,mEAA2D,CAAC;AAGhE,CAAC,EATgB,6CAA6C,6DAA7C,6CAA6C,QAS7D;AAED,SAAgB,kDAAkD,CAChE,4CAC8C;IAE9C,OAAO,IAAI,CAAC,SAAS,CACnB,mEAA2D,CAAC,KAAK,CAC/D,4CAA4C,CAC7C,CACF,CAAC;AACJ,CAAC;AATD,gHASC;AAED,SAAgB,oDAAoD,CAClE,UAAkB;IAKlB,OAAO,IAAA,sBAAS,EACd,UAAU,EACV,CAAC,CAAC,EAAE,EAAE,CACJ,kEAA0D,CAAC,KAAK,CAC9D,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CACd,EACH,0EAA0E,CAC3E,CAAC;AACJ,CAAC;AAdD,oHAcC"}
@@ -1,165 +0,0 @@
1
- import * as z from "zod";
2
- import { Result as SafeParseResult } from "../../types/fp.js";
3
- import { SDKValidationError } from "../errors/sdkvalidationerror.js";
4
- export type HealthControllerHealthCheckRequest = {
5
- /**
6
- * A header for idempotency purposes
7
- */
8
- idempotencyKey?: string | undefined;
9
- };
10
- export type Info = {
11
- status: string;
12
- additionalProperties: {
13
- [k: string]: any;
14
- };
15
- };
16
- export type ErrorT = {
17
- status: string;
18
- additionalProperties: {
19
- [k: string]: any;
20
- };
21
- };
22
- export type Details = {
23
- status: string;
24
- additionalProperties: {
25
- [k: string]: any;
26
- };
27
- };
28
- /**
29
- * The Health Check is successful
30
- */
31
- export type HealthControllerHealthCheckResponseBody = {
32
- status?: string | undefined;
33
- info?: {
34
- [k: string]: Info;
35
- } | null | undefined;
36
- error?: {
37
- [k: string]: ErrorT;
38
- } | null | undefined;
39
- details?: {
40
- [k: string]: Details;
41
- } | undefined;
42
- };
43
- /** @internal */
44
- export declare const HealthControllerHealthCheckRequest$inboundSchema: z.ZodType<HealthControllerHealthCheckRequest, z.ZodTypeDef, unknown>;
45
- /** @internal */
46
- export type HealthControllerHealthCheckRequest$Outbound = {
47
- "idempotency-key"?: string | undefined;
48
- };
49
- /** @internal */
50
- export declare const HealthControllerHealthCheckRequest$outboundSchema: z.ZodType<HealthControllerHealthCheckRequest$Outbound, z.ZodTypeDef, HealthControllerHealthCheckRequest>;
51
- /**
52
- * @internal
53
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
54
- */
55
- export declare namespace HealthControllerHealthCheckRequest$ {
56
- /** @deprecated use `HealthControllerHealthCheckRequest$inboundSchema` instead. */
57
- const inboundSchema: z.ZodType<HealthControllerHealthCheckRequest, z.ZodTypeDef, unknown>;
58
- /** @deprecated use `HealthControllerHealthCheckRequest$outboundSchema` instead. */
59
- const outboundSchema: z.ZodType<HealthControllerHealthCheckRequest$Outbound, z.ZodTypeDef, HealthControllerHealthCheckRequest>;
60
- /** @deprecated use `HealthControllerHealthCheckRequest$Outbound` instead. */
61
- type Outbound = HealthControllerHealthCheckRequest$Outbound;
62
- }
63
- export declare function healthControllerHealthCheckRequestToJSON(healthControllerHealthCheckRequest: HealthControllerHealthCheckRequest): string;
64
- export declare function healthControllerHealthCheckRequestFromJSON(jsonString: string): SafeParseResult<HealthControllerHealthCheckRequest, SDKValidationError>;
65
- /** @internal */
66
- export declare const Info$inboundSchema: z.ZodType<Info, z.ZodTypeDef, unknown>;
67
- /** @internal */
68
- export type Info$Outbound = {
69
- status: string;
70
- [additionalProperties: string]: unknown;
71
- };
72
- /** @internal */
73
- export declare const Info$outboundSchema: z.ZodType<Info$Outbound, z.ZodTypeDef, Info>;
74
- /**
75
- * @internal
76
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
77
- */
78
- export declare namespace Info$ {
79
- /** @deprecated use `Info$inboundSchema` instead. */
80
- const inboundSchema: z.ZodType<Info, z.ZodTypeDef, unknown>;
81
- /** @deprecated use `Info$outboundSchema` instead. */
82
- const outboundSchema: z.ZodType<Info$Outbound, z.ZodTypeDef, Info>;
83
- /** @deprecated use `Info$Outbound` instead. */
84
- type Outbound = Info$Outbound;
85
- }
86
- export declare function infoToJSON(info: Info): string;
87
- export declare function infoFromJSON(jsonString: string): SafeParseResult<Info, SDKValidationError>;
88
- /** @internal */
89
- export declare const ErrorT$inboundSchema: z.ZodType<ErrorT, z.ZodTypeDef, unknown>;
90
- /** @internal */
91
- export type ErrorT$Outbound = {
92
- status: string;
93
- [additionalProperties: string]: unknown;
94
- };
95
- /** @internal */
96
- export declare const ErrorT$outboundSchema: z.ZodType<ErrorT$Outbound, z.ZodTypeDef, ErrorT>;
97
- /**
98
- * @internal
99
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
100
- */
101
- export declare namespace ErrorT$ {
102
- /** @deprecated use `ErrorT$inboundSchema` instead. */
103
- const inboundSchema: z.ZodType<ErrorT, z.ZodTypeDef, unknown>;
104
- /** @deprecated use `ErrorT$outboundSchema` instead. */
105
- const outboundSchema: z.ZodType<ErrorT$Outbound, z.ZodTypeDef, ErrorT>;
106
- /** @deprecated use `ErrorT$Outbound` instead. */
107
- type Outbound = ErrorT$Outbound;
108
- }
109
- export declare function errorToJSON(errorT: ErrorT): string;
110
- export declare function errorFromJSON(jsonString: string): SafeParseResult<ErrorT, SDKValidationError>;
111
- /** @internal */
112
- export declare const Details$inboundSchema: z.ZodType<Details, z.ZodTypeDef, unknown>;
113
- /** @internal */
114
- export type Details$Outbound = {
115
- status: string;
116
- [additionalProperties: string]: unknown;
117
- };
118
- /** @internal */
119
- export declare const Details$outboundSchema: z.ZodType<Details$Outbound, z.ZodTypeDef, Details>;
120
- /**
121
- * @internal
122
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
123
- */
124
- export declare namespace Details$ {
125
- /** @deprecated use `Details$inboundSchema` instead. */
126
- const inboundSchema: z.ZodType<Details, z.ZodTypeDef, unknown>;
127
- /** @deprecated use `Details$outboundSchema` instead. */
128
- const outboundSchema: z.ZodType<Details$Outbound, z.ZodTypeDef, Details>;
129
- /** @deprecated use `Details$Outbound` instead. */
130
- type Outbound = Details$Outbound;
131
- }
132
- export declare function detailsToJSON(details: Details): string;
133
- export declare function detailsFromJSON(jsonString: string): SafeParseResult<Details, SDKValidationError>;
134
- /** @internal */
135
- export declare const HealthControllerHealthCheckResponseBody$inboundSchema: z.ZodType<HealthControllerHealthCheckResponseBody, z.ZodTypeDef, unknown>;
136
- /** @internal */
137
- export type HealthControllerHealthCheckResponseBody$Outbound = {
138
- status?: string | undefined;
139
- info?: {
140
- [k: string]: Info$Outbound;
141
- } | null | undefined;
142
- error?: {
143
- [k: string]: ErrorT$Outbound;
144
- } | null | undefined;
145
- details?: {
146
- [k: string]: Details$Outbound;
147
- } | undefined;
148
- };
149
- /** @internal */
150
- export declare const HealthControllerHealthCheckResponseBody$outboundSchema: z.ZodType<HealthControllerHealthCheckResponseBody$Outbound, z.ZodTypeDef, HealthControllerHealthCheckResponseBody>;
151
- /**
152
- * @internal
153
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
154
- */
155
- export declare namespace HealthControllerHealthCheckResponseBody$ {
156
- /** @deprecated use `HealthControllerHealthCheckResponseBody$inboundSchema` instead. */
157
- const inboundSchema: z.ZodType<HealthControllerHealthCheckResponseBody, z.ZodTypeDef, unknown>;
158
- /** @deprecated use `HealthControllerHealthCheckResponseBody$outboundSchema` instead. */
159
- const outboundSchema: z.ZodType<HealthControllerHealthCheckResponseBody$Outbound, z.ZodTypeDef, HealthControllerHealthCheckResponseBody>;
160
- /** @deprecated use `HealthControllerHealthCheckResponseBody$Outbound` instead. */
161
- type Outbound = HealthControllerHealthCheckResponseBody$Outbound;
162
- }
163
- export declare function healthControllerHealthCheckResponseBodyToJSON(healthControllerHealthCheckResponseBody: HealthControllerHealthCheckResponseBody): string;
164
- export declare function healthControllerHealthCheckResponseBodyFromJSON(jsonString: string): SafeParseResult<HealthControllerHealthCheckResponseBody, SDKValidationError>;
165
- //# sourceMappingURL=healthcontrollerhealthcheck.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"healthcontrollerhealthcheck.d.ts","sourceRoot":"","sources":["../../src/models/operations/healthcontrollerhealthcheck.ts"],"names":[],"mappings":"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"}
@@ -1,206 +0,0 @@
1
- "use strict";
2
- /*
3
- * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
4
- */
5
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6
- if (k2 === undefined) k2 = k;
7
- var desc = Object.getOwnPropertyDescriptor(m, k);
8
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
9
- desc = { enumerable: true, get: function() { return m[k]; } };
10
- }
11
- Object.defineProperty(o, k2, desc);
12
- }) : (function(o, m, k, k2) {
13
- if (k2 === undefined) k2 = k;
14
- o[k2] = m[k];
15
- }));
16
- var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
17
- Object.defineProperty(o, "default", { enumerable: true, value: v });
18
- }) : function(o, v) {
19
- o["default"] = v;
20
- });
21
- var __importStar = (this && this.__importStar) || function (mod) {
22
- if (mod && mod.__esModule) return mod;
23
- var result = {};
24
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
25
- __setModuleDefault(result, mod);
26
- return result;
27
- };
28
- Object.defineProperty(exports, "__esModule", { value: true });
29
- exports.healthControllerHealthCheckResponseBodyFromJSON = exports.healthControllerHealthCheckResponseBodyToJSON = exports.HealthControllerHealthCheckResponseBody$ = exports.HealthControllerHealthCheckResponseBody$outboundSchema = exports.HealthControllerHealthCheckResponseBody$inboundSchema = exports.detailsFromJSON = exports.detailsToJSON = exports.Details$ = exports.Details$outboundSchema = exports.Details$inboundSchema = exports.errorFromJSON = exports.errorToJSON = exports.ErrorT$ = exports.ErrorT$outboundSchema = exports.ErrorT$inboundSchema = exports.infoFromJSON = exports.infoToJSON = exports.Info$ = exports.Info$outboundSchema = exports.Info$inboundSchema = exports.healthControllerHealthCheckRequestFromJSON = exports.healthControllerHealthCheckRequestToJSON = exports.HealthControllerHealthCheckRequest$ = exports.HealthControllerHealthCheckRequest$outboundSchema = exports.HealthControllerHealthCheckRequest$inboundSchema = void 0;
30
- const z = __importStar(require("zod"));
31
- const primitives_js_1 = require("../../lib/primitives.js");
32
- const schemas_js_1 = require("../../lib/schemas.js");
33
- /** @internal */
34
- exports.HealthControllerHealthCheckRequest$inboundSchema = z.object({
35
- "idempotency-key": z.string().optional(),
36
- }).transform((v) => {
37
- return (0, primitives_js_1.remap)(v, {
38
- "idempotency-key": "idempotencyKey",
39
- });
40
- });
41
- /** @internal */
42
- exports.HealthControllerHealthCheckRequest$outboundSchema = z.object({
43
- idempotencyKey: z.string().optional(),
44
- }).transform((v) => {
45
- return (0, primitives_js_1.remap)(v, {
46
- idempotencyKey: "idempotency-key",
47
- });
48
- });
49
- /**
50
- * @internal
51
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
52
- */
53
- var HealthControllerHealthCheckRequest$;
54
- (function (HealthControllerHealthCheckRequest$) {
55
- /** @deprecated use `HealthControllerHealthCheckRequest$inboundSchema` instead. */
56
- HealthControllerHealthCheckRequest$.inboundSchema = exports.HealthControllerHealthCheckRequest$inboundSchema;
57
- /** @deprecated use `HealthControllerHealthCheckRequest$outboundSchema` instead. */
58
- HealthControllerHealthCheckRequest$.outboundSchema = exports.HealthControllerHealthCheckRequest$outboundSchema;
59
- })(HealthControllerHealthCheckRequest$ || (exports.HealthControllerHealthCheckRequest$ = HealthControllerHealthCheckRequest$ = {}));
60
- function healthControllerHealthCheckRequestToJSON(healthControllerHealthCheckRequest) {
61
- return JSON.stringify(exports.HealthControllerHealthCheckRequest$outboundSchema.parse(healthControllerHealthCheckRequest));
62
- }
63
- exports.healthControllerHealthCheckRequestToJSON = healthControllerHealthCheckRequestToJSON;
64
- function healthControllerHealthCheckRequestFromJSON(jsonString) {
65
- return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.HealthControllerHealthCheckRequest$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'HealthControllerHealthCheckRequest' from JSON`);
66
- }
67
- exports.healthControllerHealthCheckRequestFromJSON = healthControllerHealthCheckRequestFromJSON;
68
- /** @internal */
69
- exports.Info$inboundSchema = (0, schemas_js_1.collectExtraKeys)(z.object({
70
- status: z.string(),
71
- }).catchall(z.any()), "additionalProperties");
72
- /** @internal */
73
- exports.Info$outboundSchema = z.object({
74
- status: z.string(),
75
- additionalProperties: z.record(z.any()),
76
- }).transform((v) => {
77
- return {
78
- ...v.additionalProperties,
79
- ...(0, primitives_js_1.remap)(v, {
80
- additionalProperties: null,
81
- }),
82
- };
83
- });
84
- /**
85
- * @internal
86
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
87
- */
88
- var Info$;
89
- (function (Info$) {
90
- /** @deprecated use `Info$inboundSchema` instead. */
91
- Info$.inboundSchema = exports.Info$inboundSchema;
92
- /** @deprecated use `Info$outboundSchema` instead. */
93
- Info$.outboundSchema = exports.Info$outboundSchema;
94
- })(Info$ || (exports.Info$ = Info$ = {}));
95
- function infoToJSON(info) {
96
- return JSON.stringify(exports.Info$outboundSchema.parse(info));
97
- }
98
- exports.infoToJSON = infoToJSON;
99
- function infoFromJSON(jsonString) {
100
- return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.Info$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'Info' from JSON`);
101
- }
102
- exports.infoFromJSON = infoFromJSON;
103
- /** @internal */
104
- exports.ErrorT$inboundSchema = (0, schemas_js_1.collectExtraKeys)(z.object({
105
- status: z.string(),
106
- }).catchall(z.any()), "additionalProperties");
107
- /** @internal */
108
- exports.ErrorT$outboundSchema = z.object({
109
- status: z.string(),
110
- additionalProperties: z.record(z.any()),
111
- }).transform((v) => {
112
- return {
113
- ...v.additionalProperties,
114
- ...(0, primitives_js_1.remap)(v, {
115
- additionalProperties: null,
116
- }),
117
- };
118
- });
119
- /**
120
- * @internal
121
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
122
- */
123
- var ErrorT$;
124
- (function (ErrorT$) {
125
- /** @deprecated use `ErrorT$inboundSchema` instead. */
126
- ErrorT$.inboundSchema = exports.ErrorT$inboundSchema;
127
- /** @deprecated use `ErrorT$outboundSchema` instead. */
128
- ErrorT$.outboundSchema = exports.ErrorT$outboundSchema;
129
- })(ErrorT$ || (exports.ErrorT$ = ErrorT$ = {}));
130
- function errorToJSON(errorT) {
131
- return JSON.stringify(exports.ErrorT$outboundSchema.parse(errorT));
132
- }
133
- exports.errorToJSON = errorToJSON;
134
- function errorFromJSON(jsonString) {
135
- return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.ErrorT$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'ErrorT' from JSON`);
136
- }
137
- exports.errorFromJSON = errorFromJSON;
138
- /** @internal */
139
- exports.Details$inboundSchema = (0, schemas_js_1.collectExtraKeys)(z.object({
140
- status: z.string(),
141
- }).catchall(z.any()), "additionalProperties");
142
- /** @internal */
143
- exports.Details$outboundSchema = z.object({
144
- status: z.string(),
145
- additionalProperties: z.record(z.any()),
146
- }).transform((v) => {
147
- return {
148
- ...v.additionalProperties,
149
- ...(0, primitives_js_1.remap)(v, {
150
- additionalProperties: null,
151
- }),
152
- };
153
- });
154
- /**
155
- * @internal
156
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
157
- */
158
- var Details$;
159
- (function (Details$) {
160
- /** @deprecated use `Details$inboundSchema` instead. */
161
- Details$.inboundSchema = exports.Details$inboundSchema;
162
- /** @deprecated use `Details$outboundSchema` instead. */
163
- Details$.outboundSchema = exports.Details$outboundSchema;
164
- })(Details$ || (exports.Details$ = Details$ = {}));
165
- function detailsToJSON(details) {
166
- return JSON.stringify(exports.Details$outboundSchema.parse(details));
167
- }
168
- exports.detailsToJSON = detailsToJSON;
169
- function detailsFromJSON(jsonString) {
170
- return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.Details$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'Details' from JSON`);
171
- }
172
- exports.detailsFromJSON = detailsFromJSON;
173
- /** @internal */
174
- exports.HealthControllerHealthCheckResponseBody$inboundSchema = z.object({
175
- status: z.string().optional(),
176
- info: z.nullable(z.record(z.lazy(() => exports.Info$inboundSchema))).optional(),
177
- error: z.nullable(z.record(z.lazy(() => exports.ErrorT$inboundSchema))).optional(),
178
- details: z.record(z.lazy(() => exports.Details$inboundSchema)).optional(),
179
- });
180
- /** @internal */
181
- exports.HealthControllerHealthCheckResponseBody$outboundSchema = z.object({
182
- status: z.string().optional(),
183
- info: z.nullable(z.record(z.lazy(() => exports.Info$outboundSchema))).optional(),
184
- error: z.nullable(z.record(z.lazy(() => exports.ErrorT$outboundSchema))).optional(),
185
- details: z.record(z.lazy(() => exports.Details$outboundSchema)).optional(),
186
- });
187
- /**
188
- * @internal
189
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
190
- */
191
- var HealthControllerHealthCheckResponseBody$;
192
- (function (HealthControllerHealthCheckResponseBody$) {
193
- /** @deprecated use `HealthControllerHealthCheckResponseBody$inboundSchema` instead. */
194
- HealthControllerHealthCheckResponseBody$.inboundSchema = exports.HealthControllerHealthCheckResponseBody$inboundSchema;
195
- /** @deprecated use `HealthControllerHealthCheckResponseBody$outboundSchema` instead. */
196
- HealthControllerHealthCheckResponseBody$.outboundSchema = exports.HealthControllerHealthCheckResponseBody$outboundSchema;
197
- })(HealthControllerHealthCheckResponseBody$ || (exports.HealthControllerHealthCheckResponseBody$ = HealthControllerHealthCheckResponseBody$ = {}));
198
- function healthControllerHealthCheckResponseBodyToJSON(healthControllerHealthCheckResponseBody) {
199
- return JSON.stringify(exports.HealthControllerHealthCheckResponseBody$outboundSchema.parse(healthControllerHealthCheckResponseBody));
200
- }
201
- exports.healthControllerHealthCheckResponseBodyToJSON = healthControllerHealthCheckResponseBodyToJSON;
202
- function healthControllerHealthCheckResponseBodyFromJSON(jsonString) {
203
- return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.HealthControllerHealthCheckResponseBody$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'HealthControllerHealthCheckResponseBody' from JSON`);
204
- }
205
- exports.healthControllerHealthCheckResponseBodyFromJSON = healthControllerHealthCheckResponseBodyFromJSON;
206
- //# sourceMappingURL=healthcontrollerhealthcheck.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"healthcontrollerhealthcheck.js","sourceRoot":"","sources":["../../src/models/operations/healthcontrollerhealthcheck.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AACzB,2DAA0D;AAC1D,qDAG8B;AAoC9B,gBAAgB;AACH,QAAA,gDAAgD,GAIzD,CAAC,CAAC,MAAM,CAAC;IACX,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CACzC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,EAAE;IACjB,OAAO,IAAA,qBAAM,EAAC,CAAC,EAAE;QACf,iBAAiB,EAAE,gBAAgB;KACpC,CAAC,CAAC;AACL,CAAC,CAAC,CAAC;AAOH,gBAAgB;AACH,QAAA,iDAAiD,GAI1D,CAAC,CAAC,MAAM,CAAC;IACX,cAAc,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CACtC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,EAAE;IACjB,OAAO,IAAA,qBAAM,EAAC,CAAC,EAAE;QACf,cAAc,EAAE,iBAAiB;KAClC,CAAC,CAAC;AACL,CAAC,CAAC,CAAC;AAEH;;;GAGG;AACH,IAAiB,mCAAmC,CAQnD;AARD,WAAiB,mCAAmC;IAClD,kFAAkF;IACrE,iDAAa,GAAG,wDAAgD,CAAC;IAC9E,mFAAmF;IACtE,kDAAc,GACzB,yDAAiD,CAAC;AAGtD,CAAC,EARgB,mCAAmC,mDAAnC,mCAAmC,QAQnD;AAED,SAAgB,wCAAwC,CACtD,kCAAsE;IAEtE,OAAO,IAAI,CAAC,SAAS,CACnB,yDAAiD,CAAC,KAAK,CACrD,kCAAkC,CACnC,CACF,CAAC;AACJ,CAAC;AARD,4FAQC;AAED,SAAgB,0CAA0C,CACxD,UAAkB;IAElB,OAAO,IAAA,sBAAS,EACd,UAAU,EACV,CAAC,CAAC,EAAE,EAAE,CACJ,wDAAgD,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,EACvE,gEAAgE,CACjE,CAAC;AACJ,CAAC;AATD,gGASC;AAED,gBAAgB;AACH,QAAA,kBAAkB,GAC7B,IAAA,6BAAiB,EACf,CAAC,CAAC,MAAM,CAAC;IACP,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE;CACnB,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,GAAG,EAAE,CAAC,EACpB,sBAAsB,CACvB,CAAC;AAQJ,gBAAgB;AACH,QAAA,mBAAmB,GAC9B,CAAC,CAAC,MAAM,CAAC;IACP,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE;IAClB,oBAAoB,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,CAAC;CACxC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,EAAE;IACjB,OAAO;QACL,GAAG,CAAC,CAAC,oBAAoB;QACzB,GAAG,IAAA,qBAAM,EAAC,CAAC,EAAE;YACX,oBAAoB,EAAE,IAAI;SAC3B,CAAC;KACH,CAAC;AACJ,CAAC,CAAC,CAAC;AAEL;;;GAGG;AACH,IAAiB,KAAK,CAOrB;AAPD,WAAiB,KAAK;IACpB,oDAAoD;IACvC,mBAAa,GAAG,0BAAkB,CAAC;IAChD,qDAAqD;IACxC,oBAAc,GAAG,2BAAmB,CAAC;AAGpD,CAAC,EAPgB,KAAK,qBAAL,KAAK,QAOrB;AAED,SAAgB,UAAU,CAAC,IAAU;IACnC,OAAO,IAAI,CAAC,SAAS,CAAC,2BAAmB,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC;AACzD,CAAC;AAFD,gCAEC;AAED,SAAgB,YAAY,CAC1B,UAAkB;IAElB,OAAO,IAAA,sBAAS,EACd,UAAU,EACV,CAAC,CAAC,EAAE,EAAE,CAAC,0BAAkB,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,EAC9C,kCAAkC,CACnC,CAAC;AACJ,CAAC;AARD,oCAQC;AAED,gBAAgB;AACH,QAAA,oBAAoB,GAC/B,IAAA,6BAAiB,EACf,CAAC,CAAC,MAAM,CAAC;IACP,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE;CACnB,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,GAAG,EAAE,CAAC,EACpB,sBAAsB,CACvB,CAAC;AAQJ,gBAAgB;AACH,QAAA,qBAAqB,GAI9B,CAAC,CAAC,MAAM,CAAC;IACX,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE;IAClB,oBAAoB,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,CAAC;CACxC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,EAAE;IACjB,OAAO;QACL,GAAG,CAAC,CAAC,oBAAoB;QACzB,GAAG,IAAA,qBAAM,EAAC,CAAC,EAAE;YACX,oBAAoB,EAAE,IAAI;SAC3B,CAAC;KACH,CAAC;AACJ,CAAC,CAAC,CAAC;AAEH;;;GAGG;AACH,IAAiB,OAAO,CAOvB;AAPD,WAAiB,OAAO;IACtB,sDAAsD;IACzC,qBAAa,GAAG,4BAAoB,CAAC;IAClD,uDAAuD;IAC1C,sBAAc,GAAG,6BAAqB,CAAC;AAGtD,CAAC,EAPgB,OAAO,uBAAP,OAAO,QAOvB;AAED,SAAgB,WAAW,CAAC,MAAc;IACxC,OAAO,IAAI,CAAC,SAAS,CAAC,6BAAqB,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC;AAC7D,CAAC;AAFD,kCAEC;AAED,SAAgB,aAAa,CAC3B,UAAkB;IAElB,OAAO,IAAA,sBAAS,EACd,UAAU,EACV,CAAC,CAAC,EAAE,EAAE,CAAC,4BAAoB,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,EAChD,oCAAoC,CACrC,CAAC;AACJ,CAAC;AARD,sCAQC;AAED,gBAAgB;AACH,QAAA,qBAAqB,GAChC,IAAA,6BAAiB,EACf,CAAC,CAAC,MAAM,CAAC;IACP,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE;CACnB,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,GAAG,EAAE,CAAC,EACpB,sBAAsB,CACvB,CAAC;AAQJ,gBAAgB;AACH,QAAA,sBAAsB,GAI/B,CAAC,CAAC,MAAM,CAAC;IACX,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE;IAClB,oBAAoB,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,CAAC;CACxC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,EAAE;IACjB,OAAO;QACL,GAAG,CAAC,CAAC,oBAAoB;QACzB,GAAG,IAAA,qBAAM,EAAC,CAAC,EAAE;YACX,oBAAoB,EAAE,IAAI;SAC3B,CAAC;KACH,CAAC;AACJ,CAAC,CAAC,CAAC;AAEH;;;GAGG;AACH,IAAiB,QAAQ,CAOxB;AAPD,WAAiB,QAAQ;IACvB,uDAAuD;IAC1C,sBAAa,GAAG,6BAAqB,CAAC;IACnD,wDAAwD;IAC3C,uBAAc,GAAG,8BAAsB,CAAC;AAGvD,CAAC,EAPgB,QAAQ,wBAAR,QAAQ,QAOxB;AAED,SAAgB,aAAa,CAAC,OAAgB;IAC5C,OAAO,IAAI,CAAC,SAAS,CAAC,8BAAsB,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC;AAC/D,CAAC;AAFD,sCAEC;AAED,SAAgB,eAAe,CAC7B,UAAkB;IAElB,OAAO,IAAA,sBAAS,EACd,UAAU,EACV,CAAC,CAAC,EAAE,EAAE,CAAC,6BAAqB,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,EACjD,qCAAqC,CACtC,CAAC;AACJ,CAAC;AARD,0CAQC;AAED,gBAAgB;AACH,QAAA,qDAAqD,GAI9D,CAAC,CAAC,MAAM,CAAC;IACX,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC7B,IAAI,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,0BAAkB,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE;IACvE,KAAK,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,4BAAoB,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE;IAC1E,OAAO,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,6BAAqB,CAAC,CAAC,CAAC,QAAQ,EAAE;CAClE,CAAC,CAAC;AAUH,gBAAgB;AACH,QAAA,sDAAsD,GAI/D,CAAC,CAAC,MAAM,CAAC;IACX,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC7B,IAAI,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,2BAAmB,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE;IACxE,KAAK,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,6BAAqB,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE;IAC3E,OAAO,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,8BAAsB,CAAC,CAAC,CAAC,QAAQ,EAAE;CACnE,CAAC,CAAC;AAEH;;;GAGG;AACH,IAAiB,wCAAwC,CASxD;AATD,WAAiB,wCAAwC;IACvD,uFAAuF;IAC1E,sDAAa,GACxB,6DAAqD,CAAC;IACxD,wFAAwF;IAC3E,uDAAc,GACzB,8DAAsD,CAAC;AAG3D,CAAC,EATgB,wCAAwC,wDAAxC,wCAAwC,QASxD;AAED,SAAgB,6CAA6C,CAC3D,uCACyC;IAEzC,OAAO,IAAI,CAAC,SAAS,CACnB,8DAAsD,CAAC,KAAK,CAC1D,uCAAuC,CACxC,CACF,CAAC;AACJ,CAAC;AATD,sGASC;AAED,SAAgB,+CAA+C,CAC7D,UAAkB;IAKlB,OAAO,IAAA,sBAAS,EACd,UAAU,EACV,CAAC,CAAC,EAAE,EAAE,CACJ,6DAAqD,CAAC,KAAK,CACzD,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CACd,EACH,qEAAqE,CACtE,CAAC;AACJ,CAAC;AAdD,0GAcC"}
@@ -1,66 +0,0 @@
1
- import * as z from "zod";
2
- import { Result as SafeParseResult } from "../../types/fp.js";
3
- import * as components from "../components/index.js";
4
- import { SDKValidationError } from "../errors/sdkvalidationerror.js";
5
- export type HealthControllerTestIdempotencyRequest = {
6
- /**
7
- * A header for idempotency purposes
8
- */
9
- idempotencyKey?: string | undefined;
10
- idempotencyTestingDto: components.IdempotencyTestingDto;
11
- };
12
- export type HealthControllerTestIdempotencyResponse = {
13
- headers: {
14
- [k: string]: Array<string>;
15
- };
16
- result: components.IdempotenceTestingResponse;
17
- };
18
- /** @internal */
19
- export declare const HealthControllerTestIdempotencyRequest$inboundSchema: z.ZodType<HealthControllerTestIdempotencyRequest, z.ZodTypeDef, unknown>;
20
- /** @internal */
21
- export type HealthControllerTestIdempotencyRequest$Outbound = {
22
- "idempotency-key"?: string | undefined;
23
- IdempotencyTestingDto: components.IdempotencyTestingDto$Outbound;
24
- };
25
- /** @internal */
26
- export declare const HealthControllerTestIdempotencyRequest$outboundSchema: z.ZodType<HealthControllerTestIdempotencyRequest$Outbound, z.ZodTypeDef, HealthControllerTestIdempotencyRequest>;
27
- /**
28
- * @internal
29
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
30
- */
31
- export declare namespace HealthControllerTestIdempotencyRequest$ {
32
- /** @deprecated use `HealthControllerTestIdempotencyRequest$inboundSchema` instead. */
33
- const inboundSchema: z.ZodType<HealthControllerTestIdempotencyRequest, z.ZodTypeDef, unknown>;
34
- /** @deprecated use `HealthControllerTestIdempotencyRequest$outboundSchema` instead. */
35
- const outboundSchema: z.ZodType<HealthControllerTestIdempotencyRequest$Outbound, z.ZodTypeDef, HealthControllerTestIdempotencyRequest>;
36
- /** @deprecated use `HealthControllerTestIdempotencyRequest$Outbound` instead. */
37
- type Outbound = HealthControllerTestIdempotencyRequest$Outbound;
38
- }
39
- export declare function healthControllerTestIdempotencyRequestToJSON(healthControllerTestIdempotencyRequest: HealthControllerTestIdempotencyRequest): string;
40
- export declare function healthControllerTestIdempotencyRequestFromJSON(jsonString: string): SafeParseResult<HealthControllerTestIdempotencyRequest, SDKValidationError>;
41
- /** @internal */
42
- export declare const HealthControllerTestIdempotencyResponse$inboundSchema: z.ZodType<HealthControllerTestIdempotencyResponse, z.ZodTypeDef, unknown>;
43
- /** @internal */
44
- export type HealthControllerTestIdempotencyResponse$Outbound = {
45
- Headers: {
46
- [k: string]: Array<string>;
47
- };
48
- Result: components.IdempotenceTestingResponse$Outbound;
49
- };
50
- /** @internal */
51
- export declare const HealthControllerTestIdempotencyResponse$outboundSchema: z.ZodType<HealthControllerTestIdempotencyResponse$Outbound, z.ZodTypeDef, HealthControllerTestIdempotencyResponse>;
52
- /**
53
- * @internal
54
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
55
- */
56
- export declare namespace HealthControllerTestIdempotencyResponse$ {
57
- /** @deprecated use `HealthControllerTestIdempotencyResponse$inboundSchema` instead. */
58
- const inboundSchema: z.ZodType<HealthControllerTestIdempotencyResponse, z.ZodTypeDef, unknown>;
59
- /** @deprecated use `HealthControllerTestIdempotencyResponse$outboundSchema` instead. */
60
- const outboundSchema: z.ZodType<HealthControllerTestIdempotencyResponse$Outbound, z.ZodTypeDef, HealthControllerTestIdempotencyResponse>;
61
- /** @deprecated use `HealthControllerTestIdempotencyResponse$Outbound` instead. */
62
- type Outbound = HealthControllerTestIdempotencyResponse$Outbound;
63
- }
64
- export declare function healthControllerTestIdempotencyResponseToJSON(healthControllerTestIdempotencyResponse: HealthControllerTestIdempotencyResponse): string;
65
- export declare function healthControllerTestIdempotencyResponseFromJSON(jsonString: string): SafeParseResult<HealthControllerTestIdempotencyResponse, SDKValidationError>;
66
- //# sourceMappingURL=healthcontrollertestidempotency.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"healthcontrollertestidempotency.d.ts","sourceRoot":"","sources":["../../src/models/operations/healthcontrollertestidempotency.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAGzB,OAAO,EAAE,MAAM,IAAI,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAC9D,OAAO,KAAK,UAAU,MAAM,wBAAwB,CAAC;AACrD,OAAO,EAAE,kBAAkB,EAAE,MAAM,iCAAiC,CAAC;AAErE,MAAM,MAAM,sCAAsC,GAAG;IACnD;;OAEG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IACpC,qBAAqB,EAAE,UAAU,CAAC,qBAAqB,CAAC;CACzD,CAAC;AAEF,MAAM,MAAM,uCAAuC,GAAG;IACpD,OAAO,EAAE;QAAE,CAAC,CAAC,EAAE,MAAM,GAAG,KAAK,CAAC,MAAM,CAAC,CAAA;KAAE,CAAC;IACxC,MAAM,EAAE,UAAU,CAAC,0BAA0B,CAAC;CAC/C,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,oDAAoD,EAAE,CAAC,CAAC,OAAO,CAC1E,sCAAsC,EACtC,CAAC,CAAC,UAAU,EACZ,OAAO,CASP,CAAC;AAEH,gBAAgB;AAChB,MAAM,MAAM,+CAA+C,GAAG;IAC5D,iBAAiB,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IACvC,qBAAqB,EAAE,UAAU,CAAC,8BAA8B,CAAC;CAClE,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,qDAAqD,EAAE,CAAC,CAAC,OAAO,CAC3E,+CAA+C,EAC/C,CAAC,CAAC,UAAU,EACZ,sCAAsC,CAStC,CAAC;AAEH;;;GAGG;AACH,yBAAiB,uCAAuC,CAAC;IACvD,sFAAsF;IAC/E,MAAM,aAAa,0EAC4B,CAAC;IACvD,uFAAuF;IAChF,MAAM,cAAc,kHAC4B,CAAC;IACxD,iFAAiF;IACjF,KAAY,QAAQ,GAAG,+CAA+C,CAAC;CACxE;AAED,wBAAgB,4CAA4C,CAC1D,sCAAsC,EACpC,sCAAsC,GACvC,MAAM,CAMR;AAED,wBAAgB,8CAA8C,CAC5D,UAAU,EAAE,MAAM,GACjB,eAAe,CAAC,sCAAsC,EAAE,kBAAkB,CAAC,CAO7E;AAED,gBAAgB;AAChB,eAAO,MAAM,qDAAqD,EAAE,CAAC,CAAC,OAAO,CAC3E,uCAAuC,EACvC,CAAC,CAAC,UAAU,EACZ,OAAO,CASP,CAAC;AAEH,gBAAgB;AAChB,MAAM,MAAM,gDAAgD,GAAG;IAC7D,OAAO,EAAE;QAAE,CAAC,CAAC,EAAE,MAAM,GAAG,KAAK,CAAC,MAAM,CAAC,CAAA;KAAE,CAAC;IACxC,MAAM,EAAE,UAAU,CAAC,mCAAmC,CAAC;CACxD,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,sDAAsD,EAAE,CAAC,CAAC,OAAO,CAC5E,gDAAgD,EAChD,CAAC,CAAC,UAAU,EACZ,uCAAuC,CASvC,CAAC;AAEH;;;GAGG;AACH,yBAAiB,wCAAwC,CAAC;IACxD,uFAAuF;IAChF,MAAM,aAAa,2EAC6B,CAAC;IACxD,wFAAwF;IACjF,MAAM,cAAc,oHAC6B,CAAC;IACzD,kFAAkF;IAClF,KAAY,QAAQ,GAAG,gDAAgD,CAAC;CACzE;AAED,wBAAgB,6CAA6C,CAC3D,uCAAuC,EACrC,uCAAuC,GACxC,MAAM,CAMR;AAED,wBAAgB,+CAA+C,CAC7D,UAAU,EAAE,MAAM,GACjB,eAAe,CAChB,uCAAuC,EACvC,kBAAkB,CACnB,CASA"}