@vrplatform/api 1.3.1-stage.4545 → 1.3.1-stage.4553
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.
|
@@ -2289,6 +2289,23 @@ export interface paths {
|
|
|
2289
2289
|
patch?: never;
|
|
2290
2290
|
trace?: never;
|
|
2291
2291
|
};
|
|
2292
|
+
"/partner/owner-statements": {
|
|
2293
|
+
parameters: {
|
|
2294
|
+
query?: never;
|
|
2295
|
+
header?: never;
|
|
2296
|
+
path?: never;
|
|
2297
|
+
cookie?: never;
|
|
2298
|
+
};
|
|
2299
|
+
/** @description List VRT teams in one regional partition of the partner portfolio with owner statement counts by status. Select the partition with x-data-region. */
|
|
2300
|
+
get: operations["getPartnerOwnerStatements"];
|
|
2301
|
+
put?: never;
|
|
2302
|
+
post?: never;
|
|
2303
|
+
delete?: never;
|
|
2304
|
+
options?: never;
|
|
2305
|
+
head?: never;
|
|
2306
|
+
patch?: never;
|
|
2307
|
+
trace?: never;
|
|
2308
|
+
};
|
|
2292
2309
|
"/partner/users": {
|
|
2293
2310
|
parameters: {
|
|
2294
2311
|
query?: never;
|
|
@@ -2296,7 +2313,7 @@ export interface paths {
|
|
|
2296
2313
|
path?: never;
|
|
2297
2314
|
cookie?: never;
|
|
2298
2315
|
};
|
|
2299
|
-
/** @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. */
|
|
2316
|
+
/** @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. */
|
|
2300
2317
|
get: operations["getPartnerUsers"];
|
|
2301
2318
|
put?: never;
|
|
2302
2319
|
post?: never;
|
|
@@ -39772,6 +39789,179 @@ export interface operations {
|
|
|
39772
39789
|
};
|
|
39773
39790
|
};
|
|
39774
39791
|
};
|
|
39792
|
+
getPartnerOwnerStatements: {
|
|
39793
|
+
parameters: {
|
|
39794
|
+
query?: never;
|
|
39795
|
+
header?: {
|
|
39796
|
+
/** @description Selects the regional data partition for this partner portfolio read. It does not change the authenticated team context. */
|
|
39797
|
+
"x-data-region"?: "ap" | "crunchy" | "eu" | "hostaway" | "us";
|
|
39798
|
+
};
|
|
39799
|
+
path?: never;
|
|
39800
|
+
cookie?: never;
|
|
39801
|
+
};
|
|
39802
|
+
requestBody?: never;
|
|
39803
|
+
responses: {
|
|
39804
|
+
/** @description Successful response */
|
|
39805
|
+
200: {
|
|
39806
|
+
headers: {
|
|
39807
|
+
[name: string]: unknown;
|
|
39808
|
+
};
|
|
39809
|
+
content: {
|
|
39810
|
+
"application/json": {
|
|
39811
|
+
data: {
|
|
39812
|
+
/** Format: uuid */
|
|
39813
|
+
id: string;
|
|
39814
|
+
name: string;
|
|
39815
|
+
logo?: string;
|
|
39816
|
+
/**
|
|
39817
|
+
* Format: date-time
|
|
39818
|
+
* @description Timestamp string with date, time, milliseconds, and timezone.
|
|
39819
|
+
* @example 2024-01-15T12:30:00.000+00:00
|
|
39820
|
+
*/
|
|
39821
|
+
createdAt: string;
|
|
39822
|
+
ownerStatements: {
|
|
39823
|
+
draft: number;
|
|
39824
|
+
inReview: number;
|
|
39825
|
+
published: number;
|
|
39826
|
+
};
|
|
39827
|
+
}[];
|
|
39828
|
+
};
|
|
39829
|
+
};
|
|
39830
|
+
};
|
|
39831
|
+
/** @description Bad request */
|
|
39832
|
+
400: {
|
|
39833
|
+
headers: {
|
|
39834
|
+
[name: string]: unknown;
|
|
39835
|
+
};
|
|
39836
|
+
content: {
|
|
39837
|
+
"application/json": {
|
|
39838
|
+
code: string;
|
|
39839
|
+
message: string;
|
|
39840
|
+
links?: {
|
|
39841
|
+
docs: string;
|
|
39842
|
+
schema: string;
|
|
39843
|
+
};
|
|
39844
|
+
issues?: {
|
|
39845
|
+
message: string;
|
|
39846
|
+
path?: (string | number)[];
|
|
39847
|
+
schema?: string;
|
|
39848
|
+
}[];
|
|
39849
|
+
context?: unknown;
|
|
39850
|
+
};
|
|
39851
|
+
};
|
|
39852
|
+
};
|
|
39853
|
+
/** @description Unauthorized */
|
|
39854
|
+
401: {
|
|
39855
|
+
headers: {
|
|
39856
|
+
[name: string]: unknown;
|
|
39857
|
+
};
|
|
39858
|
+
content: {
|
|
39859
|
+
"application/json": {
|
|
39860
|
+
code: string;
|
|
39861
|
+
message: string;
|
|
39862
|
+
links?: {
|
|
39863
|
+
docs: string;
|
|
39864
|
+
schema: string;
|
|
39865
|
+
};
|
|
39866
|
+
issues?: {
|
|
39867
|
+
message: string;
|
|
39868
|
+
path?: (string | number)[];
|
|
39869
|
+
schema?: string;
|
|
39870
|
+
}[];
|
|
39871
|
+
context?: unknown;
|
|
39872
|
+
};
|
|
39873
|
+
};
|
|
39874
|
+
};
|
|
39875
|
+
/** @description Forbidden */
|
|
39876
|
+
403: {
|
|
39877
|
+
headers: {
|
|
39878
|
+
[name: string]: unknown;
|
|
39879
|
+
};
|
|
39880
|
+
content: {
|
|
39881
|
+
"application/json": {
|
|
39882
|
+
code: string;
|
|
39883
|
+
message: string;
|
|
39884
|
+
links?: {
|
|
39885
|
+
docs: string;
|
|
39886
|
+
schema: string;
|
|
39887
|
+
};
|
|
39888
|
+
issues?: {
|
|
39889
|
+
message: string;
|
|
39890
|
+
path?: (string | number)[];
|
|
39891
|
+
schema?: string;
|
|
39892
|
+
}[];
|
|
39893
|
+
context?: unknown;
|
|
39894
|
+
};
|
|
39895
|
+
};
|
|
39896
|
+
};
|
|
39897
|
+
/** @description Not found */
|
|
39898
|
+
404: {
|
|
39899
|
+
headers: {
|
|
39900
|
+
[name: string]: unknown;
|
|
39901
|
+
};
|
|
39902
|
+
content: {
|
|
39903
|
+
"application/json": {
|
|
39904
|
+
code: string;
|
|
39905
|
+
message: string;
|
|
39906
|
+
links?: {
|
|
39907
|
+
docs: string;
|
|
39908
|
+
schema: string;
|
|
39909
|
+
};
|
|
39910
|
+
issues?: {
|
|
39911
|
+
message: string;
|
|
39912
|
+
path?: (string | number)[];
|
|
39913
|
+
schema?: string;
|
|
39914
|
+
}[];
|
|
39915
|
+
context?: unknown;
|
|
39916
|
+
};
|
|
39917
|
+
};
|
|
39918
|
+
};
|
|
39919
|
+
/** @description Internal server error */
|
|
39920
|
+
500: {
|
|
39921
|
+
headers: {
|
|
39922
|
+
[name: string]: unknown;
|
|
39923
|
+
};
|
|
39924
|
+
content: {
|
|
39925
|
+
"application/json": {
|
|
39926
|
+
code: string;
|
|
39927
|
+
message: string;
|
|
39928
|
+
links?: {
|
|
39929
|
+
docs: string;
|
|
39930
|
+
schema: string;
|
|
39931
|
+
};
|
|
39932
|
+
issues?: {
|
|
39933
|
+
message: string;
|
|
39934
|
+
path?: (string | number)[];
|
|
39935
|
+
schema?: string;
|
|
39936
|
+
}[];
|
|
39937
|
+
context?: unknown;
|
|
39938
|
+
};
|
|
39939
|
+
};
|
|
39940
|
+
};
|
|
39941
|
+
/** @description Service unavailable */
|
|
39942
|
+
503: {
|
|
39943
|
+
headers: {
|
|
39944
|
+
[name: string]: unknown;
|
|
39945
|
+
};
|
|
39946
|
+
content: {
|
|
39947
|
+
"application/json": {
|
|
39948
|
+
code: string;
|
|
39949
|
+
message: string;
|
|
39950
|
+
links?: {
|
|
39951
|
+
docs: string;
|
|
39952
|
+
schema: string;
|
|
39953
|
+
};
|
|
39954
|
+
issues?: {
|
|
39955
|
+
message: string;
|
|
39956
|
+
path?: (string | number)[];
|
|
39957
|
+
schema?: string;
|
|
39958
|
+
}[];
|
|
39959
|
+
context?: unknown;
|
|
39960
|
+
};
|
|
39961
|
+
};
|
|
39962
|
+
};
|
|
39963
|
+
};
|
|
39964
|
+
};
|
|
39775
39965
|
getPartnerUsers: {
|
|
39776
39966
|
parameters: {
|
|
39777
39967
|
query?: {
|