@vrplatform/api 1.3.1-stage.4545 → 1.3.1-stage.4550

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