@vrplatform/api 1.2.33-stage.729 → 1.2.33-stage.730
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/build/main/generated/v1.d.ts +185 -25
- package/build/main/generated/v1.js.map +1 -1
- package/build/module/generated/v1.d.ts +185 -25
- package/build/module/generated/v1.js.map +1 -1
- package/package.json +1 -1
- package/src/generated/v1.ts +185 -25
package/package.json
CHANGED
package/src/generated/v1.ts
CHANGED
|
@@ -23031,7 +23031,7 @@ export interface operations {
|
|
|
23031
23031
|
query?: {
|
|
23032
23032
|
startDate?: string;
|
|
23033
23033
|
endDate?: string;
|
|
23034
|
-
classificationKeys?: ("revenue" | "directCosts" | "operatingExpenses" | "nonOperating")[];
|
|
23034
|
+
classificationKeys?: ("revenue" | "directCosts" | "operatingExpenses" | "nonOperating" | "netOperatingIncome" | "netIncome")[];
|
|
23035
23035
|
categoryIds?: string[];
|
|
23036
23036
|
listingIds?: string[];
|
|
23037
23037
|
party?: "manager" | "owners";
|
|
@@ -23058,29 +23058,61 @@ export interface operations {
|
|
|
23058
23058
|
id: string;
|
|
23059
23059
|
title: string;
|
|
23060
23060
|
total: number;
|
|
23061
|
-
|
|
23061
|
+
subClassification?: {
|
|
23062
23062
|
id: string;
|
|
23063
23063
|
title: string;
|
|
23064
23064
|
total: number;
|
|
23065
23065
|
}[];
|
|
23066
23066
|
}[];
|
|
23067
|
-
|
|
23067
|
+
classification: {
|
|
23068
23068
|
id: string;
|
|
23069
23069
|
title: string;
|
|
23070
23070
|
values: {
|
|
23071
23071
|
id: string;
|
|
23072
23072
|
title: string;
|
|
23073
23073
|
total: number;
|
|
23074
|
-
|
|
23074
|
+
subClassification?: {
|
|
23075
23075
|
id: string;
|
|
23076
23076
|
title: string;
|
|
23077
23077
|
total: number;
|
|
23078
23078
|
}[];
|
|
23079
23079
|
}[];
|
|
23080
23080
|
total: number;
|
|
23081
|
+
classification?: unknown[];
|
|
23081
23082
|
}[];
|
|
23082
23083
|
total: number;
|
|
23083
23084
|
}[];
|
|
23085
|
+
netIncome?: {
|
|
23086
|
+
key: string;
|
|
23087
|
+
title: string;
|
|
23088
|
+
values: {
|
|
23089
|
+
id: string;
|
|
23090
|
+
title: string;
|
|
23091
|
+
total: number;
|
|
23092
|
+
subClassification?: {
|
|
23093
|
+
id: string;
|
|
23094
|
+
title: string;
|
|
23095
|
+
total: number;
|
|
23096
|
+
}[];
|
|
23097
|
+
}[];
|
|
23098
|
+
classification: {
|
|
23099
|
+
id: string;
|
|
23100
|
+
title: string;
|
|
23101
|
+
values: {
|
|
23102
|
+
id: string;
|
|
23103
|
+
title: string;
|
|
23104
|
+
total: number;
|
|
23105
|
+
subClassification?: {
|
|
23106
|
+
id: string;
|
|
23107
|
+
title: string;
|
|
23108
|
+
total: number;
|
|
23109
|
+
}[];
|
|
23110
|
+
}[];
|
|
23111
|
+
total: number;
|
|
23112
|
+
classification?: unknown[];
|
|
23113
|
+
}[];
|
|
23114
|
+
total: number;
|
|
23115
|
+
} | null;
|
|
23084
23116
|
};
|
|
23085
23117
|
};
|
|
23086
23118
|
};
|
|
@@ -23136,7 +23168,7 @@ export interface operations {
|
|
|
23136
23168
|
query?: {
|
|
23137
23169
|
startDate?: string;
|
|
23138
23170
|
endDate?: string;
|
|
23139
|
-
classificationKeys?: ("revenue" | "directCosts" | "operatingExpenses" | "nonOperating")[];
|
|
23171
|
+
classificationKeys?: ("revenue" | "directCosts" | "operatingExpenses" | "nonOperating" | "netOperatingIncome" | "netIncome")[];
|
|
23140
23172
|
categoryIds?: string[];
|
|
23141
23173
|
listingIds?: string[];
|
|
23142
23174
|
party?: "manager" | "owners";
|
|
@@ -23212,7 +23244,7 @@ export interface operations {
|
|
|
23212
23244
|
query?: {
|
|
23213
23245
|
startDate?: string;
|
|
23214
23246
|
endDate?: string;
|
|
23215
|
-
classificationKeys?: ("revenue" | "directCosts" | "operatingExpenses" | "nonOperating")[];
|
|
23247
|
+
classificationKeys?: ("revenue" | "directCosts" | "operatingExpenses" | "nonOperating" | "netOperatingIncome" | "netIncome")[];
|
|
23216
23248
|
categoryIds?: string[];
|
|
23217
23249
|
listingIds?: string[];
|
|
23218
23250
|
party?: "manager" | "owners";
|
|
@@ -23239,29 +23271,61 @@ export interface operations {
|
|
|
23239
23271
|
id: string;
|
|
23240
23272
|
title: string;
|
|
23241
23273
|
total: number;
|
|
23242
|
-
|
|
23274
|
+
subClassification?: {
|
|
23243
23275
|
id: string;
|
|
23244
23276
|
title: string;
|
|
23245
23277
|
total: number;
|
|
23246
23278
|
}[];
|
|
23247
23279
|
}[];
|
|
23248
|
-
|
|
23280
|
+
classification: {
|
|
23249
23281
|
id: string;
|
|
23250
23282
|
title: string;
|
|
23251
23283
|
values: {
|
|
23252
23284
|
id: string;
|
|
23253
23285
|
title: string;
|
|
23254
23286
|
total: number;
|
|
23255
|
-
|
|
23287
|
+
subClassification?: {
|
|
23256
23288
|
id: string;
|
|
23257
23289
|
title: string;
|
|
23258
23290
|
total: number;
|
|
23259
23291
|
}[];
|
|
23260
23292
|
}[];
|
|
23261
23293
|
total: number;
|
|
23294
|
+
classification?: unknown[];
|
|
23262
23295
|
}[];
|
|
23263
23296
|
total: number;
|
|
23264
23297
|
}[];
|
|
23298
|
+
netIncome?: {
|
|
23299
|
+
key: string;
|
|
23300
|
+
title: string;
|
|
23301
|
+
values: {
|
|
23302
|
+
id: string;
|
|
23303
|
+
title: string;
|
|
23304
|
+
total: number;
|
|
23305
|
+
subClassification?: {
|
|
23306
|
+
id: string;
|
|
23307
|
+
title: string;
|
|
23308
|
+
total: number;
|
|
23309
|
+
}[];
|
|
23310
|
+
}[];
|
|
23311
|
+
classification: {
|
|
23312
|
+
id: string;
|
|
23313
|
+
title: string;
|
|
23314
|
+
values: {
|
|
23315
|
+
id: string;
|
|
23316
|
+
title: string;
|
|
23317
|
+
total: number;
|
|
23318
|
+
subClassification?: {
|
|
23319
|
+
id: string;
|
|
23320
|
+
title: string;
|
|
23321
|
+
total: number;
|
|
23322
|
+
}[];
|
|
23323
|
+
}[];
|
|
23324
|
+
total: number;
|
|
23325
|
+
classification?: unknown[];
|
|
23326
|
+
}[];
|
|
23327
|
+
total: number;
|
|
23328
|
+
} | null;
|
|
23265
23329
|
};
|
|
23266
23330
|
};
|
|
23267
23331
|
};
|
|
@@ -23317,7 +23381,7 @@ export interface operations {
|
|
|
23317
23381
|
query?: {
|
|
23318
23382
|
startDate?: string;
|
|
23319
23383
|
endDate?: string;
|
|
23320
|
-
classificationKeys?: ("revenue" | "directCosts" | "operatingExpenses" | "nonOperating")[];
|
|
23384
|
+
classificationKeys?: ("revenue" | "directCosts" | "operatingExpenses" | "nonOperating" | "netOperatingIncome" | "netIncome")[];
|
|
23321
23385
|
categoryIds?: string[];
|
|
23322
23386
|
listingIds?: string[];
|
|
23323
23387
|
party?: "manager" | "owners";
|
|
@@ -23393,7 +23457,7 @@ export interface operations {
|
|
|
23393
23457
|
query?: {
|
|
23394
23458
|
startDate?: string;
|
|
23395
23459
|
endDate?: string;
|
|
23396
|
-
classificationKeys?: ("revenue" | "directCosts" | "operatingExpenses" | "nonOperating")[];
|
|
23460
|
+
classificationKeys?: ("revenue" | "directCosts" | "operatingExpenses" | "nonOperating" | "netOperatingIncome" | "netIncome")[];
|
|
23397
23461
|
categoryIds?: string[];
|
|
23398
23462
|
listingIds?: string[];
|
|
23399
23463
|
party?: "manager" | "owners";
|
|
@@ -23420,29 +23484,61 @@ export interface operations {
|
|
|
23420
23484
|
id: string;
|
|
23421
23485
|
title: string;
|
|
23422
23486
|
total: number;
|
|
23423
|
-
|
|
23487
|
+
subClassification?: {
|
|
23424
23488
|
id: string;
|
|
23425
23489
|
title: string;
|
|
23426
23490
|
total: number;
|
|
23427
23491
|
}[];
|
|
23428
23492
|
}[];
|
|
23429
|
-
|
|
23493
|
+
classification: {
|
|
23430
23494
|
id: string;
|
|
23431
23495
|
title: string;
|
|
23432
23496
|
values: {
|
|
23433
23497
|
id: string;
|
|
23434
23498
|
title: string;
|
|
23435
23499
|
total: number;
|
|
23436
|
-
|
|
23500
|
+
subClassification?: {
|
|
23437
23501
|
id: string;
|
|
23438
23502
|
title: string;
|
|
23439
23503
|
total: number;
|
|
23440
23504
|
}[];
|
|
23441
23505
|
}[];
|
|
23442
23506
|
total: number;
|
|
23507
|
+
classification?: unknown[];
|
|
23443
23508
|
}[];
|
|
23444
23509
|
total: number;
|
|
23445
23510
|
}[];
|
|
23511
|
+
netIncome?: {
|
|
23512
|
+
key: string;
|
|
23513
|
+
title: string;
|
|
23514
|
+
values: {
|
|
23515
|
+
id: string;
|
|
23516
|
+
title: string;
|
|
23517
|
+
total: number;
|
|
23518
|
+
subClassification?: {
|
|
23519
|
+
id: string;
|
|
23520
|
+
title: string;
|
|
23521
|
+
total: number;
|
|
23522
|
+
}[];
|
|
23523
|
+
}[];
|
|
23524
|
+
classification: {
|
|
23525
|
+
id: string;
|
|
23526
|
+
title: string;
|
|
23527
|
+
values: {
|
|
23528
|
+
id: string;
|
|
23529
|
+
title: string;
|
|
23530
|
+
total: number;
|
|
23531
|
+
subClassification?: {
|
|
23532
|
+
id: string;
|
|
23533
|
+
title: string;
|
|
23534
|
+
total: number;
|
|
23535
|
+
}[];
|
|
23536
|
+
}[];
|
|
23537
|
+
total: number;
|
|
23538
|
+
classification?: unknown[];
|
|
23539
|
+
}[];
|
|
23540
|
+
total: number;
|
|
23541
|
+
} | null;
|
|
23446
23542
|
};
|
|
23447
23543
|
};
|
|
23448
23544
|
};
|
|
@@ -23498,7 +23594,7 @@ export interface operations {
|
|
|
23498
23594
|
query?: {
|
|
23499
23595
|
startDate?: string;
|
|
23500
23596
|
endDate?: string;
|
|
23501
|
-
classificationKeys?: ("revenue" | "directCosts" | "operatingExpenses" | "nonOperating")[];
|
|
23597
|
+
classificationKeys?: ("revenue" | "directCosts" | "operatingExpenses" | "nonOperating" | "netOperatingIncome" | "netIncome")[];
|
|
23502
23598
|
categoryIds?: string[];
|
|
23503
23599
|
listingIds?: string[];
|
|
23504
23600
|
party?: "manager" | "owners";
|
|
@@ -23574,7 +23670,7 @@ export interface operations {
|
|
|
23574
23670
|
query?: {
|
|
23575
23671
|
startDate?: string;
|
|
23576
23672
|
endDate?: string;
|
|
23577
|
-
classificationKeys?: ("revenue" | "directCosts" | "operatingExpenses" | "nonOperating")[];
|
|
23673
|
+
classificationKeys?: ("revenue" | "directCosts" | "operatingExpenses" | "nonOperating" | "netOperatingIncome" | "netIncome")[];
|
|
23578
23674
|
categoryIds?: string[];
|
|
23579
23675
|
listingIds?: string[];
|
|
23580
23676
|
party?: "manager" | "owners";
|
|
@@ -23601,29 +23697,61 @@ export interface operations {
|
|
|
23601
23697
|
id: string;
|
|
23602
23698
|
title: string;
|
|
23603
23699
|
total: number;
|
|
23604
|
-
|
|
23700
|
+
subClassification?: {
|
|
23605
23701
|
id: string;
|
|
23606
23702
|
title: string;
|
|
23607
23703
|
total: number;
|
|
23608
23704
|
}[];
|
|
23609
23705
|
}[];
|
|
23610
|
-
|
|
23706
|
+
classification: {
|
|
23611
23707
|
id: string;
|
|
23612
23708
|
title: string;
|
|
23613
23709
|
values: {
|
|
23614
23710
|
id: string;
|
|
23615
23711
|
title: string;
|
|
23616
23712
|
total: number;
|
|
23617
|
-
|
|
23713
|
+
subClassification?: {
|
|
23618
23714
|
id: string;
|
|
23619
23715
|
title: string;
|
|
23620
23716
|
total: number;
|
|
23621
23717
|
}[];
|
|
23622
23718
|
}[];
|
|
23623
23719
|
total: number;
|
|
23720
|
+
classification?: unknown[];
|
|
23624
23721
|
}[];
|
|
23625
23722
|
total: number;
|
|
23626
23723
|
}[];
|
|
23724
|
+
netIncome?: {
|
|
23725
|
+
key: string;
|
|
23726
|
+
title: string;
|
|
23727
|
+
values: {
|
|
23728
|
+
id: string;
|
|
23729
|
+
title: string;
|
|
23730
|
+
total: number;
|
|
23731
|
+
subClassification?: {
|
|
23732
|
+
id: string;
|
|
23733
|
+
title: string;
|
|
23734
|
+
total: number;
|
|
23735
|
+
}[];
|
|
23736
|
+
}[];
|
|
23737
|
+
classification: {
|
|
23738
|
+
id: string;
|
|
23739
|
+
title: string;
|
|
23740
|
+
values: {
|
|
23741
|
+
id: string;
|
|
23742
|
+
title: string;
|
|
23743
|
+
total: number;
|
|
23744
|
+
subClassification?: {
|
|
23745
|
+
id: string;
|
|
23746
|
+
title: string;
|
|
23747
|
+
total: number;
|
|
23748
|
+
}[];
|
|
23749
|
+
}[];
|
|
23750
|
+
total: number;
|
|
23751
|
+
classification?: unknown[];
|
|
23752
|
+
}[];
|
|
23753
|
+
total: number;
|
|
23754
|
+
} | null;
|
|
23627
23755
|
};
|
|
23628
23756
|
};
|
|
23629
23757
|
};
|
|
@@ -23679,7 +23807,7 @@ export interface operations {
|
|
|
23679
23807
|
query?: {
|
|
23680
23808
|
startDate?: string;
|
|
23681
23809
|
endDate?: string;
|
|
23682
|
-
classificationKeys?: ("revenue" | "directCosts" | "operatingExpenses" | "nonOperating")[];
|
|
23810
|
+
classificationKeys?: ("revenue" | "directCosts" | "operatingExpenses" | "nonOperating" | "netOperatingIncome" | "netIncome")[];
|
|
23683
23811
|
categoryIds?: string[];
|
|
23684
23812
|
listingIds?: string[];
|
|
23685
23813
|
party?: "manager" | "owners";
|
|
@@ -23755,7 +23883,7 @@ export interface operations {
|
|
|
23755
23883
|
query?: {
|
|
23756
23884
|
startDate?: string;
|
|
23757
23885
|
endDate?: string;
|
|
23758
|
-
classificationKeys?: ("revenue" | "directCosts" | "operatingExpenses" | "nonOperating")[];
|
|
23886
|
+
classificationKeys?: ("revenue" | "directCosts" | "operatingExpenses" | "nonOperating" | "netOperatingIncome" | "netIncome")[];
|
|
23759
23887
|
categoryIds?: string[];
|
|
23760
23888
|
listingIds?: string[];
|
|
23761
23889
|
party?: "manager" | "owners";
|
|
@@ -23782,29 +23910,61 @@ export interface operations {
|
|
|
23782
23910
|
id: string;
|
|
23783
23911
|
title: string;
|
|
23784
23912
|
total: number;
|
|
23785
|
-
|
|
23913
|
+
subClassification?: {
|
|
23786
23914
|
id: string;
|
|
23787
23915
|
title: string;
|
|
23788
23916
|
total: number;
|
|
23789
23917
|
}[];
|
|
23790
23918
|
}[];
|
|
23791
|
-
|
|
23919
|
+
classification: {
|
|
23792
23920
|
id: string;
|
|
23793
23921
|
title: string;
|
|
23794
23922
|
values: {
|
|
23795
23923
|
id: string;
|
|
23796
23924
|
title: string;
|
|
23797
23925
|
total: number;
|
|
23798
|
-
|
|
23926
|
+
subClassification?: {
|
|
23799
23927
|
id: string;
|
|
23800
23928
|
title: string;
|
|
23801
23929
|
total: number;
|
|
23802
23930
|
}[];
|
|
23803
23931
|
}[];
|
|
23804
23932
|
total: number;
|
|
23933
|
+
classification?: unknown[];
|
|
23805
23934
|
}[];
|
|
23806
23935
|
total: number;
|
|
23807
23936
|
}[];
|
|
23937
|
+
netIncome?: {
|
|
23938
|
+
key: string;
|
|
23939
|
+
title: string;
|
|
23940
|
+
values: {
|
|
23941
|
+
id: string;
|
|
23942
|
+
title: string;
|
|
23943
|
+
total: number;
|
|
23944
|
+
subClassification?: {
|
|
23945
|
+
id: string;
|
|
23946
|
+
title: string;
|
|
23947
|
+
total: number;
|
|
23948
|
+
}[];
|
|
23949
|
+
}[];
|
|
23950
|
+
classification: {
|
|
23951
|
+
id: string;
|
|
23952
|
+
title: string;
|
|
23953
|
+
values: {
|
|
23954
|
+
id: string;
|
|
23955
|
+
title: string;
|
|
23956
|
+
total: number;
|
|
23957
|
+
subClassification?: {
|
|
23958
|
+
id: string;
|
|
23959
|
+
title: string;
|
|
23960
|
+
total: number;
|
|
23961
|
+
}[];
|
|
23962
|
+
}[];
|
|
23963
|
+
total: number;
|
|
23964
|
+
classification?: unknown[];
|
|
23965
|
+
}[];
|
|
23966
|
+
total: number;
|
|
23967
|
+
} | null;
|
|
23808
23968
|
};
|
|
23809
23969
|
};
|
|
23810
23970
|
};
|
|
@@ -23860,7 +24020,7 @@ export interface operations {
|
|
|
23860
24020
|
query?: {
|
|
23861
24021
|
startDate?: string;
|
|
23862
24022
|
endDate?: string;
|
|
23863
|
-
classificationKeys?: ("revenue" | "directCosts" | "operatingExpenses" | "nonOperating")[];
|
|
24023
|
+
classificationKeys?: ("revenue" | "directCosts" | "operatingExpenses" | "nonOperating" | "netOperatingIncome" | "netIncome")[];
|
|
23864
24024
|
categoryIds?: string[];
|
|
23865
24025
|
listingIds?: string[];
|
|
23866
24026
|
party?: "manager" | "owners";
|