@apideck/unify 0.25.1 → 0.26.0

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 (84) hide show
  1. package/README.md +7 -0
  2. package/docs/sdks/categories/README.md +181 -0
  3. package/funcs/accountingCategoriesGet.d.ts +18 -0
  4. package/funcs/accountingCategoriesGet.d.ts.map +1 -0
  5. package/funcs/accountingCategoriesGet.js +133 -0
  6. package/funcs/accountingCategoriesGet.js.map +1 -0
  7. package/funcs/accountingCategoriesList.d.ts +21 -0
  8. package/funcs/accountingCategoriesList.d.ts.map +1 -0
  9. package/funcs/accountingCategoriesList.js +151 -0
  10. package/funcs/accountingCategoriesList.js.map +1 -0
  11. package/jsr.json +1 -1
  12. package/lib/config.d.ts +4 -4
  13. package/lib/config.js +4 -4
  14. package/models/components/bill.d.ts +2 -2
  15. package/models/components/category.d.ts +114 -0
  16. package/models/components/category.d.ts.map +1 -0
  17. package/models/components/category.js +121 -0
  18. package/models/components/category.js.map +1 -0
  19. package/models/components/expense.d.ts +10 -0
  20. package/models/components/expense.d.ts.map +1 -1
  21. package/models/components/expense.js +4 -0
  22. package/models/components/expense.js.map +1 -1
  23. package/models/components/formfieldoption.d.ts +6 -6
  24. package/models/components/formfieldoption.d.ts.map +1 -1
  25. package/models/components/formfieldoption.js +4 -4
  26. package/models/components/formfieldoption.js.map +1 -1
  27. package/models/components/getcategoriesresponse.d.ts +79 -0
  28. package/models/components/getcategoriesresponse.d.ts.map +1 -0
  29. package/models/components/getcategoriesresponse.js +89 -0
  30. package/models/components/getcategoriesresponse.js.map +1 -0
  31. package/models/components/getcategoryresponse.d.ts +67 -0
  32. package/models/components/getcategoryresponse.d.ts.map +1 -0
  33. package/models/components/getcategoryresponse.js +83 -0
  34. package/models/components/getcategoryresponse.js.map +1 -0
  35. package/models/components/index.d.ts +3 -0
  36. package/models/components/index.d.ts.map +1 -1
  37. package/models/components/index.js +3 -0
  38. package/models/components/index.js.map +1 -1
  39. package/models/components/invoice.d.ts +2 -2
  40. package/models/components/supplier.d.ts +10 -0
  41. package/models/components/supplier.d.ts.map +1 -1
  42. package/models/components/supplier.js +8 -0
  43. package/models/components/supplier.js.map +1 -1
  44. package/models/operations/accountingcategoriesall.d.ts +131 -0
  45. package/models/operations/accountingcategoriesall.d.ts.map +1 -0
  46. package/models/operations/accountingcategoriesall.js +149 -0
  47. package/models/operations/accountingcategoriesall.js.map +1 -0
  48. package/models/operations/accountingcategoriesone.d.ts +126 -0
  49. package/models/operations/accountingcategoriesone.d.ts.map +1 -0
  50. package/models/operations/accountingcategoriesone.js +145 -0
  51. package/models/operations/accountingcategoriesone.js.map +1 -0
  52. package/models/operations/index.d.ts +2 -0
  53. package/models/operations/index.d.ts.map +1 -1
  54. package/models/operations/index.js +2 -0
  55. package/models/operations/index.js.map +1 -1
  56. package/package.json +1 -1
  57. package/sdk/accounting.d.ts +3 -0
  58. package/sdk/accounting.d.ts.map +1 -1
  59. package/sdk/accounting.js +4 -0
  60. package/sdk/accounting.js.map +1 -1
  61. package/sdk/categories.d.ts +22 -0
  62. package/sdk/categories.d.ts.map +1 -0
  63. package/sdk/categories.js +33 -0
  64. package/sdk/categories.js.map +1 -0
  65. package/src/__tests__/categories.test.ts +127 -0
  66. package/src/funcs/accountingCategoriesGet.ts +230 -0
  67. package/src/funcs/accountingCategoriesList.ts +288 -0
  68. package/src/lib/config.ts +4 -4
  69. package/src/models/components/bill.ts +2 -2
  70. package/src/models/components/category.ts +193 -0
  71. package/src/models/components/expense.ts +14 -0
  72. package/src/models/components/formfieldoption.ts +12 -12
  73. package/src/models/components/getcategoriesresponse.ts +154 -0
  74. package/src/models/components/getcategoryresponse.ts +128 -0
  75. package/src/models/components/index.ts +3 -0
  76. package/src/models/components/invoice.ts +2 -2
  77. package/src/models/components/supplier.ts +18 -0
  78. package/src/models/operations/accountingcategoriesall.ts +277 -0
  79. package/src/models/operations/accountingcategoriesone.ts +268 -0
  80. package/src/models/operations/index.ts +2 -0
  81. package/src/sdk/accounting.ts +6 -0
  82. package/src/sdk/categories.ts +48 -0
  83. package/src/types/constdatetime.ts +1 -1
  84. package/types/constdatetime.js +1 -1
@@ -0,0 +1,131 @@
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 AccountingCategoriesAllGlobals = {
6
+ /**
7
+ * ID of the consumer which you want to get or push data from
8
+ */
9
+ consumerId?: string | undefined;
10
+ /**
11
+ * The ID of your Unify application
12
+ */
13
+ appId?: string | undefined;
14
+ };
15
+ export type AccountingCategoriesAllRequest = {
16
+ /**
17
+ * Include raw response. Mostly used for debugging purposes
18
+ */
19
+ raw?: boolean | undefined;
20
+ /**
21
+ * ID of the consumer which you want to get or push data from
22
+ */
23
+ consumerId?: string | undefined;
24
+ /**
25
+ * The ID of your Unify application
26
+ */
27
+ appId?: string | undefined;
28
+ /**
29
+ * Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API.
30
+ */
31
+ serviceId?: string | undefined;
32
+ /**
33
+ * Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response.
34
+ */
35
+ cursor?: string | null | undefined;
36
+ /**
37
+ * Number of results to return. Minimum 1, Maximum 200, Default 20
38
+ */
39
+ limit?: number | undefined;
40
+ /**
41
+ * The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields "name", "email" and "addresses.city". If any other fields are available, they will be excluded.
42
+ */
43
+ fields?: string | null | undefined;
44
+ };
45
+ export type AccountingCategoriesAllResponse = {
46
+ httpMeta: components.HTTPMetadata;
47
+ /**
48
+ * Categories
49
+ */
50
+ getCategoriesResponse?: components.GetCategoriesResponse | undefined;
51
+ /**
52
+ * Unexpected error
53
+ */
54
+ unexpectedErrorResponse?: components.UnexpectedErrorResponse | undefined;
55
+ };
56
+ /** @internal */
57
+ export declare const AccountingCategoriesAllGlobals$inboundSchema: z.ZodType<AccountingCategoriesAllGlobals, z.ZodTypeDef, unknown>;
58
+ /** @internal */
59
+ export type AccountingCategoriesAllGlobals$Outbound = {
60
+ consumerId?: string | undefined;
61
+ appId?: string | undefined;
62
+ };
63
+ /** @internal */
64
+ export declare const AccountingCategoriesAllGlobals$outboundSchema: z.ZodType<AccountingCategoriesAllGlobals$Outbound, z.ZodTypeDef, AccountingCategoriesAllGlobals>;
65
+ /**
66
+ * @internal
67
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
68
+ */
69
+ export declare namespace AccountingCategoriesAllGlobals$ {
70
+ /** @deprecated use `AccountingCategoriesAllGlobals$inboundSchema` instead. */
71
+ const inboundSchema: z.ZodType<AccountingCategoriesAllGlobals, z.ZodTypeDef, unknown>;
72
+ /** @deprecated use `AccountingCategoriesAllGlobals$outboundSchema` instead. */
73
+ const outboundSchema: z.ZodType<AccountingCategoriesAllGlobals$Outbound, z.ZodTypeDef, AccountingCategoriesAllGlobals>;
74
+ /** @deprecated use `AccountingCategoriesAllGlobals$Outbound` instead. */
75
+ type Outbound = AccountingCategoriesAllGlobals$Outbound;
76
+ }
77
+ export declare function accountingCategoriesAllGlobalsToJSON(accountingCategoriesAllGlobals: AccountingCategoriesAllGlobals): string;
78
+ export declare function accountingCategoriesAllGlobalsFromJSON(jsonString: string): SafeParseResult<AccountingCategoriesAllGlobals, SDKValidationError>;
79
+ /** @internal */
80
+ export declare const AccountingCategoriesAllRequest$inboundSchema: z.ZodType<AccountingCategoriesAllRequest, z.ZodTypeDef, unknown>;
81
+ /** @internal */
82
+ export type AccountingCategoriesAllRequest$Outbound = {
83
+ raw: boolean;
84
+ consumerId?: string | undefined;
85
+ appId?: string | undefined;
86
+ serviceId?: string | undefined;
87
+ cursor?: string | null | undefined;
88
+ limit: number;
89
+ fields?: string | null | undefined;
90
+ };
91
+ /** @internal */
92
+ export declare const AccountingCategoriesAllRequest$outboundSchema: z.ZodType<AccountingCategoriesAllRequest$Outbound, z.ZodTypeDef, AccountingCategoriesAllRequest>;
93
+ /**
94
+ * @internal
95
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
96
+ */
97
+ export declare namespace AccountingCategoriesAllRequest$ {
98
+ /** @deprecated use `AccountingCategoriesAllRequest$inboundSchema` instead. */
99
+ const inboundSchema: z.ZodType<AccountingCategoriesAllRequest, z.ZodTypeDef, unknown>;
100
+ /** @deprecated use `AccountingCategoriesAllRequest$outboundSchema` instead. */
101
+ const outboundSchema: z.ZodType<AccountingCategoriesAllRequest$Outbound, z.ZodTypeDef, AccountingCategoriesAllRequest>;
102
+ /** @deprecated use `AccountingCategoriesAllRequest$Outbound` instead. */
103
+ type Outbound = AccountingCategoriesAllRequest$Outbound;
104
+ }
105
+ export declare function accountingCategoriesAllRequestToJSON(accountingCategoriesAllRequest: AccountingCategoriesAllRequest): string;
106
+ export declare function accountingCategoriesAllRequestFromJSON(jsonString: string): SafeParseResult<AccountingCategoriesAllRequest, SDKValidationError>;
107
+ /** @internal */
108
+ export declare const AccountingCategoriesAllResponse$inboundSchema: z.ZodType<AccountingCategoriesAllResponse, z.ZodTypeDef, unknown>;
109
+ /** @internal */
110
+ export type AccountingCategoriesAllResponse$Outbound = {
111
+ HttpMeta: components.HTTPMetadata$Outbound;
112
+ GetCategoriesResponse?: components.GetCategoriesResponse$Outbound | undefined;
113
+ UnexpectedErrorResponse?: components.UnexpectedErrorResponse$Outbound | undefined;
114
+ };
115
+ /** @internal */
116
+ export declare const AccountingCategoriesAllResponse$outboundSchema: z.ZodType<AccountingCategoriesAllResponse$Outbound, z.ZodTypeDef, AccountingCategoriesAllResponse>;
117
+ /**
118
+ * @internal
119
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
120
+ */
121
+ export declare namespace AccountingCategoriesAllResponse$ {
122
+ /** @deprecated use `AccountingCategoriesAllResponse$inboundSchema` instead. */
123
+ const inboundSchema: z.ZodType<AccountingCategoriesAllResponse, z.ZodTypeDef, unknown>;
124
+ /** @deprecated use `AccountingCategoriesAllResponse$outboundSchema` instead. */
125
+ const outboundSchema: z.ZodType<AccountingCategoriesAllResponse$Outbound, z.ZodTypeDef, AccountingCategoriesAllResponse>;
126
+ /** @deprecated use `AccountingCategoriesAllResponse$Outbound` instead. */
127
+ type Outbound = AccountingCategoriesAllResponse$Outbound;
128
+ }
129
+ export declare function accountingCategoriesAllResponseToJSON(accountingCategoriesAllResponse: AccountingCategoriesAllResponse): string;
130
+ export declare function accountingCategoriesAllResponseFromJSON(jsonString: string): SafeParseResult<AccountingCategoriesAllResponse, SDKValidationError>;
131
+ //# sourceMappingURL=accountingcategoriesall.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"accountingcategoriesall.d.ts","sourceRoot":"","sources":["../../src/models/operations/accountingcategoriesall.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,149 @@
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.AccountingCategoriesAllResponse$ = exports.AccountingCategoriesAllResponse$outboundSchema = exports.AccountingCategoriesAllResponse$inboundSchema = exports.AccountingCategoriesAllRequest$ = exports.AccountingCategoriesAllRequest$outboundSchema = exports.AccountingCategoriesAllRequest$inboundSchema = exports.AccountingCategoriesAllGlobals$ = exports.AccountingCategoriesAllGlobals$outboundSchema = exports.AccountingCategoriesAllGlobals$inboundSchema = void 0;
30
+ exports.accountingCategoriesAllGlobalsToJSON = accountingCategoriesAllGlobalsToJSON;
31
+ exports.accountingCategoriesAllGlobalsFromJSON = accountingCategoriesAllGlobalsFromJSON;
32
+ exports.accountingCategoriesAllRequestToJSON = accountingCategoriesAllRequestToJSON;
33
+ exports.accountingCategoriesAllRequestFromJSON = accountingCategoriesAllRequestFromJSON;
34
+ exports.accountingCategoriesAllResponseToJSON = accountingCategoriesAllResponseToJSON;
35
+ exports.accountingCategoriesAllResponseFromJSON = accountingCategoriesAllResponseFromJSON;
36
+ const z = __importStar(require("zod"));
37
+ const primitives_js_1 = require("../../lib/primitives.js");
38
+ const schemas_js_1 = require("../../lib/schemas.js");
39
+ const components = __importStar(require("../components/index.js"));
40
+ /** @internal */
41
+ exports.AccountingCategoriesAllGlobals$inboundSchema = z.object({
42
+ consumerId: z.string().optional(),
43
+ appId: z.string().optional(),
44
+ });
45
+ /** @internal */
46
+ exports.AccountingCategoriesAllGlobals$outboundSchema = z.object({
47
+ consumerId: z.string().optional(),
48
+ appId: z.string().optional(),
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 AccountingCategoriesAllGlobals$;
55
+ (function (AccountingCategoriesAllGlobals$) {
56
+ /** @deprecated use `AccountingCategoriesAllGlobals$inboundSchema` instead. */
57
+ AccountingCategoriesAllGlobals$.inboundSchema = exports.AccountingCategoriesAllGlobals$inboundSchema;
58
+ /** @deprecated use `AccountingCategoriesAllGlobals$outboundSchema` instead. */
59
+ AccountingCategoriesAllGlobals$.outboundSchema = exports.AccountingCategoriesAllGlobals$outboundSchema;
60
+ })(AccountingCategoriesAllGlobals$ || (exports.AccountingCategoriesAllGlobals$ = AccountingCategoriesAllGlobals$ = {}));
61
+ function accountingCategoriesAllGlobalsToJSON(accountingCategoriesAllGlobals) {
62
+ return JSON.stringify(exports.AccountingCategoriesAllGlobals$outboundSchema.parse(accountingCategoriesAllGlobals));
63
+ }
64
+ function accountingCategoriesAllGlobalsFromJSON(jsonString) {
65
+ return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.AccountingCategoriesAllGlobals$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'AccountingCategoriesAllGlobals' from JSON`);
66
+ }
67
+ /** @internal */
68
+ exports.AccountingCategoriesAllRequest$inboundSchema = z.object({
69
+ raw: z.boolean().default(false),
70
+ consumerId: z.string().optional(),
71
+ appId: z.string().optional(),
72
+ serviceId: z.string().optional(),
73
+ cursor: z.nullable(z.string()).optional(),
74
+ limit: z.number().int().default(20),
75
+ fields: z.nullable(z.string()).optional(),
76
+ });
77
+ /** @internal */
78
+ exports.AccountingCategoriesAllRequest$outboundSchema = z.object({
79
+ raw: z.boolean().default(false),
80
+ consumerId: z.string().optional(),
81
+ appId: z.string().optional(),
82
+ serviceId: z.string().optional(),
83
+ cursor: z.nullable(z.string()).optional(),
84
+ limit: z.number().int().default(20),
85
+ fields: z.nullable(z.string()).optional(),
86
+ });
87
+ /**
88
+ * @internal
89
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
90
+ */
91
+ var AccountingCategoriesAllRequest$;
92
+ (function (AccountingCategoriesAllRequest$) {
93
+ /** @deprecated use `AccountingCategoriesAllRequest$inboundSchema` instead. */
94
+ AccountingCategoriesAllRequest$.inboundSchema = exports.AccountingCategoriesAllRequest$inboundSchema;
95
+ /** @deprecated use `AccountingCategoriesAllRequest$outboundSchema` instead. */
96
+ AccountingCategoriesAllRequest$.outboundSchema = exports.AccountingCategoriesAllRequest$outboundSchema;
97
+ })(AccountingCategoriesAllRequest$ || (exports.AccountingCategoriesAllRequest$ = AccountingCategoriesAllRequest$ = {}));
98
+ function accountingCategoriesAllRequestToJSON(accountingCategoriesAllRequest) {
99
+ return JSON.stringify(exports.AccountingCategoriesAllRequest$outboundSchema.parse(accountingCategoriesAllRequest));
100
+ }
101
+ function accountingCategoriesAllRequestFromJSON(jsonString) {
102
+ return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.AccountingCategoriesAllRequest$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'AccountingCategoriesAllRequest' from JSON`);
103
+ }
104
+ /** @internal */
105
+ exports.AccountingCategoriesAllResponse$inboundSchema = z.object({
106
+ HttpMeta: components.HTTPMetadata$inboundSchema,
107
+ GetCategoriesResponse: components.GetCategoriesResponse$inboundSchema
108
+ .optional(),
109
+ UnexpectedErrorResponse: components.UnexpectedErrorResponse$inboundSchema
110
+ .optional(),
111
+ }).transform((v) => {
112
+ return (0, primitives_js_1.remap)(v, {
113
+ "HttpMeta": "httpMeta",
114
+ "GetCategoriesResponse": "getCategoriesResponse",
115
+ "UnexpectedErrorResponse": "unexpectedErrorResponse",
116
+ });
117
+ });
118
+ /** @internal */
119
+ exports.AccountingCategoriesAllResponse$outboundSchema = z.object({
120
+ httpMeta: components.HTTPMetadata$outboundSchema,
121
+ getCategoriesResponse: components.GetCategoriesResponse$outboundSchema
122
+ .optional(),
123
+ unexpectedErrorResponse: components.UnexpectedErrorResponse$outboundSchema
124
+ .optional(),
125
+ }).transform((v) => {
126
+ return (0, primitives_js_1.remap)(v, {
127
+ httpMeta: "HttpMeta",
128
+ getCategoriesResponse: "GetCategoriesResponse",
129
+ unexpectedErrorResponse: "UnexpectedErrorResponse",
130
+ });
131
+ });
132
+ /**
133
+ * @internal
134
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
135
+ */
136
+ var AccountingCategoriesAllResponse$;
137
+ (function (AccountingCategoriesAllResponse$) {
138
+ /** @deprecated use `AccountingCategoriesAllResponse$inboundSchema` instead. */
139
+ AccountingCategoriesAllResponse$.inboundSchema = exports.AccountingCategoriesAllResponse$inboundSchema;
140
+ /** @deprecated use `AccountingCategoriesAllResponse$outboundSchema` instead. */
141
+ AccountingCategoriesAllResponse$.outboundSchema = exports.AccountingCategoriesAllResponse$outboundSchema;
142
+ })(AccountingCategoriesAllResponse$ || (exports.AccountingCategoriesAllResponse$ = AccountingCategoriesAllResponse$ = {}));
143
+ function accountingCategoriesAllResponseToJSON(accountingCategoriesAllResponse) {
144
+ return JSON.stringify(exports.AccountingCategoriesAllResponse$outboundSchema.parse(accountingCategoriesAllResponse));
145
+ }
146
+ function accountingCategoriesAllResponseFromJSON(jsonString) {
147
+ return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.AccountingCategoriesAllResponse$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'AccountingCategoriesAllResponse' from JSON`);
148
+ }
149
+ //# sourceMappingURL=accountingcategoriesall.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"accountingcategoriesall.js","sourceRoot":"","sources":["../../src/models/operations/accountingcategoriesall.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;AAsGH,oFAQC;AAED,wFAQC;AAwDD,oFAQC;AAED,wFAQC;AA8DD,sFAQC;AAED,0FAQC;AAhRD,uCAAyB;AACzB,2DAA0D;AAC1D,qDAAiD;AAEjD,mEAAqD;AAyDrD,gBAAgB;AACH,QAAA,4CAA4C,GAIrD,CAAC,CAAC,MAAM,CAAC;IACX,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAC7B,CAAC,CAAC;AAQH,gBAAgB;AACH,QAAA,6CAA6C,GAItD,CAAC,CAAC,MAAM,CAAC;IACX,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAC7B,CAAC,CAAC;AAEH;;;GAGG;AACH,IAAiB,+BAA+B,CAO/C;AAPD,WAAiB,+BAA+B;IAC9C,8EAA8E;IACjE,6CAAa,GAAG,oDAA4C,CAAC;IAC1E,+EAA+E;IAClE,8CAAc,GAAG,qDAA6C,CAAC;AAG9E,CAAC,EAPgB,+BAA+B,+CAA/B,+BAA+B,QAO/C;AAED,SAAgB,oCAAoC,CAClD,8BAA8D;IAE9D,OAAO,IAAI,CAAC,SAAS,CACnB,qDAA6C,CAAC,KAAK,CACjD,8BAA8B,CAC/B,CACF,CAAC;AACJ,CAAC;AAED,SAAgB,sCAAsC,CACpD,UAAkB;IAElB,OAAO,IAAA,sBAAS,EACd,UAAU,EACV,CAAC,CAAC,EAAE,EAAE,CAAC,oDAA4C,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,EACxE,4DAA4D,CAC7D,CAAC;AACJ,CAAC;AAED,gBAAgB;AACH,QAAA,4CAA4C,GAIrD,CAAC,CAAC,MAAM,CAAC;IACX,GAAG,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,OAAO,CAAC,KAAK,CAAC;IAC/B,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC5B,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,EAAE;IACzC,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC,EAAE,CAAC;IACnC,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,EAAE;CAC1C,CAAC,CAAC;AAaH,gBAAgB;AACH,QAAA,6CAA6C,GAItD,CAAC,CAAC,MAAM,CAAC;IACX,GAAG,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,OAAO,CAAC,KAAK,CAAC;IAC/B,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC5B,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,EAAE;IACzC,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC,EAAE,CAAC;IACnC,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,EAAE;CAC1C,CAAC,CAAC;AAEH;;;GAGG;AACH,IAAiB,+BAA+B,CAO/C;AAPD,WAAiB,+BAA+B;IAC9C,8EAA8E;IACjE,6CAAa,GAAG,oDAA4C,CAAC;IAC1E,+EAA+E;IAClE,8CAAc,GAAG,qDAA6C,CAAC;AAG9E,CAAC,EAPgB,+BAA+B,+CAA/B,+BAA+B,QAO/C;AAED,SAAgB,oCAAoC,CAClD,8BAA8D;IAE9D,OAAO,IAAI,CAAC,SAAS,CACnB,qDAA6C,CAAC,KAAK,CACjD,8BAA8B,CAC/B,CACF,CAAC;AACJ,CAAC;AAED,SAAgB,sCAAsC,CACpD,UAAkB;IAElB,OAAO,IAAA,sBAAS,EACd,UAAU,EACV,CAAC,CAAC,EAAE,EAAE,CAAC,oDAA4C,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,EACxE,4DAA4D,CAC7D,CAAC;AACJ,CAAC;AAED,gBAAgB;AACH,QAAA,6CAA6C,GAItD,CAAC,CAAC,MAAM,CAAC;IACX,QAAQ,EAAE,UAAU,CAAC,0BAA0B;IAC/C,qBAAqB,EAAE,UAAU,CAAC,mCAAmC;SAClE,QAAQ,EAAE;IACb,uBAAuB,EAAE,UAAU,CAAC,qCAAqC;SACtE,QAAQ,EAAE;CACd,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,EAAE;IACjB,OAAO,IAAA,qBAAM,EAAC,CAAC,EAAE;QACf,UAAU,EAAE,UAAU;QACtB,uBAAuB,EAAE,uBAAuB;QAChD,yBAAyB,EAAE,yBAAyB;KACrD,CAAC,CAAC;AACL,CAAC,CAAC,CAAC;AAWH,gBAAgB;AACH,QAAA,8CAA8C,GAIvD,CAAC,CAAC,MAAM,CAAC;IACX,QAAQ,EAAE,UAAU,CAAC,2BAA2B;IAChD,qBAAqB,EAAE,UAAU,CAAC,oCAAoC;SACnE,QAAQ,EAAE;IACb,uBAAuB,EAAE,UAAU,CAAC,sCAAsC;SACvE,QAAQ,EAAE;CACd,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,EAAE;IACjB,OAAO,IAAA,qBAAM,EAAC,CAAC,EAAE;QACf,QAAQ,EAAE,UAAU;QACpB,qBAAqB,EAAE,uBAAuB;QAC9C,uBAAuB,EAAE,yBAAyB;KACnD,CAAC,CAAC;AACL,CAAC,CAAC,CAAC;AAEH;;;GAGG;AACH,IAAiB,gCAAgC,CAOhD;AAPD,WAAiB,gCAAgC;IAC/C,+EAA+E;IAClE,8CAAa,GAAG,qDAA6C,CAAC;IAC3E,gFAAgF;IACnE,+CAAc,GAAG,sDAA8C,CAAC;AAG/E,CAAC,EAPgB,gCAAgC,gDAAhC,gCAAgC,QAOhD;AAED,SAAgB,qCAAqC,CACnD,+BAAgE;IAEhE,OAAO,IAAI,CAAC,SAAS,CACnB,sDAA8C,CAAC,KAAK,CAClD,+BAA+B,CAChC,CACF,CAAC;AACJ,CAAC;AAED,SAAgB,uCAAuC,CACrD,UAAkB;IAElB,OAAO,IAAA,sBAAS,EACd,UAAU,EACV,CAAC,CAAC,EAAE,EAAE,CAAC,qDAA6C,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,EACzE,6DAA6D,CAC9D,CAAC;AACJ,CAAC"}
@@ -0,0 +1,126 @@
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 AccountingCategoriesOneGlobals = {
6
+ /**
7
+ * ID of the consumer which you want to get or push data from
8
+ */
9
+ consumerId?: string | undefined;
10
+ /**
11
+ * The ID of your Unify application
12
+ */
13
+ appId?: string | undefined;
14
+ };
15
+ export type AccountingCategoriesOneRequest = {
16
+ /**
17
+ * ID of the record you are acting upon.
18
+ */
19
+ id: string;
20
+ /**
21
+ * ID of the consumer which you want to get or push data from
22
+ */
23
+ consumerId?: string | undefined;
24
+ /**
25
+ * The ID of your Unify application
26
+ */
27
+ appId?: string | undefined;
28
+ /**
29
+ * Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API.
30
+ */
31
+ serviceId?: string | undefined;
32
+ /**
33
+ * Include raw response. Mostly used for debugging purposes
34
+ */
35
+ raw?: boolean | undefined;
36
+ /**
37
+ * The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields "name", "email" and "addresses.city". If any other fields are available, they will be excluded.
38
+ */
39
+ fields?: string | null | undefined;
40
+ };
41
+ export type AccountingCategoriesOneResponse = {
42
+ httpMeta: components.HTTPMetadata;
43
+ /**
44
+ * Category
45
+ */
46
+ getCategoryResponse?: components.GetCategoryResponse | undefined;
47
+ /**
48
+ * Unexpected error
49
+ */
50
+ unexpectedErrorResponse?: components.UnexpectedErrorResponse | undefined;
51
+ };
52
+ /** @internal */
53
+ export declare const AccountingCategoriesOneGlobals$inboundSchema: z.ZodType<AccountingCategoriesOneGlobals, z.ZodTypeDef, unknown>;
54
+ /** @internal */
55
+ export type AccountingCategoriesOneGlobals$Outbound = {
56
+ consumerId?: string | undefined;
57
+ appId?: string | undefined;
58
+ };
59
+ /** @internal */
60
+ export declare const AccountingCategoriesOneGlobals$outboundSchema: z.ZodType<AccountingCategoriesOneGlobals$Outbound, z.ZodTypeDef, AccountingCategoriesOneGlobals>;
61
+ /**
62
+ * @internal
63
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
64
+ */
65
+ export declare namespace AccountingCategoriesOneGlobals$ {
66
+ /** @deprecated use `AccountingCategoriesOneGlobals$inboundSchema` instead. */
67
+ const inboundSchema: z.ZodType<AccountingCategoriesOneGlobals, z.ZodTypeDef, unknown>;
68
+ /** @deprecated use `AccountingCategoriesOneGlobals$outboundSchema` instead. */
69
+ const outboundSchema: z.ZodType<AccountingCategoriesOneGlobals$Outbound, z.ZodTypeDef, AccountingCategoriesOneGlobals>;
70
+ /** @deprecated use `AccountingCategoriesOneGlobals$Outbound` instead. */
71
+ type Outbound = AccountingCategoriesOneGlobals$Outbound;
72
+ }
73
+ export declare function accountingCategoriesOneGlobalsToJSON(accountingCategoriesOneGlobals: AccountingCategoriesOneGlobals): string;
74
+ export declare function accountingCategoriesOneGlobalsFromJSON(jsonString: string): SafeParseResult<AccountingCategoriesOneGlobals, SDKValidationError>;
75
+ /** @internal */
76
+ export declare const AccountingCategoriesOneRequest$inboundSchema: z.ZodType<AccountingCategoriesOneRequest, z.ZodTypeDef, unknown>;
77
+ /** @internal */
78
+ export type AccountingCategoriesOneRequest$Outbound = {
79
+ id: string;
80
+ consumerId?: string | undefined;
81
+ appId?: string | undefined;
82
+ serviceId?: string | undefined;
83
+ raw: boolean;
84
+ fields?: string | null | undefined;
85
+ };
86
+ /** @internal */
87
+ export declare const AccountingCategoriesOneRequest$outboundSchema: z.ZodType<AccountingCategoriesOneRequest$Outbound, z.ZodTypeDef, AccountingCategoriesOneRequest>;
88
+ /**
89
+ * @internal
90
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
91
+ */
92
+ export declare namespace AccountingCategoriesOneRequest$ {
93
+ /** @deprecated use `AccountingCategoriesOneRequest$inboundSchema` instead. */
94
+ const inboundSchema: z.ZodType<AccountingCategoriesOneRequest, z.ZodTypeDef, unknown>;
95
+ /** @deprecated use `AccountingCategoriesOneRequest$outboundSchema` instead. */
96
+ const outboundSchema: z.ZodType<AccountingCategoriesOneRequest$Outbound, z.ZodTypeDef, AccountingCategoriesOneRequest>;
97
+ /** @deprecated use `AccountingCategoriesOneRequest$Outbound` instead. */
98
+ type Outbound = AccountingCategoriesOneRequest$Outbound;
99
+ }
100
+ export declare function accountingCategoriesOneRequestToJSON(accountingCategoriesOneRequest: AccountingCategoriesOneRequest): string;
101
+ export declare function accountingCategoriesOneRequestFromJSON(jsonString: string): SafeParseResult<AccountingCategoriesOneRequest, SDKValidationError>;
102
+ /** @internal */
103
+ export declare const AccountingCategoriesOneResponse$inboundSchema: z.ZodType<AccountingCategoriesOneResponse, z.ZodTypeDef, unknown>;
104
+ /** @internal */
105
+ export type AccountingCategoriesOneResponse$Outbound = {
106
+ HttpMeta: components.HTTPMetadata$Outbound;
107
+ GetCategoryResponse?: components.GetCategoryResponse$Outbound | undefined;
108
+ UnexpectedErrorResponse?: components.UnexpectedErrorResponse$Outbound | undefined;
109
+ };
110
+ /** @internal */
111
+ export declare const AccountingCategoriesOneResponse$outboundSchema: z.ZodType<AccountingCategoriesOneResponse$Outbound, z.ZodTypeDef, AccountingCategoriesOneResponse>;
112
+ /**
113
+ * @internal
114
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
115
+ */
116
+ export declare namespace AccountingCategoriesOneResponse$ {
117
+ /** @deprecated use `AccountingCategoriesOneResponse$inboundSchema` instead. */
118
+ const inboundSchema: z.ZodType<AccountingCategoriesOneResponse, z.ZodTypeDef, unknown>;
119
+ /** @deprecated use `AccountingCategoriesOneResponse$outboundSchema` instead. */
120
+ const outboundSchema: z.ZodType<AccountingCategoriesOneResponse$Outbound, z.ZodTypeDef, AccountingCategoriesOneResponse>;
121
+ /** @deprecated use `AccountingCategoriesOneResponse$Outbound` instead. */
122
+ type Outbound = AccountingCategoriesOneResponse$Outbound;
123
+ }
124
+ export declare function accountingCategoriesOneResponseToJSON(accountingCategoriesOneResponse: AccountingCategoriesOneResponse): string;
125
+ export declare function accountingCategoriesOneResponseFromJSON(jsonString: string): SafeParseResult<AccountingCategoriesOneResponse, SDKValidationError>;
126
+ //# sourceMappingURL=accountingcategoriesone.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"accountingcategoriesone.d.ts","sourceRoot":"","sources":["../../src/models/operations/accountingcategoriesone.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,145 @@
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.AccountingCategoriesOneResponse$ = exports.AccountingCategoriesOneResponse$outboundSchema = exports.AccountingCategoriesOneResponse$inboundSchema = exports.AccountingCategoriesOneRequest$ = exports.AccountingCategoriesOneRequest$outboundSchema = exports.AccountingCategoriesOneRequest$inboundSchema = exports.AccountingCategoriesOneGlobals$ = exports.AccountingCategoriesOneGlobals$outboundSchema = exports.AccountingCategoriesOneGlobals$inboundSchema = void 0;
30
+ exports.accountingCategoriesOneGlobalsToJSON = accountingCategoriesOneGlobalsToJSON;
31
+ exports.accountingCategoriesOneGlobalsFromJSON = accountingCategoriesOneGlobalsFromJSON;
32
+ exports.accountingCategoriesOneRequestToJSON = accountingCategoriesOneRequestToJSON;
33
+ exports.accountingCategoriesOneRequestFromJSON = accountingCategoriesOneRequestFromJSON;
34
+ exports.accountingCategoriesOneResponseToJSON = accountingCategoriesOneResponseToJSON;
35
+ exports.accountingCategoriesOneResponseFromJSON = accountingCategoriesOneResponseFromJSON;
36
+ const z = __importStar(require("zod"));
37
+ const primitives_js_1 = require("../../lib/primitives.js");
38
+ const schemas_js_1 = require("../../lib/schemas.js");
39
+ const components = __importStar(require("../components/index.js"));
40
+ /** @internal */
41
+ exports.AccountingCategoriesOneGlobals$inboundSchema = z.object({
42
+ consumerId: z.string().optional(),
43
+ appId: z.string().optional(),
44
+ });
45
+ /** @internal */
46
+ exports.AccountingCategoriesOneGlobals$outboundSchema = z.object({
47
+ consumerId: z.string().optional(),
48
+ appId: z.string().optional(),
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 AccountingCategoriesOneGlobals$;
55
+ (function (AccountingCategoriesOneGlobals$) {
56
+ /** @deprecated use `AccountingCategoriesOneGlobals$inboundSchema` instead. */
57
+ AccountingCategoriesOneGlobals$.inboundSchema = exports.AccountingCategoriesOneGlobals$inboundSchema;
58
+ /** @deprecated use `AccountingCategoriesOneGlobals$outboundSchema` instead. */
59
+ AccountingCategoriesOneGlobals$.outboundSchema = exports.AccountingCategoriesOneGlobals$outboundSchema;
60
+ })(AccountingCategoriesOneGlobals$ || (exports.AccountingCategoriesOneGlobals$ = AccountingCategoriesOneGlobals$ = {}));
61
+ function accountingCategoriesOneGlobalsToJSON(accountingCategoriesOneGlobals) {
62
+ return JSON.stringify(exports.AccountingCategoriesOneGlobals$outboundSchema.parse(accountingCategoriesOneGlobals));
63
+ }
64
+ function accountingCategoriesOneGlobalsFromJSON(jsonString) {
65
+ return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.AccountingCategoriesOneGlobals$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'AccountingCategoriesOneGlobals' from JSON`);
66
+ }
67
+ /** @internal */
68
+ exports.AccountingCategoriesOneRequest$inboundSchema = z.object({
69
+ id: z.string(),
70
+ consumerId: z.string().optional(),
71
+ appId: z.string().optional(),
72
+ serviceId: z.string().optional(),
73
+ raw: z.boolean().default(false),
74
+ fields: z.nullable(z.string()).optional(),
75
+ });
76
+ /** @internal */
77
+ exports.AccountingCategoriesOneRequest$outboundSchema = z.object({
78
+ id: z.string(),
79
+ consumerId: z.string().optional(),
80
+ appId: z.string().optional(),
81
+ serviceId: z.string().optional(),
82
+ raw: z.boolean().default(false),
83
+ fields: z.nullable(z.string()).optional(),
84
+ });
85
+ /**
86
+ * @internal
87
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
88
+ */
89
+ var AccountingCategoriesOneRequest$;
90
+ (function (AccountingCategoriesOneRequest$) {
91
+ /** @deprecated use `AccountingCategoriesOneRequest$inboundSchema` instead. */
92
+ AccountingCategoriesOneRequest$.inboundSchema = exports.AccountingCategoriesOneRequest$inboundSchema;
93
+ /** @deprecated use `AccountingCategoriesOneRequest$outboundSchema` instead. */
94
+ AccountingCategoriesOneRequest$.outboundSchema = exports.AccountingCategoriesOneRequest$outboundSchema;
95
+ })(AccountingCategoriesOneRequest$ || (exports.AccountingCategoriesOneRequest$ = AccountingCategoriesOneRequest$ = {}));
96
+ function accountingCategoriesOneRequestToJSON(accountingCategoriesOneRequest) {
97
+ return JSON.stringify(exports.AccountingCategoriesOneRequest$outboundSchema.parse(accountingCategoriesOneRequest));
98
+ }
99
+ function accountingCategoriesOneRequestFromJSON(jsonString) {
100
+ return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.AccountingCategoriesOneRequest$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'AccountingCategoriesOneRequest' from JSON`);
101
+ }
102
+ /** @internal */
103
+ exports.AccountingCategoriesOneResponse$inboundSchema = z.object({
104
+ HttpMeta: components.HTTPMetadata$inboundSchema,
105
+ GetCategoryResponse: components.GetCategoryResponse$inboundSchema.optional(),
106
+ UnexpectedErrorResponse: components.UnexpectedErrorResponse$inboundSchema
107
+ .optional(),
108
+ }).transform((v) => {
109
+ return (0, primitives_js_1.remap)(v, {
110
+ "HttpMeta": "httpMeta",
111
+ "GetCategoryResponse": "getCategoryResponse",
112
+ "UnexpectedErrorResponse": "unexpectedErrorResponse",
113
+ });
114
+ });
115
+ /** @internal */
116
+ exports.AccountingCategoriesOneResponse$outboundSchema = z.object({
117
+ httpMeta: components.HTTPMetadata$outboundSchema,
118
+ getCategoryResponse: components.GetCategoryResponse$outboundSchema.optional(),
119
+ unexpectedErrorResponse: components.UnexpectedErrorResponse$outboundSchema
120
+ .optional(),
121
+ }).transform((v) => {
122
+ return (0, primitives_js_1.remap)(v, {
123
+ httpMeta: "HttpMeta",
124
+ getCategoryResponse: "GetCategoryResponse",
125
+ unexpectedErrorResponse: "UnexpectedErrorResponse",
126
+ });
127
+ });
128
+ /**
129
+ * @internal
130
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
131
+ */
132
+ var AccountingCategoriesOneResponse$;
133
+ (function (AccountingCategoriesOneResponse$) {
134
+ /** @deprecated use `AccountingCategoriesOneResponse$inboundSchema` instead. */
135
+ AccountingCategoriesOneResponse$.inboundSchema = exports.AccountingCategoriesOneResponse$inboundSchema;
136
+ /** @deprecated use `AccountingCategoriesOneResponse$outboundSchema` instead. */
137
+ AccountingCategoriesOneResponse$.outboundSchema = exports.AccountingCategoriesOneResponse$outboundSchema;
138
+ })(AccountingCategoriesOneResponse$ || (exports.AccountingCategoriesOneResponse$ = AccountingCategoriesOneResponse$ = {}));
139
+ function accountingCategoriesOneResponseToJSON(accountingCategoriesOneResponse) {
140
+ return JSON.stringify(exports.AccountingCategoriesOneResponse$outboundSchema.parse(accountingCategoriesOneResponse));
141
+ }
142
+ function accountingCategoriesOneResponseFromJSON(jsonString) {
143
+ return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.AccountingCategoriesOneResponse$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'AccountingCategoriesOneResponse' from JSON`);
144
+ }
145
+ //# sourceMappingURL=accountingcategoriesone.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"accountingcategoriesone.js","sourceRoot":"","sources":["../../src/models/operations/accountingcategoriesone.ts"],"names":[],"mappings":"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"}
@@ -26,6 +26,8 @@ export * from "./accountingbillsall.js";
26
26
  export * from "./accountingbillsdelete.js";
27
27
  export * from "./accountingbillsone.js";
28
28
  export * from "./accountingbillsupdate.js";
29
+ export * from "./accountingcategoriesall.js";
30
+ export * from "./accountingcategoriesone.js";
29
31
  export * from "./accountingcompanyinfoone.js";
30
32
  export * from "./accountingcreditnotesadd.js";
31
33
  export * from "./accountingcreditnotesall.js";
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/models/operations/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/models/operations/index.ts"],"names":[],"mappings":"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"}