@vrplatform/api 1.3.1-preview.4549 → 1.3.1-preview.4560
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.
|
@@ -2313,7 +2313,7 @@ export interface paths {
|
|
|
2313
2313
|
path?: never;
|
|
2314
2314
|
cookie?: never;
|
|
2315
2315
|
};
|
|
2316
|
-
/** @description List members of the partner itself with their child-team memberships */
|
|
2316
|
+
/** @description List members of the partner itself with their partner-team role, status, invitation timestamp, and child-team memberships */
|
|
2317
2317
|
get: operations["getPartnerMembers"];
|
|
2318
2318
|
put?: never;
|
|
2319
2319
|
post?: never;
|
|
@@ -2357,6 +2357,23 @@ export interface paths {
|
|
|
2357
2357
|
patch?: never;
|
|
2358
2358
|
trace?: never;
|
|
2359
2359
|
};
|
|
2360
|
+
"/partner/owner-statements": {
|
|
2361
|
+
parameters: {
|
|
2362
|
+
query?: never;
|
|
2363
|
+
header?: never;
|
|
2364
|
+
path?: never;
|
|
2365
|
+
cookie?: never;
|
|
2366
|
+
};
|
|
2367
|
+
/** @description List VRT teams in one regional partition of the partner portfolio with owner statement counts by status. Supports team-name search, pagination, and ordering by each status count. Select the partition with x-data-region. */
|
|
2368
|
+
get: operations["getPartnerOwnerStatements"];
|
|
2369
|
+
put?: never;
|
|
2370
|
+
post?: never;
|
|
2371
|
+
delete?: never;
|
|
2372
|
+
options?: never;
|
|
2373
|
+
head?: never;
|
|
2374
|
+
patch?: never;
|
|
2375
|
+
trace?: never;
|
|
2376
|
+
};
|
|
2360
2377
|
"/partner/users": {
|
|
2361
2378
|
parameters: {
|
|
2362
2379
|
query?: never;
|
|
@@ -2364,7 +2381,7 @@ export interface paths {
|
|
|
2364
2381
|
path?: never;
|
|
2365
2382
|
cookie?: never;
|
|
2366
2383
|
};
|
|
2367
|
-
/** @description List users across one regional partition of the partner portfolio with their team memberships and owner accesses. Select the partition with x-data-region. */
|
|
2384
|
+
/** @description List child-team users across one regional partition of the partner portfolio with their team memberships and owner accesses. Users who belong to the partner team itself are excluded. Select the partition with x-data-region. */
|
|
2368
2385
|
get: operations["getPartnerUsers"];
|
|
2369
2386
|
put?: never;
|
|
2370
2387
|
post?: never;
|
|
@@ -2555,7 +2572,7 @@ export interface paths {
|
|
|
2555
2572
|
};
|
|
2556
2573
|
get?: never;
|
|
2557
2574
|
put?: never;
|
|
2558
|
-
/** @description Create a tenant-scoped Plaid Link session. Create mode forbids connectionId; update and replace require it. Update mode reuses the stored Item while replace creates a new Item for the existing connection. The
|
|
2575
|
+
/** @description Create a tenant-scoped Plaid Link session. Create mode forbids connectionId; update and replace require it. Update mode reuses the stored Item while replace creates a new Item for the existing connection. Environment is optional for a new Item and defaults to production; reusable credentials retain their stored environment. The session owns environment and product selection after start. Link tokens are short-lived; complete the returned connectId before expiresAt. PLAID_CONNECT_REQUIRES_NEW_LINK returns the only valid restart mode and any required tenant-scoped connectionId in context. See https://docs.vrplatform.app/guides/build/banking. */
|
|
2559
2576
|
post: operations["createPlaidConnectSession"];
|
|
2560
2577
|
delete?: never;
|
|
2561
2578
|
options?: never;
|
|
@@ -56783,6 +56800,10 @@ export interface operations {
|
|
|
56783
56800
|
/** Format: email */
|
|
56784
56801
|
email: string;
|
|
56785
56802
|
secondaryEmails: string[];
|
|
56803
|
+
/** @enum {string} */
|
|
56804
|
+
role: "admin" | "user";
|
|
56805
|
+
status: ("active" | "inactive" | "unconfirmed") | null;
|
|
56806
|
+
lastInvitedAt: string | null;
|
|
56786
56807
|
partnerId: string | null;
|
|
56787
56808
|
name: string | null;
|
|
56788
56809
|
firstName: string | null;
|
|
@@ -57548,6 +57569,291 @@ export interface operations {
|
|
|
57548
57569
|
};
|
|
57549
57570
|
};
|
|
57550
57571
|
};
|
|
57572
|
+
getPartnerOwnerStatements: {
|
|
57573
|
+
parameters: {
|
|
57574
|
+
query?: {
|
|
57575
|
+
/** @description Filter by team name */
|
|
57576
|
+
search?: string;
|
|
57577
|
+
/** @description Owner statement status count to sort by */
|
|
57578
|
+
sortBy?: "draft" | "inReview" | "published";
|
|
57579
|
+
/** @description Sort direction, defaults to asc */
|
|
57580
|
+
sortDirection?: "asc" | "desc";
|
|
57581
|
+
limit?: number;
|
|
57582
|
+
page?: number;
|
|
57583
|
+
offset?: number;
|
|
57584
|
+
};
|
|
57585
|
+
header?: {
|
|
57586
|
+
/** @description Selects the regional data partition for this partner portfolio read. It does not change the authenticated team context. */
|
|
57587
|
+
"x-data-region"?: "ap" | "crunchy" | "eu" | "hostaway" | "us";
|
|
57588
|
+
};
|
|
57589
|
+
path?: never;
|
|
57590
|
+
cookie?: never;
|
|
57591
|
+
};
|
|
57592
|
+
requestBody?: never;
|
|
57593
|
+
responses: {
|
|
57594
|
+
/** @description Successful response */
|
|
57595
|
+
200: {
|
|
57596
|
+
headers: {
|
|
57597
|
+
[name: string]: unknown;
|
|
57598
|
+
};
|
|
57599
|
+
content: {
|
|
57600
|
+
"application/json": {
|
|
57601
|
+
data: {
|
|
57602
|
+
/** Format: uuid */
|
|
57603
|
+
id: string;
|
|
57604
|
+
name: string;
|
|
57605
|
+
logo?: string;
|
|
57606
|
+
/**
|
|
57607
|
+
* Format: date-time
|
|
57608
|
+
* @description Timestamp string with date, time, milliseconds, and timezone.
|
|
57609
|
+
* @example 2024-01-15T12:30:00.000+00:00
|
|
57610
|
+
*/
|
|
57611
|
+
createdAt: string;
|
|
57612
|
+
ownerStatements: {
|
|
57613
|
+
draft: number;
|
|
57614
|
+
inReview: number;
|
|
57615
|
+
published: number;
|
|
57616
|
+
};
|
|
57617
|
+
}[];
|
|
57618
|
+
pagination: {
|
|
57619
|
+
/** @default 100 */
|
|
57620
|
+
limit: number;
|
|
57621
|
+
/** @default 1 */
|
|
57622
|
+
page: number;
|
|
57623
|
+
total: number;
|
|
57624
|
+
totalPage: number;
|
|
57625
|
+
nextPage?: number;
|
|
57626
|
+
};
|
|
57627
|
+
};
|
|
57628
|
+
};
|
|
57629
|
+
};
|
|
57630
|
+
/** @description Bad request */
|
|
57631
|
+
400: {
|
|
57632
|
+
headers: {
|
|
57633
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
57634
|
+
"Retry-After"?: number;
|
|
57635
|
+
[name: string]: unknown;
|
|
57636
|
+
};
|
|
57637
|
+
content: {
|
|
57638
|
+
"application/json": {
|
|
57639
|
+
code: string;
|
|
57640
|
+
message: string;
|
|
57641
|
+
links?: {
|
|
57642
|
+
docs: string;
|
|
57643
|
+
schema: string;
|
|
57644
|
+
};
|
|
57645
|
+
issues?: {
|
|
57646
|
+
message: string;
|
|
57647
|
+
path?: (string | number)[];
|
|
57648
|
+
schema?: string;
|
|
57649
|
+
}[];
|
|
57650
|
+
retryable?: boolean;
|
|
57651
|
+
context?: unknown;
|
|
57652
|
+
};
|
|
57653
|
+
};
|
|
57654
|
+
};
|
|
57655
|
+
/** @description Unauthorized */
|
|
57656
|
+
401: {
|
|
57657
|
+
headers: {
|
|
57658
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
57659
|
+
"Retry-After"?: number;
|
|
57660
|
+
[name: string]: unknown;
|
|
57661
|
+
};
|
|
57662
|
+
content: {
|
|
57663
|
+
"application/json": {
|
|
57664
|
+
code: string;
|
|
57665
|
+
message: string;
|
|
57666
|
+
links?: {
|
|
57667
|
+
docs: string;
|
|
57668
|
+
schema: string;
|
|
57669
|
+
};
|
|
57670
|
+
issues?: {
|
|
57671
|
+
message: string;
|
|
57672
|
+
path?: (string | number)[];
|
|
57673
|
+
schema?: string;
|
|
57674
|
+
}[];
|
|
57675
|
+
retryable?: boolean;
|
|
57676
|
+
context?: unknown;
|
|
57677
|
+
};
|
|
57678
|
+
};
|
|
57679
|
+
};
|
|
57680
|
+
/** @description Forbidden */
|
|
57681
|
+
403: {
|
|
57682
|
+
headers: {
|
|
57683
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
57684
|
+
"Retry-After"?: number;
|
|
57685
|
+
[name: string]: unknown;
|
|
57686
|
+
};
|
|
57687
|
+
content: {
|
|
57688
|
+
"application/json": {
|
|
57689
|
+
code: string;
|
|
57690
|
+
message: string;
|
|
57691
|
+
links?: {
|
|
57692
|
+
docs: string;
|
|
57693
|
+
schema: string;
|
|
57694
|
+
};
|
|
57695
|
+
issues?: {
|
|
57696
|
+
message: string;
|
|
57697
|
+
path?: (string | number)[];
|
|
57698
|
+
schema?: string;
|
|
57699
|
+
}[];
|
|
57700
|
+
retryable?: boolean;
|
|
57701
|
+
context?: unknown;
|
|
57702
|
+
};
|
|
57703
|
+
};
|
|
57704
|
+
};
|
|
57705
|
+
/** @description Not found */
|
|
57706
|
+
404: {
|
|
57707
|
+
headers: {
|
|
57708
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
57709
|
+
"Retry-After"?: number;
|
|
57710
|
+
[name: string]: unknown;
|
|
57711
|
+
};
|
|
57712
|
+
content: {
|
|
57713
|
+
"application/json": {
|
|
57714
|
+
code: string;
|
|
57715
|
+
message: string;
|
|
57716
|
+
links?: {
|
|
57717
|
+
docs: string;
|
|
57718
|
+
schema: string;
|
|
57719
|
+
};
|
|
57720
|
+
issues?: {
|
|
57721
|
+
message: string;
|
|
57722
|
+
path?: (string | number)[];
|
|
57723
|
+
schema?: string;
|
|
57724
|
+
}[];
|
|
57725
|
+
retryable?: boolean;
|
|
57726
|
+
context?: unknown;
|
|
57727
|
+
};
|
|
57728
|
+
};
|
|
57729
|
+
};
|
|
57730
|
+
/** @description Conflict */
|
|
57731
|
+
409: {
|
|
57732
|
+
headers: {
|
|
57733
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
57734
|
+
"Retry-After"?: number;
|
|
57735
|
+
[name: string]: unknown;
|
|
57736
|
+
};
|
|
57737
|
+
content: {
|
|
57738
|
+
"application/json": {
|
|
57739
|
+
code: string;
|
|
57740
|
+
message: string;
|
|
57741
|
+
links?: {
|
|
57742
|
+
docs: string;
|
|
57743
|
+
schema: string;
|
|
57744
|
+
};
|
|
57745
|
+
issues?: {
|
|
57746
|
+
message: string;
|
|
57747
|
+
path?: (string | number)[];
|
|
57748
|
+
schema?: string;
|
|
57749
|
+
}[];
|
|
57750
|
+
retryable?: boolean;
|
|
57751
|
+
context?: unknown;
|
|
57752
|
+
};
|
|
57753
|
+
};
|
|
57754
|
+
};
|
|
57755
|
+
/** @description Gone */
|
|
57756
|
+
410: {
|
|
57757
|
+
headers: {
|
|
57758
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
57759
|
+
"Retry-After"?: number;
|
|
57760
|
+
[name: string]: unknown;
|
|
57761
|
+
};
|
|
57762
|
+
content: {
|
|
57763
|
+
"application/json": {
|
|
57764
|
+
code: string;
|
|
57765
|
+
message: string;
|
|
57766
|
+
links?: {
|
|
57767
|
+
docs: string;
|
|
57768
|
+
schema: string;
|
|
57769
|
+
};
|
|
57770
|
+
issues?: {
|
|
57771
|
+
message: string;
|
|
57772
|
+
path?: (string | number)[];
|
|
57773
|
+
schema?: string;
|
|
57774
|
+
}[];
|
|
57775
|
+
retryable?: boolean;
|
|
57776
|
+
context?: unknown;
|
|
57777
|
+
};
|
|
57778
|
+
};
|
|
57779
|
+
};
|
|
57780
|
+
/** @description Unprocessable content */
|
|
57781
|
+
422: {
|
|
57782
|
+
headers: {
|
|
57783
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
57784
|
+
"Retry-After"?: number;
|
|
57785
|
+
[name: string]: unknown;
|
|
57786
|
+
};
|
|
57787
|
+
content: {
|
|
57788
|
+
"application/json": {
|
|
57789
|
+
code: string;
|
|
57790
|
+
message: string;
|
|
57791
|
+
links?: {
|
|
57792
|
+
docs: string;
|
|
57793
|
+
schema: string;
|
|
57794
|
+
};
|
|
57795
|
+
issues?: {
|
|
57796
|
+
message: string;
|
|
57797
|
+
path?: (string | number)[];
|
|
57798
|
+
schema?: string;
|
|
57799
|
+
}[];
|
|
57800
|
+
retryable?: boolean;
|
|
57801
|
+
context?: unknown;
|
|
57802
|
+
};
|
|
57803
|
+
};
|
|
57804
|
+
};
|
|
57805
|
+
/** @description Internal server error */
|
|
57806
|
+
500: {
|
|
57807
|
+
headers: {
|
|
57808
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
57809
|
+
"Retry-After"?: number;
|
|
57810
|
+
[name: string]: unknown;
|
|
57811
|
+
};
|
|
57812
|
+
content: {
|
|
57813
|
+
"application/json": {
|
|
57814
|
+
code: string;
|
|
57815
|
+
message: string;
|
|
57816
|
+
links?: {
|
|
57817
|
+
docs: string;
|
|
57818
|
+
schema: string;
|
|
57819
|
+
};
|
|
57820
|
+
issues?: {
|
|
57821
|
+
message: string;
|
|
57822
|
+
path?: (string | number)[];
|
|
57823
|
+
schema?: string;
|
|
57824
|
+
}[];
|
|
57825
|
+
retryable?: boolean;
|
|
57826
|
+
context?: unknown;
|
|
57827
|
+
};
|
|
57828
|
+
};
|
|
57829
|
+
};
|
|
57830
|
+
/** @description Service unavailable */
|
|
57831
|
+
503: {
|
|
57832
|
+
headers: {
|
|
57833
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
57834
|
+
"Retry-After"?: number;
|
|
57835
|
+
[name: string]: unknown;
|
|
57836
|
+
};
|
|
57837
|
+
content: {
|
|
57838
|
+
"application/json": {
|
|
57839
|
+
code: string;
|
|
57840
|
+
message: string;
|
|
57841
|
+
links?: {
|
|
57842
|
+
docs: string;
|
|
57843
|
+
schema: string;
|
|
57844
|
+
};
|
|
57845
|
+
issues?: {
|
|
57846
|
+
message: string;
|
|
57847
|
+
path?: (string | number)[];
|
|
57848
|
+
schema?: string;
|
|
57849
|
+
}[];
|
|
57850
|
+
retryable?: boolean;
|
|
57851
|
+
context?: unknown;
|
|
57852
|
+
};
|
|
57853
|
+
};
|
|
57854
|
+
};
|
|
57855
|
+
};
|
|
57856
|
+
};
|
|
57551
57857
|
getPartnerUsers: {
|
|
57552
57858
|
parameters: {
|
|
57553
57859
|
query?: {
|
|
@@ -61322,6 +61628,11 @@ export interface operations {
|
|
|
61322
61628
|
mode: "create" | "update" | "replace";
|
|
61323
61629
|
/** Format: uuid */
|
|
61324
61630
|
connectionId?: string;
|
|
61631
|
+
/**
|
|
61632
|
+
* @description Plaid environment for a new Item. Defaults to production. Existing reusable credentials retain their stored environment.
|
|
61633
|
+
* @enum {string}
|
|
61634
|
+
*/
|
|
61635
|
+
environment?: "sandbox" | "production";
|
|
61325
61636
|
};
|
|
61326
61637
|
};
|
|
61327
61638
|
};
|