@flowio/types 11.24.120 → 11.24.121
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 +21 -8
- package/package.json +2 -2
- package/src/api-internal.ts +23 -8
package/dist/api-internal.d.ts
CHANGED
|
@@ -12135,6 +12135,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12135
12135
|
type GoogleAnalyticsPlugin = 'ec';
|
|
12136
12136
|
type GraphqlServiceTypes = 'order_update_mutation' | 'shipping_address_validation' | 'bulk_publication_status' | 'country_catalog_sync' | 'inventory_item' | 'product_bundle' | 'shopify_location' | 'shopify_order' | 'sync_product_catalog' | 'shopify_webhook';
|
|
12137
12137
|
type HarmonizationDecisionSource = 'human' | 'system' | 'legacy_model' | 'enterprise_model' | 'merchant';
|
|
12138
|
+
type HoseinItemType = 'physical' | 'digital';
|
|
12138
12139
|
type HttpMethod = 'get' | 'post';
|
|
12139
12140
|
type InternalPaymentEntityType = 'authorization' | 'capture' | 'refund' | 'dispute';
|
|
12140
12141
|
type ItemClassificationAction = 'ACCEPT' | 'MANUAL' | 'REJECT';
|
|
@@ -12194,6 +12195,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12194
12195
|
type PaymentSummaryStatus = 'authorized' | 'canceled' | 'declined' | 'expired' | 'failed' | 'pending' | 'processed' | 'reversed' | 'review' | 'succeeded';
|
|
12195
12196
|
type PaymentSummaryType = 'authorization' | 'capture' | 'refund' | 'reversal' | 'credit';
|
|
12196
12197
|
type PaymentTerm = 'net7' | 'net15' | 'net30';
|
|
12198
|
+
type PendingRecordType = 'verification' | 'classification' | 'restriction';
|
|
12197
12199
|
type PrateekItemType = 'physical' | 'digital';
|
|
12198
12200
|
type PreferredBillingSchedule = 'monthly' | 'bi-monthly';
|
|
12199
12201
|
type PriceSelector = 'minimum' | 'maximum';
|
|
@@ -16465,6 +16467,21 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16465
16467
|
readonly organization: string;
|
|
16466
16468
|
readonly export_id: string;
|
|
16467
16469
|
}
|
|
16470
|
+
interface HoseinItem {
|
|
16471
|
+
readonly id: string;
|
|
16472
|
+
readonly number: string;
|
|
16473
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
16474
|
+
readonly description?: string;
|
|
16475
|
+
readonly type: io.flow.internal.v0.enums.HoseinItemType;
|
|
16476
|
+
readonly added_on: string;
|
|
16477
|
+
}
|
|
16478
|
+
interface HoseinItemForm {
|
|
16479
|
+
readonly number: string;
|
|
16480
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
16481
|
+
readonly description?: string;
|
|
16482
|
+
readonly type: io.flow.internal.v0.enums.HoseinItemType;
|
|
16483
|
+
readonly added_on: string;
|
|
16484
|
+
}
|
|
16468
16485
|
interface Href {
|
|
16469
16486
|
readonly discriminator: 'href';
|
|
16470
16487
|
readonly label: io.flow.internal.v0.models.ContentLabel;
|
|
@@ -18391,11 +18408,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18391
18408
|
readonly product_count: number;
|
|
18392
18409
|
readonly restricted_product_count: number;
|
|
18393
18410
|
readonly last_order_submitted_at?: string;
|
|
18394
|
-
readonly matching_positive_keywords: string[];
|
|
18395
|
-
readonly product_categories: string[];
|
|
18396
|
-
readonly matching_negative_keywords: string[];
|
|
18397
|
-
readonly decisions_user_ids: string[];
|
|
18398
|
-
readonly restriction_rule_ids: string[];
|
|
18399
18411
|
}
|
|
18400
18412
|
interface OrganizationMetadataDeleted {
|
|
18401
18413
|
readonly discriminator: 'organization_metadata_deleted';
|
|
@@ -20156,7 +20168,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20156
20168
|
readonly category: string;
|
|
20157
20169
|
}
|
|
20158
20170
|
interface RestrictionFilter {
|
|
20159
|
-
readonly categories: string[];
|
|
20160
20171
|
readonly users: io.flow.common.v0.models.User[];
|
|
20161
20172
|
readonly rules: io.flow.internal.v0.models.RestrictionRuleSummary[];
|
|
20162
20173
|
readonly positive_keywords: string[];
|
|
@@ -20199,7 +20210,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20199
20210
|
readonly statuses?: io.flow.internal.v0.enums.RestrictionStatus[];
|
|
20200
20211
|
readonly rule_ids?: string[];
|
|
20201
20212
|
readonly user_ids?: string[];
|
|
20202
|
-
readonly categories?: string[];
|
|
20203
20213
|
readonly category?: string;
|
|
20204
20214
|
readonly product_name_query?: string;
|
|
20205
20215
|
readonly hs6?: string;
|
|
@@ -20313,7 +20323,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20313
20323
|
readonly positive_keywords?: string[];
|
|
20314
20324
|
readonly negative_keywords?: string[];
|
|
20315
20325
|
readonly user_ids?: string[];
|
|
20316
|
-
readonly categories?: string[];
|
|
20317
20326
|
readonly category?: string;
|
|
20318
20327
|
readonly product_name_query?: string;
|
|
20319
20328
|
readonly hs6?: string;
|
|
@@ -23643,6 +23652,9 @@ export declare type HarmonizationThresholdForm = io.flow.internal.v0.models.Harm
|
|
|
23643
23652
|
export declare type HarmonizationUnclassifiedStatistics = io.flow.internal.v0.models.HarmonizationUnclassifiedStatistics;
|
|
23644
23653
|
export declare type HarmonizeFullyRequestV2 = io.flow.internal.v0.models.HarmonizeFullyRequestV2;
|
|
23645
23654
|
export declare type HarmonizedItemsHs6Export = io.flow.internal.v0.models.HarmonizedItemsHs6Export;
|
|
23655
|
+
export declare type HoseinItem = io.flow.internal.v0.models.HoseinItem;
|
|
23656
|
+
export declare type HoseinItemForm = io.flow.internal.v0.models.HoseinItemForm;
|
|
23657
|
+
export declare type HoseinItemType = io.flow.internal.v0.enums.HoseinItemType;
|
|
23646
23658
|
export declare type Href = io.flow.internal.v0.models.Href;
|
|
23647
23659
|
export declare type Hs6 = io.flow.internal.v0.models.Hs6;
|
|
23648
23660
|
export declare type Hs6Metadata = io.flow.internal.v0.models.Hs6Metadata;
|
|
@@ -24095,6 +24107,7 @@ export declare type PaypalRefundUpserted = io.flow.internal.v0.models.PaypalRefu
|
|
|
24095
24107
|
export declare type PendingBankPayment = io.flow.internal.v0.models.PendingBankPayment;
|
|
24096
24108
|
export declare type PendingBankPaymentDetail = io.flow.internal.v0.models.PendingBankPaymentDetail;
|
|
24097
24109
|
export declare type PendingOrder = io.flow.internal.v0.models.PendingOrder;
|
|
24110
|
+
export declare type PendingRecordType = io.flow.internal.v0.enums.PendingRecordType;
|
|
24098
24111
|
export declare type PhraseClassified = io.flow.internal.v0.models.PhraseClassified;
|
|
24099
24112
|
export declare type PhrasePropagated = io.flow.internal.v0.models.PhrasePropagated;
|
|
24100
24113
|
export declare type PlatformFee = io.flow.internal.v0.unions.PlatformFee;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/types",
|
|
3
|
-
"version": "11.24.
|
|
3
|
+
"version": "11.24.121",
|
|
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": "7d28f997ef6b47ba201019e1b3cfbf16b47cece1"
|
|
29
29
|
}
|
package/src/api-internal.ts
CHANGED
|
@@ -17201,6 +17201,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17201
17201
|
| 'legacy_model'
|
|
17202
17202
|
| 'enterprise_model'
|
|
17203
17203
|
| 'merchant';
|
|
17204
|
+
type HoseinItemType = 'physical' | 'digital';
|
|
17204
17205
|
type HttpMethod = 'get' | 'post';
|
|
17205
17206
|
type InternalPaymentEntityType =
|
|
17206
17207
|
| 'authorization'
|
|
@@ -17409,6 +17410,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17409
17410
|
| 'reversal'
|
|
17410
17411
|
| 'credit';
|
|
17411
17412
|
type PaymentTerm = 'net7' | 'net15' | 'net30';
|
|
17413
|
+
type PendingRecordType = 'verification' | 'classification' | 'restriction';
|
|
17412
17414
|
type PrateekItemType = 'physical' | 'digital';
|
|
17413
17415
|
type PreferredBillingSchedule = 'monthly' | 'bi-monthly';
|
|
17414
17416
|
type PriceSelector = 'minimum' | 'maximum';
|
|
@@ -22457,6 +22459,23 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22457
22459
|
readonly export_id: string;
|
|
22458
22460
|
}
|
|
22459
22461
|
|
|
22462
|
+
interface HoseinItem {
|
|
22463
|
+
readonly id: string;
|
|
22464
|
+
readonly number: string;
|
|
22465
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
22466
|
+
readonly description?: string;
|
|
22467
|
+
readonly type: io.flow.internal.v0.enums.HoseinItemType;
|
|
22468
|
+
readonly added_on: string;
|
|
22469
|
+
}
|
|
22470
|
+
|
|
22471
|
+
interface HoseinItemForm {
|
|
22472
|
+
readonly number: string;
|
|
22473
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
22474
|
+
readonly description?: string;
|
|
22475
|
+
readonly type: io.flow.internal.v0.enums.HoseinItemType;
|
|
22476
|
+
readonly added_on: string;
|
|
22477
|
+
}
|
|
22478
|
+
|
|
22460
22479
|
interface Href {
|
|
22461
22480
|
readonly discriminator: 'href';
|
|
22462
22481
|
readonly label: io.flow.internal.v0.models.ContentLabel;
|
|
@@ -24670,11 +24689,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24670
24689
|
readonly product_count: number;
|
|
24671
24690
|
readonly restricted_product_count: number;
|
|
24672
24691
|
readonly last_order_submitted_at?: string;
|
|
24673
|
-
readonly matching_positive_keywords: string[];
|
|
24674
|
-
readonly product_categories: string[];
|
|
24675
|
-
readonly matching_negative_keywords: string[];
|
|
24676
|
-
readonly decisions_user_ids: string[];
|
|
24677
|
-
readonly restriction_rule_ids: string[];
|
|
24678
24692
|
}
|
|
24679
24693
|
|
|
24680
24694
|
interface OrganizationMetadataDeleted {
|
|
@@ -26704,7 +26718,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26704
26718
|
}
|
|
26705
26719
|
|
|
26706
26720
|
interface RestrictionFilter {
|
|
26707
|
-
readonly categories: string[];
|
|
26708
26721
|
readonly users: io.flow.common.v0.models.User[];
|
|
26709
26722
|
readonly rules: io.flow.internal.v0.models.RestrictionRuleSummary[];
|
|
26710
26723
|
readonly positive_keywords: string[];
|
|
@@ -26750,7 +26763,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26750
26763
|
readonly statuses?: io.flow.internal.v0.enums.RestrictionStatus[];
|
|
26751
26764
|
readonly rule_ids?: string[];
|
|
26752
26765
|
readonly user_ids?: string[];
|
|
26753
|
-
readonly categories?: string[];
|
|
26754
26766
|
readonly category?: string;
|
|
26755
26767
|
readonly product_name_query?: string;
|
|
26756
26768
|
readonly hs6?: string;
|
|
@@ -26877,7 +26889,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26877
26889
|
readonly positive_keywords?: string[];
|
|
26878
26890
|
readonly negative_keywords?: string[];
|
|
26879
26891
|
readonly user_ids?: string[];
|
|
26880
|
-
readonly categories?: string[];
|
|
26881
26892
|
readonly category?: string;
|
|
26882
26893
|
readonly product_name_query?: string;
|
|
26883
26894
|
readonly hs6?: string;
|
|
@@ -31655,6 +31666,9 @@ export type HarmonizeFullyRequestV2 =
|
|
|
31655
31666
|
io.flow.internal.v0.models.HarmonizeFullyRequestV2;
|
|
31656
31667
|
export type HarmonizedItemsHs6Export =
|
|
31657
31668
|
io.flow.internal.v0.models.HarmonizedItemsHs6Export;
|
|
31669
|
+
export type HoseinItem = io.flow.internal.v0.models.HoseinItem;
|
|
31670
|
+
export type HoseinItemForm = io.flow.internal.v0.models.HoseinItemForm;
|
|
31671
|
+
export type HoseinItemType = io.flow.internal.v0.enums.HoseinItemType;
|
|
31658
31672
|
export type Href = io.flow.internal.v0.models.Href;
|
|
31659
31673
|
export type Hs6 = io.flow.internal.v0.models.Hs6;
|
|
31660
31674
|
export type Hs6Metadata = io.flow.internal.v0.models.Hs6Metadata;
|
|
@@ -32415,6 +32429,7 @@ export type PendingBankPayment = io.flow.internal.v0.models.PendingBankPayment;
|
|
|
32415
32429
|
export type PendingBankPaymentDetail =
|
|
32416
32430
|
io.flow.internal.v0.models.PendingBankPaymentDetail;
|
|
32417
32431
|
export type PendingOrder = io.flow.internal.v0.models.PendingOrder;
|
|
32432
|
+
export type PendingRecordType = io.flow.internal.v0.enums.PendingRecordType;
|
|
32418
32433
|
export type PhraseClassified = io.flow.internal.v0.models.PhraseClassified;
|
|
32419
32434
|
export type PhrasePropagated = io.flow.internal.v0.models.PhrasePropagated;
|
|
32420
32435
|
export type PlatformFee = io.flow.internal.v0.unions.PlatformFee;
|