@vrplatform/api 1.3.1-stage.2439 → 1.3.1-stage.2441

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.2439",
6
+ "version": "1.3.1-stage.2441",
7
7
  "description": "",
8
8
  "main": "build/main/index.js",
9
9
  "module": "build/module/index.js",
@@ -2926,24 +2926,6 @@ export interface paths {
2926
2926
  patch?: never;
2927
2927
  trace?: never;
2928
2928
  };
2929
- "/teams/opening-balances/credit-card": {
2930
- parameters: {
2931
- query?: never;
2932
- header?: never;
2933
- path?: never;
2934
- cookie?: never;
2935
- };
2936
- /** @description Retrieve opening balance operating credit card summary */
2937
- get: operations["getTeamsOpeningBalancesCreditCard"];
2938
- /** @description Update opening balance operating credit card */
2939
- put: operations["putTeamsOpeningBalancesCreditCard"];
2940
- post?: never;
2941
- delete?: never;
2942
- options?: never;
2943
- head?: never;
2944
- patch?: never;
2945
- trace?: never;
2946
- };
2947
2929
  "/teams/opening-balances/operating": {
2948
2930
  parameters: {
2949
2931
  query?: never;
@@ -2962,24 +2944,6 @@ export interface paths {
2962
2944
  patch?: never;
2963
2945
  trace?: never;
2964
2946
  };
2965
- "/teams/opening-balances/other": {
2966
- parameters: {
2967
- query?: never;
2968
- header?: never;
2969
- path?: never;
2970
- cookie?: never;
2971
- };
2972
- /** @description Retrieve opening balance operating other summary */
2973
- get: operations["getTeamsOpeningBalancesOther"];
2974
- /** @description Update opening balance operating other */
2975
- put: operations["putTeamsOpeningBalancesOther"];
2976
- post?: never;
2977
- delete?: never;
2978
- options?: never;
2979
- head?: never;
2980
- patch?: never;
2981
- trace?: never;
2982
- };
2983
2947
  "/teams/opening-balances/tax-payable": {
2984
2948
  parameters: {
2985
2949
  query?: never;
@@ -40601,239 +40565,6 @@ export interface operations {
40601
40565
  };
40602
40566
  };
40603
40567
  };
40604
- getTeamsOpeningBalancesCreditCard: {
40605
- parameters: {
40606
- query?: never;
40607
- header?: never;
40608
- path?: never;
40609
- cookie?: never;
40610
- };
40611
- requestBody?: never;
40612
- responses: {
40613
- /** @description Successful response */
40614
- 200: {
40615
- headers: {
40616
- [name: string]: unknown;
40617
- };
40618
- content: {
40619
- "application/json": {
40620
- /** @description Value in cents (100 = 1€) */
40621
- amount: number;
40622
- /** @description Currency in ISO 4217 format, will be converted to lowercase */
40623
- currency: string;
40624
- updatedAt?: string | null;
40625
- transactionId?: string | null;
40626
- account?: {
40627
- /** Format: uuid */
40628
- id: string;
40629
- name: string;
40630
- } | null;
40631
- };
40632
- };
40633
- };
40634
- /** @description Bad request */
40635
- 400: {
40636
- headers: {
40637
- [name: string]: unknown;
40638
- };
40639
- content: {
40640
- "application/json": {
40641
- code: string;
40642
- message: string;
40643
- issues?: {
40644
- message: string;
40645
- }[];
40646
- context?: unknown;
40647
- };
40648
- };
40649
- };
40650
- /** @description Unauthorized */
40651
- 401: {
40652
- headers: {
40653
- [name: string]: unknown;
40654
- };
40655
- content: {
40656
- "application/json": {
40657
- code: string;
40658
- message: string;
40659
- issues?: {
40660
- message: string;
40661
- }[];
40662
- context?: unknown;
40663
- };
40664
- };
40665
- };
40666
- /** @description Forbidden */
40667
- 403: {
40668
- headers: {
40669
- [name: string]: unknown;
40670
- };
40671
- content: {
40672
- "application/json": {
40673
- code: string;
40674
- message: string;
40675
- issues?: {
40676
- message: string;
40677
- }[];
40678
- context?: unknown;
40679
- };
40680
- };
40681
- };
40682
- /** @description Not found */
40683
- 404: {
40684
- headers: {
40685
- [name: string]: unknown;
40686
- };
40687
- content: {
40688
- "application/json": {
40689
- code: string;
40690
- message: string;
40691
- issues?: {
40692
- message: string;
40693
- }[];
40694
- context?: unknown;
40695
- };
40696
- };
40697
- };
40698
- /** @description Internal server error */
40699
- 500: {
40700
- headers: {
40701
- [name: string]: unknown;
40702
- };
40703
- content: {
40704
- "application/json": {
40705
- code: string;
40706
- message: string;
40707
- issues?: {
40708
- message: string;
40709
- }[];
40710
- context?: unknown;
40711
- };
40712
- };
40713
- };
40714
- };
40715
- };
40716
- putTeamsOpeningBalancesCreditCard: {
40717
- parameters: {
40718
- query?: never;
40719
- header?: never;
40720
- path?: never;
40721
- cookie?: never;
40722
- };
40723
- requestBody?: {
40724
- content: {
40725
- "application/json": {
40726
- accountId?: string | null;
40727
- /** @description Value in cents (100 = 1€) */
40728
- amount: number;
40729
- currency?: string | null;
40730
- };
40731
- };
40732
- };
40733
- responses: {
40734
- /** @description Successful response */
40735
- 200: {
40736
- headers: {
40737
- [name: string]: unknown;
40738
- };
40739
- content: {
40740
- "application/json": {
40741
- /** @description Value in cents (100 = 1€) */
40742
- amount: number;
40743
- /** @description Currency in ISO 4217 format, will be converted to lowercase */
40744
- currency: string;
40745
- updatedAt?: string | null;
40746
- transactionId?: string | null;
40747
- account?: {
40748
- /** Format: uuid */
40749
- id: string;
40750
- name: string;
40751
- } | null;
40752
- };
40753
- };
40754
- };
40755
- /** @description Bad request */
40756
- 400: {
40757
- headers: {
40758
- [name: string]: unknown;
40759
- };
40760
- content: {
40761
- "application/json": {
40762
- code: string;
40763
- message: string;
40764
- issues?: {
40765
- message: string;
40766
- }[];
40767
- context?: unknown;
40768
- };
40769
- };
40770
- };
40771
- /** @description Unauthorized */
40772
- 401: {
40773
- headers: {
40774
- [name: string]: unknown;
40775
- };
40776
- content: {
40777
- "application/json": {
40778
- code: string;
40779
- message: string;
40780
- issues?: {
40781
- message: string;
40782
- }[];
40783
- context?: unknown;
40784
- };
40785
- };
40786
- };
40787
- /** @description Forbidden */
40788
- 403: {
40789
- headers: {
40790
- [name: string]: unknown;
40791
- };
40792
- content: {
40793
- "application/json": {
40794
- code: string;
40795
- message: string;
40796
- issues?: {
40797
- message: string;
40798
- }[];
40799
- context?: unknown;
40800
- };
40801
- };
40802
- };
40803
- /** @description Not found */
40804
- 404: {
40805
- headers: {
40806
- [name: string]: unknown;
40807
- };
40808
- content: {
40809
- "application/json": {
40810
- code: string;
40811
- message: string;
40812
- issues?: {
40813
- message: string;
40814
- }[];
40815
- context?: unknown;
40816
- };
40817
- };
40818
- };
40819
- /** @description Internal server error */
40820
- 500: {
40821
- headers: {
40822
- [name: string]: unknown;
40823
- };
40824
- content: {
40825
- "application/json": {
40826
- code: string;
40827
- message: string;
40828
- issues?: {
40829
- message: string;
40830
- }[];
40831
- context?: unknown;
40832
- };
40833
- };
40834
- };
40835
- };
40836
- };
40837
40568
  getTeamsOpeningBalancesOperating: {
40838
40569
  parameters: {
40839
40570
  query?: never;
@@ -41093,239 +40824,6 @@ export interface operations {
41093
40824
  };
41094
40825
  };
41095
40826
  };
41096
- getTeamsOpeningBalancesOther: {
41097
- parameters: {
41098
- query?: never;
41099
- header?: never;
41100
- path?: never;
41101
- cookie?: never;
41102
- };
41103
- requestBody?: never;
41104
- responses: {
41105
- /** @description Successful response */
41106
- 200: {
41107
- headers: {
41108
- [name: string]: unknown;
41109
- };
41110
- content: {
41111
- "application/json": {
41112
- /** @description Value in cents (100 = 1€) */
41113
- amount: number;
41114
- /** @description Currency in ISO 4217 format, will be converted to lowercase */
41115
- currency: string;
41116
- updatedAt?: string | null;
41117
- transactionId?: string | null;
41118
- account?: {
41119
- /** Format: uuid */
41120
- id: string;
41121
- name: string;
41122
- } | null;
41123
- };
41124
- };
41125
- };
41126
- /** @description Bad request */
41127
- 400: {
41128
- headers: {
41129
- [name: string]: unknown;
41130
- };
41131
- content: {
41132
- "application/json": {
41133
- code: string;
41134
- message: string;
41135
- issues?: {
41136
- message: string;
41137
- }[];
41138
- context?: unknown;
41139
- };
41140
- };
41141
- };
41142
- /** @description Unauthorized */
41143
- 401: {
41144
- headers: {
41145
- [name: string]: unknown;
41146
- };
41147
- content: {
41148
- "application/json": {
41149
- code: string;
41150
- message: string;
41151
- issues?: {
41152
- message: string;
41153
- }[];
41154
- context?: unknown;
41155
- };
41156
- };
41157
- };
41158
- /** @description Forbidden */
41159
- 403: {
41160
- headers: {
41161
- [name: string]: unknown;
41162
- };
41163
- content: {
41164
- "application/json": {
41165
- code: string;
41166
- message: string;
41167
- issues?: {
41168
- message: string;
41169
- }[];
41170
- context?: unknown;
41171
- };
41172
- };
41173
- };
41174
- /** @description Not found */
41175
- 404: {
41176
- headers: {
41177
- [name: string]: unknown;
41178
- };
41179
- content: {
41180
- "application/json": {
41181
- code: string;
41182
- message: string;
41183
- issues?: {
41184
- message: string;
41185
- }[];
41186
- context?: unknown;
41187
- };
41188
- };
41189
- };
41190
- /** @description Internal server error */
41191
- 500: {
41192
- headers: {
41193
- [name: string]: unknown;
41194
- };
41195
- content: {
41196
- "application/json": {
41197
- code: string;
41198
- message: string;
41199
- issues?: {
41200
- message: string;
41201
- }[];
41202
- context?: unknown;
41203
- };
41204
- };
41205
- };
41206
- };
41207
- };
41208
- putTeamsOpeningBalancesOther: {
41209
- parameters: {
41210
- query?: never;
41211
- header?: never;
41212
- path?: never;
41213
- cookie?: never;
41214
- };
41215
- requestBody?: {
41216
- content: {
41217
- "application/json": {
41218
- accountId?: string | null;
41219
- /** @description Value in cents (100 = 1€) */
41220
- amount: number;
41221
- currency?: string | null;
41222
- };
41223
- };
41224
- };
41225
- responses: {
41226
- /** @description Successful response */
41227
- 200: {
41228
- headers: {
41229
- [name: string]: unknown;
41230
- };
41231
- content: {
41232
- "application/json": {
41233
- /** @description Value in cents (100 = 1€) */
41234
- amount: number;
41235
- /** @description Currency in ISO 4217 format, will be converted to lowercase */
41236
- currency: string;
41237
- updatedAt?: string | null;
41238
- transactionId?: string | null;
41239
- account?: {
41240
- /** Format: uuid */
41241
- id: string;
41242
- name: string;
41243
- } | null;
41244
- };
41245
- };
41246
- };
41247
- /** @description Bad request */
41248
- 400: {
41249
- headers: {
41250
- [name: string]: unknown;
41251
- };
41252
- content: {
41253
- "application/json": {
41254
- code: string;
41255
- message: string;
41256
- issues?: {
41257
- message: string;
41258
- }[];
41259
- context?: unknown;
41260
- };
41261
- };
41262
- };
41263
- /** @description Unauthorized */
41264
- 401: {
41265
- headers: {
41266
- [name: string]: unknown;
41267
- };
41268
- content: {
41269
- "application/json": {
41270
- code: string;
41271
- message: string;
41272
- issues?: {
41273
- message: string;
41274
- }[];
41275
- context?: unknown;
41276
- };
41277
- };
41278
- };
41279
- /** @description Forbidden */
41280
- 403: {
41281
- headers: {
41282
- [name: string]: unknown;
41283
- };
41284
- content: {
41285
- "application/json": {
41286
- code: string;
41287
- message: string;
41288
- issues?: {
41289
- message: string;
41290
- }[];
41291
- context?: unknown;
41292
- };
41293
- };
41294
- };
41295
- /** @description Not found */
41296
- 404: {
41297
- headers: {
41298
- [name: string]: unknown;
41299
- };
41300
- content: {
41301
- "application/json": {
41302
- code: string;
41303
- message: string;
41304
- issues?: {
41305
- message: string;
41306
- }[];
41307
- context?: unknown;
41308
- };
41309
- };
41310
- };
41311
- /** @description Internal server error */
41312
- 500: {
41313
- headers: {
41314
- [name: string]: unknown;
41315
- };
41316
- content: {
41317
- "application/json": {
41318
- code: string;
41319
- message: string;
41320
- issues?: {
41321
- message: string;
41322
- }[];
41323
- context?: unknown;
41324
- };
41325
- };
41326
- };
41327
- };
41328
- };
41329
40827
  getTeamsOpeningBalancesTaxPayable: {
41330
40828
  parameters: {
41331
40829
  query?: never;