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