@betterstore/sdk 0.7.3 → 0.7.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -17987,7 +17987,6 @@ declare class ClientCustomersNamespace {
17987
17987
  private client;
17988
17988
  constructor(client: BaseClient);
17989
17989
  upsert(data: UpsertCustomerParams): Promise<UpsertCustomerResponse>;
17990
- update(id: string, data: UpdateCustomerParams): Promise<UpdateCustomerResponse>;
17991
17990
  }
17992
17991
 
17993
17992
  declare class ClientUtilsNamespace {
package/dist/index.d.ts CHANGED
@@ -17987,7 +17987,6 @@ declare class ClientCustomersNamespace {
17987
17987
  private client;
17988
17988
  constructor(client: BaseClient);
17989
17989
  upsert(data: UpsertCustomerParams): Promise<UpsertCustomerResponse>;
17990
- update(id: string, data: UpdateCustomerParams): Promise<UpdateCustomerResponse>;
17991
17990
  }
17992
17991
 
17993
17992
  declare class ClientUtilsNamespace {
package/dist/index.js CHANGED
@@ -133,12 +133,6 @@ var ClientCustomersNamespace = class {
133
133
  data
134
134
  );
135
135
  }
136
- async update(id, data) {
137
- return this.client.post(
138
- `/api/client/customers/update/${id}`,
139
- data
140
- );
141
- }
142
136
  };
143
137
 
144
138
  // src/namespaces/client/client-utils.ts
package/dist/index.mjs CHANGED
@@ -106,12 +106,6 @@ var ClientCustomersNamespace = class {
106
106
  data
107
107
  );
108
108
  }
109
- async update(id, data) {
110
- return this.client.post(
111
- `/api/client/customers/update/${id}`,
112
- data
113
- );
114
- }
115
109
  };
116
110
 
117
111
  // src/namespaces/client/client-utils.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@betterstore/sdk",
3
- "version": "0.7.3",
3
+ "version": "0.7.4",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",