@flowio/types 11.24.124 → 11.24.125
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-internal.d.ts +1 -1
- package/dist/api.d.ts +1 -0
- package/package.json +2 -2
- package/src/api-internal.ts +1 -1
- package/src/api.ts +1 -0
package/dist/api-internal.d.ts
CHANGED
|
@@ -19792,6 +19792,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19792
19792
|
readonly updated_at: string;
|
|
19793
19793
|
readonly taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
19794
19794
|
readonly taxonomy_data?: io.flow.product.v0.models.ProductTaxonomyData[];
|
|
19795
|
+
readonly channel?: string;
|
|
19795
19796
|
}
|
|
19796
19797
|
interface RestrictionProductDecisionForm {
|
|
19797
19798
|
readonly rule_decisions: io.flow.internal.v0.models.RestrictionRuleDecisionForm[];
|
|
@@ -19897,7 +19898,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19897
19898
|
readonly organization_id: string;
|
|
19898
19899
|
readonly rule_id: string;
|
|
19899
19900
|
readonly description: string;
|
|
19900
|
-
readonly is_rule_exempt: boolean;
|
|
19901
19901
|
readonly exempt_regions?: string[];
|
|
19902
19902
|
readonly ignored_keywords?: string[];
|
|
19903
19903
|
readonly additional_keywords?: string[];
|
package/dist/api.d.ts
CHANGED
|
@@ -6206,6 +6206,7 @@ declare namespace io.flow.v0.models {
|
|
|
6206
6206
|
readonly product_id: string;
|
|
6207
6207
|
readonly ge_organization_name: string;
|
|
6208
6208
|
readonly ge_shipping_origin_country?: string;
|
|
6209
|
+
readonly product_url?: string;
|
|
6209
6210
|
}
|
|
6210
6211
|
interface GeInputPrice {
|
|
6211
6212
|
readonly amount: number;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/types",
|
|
3
|
-
"version": "11.24.
|
|
3
|
+
"version": "11.24.125",
|
|
4
4
|
"description": "TypeScript type definitions for custom types found in Flow API",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -25,5 +25,5 @@
|
|
|
25
25
|
"maintainers": [
|
|
26
26
|
"Christian Muñoz <christian.munoz@flow.io>"
|
|
27
27
|
],
|
|
28
|
-
"gitHead": "
|
|
28
|
+
"gitHead": "303d0c0519735bb00069173b130ffc2680e7f93b"
|
|
29
29
|
}
|
package/src/api-internal.ts
CHANGED
|
@@ -26256,6 +26256,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26256
26256
|
readonly updated_at: string;
|
|
26257
26257
|
readonly taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
26258
26258
|
readonly taxonomy_data?: io.flow.product.v0.models.ProductTaxonomyData[];
|
|
26259
|
+
readonly channel?: string;
|
|
26259
26260
|
}
|
|
26260
26261
|
|
|
26261
26262
|
interface RestrictionProductDecisionForm {
|
|
@@ -26374,7 +26375,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26374
26375
|
readonly organization_id: string;
|
|
26375
26376
|
readonly rule_id: string;
|
|
26376
26377
|
readonly description: string;
|
|
26377
|
-
readonly is_rule_exempt: boolean;
|
|
26378
26378
|
readonly exempt_regions?: string[];
|
|
26379
26379
|
readonly ignored_keywords?: string[];
|
|
26380
26380
|
readonly additional_keywords?: string[];
|
package/src/api.ts
CHANGED