@voucherify/sdk 2.9.2 → 2.9.4
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/ApiLimitsHandler.d.ts +13 -10
- package/dist/AsyncActions.d.ts +17 -15
- package/dist/Balance.d.ts +15 -12
- package/dist/Campaigns.d.ts +66 -58
- package/dist/Categories.d.ts +29 -26
- package/dist/ClientSide.d.ts +77 -53
- package/dist/Consents.d.ts +13 -10
- package/dist/Customers.d.ts +75 -72
- package/dist/Distributions.d.ts +29 -22
- package/dist/Events.d.ts +15 -10
- package/dist/Exports.d.ts +25 -22
- package/dist/Loyalties.d.ts +171 -159
- package/dist/MetadataSchemas.d.ts +17 -14
- package/dist/Orders.d.ts +32 -27
- package/dist/ProductCollections.d.ts +30 -26
- package/dist/Products.d.ts +66 -63
- package/dist/PromotionTiers.d.ts +43 -34
- package/dist/Promotions.d.ts +30 -18
- package/dist/PromotionsStacks.d.ts +34 -30
- package/dist/Qualifications.d.ts +24 -10
- package/dist/Redemptions.d.ts +53 -35
- package/dist/RequestController.d.ts +31 -29
- package/dist/Rewards.d.ts +46 -43
- package/dist/Segments.d.ts +25 -22
- package/dist/ValidationRules.d.ts +47 -43
- package/dist/Validations.d.ts +39 -17
- package/dist/VoucherifyClientSide.d.ts +112 -86
- package/dist/VoucherifyError.d.ts +23 -20
- package/dist/VoucherifyServerSide.d.ts +170 -131
- package/dist/Vouchers.d.ts +84 -78
- package/dist/helpers.d.ts +20 -18
- package/dist/index.d.ts +63 -25
- package/dist/types/ApplicableTo.d.ts +32 -30
- package/dist/types/AsyncActions.d.ts +23 -21
- package/dist/types/Balance.d.ts +18 -16
- package/dist/types/Campaigns.d.ts +124 -120
- package/dist/types/Categories.d.ts +40 -38
- package/dist/types/ClientSide.d.ts +145 -134
- package/dist/types/Consents.d.ts +34 -33
- package/dist/types/Customers.d.ts +363 -361
- package/dist/types/DiscountVoucher.d.ts +94 -93
- package/dist/types/Distributions.d.ts +148 -144
- package/dist/types/Events.d.ts +21 -17
- package/dist/types/Exports.d.ts +151 -149
- package/dist/types/Gift.d.ts +5 -3
- package/dist/types/Loyalties.d.ts +1061 -1057
- package/dist/types/MetadataSchemas.d.ts +34 -33
- package/dist/types/Orders.d.ts +199 -195
- package/dist/types/ProductCollections.d.ts +99 -96
- package/dist/types/Products.d.ts +108 -106
- package/dist/types/PromotionTiers.d.ts +131 -127
- package/dist/types/Promotions.d.ts +113 -108
- package/dist/types/PromotionsStacks.d.ts +74 -71
- package/dist/types/Qualifications.d.ts +92 -86
- package/dist/types/Redemptions.d.ts +215 -205
- package/dist/types/Rewards.d.ts +220 -219
- package/dist/types/Segments.d.ts +34 -32
- package/dist/types/Stackable.d.ts +106 -101
- package/dist/types/UtilityTypes.d.ts +5 -3
- package/dist/types/ValidateSession.d.ts +19 -17
- package/dist/types/ValidationError.d.ts +9 -7
- package/dist/types/ValidationRules.d.ts +96 -93
- package/dist/types/Validations.d.ts +109 -98
- package/dist/types/Vouchers.d.ts +452 -364
- package/dist/types/index.d.ts +27 -25
- package/dist/voucherifysdk.cjs +2023 -0
- package/dist/voucherifysdk.cjs.map +1 -0
- package/dist/voucherifysdk.esm.js +981 -1256
- package/dist/voucherifysdk.esm.js.map +1 -1
- package/package.json +13 -9
- package/CHANGELOG.md +0 -663
- package/dist/voucherifysdk.umd.development.js +0 -2270
- package/dist/voucherifysdk.umd.development.js.map +0 -1
- package/dist/voucherifysdk.umd.production.min.js +0 -2
- package/dist/voucherifysdk.umd.production.min.js.map +0 -1
package/dist/types/Exports.d.ts
CHANGED
|
@@ -1,149 +1,151 @@
|
|
|
1
|
-
|
|
2
|
-
exported_object: 'voucher' | 'redemption' | 'publication' | 'customer';
|
|
3
|
-
parameters?: {
|
|
4
|
-
order?: string;
|
|
5
|
-
fields?: string[];
|
|
6
|
-
filters?: {
|
|
7
|
-
junction?: 'AND' | 'OR';
|
|
8
|
-
[filter_condition: string]: any;
|
|
9
|
-
};
|
|
10
|
-
};
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
id: string;
|
|
14
|
-
object: 'export';
|
|
15
|
-
created_at: string;
|
|
16
|
-
status: 'SCHEDULED' | 'IN_PROGRESS' | 'DONE' | 'ERROR';
|
|
17
|
-
channel?: string;
|
|
18
|
-
exported_object: 'voucher' | 'redemption' | 'publication' | 'customer';
|
|
19
|
-
parameters?: {
|
|
20
|
-
fields?: string[];
|
|
21
|
-
filters?: {
|
|
22
|
-
junction?: string;
|
|
23
|
-
[filter_condition: string]: any;
|
|
24
|
-
};
|
|
25
|
-
};
|
|
26
|
-
result?: {
|
|
27
|
-
url: string;
|
|
28
|
-
};
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
limit?: number;
|
|
33
|
-
order?: 'created_at' | '-created_at' | 'status' | '-status';
|
|
34
|
-
page?: number;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
object: 'list';
|
|
38
|
-
data_ref: 'exports';
|
|
39
|
-
exports: Export[];
|
|
40
|
-
total: number;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
id: string;
|
|
44
|
-
object: 'export';
|
|
45
|
-
created_at: string;
|
|
46
|
-
status: 'SCHEDULED' | 'IN_PROGRESS' | 'DONE' | 'ERROR';
|
|
47
|
-
channel?: string;
|
|
48
|
-
result: {
|
|
49
|
-
url: string;
|
|
50
|
-
} | null;
|
|
51
|
-
user_id: string | null;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
conditions?: Partial<Record<FiltersCondition, unknown>>;
|
|
56
|
-
};
|
|
57
|
-
|
|
58
|
-
exported_object: 'voucher';
|
|
59
|
-
parameters: {
|
|
60
|
-
order?: ExportVoucherOrder;
|
|
61
|
-
fields?: ExportVoucherFields[];
|
|
62
|
-
filters?: ExportVoucherFilters;
|
|
63
|
-
};
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
junction?: Junction;
|
|
67
|
-
} & Partial<Record<ExportVoucherFields, FieldConditions>>;
|
|
68
|
-
|
|
69
|
-
exported_object: 'redemption';
|
|
70
|
-
parameters: {
|
|
71
|
-
order?: ExportRedemptionOrder;
|
|
72
|
-
fields?: ExportRedemptionFields[];
|
|
73
|
-
filters?: ExportRedemptionFilters;
|
|
74
|
-
};
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
junction?: Junction;
|
|
78
|
-
} & Partial<Record<ExportRedemptionFields, FieldConditions>>;
|
|
79
|
-
|
|
80
|
-
exported_object: 'customer';
|
|
81
|
-
parameters: {
|
|
82
|
-
order?: ExportCustomerOrder;
|
|
83
|
-
fields?: ExportCustomerFields[];
|
|
84
|
-
filters?: ExportCustomerFilters;
|
|
85
|
-
};
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
junction?: Junction;
|
|
89
|
-
} & Partial<Record<ExportCustomerFields, FieldConditions>>;
|
|
90
|
-
|
|
91
|
-
exported_object: 'publication';
|
|
92
|
-
parameters: {
|
|
93
|
-
order?: ExportPublicationOrder;
|
|
94
|
-
fields?: ExportPublicationFields[];
|
|
95
|
-
filters?: ExportPublicationFilters;
|
|
96
|
-
};
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
junction?: Junction;
|
|
100
|
-
} & Partial<Record<ExportPublicationFields, FieldConditions>>;
|
|
101
|
-
|
|
102
|
-
exported_object: 'order';
|
|
103
|
-
parameters: {
|
|
104
|
-
order?: ExportOrderOrder;
|
|
105
|
-
fields?: ExportOrderFields[];
|
|
106
|
-
filters?: ExportOrderFilters;
|
|
107
|
-
};
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
junction?: Junction;
|
|
111
|
-
} & Partial<Record<ExportOrderFields, FieldConditions>>;
|
|
112
|
-
|
|
113
|
-
exported_object: 'points_expiration';
|
|
114
|
-
parameters: {
|
|
115
|
-
order?: ExportPointsExpirationOrder;
|
|
116
|
-
fields?: ExportPointsExpirationFields[];
|
|
117
|
-
filters?: ExportPointsExpirationFilters;
|
|
118
|
-
};
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
junction?: Junction;
|
|
122
|
-
} & Partial<Record<ExportPointsExpirationFields, FieldConditions>>;
|
|
123
|
-
|
|
124
|
-
exported_object: 'voucher_transactions';
|
|
125
|
-
parameters: {
|
|
126
|
-
order?: ExportVoucherTransactionsOrder;
|
|
127
|
-
fields?: ExportVoucherTransactionsFields[];
|
|
128
|
-
filters?: ExportVoucherTransactionsFilters;
|
|
129
|
-
};
|
|
130
|
-
}
|
|
131
|
-
|
|
132
|
-
junction?: Junction;
|
|
133
|
-
} & Partial<Record<ExportVoucherTransactionsFields, FieldConditions>>;
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
1
|
+
interface ExportResource {
|
|
2
|
+
exported_object: 'voucher' | 'redemption' | 'publication' | 'customer';
|
|
3
|
+
parameters?: {
|
|
4
|
+
order?: string;
|
|
5
|
+
fields?: string[];
|
|
6
|
+
filters?: {
|
|
7
|
+
junction?: 'AND' | 'OR';
|
|
8
|
+
[filter_condition: string]: any;
|
|
9
|
+
};
|
|
10
|
+
};
|
|
11
|
+
}
|
|
12
|
+
interface ExportsCreateResponse {
|
|
13
|
+
id: string;
|
|
14
|
+
object: 'export';
|
|
15
|
+
created_at: string;
|
|
16
|
+
status: 'SCHEDULED' | 'IN_PROGRESS' | 'DONE' | 'ERROR';
|
|
17
|
+
channel?: string;
|
|
18
|
+
exported_object: 'voucher' | 'redemption' | 'publication' | 'customer';
|
|
19
|
+
parameters?: {
|
|
20
|
+
fields?: string[];
|
|
21
|
+
filters?: {
|
|
22
|
+
junction?: string;
|
|
23
|
+
[filter_condition: string]: any;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
result?: {
|
|
27
|
+
url: string;
|
|
28
|
+
};
|
|
29
|
+
}
|
|
30
|
+
type ExportsGetResponse = ExportsCreateResponse;
|
|
31
|
+
interface ExportsListRequestQuery {
|
|
32
|
+
limit?: number;
|
|
33
|
+
order?: 'created_at' | '-created_at' | 'status' | '-status';
|
|
34
|
+
page?: number;
|
|
35
|
+
}
|
|
36
|
+
interface ExportsListResponseBody {
|
|
37
|
+
object: 'list';
|
|
38
|
+
data_ref: 'exports';
|
|
39
|
+
exports: Export[];
|
|
40
|
+
total: number;
|
|
41
|
+
}
|
|
42
|
+
interface ExportBase {
|
|
43
|
+
id: string;
|
|
44
|
+
object: 'export';
|
|
45
|
+
created_at: string;
|
|
46
|
+
status: 'SCHEDULED' | 'IN_PROGRESS' | 'DONE' | 'ERROR';
|
|
47
|
+
channel?: string;
|
|
48
|
+
result: {
|
|
49
|
+
url: string;
|
|
50
|
+
} | null;
|
|
51
|
+
user_id: string | null;
|
|
52
|
+
}
|
|
53
|
+
type Export = ExportBase & (ExportVoucher | ExportRedemption | ExportCustomer | ExportPublication | ExportOrder | ExportPointsExpiration | ExportVoucherTransactionsExpiration);
|
|
54
|
+
type FieldConditions = {
|
|
55
|
+
conditions?: Partial<Record<FiltersCondition, unknown>>;
|
|
56
|
+
};
|
|
57
|
+
interface ExportVoucher {
|
|
58
|
+
exported_object: 'voucher';
|
|
59
|
+
parameters: {
|
|
60
|
+
order?: ExportVoucherOrder;
|
|
61
|
+
fields?: ExportVoucherFields[];
|
|
62
|
+
filters?: ExportVoucherFilters;
|
|
63
|
+
};
|
|
64
|
+
}
|
|
65
|
+
type ExportVoucherFilters = {
|
|
66
|
+
junction?: Junction;
|
|
67
|
+
} & Partial<Record<ExportVoucherFields, FieldConditions>>;
|
|
68
|
+
interface ExportRedemption {
|
|
69
|
+
exported_object: 'redemption';
|
|
70
|
+
parameters: {
|
|
71
|
+
order?: ExportRedemptionOrder;
|
|
72
|
+
fields?: ExportRedemptionFields[];
|
|
73
|
+
filters?: ExportRedemptionFilters;
|
|
74
|
+
};
|
|
75
|
+
}
|
|
76
|
+
type ExportRedemptionFilters = {
|
|
77
|
+
junction?: Junction;
|
|
78
|
+
} & Partial<Record<ExportRedemptionFields, FieldConditions>>;
|
|
79
|
+
interface ExportCustomer {
|
|
80
|
+
exported_object: 'customer';
|
|
81
|
+
parameters: {
|
|
82
|
+
order?: ExportCustomerOrder;
|
|
83
|
+
fields?: ExportCustomerFields[];
|
|
84
|
+
filters?: ExportCustomerFilters;
|
|
85
|
+
};
|
|
86
|
+
}
|
|
87
|
+
type ExportCustomerFilters = {
|
|
88
|
+
junction?: Junction;
|
|
89
|
+
} & Partial<Record<ExportCustomerFields, FieldConditions>>;
|
|
90
|
+
interface ExportPublication {
|
|
91
|
+
exported_object: 'publication';
|
|
92
|
+
parameters: {
|
|
93
|
+
order?: ExportPublicationOrder;
|
|
94
|
+
fields?: ExportPublicationFields[];
|
|
95
|
+
filters?: ExportPublicationFilters;
|
|
96
|
+
};
|
|
97
|
+
}
|
|
98
|
+
type ExportPublicationFilters = {
|
|
99
|
+
junction?: Junction;
|
|
100
|
+
} & Partial<Record<ExportPublicationFields, FieldConditions>>;
|
|
101
|
+
interface ExportOrder {
|
|
102
|
+
exported_object: 'order';
|
|
103
|
+
parameters: {
|
|
104
|
+
order?: ExportOrderOrder;
|
|
105
|
+
fields?: ExportOrderFields[];
|
|
106
|
+
filters?: ExportOrderFilters;
|
|
107
|
+
};
|
|
108
|
+
}
|
|
109
|
+
type ExportOrderFilters = {
|
|
110
|
+
junction?: Junction;
|
|
111
|
+
} & Partial<Record<ExportOrderFields, FieldConditions>>;
|
|
112
|
+
interface ExportPointsExpiration {
|
|
113
|
+
exported_object: 'points_expiration';
|
|
114
|
+
parameters: {
|
|
115
|
+
order?: ExportPointsExpirationOrder;
|
|
116
|
+
fields?: ExportPointsExpirationFields[];
|
|
117
|
+
filters?: ExportPointsExpirationFilters;
|
|
118
|
+
};
|
|
119
|
+
}
|
|
120
|
+
type ExportPointsExpirationFilters = {
|
|
121
|
+
junction?: Junction;
|
|
122
|
+
} & Partial<Record<ExportPointsExpirationFields, FieldConditions>>;
|
|
123
|
+
interface ExportVoucherTransactionsExpiration {
|
|
124
|
+
exported_object: 'voucher_transactions';
|
|
125
|
+
parameters: {
|
|
126
|
+
order?: ExportVoucherTransactionsOrder;
|
|
127
|
+
fields?: ExportVoucherTransactionsFields[];
|
|
128
|
+
filters?: ExportVoucherTransactionsFilters;
|
|
129
|
+
};
|
|
130
|
+
}
|
|
131
|
+
type ExportVoucherTransactionsFilters = {
|
|
132
|
+
junction?: Junction;
|
|
133
|
+
} & Partial<Record<ExportVoucherTransactionsFields, FieldConditions>>;
|
|
134
|
+
type Junction = 'and' | 'AND' | 'or' | 'OR';
|
|
135
|
+
type FiltersCondition = '$in' | '$not_in' | '$is' | '$is_days_ago' | '$is_days_in_future' | '$is_not' | '$has_value' | '$is_unknown' | '$contains' | '$not_contain' | '$starts_with' | '$ends_with' | '$more_than' | '$less_than' | '$more_than_ago' | '$less_than_ago' | '$more_than_future' | '$less_than_future' | '$more_than_equal' | '$less_than_equal' | '$after' | '$before' | '$count' | '$count_less' | '$count_more';
|
|
136
|
+
type ExportCustomerFields = 'name' | 'id' | 'description' | 'email' | 'source_id' | 'created_at' | 'address_city' | 'address_state' | 'address_line_1' | 'address_line_2' | 'address_country' | 'address_postal_code' | 'redemptions_total_redeemed' | 'redemptions_total_failed' | 'redemptions_total_succeeded' | 'redemptions_total_rolled_back' | 'redemptions_total_rollback_failed' | 'redemptions_total_rollback_succeeded' | 'orders_total_amount' | 'orders_total_count' | 'orders_average_amount' | 'orders_last_order_amount' | 'orders_last_order_date' | 'loyalty_points' | 'loyalty_referred_customers' | 'updated_at' | 'phone' | 'birthday' | 'metadata' | 'birthdate';
|
|
137
|
+
type ExportCustomerOrder = ExportCustomerFields | '-name' | '-id' | '-description' | '-email' | '-source_id' | '-created_at' | '-address_city' | '-address_state' | '-address_line_1' | '-address_line_2' | '-address_country' | '-address_postal_code' | '-redemptions_total_redeemed' | '-redemptions_total_failed' | '-redemptions_total_succeeded' | '-redemptions_total_rolled_back' | '-redemptions_total_rollback_failed' | '-redemptions_total_rollback_succeeded' | '-orders_total_amount' | '-orders_total_count' | '-orders_average_amount' | '-orders_last_order_amount' | '-orders_last_order_date' | '-loyalty_points' | '-loyalty_referred_customers' | '-updated_at' | '-phone' | '-birthday' | '-metadata' | '-birthdate';
|
|
138
|
+
type ExportPublicationFields = 'voucher_code' | 'customer_id' | 'customer_source_id' | 'date' | 'channel' | 'campaign' | 'is_winner' | 'metadata';
|
|
139
|
+
type ExportPublicationOrder = ExportPublicationFields | '-voucher_code' | '-customer_id' | '-customer_source_id' | '-date' | '-channel' | '-campaign' | '-is_winner' | '-metadata';
|
|
140
|
+
type ExportRedemptionFields = 'id' | 'object' | 'date' | 'voucher_code' | 'campaign' | 'promotion_tier_id' | 'customer_id' | 'customer_source_id' | 'customer_name' | 'tracking_id' | 'order_amount' | 'gift_amount' | 'loyalty_points' | 'result' | 'failure_code' | 'failure_message' | 'metadata';
|
|
141
|
+
type ExportRedemptionOrder = ExportRedemptionFields | '-id' | '-object' | '-date' | '-voucher_code' | '-campaign' | '-promotion_tier_id' | '-customer_id' | '-customer_source_id' | '-customer_name' | '-tracking_id' | '-order_amount' | '-gift_amount' | '-loyalty_points' | '-result' | '-failure_code' | '-failure_message' | '-metadata';
|
|
142
|
+
type ExportVoucherFields = 'code' | 'voucher_type' | 'value' | 'discount_type' | 'campaign' | 'category' | 'start_date' | 'expiration_date' | 'gift_balance' | 'loyalty_balance' | 'redemption_quantity' | 'redemption_count' | 'active' | 'qr_code' | 'bar_code' | 'metadata' | 'id' | 'is_referral_code' | 'created_at' | 'updated_at' | 'validity_timeframe_interval' | 'validity_timeframe_duration' | 'validity_day_of_week' | 'discount_amount_limit' | 'campaign_id' | 'additional_info' | 'customer_id' | 'discount_unit_type' | 'discount_unit_effect' | 'customer_source_id';
|
|
143
|
+
type ExportVoucherOrder = ExportVoucherFields | '-code' | '-voucher_type' | '-value' | '-discount_type' | '-campaign' | '-category' | '-start_date' | '-expiration_date' | '-gift_balance' | '-loyalty_balance' | '-redemption_quantity' | '-redemption_count' | '-active' | '-qr_code' | '-bar_code' | '-metadata' | '-id' | '-is_referral_code' | '-created_at' | '-updated_at' | '-validity_timeframe_interval' | '-validity_timeframe_duration' | '-validity_day_of_week' | '-discount_amount_limit' | '-campaign_id' | '-additional_info' | '-customer_id' | '-discount_unit_type' | '-discount_unit_effect' | '-customer_source_id';
|
|
144
|
+
type ExportOrderFields = 'id' | 'source_id' | 'created_at' | 'updated_at' | 'status' | 'amount' | 'discount_amount' | 'items_discount_amount' | 'total_discount_amount' | 'total_amount' | 'customer_id' | 'referrer_id' | 'metadata';
|
|
145
|
+
type ExportOrderOrder = ExportOrderFields | '-id' | '-source_id' | '-created_at' | '-updated_at' | '-status' | '-amount' | '-discount_amount' | '-items_discount_amount' | '-total_discount_amount' | '-total_amount' | '-customer_id' | '-referrer_id' | '-metadata';
|
|
146
|
+
type ExportPointsExpirationFields = 'id' | 'campaign_id' | 'voucher_id' | 'points' | 'status' | 'expires_at';
|
|
147
|
+
type ExportPointsExpirationOrder = ExportPointsExpirationFields | '-id' | '-campaign_id' | '-voucher_id' | '-points' | '-status' | '-expires_at';
|
|
148
|
+
type ExportVoucherTransactionsFields = 'id' | 'campaign_id' | 'voucher_id' | 'type' | 'source_id' | 'reason' | 'source' | 'balance' | 'amount' | 'related_transaction_id' | 'created_at' | 'details';
|
|
149
|
+
type ExportVoucherTransactionsOrder = ExportVoucherTransactionsFields | '-id' | '-campaign_id' | '-voucher_id' | '-type' | '-source_id' | '-reason' | '-source' | '-balance' | '-amount' | '-related_transaction_id' | '-created_at' | '-details';
|
|
150
|
+
|
|
151
|
+
export type { Export, ExportBase, ExportCustomer, ExportCustomerFields, ExportCustomerFilters, ExportCustomerOrder, ExportOrder, ExportOrderFields, ExportOrderFilters, ExportOrderOrder, ExportPointsExpiration, ExportPointsExpirationFields, ExportPointsExpirationFilters, ExportPointsExpirationOrder, ExportPublication, ExportPublicationFields, ExportPublicationFilters, ExportPublicationOrder, ExportRedemption, ExportRedemptionFields, ExportRedemptionFilters, ExportRedemptionOrder, ExportResource, ExportVoucher, ExportVoucherFields, ExportVoucherFilters, ExportVoucherOrder, ExportVoucherTransactionsExpiration, ExportVoucherTransactionsFields, ExportVoucherTransactionsFilters, ExportVoucherTransactionsOrder, ExportsCreateResponse, ExportsGetResponse, ExportsListRequestQuery, ExportsListResponseBody, FieldConditions, FiltersCondition, Junction };
|
package/dist/types/Gift.d.ts
CHANGED