@flowio/types 11.24.29 → 11.24.30
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 +10 -0
- package/package.json +2 -2
- package/src/api-internal.ts +11 -0
package/dist/api-internal.d.ts
CHANGED
|
@@ -10085,6 +10085,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10085
10085
|
type SubscriptionFrequency = 'yearly' | 'monthly';
|
|
10086
10086
|
type SuggestionAction = 'accept' | 'validate' | 'review';
|
|
10087
10087
|
type TariffEligibilityType = 'rex';
|
|
10088
|
+
type TaskProcessorKey = 'billing_account';
|
|
10088
10089
|
type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
|
|
10089
10090
|
type TaxParty = 'consumer' | 'organization' | 'flow' | 'carrier';
|
|
10090
10091
|
type TimeseriesType = 'daily' | 'weekly' | 'monthly' | 'yearly';
|
|
@@ -17859,6 +17860,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17859
17860
|
interface RestrictionCategory {
|
|
17860
17861
|
readonly category: string;
|
|
17861
17862
|
}
|
|
17863
|
+
interface RestrictionFilter {
|
|
17864
|
+
readonly categories: string[];
|
|
17865
|
+
readonly users: io.flow.common.v0.models.User[];
|
|
17866
|
+
readonly rules: io.flow.internal.v0.models.RestrictionRuleSummary[];
|
|
17867
|
+
readonly positive_keywords: string[];
|
|
17868
|
+
readonly negative_keywords: string[];
|
|
17869
|
+
}
|
|
17862
17870
|
interface RestrictionHistoryItemReviewDecision {
|
|
17863
17871
|
readonly id: string;
|
|
17864
17872
|
readonly product_restriction_id: string;
|
|
@@ -21076,6 +21084,7 @@ export declare type ResponsibleParty = io.flow.internal.v0.enums.ResponsiblePart
|
|
|
21076
21084
|
export declare type RestrictionAction = io.flow.internal.v0.enums.RestrictionAction;
|
|
21077
21085
|
export declare type RestrictionCategory = io.flow.internal.v0.models.RestrictionCategory;
|
|
21078
21086
|
export declare type RestrictionDecision = io.flow.internal.v0.enums.RestrictionDecision;
|
|
21087
|
+
export declare type RestrictionFilter = io.flow.internal.v0.models.RestrictionFilter;
|
|
21079
21088
|
export declare type RestrictionHistoryItemReviewDecision = io.flow.internal.v0.models.RestrictionHistoryItemReviewDecision;
|
|
21080
21089
|
export declare type RestrictionItem = io.flow.internal.v0.models.RestrictionItem;
|
|
21081
21090
|
export declare type RestrictionItemReview = io.flow.internal.v0.models.RestrictionItemReview;
|
|
@@ -21273,6 +21282,7 @@ export declare type TaskData = io.flow.internal.v0.unions.TaskData;
|
|
|
21273
21282
|
export declare type TaskImport = io.flow.internal.v0.models.TaskImport;
|
|
21274
21283
|
export declare type TaskItemUpserted = io.flow.internal.v0.models.TaskItemUpserted;
|
|
21275
21284
|
export declare type TaskProcessQueuedEvent = io.flow.internal.v0.models.TaskProcessQueuedEvent;
|
|
21285
|
+
export declare type TaskProcessorKey = io.flow.internal.v0.enums.TaskProcessorKey;
|
|
21276
21286
|
export declare type TaskSummarizeCode = io.flow.internal.v0.models.TaskSummarizeCode;
|
|
21277
21287
|
export declare type TaxAmount = io.flow.internal.v0.unions.TaxAmount;
|
|
21278
21288
|
export declare type TaxCalculation = io.flow.internal.v0.models.TaxCalculation;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/types",
|
|
3
|
-
"version": "11.24.
|
|
3
|
+
"version": "11.24.30",
|
|
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": "86f7a2871f7d3b7b28a1e7e7d0388487b8d96c06"
|
|
29
29
|
}
|
package/src/api-internal.ts
CHANGED
|
@@ -13854,6 +13854,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13854
13854
|
type SubscriptionFrequency = 'yearly' | 'monthly';
|
|
13855
13855
|
type SuggestionAction = 'accept' | 'validate' | 'review';
|
|
13856
13856
|
type TariffEligibilityType = 'rex';
|
|
13857
|
+
type TaskProcessorKey = 'billing_account';
|
|
13857
13858
|
type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
|
|
13858
13859
|
type TaxParty = 'consumer' | 'organization' | 'flow' | 'carrier';
|
|
13859
13860
|
type TimeseriesType = 'daily' | 'weekly' | 'monthly' | 'yearly';
|
|
@@ -22937,6 +22938,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22937
22938
|
readonly category: string;
|
|
22938
22939
|
}
|
|
22939
22940
|
|
|
22941
|
+
interface RestrictionFilter {
|
|
22942
|
+
readonly categories: string[];
|
|
22943
|
+
readonly users: io.flow.common.v0.models.User[];
|
|
22944
|
+
readonly rules: io.flow.internal.v0.models.RestrictionRuleSummary[];
|
|
22945
|
+
readonly positive_keywords: string[];
|
|
22946
|
+
readonly negative_keywords: string[];
|
|
22947
|
+
}
|
|
22948
|
+
|
|
22940
22949
|
interface RestrictionHistoryItemReviewDecision {
|
|
22941
22950
|
readonly id: string;
|
|
22942
22951
|
readonly product_restriction_id: string;
|
|
@@ -28358,6 +28367,7 @@ export type RestrictionAction = io.flow.internal.v0.enums.RestrictionAction;
|
|
|
28358
28367
|
export type RestrictionCategory =
|
|
28359
28368
|
io.flow.internal.v0.models.RestrictionCategory;
|
|
28360
28369
|
export type RestrictionDecision = io.flow.internal.v0.enums.RestrictionDecision;
|
|
28370
|
+
export type RestrictionFilter = io.flow.internal.v0.models.RestrictionFilter;
|
|
28361
28371
|
export type RestrictionHistoryItemReviewDecision =
|
|
28362
28372
|
io.flow.internal.v0.models.RestrictionHistoryItemReviewDecision;
|
|
28363
28373
|
export type RestrictionItem = io.flow.internal.v0.models.RestrictionItem;
|
|
@@ -28682,6 +28692,7 @@ export type TaskImport = io.flow.internal.v0.models.TaskImport;
|
|
|
28682
28692
|
export type TaskItemUpserted = io.flow.internal.v0.models.TaskItemUpserted;
|
|
28683
28693
|
export type TaskProcessQueuedEvent =
|
|
28684
28694
|
io.flow.internal.v0.models.TaskProcessQueuedEvent;
|
|
28695
|
+
export type TaskProcessorKey = io.flow.internal.v0.enums.TaskProcessorKey;
|
|
28685
28696
|
export type TaskSummarizeCode = io.flow.internal.v0.models.TaskSummarizeCode;
|
|
28686
28697
|
export type TaxAmount = io.flow.internal.v0.unions.TaxAmount;
|
|
28687
28698
|
export type TaxCalculation = io.flow.internal.v0.models.TaxCalculation;
|