@deliverart/sdk-js-core 2.14.7 → 2.14.8
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.cjs +2 -1
- package/dist/index.js +2 -1
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
|
@@ -13832,7 +13832,8 @@ var webhookEntities = [
|
|
|
13832
13832
|
"App\\Entity\\PointOfSale"
|
|
13833
13833
|
];
|
|
13834
13834
|
var webhookEntitySchema = external_exports.enum(webhookEntities);
|
|
13835
|
-
var
|
|
13835
|
+
var uuidPattern = /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/i;
|
|
13836
|
+
var isUuid = (s) => uuidPattern.test(s);
|
|
13836
13837
|
var IriObject = class {
|
|
13837
13838
|
constructor(iri, pattern) {
|
|
13838
13839
|
this.iri = iri;
|
package/dist/index.js
CHANGED
|
@@ -13796,7 +13796,8 @@ var webhookEntities = [
|
|
|
13796
13796
|
"App\\Entity\\PointOfSale"
|
|
13797
13797
|
];
|
|
13798
13798
|
var webhookEntitySchema = external_exports.enum(webhookEntities);
|
|
13799
|
-
var
|
|
13799
|
+
var uuidPattern = /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/i;
|
|
13800
|
+
var isUuid = (s) => uuidPattern.test(s);
|
|
13800
13801
|
var IriObject = class {
|
|
13801
13802
|
constructor(iri, pattern) {
|
|
13802
13803
|
this.iri = iri;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deliverart/sdk-js-core",
|
|
3
3
|
"description": "Core SDK for DeliverArt, providing essential functionalities and utilities.",
|
|
4
|
-
"version": "2.14.
|
|
4
|
+
"version": "2.14.8",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@types/qs": "^6.14.0",
|
|
28
|
-
"@deliverart/sdk-js-global-types": "2.14.
|
|
28
|
+
"@deliverart/sdk-js-global-types": "2.14.8"
|
|
29
29
|
},
|
|
30
30
|
"scripts": {
|
|
31
31
|
"build": "tsup src/index.ts --dts --format esm,cjs",
|