@getyetty-sdk/sellsy 2026.7.2 → 2026.7.3

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/dist/index.mjs CHANGED
@@ -7474,7 +7474,13 @@ const DealsSchema = {
7474
7474
  "creditnote",
7475
7475
  "estimate",
7476
7476
  "order",
7477
- "delivery"
7477
+ "delivery",
7478
+ "model",
7479
+ "purchase-invoice",
7480
+ "purchase-creditnote",
7481
+ "purchase-order",
7482
+ "purchase-delivery",
7483
+ "item"
7478
7484
  ]
7479
7485
  }
7480
7486
  }
@@ -11965,6 +11971,26 @@ const TaskItemSchema = {
11965
11971
  {
11966
11972
  $ref: "#/components/schemas/EstimateOne/allOf/0",
11967
11973
  title: "Estimate"
11974
+ },
11975
+ {
11976
+ $ref: "#/components/schemas/ModelOne/allOf/0",
11977
+ title: "Model"
11978
+ },
11979
+ {
11980
+ $ref: "#/components/schemas/purCreditNoteOne/allOf/0",
11981
+ title: "Purchase Credit Note"
11982
+ },
11983
+ {
11984
+ $ref: "#/components/schemas/purDeliveryOne/allOf/0",
11985
+ title: "Purchase Delivery"
11986
+ },
11987
+ {
11988
+ $ref: "#/components/schemas/purInvoiceOne/allOf/0",
11989
+ title: "Purchase Invoice"
11990
+ },
11991
+ {
11992
+ $ref: "#/components/schemas/purOrderOne/allOf/0",
11993
+ title: "Purchase Order"
11968
11994
  }
11969
11995
  ] }
11970
11996
  },
@@ -12119,7 +12145,13 @@ const TaskCreateItemSchema = {
12119
12145
  "invoice",
12120
12146
  "creditnote",
12121
12147
  "order",
12122
- "delivery"
12148
+ "delivery",
12149
+ "model",
12150
+ "purchase-invoice",
12151
+ "purchase-creditnote",
12152
+ "purchase-order",
12153
+ "purchase-delivery",
12154
+ "item"
12123
12155
  ]
12124
12156
  }
12125
12157
  }
@@ -12171,7 +12203,13 @@ const TaskCreateItemSchema = {
12171
12203
  "invoice",
12172
12204
  "creditnote",
12173
12205
  "order",
12174
- "delivery"
12206
+ "delivery",
12207
+ "model",
12208
+ "purchase-invoice",
12209
+ "purchase-creditnote",
12210
+ "purchase-order",
12211
+ "purchase-delivery",
12212
+ "item"
12175
12213
  ]
12176
12214
  }
12177
12215
  }
@@ -12302,7 +12340,13 @@ const TaskUpdateItemSchema = {
12302
12340
  "invoice",
12303
12341
  "creditnote",
12304
12342
  "order",
12305
- "delivery"
12343
+ "delivery",
12344
+ "model",
12345
+ "purchase-invoice",
12346
+ "purchase-creditnote",
12347
+ "purchase-order",
12348
+ "purchase-delivery",
12349
+ "item"
12306
12350
  ]
12307
12351
  }
12308
12352
  }
@@ -12659,7 +12703,13 @@ const LabelBaseItemSchema = {
12659
12703
  "creditnote",
12660
12704
  "estimate",
12661
12705
  "order",
12662
- "delivery"
12706
+ "delivery",
12707
+ "model",
12708
+ "purchase-invoice",
12709
+ "purchase-creditnote",
12710
+ "purchase-order",
12711
+ "purchase-delivery",
12712
+ "item"
12663
12713
  ]
12664
12714
  }
12665
12715
  }
@@ -12813,6 +12863,7 @@ const SearchResultSchema = {
12813
12863
  "estimate",
12814
12864
  "creditnote",
12815
12865
  "order",
12866
+ "model",
12816
12867
  "delivery",
12817
12868
  "proforma",
12818
12869
  "staff",
@@ -13244,7 +13295,7 @@ const SearchResultSchema = {
13244
13295
  "read",
13245
13296
  "accepted",
13246
13297
  "expired",
13247
- "partialInvoiced",
13298
+ "partialinvoiced",
13248
13299
  "invoiced",
13249
13300
  "stored",
13250
13301
  "spent",
@@ -13715,6 +13766,7 @@ const SearchResultBaseItemSchema = {
13715
13766
  "estimate",
13716
13767
  "creditnote",
13717
13768
  "order",
13769
+ "model",
13718
13770
  "delivery",
13719
13771
  "proforma",
13720
13772
  "staff",
@@ -32147,7 +32199,8 @@ const CompanyPreferencesSchema = {
32147
32199
  system_label: {
32148
32200
  type: "string",
32149
32201
  description: "System label of tax",
32150
- example: "Intracom"
32202
+ example: "Intracom",
32203
+ nullable: true
32151
32204
  }
32152
32205
  }
32153
32206
  },
@@ -37798,6 +37851,23 @@ const purInvoiceOneSchema = {
37798
37851
  description: "Purchase invoice number",
37799
37852
  example: "F_INV-20250916-00002"
37800
37853
  },
37854
+ amounts: {
37855
+ type: "object",
37856
+ readOnly: true,
37857
+ description: "Amounts of the purchase invoice",
37858
+ properties: {
37859
+ total_excl_tax: {
37860
+ type: "string",
37861
+ description: "Total amount without taxes",
37862
+ example: "933.07"
37863
+ },
37864
+ total_incl_tax: {
37865
+ type: "string",
37866
+ description: "Total amount including taxes",
37867
+ example: "1119.68"
37868
+ }
37869
+ }
37870
+ },
37801
37871
  related: {
37802
37872
  description: "Objects linked to the purchase invoice :\n - There can be only one company or one individual at a time (required)\n - For Company & Individual, only `supplier` type is allowed\n - Contact is the contact of company linked to the purchase invoice. There may be no or one contact.\n - Opportunity is the opportunity linked to the purchase invoice. There may be zero or more opportunities linked to purchase invoice\n",
37803
37873
  type: "array",
@@ -37823,6 +37893,20 @@ const purInvoiceOneSchema = {
37823
37893
  }
37824
37894
  }
37825
37895
  }
37896
+ },
37897
+ status: {
37898
+ type: "string",
37899
+ readOnly: true,
37900
+ description: "Status of the purchase invoice",
37901
+ example: "paid",
37902
+ enum: [
37903
+ "draft",
37904
+ "due",
37905
+ "payinprogress",
37906
+ "paid",
37907
+ "late",
37908
+ "cancelled"
37909
+ ]
37826
37910
  }
37827
37911
  }
37828
37912
  }]
@@ -37844,6 +37928,23 @@ const purCreditNoteOneSchema = {
37844
37928
  description: "Purchase credit note number",
37845
37929
  example: "F_AVR-20250916-00002"
37846
37930
  },
37931
+ amounts: {
37932
+ type: "object",
37933
+ readOnly: true,
37934
+ description: "Amounts of the purchase credit note",
37935
+ properties: {
37936
+ total_excl_tax: {
37937
+ type: "string",
37938
+ description: "Total amount without taxes",
37939
+ example: "933.07"
37940
+ },
37941
+ total_incl_tax: {
37942
+ type: "string",
37943
+ description: "Total amount including taxes",
37944
+ example: "1119.68"
37945
+ }
37946
+ }
37947
+ },
37847
37948
  related: {
37848
37949
  description: "Objects linked to the purchase credit note :\n - There can be only one company or one individual at a time (required)\n - For Company & Individual, only `supplier` type is allowed\n - Contact is the contact of company linked to the purchase credit note. There may be no or one contact.\n - Opportunity is the opportunity linked to the purchase credit note. There may be zero or more opportunities linked to purchase credit note\n",
37849
37950
  type: "array",
@@ -37869,6 +37970,19 @@ const purCreditNoteOneSchema = {
37869
37970
  }
37870
37971
  }
37871
37972
  }
37973
+ },
37974
+ status: {
37975
+ type: "string",
37976
+ readOnly: true,
37977
+ description: "Status of the purchase credit note",
37978
+ example: "spent",
37979
+ enum: [
37980
+ "draft",
37981
+ "stored",
37982
+ "partialspend",
37983
+ "spent",
37984
+ "cancelled"
37985
+ ]
37872
37986
  }
37873
37987
  }
37874
37988
  }]
@@ -37890,6 +38004,23 @@ const purDeliveryOneSchema = {
37890
38004
  description: "Purchase delivery number",
37891
38005
  example: "F_DEL-20250916-00002"
37892
38006
  },
38007
+ amounts: {
38008
+ type: "object",
38009
+ readOnly: true,
38010
+ description: "Amounts of the purchase delivery",
38011
+ properties: {
38012
+ total_excl_tax: {
38013
+ type: "string",
38014
+ description: "Total amount without taxes",
38015
+ example: "933.07"
38016
+ },
38017
+ total_incl_tax: {
38018
+ type: "string",
38019
+ description: "Total amount including taxes",
38020
+ example: "1119.68"
38021
+ }
38022
+ }
38023
+ },
37893
38024
  related: {
37894
38025
  description: "Objects linked to the purchase delivery :\n - There can be only one company or one individual at a time (required)\n - For Company & Individual, only `supplier` type is allowed\n - Contact is the contact of company linked to the purchase delivery. There may be no or one contact.\n - Opportunity is the opportunity linked to the purchase delivery. There may be zero or more opportunities linked to purchase delivery\n",
37895
38026
  type: "array",
@@ -37915,6 +38046,17 @@ const purDeliveryOneSchema = {
37915
38046
  }
37916
38047
  }
37917
38048
  }
38049
+ },
38050
+ status: {
38051
+ type: "string",
38052
+ readOnly: true,
38053
+ description: "Status of the purchase delivery",
38054
+ example: "invoiced",
38055
+ enum: [
38056
+ "draft",
38057
+ "partialinvoiced",
38058
+ "invoiced"
38059
+ ]
37918
38060
  }
37919
38061
  }
37920
38062
  }]
@@ -37936,6 +38078,23 @@ const purOrderOneSchema = {
37936
38078
  description: "Purchase order number",
37937
38079
  example: "F_ORD-20250916-00002"
37938
38080
  },
38081
+ amounts: {
38082
+ type: "object",
38083
+ readOnly: true,
38084
+ description: "Amounts of the purchase order",
38085
+ properties: {
38086
+ total_excl_tax: {
38087
+ type: "string",
38088
+ description: "Total amount without taxes",
38089
+ example: "933.07"
38090
+ },
38091
+ total_incl_tax: {
38092
+ type: "string",
38093
+ description: "Total amount including taxes",
38094
+ example: "1119.68"
38095
+ }
38096
+ }
38097
+ },
37939
38098
  related: {
37940
38099
  description: "Objects linked to the purchase order :\n - There can be only one company or one individual at a time (required)\n - For Company & Individual, only `supplier` type is allowed\n - Contact is the contact of company linked to the purchase order. There may be no or one contact.\n - Opportunity is the opportunity linked to the purchase order. There may be zero or more opportunities linked to purchase order\n",
37941
38100
  type: "array",
@@ -37961,6 +38120,22 @@ const purOrderOneSchema = {
37961
38120
  }
37962
38121
  }
37963
38122
  }
38123
+ },
38124
+ status: {
38125
+ type: "string",
38126
+ readOnly: true,
38127
+ description: "Status of the purchase order",
38128
+ example: "invoiced",
38129
+ enum: [
38130
+ "draft",
38131
+ "sent",
38132
+ "read",
38133
+ "accepted",
38134
+ "expired",
38135
+ "partialinvoiced",
38136
+ "invoiced",
38137
+ "cancelled"
38138
+ ]
37964
38139
  }
37965
38140
  }
37966
38141
  }]
@@ -42125,7 +42300,13 @@ const DealsWritableSchema = {
42125
42300
  "creditnote",
42126
42301
  "estimate",
42127
42302
  "order",
42128
- "delivery"
42303
+ "delivery",
42304
+ "model",
42305
+ "purchase-invoice",
42306
+ "purchase-creditnote",
42307
+ "purchase-order",
42308
+ "purchase-delivery",
42309
+ "item"
42129
42310
  ]
42130
42311
  }
42131
42312
  }
@@ -43953,7 +44134,13 @@ const LabelBaseItemWritableSchema = {
43953
44134
  "creditnote",
43954
44135
  "estimate",
43955
44136
  "order",
43956
- "delivery"
44137
+ "delivery",
44138
+ "model",
44139
+ "purchase-invoice",
44140
+ "purchase-creditnote",
44141
+ "purchase-order",
44142
+ "purchase-delivery",
44143
+ "item"
43957
44144
  ]
43958
44145
  }
43959
44146
  }
@@ -44043,6 +44230,7 @@ const SearchResultWritableSchema = {
44043
44230
  "estimate",
44044
44231
  "creditnote",
44045
44232
  "order",
44233
+ "model",
44046
44234
  "delivery",
44047
44235
  "proforma",
44048
44236
  "staff",
@@ -44448,7 +44636,7 @@ const SearchResultWritableSchema = {
44448
44636
  "read",
44449
44637
  "accepted",
44450
44638
  "expired",
44451
- "partialInvoiced",
44639
+ "partialinvoiced",
44452
44640
  "invoiced",
44453
44641
  "stored",
44454
44642
  "spent",
@@ -44913,6 +45101,7 @@ const SearchResultBaseItemWritableSchema = {
44913
45101
  "estimate",
44914
45102
  "creditnote",
44915
45103
  "order",
45104
+ "model",
44916
45105
  "delivery",
44917
45106
  "proforma",
44918
45107
  "staff",
@@ -53048,7 +53237,8 @@ const CompanyPreferencesWritableSchema = {
53048
53237
  system_label: {
53049
53238
  type: "string",
53050
53239
  description: "System label of tax",
53051
- example: "Intracom"
53240
+ example: "Intracom",
53241
+ nullable: true
53052
53242
  }
53053
53243
  }
53054
53244
  },