@vrplatform/api 1.3.1-stage.4072 → 1.3.1-stage.4074

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