@vrplatform/api 1.3.1-stage.2456 → 1.3.1-stage.2459
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.
|
@@ -3013,6 +3013,23 @@ export interface paths {
|
|
|
3013
3013
|
patch?: never;
|
|
3014
3014
|
trace?: never;
|
|
3015
3015
|
};
|
|
3016
|
+
"/teams/{id}/frontend-context": {
|
|
3017
|
+
parameters: {
|
|
3018
|
+
query?: never;
|
|
3019
|
+
header?: never;
|
|
3020
|
+
path?: never;
|
|
3021
|
+
cookie?: never;
|
|
3022
|
+
};
|
|
3023
|
+
/** @description Get frontend setup context for a team */
|
|
3024
|
+
get: operations["getTeamsByIdFrontendContext"];
|
|
3025
|
+
put?: never;
|
|
3026
|
+
post?: never;
|
|
3027
|
+
delete?: never;
|
|
3028
|
+
options?: never;
|
|
3029
|
+
head?: never;
|
|
3030
|
+
patch?: never;
|
|
3031
|
+
trace?: never;
|
|
3032
|
+
};
|
|
3016
3033
|
"/teams/{id}/generate-demo-data": {
|
|
3017
3034
|
parameters: {
|
|
3018
3035
|
query?: never;
|
|
@@ -10334,6 +10351,7 @@ export interface operations {
|
|
|
10334
10351
|
query?: {
|
|
10335
10352
|
tenantId?: string;
|
|
10336
10353
|
appId?: string;
|
|
10354
|
+
appCategory?: "paymentGateway" | "accountingPlatform" | "propertyManagementSystem" | "bookingChannel" | "service";
|
|
10337
10355
|
status?: "active" | "inactive";
|
|
10338
10356
|
isErrorState?: boolean;
|
|
10339
10357
|
currentSyncStatus?: "queued" | "started" | "completed" | "failed" | "canceled";
|
|
@@ -41876,6 +41894,114 @@ export interface operations {
|
|
|
41876
41894
|
};
|
|
41877
41895
|
};
|
|
41878
41896
|
};
|
|
41897
|
+
getTeamsByIdFrontendContext: {
|
|
41898
|
+
parameters: {
|
|
41899
|
+
query?: never;
|
|
41900
|
+
header?: never;
|
|
41901
|
+
path: {
|
|
41902
|
+
id: string;
|
|
41903
|
+
};
|
|
41904
|
+
cookie?: never;
|
|
41905
|
+
};
|
|
41906
|
+
requestBody?: never;
|
|
41907
|
+
responses: {
|
|
41908
|
+
/** @description Successful response */
|
|
41909
|
+
200: {
|
|
41910
|
+
headers: {
|
|
41911
|
+
[name: string]: unknown;
|
|
41912
|
+
};
|
|
41913
|
+
content: {
|
|
41914
|
+
"application/json": {
|
|
41915
|
+
hasReservations: boolean;
|
|
41916
|
+
hasPms: boolean;
|
|
41917
|
+
hasDeposit: boolean;
|
|
41918
|
+
hasListingNeedsReview: boolean;
|
|
41919
|
+
hasOwnerNeedsReview: boolean;
|
|
41920
|
+
};
|
|
41921
|
+
};
|
|
41922
|
+
};
|
|
41923
|
+
/** @description Bad request */
|
|
41924
|
+
400: {
|
|
41925
|
+
headers: {
|
|
41926
|
+
[name: string]: unknown;
|
|
41927
|
+
};
|
|
41928
|
+
content: {
|
|
41929
|
+
"application/json": {
|
|
41930
|
+
code: string;
|
|
41931
|
+
message: string;
|
|
41932
|
+
issues?: {
|
|
41933
|
+
message: string;
|
|
41934
|
+
}[];
|
|
41935
|
+
context?: unknown;
|
|
41936
|
+
};
|
|
41937
|
+
};
|
|
41938
|
+
};
|
|
41939
|
+
/** @description Unauthorized */
|
|
41940
|
+
401: {
|
|
41941
|
+
headers: {
|
|
41942
|
+
[name: string]: unknown;
|
|
41943
|
+
};
|
|
41944
|
+
content: {
|
|
41945
|
+
"application/json": {
|
|
41946
|
+
code: string;
|
|
41947
|
+
message: string;
|
|
41948
|
+
issues?: {
|
|
41949
|
+
message: string;
|
|
41950
|
+
}[];
|
|
41951
|
+
context?: unknown;
|
|
41952
|
+
};
|
|
41953
|
+
};
|
|
41954
|
+
};
|
|
41955
|
+
/** @description Forbidden */
|
|
41956
|
+
403: {
|
|
41957
|
+
headers: {
|
|
41958
|
+
[name: string]: unknown;
|
|
41959
|
+
};
|
|
41960
|
+
content: {
|
|
41961
|
+
"application/json": {
|
|
41962
|
+
code: string;
|
|
41963
|
+
message: string;
|
|
41964
|
+
issues?: {
|
|
41965
|
+
message: string;
|
|
41966
|
+
}[];
|
|
41967
|
+
context?: unknown;
|
|
41968
|
+
};
|
|
41969
|
+
};
|
|
41970
|
+
};
|
|
41971
|
+
/** @description Not found */
|
|
41972
|
+
404: {
|
|
41973
|
+
headers: {
|
|
41974
|
+
[name: string]: unknown;
|
|
41975
|
+
};
|
|
41976
|
+
content: {
|
|
41977
|
+
"application/json": {
|
|
41978
|
+
code: string;
|
|
41979
|
+
message: string;
|
|
41980
|
+
issues?: {
|
|
41981
|
+
message: string;
|
|
41982
|
+
}[];
|
|
41983
|
+
context?: unknown;
|
|
41984
|
+
};
|
|
41985
|
+
};
|
|
41986
|
+
};
|
|
41987
|
+
/** @description Internal server error */
|
|
41988
|
+
500: {
|
|
41989
|
+
headers: {
|
|
41990
|
+
[name: string]: unknown;
|
|
41991
|
+
};
|
|
41992
|
+
content: {
|
|
41993
|
+
"application/json": {
|
|
41994
|
+
code: string;
|
|
41995
|
+
message: string;
|
|
41996
|
+
issues?: {
|
|
41997
|
+
message: string;
|
|
41998
|
+
}[];
|
|
41999
|
+
context?: unknown;
|
|
42000
|
+
};
|
|
42001
|
+
};
|
|
42002
|
+
};
|
|
42003
|
+
};
|
|
42004
|
+
};
|
|
41879
42005
|
postTeamsByIdGenerateDemoData: {
|
|
41880
42006
|
parameters: {
|
|
41881
42007
|
query?: never;
|
|
@@ -43034,7 +43160,7 @@ export interface operations {
|
|
|
43034
43160
|
last4?: string;
|
|
43035
43161
|
isLocked?: boolean;
|
|
43036
43162
|
hasActiveJournalEntries?: boolean;
|
|
43037
|
-
/** @description connection id or 'null' */
|
|
43163
|
+
/** @description connection id or 'null' for manual transactions */
|
|
43038
43164
|
connectionId?: string;
|
|
43039
43165
|
/** @description Amount in cents, also accepts ranges like 100...200 */
|
|
43040
43166
|
amount?: string;
|
|
@@ -44138,7 +44264,7 @@ export interface operations {
|
|
|
44138
44264
|
last4?: string;
|
|
44139
44265
|
isLocked?: boolean;
|
|
44140
44266
|
hasActiveJournalEntries?: boolean;
|
|
44141
|
-
/** @description connection id or 'null' */
|
|
44267
|
+
/** @description connection id or 'null' for manual transactions */
|
|
44142
44268
|
connectionId?: string;
|
|
44143
44269
|
/** @description Amount in cents, also accepts ranges like 100...200 */
|
|
44144
44270
|
amount?: string;
|
|
@@ -44273,7 +44399,7 @@ export interface operations {
|
|
|
44273
44399
|
last4?: string;
|
|
44274
44400
|
isLocked?: boolean;
|
|
44275
44401
|
hasActiveJournalEntries?: boolean;
|
|
44276
|
-
/** @description connection id or 'null' */
|
|
44402
|
+
/** @description connection id or 'null' for manual transactions */
|
|
44277
44403
|
connectionId?: string;
|
|
44278
44404
|
/** @description Amount in cents, also accepts ranges like 100...200 */
|
|
44279
44405
|
amount?: string;
|
|
@@ -44408,7 +44534,7 @@ export interface operations {
|
|
|
44408
44534
|
last4?: string;
|
|
44409
44535
|
isLocked?: boolean;
|
|
44410
44536
|
hasActiveJournalEntries?: boolean;
|
|
44411
|
-
/** @description connection id or 'null' */
|
|
44537
|
+
/** @description connection id or 'null' for manual transactions */
|
|
44412
44538
|
connectionId?: string;
|
|
44413
44539
|
/** @description Amount in cents, also accepts ranges like 100...200 */
|
|
44414
44540
|
amount?: string;
|
|
@@ -44885,7 +45011,7 @@ export interface operations {
|
|
|
44885
45011
|
last4?: string;
|
|
44886
45012
|
isLocked?: boolean;
|
|
44887
45013
|
hasActiveJournalEntries?: boolean;
|
|
44888
|
-
/** @description connection id or 'null' */
|
|
45014
|
+
/** @description connection id or 'null' for manual transactions */
|
|
44889
45015
|
connectionId?: string;
|
|
44890
45016
|
/** @description Amount in cents, also accepts ranges like 100...200 */
|
|
44891
45017
|
amount?: string;
|
|
@@ -46744,7 +46870,7 @@ export interface operations {
|
|
|
46744
46870
|
last4?: string;
|
|
46745
46871
|
isLocked?: boolean;
|
|
46746
46872
|
hasActiveJournalEntries?: boolean;
|
|
46747
|
-
/** @description connection id or 'null' */
|
|
46873
|
+
/** @description connection id or 'null' for manual transactions */
|
|
46748
46874
|
connectionId?: string;
|
|
46749
46875
|
/** @description Amount in cents, also accepts ranges like 100...200 */
|
|
46750
46876
|
amount?: string;
|