ce-storefront 0.15.3 → 0.15.6

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 (95) hide show
  1. package/README.md +15 -2
  2. package/docs/sdks/auth/README.md +10 -0
  3. package/docs/sdks/carts/README.md +12 -0
  4. package/docs/sdks/catalog/README.md +11 -0
  5. package/docs/sdks/common/README.md +1 -0
  6. package/docs/sdks/customers/README.md +7 -0
  7. package/docs/sdks/orders/README.md +7 -0
  8. package/docs/sdks/pos/README.md +397 -0
  9. package/docs/sdks/shipping/README.md +1 -0
  10. package/esm/funcs/posCreatePosCart.d.ts +17 -0
  11. package/esm/funcs/posCreatePosCart.d.ts.map +1 -0
  12. package/esm/funcs/posCreatePosCart.js +80 -0
  13. package/esm/funcs/posCreatePosCart.js.map +1 -0
  14. package/esm/funcs/posLoginToPosDevice.d.ts +17 -0
  15. package/esm/funcs/posLoginToPosDevice.d.ts.map +1 -0
  16. package/esm/funcs/posLoginToPosDevice.js +84 -0
  17. package/esm/funcs/posLoginToPosDevice.js.map +1 -0
  18. package/esm/funcs/posPairPosDevice.d.ts +17 -0
  19. package/esm/funcs/posPairPosDevice.d.ts.map +1 -0
  20. package/esm/funcs/posPairPosDevice.js +84 -0
  21. package/esm/funcs/posPairPosDevice.js.map +1 -0
  22. package/esm/funcs/posRefreshPosAccessToken.d.ts +17 -0
  23. package/esm/funcs/posRefreshPosAccessToken.d.ts.map +1 -0
  24. package/esm/funcs/posRefreshPosAccessToken.js +81 -0
  25. package/esm/funcs/posRefreshPosAccessToken.js.map +1 -0
  26. package/esm/funcs/posUpdatePosCart.d.ts +17 -0
  27. package/esm/funcs/posUpdatePosCart.d.ts.map +1 -0
  28. package/esm/funcs/posUpdatePosCart.js +84 -0
  29. package/esm/funcs/posUpdatePosCart.js.map +1 -0
  30. package/esm/lib/base64.d.ts +2 -2
  31. package/esm/lib/base64.d.ts.map +1 -1
  32. package/esm/lib/config.d.ts +3 -3
  33. package/esm/lib/config.js +3 -3
  34. package/esm/lib/encodings.d.ts.map +1 -1
  35. package/esm/models/components/index.d.ts +1 -0
  36. package/esm/models/components/index.d.ts.map +1 -1
  37. package/esm/models/components/index.js +1 -0
  38. package/esm/models/components/index.js.map +1 -1
  39. package/esm/models/components/posuser.d.ts +124 -0
  40. package/esm/models/components/posuser.d.ts.map +1 -0
  41. package/esm/models/components/posuser.js +139 -0
  42. package/esm/models/components/posuser.js.map +1 -0
  43. package/esm/models/operations/createposcart.d.ts +90 -0
  44. package/esm/models/operations/createposcart.d.ts.map +1 -0
  45. package/esm/models/operations/createposcart.js +86 -0
  46. package/esm/models/operations/createposcart.js.map +1 -0
  47. package/esm/models/operations/index.d.ts +5 -0
  48. package/esm/models/operations/index.d.ts.map +1 -1
  49. package/esm/models/operations/index.js +5 -0
  50. package/esm/models/operations/index.js.map +1 -1
  51. package/esm/models/operations/logintoposdevice.d.ts +118 -0
  52. package/esm/models/operations/logintoposdevice.d.ts.map +1 -0
  53. package/esm/models/operations/logintoposdevice.js +146 -0
  54. package/esm/models/operations/logintoposdevice.js.map +1 -0
  55. package/esm/models/operations/pairposdevice.d.ts +115 -0
  56. package/esm/models/operations/pairposdevice.d.ts.map +1 -0
  57. package/esm/models/operations/pairposdevice.js +141 -0
  58. package/esm/models/operations/pairposdevice.js.map +1 -0
  59. package/esm/models/operations/refreshposaccesstoken.d.ts +88 -0
  60. package/esm/models/operations/refreshposaccesstoken.d.ts.map +1 -0
  61. package/esm/models/operations/refreshposaccesstoken.js +106 -0
  62. package/esm/models/operations/refreshposaccesstoken.js.map +1 -0
  63. package/esm/models/operations/updateposcart.d.ts +120 -0
  64. package/esm/models/operations/updateposcart.d.ts.map +1 -0
  65. package/esm/models/operations/updateposcart.js +122 -0
  66. package/esm/models/operations/updateposcart.js.map +1 -0
  67. package/esm/sdk/pos.d.ts +40 -0
  68. package/esm/sdk/pos.d.ts.map +1 -0
  69. package/esm/sdk/pos.js +58 -0
  70. package/esm/sdk/pos.js.map +1 -0
  71. package/esm/sdk/sdk.d.ts +3 -0
  72. package/esm/sdk/sdk.d.ts.map +1 -1
  73. package/esm/sdk/sdk.js +4 -0
  74. package/esm/sdk/sdk.js.map +1 -1
  75. package/examples/README.md +5 -0
  76. package/examples/catalogListProducts.example.ts +2 -0
  77. package/examples/package-lock.json +6 -7
  78. package/jsr.json +1 -1
  79. package/package.json +5 -6
  80. package/src/funcs/posCreatePosCart.ts +165 -0
  81. package/src/funcs/posLoginToPosDevice.ts +174 -0
  82. package/src/funcs/posPairPosDevice.ts +174 -0
  83. package/src/funcs/posRefreshPosAccessToken.ts +164 -0
  84. package/src/funcs/posUpdatePosCart.ts +167 -0
  85. package/src/lib/config.ts +3 -3
  86. package/src/models/components/index.ts +1 -0
  87. package/src/models/components/posuser.ts +263 -0
  88. package/src/models/operations/createposcart.ts +197 -0
  89. package/src/models/operations/index.ts +5 -0
  90. package/src/models/operations/logintoposdevice.ts +297 -0
  91. package/src/models/operations/pairposdevice.ts +286 -0
  92. package/src/models/operations/refreshposaccesstoken.ts +223 -0
  93. package/src/models/operations/updateposcart.ts +271 -0
  94. package/src/sdk/pos.ts +103 -0
  95. package/src/sdk/sdk.ts +6 -0
@@ -0,0 +1,139 @@
1
+ /*
2
+ * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
3
+ */
4
+ import * as z from "zod";
5
+ import { remap as remap$ } from "../../lib/primitives.js";
6
+ import { safeParse } from "../../lib/schemas.js";
7
+ /** @internal */
8
+ export const Device$inboundSchema = z
9
+ .object({
10
+ id: z.string().optional(),
11
+ name: z.string().optional(),
12
+ });
13
+ /** @internal */
14
+ export const Device$outboundSchema = z.object({
15
+ id: z.string().optional(),
16
+ name: z.string().optional(),
17
+ });
18
+ /**
19
+ * @internal
20
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
21
+ */
22
+ export var Device$;
23
+ (function (Device$) {
24
+ /** @deprecated use `Device$inboundSchema` instead. */
25
+ Device$.inboundSchema = Device$inboundSchema;
26
+ /** @deprecated use `Device$outboundSchema` instead. */
27
+ Device$.outboundSchema = Device$outboundSchema;
28
+ })(Device$ || (Device$ = {}));
29
+ export function deviceToJSON(device) {
30
+ return JSON.stringify(Device$outboundSchema.parse(device));
31
+ }
32
+ export function deviceFromJSON(jsonString) {
33
+ return safeParse(jsonString, (x) => Device$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'Device' from JSON`);
34
+ }
35
+ /** @internal */
36
+ export const Location$inboundSchema = z.object({
37
+ id: z.string().optional(),
38
+ name: z.string().optional(),
39
+ });
40
+ /** @internal */
41
+ export const Location$outboundSchema = z.object({
42
+ id: z.string().optional(),
43
+ name: z.string().optional(),
44
+ });
45
+ /**
46
+ * @internal
47
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
48
+ */
49
+ export var Location$;
50
+ (function (Location$) {
51
+ /** @deprecated use `Location$inboundSchema` instead. */
52
+ Location$.inboundSchema = Location$inboundSchema;
53
+ /** @deprecated use `Location$outboundSchema` instead. */
54
+ Location$.outboundSchema = Location$outboundSchema;
55
+ })(Location$ || (Location$ = {}));
56
+ export function locationToJSON(location) {
57
+ return JSON.stringify(Location$outboundSchema.parse(location));
58
+ }
59
+ export function locationFromJSON(jsonString) {
60
+ return safeParse(jsonString, (x) => Location$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'Location' from JSON`);
61
+ }
62
+ /** @internal */
63
+ export const Role$inboundSchema = z
64
+ .object({
65
+ id: z.string().optional(),
66
+ name: z.string().optional(),
67
+ });
68
+ /** @internal */
69
+ export const Role$outboundSchema = z.object({
70
+ id: z.string().optional(),
71
+ name: z.string().optional(),
72
+ });
73
+ /**
74
+ * @internal
75
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
76
+ */
77
+ export var Role$;
78
+ (function (Role$) {
79
+ /** @deprecated use `Role$inboundSchema` instead. */
80
+ Role$.inboundSchema = Role$inboundSchema;
81
+ /** @deprecated use `Role$outboundSchema` instead. */
82
+ Role$.outboundSchema = Role$outboundSchema;
83
+ })(Role$ || (Role$ = {}));
84
+ export function roleToJSON(role) {
85
+ return JSON.stringify(Role$outboundSchema.parse(role));
86
+ }
87
+ export function roleFromJSON(jsonString) {
88
+ return safeParse(jsonString, (x) => Role$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'Role' from JSON`);
89
+ }
90
+ /** @internal */
91
+ export const PosUser$inboundSchema = z.object({
92
+ id: z.string().optional(),
93
+ first_name: z.string().optional(),
94
+ last_name: z.nullable(z.string()).optional(),
95
+ phone: z.string().optional(),
96
+ email: z.string().optional(),
97
+ device: z.lazy(() => Device$inboundSchema).optional(),
98
+ location: z.lazy(() => Location$inboundSchema).optional(),
99
+ role: z.lazy(() => Role$inboundSchema).optional(),
100
+ }).transform((v) => {
101
+ return remap$(v, {
102
+ "first_name": "firstName",
103
+ "last_name": "lastName",
104
+ });
105
+ });
106
+ /** @internal */
107
+ export const PosUser$outboundSchema = z.object({
108
+ id: z.string().optional(),
109
+ firstName: z.string().optional(),
110
+ lastName: z.nullable(z.string()).optional(),
111
+ phone: z.string().optional(),
112
+ email: z.string().optional(),
113
+ device: z.lazy(() => Device$outboundSchema).optional(),
114
+ location: z.lazy(() => Location$outboundSchema).optional(),
115
+ role: z.lazy(() => Role$outboundSchema).optional(),
116
+ }).transform((v) => {
117
+ return remap$(v, {
118
+ firstName: "first_name",
119
+ lastName: "last_name",
120
+ });
121
+ });
122
+ /**
123
+ * @internal
124
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
125
+ */
126
+ export var PosUser$;
127
+ (function (PosUser$) {
128
+ /** @deprecated use `PosUser$inboundSchema` instead. */
129
+ PosUser$.inboundSchema = PosUser$inboundSchema;
130
+ /** @deprecated use `PosUser$outboundSchema` instead. */
131
+ PosUser$.outboundSchema = PosUser$outboundSchema;
132
+ })(PosUser$ || (PosUser$ = {}));
133
+ export function posUserToJSON(posUser) {
134
+ return JSON.stringify(PosUser$outboundSchema.parse(posUser));
135
+ }
136
+ export function posUserFromJSON(jsonString) {
137
+ return safeParse(jsonString, (x) => PosUser$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'PosUser' from JSON`);
138
+ }
139
+ //# sourceMappingURL=posuser.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"posuser.js","sourceRoot":"","sources":["../../../src/models/components/posuser.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,90 @@
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 CreatePosCartRequestBody = {
6
+ items?: Array<components.UpdateCartItem> | undefined;
7
+ };
8
+ export type CreatePosCartContent = {
9
+ /**
10
+ * This cart model is structured to capture a wide range of details, facilitating accurate representation and management of user shopping carts in an e-commerce platform.
11
+ */
12
+ cart?: components.Cart | undefined;
13
+ };
14
+ /**
15
+ * OK
16
+ */
17
+ export type CreatePosCartResponseBody = {
18
+ message?: string | undefined;
19
+ success?: string | undefined;
20
+ content?: CreatePosCartContent | undefined;
21
+ };
22
+ /** @internal */
23
+ export declare const CreatePosCartRequestBody$inboundSchema: z.ZodType<CreatePosCartRequestBody, z.ZodTypeDef, unknown>;
24
+ /** @internal */
25
+ export type CreatePosCartRequestBody$Outbound = {
26
+ items?: Array<components.UpdateCartItem$Outbound> | undefined;
27
+ };
28
+ /** @internal */
29
+ export declare const CreatePosCartRequestBody$outboundSchema: z.ZodType<CreatePosCartRequestBody$Outbound, z.ZodTypeDef, CreatePosCartRequestBody>;
30
+ /**
31
+ * @internal
32
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
33
+ */
34
+ export declare namespace CreatePosCartRequestBody$ {
35
+ /** @deprecated use `CreatePosCartRequestBody$inboundSchema` instead. */
36
+ const inboundSchema: z.ZodType<CreatePosCartRequestBody, z.ZodTypeDef, unknown>;
37
+ /** @deprecated use `CreatePosCartRequestBody$outboundSchema` instead. */
38
+ const outboundSchema: z.ZodType<CreatePosCartRequestBody$Outbound, z.ZodTypeDef, CreatePosCartRequestBody>;
39
+ /** @deprecated use `CreatePosCartRequestBody$Outbound` instead. */
40
+ type Outbound = CreatePosCartRequestBody$Outbound;
41
+ }
42
+ export declare function createPosCartRequestBodyToJSON(createPosCartRequestBody: CreatePosCartRequestBody): string;
43
+ export declare function createPosCartRequestBodyFromJSON(jsonString: string): SafeParseResult<CreatePosCartRequestBody, SDKValidationError>;
44
+ /** @internal */
45
+ export declare const CreatePosCartContent$inboundSchema: z.ZodType<CreatePosCartContent, z.ZodTypeDef, unknown>;
46
+ /** @internal */
47
+ export type CreatePosCartContent$Outbound = {
48
+ cart?: components.Cart$Outbound | undefined;
49
+ };
50
+ /** @internal */
51
+ export declare const CreatePosCartContent$outboundSchema: z.ZodType<CreatePosCartContent$Outbound, z.ZodTypeDef, CreatePosCartContent>;
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 CreatePosCartContent$ {
57
+ /** @deprecated use `CreatePosCartContent$inboundSchema` instead. */
58
+ const inboundSchema: z.ZodType<CreatePosCartContent, z.ZodTypeDef, unknown>;
59
+ /** @deprecated use `CreatePosCartContent$outboundSchema` instead. */
60
+ const outboundSchema: z.ZodType<CreatePosCartContent$Outbound, z.ZodTypeDef, CreatePosCartContent>;
61
+ /** @deprecated use `CreatePosCartContent$Outbound` instead. */
62
+ type Outbound = CreatePosCartContent$Outbound;
63
+ }
64
+ export declare function createPosCartContentToJSON(createPosCartContent: CreatePosCartContent): string;
65
+ export declare function createPosCartContentFromJSON(jsonString: string): SafeParseResult<CreatePosCartContent, SDKValidationError>;
66
+ /** @internal */
67
+ export declare const CreatePosCartResponseBody$inboundSchema: z.ZodType<CreatePosCartResponseBody, z.ZodTypeDef, unknown>;
68
+ /** @internal */
69
+ export type CreatePosCartResponseBody$Outbound = {
70
+ message?: string | undefined;
71
+ success?: string | undefined;
72
+ content?: CreatePosCartContent$Outbound | undefined;
73
+ };
74
+ /** @internal */
75
+ export declare const CreatePosCartResponseBody$outboundSchema: z.ZodType<CreatePosCartResponseBody$Outbound, z.ZodTypeDef, CreatePosCartResponseBody>;
76
+ /**
77
+ * @internal
78
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
79
+ */
80
+ export declare namespace CreatePosCartResponseBody$ {
81
+ /** @deprecated use `CreatePosCartResponseBody$inboundSchema` instead. */
82
+ const inboundSchema: z.ZodType<CreatePosCartResponseBody, z.ZodTypeDef, unknown>;
83
+ /** @deprecated use `CreatePosCartResponseBody$outboundSchema` instead. */
84
+ const outboundSchema: z.ZodType<CreatePosCartResponseBody$Outbound, z.ZodTypeDef, CreatePosCartResponseBody>;
85
+ /** @deprecated use `CreatePosCartResponseBody$Outbound` instead. */
86
+ type Outbound = CreatePosCartResponseBody$Outbound;
87
+ }
88
+ export declare function createPosCartResponseBodyToJSON(createPosCartResponseBody: CreatePosCartResponseBody): string;
89
+ export declare function createPosCartResponseBodyFromJSON(jsonString: string): SafeParseResult<CreatePosCartResponseBody, SDKValidationError>;
90
+ //# sourceMappingURL=createposcart.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"createposcart.d.ts","sourceRoot":"","sources":["../../../src/models/operations/createposcart.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,86 @@
1
+ /*
2
+ * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
3
+ */
4
+ import * as z from "zod";
5
+ import { safeParse } from "../../lib/schemas.js";
6
+ import * as components from "../components/index.js";
7
+ /** @internal */
8
+ export const CreatePosCartRequestBody$inboundSchema = z.object({
9
+ items: z.array(components.UpdateCartItem$inboundSchema).optional(),
10
+ });
11
+ /** @internal */
12
+ export const CreatePosCartRequestBody$outboundSchema = z.object({
13
+ items: z.array(components.UpdateCartItem$outboundSchema).optional(),
14
+ });
15
+ /**
16
+ * @internal
17
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
18
+ */
19
+ export var CreatePosCartRequestBody$;
20
+ (function (CreatePosCartRequestBody$) {
21
+ /** @deprecated use `CreatePosCartRequestBody$inboundSchema` instead. */
22
+ CreatePosCartRequestBody$.inboundSchema = CreatePosCartRequestBody$inboundSchema;
23
+ /** @deprecated use `CreatePosCartRequestBody$outboundSchema` instead. */
24
+ CreatePosCartRequestBody$.outboundSchema = CreatePosCartRequestBody$outboundSchema;
25
+ })(CreatePosCartRequestBody$ || (CreatePosCartRequestBody$ = {}));
26
+ export function createPosCartRequestBodyToJSON(createPosCartRequestBody) {
27
+ return JSON.stringify(CreatePosCartRequestBody$outboundSchema.parse(createPosCartRequestBody));
28
+ }
29
+ export function createPosCartRequestBodyFromJSON(jsonString) {
30
+ return safeParse(jsonString, (x) => CreatePosCartRequestBody$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CreatePosCartRequestBody' from JSON`);
31
+ }
32
+ /** @internal */
33
+ export const CreatePosCartContent$inboundSchema = z.object({
34
+ cart: components.Cart$inboundSchema.optional(),
35
+ });
36
+ /** @internal */
37
+ export const CreatePosCartContent$outboundSchema = z.object({
38
+ cart: components.Cart$outboundSchema.optional(),
39
+ });
40
+ /**
41
+ * @internal
42
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
43
+ */
44
+ export var CreatePosCartContent$;
45
+ (function (CreatePosCartContent$) {
46
+ /** @deprecated use `CreatePosCartContent$inboundSchema` instead. */
47
+ CreatePosCartContent$.inboundSchema = CreatePosCartContent$inboundSchema;
48
+ /** @deprecated use `CreatePosCartContent$outboundSchema` instead. */
49
+ CreatePosCartContent$.outboundSchema = CreatePosCartContent$outboundSchema;
50
+ })(CreatePosCartContent$ || (CreatePosCartContent$ = {}));
51
+ export function createPosCartContentToJSON(createPosCartContent) {
52
+ return JSON.stringify(CreatePosCartContent$outboundSchema.parse(createPosCartContent));
53
+ }
54
+ export function createPosCartContentFromJSON(jsonString) {
55
+ return safeParse(jsonString, (x) => CreatePosCartContent$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CreatePosCartContent' from JSON`);
56
+ }
57
+ /** @internal */
58
+ export const CreatePosCartResponseBody$inboundSchema = z.object({
59
+ message: z.string().optional(),
60
+ success: z.string().optional(),
61
+ content: z.lazy(() => CreatePosCartContent$inboundSchema).optional(),
62
+ });
63
+ /** @internal */
64
+ export const CreatePosCartResponseBody$outboundSchema = z.object({
65
+ message: z.string().optional(),
66
+ success: z.string().optional(),
67
+ content: z.lazy(() => CreatePosCartContent$outboundSchema).optional(),
68
+ });
69
+ /**
70
+ * @internal
71
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
72
+ */
73
+ export var CreatePosCartResponseBody$;
74
+ (function (CreatePosCartResponseBody$) {
75
+ /** @deprecated use `CreatePosCartResponseBody$inboundSchema` instead. */
76
+ CreatePosCartResponseBody$.inboundSchema = CreatePosCartResponseBody$inboundSchema;
77
+ /** @deprecated use `CreatePosCartResponseBody$outboundSchema` instead. */
78
+ CreatePosCartResponseBody$.outboundSchema = CreatePosCartResponseBody$outboundSchema;
79
+ })(CreatePosCartResponseBody$ || (CreatePosCartResponseBody$ = {}));
80
+ export function createPosCartResponseBodyToJSON(createPosCartResponseBody) {
81
+ return JSON.stringify(CreatePosCartResponseBody$outboundSchema.parse(createPosCartResponseBody));
82
+ }
83
+ export function createPosCartResponseBodyFromJSON(jsonString) {
84
+ return safeParse(jsonString, (x) => CreatePosCartResponseBody$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CreatePosCartResponseBody' from JSON`);
85
+ }
86
+ //# sourceMappingURL=createposcart.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"createposcart.js","sourceRoot":"","sources":["../../../src/models/operations/createposcart.ts"],"names":[],"mappings":"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"}
@@ -4,6 +4,7 @@ export * from "./createaddress.js";
4
4
  export * from "./createcart.js";
5
5
  export * from "./createcartaddress.js";
6
6
  export * from "./createorder.js";
7
+ export * from "./createposcart.js";
7
8
  export * from "./deleteaddress.js";
8
9
  export * from "./deletecart.js";
9
10
  export * from "./deleteusercart.js";
@@ -32,11 +33,14 @@ export * from "./listsimilarproducts.js";
32
33
  export * from "./listskus.js";
33
34
  export * from "./listupsellproducts.js";
34
35
  export * from "./listuserreviews.js";
36
+ export * from "./logintoposdevice.js";
35
37
  export * from "./loginwithemail.js";
36
38
  export * from "./loginwithphone.js";
37
39
  export * from "./loginwithwhatsapp.js";
38
40
  export * from "./logout.js";
41
+ export * from "./pairposdevice.js";
39
42
  export * from "./redeemloyaltypoints.js";
43
+ export * from "./refreshposaccesstoken.js";
40
44
  export * from "./refreshtoken.js";
41
45
  export * from "./removecoupon.js";
42
46
  export * from "./removeloyaltypoints.js";
@@ -44,6 +48,7 @@ export * from "./retryorderpayment.js";
44
48
  export * from "./searchproducts.js";
45
49
  export * from "./updateaddressdetail.js";
46
50
  export * from "./updatecart.js";
51
+ export * from "./updateposcart.js";
47
52
  export * from "./updateshippingmethod.js";
48
53
  export * from "./updateuser.js";
49
54
  export * from "./verifyotp.js";
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/models/operations/index.ts"],"names":[],"mappings":"AAIA,cAAc,kBAAkB,CAAC;AACjC,cAAc,kBAAkB,CAAC;AACjC,cAAc,oBAAoB,CAAC;AACnC,cAAc,iBAAiB,CAAC;AAChC,cAAc,wBAAwB,CAAC;AACvC,cAAc,kBAAkB,CAAC;AACjC,cAAc,oBAAoB,CAAC;AACnC,cAAc,iBAAiB,CAAC;AAChC,cAAc,qBAAqB,CAAC;AACpC,cAAc,kBAAkB,CAAC;AACjC,cAAc,uBAAuB,CAAC;AACtC,cAAc,wBAAwB,CAAC;AACvC,cAAc,cAAc,CAAC;AAC7B,cAAc,wBAAwB,CAAC;AACvC,cAAc,qBAAqB,CAAC;AACpC,cAAc,uBAAuB,CAAC;AACtC,cAAc,uBAAuB,CAAC;AACtC,cAAc,yBAAyB,CAAC;AACxC,cAAc,kBAAkB,CAAC;AACjC,cAAc,oBAAoB,CAAC;AACnC,cAAc,uBAAuB,CAAC;AACtC,cAAc,oBAAoB,CAAC;AACnC,cAAc,qBAAqB,CAAC;AACpC,cAAc,0BAA0B,CAAC;AACzC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,iBAAiB,CAAC;AAChC,cAAc,yBAAyB,CAAC;AACxC,cAAc,yBAAyB,CAAC;AACxC,cAAc,mBAAmB,CAAC;AAClC,cAAc,0BAA0B,CAAC;AACzC,cAAc,0BAA0B,CAAC;AACzC,cAAc,eAAe,CAAC;AAC9B,cAAc,yBAAyB,CAAC;AACxC,cAAc,sBAAsB,CAAC;AACrC,cAAc,qBAAqB,CAAC;AACpC,cAAc,qBAAqB,CAAC;AACpC,cAAc,wBAAwB,CAAC;AACvC,cAAc,aAAa,CAAC;AAC5B,cAAc,0BAA0B,CAAC;AACzC,cAAc,mBAAmB,CAAC;AAClC,cAAc,mBAAmB,CAAC;AAClC,cAAc,0BAA0B,CAAC;AACzC,cAAc,wBAAwB,CAAC;AACvC,cAAc,qBAAqB,CAAC;AACpC,cAAc,0BAA0B,CAAC;AACzC,cAAc,iBAAiB,CAAC;AAChC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,iBAAiB,CAAC;AAChC,cAAc,gBAAgB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/models/operations/index.ts"],"names":[],"mappings":"AAIA,cAAc,kBAAkB,CAAC;AACjC,cAAc,kBAAkB,CAAC;AACjC,cAAc,oBAAoB,CAAC;AACnC,cAAc,iBAAiB,CAAC;AAChC,cAAc,wBAAwB,CAAC;AACvC,cAAc,kBAAkB,CAAC;AACjC,cAAc,oBAAoB,CAAC;AACnC,cAAc,oBAAoB,CAAC;AACnC,cAAc,iBAAiB,CAAC;AAChC,cAAc,qBAAqB,CAAC;AACpC,cAAc,kBAAkB,CAAC;AACjC,cAAc,uBAAuB,CAAC;AACtC,cAAc,wBAAwB,CAAC;AACvC,cAAc,cAAc,CAAC;AAC7B,cAAc,wBAAwB,CAAC;AACvC,cAAc,qBAAqB,CAAC;AACpC,cAAc,uBAAuB,CAAC;AACtC,cAAc,uBAAuB,CAAC;AACtC,cAAc,yBAAyB,CAAC;AACxC,cAAc,kBAAkB,CAAC;AACjC,cAAc,oBAAoB,CAAC;AACnC,cAAc,uBAAuB,CAAC;AACtC,cAAc,oBAAoB,CAAC;AACnC,cAAc,qBAAqB,CAAC;AACpC,cAAc,0BAA0B,CAAC;AACzC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,iBAAiB,CAAC;AAChC,cAAc,yBAAyB,CAAC;AACxC,cAAc,yBAAyB,CAAC;AACxC,cAAc,mBAAmB,CAAC;AAClC,cAAc,0BAA0B,CAAC;AACzC,cAAc,0BAA0B,CAAC;AACzC,cAAc,eAAe,CAAC;AAC9B,cAAc,yBAAyB,CAAC;AACxC,cAAc,sBAAsB,CAAC;AACrC,cAAc,uBAAuB,CAAC;AACtC,cAAc,qBAAqB,CAAC;AACpC,cAAc,qBAAqB,CAAC;AACpC,cAAc,wBAAwB,CAAC;AACvC,cAAc,aAAa,CAAC;AAC5B,cAAc,oBAAoB,CAAC;AACnC,cAAc,0BAA0B,CAAC;AACzC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,mBAAmB,CAAC;AAClC,cAAc,mBAAmB,CAAC;AAClC,cAAc,0BAA0B,CAAC;AACzC,cAAc,wBAAwB,CAAC;AACvC,cAAc,qBAAqB,CAAC;AACpC,cAAc,0BAA0B,CAAC;AACzC,cAAc,iBAAiB,CAAC;AAChC,cAAc,oBAAoB,CAAC;AACnC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,iBAAiB,CAAC;AAChC,cAAc,gBAAgB,CAAC"}
@@ -7,6 +7,7 @@ export * from "./createaddress.js";
7
7
  export * from "./createcart.js";
8
8
  export * from "./createcartaddress.js";
9
9
  export * from "./createorder.js";
10
+ export * from "./createposcart.js";
10
11
  export * from "./deleteaddress.js";
11
12
  export * from "./deletecart.js";
12
13
  export * from "./deleteusercart.js";
@@ -35,11 +36,14 @@ export * from "./listsimilarproducts.js";
35
36
  export * from "./listskus.js";
36
37
  export * from "./listupsellproducts.js";
37
38
  export * from "./listuserreviews.js";
39
+ export * from "./logintoposdevice.js";
38
40
  export * from "./loginwithemail.js";
39
41
  export * from "./loginwithphone.js";
40
42
  export * from "./loginwithwhatsapp.js";
41
43
  export * from "./logout.js";
44
+ export * from "./pairposdevice.js";
42
45
  export * from "./redeemloyaltypoints.js";
46
+ export * from "./refreshposaccesstoken.js";
43
47
  export * from "./refreshtoken.js";
44
48
  export * from "./removecoupon.js";
45
49
  export * from "./removeloyaltypoints.js";
@@ -47,6 +51,7 @@ export * from "./retryorderpayment.js";
47
51
  export * from "./searchproducts.js";
48
52
  export * from "./updateaddressdetail.js";
49
53
  export * from "./updatecart.js";
54
+ export * from "./updateposcart.js";
50
55
  export * from "./updateshippingmethod.js";
51
56
  export * from "./updateuser.js";
52
57
  export * from "./verifyotp.js";
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/models/operations/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,cAAc,kBAAkB,CAAC;AACjC,cAAc,kBAAkB,CAAC;AACjC,cAAc,oBAAoB,CAAC;AACnC,cAAc,iBAAiB,CAAC;AAChC,cAAc,wBAAwB,CAAC;AACvC,cAAc,kBAAkB,CAAC;AACjC,cAAc,oBAAoB,CAAC;AACnC,cAAc,iBAAiB,CAAC;AAChC,cAAc,qBAAqB,CAAC;AACpC,cAAc,kBAAkB,CAAC;AACjC,cAAc,uBAAuB,CAAC;AACtC,cAAc,wBAAwB,CAAC;AACvC,cAAc,cAAc,CAAC;AAC7B,cAAc,wBAAwB,CAAC;AACvC,cAAc,qBAAqB,CAAC;AACpC,cAAc,uBAAuB,CAAC;AACtC,cAAc,uBAAuB,CAAC;AACtC,cAAc,yBAAyB,CAAC;AACxC,cAAc,kBAAkB,CAAC;AACjC,cAAc,oBAAoB,CAAC;AACnC,cAAc,uBAAuB,CAAC;AACtC,cAAc,oBAAoB,CAAC;AACnC,cAAc,qBAAqB,CAAC;AACpC,cAAc,0BAA0B,CAAC;AACzC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,iBAAiB,CAAC;AAChC,cAAc,yBAAyB,CAAC;AACxC,cAAc,yBAAyB,CAAC;AACxC,cAAc,mBAAmB,CAAC;AAClC,cAAc,0BAA0B,CAAC;AACzC,cAAc,0BAA0B,CAAC;AACzC,cAAc,eAAe,CAAC;AAC9B,cAAc,yBAAyB,CAAC;AACxC,cAAc,sBAAsB,CAAC;AACrC,cAAc,qBAAqB,CAAC;AACpC,cAAc,qBAAqB,CAAC;AACpC,cAAc,wBAAwB,CAAC;AACvC,cAAc,aAAa,CAAC;AAC5B,cAAc,0BAA0B,CAAC;AACzC,cAAc,mBAAmB,CAAC;AAClC,cAAc,mBAAmB,CAAC;AAClC,cAAc,0BAA0B,CAAC;AACzC,cAAc,wBAAwB,CAAC;AACvC,cAAc,qBAAqB,CAAC;AACpC,cAAc,0BAA0B,CAAC;AACzC,cAAc,iBAAiB,CAAC;AAChC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,iBAAiB,CAAC;AAChC,cAAc,gBAAgB,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/models/operations/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,cAAc,kBAAkB,CAAC;AACjC,cAAc,kBAAkB,CAAC;AACjC,cAAc,oBAAoB,CAAC;AACnC,cAAc,iBAAiB,CAAC;AAChC,cAAc,wBAAwB,CAAC;AACvC,cAAc,kBAAkB,CAAC;AACjC,cAAc,oBAAoB,CAAC;AACnC,cAAc,oBAAoB,CAAC;AACnC,cAAc,iBAAiB,CAAC;AAChC,cAAc,qBAAqB,CAAC;AACpC,cAAc,kBAAkB,CAAC;AACjC,cAAc,uBAAuB,CAAC;AACtC,cAAc,wBAAwB,CAAC;AACvC,cAAc,cAAc,CAAC;AAC7B,cAAc,wBAAwB,CAAC;AACvC,cAAc,qBAAqB,CAAC;AACpC,cAAc,uBAAuB,CAAC;AACtC,cAAc,uBAAuB,CAAC;AACtC,cAAc,yBAAyB,CAAC;AACxC,cAAc,kBAAkB,CAAC;AACjC,cAAc,oBAAoB,CAAC;AACnC,cAAc,uBAAuB,CAAC;AACtC,cAAc,oBAAoB,CAAC;AACnC,cAAc,qBAAqB,CAAC;AACpC,cAAc,0BAA0B,CAAC;AACzC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,iBAAiB,CAAC;AAChC,cAAc,yBAAyB,CAAC;AACxC,cAAc,yBAAyB,CAAC;AACxC,cAAc,mBAAmB,CAAC;AAClC,cAAc,0BAA0B,CAAC;AACzC,cAAc,0BAA0B,CAAC;AACzC,cAAc,eAAe,CAAC;AAC9B,cAAc,yBAAyB,CAAC;AACxC,cAAc,sBAAsB,CAAC;AACrC,cAAc,uBAAuB,CAAC;AACtC,cAAc,qBAAqB,CAAC;AACpC,cAAc,qBAAqB,CAAC;AACpC,cAAc,wBAAwB,CAAC;AACvC,cAAc,aAAa,CAAC;AAC5B,cAAc,oBAAoB,CAAC;AACnC,cAAc,0BAA0B,CAAC;AACzC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,mBAAmB,CAAC;AAClC,cAAc,mBAAmB,CAAC;AAClC,cAAc,0BAA0B,CAAC;AACzC,cAAc,wBAAwB,CAAC;AACvC,cAAc,qBAAqB,CAAC;AACpC,cAAc,0BAA0B,CAAC;AACzC,cAAc,iBAAiB,CAAC;AAChC,cAAc,oBAAoB,CAAC;AACnC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,iBAAiB,CAAC;AAChC,cAAc,gBAAgB,CAAC"}
@@ -0,0 +1,118 @@
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 LoginToPosDeviceSecurity = {
6
+ xApiKey: string;
7
+ };
8
+ export type LoginToPosDeviceRequestBody = {
9
+ userPin: number;
10
+ deviceToken: string;
11
+ };
12
+ export type LoginToPosDeviceContent = {
13
+ user?: components.PosUser | undefined;
14
+ accessToken?: string | undefined;
15
+ refreshToken?: string | undefined;
16
+ };
17
+ /**
18
+ * OK
19
+ */
20
+ export type LoginToPosDeviceResponseBody = {
21
+ message?: string | undefined;
22
+ success?: string | undefined;
23
+ content?: LoginToPosDeviceContent | undefined;
24
+ };
25
+ /** @internal */
26
+ export declare const LoginToPosDeviceSecurity$inboundSchema: z.ZodType<LoginToPosDeviceSecurity, z.ZodTypeDef, unknown>;
27
+ /** @internal */
28
+ export type LoginToPosDeviceSecurity$Outbound = {
29
+ "X-Api-Key": string;
30
+ };
31
+ /** @internal */
32
+ export declare const LoginToPosDeviceSecurity$outboundSchema: z.ZodType<LoginToPosDeviceSecurity$Outbound, z.ZodTypeDef, LoginToPosDeviceSecurity>;
33
+ /**
34
+ * @internal
35
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
36
+ */
37
+ export declare namespace LoginToPosDeviceSecurity$ {
38
+ /** @deprecated use `LoginToPosDeviceSecurity$inboundSchema` instead. */
39
+ const inboundSchema: z.ZodType<LoginToPosDeviceSecurity, z.ZodTypeDef, unknown>;
40
+ /** @deprecated use `LoginToPosDeviceSecurity$outboundSchema` instead. */
41
+ const outboundSchema: z.ZodType<LoginToPosDeviceSecurity$Outbound, z.ZodTypeDef, LoginToPosDeviceSecurity>;
42
+ /** @deprecated use `LoginToPosDeviceSecurity$Outbound` instead. */
43
+ type Outbound = LoginToPosDeviceSecurity$Outbound;
44
+ }
45
+ export declare function loginToPosDeviceSecurityToJSON(loginToPosDeviceSecurity: LoginToPosDeviceSecurity): string;
46
+ export declare function loginToPosDeviceSecurityFromJSON(jsonString: string): SafeParseResult<LoginToPosDeviceSecurity, SDKValidationError>;
47
+ /** @internal */
48
+ export declare const LoginToPosDeviceRequestBody$inboundSchema: z.ZodType<LoginToPosDeviceRequestBody, z.ZodTypeDef, unknown>;
49
+ /** @internal */
50
+ export type LoginToPosDeviceRequestBody$Outbound = {
51
+ user_pin: number;
52
+ device_token: string;
53
+ };
54
+ /** @internal */
55
+ export declare const LoginToPosDeviceRequestBody$outboundSchema: z.ZodType<LoginToPosDeviceRequestBody$Outbound, z.ZodTypeDef, LoginToPosDeviceRequestBody>;
56
+ /**
57
+ * @internal
58
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
59
+ */
60
+ export declare namespace LoginToPosDeviceRequestBody$ {
61
+ /** @deprecated use `LoginToPosDeviceRequestBody$inboundSchema` instead. */
62
+ const inboundSchema: z.ZodType<LoginToPosDeviceRequestBody, z.ZodTypeDef, unknown>;
63
+ /** @deprecated use `LoginToPosDeviceRequestBody$outboundSchema` instead. */
64
+ const outboundSchema: z.ZodType<LoginToPosDeviceRequestBody$Outbound, z.ZodTypeDef, LoginToPosDeviceRequestBody>;
65
+ /** @deprecated use `LoginToPosDeviceRequestBody$Outbound` instead. */
66
+ type Outbound = LoginToPosDeviceRequestBody$Outbound;
67
+ }
68
+ export declare function loginToPosDeviceRequestBodyToJSON(loginToPosDeviceRequestBody: LoginToPosDeviceRequestBody): string;
69
+ export declare function loginToPosDeviceRequestBodyFromJSON(jsonString: string): SafeParseResult<LoginToPosDeviceRequestBody, SDKValidationError>;
70
+ /** @internal */
71
+ export declare const LoginToPosDeviceContent$inboundSchema: z.ZodType<LoginToPosDeviceContent, z.ZodTypeDef, unknown>;
72
+ /** @internal */
73
+ export type LoginToPosDeviceContent$Outbound = {
74
+ user?: components.PosUser$Outbound | undefined;
75
+ access_token?: string | undefined;
76
+ refresh_token?: string | undefined;
77
+ };
78
+ /** @internal */
79
+ export declare const LoginToPosDeviceContent$outboundSchema: z.ZodType<LoginToPosDeviceContent$Outbound, z.ZodTypeDef, LoginToPosDeviceContent>;
80
+ /**
81
+ * @internal
82
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
83
+ */
84
+ export declare namespace LoginToPosDeviceContent$ {
85
+ /** @deprecated use `LoginToPosDeviceContent$inboundSchema` instead. */
86
+ const inboundSchema: z.ZodType<LoginToPosDeviceContent, z.ZodTypeDef, unknown>;
87
+ /** @deprecated use `LoginToPosDeviceContent$outboundSchema` instead. */
88
+ const outboundSchema: z.ZodType<LoginToPosDeviceContent$Outbound, z.ZodTypeDef, LoginToPosDeviceContent>;
89
+ /** @deprecated use `LoginToPosDeviceContent$Outbound` instead. */
90
+ type Outbound = LoginToPosDeviceContent$Outbound;
91
+ }
92
+ export declare function loginToPosDeviceContentToJSON(loginToPosDeviceContent: LoginToPosDeviceContent): string;
93
+ export declare function loginToPosDeviceContentFromJSON(jsonString: string): SafeParseResult<LoginToPosDeviceContent, SDKValidationError>;
94
+ /** @internal */
95
+ export declare const LoginToPosDeviceResponseBody$inboundSchema: z.ZodType<LoginToPosDeviceResponseBody, z.ZodTypeDef, unknown>;
96
+ /** @internal */
97
+ export type LoginToPosDeviceResponseBody$Outbound = {
98
+ message?: string | undefined;
99
+ success?: string | undefined;
100
+ content?: LoginToPosDeviceContent$Outbound | undefined;
101
+ };
102
+ /** @internal */
103
+ export declare const LoginToPosDeviceResponseBody$outboundSchema: z.ZodType<LoginToPosDeviceResponseBody$Outbound, z.ZodTypeDef, LoginToPosDeviceResponseBody>;
104
+ /**
105
+ * @internal
106
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
107
+ */
108
+ export declare namespace LoginToPosDeviceResponseBody$ {
109
+ /** @deprecated use `LoginToPosDeviceResponseBody$inboundSchema` instead. */
110
+ const inboundSchema: z.ZodType<LoginToPosDeviceResponseBody, z.ZodTypeDef, unknown>;
111
+ /** @deprecated use `LoginToPosDeviceResponseBody$outboundSchema` instead. */
112
+ const outboundSchema: z.ZodType<LoginToPosDeviceResponseBody$Outbound, z.ZodTypeDef, LoginToPosDeviceResponseBody>;
113
+ /** @deprecated use `LoginToPosDeviceResponseBody$Outbound` instead. */
114
+ type Outbound = LoginToPosDeviceResponseBody$Outbound;
115
+ }
116
+ export declare function loginToPosDeviceResponseBodyToJSON(loginToPosDeviceResponseBody: LoginToPosDeviceResponseBody): string;
117
+ export declare function loginToPosDeviceResponseBodyFromJSON(jsonString: string): SafeParseResult<LoginToPosDeviceResponseBody, SDKValidationError>;
118
+ //# sourceMappingURL=logintoposdevice.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"logintoposdevice.d.ts","sourceRoot":"","sources":["../../../src/models/operations/logintoposdevice.ts"],"names":[],"mappings":"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"}