@vrplatform/api 1.3.1-2486 → 1.3.1-2494

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-2486",
6
+ "version": "1.3.1-2494",
7
7
  "description": "",
8
8
  "main": "build/main/index.js",
9
9
  "module": "build/module/index.js",
@@ -3108,7 +3108,7 @@ export interface paths {
3108
3108
  };
3109
3109
  get?: never;
3110
3110
  put?: never;
3111
- /** @description Upload an expense attachment as multipart/form-data. The returned staged attachment id can be passed in attachmentIds when creating or updating an expense transaction. */
3111
+ /** @description Upload an expense attachment (staged) */
3112
3112
  post: operations["postTransactionAttachments"];
3113
3113
  delete?: never;
3114
3114
  options?: never;
@@ -3126,11 +3126,11 @@ export interface paths {
3126
3126
  get?: never;
3127
3127
  put?: never;
3128
3128
  post?: never;
3129
- /** @description Delete an expense attachment. This removes staged attachments and attachments already linked to expense transactions. */
3129
+ /** @description Delete an expense attachment */
3130
3130
  delete: operations["deleteTransactionAttachmentsByAttachmentId"];
3131
3131
  options?: never;
3132
3132
  head?: never;
3133
- /** @description Update attachment visibility. isOwnerAccessible controls whether owners can see the file on owner statement details. */
3133
+ /** @description Update an expense attachment */
3134
3134
  patch: operations["patchTransactionAttachmentsByAttachmentId"];
3135
3135
  trace?: never;
3136
3136
  };
@@ -3161,7 +3161,7 @@ export interface paths {
3161
3161
  /** @description Transactions List */
3162
3162
  get: operations["getTransactions"];
3163
3163
  put?: never;
3164
- /** @description Create a transaction. For expense attachments, first upload each file with POST /transaction-attachments, then pass the returned ids in attachmentIds. Attachments are only supported for expense transactions. */
3164
+ /** @description Create an transaction */
3165
3165
  post: operations["postTransactions"];
3166
3166
  delete?: never;
3167
3167
  options?: never;
@@ -3419,7 +3419,7 @@ export interface paths {
3419
3419
  };
3420
3420
  /** @description Transactions List */
3421
3421
  get: operations["getTransactionsById"];
3422
- /** @description Update a transaction by ID. For expense attachments, pass attachmentIds to replace the attached set. Omit attachmentIds to keep current attachments. Attachments are only supported for expense transactions. */
3422
+ /** @description Update an transaction by ID */
3423
3423
  put: operations["putTransactionsById"];
3424
3424
  post?: never;
3425
3425
  /** @description Delete an transaction by ID */
@@ -4753,7 +4753,6 @@ export interface operations {
4753
4753
  } | null;
4754
4754
  } | null;
4755
4755
  }[];
4756
- /** @description Expense attachment IDs returned by POST /transaction-attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
4757
4756
  attachmentIds?: string[] | null;
4758
4757
  recurringTemplateId?: string | null;
4759
4758
  matchBankAccountLast4?: string | null;
@@ -7713,7 +7712,6 @@ export interface operations {
7713
7712
  matchReservationStripeGuestRef?: string | null;
7714
7713
  matchLineTypeClassification?: string | null;
7715
7714
  }[];
7716
- /** @description Expense attachment IDs returned by POST /transaction-attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
7717
7715
  attachmentIds?: string[] | null;
7718
7716
  payment?: {
7719
7717
  bankRecordIds: string[];
@@ -8263,7 +8261,6 @@ export interface operations {
8263
8261
  matchReservationStripeGuestRef?: string | null;
8264
8262
  matchLineTypeClassification?: string | null;
8265
8263
  }[];
8266
- /** @description Expense attachment IDs returned by POST /transaction-attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
8267
8264
  attachmentIds?: string[] | null;
8268
8265
  payment?: {
8269
8266
  bankRecordIds: string[];
@@ -9077,7 +9074,6 @@ export interface operations {
9077
9074
  matchReservationStripeGuestRef?: string | null;
9078
9075
  matchLineTypeClassification?: string | null;
9079
9076
  }[];
9080
- /** @description Expense attachment IDs returned by POST /transaction-attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
9081
9077
  attachmentIds?: string[] | null;
9082
9078
  payment?: {
9083
9079
  bankRecordIds: string[];
@@ -9836,7 +9832,6 @@ export interface operations {
9836
9832
  matchReservationStripeGuestRef?: string | null;
9837
9833
  matchLineTypeClassification?: string | null;
9838
9834
  }[];
9839
- /** @description Expense attachment IDs returned by POST /transaction-attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
9840
9835
  attachmentIds?: string[] | null;
9841
9836
  payment?: {
9842
9837
  bankRecordIds: string[];
@@ -15732,8 +15727,6 @@ export interface operations {
15732
15727
  ids?: string;
15733
15728
  search?: string;
15734
15729
  contactId?: string;
15735
- /** @description Filter listings by ownership period ID. */
15736
- ownershipPeriodId?: string;
15737
15730
  /** @description Comma-separated listing short refs. */
15738
15731
  shortRefs?: string;
15739
15732
  /** @description Filter listings by whether they currently have an active ownership period. */
@@ -15789,18 +15782,8 @@ export interface operations {
15789
15782
  /** @description Value in cents (100 = 1€) */
15790
15783
  reserve: number;
15791
15784
  members: {
15785
+ contactId?: string | null;
15792
15786
  split?: number | null;
15793
- contact?: {
15794
- /** Format: uuid */
15795
- id: string;
15796
- name?: string | null;
15797
- firstName?: string | null;
15798
- uniqueRef?: string | null;
15799
- shortRef?: string | null;
15800
- email?: string | null;
15801
- /** @enum {string} */
15802
- type: "owner" | "vendor";
15803
- } | null;
15804
15787
  }[];
15805
15788
  setListingInactive?: boolean | null;
15806
15789
  /** @enum {string} */
@@ -16067,18 +16050,8 @@ export interface operations {
16067
16050
  /** @description Value in cents (100 = 1€) */
16068
16051
  reserve: number;
16069
16052
  members: {
16053
+ contactId?: string | null;
16070
16054
  split?: number | null;
16071
- contact?: {
16072
- /** Format: uuid */
16073
- id: string;
16074
- name?: string | null;
16075
- firstName?: string | null;
16076
- uniqueRef?: string | null;
16077
- shortRef?: string | null;
16078
- email?: string | null;
16079
- /** @enum {string} */
16080
- type: "owner" | "vendor";
16081
- } | null;
16082
16055
  }[];
16083
16056
  setListingInactive?: boolean | null;
16084
16057
  /** @enum {string} */
@@ -16390,8 +16363,6 @@ export interface operations {
16390
16363
  ids?: string;
16391
16364
  search?: string;
16392
16365
  contactId?: string;
16393
- /** @description Filter listings by ownership period ID. */
16394
- ownershipPeriodId?: string;
16395
16366
  /** @description Comma-separated listing short refs. */
16396
16367
  shortRefs?: string;
16397
16368
  /** @description Filter listings by whether they currently have an active ownership period. */
@@ -16511,8 +16482,6 @@ export interface operations {
16511
16482
  ids?: string;
16512
16483
  search?: string;
16513
16484
  contactId?: string;
16514
- /** @description Filter listings by ownership period ID. */
16515
- ownershipPeriodId?: string;
16516
16485
  /** @description Comma-separated listing short refs. */
16517
16486
  shortRefs?: string;
16518
16487
  /** @description Filter listings by whether they currently have an active ownership period. */
@@ -16687,18 +16656,8 @@ export interface operations {
16687
16656
  /** @description Value in cents (100 = 1€) */
16688
16657
  reserve: number;
16689
16658
  members: {
16659
+ contactId?: string | null;
16690
16660
  split?: number | null;
16691
- contact?: {
16692
- /** Format: uuid */
16693
- id: string;
16694
- name?: string | null;
16695
- firstName?: string | null;
16696
- uniqueRef?: string | null;
16697
- shortRef?: string | null;
16698
- email?: string | null;
16699
- /** @enum {string} */
16700
- type: "owner" | "vendor";
16701
- } | null;
16702
16661
  }[];
16703
16662
  /** Format: uuid */
16704
16663
  id: string;
@@ -16839,18 +16798,8 @@ export interface operations {
16839
16798
  /** @description Value in cents (100 = 1€) */
16840
16799
  reserve: number;
16841
16800
  members: {
16801
+ contactId?: string | null;
16842
16802
  split?: number | null;
16843
- contact?: {
16844
- /** Format: uuid */
16845
- id: string;
16846
- name?: string | null;
16847
- firstName?: string | null;
16848
- uniqueRef?: string | null;
16849
- shortRef?: string | null;
16850
- email?: string | null;
16851
- /** @enum {string} */
16852
- type: "owner" | "vendor";
16853
- } | null;
16854
16803
  }[];
16855
16804
  /** Format: uuid */
16856
16805
  id: string;
@@ -16966,18 +16915,8 @@ export interface operations {
16966
16915
  /** @description Value in cents (100 = 1€) */
16967
16916
  reserve: number;
16968
16917
  members: {
16918
+ contactId?: string | null;
16969
16919
  split?: number | null;
16970
- contact?: {
16971
- /** Format: uuid */
16972
- id: string;
16973
- name?: string | null;
16974
- firstName?: string | null;
16975
- uniqueRef?: string | null;
16976
- shortRef?: string | null;
16977
- email?: string | null;
16978
- /** @enum {string} */
16979
- type: "owner" | "vendor";
16980
- } | null;
16981
16920
  }[];
16982
16921
  /** Format: uuid */
16983
16922
  id: string;
@@ -17110,18 +17049,8 @@ export interface operations {
17110
17049
  /** @description Value in cents (100 = 1€) */
17111
17050
  reserve: number;
17112
17051
  members: {
17052
+ contactId?: string | null;
17113
17053
  split?: number | null;
17114
- contact?: {
17115
- /** Format: uuid */
17116
- id: string;
17117
- name?: string | null;
17118
- firstName?: string | null;
17119
- uniqueRef?: string | null;
17120
- shortRef?: string | null;
17121
- email?: string | null;
17122
- /** @enum {string} */
17123
- type: "owner" | "vendor";
17124
- } | null;
17125
17054
  }[];
17126
17055
  /** Format: uuid */
17127
17056
  id: string;
@@ -17368,18 +17297,8 @@ export interface operations {
17368
17297
  /** @description Value in cents (100 = 1€) */
17369
17298
  reserve: number;
17370
17299
  members: {
17300
+ contactId?: string | null;
17371
17301
  split?: number | null;
17372
- contact?: {
17373
- /** Format: uuid */
17374
- id: string;
17375
- name?: string | null;
17376
- firstName?: string | null;
17377
- uniqueRef?: string | null;
17378
- shortRef?: string | null;
17379
- email?: string | null;
17380
- /** @enum {string} */
17381
- type: "owner" | "vendor";
17382
- } | null;
17383
17302
  }[];
17384
17303
  setListingInactive?: boolean | null;
17385
17304
  /** @enum {string} */
@@ -17638,18 +17557,8 @@ export interface operations {
17638
17557
  /** @description Value in cents (100 = 1€) */
17639
17558
  reserve: number;
17640
17559
  members: {
17560
+ contactId?: string | null;
17641
17561
  split?: number | null;
17642
- contact?: {
17643
- /** Format: uuid */
17644
- id: string;
17645
- name?: string | null;
17646
- firstName?: string | null;
17647
- uniqueRef?: string | null;
17648
- shortRef?: string | null;
17649
- email?: string | null;
17650
- /** @enum {string} */
17651
- type: "owner" | "vendor";
17652
- } | null;
17653
17562
  }[];
17654
17563
  setListingInactive?: boolean | null;
17655
17564
  /** @enum {string} */
@@ -35058,7 +34967,6 @@ export interface operations {
35058
34967
  } | null;
35059
34968
  } | null;
35060
34969
  }[];
35061
- /** @description Expense attachment IDs returned by POST /transaction-attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
35062
34970
  attachmentIds?: string[] | null;
35063
34971
  recurringTemplateId?: string | null;
35064
34972
  matchBankAccountLast4?: string | null;
@@ -39193,7 +39101,6 @@ export interface operations {
39193
39101
  targetPartnerId?: string | null;
39194
39102
  targetName?: string | null;
39195
39103
  glStartAt: string;
39196
- moveConnectionCredentials?: boolean;
39197
39104
  };
39198
39105
  };
39199
39106
  };
@@ -41964,7 +41871,6 @@ export interface operations {
41964
41871
  depositTransactionId: string | null;
41965
41872
  hasListingNeedsReview: boolean;
41966
41873
  listingNeedsReviewId: string | null;
41967
- hasOwners: boolean;
41968
41874
  hasOwnerNeedsReview: boolean;
41969
41875
  ownerNeedsReviewId: string | null;
41970
41876
  };
@@ -43597,7 +43503,6 @@ export interface operations {
43597
43503
  } | null;
43598
43504
  } | null;
43599
43505
  }[];
43600
- /** @description Expense attachment IDs returned by POST /transaction-attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
43601
43506
  attachmentIds?: string[] | null;
43602
43507
  recurringTemplateId?: string | null;
43603
43508
  matchBankAccountLast4?: string | null;
@@ -43865,7 +43770,6 @@ export interface operations {
43865
43770
  matchReservationStripeGuestRef?: string | null;
43866
43771
  matchLineTypeClassification?: string | null;
43867
43772
  }[];
43868
- /** @description Expense attachment IDs returned by POST /transaction-attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
43869
43773
  attachmentIds?: string[] | null;
43870
43774
  payment?: {
43871
43775
  bankRecordIds?: string[];
@@ -44026,7 +43930,6 @@ export interface operations {
44026
43930
  } | null;
44027
43931
  } | null;
44028
43932
  }[];
44029
- /** @description Expense attachment IDs returned by POST /transaction-attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
44030
43933
  attachmentIds?: string[] | null;
44031
43934
  recurringTemplateId?: string | null;
44032
43935
  matchBankAccountLast4?: string | null;
@@ -44285,7 +44188,6 @@ export interface operations {
44285
44188
  matchReservationStripeGuestRef?: string | null;
44286
44189
  matchLineTypeClassification?: string | null;
44287
44190
  }[];
44288
- /** @description Expense attachment IDs returned by POST /transaction-attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
44289
44191
  attachmentIds?: string[] | null;
44290
44192
  payment?: {
44291
44193
  bankRecordIds?: string[];
@@ -46974,7 +46876,6 @@ export interface operations {
46974
46876
  } | null;
46975
46877
  } | null;
46976
46878
  }[];
46977
- /** @description Expense attachment IDs returned by POST /transaction-attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
46978
46879
  attachmentIds?: string[] | null;
46979
46880
  recurringTemplateId?: string | null;
46980
46881
  matchBankAccountLast4?: string | null;
@@ -47455,7 +47356,6 @@ export interface operations {
47455
47356
  } | null;
47456
47357
  } | null;
47457
47358
  }[];
47458
- /** @description Expense attachment IDs returned by POST /transaction-attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
47459
47359
  attachmentIds?: string[] | null;
47460
47360
  recurringTemplateId?: string | null;
47461
47361
  matchBankAccountLast4?: string | null;
@@ -47689,7 +47589,6 @@ export interface operations {
47689
47589
  type?: "deposit" | "expense" | "transfer" | "payout";
47690
47590
  date?: string;
47691
47591
  currency?: string | null;
47692
- /** @description Expense attachment IDs returned by POST /transaction-attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
47693
47592
  attachmentIds?: string[] | null;
47694
47593
  payment?: {
47695
47594
  bankRecordIds?: string[];
@@ -47936,7 +47835,6 @@ export interface operations {
47936
47835
  } | null;
47937
47836
  } | null;
47938
47837
  }[];
47939
- /** @description Expense attachment IDs returned by POST /transaction-attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
47940
47838
  attachmentIds?: string[] | null;
47941
47839
  recurringTemplateId?: string | null;
47942
47840
  matchBankAccountLast4?: string | null;
@@ -48423,7 +48321,6 @@ export interface operations {
48423
48321
  } | null;
48424
48322
  } | null;
48425
48323
  }[];
48426
- /** @description Expense attachment IDs returned by POST /transaction-attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
48427
48324
  attachmentIds?: string[] | null;
48428
48325
  recurringTemplateId?: string | null;
48429
48326
  matchBankAccountLast4?: string | null;