@vrplatform/api 1.3.1-stage.4072 → 1.3.1-stage.4073
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.
|
@@ -3199,6 +3199,24 @@ export interface paths {
|
|
|
3199
3199
|
patch?: never;
|
|
3200
3200
|
trace?: never;
|
|
3201
3201
|
};
|
|
3202
|
+
"/teams/guides/onboarding": {
|
|
3203
|
+
parameters: {
|
|
3204
|
+
query?: never;
|
|
3205
|
+
header?: never;
|
|
3206
|
+
path?: never;
|
|
3207
|
+
cookie?: never;
|
|
3208
|
+
};
|
|
3209
|
+
/** @description Get the current team VRPilot Onboarding Guide state */
|
|
3210
|
+
get: operations["getTeamsGuidesOnboarding"];
|
|
3211
|
+
/** @description Update the current team VRPilot Onboarding Guide state */
|
|
3212
|
+
put: operations["putTeamsGuidesOnboarding"];
|
|
3213
|
+
post?: never;
|
|
3214
|
+
delete?: never;
|
|
3215
|
+
options?: never;
|
|
3216
|
+
head?: never;
|
|
3217
|
+
patch?: never;
|
|
3218
|
+
trace?: never;
|
|
3219
|
+
};
|
|
3202
3220
|
"/teams/issues": {
|
|
3203
3221
|
parameters: {
|
|
3204
3222
|
query?: never;
|
|
@@ -59689,6 +59707,318 @@ export interface operations {
|
|
|
59689
59707
|
};
|
|
59690
59708
|
};
|
|
59691
59709
|
};
|
|
59710
|
+
getTeamsGuidesOnboarding: {
|
|
59711
|
+
parameters: {
|
|
59712
|
+
query?: never;
|
|
59713
|
+
header?: never;
|
|
59714
|
+
path?: never;
|
|
59715
|
+
cookie?: never;
|
|
59716
|
+
};
|
|
59717
|
+
requestBody?: never;
|
|
59718
|
+
responses: {
|
|
59719
|
+
/** @description Successful response */
|
|
59720
|
+
200: {
|
|
59721
|
+
headers: {
|
|
59722
|
+
[name: string]: unknown;
|
|
59723
|
+
};
|
|
59724
|
+
content: {
|
|
59725
|
+
"application/json": {
|
|
59726
|
+
status: ("skipped" | "completed") | null;
|
|
59727
|
+
welcome: ("skipped" | "completed") | null;
|
|
59728
|
+
connect_pms: ("skipped" | "completed") | null;
|
|
59729
|
+
connect_ai_agents: ("skipped" | "completed") | null;
|
|
59730
|
+
connect_bank_accounts: ("skipped" | "completed") | null;
|
|
59731
|
+
connect_ramp: ("skipped" | "completed") | null;
|
|
59732
|
+
connect_payment_processors: ("skipped" | "completed") | null;
|
|
59733
|
+
connect_airbnb: ("skipped" | "completed") | null;
|
|
59734
|
+
add_owners: ("skipped" | "completed") | null;
|
|
59735
|
+
reporting_preferences: ("skipped" | "completed") | null;
|
|
59736
|
+
fees_and_commissions: ("skipped" | "completed") | null;
|
|
59737
|
+
owner_statement_template: ("skipped" | "completed") | null;
|
|
59738
|
+
opening_balances: ("skipped" | "completed") | null;
|
|
59739
|
+
add_workflows: ("skipped" | "completed") | null;
|
|
59740
|
+
validate_and_go_live: ("skipped" | "completed") | null;
|
|
59741
|
+
};
|
|
59742
|
+
};
|
|
59743
|
+
};
|
|
59744
|
+
/** @description Bad request */
|
|
59745
|
+
400: {
|
|
59746
|
+
headers: {
|
|
59747
|
+
[name: string]: unknown;
|
|
59748
|
+
};
|
|
59749
|
+
content: {
|
|
59750
|
+
"application/json": {
|
|
59751
|
+
code: string;
|
|
59752
|
+
message: string;
|
|
59753
|
+
links?: {
|
|
59754
|
+
docs: string;
|
|
59755
|
+
schema: string;
|
|
59756
|
+
};
|
|
59757
|
+
issues?: {
|
|
59758
|
+
message: string;
|
|
59759
|
+
path?: (string | number)[];
|
|
59760
|
+
schema?: string;
|
|
59761
|
+
}[];
|
|
59762
|
+
context?: unknown;
|
|
59763
|
+
};
|
|
59764
|
+
};
|
|
59765
|
+
};
|
|
59766
|
+
/** @description Unauthorized */
|
|
59767
|
+
401: {
|
|
59768
|
+
headers: {
|
|
59769
|
+
[name: string]: unknown;
|
|
59770
|
+
};
|
|
59771
|
+
content: {
|
|
59772
|
+
"application/json": {
|
|
59773
|
+
code: string;
|
|
59774
|
+
message: string;
|
|
59775
|
+
links?: {
|
|
59776
|
+
docs: string;
|
|
59777
|
+
schema: string;
|
|
59778
|
+
};
|
|
59779
|
+
issues?: {
|
|
59780
|
+
message: string;
|
|
59781
|
+
path?: (string | number)[];
|
|
59782
|
+
schema?: string;
|
|
59783
|
+
}[];
|
|
59784
|
+
context?: unknown;
|
|
59785
|
+
};
|
|
59786
|
+
};
|
|
59787
|
+
};
|
|
59788
|
+
/** @description Forbidden */
|
|
59789
|
+
403: {
|
|
59790
|
+
headers: {
|
|
59791
|
+
[name: string]: unknown;
|
|
59792
|
+
};
|
|
59793
|
+
content: {
|
|
59794
|
+
"application/json": {
|
|
59795
|
+
code: string;
|
|
59796
|
+
message: string;
|
|
59797
|
+
links?: {
|
|
59798
|
+
docs: string;
|
|
59799
|
+
schema: string;
|
|
59800
|
+
};
|
|
59801
|
+
issues?: {
|
|
59802
|
+
message: string;
|
|
59803
|
+
path?: (string | number)[];
|
|
59804
|
+
schema?: string;
|
|
59805
|
+
}[];
|
|
59806
|
+
context?: unknown;
|
|
59807
|
+
};
|
|
59808
|
+
};
|
|
59809
|
+
};
|
|
59810
|
+
/** @description Not found */
|
|
59811
|
+
404: {
|
|
59812
|
+
headers: {
|
|
59813
|
+
[name: string]: unknown;
|
|
59814
|
+
};
|
|
59815
|
+
content: {
|
|
59816
|
+
"application/json": {
|
|
59817
|
+
code: string;
|
|
59818
|
+
message: string;
|
|
59819
|
+
links?: {
|
|
59820
|
+
docs: string;
|
|
59821
|
+
schema: string;
|
|
59822
|
+
};
|
|
59823
|
+
issues?: {
|
|
59824
|
+
message: string;
|
|
59825
|
+
path?: (string | number)[];
|
|
59826
|
+
schema?: string;
|
|
59827
|
+
}[];
|
|
59828
|
+
context?: unknown;
|
|
59829
|
+
};
|
|
59830
|
+
};
|
|
59831
|
+
};
|
|
59832
|
+
/** @description Internal server error */
|
|
59833
|
+
500: {
|
|
59834
|
+
headers: {
|
|
59835
|
+
[name: string]: unknown;
|
|
59836
|
+
};
|
|
59837
|
+
content: {
|
|
59838
|
+
"application/json": {
|
|
59839
|
+
code: string;
|
|
59840
|
+
message: string;
|
|
59841
|
+
links?: {
|
|
59842
|
+
docs: string;
|
|
59843
|
+
schema: string;
|
|
59844
|
+
};
|
|
59845
|
+
issues?: {
|
|
59846
|
+
message: string;
|
|
59847
|
+
path?: (string | number)[];
|
|
59848
|
+
schema?: string;
|
|
59849
|
+
}[];
|
|
59850
|
+
context?: unknown;
|
|
59851
|
+
};
|
|
59852
|
+
};
|
|
59853
|
+
};
|
|
59854
|
+
};
|
|
59855
|
+
};
|
|
59856
|
+
putTeamsGuidesOnboarding: {
|
|
59857
|
+
parameters: {
|
|
59858
|
+
query?: never;
|
|
59859
|
+
header?: never;
|
|
59860
|
+
path?: never;
|
|
59861
|
+
cookie?: never;
|
|
59862
|
+
};
|
|
59863
|
+
requestBody?: {
|
|
59864
|
+
content: {
|
|
59865
|
+
"application/json": {
|
|
59866
|
+
status?: ("skipped" | "completed") | null;
|
|
59867
|
+
welcome?: ("skipped" | "completed") | null;
|
|
59868
|
+
connect_pms?: ("skipped" | "completed") | null;
|
|
59869
|
+
connect_ai_agents?: ("skipped" | "completed") | null;
|
|
59870
|
+
connect_bank_accounts?: ("skipped" | "completed") | null;
|
|
59871
|
+
connect_ramp?: ("skipped" | "completed") | null;
|
|
59872
|
+
connect_payment_processors?: ("skipped" | "completed") | null;
|
|
59873
|
+
connect_airbnb?: ("skipped" | "completed") | null;
|
|
59874
|
+
add_owners?: ("skipped" | "completed") | null;
|
|
59875
|
+
reporting_preferences?: ("skipped" | "completed") | null;
|
|
59876
|
+
fees_and_commissions?: ("skipped" | "completed") | null;
|
|
59877
|
+
owner_statement_template?: ("skipped" | "completed") | null;
|
|
59878
|
+
opening_balances?: ("skipped" | "completed") | null;
|
|
59879
|
+
add_workflows?: ("skipped" | "completed") | null;
|
|
59880
|
+
validate_and_go_live?: ("skipped" | "completed") | null;
|
|
59881
|
+
};
|
|
59882
|
+
};
|
|
59883
|
+
};
|
|
59884
|
+
responses: {
|
|
59885
|
+
/** @description Successful response */
|
|
59886
|
+
200: {
|
|
59887
|
+
headers: {
|
|
59888
|
+
[name: string]: unknown;
|
|
59889
|
+
};
|
|
59890
|
+
content: {
|
|
59891
|
+
"application/json": {
|
|
59892
|
+
status: ("skipped" | "completed") | null;
|
|
59893
|
+
welcome: ("skipped" | "completed") | null;
|
|
59894
|
+
connect_pms: ("skipped" | "completed") | null;
|
|
59895
|
+
connect_ai_agents: ("skipped" | "completed") | null;
|
|
59896
|
+
connect_bank_accounts: ("skipped" | "completed") | null;
|
|
59897
|
+
connect_ramp: ("skipped" | "completed") | null;
|
|
59898
|
+
connect_payment_processors: ("skipped" | "completed") | null;
|
|
59899
|
+
connect_airbnb: ("skipped" | "completed") | null;
|
|
59900
|
+
add_owners: ("skipped" | "completed") | null;
|
|
59901
|
+
reporting_preferences: ("skipped" | "completed") | null;
|
|
59902
|
+
fees_and_commissions: ("skipped" | "completed") | null;
|
|
59903
|
+
owner_statement_template: ("skipped" | "completed") | null;
|
|
59904
|
+
opening_balances: ("skipped" | "completed") | null;
|
|
59905
|
+
add_workflows: ("skipped" | "completed") | null;
|
|
59906
|
+
validate_and_go_live: ("skipped" | "completed") | null;
|
|
59907
|
+
};
|
|
59908
|
+
};
|
|
59909
|
+
};
|
|
59910
|
+
/** @description Bad request */
|
|
59911
|
+
400: {
|
|
59912
|
+
headers: {
|
|
59913
|
+
[name: string]: unknown;
|
|
59914
|
+
};
|
|
59915
|
+
content: {
|
|
59916
|
+
"application/json": {
|
|
59917
|
+
code: string;
|
|
59918
|
+
message: string;
|
|
59919
|
+
links?: {
|
|
59920
|
+
docs: string;
|
|
59921
|
+
schema: string;
|
|
59922
|
+
};
|
|
59923
|
+
issues?: {
|
|
59924
|
+
message: string;
|
|
59925
|
+
path?: (string | number)[];
|
|
59926
|
+
schema?: string;
|
|
59927
|
+
}[];
|
|
59928
|
+
context?: unknown;
|
|
59929
|
+
};
|
|
59930
|
+
};
|
|
59931
|
+
};
|
|
59932
|
+
/** @description Unauthorized */
|
|
59933
|
+
401: {
|
|
59934
|
+
headers: {
|
|
59935
|
+
[name: string]: unknown;
|
|
59936
|
+
};
|
|
59937
|
+
content: {
|
|
59938
|
+
"application/json": {
|
|
59939
|
+
code: string;
|
|
59940
|
+
message: string;
|
|
59941
|
+
links?: {
|
|
59942
|
+
docs: string;
|
|
59943
|
+
schema: string;
|
|
59944
|
+
};
|
|
59945
|
+
issues?: {
|
|
59946
|
+
message: string;
|
|
59947
|
+
path?: (string | number)[];
|
|
59948
|
+
schema?: string;
|
|
59949
|
+
}[];
|
|
59950
|
+
context?: unknown;
|
|
59951
|
+
};
|
|
59952
|
+
};
|
|
59953
|
+
};
|
|
59954
|
+
/** @description Forbidden */
|
|
59955
|
+
403: {
|
|
59956
|
+
headers: {
|
|
59957
|
+
[name: string]: unknown;
|
|
59958
|
+
};
|
|
59959
|
+
content: {
|
|
59960
|
+
"application/json": {
|
|
59961
|
+
code: string;
|
|
59962
|
+
message: string;
|
|
59963
|
+
links?: {
|
|
59964
|
+
docs: string;
|
|
59965
|
+
schema: string;
|
|
59966
|
+
};
|
|
59967
|
+
issues?: {
|
|
59968
|
+
message: string;
|
|
59969
|
+
path?: (string | number)[];
|
|
59970
|
+
schema?: string;
|
|
59971
|
+
}[];
|
|
59972
|
+
context?: unknown;
|
|
59973
|
+
};
|
|
59974
|
+
};
|
|
59975
|
+
};
|
|
59976
|
+
/** @description Not found */
|
|
59977
|
+
404: {
|
|
59978
|
+
headers: {
|
|
59979
|
+
[name: string]: unknown;
|
|
59980
|
+
};
|
|
59981
|
+
content: {
|
|
59982
|
+
"application/json": {
|
|
59983
|
+
code: string;
|
|
59984
|
+
message: string;
|
|
59985
|
+
links?: {
|
|
59986
|
+
docs: string;
|
|
59987
|
+
schema: string;
|
|
59988
|
+
};
|
|
59989
|
+
issues?: {
|
|
59990
|
+
message: string;
|
|
59991
|
+
path?: (string | number)[];
|
|
59992
|
+
schema?: string;
|
|
59993
|
+
}[];
|
|
59994
|
+
context?: unknown;
|
|
59995
|
+
};
|
|
59996
|
+
};
|
|
59997
|
+
};
|
|
59998
|
+
/** @description Internal server error */
|
|
59999
|
+
500: {
|
|
60000
|
+
headers: {
|
|
60001
|
+
[name: string]: unknown;
|
|
60002
|
+
};
|
|
60003
|
+
content: {
|
|
60004
|
+
"application/json": {
|
|
60005
|
+
code: string;
|
|
60006
|
+
message: string;
|
|
60007
|
+
links?: {
|
|
60008
|
+
docs: string;
|
|
60009
|
+
schema: string;
|
|
60010
|
+
};
|
|
60011
|
+
issues?: {
|
|
60012
|
+
message: string;
|
|
60013
|
+
path?: (string | number)[];
|
|
60014
|
+
schema?: string;
|
|
60015
|
+
}[];
|
|
60016
|
+
context?: unknown;
|
|
60017
|
+
};
|
|
60018
|
+
};
|
|
60019
|
+
};
|
|
60020
|
+
};
|
|
60021
|
+
};
|
|
59692
60022
|
getTeamsIssues: {
|
|
59693
60023
|
parameters: {
|
|
59694
60024
|
query?: {
|
|
@@ -64057,6 +64387,7 @@ export interface operations {
|
|
|
64057
64387
|
hasOwners: boolean;
|
|
64058
64388
|
hasOwnerNeedsReview: boolean;
|
|
64059
64389
|
ownerNeedsReviewId: string | null;
|
|
64390
|
+
guideOnboardingStatus: ("skipped" | "completed") | null;
|
|
64060
64391
|
};
|
|
64061
64392
|
};
|
|
64062
64393
|
};
|