@flowio/api-constants 2.13.45 → 2.13.46

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/api.d.ts CHANGED
@@ -1230,6 +1230,7 @@ export declare enum ProductRestrictionRule {
1230
1230
  KNIVES = "Knives",
1231
1231
  LIQUIDS = "Liquids",
1232
1232
  OVERSIZED = "Oversized",
1233
+ RESTRICT_BY_DEFAULT = "Restrict by Default",
1233
1234
  SUPPLEMENTS = "Supplements",
1234
1235
  WEAPON = "Weapon",
1235
1236
  WOOD = "Wood"
package/dist/api.js CHANGED
@@ -1391,6 +1391,7 @@ var ProductRestrictionRule;
1391
1391
  ProductRestrictionRule["KNIVES"] = "Knives";
1392
1392
  ProductRestrictionRule["LIQUIDS"] = "Liquids";
1393
1393
  ProductRestrictionRule["OVERSIZED"] = "Oversized";
1394
+ ProductRestrictionRule["RESTRICT_BY_DEFAULT"] = "Restrict by Default";
1394
1395
  ProductRestrictionRule["SUPPLEMENTS"] = "Supplements";
1395
1396
  ProductRestrictionRule["WEAPON"] = "Weapon";
1396
1397
  ProductRestrictionRule["WOOD"] = "Wood";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flowio/api-constants",
3
- "version": "2.13.45",
3
+ "version": "2.13.46",
4
4
  "description": "Definitions for enumerations found in the Flow API",
5
5
  "keywords": [
6
6
  "flow",
@@ -26,5 +26,5 @@
26
26
  "postgenerate": "npm run format",
27
27
  "prepublish": "npm run clean && npm run build"
28
28
  },
29
- "gitHead": "69a80797baeb34690859818e5db7ef87aa6082a5"
29
+ "gitHead": "2430172d05199bd940ad6b8a39eaf47a9efcea8c"
30
30
  }
package/src/api.ts CHANGED
@@ -1383,6 +1383,7 @@ export enum ProductRestrictionRule {
1383
1383
  KNIVES = 'Knives',
1384
1384
  LIQUIDS = 'Liquids',
1385
1385
  OVERSIZED = 'Oversized',
1386
+ RESTRICT_BY_DEFAULT = 'Restrict by Default',
1386
1387
  SUPPLEMENTS = 'Supplements',
1387
1388
  WEAPON = 'Weapon',
1388
1389
  WOOD = 'Wood',