@vrplatform/api 1.3.1-stage.6254 → 1.3.1-stage.6265
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.
|
@@ -1242,7 +1242,7 @@ export interface paths {
|
|
|
1242
1242
|
get?: never;
|
|
1243
1243
|
put?: never;
|
|
1244
1244
|
/**
|
|
1245
|
-
* @description Send an Owner Portal invite.
|
|
1245
|
+
* @description Send an Owner Portal invite. Existing identity conflicts and provider-suppressed email addresses return bad requests.
|
|
1246
1246
|
*
|
|
1247
1247
|
* Required scope: contacts:write
|
|
1248
1248
|
*/
|
|
@@ -1310,7 +1310,7 @@ export interface paths {
|
|
|
1310
1310
|
get: operations["getContactsByIdViewers"];
|
|
1311
1311
|
put?: never;
|
|
1312
1312
|
/**
|
|
1313
|
-
* @description Invite an owner viewer.
|
|
1313
|
+
* @description Invite an owner viewer. Existing identity conflicts and provider-suppressed email addresses return bad requests.
|
|
1314
1314
|
*
|
|
1315
1315
|
* Required scope: contacts:write
|
|
1316
1316
|
*/
|
|
@@ -1352,7 +1352,7 @@ export interface paths {
|
|
|
1352
1352
|
get?: never;
|
|
1353
1353
|
put?: never;
|
|
1354
1354
|
/**
|
|
1355
|
-
* @description Reinvite an owner viewer.
|
|
1355
|
+
* @description Reinvite an owner viewer. Existing identity conflicts and provider-suppressed email addresses return bad requests.
|
|
1356
1356
|
*
|
|
1357
1357
|
* Required scope: contacts:write
|
|
1358
1358
|
*/
|
|
@@ -2340,7 +2340,7 @@ export interface paths {
|
|
|
2340
2340
|
/** @description List users in one regional data partition with their team memberships and owner accesses. Select the partition with x-data-region. */
|
|
2341
2341
|
get: operations["getInternalUsers"];
|
|
2342
2342
|
put?: never;
|
|
2343
|
-
/** @description Create or update a global platform user by primary or secondary email, optionally granting an initial team membership. Existing identities and current-team membership ids are reused and projected into the selected team region, and returned memberships cover every region. Used by identity and invite workflows. An explicit conflicting user id is rejected as a
|
|
2343
|
+
/** @description Create or update a global platform user by primary or secondary email, optionally granting an initial team membership. Existing identities and current-team membership ids are reused and projected into the selected team region, and returned memberships cover every region. Used by identity and invite workflows. An explicit conflicting user id is rejected as a bad request with reason USER_EMAIL_CONFLICT. */
|
|
2344
2344
|
post: operations["postInternalUsers"];
|
|
2345
2345
|
delete?: never;
|
|
2346
2346
|
options?: never;
|
|
@@ -2356,7 +2356,7 @@ export interface paths {
|
|
|
2356
2356
|
cookie?: never;
|
|
2357
2357
|
};
|
|
2358
2358
|
get?: never;
|
|
2359
|
-
/** @description Update a platform user by id. Used by the identity provider profile-update hooks. A duplicate email belonging to another user is rejected as a
|
|
2359
|
+
/** @description Update a platform user by id. Used by the identity provider profile-update hooks. A duplicate email belonging to another user is rejected as a bad request with reason USER_EMAIL_CONFLICT. */
|
|
2360
2360
|
put: operations["putInternalUsersById"];
|
|
2361
2361
|
post?: never;
|
|
2362
2362
|
/** @description Delete a platform user and its team memberships/access rows. Used by identity provider and lifecycle cleanup flows. */
|
|
@@ -2757,7 +2757,7 @@ export interface paths {
|
|
|
2757
2757
|
cookie?: never;
|
|
2758
2758
|
};
|
|
2759
2759
|
/**
|
|
2760
|
-
* @description List teams available to the authenticated user from the control plane. VRPlatform admins receive all teams regardless of membership. Direct memberships are always included.
|
|
2760
|
+
* @description List teams available to the authenticated user from the control plane. VRPlatform admins receive all teams regardless of membership. Direct memberships are always included. With UI Permission Roles enabled, partner membership adds all managed teams in all mode or the explicit partner-managed assignments in assigned mode. Legacy authorization mode retains broad partner-derived team access. Supports comma-separated team IDs, team-name search, lifecycle and type filters, deterministic sorting, and pagination across regions. ID filtering never expands the authenticated access scope.
|
|
2761
2761
|
*
|
|
2762
2762
|
* Required scope: self:read
|
|
2763
2763
|
*/
|
|
@@ -3395,7 +3395,7 @@ export interface paths {
|
|
|
3395
3395
|
put?: never;
|
|
3396
3396
|
post?: never;
|
|
3397
3397
|
/**
|
|
3398
|
-
* @description Remove a member from the authenticated partner tenant without deleting the
|
|
3398
|
+
* @description Remove a member from the authenticated partner tenant. With UI permissions enabled, this also revokes partner-managed child-team assignments without deleting the user or genuine direct memberships; legacy mode preserves child-team compatibility memberships.
|
|
3399
3399
|
*
|
|
3400
3400
|
* Required scope: team-members:manage
|
|
3401
3401
|
*/
|
|
@@ -3414,7 +3414,7 @@ export interface paths {
|
|
|
3414
3414
|
};
|
|
3415
3415
|
get?: never;
|
|
3416
3416
|
/**
|
|
3417
|
-
* @description Update a partner member's managed-team access
|
|
3417
|
+
* @description Update a partner member's managed-team access. With UI permissions enabled, managedTeamAccess and role-free teamIds atomically replace partner-managed assignments while genuine direct and owner memberships remain untouched. In legacy-role mode, the role-bearing memberships contract remains available.
|
|
3418
3418
|
*
|
|
3419
3419
|
* Required scope: partner-memberships:manage
|
|
3420
3420
|
*/
|
|
@@ -10041,7 +10041,6 @@ export interface operations {
|
|
|
10041
10041
|
} | null;
|
|
10042
10042
|
matchStatus?: string | null;
|
|
10043
10043
|
appliedAmount?: {
|
|
10044
|
-
taxBehavior?: ("excluded" | "included") | null;
|
|
10045
10044
|
taxRate?: {
|
|
10046
10045
|
id: string;
|
|
10047
10046
|
name: string;
|
|
@@ -16786,7 +16785,6 @@ export interface operations {
|
|
|
16786
16785
|
amount: number;
|
|
16787
16786
|
appliedAmount?: {
|
|
16788
16787
|
taxRateId?: string | null;
|
|
16789
|
-
taxBehavior?: ("excluded" | "included") | null;
|
|
16790
16788
|
} | null;
|
|
16791
16789
|
markup?: {
|
|
16792
16790
|
amount?: number | null;
|
|
@@ -17797,7 +17795,6 @@ export interface operations {
|
|
|
17797
17795
|
amount: number;
|
|
17798
17796
|
appliedAmount?: {
|
|
17799
17797
|
taxRateId?: string | null;
|
|
17800
|
-
taxBehavior?: ("excluded" | "included") | null;
|
|
17801
17798
|
} | null;
|
|
17802
17799
|
markup?: {
|
|
17803
17800
|
amount?: number | null;
|
|
@@ -18666,7 +18663,6 @@ export interface operations {
|
|
|
18666
18663
|
amount?: number | null;
|
|
18667
18664
|
assignment?: "deposit_merchantFee" | null;
|
|
18668
18665
|
party?: ("owners" | "manager") | null;
|
|
18669
|
-
taxBehavior?: ("excluded" | "included") | null;
|
|
18670
18666
|
descriptionOverride?: string | null;
|
|
18671
18667
|
markup?: {
|
|
18672
18668
|
amount?: number | null;
|
|
@@ -19002,7 +18998,6 @@ export interface operations {
|
|
|
19002
18998
|
contactId?: string | null;
|
|
19003
18999
|
party?: ("owners" | "manager") | null;
|
|
19004
19000
|
taxRateId?: string | null;
|
|
19005
|
-
taxBehavior?: ("excluded" | "included") | null;
|
|
19006
19001
|
markup?: {
|
|
19007
19002
|
amount?: number | null;
|
|
19008
19003
|
taxRateId?: string | null;
|
|
@@ -19077,7 +19072,6 @@ export interface operations {
|
|
|
19077
19072
|
amount?: number | null;
|
|
19078
19073
|
assignment?: "deposit_merchantFee" | null;
|
|
19079
19074
|
party?: ("owners" | "manager") | null;
|
|
19080
|
-
taxBehavior?: ("excluded" | "included") | null;
|
|
19081
19075
|
descriptionOverride?: string | null;
|
|
19082
19076
|
markup?: {
|
|
19083
19077
|
amount?: number | null;
|
|
@@ -19403,7 +19397,6 @@ export interface operations {
|
|
|
19403
19397
|
contactId?: string | null;
|
|
19404
19398
|
party?: ("owners" | "manager") | null;
|
|
19405
19399
|
taxRateId?: string | null;
|
|
19406
|
-
taxBehavior?: ("excluded" | "included") | null;
|
|
19407
19400
|
markup?: {
|
|
19408
19401
|
amount?: number | null;
|
|
19409
19402
|
taxRateId?: string | null;
|
|
@@ -19459,7 +19452,6 @@ export interface operations {
|
|
|
19459
19452
|
amount: number;
|
|
19460
19453
|
appliedAmount?: {
|
|
19461
19454
|
taxRateId?: string | null;
|
|
19462
|
-
taxBehavior?: ("excluded" | "included") | null;
|
|
19463
19455
|
} | null;
|
|
19464
19456
|
markup?: {
|
|
19465
19457
|
amount?: number | null;
|
|
@@ -19799,7 +19791,6 @@ export interface operations {
|
|
|
19799
19791
|
amount?: number | null;
|
|
19800
19792
|
assignment?: "deposit_merchantFee" | null;
|
|
19801
19793
|
party?: ("owners" | "manager") | null;
|
|
19802
|
-
taxBehavior?: ("excluded" | "included") | null;
|
|
19803
19794
|
descriptionOverride?: string | null;
|
|
19804
19795
|
markup?: {
|
|
19805
19796
|
amount?: number | null;
|
|
@@ -20129,7 +20120,6 @@ export interface operations {
|
|
|
20129
20120
|
contactId?: string | null;
|
|
20130
20121
|
party?: ("owners" | "manager") | null;
|
|
20131
20122
|
taxRateId?: string | null;
|
|
20132
|
-
taxBehavior?: ("excluded" | "included") | null;
|
|
20133
20123
|
markup?: {
|
|
20134
20124
|
amount?: number | null;
|
|
20135
20125
|
taxRateId?: string | null;
|
|
@@ -20204,7 +20194,6 @@ export interface operations {
|
|
|
20204
20194
|
amount?: number | null;
|
|
20205
20195
|
assignment?: "deposit_merchantFee" | null;
|
|
20206
20196
|
party?: ("owners" | "manager") | null;
|
|
20207
|
-
taxBehavior?: ("excluded" | "included") | null;
|
|
20208
20197
|
descriptionOverride?: string | null;
|
|
20209
20198
|
markup?: {
|
|
20210
20199
|
amount?: number | null;
|
|
@@ -20814,7 +20803,6 @@ export interface operations {
|
|
|
20814
20803
|
amount: number;
|
|
20815
20804
|
appliedAmount?: {
|
|
20816
20805
|
taxRateId?: string | null;
|
|
20817
|
-
taxBehavior?: ("excluded" | "included") | null;
|
|
20818
20806
|
} | null;
|
|
20819
20807
|
markup?: {
|
|
20820
20808
|
amount?: number | null;
|
|
@@ -50189,6 +50177,8 @@ export interface operations {
|
|
|
50189
50177
|
lastSeen: string | null;
|
|
50190
50178
|
createdAt: string | null;
|
|
50191
50179
|
memberships: {
|
|
50180
|
+
/** @enum {string} */
|
|
50181
|
+
accessSource?: "direct" | "partnerManaged";
|
|
50192
50182
|
/** Format: uuid */
|
|
50193
50183
|
teamId: string;
|
|
50194
50184
|
teamName: string;
|
|
@@ -67871,6 +67861,8 @@ export interface operations {
|
|
|
67871
67861
|
lastName: string | null;
|
|
67872
67862
|
lastSeen: string | null;
|
|
67873
67863
|
memberships: {
|
|
67864
|
+
/** @enum {string} */
|
|
67865
|
+
accessSource: "direct" | "partnerManaged";
|
|
67874
67866
|
tenant: {
|
|
67875
67867
|
/** Format: uuid */
|
|
67876
67868
|
id: string;
|
|
@@ -68376,18 +68368,15 @@ export interface operations {
|
|
|
68376
68368
|
requestBody?: {
|
|
68377
68369
|
content: {
|
|
68378
68370
|
"application/json": {
|
|
68379
|
-
/**
|
|
68380
|
-
* @description Partner-level child-team access mode. Omit to preserve the member's current mode.
|
|
68381
|
-
* @enum {string}
|
|
68382
|
-
*/
|
|
68371
|
+
/** @enum {string} */
|
|
68383
68372
|
managedTeamAccess?: "all" | "assigned";
|
|
68384
|
-
|
|
68385
|
-
memberships: {
|
|
68386
|
-
/** Format: uuid */
|
|
68387
|
-
teamId: string;
|
|
68373
|
+
memberships?: {
|
|
68388
68374
|
/** @enum {string} */
|
|
68389
68375
|
role: "admin" | "user";
|
|
68376
|
+
/** Format: uuid */
|
|
68377
|
+
teamId: string;
|
|
68390
68378
|
}[];
|
|
68379
|
+
teamIds?: string[];
|
|
68391
68380
|
};
|
|
68392
68381
|
};
|
|
68393
68382
|
};
|
|
@@ -68400,6 +68389,8 @@ export interface operations {
|
|
|
68400
68389
|
content: {
|
|
68401
68390
|
"application/json": {
|
|
68402
68391
|
data: {
|
|
68392
|
+
/** @enum {string} */
|
|
68393
|
+
accessSource?: "direct" | "partnerManaged";
|
|
68403
68394
|
/** Format: uuid */
|
|
68404
68395
|
teamId: string;
|
|
68405
68396
|
teamName: string;
|
|
@@ -68967,6 +68958,8 @@ export interface operations {
|
|
|
68967
68958
|
lastSeen: string | null;
|
|
68968
68959
|
createdAt: string | null;
|
|
68969
68960
|
memberships: {
|
|
68961
|
+
/** @enum {string} */
|
|
68962
|
+
accessSource?: "direct" | "partnerManaged";
|
|
68970
68963
|
/** Format: uuid */
|
|
68971
68964
|
teamId: string;
|
|
68972
68965
|
teamName: string;
|
|
@@ -69256,6 +69249,8 @@ export interface operations {
|
|
|
69256
69249
|
lastSeen: string | null;
|
|
69257
69250
|
createdAt: string | null;
|
|
69258
69251
|
memberships: {
|
|
69252
|
+
/** @enum {string} */
|
|
69253
|
+
accessSource?: "direct" | "partnerManaged";
|
|
69259
69254
|
/** Format: uuid */
|
|
69260
69255
|
teamId: string;
|
|
69261
69256
|
teamName: string;
|
|
@@ -69798,6 +69793,8 @@ export interface operations {
|
|
|
69798
69793
|
content: {
|
|
69799
69794
|
"application/json": {
|
|
69800
69795
|
data: {
|
|
69796
|
+
/** @enum {string} */
|
|
69797
|
+
accessSource?: "direct" | "partnerManaged";
|
|
69801
69798
|
/** Format: uuid */
|
|
69802
69799
|
teamId: string;
|
|
69803
69800
|
teamName: string;
|
|
@@ -106714,7 +106711,6 @@ export interface operations {
|
|
|
106714
106711
|
} | null;
|
|
106715
106712
|
matchStatus?: string | null;
|
|
106716
106713
|
appliedAmount?: {
|
|
106717
|
-
taxBehavior?: ("excluded" | "included") | null;
|
|
106718
106714
|
taxRate?: {
|
|
106719
106715
|
id: string;
|
|
106720
106716
|
name: string;
|
|
@@ -119372,10 +119368,8 @@ export interface operations {
|
|
|
119372
119368
|
content: {
|
|
119373
119369
|
"application/json": {
|
|
119374
119370
|
email: string;
|
|
119375
|
-
|
|
119376
|
-
|
|
119377
|
-
* @enum {string}
|
|
119378
|
-
*/
|
|
119371
|
+
permissionBundles?: ("ui:team-admin:v1" | "ui:partner-admin:v1" | "ui:standard-member:v1" | "ui:operations:v1" | "ui:accounting:v1" | "ui:owner-statements:v1" | "ui:reports-viewer:v1" | "ui:read-only:v1" | "ui:ach-payer:v1")[];
|
|
119372
|
+
/** @enum {string} */
|
|
119379
119373
|
role?: "admin" | "user";
|
|
119380
119374
|
/** @default true */
|
|
119381
119375
|
sendEmail?: boolean;
|
|
@@ -119390,7 +119384,14 @@ export interface operations {
|
|
|
119390
119384
|
};
|
|
119391
119385
|
content: {
|
|
119392
119386
|
"application/json": {
|
|
119387
|
+
permissionBundles: ("ui:team-admin:v1" | "ui:partner-admin:v1" | "ui:standard-member:v1" | "ui:operations:v1" | "ui:accounting:v1" | "ui:owner-statements:v1" | "ui:reports-viewer:v1" | "ui:read-only:v1" | "ui:ach-payer:v1")[];
|
|
119388
|
+
/** @enum {string} */
|
|
119389
|
+
role: "admin" | "user";
|
|
119390
|
+
/** Format: uuid */
|
|
119391
|
+
tenantUserId: string;
|
|
119393
119392
|
url: string;
|
|
119393
|
+
/** Format: uuid */
|
|
119394
|
+
userId: string;
|
|
119394
119395
|
};
|
|
119395
119396
|
};
|
|
119396
119397
|
};
|
|
@@ -124866,7 +124867,6 @@ export interface operations {
|
|
|
124866
124867
|
} | null;
|
|
124867
124868
|
matchStatus?: string | null;
|
|
124868
124869
|
appliedAmount?: {
|
|
124869
|
-
taxBehavior?: ("excluded" | "included") | null;
|
|
124870
124870
|
taxRate?: {
|
|
124871
124871
|
id: string;
|
|
124872
124872
|
name: string;
|
|
@@ -125391,7 +125391,6 @@ export interface operations {
|
|
|
125391
125391
|
amount: number;
|
|
125392
125392
|
appliedAmount?: {
|
|
125393
125393
|
taxRateId?: string | null;
|
|
125394
|
-
taxBehavior?: ("excluded" | "included") | null;
|
|
125395
125394
|
} | null;
|
|
125396
125395
|
markup?: {
|
|
125397
125396
|
amount?: number | null;
|
|
@@ -125551,7 +125550,6 @@ export interface operations {
|
|
|
125551
125550
|
} | null;
|
|
125552
125551
|
matchStatus?: string | null;
|
|
125553
125552
|
appliedAmount?: {
|
|
125554
|
-
taxBehavior?: ("excluded" | "included") | null;
|
|
125555
125553
|
taxRate?: {
|
|
125556
125554
|
id: string;
|
|
125557
125555
|
name: string;
|
|
@@ -127327,7 +127325,6 @@ export interface operations {
|
|
|
127327
127325
|
amount: number;
|
|
127328
127326
|
appliedAmount?: {
|
|
127329
127327
|
taxRateId?: string | null;
|
|
127330
|
-
taxBehavior?: ("excluded" | "included") | null;
|
|
127331
127328
|
} | null;
|
|
127332
127329
|
markup?: {
|
|
127333
127330
|
amount?: number | null;
|
|
@@ -129117,7 +129114,6 @@ export interface operations {
|
|
|
129117
129114
|
} | null;
|
|
129118
129115
|
matchStatus?: string | null;
|
|
129119
129116
|
appliedAmount?: {
|
|
129120
|
-
taxBehavior?: ("excluded" | "included") | null;
|
|
129121
129117
|
taxRate?: {
|
|
129122
129118
|
id: string;
|
|
129123
129119
|
name: string;
|
|
@@ -129470,6 +129466,9 @@ export interface operations {
|
|
|
129470
129466
|
listingId?: string | null;
|
|
129471
129467
|
party?: ("owners" | "manager") | null;
|
|
129472
129468
|
contactId?: string | null;
|
|
129469
|
+
appliedAmount?: {
|
|
129470
|
+
taxRateId?: string | null;
|
|
129471
|
+
} | null;
|
|
129473
129472
|
markup?: {
|
|
129474
129473
|
amount?: number | null;
|
|
129475
129474
|
taxRateId?: string | null;
|
|
@@ -129599,7 +129598,6 @@ export interface operations {
|
|
|
129599
129598
|
} | null;
|
|
129600
129599
|
matchStatus?: string | null;
|
|
129601
129600
|
appliedAmount?: {
|
|
129602
|
-
taxBehavior?: ("excluded" | "included") | null;
|
|
129603
129601
|
taxRate?: {
|
|
129604
129602
|
id: string;
|
|
129605
129603
|
name: string;
|
|
@@ -130298,7 +130296,6 @@ export interface operations {
|
|
|
130298
130296
|
} | null;
|
|
130299
130297
|
matchStatus?: string | null;
|
|
130300
130298
|
appliedAmount?: {
|
|
130301
|
-
taxBehavior?: ("excluded" | "included") | null;
|
|
130302
130299
|
taxRate?: {
|
|
130303
130300
|
id: string;
|
|
130304
130301
|
name: string;
|
|
@@ -130643,6 +130640,9 @@ export interface operations {
|
|
|
130643
130640
|
listingId?: string | null;
|
|
130644
130641
|
party?: ("owners" | "manager") | null;
|
|
130645
130642
|
contactId?: string | null;
|
|
130643
|
+
appliedAmount?: {
|
|
130644
|
+
taxRateId?: string | null;
|
|
130645
|
+
} | null;
|
|
130646
130646
|
markup?: {
|
|
130647
130647
|
amount?: number | null;
|
|
130648
130648
|
taxRateId?: string | null;
|
|
@@ -130773,7 +130773,6 @@ export interface operations {
|
|
|
130773
130773
|
} | null;
|
|
130774
130774
|
matchStatus?: string | null;
|
|
130775
130775
|
appliedAmount?: {
|
|
130776
|
-
taxBehavior?: ("excluded" | "included") | null;
|
|
130777
130776
|
taxRate?: {
|
|
130778
130777
|
id: string;
|
|
130779
130778
|
name: string;
|
|
@@ -131441,7 +131440,6 @@ export interface operations {
|
|
|
131441
131440
|
} | null;
|
|
131442
131441
|
matchStatus?: string | null;
|
|
131443
131442
|
appliedAmount?: {
|
|
131444
|
-
taxBehavior?: ("excluded" | "included") | null;
|
|
131445
131443
|
taxRate?: {
|
|
131446
131444
|
id: string;
|
|
131447
131445
|
name: string;
|
|
@@ -131983,7 +131981,6 @@ export interface operations {
|
|
|
131983
131981
|
} | null;
|
|
131984
131982
|
matchStatus?: string | null;
|
|
131985
131983
|
appliedAmount?: {
|
|
131986
|
-
taxBehavior?: ("excluded" | "included") | null;
|
|
131987
131984
|
taxRate?: {
|
|
131988
131985
|
id: string;
|
|
131989
131986
|
name: string;
|
|
@@ -132551,7 +132548,6 @@ export interface operations {
|
|
|
132551
132548
|
amount?: number;
|
|
132552
132549
|
appliedAmount?: {
|
|
132553
132550
|
taxRateId?: string | null;
|
|
132554
|
-
taxBehavior?: ("excluded" | "included") | null;
|
|
132555
132551
|
} | null;
|
|
132556
132552
|
markup?: {
|
|
132557
132553
|
amount?: number | null;
|
|
@@ -132586,7 +132582,6 @@ export interface operations {
|
|
|
132586
132582
|
amount: number;
|
|
132587
132583
|
appliedAmount?: {
|
|
132588
132584
|
taxRateId?: string | null;
|
|
132589
|
-
taxBehavior?: ("excluded" | "included") | null;
|
|
132590
132585
|
} | null;
|
|
132591
132586
|
markup?: {
|
|
132592
132587
|
amount?: number | null;
|
|
@@ -132621,7 +132616,6 @@ export interface operations {
|
|
|
132621
132616
|
amount?: number;
|
|
132622
132617
|
appliedAmount?: {
|
|
132623
132618
|
taxRateId?: string | null;
|
|
132624
|
-
taxBehavior?: ("excluded" | "included") | null;
|
|
132625
132619
|
} | null;
|
|
132626
132620
|
markup?: {
|
|
132627
132621
|
amount?: number | null;
|
|
@@ -132734,7 +132728,6 @@ export interface operations {
|
|
|
132734
132728
|
} | null;
|
|
132735
132729
|
matchStatus?: string | null;
|
|
132736
132730
|
appliedAmount?: {
|
|
132737
|
-
taxBehavior?: ("excluded" | "included") | null;
|
|
132738
132731
|
taxRate?: {
|
|
132739
132732
|
id: string;
|
|
132740
132733
|
name: string;
|
|
@@ -134288,7 +134281,6 @@ export interface operations {
|
|
|
134288
134281
|
amount?: number;
|
|
134289
134282
|
appliedAmount?: {
|
|
134290
134283
|
taxRateId?: string | null;
|
|
134291
|
-
taxBehavior?: ("excluded" | "included") | null;
|
|
134292
134284
|
} | null;
|
|
134293
134285
|
markup?: {
|
|
134294
134286
|
amount?: number | null;
|
|
@@ -134396,7 +134388,6 @@ export interface operations {
|
|
|
134396
134388
|
} | null;
|
|
134397
134389
|
matchStatus?: string | null;
|
|
134398
134390
|
appliedAmount?: {
|
|
134399
|
-
taxBehavior?: ("excluded" | "included") | null;
|
|
134400
134391
|
taxRate?: {
|
|
134401
134392
|
id: string;
|
|
134402
134393
|
name: string;
|