ce-storefront 0.0.4 → 0.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (88) hide show
  1. package/README.md +6 -0
  2. package/docs/sdks/customersapi/README.md +234 -0
  3. package/funcs/customersAPIGetCustomersId.d.ts +15 -0
  4. package/funcs/customersAPIGetCustomersId.d.ts.map +1 -0
  5. package/funcs/customersAPIGetCustomersId.js +93 -0
  6. package/funcs/customersAPIGetCustomersId.js.map +1 -0
  7. package/funcs/customersAPIPostCustomers.d.ts +17 -0
  8. package/funcs/customersAPIPostCustomers.d.ts.map +1 -0
  9. package/funcs/customersAPIPostCustomers.js +96 -0
  10. package/funcs/customersAPIPostCustomers.js.map +1 -0
  11. package/funcs/customersAPIPutCustomersId.d.ts +16 -0
  12. package/funcs/customersAPIPutCustomersId.d.ts.map +1 -0
  13. package/funcs/customersAPIPutCustomersId.js +98 -0
  14. package/funcs/customersAPIPutCustomersId.js.map +1 -0
  15. package/lib/config.d.ts +2 -2
  16. package/lib/config.js +2 -2
  17. package/models/components/business.d.ts +31 -0
  18. package/models/components/business.d.ts.map +1 -0
  19. package/models/components/business.js +71 -0
  20. package/models/components/business.js.map +1 -0
  21. package/models/components/cart.d.ts +1 -1
  22. package/models/components/cart.d.ts.map +1 -1
  23. package/models/components/cart.js +5 -5
  24. package/models/components/cart.js.map +1 -1
  25. package/models/components/createcustomer.d.ts +29 -0
  26. package/models/components/createcustomer.d.ts.map +1 -0
  27. package/models/components/createcustomer.js +54 -0
  28. package/models/components/createcustomer.js.map +1 -0
  29. package/models/components/{customeraddress.d.ts → customeraddressinput.d.ts} +29 -29
  30. package/models/components/customeraddressinput.d.ts.map +1 -0
  31. package/models/components/{customeraddress.js → customeraddressinput.js} +30 -30
  32. package/models/components/customeraddressinput.js.map +1 -0
  33. package/models/components/customerdetail.d.ts +51 -0
  34. package/models/components/customerdetail.d.ts.map +1 -0
  35. package/models/components/customerdetail.js +88 -0
  36. package/models/components/customerdetail.js.map +1 -0
  37. package/models/components/index.d.ts +5 -1
  38. package/models/components/index.d.ts.map +1 -1
  39. package/models/components/index.js +5 -1
  40. package/models/components/index.js.map +1 -1
  41. package/models/components/orderdetail.d.ts +1 -1
  42. package/models/components/orderdetail.d.ts.map +1 -1
  43. package/models/components/orderdetail.js +5 -5
  44. package/models/components/orderdetail.js.map +1 -1
  45. package/models/components/updatecustomer.d.ts +26 -0
  46. package/models/components/updatecustomer.d.ts.map +1 -0
  47. package/models/components/updatecustomer.js +51 -0
  48. package/models/components/updatecustomer.js.map +1 -0
  49. package/models/operations/getcustomersid.d.ts +82 -0
  50. package/models/operations/getcustomersid.d.ts.map +1 -0
  51. package/models/operations/getcustomersid.js +106 -0
  52. package/models/operations/getcustomersid.js.map +1 -0
  53. package/models/operations/index.d.ts +3 -0
  54. package/models/operations/index.d.ts.map +1 -1
  55. package/models/operations/index.js +3 -0
  56. package/models/operations/index.js.map +1 -1
  57. package/models/operations/postcustomers.d.ts +56 -0
  58. package/models/operations/postcustomers.d.ts.map +1 -0
  59. package/models/operations/postcustomers.js +87 -0
  60. package/models/operations/postcustomers.js.map +1 -0
  61. package/models/operations/putcustomersid.d.ts +84 -0
  62. package/models/operations/putcustomersid.d.ts.map +1 -0
  63. package/models/operations/putcustomersid.js +120 -0
  64. package/models/operations/putcustomersid.js.map +1 -0
  65. package/package.json +1 -1
  66. package/sdk/customersapi.d.ts +22 -0
  67. package/sdk/customersapi.d.ts.map +1 -1
  68. package/sdk/customersapi.js +30 -0
  69. package/sdk/customersapi.js.map +1 -1
  70. package/src/funcs/customersAPIGetCustomersId.ts +124 -0
  71. package/src/funcs/customersAPIPostCustomers.ts +133 -0
  72. package/src/funcs/customersAPIPutCustomersId.ts +136 -0
  73. package/src/lib/config.ts +2 -2
  74. package/src/models/components/business.ts +64 -0
  75. package/src/models/components/cart.ts +1 -1
  76. package/src/models/components/createcustomer.ts +58 -0
  77. package/src/models/components/customerdetail.ts +109 -0
  78. package/src/models/components/index.ts +5 -1
  79. package/src/models/components/orderdetail.ts +1 -1
  80. package/src/models/components/updatecustomer.ts +48 -0
  81. package/src/models/operations/getcustomersid.ts +153 -0
  82. package/src/models/operations/index.ts +3 -0
  83. package/src/models/operations/postcustomers.ts +110 -0
  84. package/src/models/operations/putcustomersid.ts +169 -0
  85. package/src/sdk/customersapi.ts +43 -0
  86. package/models/components/customeraddress.d.ts.map +0 -1
  87. package/models/components/customeraddress.js.map +0 -1
  88. package/src/models/components/{customeraddress.ts → customeraddressinput.ts} +46 -46
@@ -0,0 +1,48 @@
1
+ /*
2
+ * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
3
+ */
4
+
5
+ import {
6
+ Business,
7
+ Business$inboundSchema,
8
+ Business$Outbound,
9
+ Business$outboundSchema,
10
+ } from "./business.js";
11
+ import * as z from "zod";
12
+
13
+ export type UpdateCustomer = {
14
+ business?: Business | undefined;
15
+ };
16
+
17
+ /** @internal */
18
+ export const UpdateCustomer$inboundSchema: z.ZodType<UpdateCustomer, z.ZodTypeDef, unknown> =
19
+ z.object({
20
+ business: Business$inboundSchema.optional(),
21
+ });
22
+
23
+ /** @internal */
24
+ export type UpdateCustomer$Outbound = {
25
+ business?: Business$Outbound | undefined;
26
+ };
27
+
28
+ /** @internal */
29
+ export const UpdateCustomer$outboundSchema: z.ZodType<
30
+ UpdateCustomer$Outbound,
31
+ z.ZodTypeDef,
32
+ UpdateCustomer
33
+ > = z.object({
34
+ business: Business$outboundSchema.optional(),
35
+ });
36
+
37
+ /**
38
+ * @internal
39
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
40
+ */
41
+ export namespace UpdateCustomer$ {
42
+ /** @deprecated use `UpdateCustomer$inboundSchema` instead. */
43
+ export const inboundSchema = UpdateCustomer$inboundSchema;
44
+ /** @deprecated use `UpdateCustomer$outboundSchema` instead. */
45
+ export const outboundSchema = UpdateCustomer$outboundSchema;
46
+ /** @deprecated use `UpdateCustomer$Outbound` instead. */
47
+ export type Outbound = UpdateCustomer$Outbound;
48
+ }
@@ -0,0 +1,153 @@
1
+ /*
2
+ * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
3
+ */
4
+
5
+ import { remap as remap$ } from "../../lib/primitives.js";
6
+ import * as components from "../components/index.js";
7
+ import * as z from "zod";
8
+
9
+ export type GetCustomersIdRequest = {
10
+ /**
11
+ * Customer id
12
+ */
13
+ id: string;
14
+ };
15
+
16
+ export type GetCustomersIdContent = {
17
+ customerDetail?: components.CustomerDetail | undefined;
18
+ };
19
+
20
+ /**
21
+ * OK
22
+ */
23
+ export type GetCustomersIdResponseBody = {
24
+ message?: string | undefined;
25
+ success?: boolean | undefined;
26
+ content?: GetCustomersIdContent | undefined;
27
+ };
28
+
29
+ /** @internal */
30
+ export const GetCustomersIdRequest$inboundSchema: z.ZodType<
31
+ GetCustomersIdRequest,
32
+ z.ZodTypeDef,
33
+ unknown
34
+ > = z.object({
35
+ id: z.string(),
36
+ });
37
+
38
+ /** @internal */
39
+ export type GetCustomersIdRequest$Outbound = {
40
+ id: string;
41
+ };
42
+
43
+ /** @internal */
44
+ export const GetCustomersIdRequest$outboundSchema: z.ZodType<
45
+ GetCustomersIdRequest$Outbound,
46
+ z.ZodTypeDef,
47
+ GetCustomersIdRequest
48
+ > = z.object({
49
+ id: z.string(),
50
+ });
51
+
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 namespace GetCustomersIdRequest$ {
57
+ /** @deprecated use `GetCustomersIdRequest$inboundSchema` instead. */
58
+ export const inboundSchema = GetCustomersIdRequest$inboundSchema;
59
+ /** @deprecated use `GetCustomersIdRequest$outboundSchema` instead. */
60
+ export const outboundSchema = GetCustomersIdRequest$outboundSchema;
61
+ /** @deprecated use `GetCustomersIdRequest$Outbound` instead. */
62
+ export type Outbound = GetCustomersIdRequest$Outbound;
63
+ }
64
+
65
+ /** @internal */
66
+ export const GetCustomersIdContent$inboundSchema: z.ZodType<
67
+ GetCustomersIdContent,
68
+ z.ZodTypeDef,
69
+ unknown
70
+ > = z
71
+ .object({
72
+ customer_detail: components.CustomerDetail$inboundSchema.optional(),
73
+ })
74
+ .transform((v) => {
75
+ return remap$(v, {
76
+ customer_detail: "customerDetail",
77
+ });
78
+ });
79
+
80
+ /** @internal */
81
+ export type GetCustomersIdContent$Outbound = {
82
+ customer_detail?: components.CustomerDetail$Outbound | undefined;
83
+ };
84
+
85
+ /** @internal */
86
+ export const GetCustomersIdContent$outboundSchema: z.ZodType<
87
+ GetCustomersIdContent$Outbound,
88
+ z.ZodTypeDef,
89
+ GetCustomersIdContent
90
+ > = z
91
+ .object({
92
+ customerDetail: components.CustomerDetail$outboundSchema.optional(),
93
+ })
94
+ .transform((v) => {
95
+ return remap$(v, {
96
+ customerDetail: "customer_detail",
97
+ });
98
+ });
99
+
100
+ /**
101
+ * @internal
102
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
103
+ */
104
+ export namespace GetCustomersIdContent$ {
105
+ /** @deprecated use `GetCustomersIdContent$inboundSchema` instead. */
106
+ export const inboundSchema = GetCustomersIdContent$inboundSchema;
107
+ /** @deprecated use `GetCustomersIdContent$outboundSchema` instead. */
108
+ export const outboundSchema = GetCustomersIdContent$outboundSchema;
109
+ /** @deprecated use `GetCustomersIdContent$Outbound` instead. */
110
+ export type Outbound = GetCustomersIdContent$Outbound;
111
+ }
112
+
113
+ /** @internal */
114
+ export const GetCustomersIdResponseBody$inboundSchema: z.ZodType<
115
+ GetCustomersIdResponseBody,
116
+ z.ZodTypeDef,
117
+ unknown
118
+ > = z.object({
119
+ message: z.string().optional(),
120
+ success: z.boolean().optional(),
121
+ content: z.lazy(() => GetCustomersIdContent$inboundSchema).optional(),
122
+ });
123
+
124
+ /** @internal */
125
+ export type GetCustomersIdResponseBody$Outbound = {
126
+ message?: string | undefined;
127
+ success?: boolean | undefined;
128
+ content?: GetCustomersIdContent$Outbound | undefined;
129
+ };
130
+
131
+ /** @internal */
132
+ export const GetCustomersIdResponseBody$outboundSchema: z.ZodType<
133
+ GetCustomersIdResponseBody$Outbound,
134
+ z.ZodTypeDef,
135
+ GetCustomersIdResponseBody
136
+ > = z.object({
137
+ message: z.string().optional(),
138
+ success: z.boolean().optional(),
139
+ content: z.lazy(() => GetCustomersIdContent$outboundSchema).optional(),
140
+ });
141
+
142
+ /**
143
+ * @internal
144
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
145
+ */
146
+ export namespace GetCustomersIdResponseBody$ {
147
+ /** @deprecated use `GetCustomersIdResponseBody$inboundSchema` instead. */
148
+ export const inboundSchema = GetCustomersIdResponseBody$inboundSchema;
149
+ /** @deprecated use `GetCustomersIdResponseBody$outboundSchema` instead. */
150
+ export const outboundSchema = GetCustomersIdResponseBody$outboundSchema;
151
+ /** @deprecated use `GetCustomersIdResponseBody$Outbound` instead. */
152
+ export type Outbound = GetCustomersIdResponseBody$Outbound;
153
+ }
@@ -21,6 +21,7 @@ export * from "./getcommoncountriesisocodestates.js";
21
21
  export * from "./getcoupons.js";
22
22
  export * from "./getcrosssell.js";
23
23
  export * from "./getcustomeraddressid.js";
24
+ export * from "./getcustomersid.js";
24
25
  export * from "./getcustomersuseridreviews.js";
25
26
  export * from "./getloyaltypoint.js";
26
27
  export * from "./getloyaltypointactivity.js";
@@ -69,6 +70,7 @@ export * from "./postcartitemid.js";
69
70
  export * from "./postcartsid.js";
70
71
  export * from "./postcheckoutredeemgiftcard.js";
71
72
  export * from "./postcreditbalance.js";
73
+ export * from "./postcustomers.js";
72
74
  export * from "./postcustomersnewslettersubscription.js";
73
75
  export * from "./postloyaltypoints.js";
74
76
  export * from "./postorder.js";
@@ -82,3 +84,4 @@ export * from "./putauthuseriddeactivate.js";
82
84
  export * from "./putauthuseridnotificationpreferences.js";
83
85
  export * from "./putauthuseridprofileimage.js";
84
86
  export * from "./putcustomeraddressid.js";
87
+ export * from "./putcustomersid.js";
@@ -0,0 +1,110 @@
1
+ /*
2
+ * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
3
+ */
4
+
5
+ import { remap as remap$ } from "../../lib/primitives.js";
6
+ import * as components from "../components/index.js";
7
+ import * as z from "zod";
8
+
9
+ export type PostCustomersContent = {
10
+ customerDetail?: components.CustomerDetail | undefined;
11
+ };
12
+
13
+ /**
14
+ * OK
15
+ */
16
+ export type PostCustomersResponseBody = {
17
+ message?: string | undefined;
18
+ success?: boolean | undefined;
19
+ content?: PostCustomersContent | undefined;
20
+ };
21
+
22
+ /** @internal */
23
+ export const PostCustomersContent$inboundSchema: z.ZodType<
24
+ PostCustomersContent,
25
+ z.ZodTypeDef,
26
+ unknown
27
+ > = z
28
+ .object({
29
+ customer_detail: components.CustomerDetail$inboundSchema.optional(),
30
+ })
31
+ .transform((v) => {
32
+ return remap$(v, {
33
+ customer_detail: "customerDetail",
34
+ });
35
+ });
36
+
37
+ /** @internal */
38
+ export type PostCustomersContent$Outbound = {
39
+ customer_detail?: components.CustomerDetail$Outbound | undefined;
40
+ };
41
+
42
+ /** @internal */
43
+ export const PostCustomersContent$outboundSchema: z.ZodType<
44
+ PostCustomersContent$Outbound,
45
+ z.ZodTypeDef,
46
+ PostCustomersContent
47
+ > = z
48
+ .object({
49
+ customerDetail: components.CustomerDetail$outboundSchema.optional(),
50
+ })
51
+ .transform((v) => {
52
+ return remap$(v, {
53
+ customerDetail: "customer_detail",
54
+ });
55
+ });
56
+
57
+ /**
58
+ * @internal
59
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
60
+ */
61
+ export namespace PostCustomersContent$ {
62
+ /** @deprecated use `PostCustomersContent$inboundSchema` instead. */
63
+ export const inboundSchema = PostCustomersContent$inboundSchema;
64
+ /** @deprecated use `PostCustomersContent$outboundSchema` instead. */
65
+ export const outboundSchema = PostCustomersContent$outboundSchema;
66
+ /** @deprecated use `PostCustomersContent$Outbound` instead. */
67
+ export type Outbound = PostCustomersContent$Outbound;
68
+ }
69
+
70
+ /** @internal */
71
+ export const PostCustomersResponseBody$inboundSchema: z.ZodType<
72
+ PostCustomersResponseBody,
73
+ z.ZodTypeDef,
74
+ unknown
75
+ > = z.object({
76
+ message: z.string().optional(),
77
+ success: z.boolean().optional(),
78
+ content: z.lazy(() => PostCustomersContent$inboundSchema).optional(),
79
+ });
80
+
81
+ /** @internal */
82
+ export type PostCustomersResponseBody$Outbound = {
83
+ message?: string | undefined;
84
+ success?: boolean | undefined;
85
+ content?: PostCustomersContent$Outbound | undefined;
86
+ };
87
+
88
+ /** @internal */
89
+ export const PostCustomersResponseBody$outboundSchema: z.ZodType<
90
+ PostCustomersResponseBody$Outbound,
91
+ z.ZodTypeDef,
92
+ PostCustomersResponseBody
93
+ > = z.object({
94
+ message: z.string().optional(),
95
+ success: z.boolean().optional(),
96
+ content: z.lazy(() => PostCustomersContent$outboundSchema).optional(),
97
+ });
98
+
99
+ /**
100
+ * @internal
101
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
102
+ */
103
+ export namespace PostCustomersResponseBody$ {
104
+ /** @deprecated use `PostCustomersResponseBody$inboundSchema` instead. */
105
+ export const inboundSchema = PostCustomersResponseBody$inboundSchema;
106
+ /** @deprecated use `PostCustomersResponseBody$outboundSchema` instead. */
107
+ export const outboundSchema = PostCustomersResponseBody$outboundSchema;
108
+ /** @deprecated use `PostCustomersResponseBody$Outbound` instead. */
109
+ export type Outbound = PostCustomersResponseBody$Outbound;
110
+ }
@@ -0,0 +1,169 @@
1
+ /*
2
+ * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
3
+ */
4
+
5
+ import { remap as remap$ } from "../../lib/primitives.js";
6
+ import * as components from "../components/index.js";
7
+ import * as z from "zod";
8
+
9
+ export type PutCustomersIdRequest = {
10
+ /**
11
+ * Customer id
12
+ */
13
+ id: string;
14
+ updateCustomer?: components.UpdateCustomer | undefined;
15
+ };
16
+
17
+ export type PutCustomersIdContent = {
18
+ customerDetail?: components.CustomerDetail | undefined;
19
+ };
20
+
21
+ /**
22
+ * OK
23
+ */
24
+ export type PutCustomersIdResponseBody = {
25
+ message?: string | undefined;
26
+ success?: boolean | undefined;
27
+ content?: PutCustomersIdContent | undefined;
28
+ };
29
+
30
+ /** @internal */
31
+ export const PutCustomersIdRequest$inboundSchema: z.ZodType<
32
+ PutCustomersIdRequest,
33
+ z.ZodTypeDef,
34
+ unknown
35
+ > = z
36
+ .object({
37
+ id: z.string(),
38
+ UpdateCustomer: components.UpdateCustomer$inboundSchema.optional(),
39
+ })
40
+ .transform((v) => {
41
+ return remap$(v, {
42
+ UpdateCustomer: "updateCustomer",
43
+ });
44
+ });
45
+
46
+ /** @internal */
47
+ export type PutCustomersIdRequest$Outbound = {
48
+ id: string;
49
+ UpdateCustomer?: components.UpdateCustomer$Outbound | undefined;
50
+ };
51
+
52
+ /** @internal */
53
+ export const PutCustomersIdRequest$outboundSchema: z.ZodType<
54
+ PutCustomersIdRequest$Outbound,
55
+ z.ZodTypeDef,
56
+ PutCustomersIdRequest
57
+ > = z
58
+ .object({
59
+ id: z.string(),
60
+ updateCustomer: components.UpdateCustomer$outboundSchema.optional(),
61
+ })
62
+ .transform((v) => {
63
+ return remap$(v, {
64
+ updateCustomer: "UpdateCustomer",
65
+ });
66
+ });
67
+
68
+ /**
69
+ * @internal
70
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
71
+ */
72
+ export namespace PutCustomersIdRequest$ {
73
+ /** @deprecated use `PutCustomersIdRequest$inboundSchema` instead. */
74
+ export const inboundSchema = PutCustomersIdRequest$inboundSchema;
75
+ /** @deprecated use `PutCustomersIdRequest$outboundSchema` instead. */
76
+ export const outboundSchema = PutCustomersIdRequest$outboundSchema;
77
+ /** @deprecated use `PutCustomersIdRequest$Outbound` instead. */
78
+ export type Outbound = PutCustomersIdRequest$Outbound;
79
+ }
80
+
81
+ /** @internal */
82
+ export const PutCustomersIdContent$inboundSchema: z.ZodType<
83
+ PutCustomersIdContent,
84
+ z.ZodTypeDef,
85
+ unknown
86
+ > = z
87
+ .object({
88
+ customer_detail: components.CustomerDetail$inboundSchema.optional(),
89
+ })
90
+ .transform((v) => {
91
+ return remap$(v, {
92
+ customer_detail: "customerDetail",
93
+ });
94
+ });
95
+
96
+ /** @internal */
97
+ export type PutCustomersIdContent$Outbound = {
98
+ customer_detail?: components.CustomerDetail$Outbound | undefined;
99
+ };
100
+
101
+ /** @internal */
102
+ export const PutCustomersIdContent$outboundSchema: z.ZodType<
103
+ PutCustomersIdContent$Outbound,
104
+ z.ZodTypeDef,
105
+ PutCustomersIdContent
106
+ > = z
107
+ .object({
108
+ customerDetail: components.CustomerDetail$outboundSchema.optional(),
109
+ })
110
+ .transform((v) => {
111
+ return remap$(v, {
112
+ customerDetail: "customer_detail",
113
+ });
114
+ });
115
+
116
+ /**
117
+ * @internal
118
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
119
+ */
120
+ export namespace PutCustomersIdContent$ {
121
+ /** @deprecated use `PutCustomersIdContent$inboundSchema` instead. */
122
+ export const inboundSchema = PutCustomersIdContent$inboundSchema;
123
+ /** @deprecated use `PutCustomersIdContent$outboundSchema` instead. */
124
+ export const outboundSchema = PutCustomersIdContent$outboundSchema;
125
+ /** @deprecated use `PutCustomersIdContent$Outbound` instead. */
126
+ export type Outbound = PutCustomersIdContent$Outbound;
127
+ }
128
+
129
+ /** @internal */
130
+ export const PutCustomersIdResponseBody$inboundSchema: z.ZodType<
131
+ PutCustomersIdResponseBody,
132
+ z.ZodTypeDef,
133
+ unknown
134
+ > = z.object({
135
+ message: z.string().optional(),
136
+ success: z.boolean().optional(),
137
+ content: z.lazy(() => PutCustomersIdContent$inboundSchema).optional(),
138
+ });
139
+
140
+ /** @internal */
141
+ export type PutCustomersIdResponseBody$Outbound = {
142
+ message?: string | undefined;
143
+ success?: boolean | undefined;
144
+ content?: PutCustomersIdContent$Outbound | undefined;
145
+ };
146
+
147
+ /** @internal */
148
+ export const PutCustomersIdResponseBody$outboundSchema: z.ZodType<
149
+ PutCustomersIdResponseBody$Outbound,
150
+ z.ZodTypeDef,
151
+ PutCustomersIdResponseBody
152
+ > = z.object({
153
+ message: z.string().optional(),
154
+ success: z.boolean().optional(),
155
+ content: z.lazy(() => PutCustomersIdContent$outboundSchema).optional(),
156
+ });
157
+
158
+ /**
159
+ * @internal
160
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
161
+ */
162
+ export namespace PutCustomersIdResponseBody$ {
163
+ /** @deprecated use `PutCustomersIdResponseBody$inboundSchema` instead. */
164
+ export const inboundSchema = PutCustomersIdResponseBody$inboundSchema;
165
+ /** @deprecated use `PutCustomersIdResponseBody$outboundSchema` instead. */
166
+ export const outboundSchema = PutCustomersIdResponseBody$outboundSchema;
167
+ /** @deprecated use `PutCustomersIdResponseBody$Outbound` instead. */
168
+ export type Outbound = PutCustomersIdResponseBody$Outbound;
169
+ }
@@ -2,8 +2,12 @@
2
2
  * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
3
3
  */
4
4
 
5
+ import { customersAPIGetCustomersId } from "../funcs/customersAPIGetCustomersId.js";
5
6
  import { customersAPIGetRecommendedProducts } from "../funcs/customersAPIGetRecommendedProducts.js";
7
+ import { customersAPIPostCustomers } from "../funcs/customersAPIPostCustomers.js";
8
+ import { customersAPIPutCustomersId } from "../funcs/customersAPIPutCustomersId.js";
6
9
  import { ClientSDK, RequestOptions } from "../lib/sdks.js";
10
+ import * as components from "../models/components/index.js";
7
11
  import * as operations from "../models/operations/index.js";
8
12
  import { unwrapAsync } from "../types/fp.js";
9
13
 
@@ -20,4 +24,43 @@ export class CustomersAPI extends ClientSDK {
20
24
  ): Promise<operations.GetRecommendedProductsResponseBody> {
21
25
  return unwrapAsync(customersAPIGetRecommendedProducts(this, request, options));
22
26
  }
27
+
28
+ /**
29
+ * Create customer
30
+ *
31
+ * @remarks
32
+ * Create customer
33
+ */
34
+ async postCustomers(
35
+ request?: components.CreateCustomer | undefined,
36
+ options?: RequestOptions
37
+ ): Promise<operations.PostCustomersResponseBody> {
38
+ return unwrapAsync(customersAPIPostCustomers(this, request, options));
39
+ }
40
+
41
+ /**
42
+ * Retrieve customer detail
43
+ *
44
+ * @remarks
45
+ * Retrieve customer detail.
46
+ */
47
+ async getCustomersId(
48
+ request: operations.GetCustomersIdRequest,
49
+ options?: RequestOptions
50
+ ): Promise<operations.GetCustomersIdResponseBody> {
51
+ return unwrapAsync(customersAPIGetCustomersId(this, request, options));
52
+ }
53
+
54
+ /**
55
+ * Update customer detail
56
+ *
57
+ * @remarks
58
+ * Update customer detail
59
+ */
60
+ async putCustomersId(
61
+ request: operations.PutCustomersIdRequest,
62
+ options?: RequestOptions
63
+ ): Promise<operations.PutCustomersIdResponseBody> {
64
+ return unwrapAsync(customersAPIPutCustomersId(this, request, options));
65
+ }
23
66
  }
@@ -1 +0,0 @@
1
- {"version":3,"file":"customeraddress.d.ts","sourceRoot":"","sources":["../../src/models/components/customeraddress.ts"],"names":[],"mappings":"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"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"customeraddress.js","sourceRoot":"","sources":["../../src/models/components/customeraddress.ts"],"names":[],"mappings":"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"}