@flowio/api-types 0.0.251 → 0.0.252

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.
@@ -107,6 +107,7 @@ declare namespace io.flow.internal.v0.enums {
107
107
  type GoogleAnalyticsPlugin = 'ec';
108
108
  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';
109
109
  type HarmonizationDecisionSource = 'human' | 'system' | 'legacy_model' | 'enterprise_model' | 'merchant';
110
+ type HoseinItemType = 'physical' | 'digital';
110
111
  type HttpMethod = 'get' | 'post';
111
112
  type InternalPaymentEntityType = 'authorization' | 'capture' | 'refund' | 'dispute';
112
113
  type ItemClassificationAction = 'ACCEPT' | 'MANUAL' | 'REJECT';
@@ -166,6 +167,7 @@ declare namespace io.flow.internal.v0.enums {
166
167
  type PaymentSummaryStatus = 'authorized' | 'canceled' | 'declined' | 'expired' | 'failed' | 'pending' | 'processed' | 'reversed' | 'review' | 'succeeded';
167
168
  type PaymentSummaryType = 'authorization' | 'capture' | 'refund' | 'reversal' | 'credit';
168
169
  type PaymentTerm = 'net7' | 'net15' | 'net30';
170
+ type PendingRecordType = 'verification' | 'classification' | 'restriction';
169
171
  type PrateekItemType = 'physical' | 'digital';
170
172
  type PreferredBillingSchedule = 'monthly' | 'bi-monthly';
171
173
  type PriceSelector = 'minimum' | 'maximum';
@@ -5059,6 +5061,23 @@ declare namespace io.flow.internal.v0.models {
5059
5061
  readonly 'export_id': string;
5060
5062
  }
5061
5063
 
5064
+ interface HoseinItem {
5065
+ readonly 'id': string;
5066
+ readonly 'number': string;
5067
+ readonly 'amount': io.flow.common.v0.models.Price;
5068
+ readonly 'description'?: string;
5069
+ readonly 'type': io.flow.internal.v0.enums.HoseinItemType;
5070
+ readonly 'added_on': string;
5071
+ }
5072
+
5073
+ interface HoseinItemForm {
5074
+ readonly 'number': string;
5075
+ readonly 'amount': io.flow.common.v0.models.Price;
5076
+ readonly 'description'?: string;
5077
+ readonly 'type': io.flow.internal.v0.enums.HoseinItemType;
5078
+ readonly 'added_on': string;
5079
+ }
5080
+
5062
5081
  interface Href {
5063
5082
  readonly 'discriminator': 'href';
5064
5083
  readonly 'label': io.flow.internal.v0.models.ContentLabel;
@@ -7263,11 +7282,6 @@ declare namespace io.flow.internal.v0.models {
7263
7282
  readonly 'product_count': number;
7264
7283
  readonly 'restricted_product_count': number;
7265
7284
  readonly 'last_order_submitted_at'?: string;
7266
- readonly 'matching_positive_keywords': string[];
7267
- readonly 'product_categories': string[];
7268
- readonly 'matching_negative_keywords': string[];
7269
- readonly 'decisions_user_ids': string[];
7270
- readonly 'restriction_rule_ids': string[];
7271
7285
  }
7272
7286
 
7273
7287
  interface OrganizationMetadataDeleted {
@@ -9297,7 +9311,6 @@ declare namespace io.flow.internal.v0.models {
9297
9311
  }
9298
9312
 
9299
9313
  interface RestrictionFilter {
9300
- readonly 'categories': string[];
9301
9314
  readonly 'users': io.flow.common.v0.models.User[];
9302
9315
  readonly 'rules': io.flow.internal.v0.models.RestrictionRuleSummary[];
9303
9316
  readonly 'positive_keywords': string[];
@@ -9343,7 +9356,6 @@ declare namespace io.flow.internal.v0.models {
9343
9356
  readonly 'statuses'?: io.flow.internal.v0.enums.RestrictionStatus[];
9344
9357
  readonly 'rule_ids'?: string[];
9345
9358
  readonly 'user_ids'?: string[];
9346
- readonly 'categories'?: string[];
9347
9359
  readonly 'category'?: string;
9348
9360
  readonly 'product_name_query'?: string;
9349
9361
  readonly 'hs6'?: string;
@@ -9470,7 +9482,6 @@ declare namespace io.flow.internal.v0.models {
9470
9482
  readonly 'positive_keywords'?: string[];
9471
9483
  readonly 'negative_keywords'?: string[];
9472
9484
  readonly 'user_ids'?: string[];
9473
- readonly 'categories'?: string[];
9474
9485
  readonly 'category'?: string;
9475
9486
  readonly 'product_name_query'?: string;
9476
9487
  readonly 'hs6'?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flowio/api-types",
3
- "version": "0.0.251",
3
+ "version": "0.0.252",
4
4
  "description": "Global TypeScript typings for Flow Commerce API",
5
5
  "repository": {
6
6
  "type": "git",
@@ -14,5 +14,5 @@
14
14
  "scripts": {
15
15
  "generate": "apibuilder update && node scripts/generate-index.js"
16
16
  },
17
- "gitHead": "02aac7bc00282660cbd728450e9d4a633df23dce"
17
+ "gitHead": "7d28f997ef6b47ba201019e1b3cfbf16b47cece1"
18
18
  }