@flowio/api-types 0.0.226 → 0.0.227
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/generated/io.flow.billing.accounting.v0.billing-accounting.d.ts +13 -0
- package/generated/io.flow.billing.bank.account.v0.billing-bank-account.d.ts +1 -1
- package/generated/io.flow.billing.internal.v0.billing-internal.d.ts +1 -1
- package/generated/io.flow.billing.reporting.csv.v0.billing-reporting-csv.d.ts +0 -1
- package/generated/io.flow.billing.reporting.v0.billing-reporting.d.ts +15 -16
- package/generated/io.flow.billing.v0.billing.d.ts +6 -1
- package/generated/io.flow.channel.internal.v0.channel-internal.d.ts +1 -1
- package/generated/io.flow.experiment.internal.v0.experiment-internal.d.ts +191 -0
- package/generated/io.flow.internal.v0.api-internal.d.ts +585 -324
- package/generated/io.flow.organization.onboarding.state.v0.organization-onboarding-state.d.ts +6 -1
- package/generated/io.flow.payment.gateway.v0.payment-gateway.d.ts +7 -1
- package/generated/io.flow.payment.v0.payment.d.ts +11 -1
- package/generated/io.flow.shopify.external.v0.shopify-external.d.ts +1 -0
- package/generated/io.flow.shopify.markets.internal.event.v0.shopify-markets-internal-event.d.ts +16 -1
- package/generated/io.flow.shopify.markets.internal.v0.shopify-markets-internal.d.ts +11 -0
- package/generated/io.flow.shopify.markets.v0.shopify-markets.d.ts +1 -1
- package/generated/io.flow.stripe.v0.stripe.d.ts +162 -5
- package/generated/io.flow.v0.api.d.ts +29 -3
- package/index.d.ts +1 -14
- package/package.json +2 -2
- package/generated/io.flow.billing.csv.v0.billing-csv.d.ts +0 -454
- package/generated/io.flow.checkout.analytics.v0.checkout-analytics.d.ts +0 -137
- package/generated/io.flow.checkout.backend.v0.checkout-backend.d.ts +0 -539
- package/generated/io.flow.checkout.common.v0.checkout-common.d.ts +0 -57
- package/generated/io.flow.checkout.configuration.v0.checkout-configuration.d.ts +0 -113
- package/generated/io.flow.checkout.protocol.v0.checkout-protocol.d.ts +0 -1347
- package/generated/io.flow.consumer.invoice.v0.consumer-invoice.d.ts +0 -204
- package/generated/io.flow.content.internal.v0.content-internal.d.ts +0 -168
- package/generated/io.flow.currency.internal.v0.currency-internal.d.ts +0 -119
- package/generated/io.flow.experience.internal.v0.experience-internal.d.ts +0 -247
- package/generated/io.flow.feature.v0.feature.d.ts +0 -121
- package/generated/io.flow.optin.internal.v0.optin-internal.d.ts +0 -73
- package/generated/io.flow.price.internal.v0.price-internal.d.ts +0 -4
- package/generated/io.flow.svb.v0.svb.d.ts +0 -166
|
@@ -1,113 +0,0 @@
|
|
|
1
|
-
declare namespace io.flow.checkout.configuration.v0.enums {
|
|
2
|
-
type CheckoutAssetType = 'stylesheet' | 'javascript';
|
|
3
|
-
type CheckoutPromptBehavior = 'always' | 'incomplete';
|
|
4
|
-
type CheckoutShippingMethodPromptBehavior = 'always' | 'multiple';
|
|
5
|
-
type CheckoutUrlType = 'continue_shopping' | 'confirmation' | 'invalid_checkout';
|
|
6
|
-
type GoogleAnalyticsPlugin = 'ec';
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
declare namespace io.flow.checkout.configuration.v0.models {
|
|
10
|
-
interface CheckoutAnalytics {
|
|
11
|
-
readonly 'trackers': io.flow.checkout.configuration.v0.unions.Tracker[];
|
|
12
|
-
readonly 'use_base_currency': boolean;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
interface CheckoutAsset {
|
|
16
|
-
readonly 'url': string;
|
|
17
|
-
readonly 'type': io.flow.checkout.configuration.v0.enums.CheckoutAssetType;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
interface CheckoutBehavior {
|
|
21
|
-
readonly 'shipping_address': io.flow.checkout.configuration.v0.models.CheckoutBehaviorShippingAddress;
|
|
22
|
-
readonly 'shipping_method': io.flow.checkout.configuration.v0.models.CheckoutBehaviorShippingMethod;
|
|
23
|
-
readonly 'customer_info': io.flow.checkout.configuration.v0.models.CheckoutBehaviorCustomerInfo;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
interface CheckoutBehaviorCustomerInfo {
|
|
27
|
-
readonly 'email': io.flow.checkout.configuration.v0.models.CheckoutBehaviorCustomerInfoEmail;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
interface CheckoutBehaviorCustomerInfoEmail {
|
|
31
|
-
readonly 'prompt': io.flow.checkout.configuration.v0.enums.CheckoutPromptBehavior;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
interface CheckoutBehaviorShippingAddress {
|
|
35
|
-
readonly 'prompt': io.flow.checkout.configuration.v0.enums.CheckoutPromptBehavior;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
interface CheckoutBehaviorShippingMethod {
|
|
39
|
-
readonly 'prompt': io.flow.checkout.configuration.v0.enums.CheckoutShippingMethodPromptBehavior;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
interface CheckoutConfiguration {
|
|
43
|
-
readonly 'id': string;
|
|
44
|
-
readonly 'behavior': io.flow.checkout.configuration.v0.models.CheckoutBehavior;
|
|
45
|
-
readonly 'settings': io.flow.checkout.configuration.v0.models.CheckoutSettings;
|
|
46
|
-
readonly 'analytics'?: io.flow.checkout.configuration.v0.models.CheckoutAnalytics;
|
|
47
|
-
readonly 'domain'?: string;
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
interface CheckoutConfigurationForm {
|
|
51
|
-
readonly 'behavior': io.flow.checkout.configuration.v0.models.CheckoutBehavior;
|
|
52
|
-
readonly 'settings': io.flow.checkout.configuration.v0.models.CheckoutSettings;
|
|
53
|
-
readonly 'analytics'?: io.flow.checkout.configuration.v0.models.CheckoutAnalytics;
|
|
54
|
-
readonly 'domain'?: string;
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
interface CheckoutConfigurationReference {
|
|
58
|
-
readonly 'id': string;
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
interface CheckoutSettings {
|
|
62
|
-
readonly 'session_persistence_timeout'?: io.flow.common.v0.models.Duration;
|
|
63
|
-
readonly 'session_persistence_attribute_keys'?: string[];
|
|
64
|
-
readonly 'locales'?: string[];
|
|
65
|
-
readonly 'urls'?: io.flow.checkout.configuration.v0.models.CheckoutUrl[];
|
|
66
|
-
readonly 'assets'?: io.flow.checkout.configuration.v0.models.CheckoutAsset[];
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
interface CheckoutUrl {
|
|
70
|
-
readonly 'url': string;
|
|
71
|
-
readonly 'type': io.flow.checkout.configuration.v0.enums.CheckoutUrlType;
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
interface FacebookPixel {
|
|
75
|
-
readonly 'discriminator': 'facebook_pixel';
|
|
76
|
-
readonly 'name'?: string;
|
|
77
|
-
readonly 'tracker_id': string;
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
interface GoogleAnalytics {
|
|
81
|
-
readonly 'discriminator': 'google_analytics';
|
|
82
|
-
readonly 'name'?: string;
|
|
83
|
-
readonly 'tracker_id': string;
|
|
84
|
-
readonly 'plugins': io.flow.checkout.configuration.v0.enums.GoogleAnalyticsPlugin[];
|
|
85
|
-
readonly 'linker'?: io.flow.checkout.configuration.v0.models.GoogleLinker;
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
interface GoogleGlobalSiteTag {
|
|
89
|
-
readonly 'discriminator': 'google_global_site_tag';
|
|
90
|
-
readonly 'name'?: string;
|
|
91
|
-
readonly 'tracker_id': string;
|
|
92
|
-
readonly 'linker'?: io.flow.checkout.configuration.v0.models.GoogleLinker;
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
interface GoogleLinker {
|
|
96
|
-
readonly 'domains': string[];
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
interface GoogleTagManager {
|
|
100
|
-
readonly 'discriminator': 'google_tag_manager';
|
|
101
|
-
readonly 'tracker_id': string;
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
interface SnapchatPixel {
|
|
105
|
-
readonly 'discriminator': 'snapchat_pixel';
|
|
106
|
-
readonly 'name'?: string;
|
|
107
|
-
readonly 'tracker_id': string;
|
|
108
|
-
}
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
declare namespace io.flow.checkout.configuration.v0.unions {
|
|
112
|
-
type Tracker = (io.flow.checkout.configuration.v0.models.GoogleAnalytics | io.flow.checkout.configuration.v0.models.GoogleGlobalSiteTag | io.flow.checkout.configuration.v0.models.GoogleTagManager | io.flow.checkout.configuration.v0.models.FacebookPixel | io.flow.checkout.configuration.v0.models.SnapchatPixel);
|
|
113
|
-
}
|