@vrplatform/api 1.2.33-stage.776 → 1.2.33-stage.780

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.2.33-stage.776",
6
+ "version": "1.2.33-stage.780",
7
7
  "description": "",
8
8
  "main": "build/main/index.js",
9
9
  "module": "build/module/index.js",
@@ -410,6 +410,23 @@ export interface paths {
410
410
  patch: operations["initTeam"];
411
411
  trace?: never;
412
412
  };
413
+ "/teams/books-closing": {
414
+ parameters: {
415
+ query?: never;
416
+ header?: never;
417
+ path?: never;
418
+ cookie?: never;
419
+ };
420
+ get?: never;
421
+ /** @description Update team books closing date */
422
+ put: operations["updateTeamBooksClosing"];
423
+ post?: never;
424
+ delete?: never;
425
+ options?: never;
426
+ head?: never;
427
+ patch?: never;
428
+ trace?: never;
429
+ };
413
430
  "/teams/{id}/generate-demo-data": {
414
431
  parameters: {
415
432
  query?: never;
@@ -7835,6 +7852,7 @@ export interface operations {
7835
7852
  };
7836
7853
  }[];
7837
7854
  isGeneralLedger?: boolean | null;
7855
+ booksClosedAt?: string | null;
7838
7856
  logo?: string | null;
7839
7857
  statementStartAt?: string | null;
7840
7858
  members?: {
@@ -7946,6 +7964,7 @@ export interface operations {
7946
7964
  trialUntil?: string | null;
7947
7965
  cancelledAt?: string | null;
7948
7966
  isOnboarding?: boolean | null;
7967
+ booksClosedAt?: string | null;
7949
7968
  logo?: string | null;
7950
7969
  statementStartAt?: string | null;
7951
7970
  partnerId?: string | null;
@@ -8042,6 +8061,7 @@ export interface operations {
8042
8061
  };
8043
8062
  }[];
8044
8063
  isGeneralLedger?: boolean | null;
8064
+ booksClosedAt?: string | null;
8045
8065
  logo?: string | null;
8046
8066
  statementStartAt?: string | null;
8047
8067
  members?: {
@@ -8261,6 +8281,7 @@ export interface operations {
8261
8281
  };
8262
8282
  }[];
8263
8283
  isGeneralLedger?: boolean | null;
8284
+ booksClosedAt?: string | null;
8264
8285
  logo?: string | null;
8265
8286
  statementStartAt?: string | null;
8266
8287
  members?: {
@@ -8380,6 +8401,7 @@ export interface operations {
8380
8401
  trialUntil?: string | null;
8381
8402
  cancelledAt?: string | null;
8382
8403
  isOnboarding?: boolean | null;
8404
+ booksClosedAt?: string | null;
8383
8405
  logo?: string | null;
8384
8406
  statementStartAt?: string | null;
8385
8407
  generalLedger: {
@@ -8469,6 +8491,7 @@ export interface operations {
8469
8491
  };
8470
8492
  }[];
8471
8493
  isGeneralLedger?: boolean | null;
8494
+ booksClosedAt?: string | null;
8472
8495
  logo?: string | null;
8473
8496
  statementStartAt?: string | null;
8474
8497
  members?: {
@@ -8612,6 +8635,7 @@ export interface operations {
8612
8635
  };
8613
8636
  }[];
8614
8637
  isGeneralLedger?: boolean | null;
8638
+ booksClosedAt?: string | null;
8615
8639
  logo?: string | null;
8616
8640
  statementStartAt?: string | null;
8617
8641
  members?: {
@@ -8671,6 +8695,81 @@ export interface operations {
8671
8695
  };
8672
8696
  };
8673
8697
  };
8698
+ updateTeamBooksClosing: {
8699
+ parameters: {
8700
+ query?: never;
8701
+ header?: {
8702
+ "X-Team-Id"?: string;
8703
+ };
8704
+ path?: never;
8705
+ cookie?: never;
8706
+ };
8707
+ requestBody: {
8708
+ content: {
8709
+ "application/json": {
8710
+ booksClosedAt: string | null;
8711
+ };
8712
+ };
8713
+ };
8714
+ responses: {
8715
+ /** @description Successful response */
8716
+ 200: {
8717
+ headers: {
8718
+ [name: string]: unknown;
8719
+ };
8720
+ content: {
8721
+ "application/json": {
8722
+ booksClosedAt: string | null;
8723
+ };
8724
+ };
8725
+ };
8726
+ /** @description Invalid input data */
8727
+ 400: {
8728
+ headers: {
8729
+ [name: string]: unknown;
8730
+ };
8731
+ content: {
8732
+ "application/json": components["schemas"]["error.BAD_REQUEST"];
8733
+ };
8734
+ };
8735
+ /** @description Authorization not provided */
8736
+ 401: {
8737
+ headers: {
8738
+ [name: string]: unknown;
8739
+ };
8740
+ content: {
8741
+ "application/json": components["schemas"]["error.UNAUTHORIZED"];
8742
+ };
8743
+ };
8744
+ /** @description Insufficient access */
8745
+ 403: {
8746
+ headers: {
8747
+ [name: string]: unknown;
8748
+ };
8749
+ content: {
8750
+ "application/json": components["schemas"]["error.FORBIDDEN"];
8751
+ };
8752
+ };
8753
+ /** @description Not found */
8754
+ 404: {
8755
+ headers: {
8756
+ [name: string]: unknown;
8757
+ };
8758
+ content: {
8759
+ "application/json": components["schemas"]["error.NOT_FOUND"];
8760
+ };
8761
+ };
8762
+ /** @description Internal server error */
8763
+ 500: {
8764
+ headers: {
8765
+ [name: string]: unknown;
8766
+ };
8767
+ content: {
8768
+ "application/json": components["schemas"]["error.INTERNAL_SERVER_ERROR"];
8769
+ };
8770
+ };
8771
+ };
8772
+ };
8674
8773
  generateTeamData: {
8675
8774
  parameters: {
8676
8775
  query?: never;