@getyetty-sdk/sellsy 2026.6.19 → 2026.6.27

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
@@ -4636,7 +4636,7 @@ const SaleEmbedSchema = {
4636
4636
  example: "+33100000000",
4637
4637
  nullable: true
4638
4638
  },
4639
- legal_france: { $ref: "#/paths/~1companies~1{id}~1convert/post/responses/200/content/application~1json/schema/properties/legal_france" },
4639
+ legal_france: { $ref: "#/paths/~1companies~1{id}~1share/put/responses/200/content/application~1json/schema/properties/legal_france" },
4640
4640
  capital: {
4641
4641
  type: "string",
4642
4642
  nullable: true,
@@ -4765,6 +4765,12 @@ const SaleEmbedSchema = {
4765
4765
  }
4766
4766
  }
4767
4767
  },
4768
+ main_activity_description: {
4769
+ type: "string",
4770
+ description: "Description of the company main activity",
4771
+ example: "Application software publishing",
4772
+ nullable: true
4773
+ },
4768
4774
  marketing_campaigns_subscriptions: {
4769
4775
  type: "array",
4770
4776
  items: {
@@ -14868,6 +14874,34 @@ const CalendarEventFiltersSchema = {
14868
14874
  }
14869
14875
  } }
14870
14876
  };
14877
+ const ProviderCalendarSchema = {
14878
+ title: "Provider Calendar",
14879
+ type: "object",
14880
+ required: [
14881
+ "id",
14882
+ "name",
14883
+ "is_default",
14884
+ "can_edit"
14885
+ ],
14886
+ properties: {
14887
+ id: {
14888
+ type: "string",
14889
+ description: "Provider-specific calendar identifier (Google or Outlook)."
14890
+ },
14891
+ name: {
14892
+ type: "string",
14893
+ description: "Human-readable calendar name."
14894
+ },
14895
+ is_default: {
14896
+ type: "boolean",
14897
+ description: "True when this calendar is the user's default for the connected provider."
14898
+ },
14899
+ can_edit: {
14900
+ type: "boolean",
14901
+ description: "True when the user has write access on this calendar."
14902
+ }
14903
+ }
14904
+ };
14871
14905
  const RelatedSchema = {
14872
14906
  type: "object",
14873
14907
  description: "Object linked",
@@ -19706,6 +19740,12 @@ const ScanListSchema = {
19706
19740
  description: "Employee count range of the company (e.g. \"3-5\", \"10-19\")",
19707
19741
  example: "3-5",
19708
19742
  nullable: true
19743
+ },
19744
+ main_activity_description: {
19745
+ type: "string",
19746
+ description: "Description of the company main activity",
19747
+ example: "Application software publishing",
19748
+ nullable: true
19709
19749
  }
19710
19750
  }
19711
19751
  }
@@ -19763,6 +19803,12 @@ const ScanFetchSchema = {
19763
19803
  example: "3-5",
19764
19804
  nullable: true
19765
19805
  },
19806
+ main_activity_description: {
19807
+ type: "string",
19808
+ description: "Description of the company main activity",
19809
+ example: "Application software publishing",
19810
+ nullable: true
19811
+ },
19766
19812
  address: {
19767
19813
  type: "object",
19768
19814
  properties: {
@@ -24447,417 +24493,7 @@ const DepositInvoiceMetadataSchema = {
24447
24493
  },
24448
24494
  {
24449
24495
  title: "Parent Proforma Invoice",
24450
- allOf: [{ allOf: [{
24451
- title: "Proforma Invoice",
24452
- type: "object",
24453
- properties: {
24454
- id: {
24455
- type: "integer",
24456
- readOnly: true,
24457
- description: "proforma ID",
24458
- example: 3875
24459
- },
24460
- number: {
24461
- type: "string",
24462
- description: "proforma number",
24463
- example: "PRO-2022-01-02-002"
24464
- },
24465
- status: {
24466
- type: "string",
24467
- readOnly: true,
24468
- description: "Status of the proforma",
24469
- example: "paid",
24470
- enum: [
24471
- "draft",
24472
- "sent",
24473
- "read",
24474
- "accepted",
24475
- "expired",
24476
- "advanced",
24477
- "invoiced",
24478
- "partialinvoiced",
24479
- "cancelled"
24480
- ]
24481
- },
24482
- date: {
24483
- type: "string",
24484
- format: "date",
24485
- description: "Date of the proforma",
24486
- example: "2022-01-02"
24487
- },
24488
- due_date: {
24489
- type: "string",
24490
- format: "date",
24491
- description: "Due date for signing the proforma",
24492
- example: "2022-02-02"
24493
- },
24494
- created: {
24495
- description: "Created date of proforma",
24496
- type: "string",
24497
- format: "date-time",
24498
- example: "2020-01-01T00:00:00+01:00"
24499
- },
24500
- subject: {
24501
- type: "string",
24502
- description: "Subject of the proforma"
24503
- },
24504
- amounts: {
24505
- type: "object",
24506
- readOnly: true,
24507
- description: "Amounts of proforma, with and without taxes",
24508
- properties: {
24509
- total_raw_excl_tax: {
24510
- type: "string",
24511
- description: "Total amount without taxes and discounts. Does not include transport and packaging costs.",
24512
- example: "60"
24513
- },
24514
- total_after_discount_excl_tax: {
24515
- type: "string",
24516
- description: "Total discounted without tax. Does not include transport and packaging costs",
24517
- example: "50"
24518
- },
24519
- total_packaging: {
24520
- type: "string",
24521
- description: "Total amount of packaging costs.",
24522
- example: "15.96"
24523
- },
24524
- total_shipping: {
24525
- type: "string",
24526
- description: "Total amount of shipping costs.",
24527
- example: "13.90"
24528
- },
24529
- total_excl_tax: {
24530
- type: "string",
24531
- description: "Total net without tax. Including transport and packaging costs. Discount is applied if any.",
24532
- example: "79.86"
24533
- },
24534
- total_incl_tax: {
24535
- type: "string",
24536
- description: "Total with tax",
24537
- example: "95.83"
24538
- }
24539
- }
24540
- },
24541
- currency: {
24542
- type: "string",
24543
- description: "Currency code of the proforma",
24544
- example: "EUR"
24545
- },
24546
- taxes: {
24547
- description: "List of taxes used on the proforma",
24548
- type: "array",
24549
- readOnly: true,
24550
- items: {
24551
- type: "object",
24552
- description: "Tax used",
24553
- properties: {
24554
- label: {
24555
- type: "string",
24556
- example: "Tax label"
24557
- },
24558
- id: {
24559
- type: "integer",
24560
- example: 7
24561
- },
24562
- rate: {
24563
- type: "string",
24564
- example: "20.000000000"
24565
- },
24566
- amount: {
24567
- type: "string",
24568
- example: "150.99"
24569
- }
24570
- },
24571
- required: [
24572
- "label",
24573
- "id",
24574
- "rate",
24575
- "amount"
24576
- ]
24577
- }
24578
- },
24579
- discount: {
24580
- description: "Global discount applied on the proforma",
24581
- nullable: true,
24582
- type: "object",
24583
- properties: {
24584
- percent: {
24585
- type: "string",
24586
- description: "Percentage of the discount",
24587
- example: "12.00"
24588
- },
24589
- amount: {
24590
- type: "string",
24591
- description: "Amount of the discount",
24592
- example: "111.97"
24593
- },
24594
- type: {
24595
- type: "string",
24596
- description: "Type of the global discount as defined on the document",
24597
- enum: ["amount", "percent"]
24598
- }
24599
- }
24600
- },
24601
- deposit: { $ref: "#/components/schemas/Estimate/allOf/1/properties/deposit" },
24602
- related: {
24603
- description: "Objects linked to the proforma : \n - You must provide at least one company, individual or opportunity\n - For a company or an individual, only `client` type\n - You can provide as many opportunities as you wish, even if you already provide a company or an individual, as long as opportunities belong to them \n - If you provide one or more contacts, they must belong to the company or individual\n",
24604
- type: "array",
24605
- minItems: 1,
24606
- items: {
24607
- type: "object",
24608
- properties: {
24609
- id: {
24610
- type: "integer",
24611
- description: "ID of related",
24612
- example: 234
24613
- },
24614
- type: {
24615
- type: "string",
24616
- description: "Type of related",
24617
- example: "company",
24618
- enum: [
24619
- "company",
24620
- "individual",
24621
- "contact",
24622
- "opportunity"
24623
- ]
24624
- }
24625
- }
24626
- }
24627
- },
24628
- public_link: {
24629
- description: "Public link of the proforma",
24630
- type: "object",
24631
- properties: {
24632
- enabled: {
24633
- type: "boolean",
24634
- description: "Public link is enabled"
24635
- },
24636
- url: {
24637
- readOnly: true,
24638
- type: "string",
24639
- description: "Url to public link"
24640
- }
24641
- }
24642
- },
24643
- payment_conditions_acceptance: {
24644
- type: "object",
24645
- readOnly: true,
24646
- description: "Acceptance of terms and conditions",
24647
- properties: { enabled: {
24648
- type: "boolean",
24649
- description: "Acceptance is required to pay or sign the document"
24650
- } }
24651
- },
24652
- owner: { allOf: [{ $ref: "#/components/schemas/Model/properties/owner/allOf/0" }] },
24653
- fiscal_year_id: {
24654
- type: "integer",
24655
- nullable: true,
24656
- description: "ID of the proforma's fiscal year",
24657
- readOnly: true
24658
- },
24659
- pdf_link: {
24660
- type: "string",
24661
- format: "uri",
24662
- readOnly: true,
24663
- description: "Link to the pdf of document. /!\\ Link is regenerate after an update of document",
24664
- nullable: true
24665
- },
24666
- decimal_number: {
24667
- readOnly: true,
24668
- type: "object",
24669
- description: "Precision for decimal numbers",
24670
- properties: {
24671
- unit_price: {
24672
- type: "integer",
24673
- nullable: true,
24674
- description: "Precision of unit price"
24675
- },
24676
- quantity: {
24677
- type: "integer",
24678
- nullable: true,
24679
- description: "Precision of quantity"
24680
- },
24681
- main: {
24682
- type: "integer",
24683
- description: "Main precision of estimate. Could be overrided for unit_price/quantity"
24684
- }
24685
- }
24686
- },
24687
- assigned_staff_id: {
24688
- type: "integer",
24689
- nullable: false,
24690
- readOnly: true,
24691
- description: "The staff linked",
24692
- example: 2
24693
- },
24694
- invoicing_address_id: {
24695
- description: "Invoicing address, by default take invoicing address of company/individual.",
24696
- type: "integer",
24697
- readOnly: true,
24698
- example: 777
24699
- },
24700
- delivery_address_id: {
24701
- type: "integer",
24702
- description: "Shipping address, by default take shipping address of company/individual.",
24703
- readOnly: true,
24704
- example: 777
24705
- },
24706
- issuer_address_id: {
24707
- type: "integer",
24708
- description: "Issuer address, by default take main account address."
24709
- },
24710
- contact_id: {
24711
- description: "Contact of company linked to the proforma",
24712
- type: "integer",
24713
- nullable: true
24714
- },
24715
- rate_category_id: {
24716
- type: "integer",
24717
- description: "Rate Category applied on document",
24718
- example: 777
24719
- },
24720
- service_dates: {
24721
- type: "object",
24722
- description: "Service dates on the document if enabled",
24723
- nullable: true,
24724
- properties: {
24725
- start: {
24726
- type: "string",
24727
- format: "date",
24728
- description: "Start date for service",
24729
- example: "2023-01-01"
24730
- },
24731
- end: {
24732
- type: "string",
24733
- format: "date",
24734
- description: "End date for service",
24735
- example: "2023-01-31"
24736
- }
24737
- }
24738
- },
24739
- note: {
24740
- type: "string",
24741
- description: "Notes of the proforma",
24742
- example: "This proforma is very important<br />"
24743
- },
24744
- _embed: { allOf: [{
24745
- title: "Proforma Invoice Embed",
24746
- allOf: [
24747
- { $ref: "#/components/schemas/Invoice/properties/_embed/allOf/0/allOf/0" },
24748
- { $ref: "#/components/schemas/SaleEmbed/properties/_embed/allOf/2" },
24749
- {
24750
- type: "object",
24751
- properties: {
24752
- acl: {
24753
- title: "Proforma Invoice ACL",
24754
- type: "object",
24755
- description: "",
24756
- "x-examples": {},
24757
- properties: {
24758
- can_be_updated: {
24759
- type: "boolean",
24760
- nullable: true,
24761
- description: "Proforma invoice can be updated",
24762
- example: true
24763
- },
24764
- can_be_deleted: {
24765
- type: "boolean",
24766
- nullable: true,
24767
- description: "Proforma invoice can be deleted",
24768
- example: true
24769
- }
24770
- }
24771
- },
24772
- owner: { $ref: "#/components/schemas/Activity/properties/_embed/properties/author" },
24773
- fiscal_year: { $ref: "#/components/schemas/SaleEmbed/properties/_embed/allOf/1/properties/fiscal_year" },
24774
- currency: {
24775
- nullable: true,
24776
- $ref: "#/components/schemas/Invoice/properties/_embed/allOf/0/allOf/2/properties/currency"
24777
- },
24778
- smart_tags: {
24779
- nullable: true,
24780
- description: "Smart-tags linked",
24781
- allOf: [{ $ref: "#/components/schemas/SaleEmbed/properties/_embed/allOf/1/properties/smart_tags/allOf/0" }]
24782
- },
24783
- settings: { $ref: "#/components/schemas/SaleEmbed/properties/_embed/allOf/1/properties/settings" },
24784
- payment_method_ids: {
24785
- type: "array",
24786
- items: {
24787
- type: "object",
24788
- title: "Payment method object",
24789
- properties: {
24790
- id: {
24791
- type: "integer",
24792
- description: "Payment method identifier"
24793
- },
24794
- label: {
24795
- type: "string",
24796
- description: "Payment method label"
24797
- }
24798
- }
24799
- }
24800
- },
24801
- invoicing_address: { $ref: "#/components/schemas/SaleEmbed/properties/_embed/allOf/1/properties/invoicing_address" },
24802
- delivery_address: { $ref: "#/components/schemas/SaleEmbed/properties/_embed/allOf/1/properties/invoicing_address" },
24803
- issuer_address: { $ref: "#/components/schemas/SaleEmbed/properties/_embed/allOf/1/properties/invoicing_address" }
24804
- }
24805
- }
24806
- ]
24807
- }] },
24808
- shipping_date: {
24809
- type: "string",
24810
- format: "date",
24811
- description: "Date of the shipping",
24812
- nullable: true,
24813
- example: "2024-01-31"
24814
- },
24815
- company_reference: {
24816
- readOnly: true,
24817
- type: "string",
24818
- description: "Company or individual reference."
24819
- },
24820
- company_name: {
24821
- type: "string",
24822
- readOnly: true,
24823
- description: "Company name displayed on the document"
24824
- },
24825
- bank_account_id: {
24826
- type: "integer",
24827
- description: "Bank account ID",
24828
- nullable: true,
24829
- minimum: 1
24830
- },
24831
- eco_tax_id: {
24832
- type: "integer",
24833
- description: "Eco tax ID",
24834
- nullable: true
24835
- },
24836
- check_label_id: {
24837
- type: "integer",
24838
- description: "Check label ID",
24839
- nullable: true
24840
- },
24841
- vat_mode: {
24842
- type: "string",
24843
- enum: ["debit", "collection"],
24844
- description: "VAT Mode",
24845
- example: "debit"
24846
- },
24847
- vat_mention: {
24848
- type: "string",
24849
- nullable: true,
24850
- description: "VAT Mention",
24851
- maxLength: 255,
24852
- example: "mention"
24853
- },
24854
- shipping_weight: { $ref: "#/components/schemas/EstimateCompute/properties/shipping_weight" },
24855
- shipping_volume: {
24856
- description: "Total volume of product to ship in m3",
24857
- type: "string"
24858
- }
24859
- }
24860
- }, {
24496
+ allOf: [{ allOf: [{ $ref: "#/components/schemas/ProformaInvoiceOne/allOf/0" }, {
24861
24497
  type: "object",
24862
24498
  properties: {
24863
24499
  rows: {
@@ -24865,69 +24501,8 @@ const DepositInvoiceMetadataSchema = {
24865
24501
  items: { $ref: "#/components/schemas/EstimateCreate/allOf/1/properties/rows/items" }
24866
24502
  },
24867
24503
  _embed: {
24868
- title: "Proforma Invoice Embed",
24869
- allOf: [
24870
- { $ref: "#/components/schemas/Invoice/properties/_embed/allOf/0/allOf/0" },
24871
- { $ref: "#/components/schemas/SaleEmbed/properties/_embed/allOf/2" },
24872
- { $ref: "#/components/schemas/EstimateOneEmbed/properties/_embed/allOf/1" },
24873
- {
24874
- type: "object",
24875
- properties: {
24876
- acl: {
24877
- title: "Proforma Invoice ACL",
24878
- type: "object",
24879
- description: "",
24880
- "x-examples": {},
24881
- properties: {
24882
- can_be_updated: {
24883
- type: "boolean",
24884
- nullable: true,
24885
- description: "Proforma invoice can be updated",
24886
- example: true
24887
- },
24888
- can_be_deleted: {
24889
- type: "boolean",
24890
- nullable: true,
24891
- description: "Proforma invoice can be deleted",
24892
- example: true
24893
- }
24894
- }
24895
- },
24896
- owner: { $ref: "#/components/schemas/Activity/properties/_embed/properties/author" },
24897
- fiscal_year: { $ref: "#/components/schemas/SaleEmbed/properties/_embed/allOf/1/properties/fiscal_year" },
24898
- currency: {
24899
- nullable: true,
24900
- $ref: "#/components/schemas/Invoice/properties/_embed/allOf/0/allOf/2/properties/currency"
24901
- },
24902
- smart_tags: {
24903
- nullable: true,
24904
- description: "Smart-tags linked",
24905
- allOf: [{ $ref: "#/components/schemas/SaleEmbed/properties/_embed/allOf/1/properties/smart_tags/allOf/0" }]
24906
- },
24907
- invoicing_address: { $ref: "#/components/schemas/SaleEmbed/properties/_embed/allOf/1/properties/invoicing_address" },
24908
- delivery_address: { $ref: "#/components/schemas/SaleEmbed/properties/_embed/allOf/1/properties/invoicing_address" },
24909
- issuer_address: { $ref: "#/components/schemas/SaleEmbed/properties/_embed/allOf/1/properties/invoicing_address" },
24910
- settings: { $ref: "#/components/schemas/SaleEmbed/properties/_embed/allOf/1/properties/settings" },
24911
- payment_method_ids: {
24912
- type: "array",
24913
- items: {
24914
- type: "object",
24915
- title: "Payment method object",
24916
- properties: {
24917
- id: {
24918
- type: "integer",
24919
- description: "Payment method identifier"
24920
- },
24921
- label: {
24922
- type: "string",
24923
- description: "Payment method label"
24924
- }
24925
- }
24926
- }
24927
- }
24928
- }
24929
- }
24930
- ]
24504
+ $ref: "#/components/schemas/ProformaInvoiceOne/allOf/1/properties/_embed",
24505
+ readOnly: true
24931
24506
  }
24932
24507
  }
24933
24508
  }] }]
@@ -32820,6 +32395,510 @@ const UpdateIndividualPreferencesSchema = {
32820
32395
  "pay_medium_ids"
32821
32396
  ]
32822
32397
  };
32398
+ const UpdateIndividualSharingSchema = {
32399
+ title: "UpdateSharing",
32400
+ type: "object",
32401
+ properties: {
32402
+ staff_ids: {
32403
+ type: "array",
32404
+ description: "Staff IDs to share with",
32405
+ items: { type: "integer" },
32406
+ nullable: true,
32407
+ example: [1, 2]
32408
+ },
32409
+ group_ids: {
32410
+ type: "array",
32411
+ description: "Group IDs to share with",
32412
+ items: { type: "integer" },
32413
+ nullable: true,
32414
+ example: [3]
32415
+ }
32416
+ },
32417
+ additionalProperties: false
32418
+ };
32419
+ const UpdateCompanySharingSchema = { $ref: "#/components/schemas/UpdateIndividualSharing" };
32420
+ const UpdateDocumentSharingSchema = { $ref: "#/components/schemas/UpdateIndividualSharing" };
32421
+ const ProformaInvoiceOneSchema = { allOf: [{
32422
+ title: "Proforma Invoice",
32423
+ type: "object",
32424
+ properties: {
32425
+ id: {
32426
+ type: "integer",
32427
+ readOnly: true,
32428
+ description: "proforma ID",
32429
+ example: 3875
32430
+ },
32431
+ number: {
32432
+ type: "string",
32433
+ description: "proforma number",
32434
+ example: "PRO-2022-01-02-002"
32435
+ },
32436
+ status: {
32437
+ type: "string",
32438
+ readOnly: true,
32439
+ description: "Status of the proforma",
32440
+ example: "paid",
32441
+ enum: [
32442
+ "draft",
32443
+ "sent",
32444
+ "read",
32445
+ "accepted",
32446
+ "expired",
32447
+ "advanced",
32448
+ "invoiced",
32449
+ "partialinvoiced",
32450
+ "cancelled"
32451
+ ]
32452
+ },
32453
+ date: {
32454
+ type: "string",
32455
+ format: "date",
32456
+ description: "Date of the proforma",
32457
+ example: "2022-01-02"
32458
+ },
32459
+ due_date: {
32460
+ type: "string",
32461
+ format: "date",
32462
+ description: "Due date for signing the proforma",
32463
+ example: "2022-02-02"
32464
+ },
32465
+ created: {
32466
+ description: "Created date of proforma",
32467
+ type: "string",
32468
+ format: "date-time",
32469
+ example: "2020-01-01T00:00:00+01:00"
32470
+ },
32471
+ subject: {
32472
+ type: "string",
32473
+ description: "Subject of the proforma"
32474
+ },
32475
+ amounts: {
32476
+ type: "object",
32477
+ readOnly: true,
32478
+ description: "Amounts of proforma, with and without taxes",
32479
+ properties: {
32480
+ total_raw_excl_tax: {
32481
+ type: "string",
32482
+ description: "Total amount without taxes and discounts. Does not include transport and packaging costs.",
32483
+ example: "60"
32484
+ },
32485
+ total_after_discount_excl_tax: {
32486
+ type: "string",
32487
+ description: "Total discounted without tax. Does not include transport and packaging costs",
32488
+ example: "50"
32489
+ },
32490
+ total_packaging: {
32491
+ type: "string",
32492
+ description: "Total amount of packaging costs.",
32493
+ example: "15.96"
32494
+ },
32495
+ total_shipping: {
32496
+ type: "string",
32497
+ description: "Total amount of shipping costs.",
32498
+ example: "13.90"
32499
+ },
32500
+ total_excl_tax: {
32501
+ type: "string",
32502
+ description: "Total net without tax. Including transport and packaging costs. Discount is applied if any.",
32503
+ example: "79.86"
32504
+ },
32505
+ total_incl_tax: {
32506
+ type: "string",
32507
+ description: "Total with tax",
32508
+ example: "95.83"
32509
+ }
32510
+ }
32511
+ },
32512
+ currency: {
32513
+ type: "string",
32514
+ description: "Currency code of the proforma",
32515
+ example: "EUR"
32516
+ },
32517
+ taxes: {
32518
+ description: "List of taxes used on the proforma",
32519
+ type: "array",
32520
+ readOnly: true,
32521
+ items: {
32522
+ type: "object",
32523
+ description: "Tax used",
32524
+ properties: {
32525
+ label: {
32526
+ type: "string",
32527
+ example: "Tax label"
32528
+ },
32529
+ id: {
32530
+ type: "integer",
32531
+ example: 7
32532
+ },
32533
+ rate: {
32534
+ type: "string",
32535
+ example: "20.000000000"
32536
+ },
32537
+ amount: {
32538
+ type: "string",
32539
+ example: "150.99"
32540
+ }
32541
+ },
32542
+ required: [
32543
+ "label",
32544
+ "id",
32545
+ "rate",
32546
+ "amount"
32547
+ ]
32548
+ }
32549
+ },
32550
+ discount: {
32551
+ description: "Global discount applied on the proforma",
32552
+ nullable: true,
32553
+ type: "object",
32554
+ properties: {
32555
+ percent: {
32556
+ type: "string",
32557
+ description: "Percentage of the discount",
32558
+ example: "12.00"
32559
+ },
32560
+ amount: {
32561
+ type: "string",
32562
+ description: "Amount of the discount",
32563
+ example: "111.97"
32564
+ },
32565
+ type: {
32566
+ type: "string",
32567
+ description: "Type of the global discount as defined on the document",
32568
+ enum: ["amount", "percent"]
32569
+ }
32570
+ }
32571
+ },
32572
+ deposit: { $ref: "#/components/schemas/Estimate/allOf/1/properties/deposit" },
32573
+ related: {
32574
+ description: "Objects linked to the proforma : \n - You must provide at least one company, individual or opportunity\n - For a company or an individual, only `client` type\n - You can provide as many opportunities as you wish, even if you already provide a company or an individual, as long as opportunities belong to them \n - If you provide one or more contacts, they must belong to the company or individual\n",
32575
+ type: "array",
32576
+ minItems: 1,
32577
+ items: {
32578
+ type: "object",
32579
+ properties: {
32580
+ id: {
32581
+ type: "integer",
32582
+ description: "ID of related",
32583
+ example: 234
32584
+ },
32585
+ type: {
32586
+ type: "string",
32587
+ description: "Type of related",
32588
+ example: "company",
32589
+ enum: [
32590
+ "company",
32591
+ "individual",
32592
+ "contact",
32593
+ "opportunity"
32594
+ ]
32595
+ }
32596
+ }
32597
+ }
32598
+ },
32599
+ public_link: {
32600
+ description: "Public link of the proforma",
32601
+ type: "object",
32602
+ properties: {
32603
+ enabled: {
32604
+ type: "boolean",
32605
+ description: "Public link is enabled"
32606
+ },
32607
+ url: {
32608
+ readOnly: true,
32609
+ type: "string",
32610
+ description: "Url to public link"
32611
+ }
32612
+ }
32613
+ },
32614
+ payment_conditions_acceptance: {
32615
+ type: "object",
32616
+ readOnly: true,
32617
+ description: "Acceptance of terms and conditions",
32618
+ properties: { enabled: {
32619
+ type: "boolean",
32620
+ description: "Acceptance is required to pay or sign the document"
32621
+ } }
32622
+ },
32623
+ owner: { allOf: [{ $ref: "#/components/schemas/Model/properties/owner/allOf/0" }] },
32624
+ fiscal_year_id: {
32625
+ type: "integer",
32626
+ nullable: true,
32627
+ description: "ID of the proforma's fiscal year",
32628
+ readOnly: true
32629
+ },
32630
+ pdf_link: {
32631
+ type: "string",
32632
+ format: "uri",
32633
+ readOnly: true,
32634
+ description: "Link to the pdf of document. /!\\ Link is regenerate after an update of document",
32635
+ nullable: true
32636
+ },
32637
+ decimal_number: {
32638
+ readOnly: true,
32639
+ type: "object",
32640
+ description: "Precision for decimal numbers",
32641
+ properties: {
32642
+ unit_price: {
32643
+ type: "integer",
32644
+ nullable: true,
32645
+ description: "Precision of unit price"
32646
+ },
32647
+ quantity: {
32648
+ type: "integer",
32649
+ nullable: true,
32650
+ description: "Precision of quantity"
32651
+ },
32652
+ main: {
32653
+ type: "integer",
32654
+ description: "Main precision of estimate. Could be overrided for unit_price/quantity"
32655
+ }
32656
+ }
32657
+ },
32658
+ assigned_staff_id: {
32659
+ type: "integer",
32660
+ nullable: false,
32661
+ readOnly: true,
32662
+ description: "The staff linked",
32663
+ example: 2
32664
+ },
32665
+ invoicing_address_id: {
32666
+ description: "Invoicing address, by default take invoicing address of company/individual.",
32667
+ type: "integer",
32668
+ readOnly: true,
32669
+ example: 777
32670
+ },
32671
+ delivery_address_id: {
32672
+ type: "integer",
32673
+ description: "Shipping address, by default take shipping address of company/individual.",
32674
+ readOnly: true,
32675
+ example: 777
32676
+ },
32677
+ issuer_address_id: {
32678
+ type: "integer",
32679
+ description: "Issuer address, by default take main account address."
32680
+ },
32681
+ contact_id: {
32682
+ description: "Contact of company linked to the proforma",
32683
+ type: "integer",
32684
+ nullable: true
32685
+ },
32686
+ rate_category_id: {
32687
+ type: "integer",
32688
+ description: "Rate Category applied on document",
32689
+ example: 777
32690
+ },
32691
+ service_dates: {
32692
+ type: "object",
32693
+ description: "Service dates on the document if enabled",
32694
+ nullable: true,
32695
+ properties: {
32696
+ start: {
32697
+ type: "string",
32698
+ format: "date",
32699
+ description: "Start date for service",
32700
+ example: "2023-01-01"
32701
+ },
32702
+ end: {
32703
+ type: "string",
32704
+ format: "date",
32705
+ description: "End date for service",
32706
+ example: "2023-01-31"
32707
+ }
32708
+ }
32709
+ },
32710
+ note: {
32711
+ type: "string",
32712
+ description: "Notes of the proforma",
32713
+ example: "This proforma is very important<br />"
32714
+ },
32715
+ _embed: { allOf: [{
32716
+ title: "Proforma Invoice Embed",
32717
+ allOf: [
32718
+ { $ref: "#/components/schemas/Invoice/properties/_embed/allOf/0/allOf/0" },
32719
+ { $ref: "#/components/schemas/SaleEmbed/properties/_embed/allOf/2" },
32720
+ {
32721
+ type: "object",
32722
+ properties: {
32723
+ acl: {
32724
+ title: "Proforma Invoice ACL",
32725
+ type: "object",
32726
+ description: "",
32727
+ "x-examples": {},
32728
+ properties: {
32729
+ can_be_updated: {
32730
+ type: "boolean",
32731
+ nullable: true,
32732
+ description: "Proforma invoice can be updated",
32733
+ example: true
32734
+ },
32735
+ can_be_deleted: {
32736
+ type: "boolean",
32737
+ nullable: true,
32738
+ description: "Proforma invoice can be deleted",
32739
+ example: true
32740
+ }
32741
+ }
32742
+ },
32743
+ owner: { $ref: "#/components/schemas/Activity/properties/_embed/properties/author" },
32744
+ fiscal_year: { $ref: "#/components/schemas/SaleEmbed/properties/_embed/allOf/1/properties/fiscal_year" },
32745
+ currency: {
32746
+ nullable: true,
32747
+ $ref: "#/components/schemas/Invoice/properties/_embed/allOf/0/allOf/2/properties/currency"
32748
+ },
32749
+ smart_tags: {
32750
+ nullable: true,
32751
+ description: "Smart-tags linked",
32752
+ allOf: [{ $ref: "#/components/schemas/SaleEmbed/properties/_embed/allOf/1/properties/smart_tags/allOf/0" }]
32753
+ },
32754
+ settings: { $ref: "#/components/schemas/SaleEmbed/properties/_embed/allOf/1/properties/settings" },
32755
+ payment_method_ids: {
32756
+ type: "array",
32757
+ items: {
32758
+ type: "object",
32759
+ title: "Payment method object",
32760
+ properties: {
32761
+ id: {
32762
+ type: "integer",
32763
+ description: "Payment method identifier"
32764
+ },
32765
+ label: {
32766
+ type: "string",
32767
+ description: "Payment method label"
32768
+ }
32769
+ }
32770
+ }
32771
+ },
32772
+ invoicing_address: { $ref: "#/components/schemas/SaleEmbed/properties/_embed/allOf/1/properties/invoicing_address" },
32773
+ delivery_address: { $ref: "#/components/schemas/SaleEmbed/properties/_embed/allOf/1/properties/invoicing_address" },
32774
+ issuer_address: { $ref: "#/components/schemas/SaleEmbed/properties/_embed/allOf/1/properties/invoicing_address" }
32775
+ }
32776
+ }
32777
+ ]
32778
+ }] },
32779
+ shipping_date: {
32780
+ type: "string",
32781
+ format: "date",
32782
+ description: "Date of the shipping",
32783
+ nullable: true,
32784
+ example: "2024-01-31"
32785
+ },
32786
+ company_reference: {
32787
+ readOnly: true,
32788
+ type: "string",
32789
+ description: "Company or individual reference."
32790
+ },
32791
+ company_name: {
32792
+ type: "string",
32793
+ readOnly: true,
32794
+ description: "Company name displayed on the document"
32795
+ },
32796
+ bank_account_id: {
32797
+ type: "integer",
32798
+ description: "Bank account ID",
32799
+ nullable: true,
32800
+ minimum: 1
32801
+ },
32802
+ eco_tax_id: {
32803
+ type: "integer",
32804
+ description: "Eco tax ID",
32805
+ nullable: true
32806
+ },
32807
+ check_label_id: {
32808
+ type: "integer",
32809
+ description: "Check label ID",
32810
+ nullable: true
32811
+ },
32812
+ vat_mode: {
32813
+ type: "string",
32814
+ enum: ["debit", "collection"],
32815
+ description: "VAT Mode",
32816
+ example: "debit"
32817
+ },
32818
+ vat_mention: {
32819
+ type: "string",
32820
+ nullable: true,
32821
+ description: "VAT Mention",
32822
+ maxLength: 255,
32823
+ example: "mention"
32824
+ },
32825
+ shipping_weight: { $ref: "#/components/schemas/EstimateCompute/properties/shipping_weight" },
32826
+ shipping_volume: {
32827
+ description: "Total volume of product to ship in m3",
32828
+ type: "string"
32829
+ }
32830
+ }
32831
+ }, {
32832
+ type: "object",
32833
+ properties: {
32834
+ rows: {
32835
+ type: "array",
32836
+ items: { $ref: "#/components/schemas/EstimateCreate/allOf/1/properties/rows/items" }
32837
+ },
32838
+ _embed: {
32839
+ title: "Proforma Invoice Embed",
32840
+ allOf: [
32841
+ { $ref: "#/components/schemas/Invoice/properties/_embed/allOf/0/allOf/0" },
32842
+ { $ref: "#/components/schemas/SaleEmbed/properties/_embed/allOf/2" },
32843
+ { $ref: "#/components/schemas/EstimateOneEmbed/properties/_embed/allOf/1" },
32844
+ {
32845
+ type: "object",
32846
+ properties: {
32847
+ acl: {
32848
+ title: "Proforma Invoice ACL",
32849
+ type: "object",
32850
+ description: "",
32851
+ "x-examples": {},
32852
+ properties: {
32853
+ can_be_updated: {
32854
+ type: "boolean",
32855
+ nullable: true,
32856
+ description: "Proforma invoice can be updated",
32857
+ example: true
32858
+ },
32859
+ can_be_deleted: {
32860
+ type: "boolean",
32861
+ nullable: true,
32862
+ description: "Proforma invoice can be deleted",
32863
+ example: true
32864
+ }
32865
+ }
32866
+ },
32867
+ owner: { $ref: "#/components/schemas/Activity/properties/_embed/properties/author" },
32868
+ fiscal_year: { $ref: "#/components/schemas/SaleEmbed/properties/_embed/allOf/1/properties/fiscal_year" },
32869
+ currency: { $ref: "#/components/schemas/Invoice/properties/_embed/allOf/0/allOf/2/properties/currency" },
32870
+ smart_tags: {
32871
+ nullable: true,
32872
+ description: "Smart-tags linked",
32873
+ allOf: [{ $ref: "#/components/schemas/SaleEmbed/properties/_embed/allOf/1/properties/smart_tags/allOf/0" }]
32874
+ },
32875
+ invoicing_address: { $ref: "#/components/schemas/SaleEmbed/properties/_embed/allOf/1/properties/invoicing_address" },
32876
+ delivery_address: { $ref: "#/components/schemas/SaleEmbed/properties/_embed/allOf/1/properties/invoicing_address" },
32877
+ issuer_address: { $ref: "#/components/schemas/SaleEmbed/properties/_embed/allOf/1/properties/invoicing_address" },
32878
+ settings: { $ref: "#/components/schemas/SaleEmbed/properties/_embed/allOf/1/properties/settings" },
32879
+ payment_method_ids: {
32880
+ type: "array",
32881
+ items: {
32882
+ type: "object",
32883
+ title: "Payment method object",
32884
+ properties: {
32885
+ id: {
32886
+ type: "integer",
32887
+ description: "Payment method identifier"
32888
+ },
32889
+ label: {
32890
+ type: "string",
32891
+ description: "Payment method label"
32892
+ }
32893
+ }
32894
+ }
32895
+ }
32896
+ }
32897
+ }
32898
+ ]
32899
+ }
32900
+ }
32901
+ }] };
32823
32902
  const ImportModelSchema = {
32824
32903
  title: "Import model",
32825
32904
  type: "object",
@@ -39517,7 +39596,7 @@ const SaleEmbedWritableSchema = {
39517
39596
  example: "+33100000000",
39518
39597
  nullable: true
39519
39598
  },
39520
- legal_france: { $ref: "#/paths/~1companies~1{id}~1convert/post/responses/200/content/application~1json/schema/properties/legal_france" },
39599
+ legal_france: { $ref: "#/paths/~1companies~1{id}~1share/put/responses/200/content/application~1json/schema/properties/legal_france" },
39521
39600
  capital: {
39522
39601
  type: "string",
39523
39602
  nullable: true,
@@ -39645,6 +39724,12 @@ const SaleEmbedWritableSchema = {
39645
39724
  }
39646
39725
  }
39647
39726
  },
39727
+ main_activity_description: {
39728
+ type: "string",
39729
+ description: "Description of the company main activity",
39730
+ example: "Application software publishing",
39731
+ nullable: true
39732
+ },
39648
39733
  marketing_campaigns_subscriptions: {
39649
39734
  type: "array",
39650
39735
  items: {
@@ -47910,317 +47995,12 @@ const DepositInvoiceMetadataWritableSchema = {
47910
47995
  },
47911
47996
  {
47912
47997
  title: "Parent Proforma Invoice",
47913
- allOf: [{ allOf: [{
47914
- title: "Proforma Invoice",
47915
- type: "object",
47916
- properties: {
47917
- number: {
47918
- type: "string",
47919
- description: "proforma number",
47920
- example: "PRO-2022-01-02-002"
47921
- },
47922
- date: {
47923
- type: "string",
47924
- format: "date",
47925
- description: "Date of the proforma",
47926
- example: "2022-01-02"
47927
- },
47928
- due_date: {
47929
- type: "string",
47930
- format: "date",
47931
- description: "Due date for signing the proforma",
47932
- example: "2022-02-02"
47933
- },
47934
- created: {
47935
- description: "Created date of proforma",
47936
- type: "string",
47937
- format: "date-time",
47938
- example: "2020-01-01T00:00:00+01:00"
47939
- },
47940
- subject: {
47941
- type: "string",
47942
- description: "Subject of the proforma"
47943
- },
47944
- currency: {
47945
- type: "string",
47946
- description: "Currency code of the proforma",
47947
- example: "EUR"
47948
- },
47949
- discount: {
47950
- description: "Global discount applied on the proforma",
47951
- nullable: true,
47952
- type: "object",
47953
- properties: {
47954
- percent: {
47955
- type: "string",
47956
- description: "Percentage of the discount",
47957
- example: "12.00"
47958
- },
47959
- amount: {
47960
- type: "string",
47961
- description: "Amount of the discount",
47962
- example: "111.97"
47963
- },
47964
- type: {
47965
- type: "string",
47966
- description: "Type of the global discount as defined on the document",
47967
- enum: ["amount", "percent"]
47968
- }
47969
- }
47970
- },
47971
- deposit: { $ref: "#/components/schemas/Estimate/allOf/1/properties/deposit" },
47972
- related: {
47973
- description: "Objects linked to the proforma : \n - You must provide at least one company, individual or opportunity\n - For a company or an individual, only `client` type\n - You can provide as many opportunities as you wish, even if you already provide a company or an individual, as long as opportunities belong to them \n - If you provide one or more contacts, they must belong to the company or individual\n",
47974
- type: "array",
47975
- minItems: 1,
47976
- items: {
47977
- type: "object",
47978
- properties: {
47979
- id: {
47980
- type: "integer",
47981
- description: "ID of related",
47982
- example: 234
47983
- },
47984
- type: {
47985
- type: "string",
47986
- description: "Type of related",
47987
- example: "company",
47988
- enum: [
47989
- "company",
47990
- "individual",
47991
- "contact",
47992
- "opportunity"
47993
- ]
47994
- }
47995
- }
47996
- }
47997
- },
47998
- public_link: {
47999
- description: "Public link of the proforma",
48000
- type: "object",
48001
- properties: { enabled: {
48002
- type: "boolean",
48003
- description: "Public link is enabled"
48004
- } }
48005
- },
48006
- owner: {},
48007
- issuer_address_id: {
48008
- type: "integer",
48009
- description: "Issuer address, by default take main account address."
48010
- },
48011
- contact_id: {
48012
- description: "Contact of company linked to the proforma",
48013
- type: "integer",
48014
- nullable: true
48015
- },
48016
- rate_category_id: {
48017
- type: "integer",
48018
- description: "Rate Category applied on document",
48019
- example: 777
48020
- },
48021
- service_dates: {
48022
- type: "object",
48023
- description: "Service dates on the document if enabled",
48024
- nullable: true,
48025
- properties: {
48026
- start: {
48027
- type: "string",
48028
- format: "date",
48029
- description: "Start date for service",
48030
- example: "2023-01-01"
48031
- },
48032
- end: {
48033
- type: "string",
48034
- format: "date",
48035
- description: "End date for service",
48036
- example: "2023-01-31"
48037
- }
48038
- }
48039
- },
48040
- note: {
48041
- type: "string",
48042
- description: "Notes of the proforma",
48043
- example: "This proforma is very important<br />"
48044
- },
48045
- _embed: { allOf: [{
48046
- title: "Proforma Invoice Embed",
48047
- allOf: [
48048
- { $ref: "#/components/schemas/Invoice/properties/_embed/allOf/0/allOf/0" },
48049
- { $ref: "#/components/schemas/SaleEmbed/properties/_embed/allOf/2" },
48050
- {
48051
- type: "object",
48052
- properties: {
48053
- acl: {
48054
- title: "Proforma Invoice ACL",
48055
- type: "object",
48056
- description: "",
48057
- "x-examples": {},
48058
- properties: {
48059
- can_be_updated: {
48060
- type: "boolean",
48061
- nullable: true,
48062
- description: "Proforma invoice can be updated",
48063
- example: true
48064
- },
48065
- can_be_deleted: {
48066
- type: "boolean",
48067
- nullable: true,
48068
- description: "Proforma invoice can be deleted",
48069
- example: true
48070
- }
48071
- }
48072
- },
48073
- owner: { $ref: "#/components/schemas/Activity/properties/_embed/properties/author" },
48074
- fiscal_year: { $ref: "#/components/schemas/SaleEmbed/properties/_embed/allOf/1/properties/fiscal_year" },
48075
- currency: {
48076
- nullable: true,
48077
- $ref: "#/components/schemas/Invoice/properties/_embed/allOf/0/allOf/2/properties/currency"
48078
- },
48079
- smart_tags: {
48080
- nullable: true,
48081
- description: "Smart-tags linked",
48082
- allOf: [{ $ref: "#/components/schemas/SaleEmbed/properties/_embed/allOf/1/properties/smart_tags/allOf/0" }]
48083
- },
48084
- settings: { $ref: "#/components/schemas/SaleEmbed/properties/_embed/allOf/1/properties/settings" },
48085
- payment_method_ids: {
48086
- type: "array",
48087
- items: {
48088
- type: "object",
48089
- title: "Payment method object",
48090
- properties: {
48091
- id: {
48092
- type: "integer",
48093
- description: "Payment method identifier"
48094
- },
48095
- label: {
48096
- type: "string",
48097
- description: "Payment method label"
48098
- }
48099
- }
48100
- }
48101
- },
48102
- invoicing_address: { $ref: "#/components/schemas/SaleEmbed/properties/_embed/allOf/1/properties/invoicing_address" },
48103
- delivery_address: { $ref: "#/components/schemas/SaleEmbed/properties/_embed/allOf/1/properties/invoicing_address" },
48104
- issuer_address: { $ref: "#/components/schemas/SaleEmbed/properties/_embed/allOf/1/properties/invoicing_address" }
48105
- }
48106
- }
48107
- ]
48108
- }] },
48109
- shipping_date: {
48110
- type: "string",
48111
- format: "date",
48112
- description: "Date of the shipping",
48113
- nullable: true,
48114
- example: "2024-01-31"
48115
- },
48116
- bank_account_id: {
48117
- type: "integer",
48118
- description: "Bank account ID",
48119
- nullable: true,
48120
- minimum: 1
48121
- },
48122
- eco_tax_id: {
48123
- type: "integer",
48124
- description: "Eco tax ID",
48125
- nullable: true
48126
- },
48127
- check_label_id: {
48128
- type: "integer",
48129
- description: "Check label ID",
48130
- nullable: true
48131
- },
48132
- vat_mode: {
48133
- type: "string",
48134
- enum: ["debit", "collection"],
48135
- description: "VAT Mode",
48136
- example: "debit"
48137
- },
48138
- vat_mention: {
48139
- type: "string",
48140
- nullable: true,
48141
- description: "VAT Mention",
48142
- maxLength: 255,
48143
- example: "mention"
48144
- },
48145
- shipping_weight: { $ref: "#/components/schemas/EstimateCompute/properties/shipping_weight" },
48146
- shipping_volume: {
48147
- description: "Total volume of product to ship in m3",
48148
- type: "string"
48149
- }
48150
- }
48151
- }, {
47998
+ allOf: [{ allOf: [{ $ref: "#/components/schemas/ProformaInvoiceOne/allOf/0" }, {
48152
47999
  type: "object",
48153
- properties: {
48154
- rows: {
48155
- type: "array",
48156
- items: { $ref: "#/components/schemas/EstimateCreate/allOf/1/properties/rows/items" }
48157
- },
48158
- _embed: {
48159
- title: "Proforma Invoice Embed",
48160
- allOf: [
48161
- { $ref: "#/components/schemas/Invoice/properties/_embed/allOf/0/allOf/0" },
48162
- { $ref: "#/components/schemas/SaleEmbed/properties/_embed/allOf/2" },
48163
- { $ref: "#/components/schemas/EstimateOneEmbed/properties/_embed/allOf/1" },
48164
- {
48165
- type: "object",
48166
- properties: {
48167
- acl: {
48168
- title: "Proforma Invoice ACL",
48169
- type: "object",
48170
- description: "",
48171
- "x-examples": {},
48172
- properties: {
48173
- can_be_updated: {
48174
- type: "boolean",
48175
- nullable: true,
48176
- description: "Proforma invoice can be updated",
48177
- example: true
48178
- },
48179
- can_be_deleted: {
48180
- type: "boolean",
48181
- nullable: true,
48182
- description: "Proforma invoice can be deleted",
48183
- example: true
48184
- }
48185
- }
48186
- },
48187
- owner: { $ref: "#/components/schemas/Activity/properties/_embed/properties/author" },
48188
- fiscal_year: { $ref: "#/components/schemas/SaleEmbed/properties/_embed/allOf/1/properties/fiscal_year" },
48189
- currency: {
48190
- nullable: true,
48191
- $ref: "#/components/schemas/Invoice/properties/_embed/allOf/0/allOf/2/properties/currency"
48192
- },
48193
- smart_tags: {
48194
- nullable: true,
48195
- description: "Smart-tags linked",
48196
- allOf: [{ $ref: "#/components/schemas/SaleEmbed/properties/_embed/allOf/1/properties/smart_tags/allOf/0" }]
48197
- },
48198
- invoicing_address: { $ref: "#/components/schemas/SaleEmbed/properties/_embed/allOf/1/properties/invoicing_address" },
48199
- delivery_address: { $ref: "#/components/schemas/SaleEmbed/properties/_embed/allOf/1/properties/invoicing_address" },
48200
- issuer_address: { $ref: "#/components/schemas/SaleEmbed/properties/_embed/allOf/1/properties/invoicing_address" },
48201
- settings: { $ref: "#/components/schemas/SaleEmbed/properties/_embed/allOf/1/properties/settings" },
48202
- payment_method_ids: {
48203
- type: "array",
48204
- items: {
48205
- type: "object",
48206
- title: "Payment method object",
48207
- properties: {
48208
- id: {
48209
- type: "integer",
48210
- description: "Payment method identifier"
48211
- },
48212
- label: {
48213
- type: "string",
48214
- description: "Payment method label"
48215
- }
48216
- }
48217
- }
48218
- }
48219
- }
48220
- }
48221
- ]
48222
- }
48223
- }
48000
+ properties: { rows: {
48001
+ type: "array",
48002
+ items: { $ref: "#/components/schemas/EstimateCreate/allOf/1/properties/rows/items" }
48003
+ } }
48224
48004
  }] }]
48225
48005
  }
48226
48006
  ] },
@@ -52514,6 +52294,315 @@ const IndividualPreferencesWritableSchema = {
52514
52294
  }
52515
52295
  }
52516
52296
  };
52297
+ const ProformaInvoiceOneWritableSchema = { allOf: [{
52298
+ title: "Proforma Invoice",
52299
+ type: "object",
52300
+ properties: {
52301
+ number: {
52302
+ type: "string",
52303
+ description: "proforma number",
52304
+ example: "PRO-2022-01-02-002"
52305
+ },
52306
+ date: {
52307
+ type: "string",
52308
+ format: "date",
52309
+ description: "Date of the proforma",
52310
+ example: "2022-01-02"
52311
+ },
52312
+ due_date: {
52313
+ type: "string",
52314
+ format: "date",
52315
+ description: "Due date for signing the proforma",
52316
+ example: "2022-02-02"
52317
+ },
52318
+ created: {
52319
+ description: "Created date of proforma",
52320
+ type: "string",
52321
+ format: "date-time",
52322
+ example: "2020-01-01T00:00:00+01:00"
52323
+ },
52324
+ subject: {
52325
+ type: "string",
52326
+ description: "Subject of the proforma"
52327
+ },
52328
+ currency: {
52329
+ type: "string",
52330
+ description: "Currency code of the proforma",
52331
+ example: "EUR"
52332
+ },
52333
+ discount: {
52334
+ description: "Global discount applied on the proforma",
52335
+ nullable: true,
52336
+ type: "object",
52337
+ properties: {
52338
+ percent: {
52339
+ type: "string",
52340
+ description: "Percentage of the discount",
52341
+ example: "12.00"
52342
+ },
52343
+ amount: {
52344
+ type: "string",
52345
+ description: "Amount of the discount",
52346
+ example: "111.97"
52347
+ },
52348
+ type: {
52349
+ type: "string",
52350
+ description: "Type of the global discount as defined on the document",
52351
+ enum: ["amount", "percent"]
52352
+ }
52353
+ }
52354
+ },
52355
+ deposit: { $ref: "#/components/schemas/Estimate/allOf/1/properties/deposit" },
52356
+ related: {
52357
+ description: "Objects linked to the proforma : \n - You must provide at least one company, individual or opportunity\n - For a company or an individual, only `client` type\n - You can provide as many opportunities as you wish, even if you already provide a company or an individual, as long as opportunities belong to them \n - If you provide one or more contacts, they must belong to the company or individual\n",
52358
+ type: "array",
52359
+ minItems: 1,
52360
+ items: {
52361
+ type: "object",
52362
+ properties: {
52363
+ id: {
52364
+ type: "integer",
52365
+ description: "ID of related",
52366
+ example: 234
52367
+ },
52368
+ type: {
52369
+ type: "string",
52370
+ description: "Type of related",
52371
+ example: "company",
52372
+ enum: [
52373
+ "company",
52374
+ "individual",
52375
+ "contact",
52376
+ "opportunity"
52377
+ ]
52378
+ }
52379
+ }
52380
+ }
52381
+ },
52382
+ public_link: {
52383
+ description: "Public link of the proforma",
52384
+ type: "object",
52385
+ properties: { enabled: {
52386
+ type: "boolean",
52387
+ description: "Public link is enabled"
52388
+ } }
52389
+ },
52390
+ owner: {},
52391
+ issuer_address_id: {
52392
+ type: "integer",
52393
+ description: "Issuer address, by default take main account address."
52394
+ },
52395
+ contact_id: {
52396
+ description: "Contact of company linked to the proforma",
52397
+ type: "integer",
52398
+ nullable: true
52399
+ },
52400
+ rate_category_id: {
52401
+ type: "integer",
52402
+ description: "Rate Category applied on document",
52403
+ example: 777
52404
+ },
52405
+ service_dates: {
52406
+ type: "object",
52407
+ description: "Service dates on the document if enabled",
52408
+ nullable: true,
52409
+ properties: {
52410
+ start: {
52411
+ type: "string",
52412
+ format: "date",
52413
+ description: "Start date for service",
52414
+ example: "2023-01-01"
52415
+ },
52416
+ end: {
52417
+ type: "string",
52418
+ format: "date",
52419
+ description: "End date for service",
52420
+ example: "2023-01-31"
52421
+ }
52422
+ }
52423
+ },
52424
+ note: {
52425
+ type: "string",
52426
+ description: "Notes of the proforma",
52427
+ example: "This proforma is very important<br />"
52428
+ },
52429
+ _embed: { allOf: [{
52430
+ title: "Proforma Invoice Embed",
52431
+ allOf: [
52432
+ { $ref: "#/components/schemas/Invoice/properties/_embed/allOf/0/allOf/0" },
52433
+ { $ref: "#/components/schemas/SaleEmbed/properties/_embed/allOf/2" },
52434
+ {
52435
+ type: "object",
52436
+ properties: {
52437
+ acl: {
52438
+ title: "Proforma Invoice ACL",
52439
+ type: "object",
52440
+ description: "",
52441
+ "x-examples": {},
52442
+ properties: {
52443
+ can_be_updated: {
52444
+ type: "boolean",
52445
+ nullable: true,
52446
+ description: "Proforma invoice can be updated",
52447
+ example: true
52448
+ },
52449
+ can_be_deleted: {
52450
+ type: "boolean",
52451
+ nullable: true,
52452
+ description: "Proforma invoice can be deleted",
52453
+ example: true
52454
+ }
52455
+ }
52456
+ },
52457
+ owner: { $ref: "#/components/schemas/Activity/properties/_embed/properties/author" },
52458
+ fiscal_year: { $ref: "#/components/schemas/SaleEmbed/properties/_embed/allOf/1/properties/fiscal_year" },
52459
+ currency: {
52460
+ nullable: true,
52461
+ $ref: "#/components/schemas/Invoice/properties/_embed/allOf/0/allOf/2/properties/currency"
52462
+ },
52463
+ smart_tags: {
52464
+ nullable: true,
52465
+ description: "Smart-tags linked",
52466
+ allOf: [{ $ref: "#/components/schemas/SaleEmbed/properties/_embed/allOf/1/properties/smart_tags/allOf/0" }]
52467
+ },
52468
+ settings: { $ref: "#/components/schemas/SaleEmbed/properties/_embed/allOf/1/properties/settings" },
52469
+ payment_method_ids: {
52470
+ type: "array",
52471
+ items: {
52472
+ type: "object",
52473
+ title: "Payment method object",
52474
+ properties: {
52475
+ id: {
52476
+ type: "integer",
52477
+ description: "Payment method identifier"
52478
+ },
52479
+ label: {
52480
+ type: "string",
52481
+ description: "Payment method label"
52482
+ }
52483
+ }
52484
+ }
52485
+ },
52486
+ invoicing_address: { $ref: "#/components/schemas/SaleEmbed/properties/_embed/allOf/1/properties/invoicing_address" },
52487
+ delivery_address: { $ref: "#/components/schemas/SaleEmbed/properties/_embed/allOf/1/properties/invoicing_address" },
52488
+ issuer_address: { $ref: "#/components/schemas/SaleEmbed/properties/_embed/allOf/1/properties/invoicing_address" }
52489
+ }
52490
+ }
52491
+ ]
52492
+ }] },
52493
+ shipping_date: {
52494
+ type: "string",
52495
+ format: "date",
52496
+ description: "Date of the shipping",
52497
+ nullable: true,
52498
+ example: "2024-01-31"
52499
+ },
52500
+ bank_account_id: {
52501
+ type: "integer",
52502
+ description: "Bank account ID",
52503
+ nullable: true,
52504
+ minimum: 1
52505
+ },
52506
+ eco_tax_id: {
52507
+ type: "integer",
52508
+ description: "Eco tax ID",
52509
+ nullable: true
52510
+ },
52511
+ check_label_id: {
52512
+ type: "integer",
52513
+ description: "Check label ID",
52514
+ nullable: true
52515
+ },
52516
+ vat_mode: {
52517
+ type: "string",
52518
+ enum: ["debit", "collection"],
52519
+ description: "VAT Mode",
52520
+ example: "debit"
52521
+ },
52522
+ vat_mention: {
52523
+ type: "string",
52524
+ nullable: true,
52525
+ description: "VAT Mention",
52526
+ maxLength: 255,
52527
+ example: "mention"
52528
+ },
52529
+ shipping_weight: { $ref: "#/components/schemas/EstimateCompute/properties/shipping_weight" },
52530
+ shipping_volume: {
52531
+ description: "Total volume of product to ship in m3",
52532
+ type: "string"
52533
+ }
52534
+ }
52535
+ }, {
52536
+ type: "object",
52537
+ properties: {
52538
+ rows: {
52539
+ type: "array",
52540
+ items: { $ref: "#/components/schemas/EstimateCreate/allOf/1/properties/rows/items" }
52541
+ },
52542
+ _embed: {
52543
+ title: "Proforma Invoice Embed",
52544
+ allOf: [
52545
+ { $ref: "#/components/schemas/Invoice/properties/_embed/allOf/0/allOf/0" },
52546
+ { $ref: "#/components/schemas/SaleEmbed/properties/_embed/allOf/2" },
52547
+ { $ref: "#/components/schemas/EstimateOneEmbed/properties/_embed/allOf/1" },
52548
+ {
52549
+ type: "object",
52550
+ properties: {
52551
+ acl: {
52552
+ title: "Proforma Invoice ACL",
52553
+ type: "object",
52554
+ description: "",
52555
+ "x-examples": {},
52556
+ properties: {
52557
+ can_be_updated: {
52558
+ type: "boolean",
52559
+ nullable: true,
52560
+ description: "Proforma invoice can be updated",
52561
+ example: true
52562
+ },
52563
+ can_be_deleted: {
52564
+ type: "boolean",
52565
+ nullable: true,
52566
+ description: "Proforma invoice can be deleted",
52567
+ example: true
52568
+ }
52569
+ }
52570
+ },
52571
+ owner: { $ref: "#/components/schemas/Activity/properties/_embed/properties/author" },
52572
+ fiscal_year: { $ref: "#/components/schemas/SaleEmbed/properties/_embed/allOf/1/properties/fiscal_year" },
52573
+ currency: { $ref: "#/components/schemas/Invoice/properties/_embed/allOf/0/allOf/2/properties/currency" },
52574
+ smart_tags: {
52575
+ nullable: true,
52576
+ description: "Smart-tags linked",
52577
+ allOf: [{ $ref: "#/components/schemas/SaleEmbed/properties/_embed/allOf/1/properties/smart_tags/allOf/0" }]
52578
+ },
52579
+ invoicing_address: { $ref: "#/components/schemas/SaleEmbed/properties/_embed/allOf/1/properties/invoicing_address" },
52580
+ delivery_address: { $ref: "#/components/schemas/SaleEmbed/properties/_embed/allOf/1/properties/invoicing_address" },
52581
+ issuer_address: { $ref: "#/components/schemas/SaleEmbed/properties/_embed/allOf/1/properties/invoicing_address" },
52582
+ settings: { $ref: "#/components/schemas/SaleEmbed/properties/_embed/allOf/1/properties/settings" },
52583
+ payment_method_ids: {
52584
+ type: "array",
52585
+ items: {
52586
+ type: "object",
52587
+ title: "Payment method object",
52588
+ properties: {
52589
+ id: {
52590
+ type: "integer",
52591
+ description: "Payment method identifier"
52592
+ },
52593
+ label: {
52594
+ type: "string",
52595
+ description: "Payment method label"
52596
+ }
52597
+ }
52598
+ }
52599
+ }
52600
+ }
52601
+ }
52602
+ ]
52603
+ }
52604
+ }
52605
+ }] };
52517
52606
  const ObjectiveCollectionOutputWritableSchema = {
52518
52607
  title: "Collection of objectives",
52519
52608
  type: "object",
@@ -54293,6 +54382,21 @@ const updateCompany = (options) => (options.client ?? client).put({
54293
54382
  }
54294
54383
  });
54295
54384
  /**
54385
+ * Update company sharing
54386
+ */
54387
+ const updateCompanySharing = (options) => (options.client ?? client).put({
54388
+ security: [{
54389
+ scheme: "bearer",
54390
+ type: "http"
54391
+ }],
54392
+ url: "/companies/{id}/share",
54393
+ ...options,
54394
+ headers: {
54395
+ "Content-Type": "application/json",
54396
+ ...options.headers
54397
+ }
54398
+ });
54399
+ /**
54296
54400
  * Convert prospect company to client company
54297
54401
  */
54298
54402
  const convertCompany = (options) => (options.client ?? client).post({
@@ -54748,6 +54852,21 @@ const updateEstimate = (options) => (options.client ?? client).put({
54748
54852
  }
54749
54853
  });
54750
54854
  /**
54855
+ * Update estimate sharing
54856
+ */
54857
+ const updateEstimateSharing = (options) => (options.client ?? client).put({
54858
+ security: [{
54859
+ scheme: "bearer",
54860
+ type: "http"
54861
+ }],
54862
+ url: "/estimates/{id}/share",
54863
+ ...options,
54864
+ headers: {
54865
+ "Content-Type": "application/json",
54866
+ ...options.headers
54867
+ }
54868
+ });
54869
+ /**
54751
54870
  * Update estimate status
54752
54871
  *
54753
54872
  * Update an estimate status
@@ -55084,6 +55203,21 @@ const updateOrder = (options) => (options.client ?? client).put({
55084
55203
  }
55085
55204
  });
55086
55205
  /**
55206
+ * Update order sharing
55207
+ */
55208
+ const updateOrderSharing = (options) => (options.client ?? client).put({
55209
+ security: [{
55210
+ scheme: "bearer",
55211
+ type: "http"
55212
+ }],
55213
+ url: "/orders/{id}/share",
55214
+ ...options,
55215
+ headers: {
55216
+ "Content-Type": "application/json",
55217
+ ...options.headers
55218
+ }
55219
+ });
55220
+ /**
55087
55221
  * Search orders
55088
55222
  *
55089
55223
  * Search orders <div style="padding:17px; border-radius: 2px; margin-bottom: 4px; line-height: 1.5em; color: #9A7D36; background-color: #fff2cf; cursor: default;"><b>This route is available in open beta.</b><br />Please note that its specifications are potentially subject to significant and breaking changes in the coming weeks.</div>
@@ -55409,6 +55543,21 @@ const getDelivery = (options) => (options.client ?? client).get({
55409
55543
  ...options
55410
55544
  });
55411
55545
  /**
55546
+ * Update delivery sharing
55547
+ */
55548
+ const updateDeliverySharing = (options) => (options.client ?? client).put({
55549
+ security: [{
55550
+ scheme: "bearer",
55551
+ type: "http"
55552
+ }],
55553
+ url: "/deliveries/{id}/share",
55554
+ ...options,
55555
+ headers: {
55556
+ "Content-Type": "application/json",
55557
+ ...options.headers
55558
+ }
55559
+ });
55560
+ /**
55412
55561
  * Individuals List
55413
55562
  *
55414
55563
  * Get a list of individuals
@@ -55574,6 +55723,21 @@ const updateIndividual = (options) => (options.client ?? client).put({
55574
55723
  }
55575
55724
  });
55576
55725
  /**
55726
+ * Update individual sharing
55727
+ */
55728
+ const updateIndividualSharing = (options) => (options.client ?? client).put({
55729
+ security: [{
55730
+ scheme: "bearer",
55731
+ type: "http"
55732
+ }],
55733
+ url: "/individuals/{id}/share",
55734
+ ...options,
55735
+ headers: {
55736
+ "Content-Type": "application/json",
55737
+ ...options.headers
55738
+ }
55739
+ });
55740
+ /**
55577
55741
  * Convert prospect individual to client individual
55578
55742
  */
55579
55743
  const convertIndividual = (options) => (options.client ?? client).post({
@@ -57506,6 +57670,22 @@ const search = (options) => (options.client ?? client).get({
57506
57670
  ...options
57507
57671
  });
57508
57672
  /**
57673
+ * List provider calendars
57674
+ *
57675
+ * Returns the list of calendars available on the authenticated user's
57676
+ * synced provider (Google or Outlook). Returns an empty list when the
57677
+ * user is on the native Sellsy agenda.
57678
+ *
57679
+ */
57680
+ const getCalendars = (options) => (options?.client ?? client).get({
57681
+ security: [{
57682
+ scheme: "bearer",
57683
+ type: "http"
57684
+ }],
57685
+ url: "/calendars",
57686
+ ...options
57687
+ });
57688
+ /**
57509
57689
  * Calendar events List
57510
57690
  *
57511
57691
  * Get a list of calendar event
@@ -58423,6 +58603,21 @@ const updateInvoice = (options) => (options.client ?? client).put({
58423
58603
  }
58424
58604
  });
58425
58605
  /**
58606
+ * Update invoice sharing
58607
+ */
58608
+ const updateInvoiceSharing = (options) => (options.client ?? client).put({
58609
+ security: [{
58610
+ scheme: "bearer",
58611
+ type: "http"
58612
+ }],
58613
+ url: "/invoices/{id}/share",
58614
+ ...options,
58615
+ headers: {
58616
+ "Content-Type": "application/json",
58617
+ ...options.headers
58618
+ }
58619
+ });
58620
+ /**
58426
58621
  * Invoices List
58427
58622
  *
58428
58623
  * Get a list of invoices <div style="padding:17px; border-radius: 2px; margin-bottom: 4px; line-height: 1.5em; color: #9A7D36; background-color: #fff2cf; cursor: default;"><b>This route is available in open beta.</b><br />Please note that its specifications are potentially subject to significant and breaking changes in the coming weeks.</div>
@@ -58818,6 +59013,21 @@ const updateCreditNote = (options) => (options.client ?? client).put({
58818
59013
  }
58819
59014
  });
58820
59015
  /**
59016
+ * Update credit note sharing
59017
+ */
59018
+ const updateCreditNoteSharing = (options) => (options.client ?? client).put({
59019
+ security: [{
59020
+ scheme: "bearer",
59021
+ type: "http"
59022
+ }],
59023
+ url: "/credit-notes/{id}/share",
59024
+ ...options,
59025
+ headers: {
59026
+ "Content-Type": "application/json",
59027
+ ...options.headers
59028
+ }
59029
+ });
59030
+ /**
58821
59031
  * Credit notes List
58822
59032
  *
58823
59033
  * Get a list of credit notes <div style="padding:17px; border-radius: 2px; margin-bottom: 4px; line-height: 1.5em; color: #9A7D36; background-color: #fff2cf; cursor: default;"><b>This route is available in open beta.</b><br />Please note that its specifications are potentially subject to significant and breaking changes in the coming weeks.</div>
@@ -59672,6 +59882,21 @@ const updateModel = (options) => (options.client ?? client).put({
59672
59882
  }
59673
59883
  });
59674
59884
  /**
59885
+ * Update document model sharing
59886
+ */
59887
+ const updateDocumentModelSharing = (options) => (options.client ?? client).put({
59888
+ security: [{
59889
+ scheme: "bearer",
59890
+ type: "http"
59891
+ }],
59892
+ url: "/documents/models/{id}/share",
59893
+ ...options,
59894
+ headers: {
59895
+ "Content-Type": "application/json",
59896
+ ...options.headers
59897
+ }
59898
+ });
59899
+ /**
59675
59900
  * Search document models
59676
59901
  *
59677
59902
  * Search document models
@@ -59945,6 +60170,21 @@ const updateDepositInvoice = (options) => (options.client ?? client).put({
59945
60170
  }
59946
60171
  });
59947
60172
  /**
60173
+ * Update deposit invoice sharing
60174
+ */
60175
+ const updateDepositInvoiceSharing = (options) => (options.client ?? client).put({
60176
+ security: [{
60177
+ scheme: "bearer",
60178
+ type: "http"
60179
+ }],
60180
+ url: "/deposit-invoices/{id}/share",
60181
+ ...options,
60182
+ headers: {
60183
+ "Content-Type": "application/json",
60184
+ ...options.headers
60185
+ }
60186
+ });
60187
+ /**
59948
60188
  * Get smart tags for a deposit invoice
59949
60189
  *
59950
60190
  * Get smart tags for a deposit invoice <div style="padding:17px; border-radius: 2px; margin-bottom: 4px; line-height: 1.5em; color: #9A7D36; background-color: #fff2cf; cursor: default;"><b>This route is available in open beta.</b><br />Please note that its specifications are potentially subject to significant and breaking changes in the coming weeks.</div>
@@ -60117,6 +60357,21 @@ const updateDepositInvoiceCustomFields = (options) => (options.client ?? client)
60117
60357
  }
60118
60358
  });
60119
60359
  /**
60360
+ * Update proforma invoice sharing
60361
+ */
60362
+ const updateProformaInvoiceSharing = (options) => (options.client ?? client).put({
60363
+ security: [{
60364
+ scheme: "bearer",
60365
+ type: "http"
60366
+ }],
60367
+ url: "/proforma-invoices/{id}/share",
60368
+ ...options,
60369
+ headers: {
60370
+ "Content-Type": "application/json",
60371
+ ...options.headers
60372
+ }
60373
+ });
60374
+ /**
60120
60375
  * Proforma Invoice custom fields List
60121
60376
  *
60122
60377
  * Get list of custom fields for a Proforma Invoice
@@ -60184,6 +60439,21 @@ const updateProgressInvoice = (options) => (options.client ?? client).put({
60184
60439
  }
60185
60440
  });
60186
60441
  /**
60442
+ * Update progress invoice sharing
60443
+ */
60444
+ const updateProgressInvoiceSharing = (options) => (options.client ?? client).put({
60445
+ security: [{
60446
+ scheme: "bearer",
60447
+ type: "http"
60448
+ }],
60449
+ url: "/progress-invoices/{id}/share",
60450
+ ...options,
60451
+ headers: {
60452
+ "Content-Type": "application/json",
60453
+ ...options.headers
60454
+ }
60455
+ });
60456
+ /**
60187
60457
  * List payment terms
60188
60458
  *
60189
60459
  * List all payment terms
@@ -60691,5 +60961,5 @@ function createClientWithApiKey(apiKey) {
60691
60961
  }
60692
60962
 
60693
60963
  //#endregion
60694
- export { AccountDocumentCollectionSchema, AccountDocumentCollectionWritableSchema, AccountDocumentOrder, AccountingAggregationsSchema, AccountingCodeCreateSchema, AccountingCodeSchema, AccountingCodeWritableSchema, AccountingJournalExportParamsSchema, AccountingJournalSchema, AccountingJournalWritableSchema, AccountingMetasSchema, AccountingOrder, ActivityFiltersSchema, ActivityOrder, ActivitySchema, ActivityWritableSchema, AddressCreateSchema, AddressSchema, AddressUpdateSchema, AddressWritableSchema, AdyenSettingsSchema, AssignedStaffLabelSchema, BackupCodeSchema, BackupCodesSchema, BankAccountSchema, BankAccountWritableSchema, BarcodeReadItemSchema, BatchAssignedStaffLabelInputSchema, BatchUnitInputSchema, CalendarEventCreateItemSchema, CalendarEventFiltersSchema, CalendarEventItemSchema, CalendarEventItemWritableSchema, CalendarEventOrder, CalendarEventUpdateItemSchema, CheckLabelOrders, CheckLabelSchema, ClientCreateSchema, ClientCreateWritableSchema, ClientSchema, ClientUpdateSchema, ClientUpdateWritableSchema, ClientWSecretSchema, ClientWSecretWritableSchema, ClientWritableSchema, CommentCreateItemSchema, CommentFiltersSchema, CommentItemSchema, CommentItemWritableSchema, CommentOrder, CommentUpdateItemSchema, CompanyPreferencesSchema, CompanyPreferencesWritableSchema, ComputedProgresssInvoiceSchema, ConsentMarketingSettingsInputSchema, ConsentSettingsInputSchema, ConsentSettingsOuputSchema, ContactCollectionItemSchema, ContactCollectionItemWritableSchema, ContactCreateItemSchema, ContactCreateItemWritableSchema, ContactFiltersSchema, ContactItemSchema, ContactItemWritableSchema, ContactOrders, ContactUpdateItemSchema, ContactUpdateItemWritableSchema, CorporationSubscriptionSchema, CountrySchema, CreateDirectorySchema, CreateItemSchema, CreateModelSchema, CreateModelWritableSchema, CreatePaymentSchema, CreditNoteComputeSchema, CreditNoteComputeWritableSchema, CreditNoteCreateSchema, CreditNoteCreateWritableSchema, CreditNoteFiltersSchema, CreditNoteOneSchema, CreditNoteOneWritableSchema, CreditNoteOrder, CreditNoteSchema, CreditNoteUpdateSchema, CreditNoteUpdateWritableSchema, CreditNoteValidateSchema, CreditNoteWritableSchema, CrmActivityAggregationsSchema, CrmActivityFiltersSchema, CrmActivityMetasSchema, CrmActivityMetasWritableSchema, CrmActivityOrder, CrmActivitySchema, CrmActivityWritableSchema, CurrencySchema, CurrencyWritableSchema, CustomActivityCreateSchema, CustomActivityCreateWritableSchema, CustomActivityFiltersSchema, CustomActivityOrder, CustomActivitySchema, CustomActivityTypeSchema, CustomActivityTypeWritableSchema, CustomActivityWritableSchema, DealsActivityOrder, DealsBatchSchema, DealsFiltersSchema, DealsSchema, DealsWritableSchema, DeclinationReadSchema, DeliveryFiltersSchema, DeliveryOneSchema, DeliveryOneWritableSchema, DeliveryOrder, DeliverySchema, DeliveryWritableSchema, DepositInvoiceComputeInputSchema, DepositInvoiceComputeInputWritableSchema, DepositInvoiceComputeOutputSchema, DepositInvoiceCreateSchema, DepositInvoiceCreateWritableSchema, DepositInvoiceDocType, DepositInvoiceFilterSchema, DepositInvoiceMetadataSchema, DepositInvoiceMetadataWritableSchema, DepositInvoiceOneSchema, DepositInvoiceOneWritableSchema, DepositInvoicePrepareInputSchema, DepositInvoicePrepareOutputSchema, DepositInvoiceUpdateSchema, DepositInvoiceUpdateWritableSchema, Direction, DiscountInclTaxesDocumentInputSchema, DiscountInclTaxesInputSchema, DiscountInclTaxesOutputSchema, DiscountInclTaxesOutputWritableSchema, DocumentLayoutsCollectionSchema, EInvoicingMandateInputSchema, EInvoicingMandateInputWritableSchema, EInvoicingMandateSchema, EmailAttachmentOutputSchema, EmailAuthenticationItemSchema, EmailDeleteBatchBodySchema, EmailEngineItemSchema, EmailEngineItemWritableSchema, EmailItemSchema, EmailItemWritableSchema, EmailProviderMessageSchema, EmailProviderMessageWritableSchema, EmailProviderThreadSchema, EmailProviderThreadUpdateSchema, EmailRecipientSearchOutputSchema, EmailRecipientSearchOutputWritableSchema, EmailRecipientSuggestionOutputSchema, EmailRecipientsOutputSchema, EmailSendBatchBodySchema, EmailSendBodySchema, EmailSettingsInputSchema, EmailSettingsSchema, EmailTemplateCreateInputSchema, EmailTemplateInputSchema, EmailTemplateItemOutputSchema, EmailTemplateItemOutputWritableSchema, EmailTemplateListItemOutputSchema, EmailTemplateOutputSchema, EmailTemplateOutputWritableSchema, EmailTemplateUpdateInputSchema, EmailValidationItemSchema, EmailVerificationInputSchema, EmailVerificationValidateInputSchema, EmailVerificationValidateOutputSchema, EmailsListOrder, ErrorSchema, EsignSettingsSchema, EstimateAggregationsSchema, EstimateCollectionSchema, EstimateCollectionWritableSchema, EstimateComputeSchema, EstimateComputeWritableSchema, EstimateCreateSchema, EstimateCreateWritableSchema, EstimateFiltersSchema, EstimateOneEmbedSchema, EstimateOneEmbedWritableSchema, EstimateOneSchema, EstimateOneWritableSchema, EstimateSchema, EstimateStatusUpdateSchema, EstimateUpdateSchema, EstimateUpdateWritableSchema, EstimateWritableSchema, ExportParamsSchema, FavouriteFiltersOrder, FavouriteFiltersSchema, FileOutputSchema, FileOutputWritableSchema, FiscalYearSchema, GenerateBackupCodeInputSchema, ImportModelSchema, ImportPrepareInputSchema, ImportStartInputSchema, ImportType, ImportValidateInputSchema, IndividualPreferencesSchema, IndividualPreferencesWritableSchema, InvoiceComputeSchema, InvoiceComputeWritableSchema, InvoiceCreateSchema, InvoiceCreateWritableSchema, InvoiceFiltersSchema, InvoiceOneSchema, InvoiceOneWritableSchema, InvoiceOrProgressInvoiceOneSchema, InvoiceOrProgressInvoiceOneWritableSchema, InvoiceOrder, InvoiceSchema, InvoiceUpdateSchema, InvoiceUpdateWritableSchema, InvoiceWritableSchema, InvoicingConformityStateSchema, InvoicingConformityStateWritableSchema, InvoicingPaymentSchema, InvoicingSearchFiltersSchema, InvoicingSearchSchema, InvoicingSettingsMetadataSchema, ItemInputPriceSchema, ItemOrder, ItemPriceSchema, ItemReadItemSchema, LabelBaseItemSchema, LabelBaseItemWritableSchema, LabelOrder, LabelSchema, LabelWritableSchema, Language, LanguageCollectionSchema, LicenseEditSchema, LicenseReadSchema, LinkCompanyContactSchema, LinkPaymentToDocumentSchema, ListFilesOutputSchema, ListFilesOutputWritableSchema, ListingCollectionExportStartSchema, ListingExportItemSchema, ListingExportRescheduleSchema, ListingExportStartSchema, ListingExportUpdateSchema, ListingUserContextSchema, MailchimpSettingsSchema, MailjetSettingsSchema, MarketingAttributeDiffOutputSchema, MarketingAttributeInputSchema, MarketingAttributeOutputSchema, MarketingProvidersSchema, ModelOneSchema, ModelOneWritableSchema, ModelOrder, ModelSchema, ModelWritableSchema, MoveFileInputSchema, NotificationFiltersSchema, NotificationMarkAsReadSchema, NotificationMetadataSchema, NotificationSchema, NotificationSettingsInputSchema, NotificationSettingsOutputSchema, NotificationWritableSchema, ObjectiveCollectionOutputSchema, ObjectiveCollectionOutputWritableSchema, ObjectiveComputeTurnoverInputSchema, ObjectiveComputeTurnoverOutputSchema, ObjectiveMetadataSchema, ObjectiveMetadataUpsellSchema, ObjectiveOrder, ObjectiveOutputSchema, ObjectiveSearchInputSchema, ObjectiveTurnoverInputSchema, ObjectiveTurnoverUpdateInputSchema, OcrOrder, OcrPurInvoiceMetasSchema, OcrSchema, OcrWritableSchema, OnboardingScreenOutputSchema, OpportunitiesAggregationsSchema, OpportunitiesCategoryItemSchema, OpportunitiesCategoryItemWritableSchema, OpportunityCreateSchema, OpportunityFiltersSchema, OpportunityItemSchema, OpportunityItemWritableSchema, OpportunityOrder, OpportunityPatchSchema, OpportunityPipelineCollectionItemSchema, OpportunityPipelineCollectionItemWritableSchema, OpportunityPipelineFiltersSchema, OpportunityPipelineOrder, OpportunityRankUpdateSchema, OpportunitySourceCollectionItemSchema, OpportunitySourceCollectionItemWritableSchema, OpportunitySourceFiltersSchema, OpportunitySourceOrder, OpportunityUpdateSchema, OrderComputeSchema, OrderComputeWritableSchema, OrderCreateSchema, OrderCreateWritableSchema, OrderFiltersSchema, OrderOneSchema, OrderOneWritableSchema, OrderOrder, OrderSchema, OrderUpdateSchema, OrderUpdateWritableSchema, OrderWritableSchema, OwnerSchema, PaginationSchema, PartialEmailHeaderSchema, PaymentMethodOrder, PaymentMethodSchema, PaymentMethodWritableSchema, PaymentProviderSchema, PaymentSchema, PaymentTermSchema, PaymentWritableSchema, PersonalAccessTokenCreateItemSchema, PersonalAccessTokenItemSchema, PersonalAccessTokenMetasSchema, PersonalAccessTokenMetasWritableSchema, PhoneCallCollectionItemSchema, PhoneCallCollectionItemWritableSchema, PhoneCallCreateItemSchema, PhoneCallFilterSchema, PhoneCallItemSchema, PhoneCallItemWritableSchema, PhoneCallOrder, PhoneCallUpdateItemSchema, PipelineStepFiltersSchema, PipelineStepOrder, PredictPlanSchema, ProfileOrder, ProfilesSchema, ProgressInvoiceComputeSchema, ProgressInvoiceComputeWritableSchema, ProgressInvoiceCreateSchema, ProgressInvoiceCreateWritableSchema, ProgressInvoiceDocType, ProgressInvoiceMetadataSchema, ProgressInvoiceMetadataWritableSchema, ProgressInvoiceOneSchema, ProgressInvoiceOneWritableSchema, ProgressInvoiceUpdateSchema, ProgressInvoiceUpdateWritableSchema, ProposalDocumentSchema, ProposalDocumentWritableSchema, ProposalModelSchema, ProposalModelWritableSchema, QuotasSchema, RateCategoryMetadataSchema, RelatedSchema, ReportAggregationSchema, ReportSchema, ReportWritableSchema, SaleEmbedSchema, SaleEmbedWritableSchema, SaleOrder, ScanFetchSchema, ScanListSchema, SearchResultAggregationsSchema, SearchResultBaseItemSchema, SearchResultBaseItemWritableSchema, SearchResultSchema, SearchResultWritableSchema, SocialSchema, StaffAclSchema, StaffAutocompleteResultItemSchema, StaffAutocompleteResultItemWritableSchema, StaffCreateItemSchema, StaffFiltersSchema, StaffOrder, StaffPreferencesSchema, StaffPreferencesWritableSchema, StaffRestrictedViewSchema, StaffRestrictedViewWritableSchema, StaffSchema, StaffUpdateItemSchema, StaffWritableSchema, StancerSettingsSchema, SubscriptionCreateSchema, SubscriptionOneSchema, SubscriptionSchema, TaskCollectionItemSchema, TaskCollectionItemWritableSchema, TaskCreateItemSchema, TaskFilterSchema, TaskItemSchema, TaskItemWritableSchema, TaskOrder, TaskUpdateItemSchema, TaxFilterSchema, TaxSettingsInputSchema, TaxSettingsOutputSchema, TaxesMetadataSchema, TeamSchema, TeamWritableSchema, TwoFactorAuthenticationSettingsInputSchema, TwoFactorAuthenticationSettingsSchema, TwoFactorAuthenticationSettingsWritableSchema, UnitOrder, UnitSchema, UnitSuggestionInputSchema, UnitSuggestionOutputSchema, UnitWritableSchema, UnitsSettingsSchema, UpdateCompanyPreferencesSchema, UpdateDirectorySchema, UpdateDiscountInclTaxesSchema, UpdateIndividualPreferencesSchema, UpdateItemSchema, UpdateLinkCompanyContactSchema, UploadFileInputSchema, UserTwoFactorAuthenticationSettingsSchema, UserUpdateTwoFactorAuthenticationSettingsResponseSchema, UserUpdateTwoFactorAuthenticationSettingsSchema, ValidateInvoiceSchema, WarehouseSchema, WarehouseWritableSchema, WebhookCreateItemSchema, WebhookEditItemSchema, WebhookEventsListSchema, WebhookFiltersSchema, WebhookReadItemSchema, activateInvoicingConformity, autocompleteSmartTags, buildClientParams, cancelEsignEstimate, cancelEsignOrder, cancelEsignProposalDocument, client, computeCreditNote, computeDepositInvoice, computeEstimate, computeInvoice, computeOrder, computeProgressInvoice, convertCompany, convertIndividual, convertModel, corporationStaffAggregationSchema, corporationStaffAggregationWritableSchema, createAccountingCode, createBatch, createCalendarEvent, createClient, createClientWithApiKey, createComment, createCompany, createCompanyAddress, createCompanyPayment, createConfig, createContact, createContactAddress, createCreditNote, createDepositInvoice, createDirectory, createDiscountInclTaxes, createEsignEstimate, createEsignOrder, createEsignProposalDocument, createEstimate, createIndividual, createIndividualAddress, createIndividualPayment, createInvoice, createItem, createModel, createOpportunity, createOrder, createPhoneCall, createProgressInvoice, createRateCategory, createStaff, createSubscription, createTask, createTax, createWebhook, deleteAccountingCode, deleteCalendarEvent, deleteClients, deleteComment, deleteCompany, deleteCompanyAddress, deleteContact, deleteContactAddress, deleteCustomActivitiesId, deleteDirectory, deleteDiscountInclTaxes, deleteFile, deleteIndividual, deleteIndividualAddress, deleteItem, deleteModel, deleteNotification, deleteOpportunity, deletePayment, deletePhoneCall, deleteRateCategory, deleteSmartTags, deleteStaffLicenses, deleteSubscription, deleteTask, deleteTax, deleteWebhook, exportAccountingJournal, exportCompanies, exportContacts, exportCrmActivities, exportEstimates, exportExports, exportInvoices, exportOpportunities, fetchClients, generateProposalDocument, getAccountSubscription, getAccountingChartsSettings, getAccountingCodes, getAccountingJournal, getAccountsDocuments, getAddresses, getAssignedStaffLabels, getBankAccounts, getCalendarEvent, getCalendarEvents, getCalendarEventsLabels, getCheckLabels, getComment, getComments, getCompanies, getCompany, getCompanyAddress, getCompanyAddresses, getCompanyContacts, getCompanyCustomFields, getCompanyFavouriteFilters, getCompanyFiles, getCompanySmartTags, getContact, getContactAddress, getContactAddresses, getContactCompanies, getContactCustomFields, getContactFavouriteFilters, getContactFiles, getContactSmartTags, getContacts, getCountries, getCreditNote, getCreditNoteCustomFields, getCreditNoteFavouriteFilters, getCreditNoteFiles, getCreditNoteInvoices, getCreditNotePayments, getCreditNoteSmartTags, getCreditNotes, getCrmActivities, getCurrencies, getCustomActivities, getCustomActivitiesId, getCustomActivityTypes, getCustomActivityTypesId, getCustomField, getCustomFields, getDeliveries, getDelivery, getDepositInvoice, getDepositInvoiceCreditNotes, getDepositInvoiceCustomFields, getDepositInvoiceFiles, getDepositInvoicePayments, getDepositInvoiceSmartTags, getDepositInvoices, getDirectory, getDirectoryFiles, getDiscountInclTaxes, getDiscountsInclTaxes, getDocumentLayouts, getEmail, getEmailDomainDnsData, getEmailSettings, getEmailSignatureTags, getEmailTemplate, getEmailTemplateTags, getEmailTemplateWithContent, getEmailTemplates, getEmailThread, getEsignEstimate, getEsignOrder, getEsignProposalDocument, getEstimate, getEstimateCustomFields, getEstimateFavouriteFilters, getEstimateFiles, getEstimatePayments, getEstimateSmartTags, getEstimates, getFile, getFiscalYears, getGocardlessDirectdebitTimeline, getIndividual, getIndividualAddress, getIndividualAddresses, getIndividualContacts, getIndividualCustomFields, getIndividualFavouriteFilters, getIndividualFiles, getIndividualSmartTags, getIndividuals, getInvoice, getInvoiceCreditNotes, getInvoiceCustomFields, getInvoiceFavouriteFilters, getInvoiceFiles, getInvoicePayments, getInvoiceSmartTags, getInvoices, getInvoicingConformityState, getItem, getItemDeclinationPrices, getItemDeclinations, getItemFavouriteFilters, getItemPrices, getItems, getLanguages, getListingExport, getMandates, getModel, getModelTags, getModels, getNotifications, getNotificationsSettings, getOcrPurInvoice, getOcrPurInvoiceMetas, getOpportunities, getOpportunitiesCategories, getOpportunitiesCategory, getOpportunity, getOpportunityCategorySources, getOpportunityCustomFields, getOpportunityFavouriteFilters, getOpportunityFiles, getOpportunityPipelineSteps, getOpportunityPipelines, getOpportunitySmartTags, getOpportunitySources, getOrder, getOrderCustomFields, getOrderFavouriteFilters, getOrderFiles, getOrderPayments, getOrderSmartTags, getOrders, getPayment, getPaymentMethod, getPaymentMethods, getPaymentTerms, getPayments, getPhoneCall, getPhoneCalls, getPrimes, getProfiles, getProformaInvoiceCustomFields, getProposalDocument, getProposalModel, getProposalsModels, getQuotas, getRateCategories, getRateCategory, getScopes, getScopesTree, getStaff, getStaffs, getSubscription, getSubscriptions, getSubscriptionsPaymentInstallments, getSystemEmailTemplateWithContent, getTask, getTasks, getTasksLabels, getTax, getTaxAccountingChart, getTaxes, getTaxesAccountingCharts, getTeams, getUnits, getWebhook, getWebhookEvents, getWebhooks, linkCompanyContact, linkCompanySmartTags, linkContactSmartTags, linkCreditNoteDiscountInclTaxes, linkCreditNotePayment, linkCreditNotePrime, linkCreditNoteSmartTags, linkCreditNoteToInvoice, linkDepositInvoicePayment, linkDepositInvoiceSmartTags, linkEstimateDiscountInclTaxes, linkEstimatePayment, linkEstimatePrime, linkEstimateSmartTags, linkIndividualSmartTags, linkInvoiceDiscountInclTaxes, linkInvoicePayment, linkInvoicePrime, linkInvoiceSmartTags, linkInvoiceToCreditNote, linkOpportunitySmartTags, linkOrderDiscountInclTaxes, linkOrderPayment, linkOrderPrime, linkOrderSmartTags, listClients, listListingExports, markAllNotificationsAsRead, markNotificationAsRead, mergeHeaders, metaAccountingJournal, metaCrmActivities, moveFile, patchOpportunity, patchSubscriptionPaymentInstallment, postCustomActivities, postCustomActivitiesSearch, postCustomActivityTypes, prepareDepositInvoice, purCreditNoteOneSchema, purCreditNoteOneWritableSchema, purDeliveryOneSchema, purDeliveryOneWritableSchema, purInvoiceOneSchema, purInvoiceOneWritableSchema, purOrderOneSchema, purOrderOneWritableSchema, putAccountingChartsSettings, putCustomActivitiesId, putCustomActivityTypesId, putEmailSettings, putItemPrices, putNotificationsSettings, putStaffLicenses, quickCreateDepositInvoice, rescheduleListingExport, search, searchAccountingCodes, searchAccountingJournal, searchActivities, searchAllOpportunityPipelineSteps, searchBarcodes, searchCalendarEvents, searchComments, searchCompanies, searchContacts, searchCreditNotes, searchCrmActivities, searchCustomFields, searchDeliveries, searchDepositInvoices, searchEstimates, searchIndividuals, searchInvoices, searchItemDeclinations, searchItems, searchListingExports, searchMandates, searchModels, searchNotifications, searchOcrPurInvoice, searchOpportunities, searchOpportunityPipelineSteps, searchOpportunityPipelines, searchOpportunitySources, searchOrders, searchPaymentMethods, searchPayments, searchPhoneCalls, searchProposalsModels, searchStaffs, searchSubscriptions, searchSubscriptionsPaymentInstallments, searchTasks, searchTaxes, searchTimeline, searchWebhooks, sendEmail, unlinkCompanyContact, unlinkCreditNoteDiscountInclTaxes, unlinkCreditNoteInvoices, unlinkCreditNotePayment, unlinkCreditNotePrime, unlinkDepositInvoicePayment, unlinkEstimateDiscountInclTaxes, unlinkEstimatePayment, unlinkEstimatePrime, unlinkInvoiceDiscountInclTaxes, unlinkInvoicePayment, unlinkInvoicePrime, unlinkInvoicesCreditNote, unlinkOrderDiscountInclTaxes, unlinkOrderPayment, unlinkOrderPrime, updateCalendarEvent, updateComment, updateCompany, updateCompanyAddress, updateCompanyContact, updateCompanyCustomFields, updateContact, updateContactAddress, updateContactCustomFields, updateCreditNote, updateCreditNoteCustomFields, updateDepositInvoice, updateDepositInvoiceCustomFields, updateDirectory, updateDiscountInclTaxes, updateEstimate, updateEstimateCustomFields, updateEstimateStatus, updateIndividual, updateIndividualAddress, updateIndividualCustomFields, updateInvoice, updateInvoiceCustomFields, updateItem, updateListingExport, updateModel, updateOpportunity, updateOpportunityCustomFields, updateOpportunityRank, updateOrder, updateOrderCustomFields, updatePhoneCall, updateProgressInvoice, updateRateCategory, updateStaff, updateTask, updateTax, updateTaxAccountingChart, updateWebhook, uploadCompanyFile, uploadContactFile, uploadCreditNoteFile, uploadDepositInvoiceFile, uploadDirectoryFile, uploadEmailAttachment, uploadEstimateFile, uploadIndividualFile, uploadInvoiceFile, uploadOpportunityFile, uploadOrderFile, validateCreditNote, validateDepositInvoice, validateEmailDomainDns, validateInvoice };
60964
+ export { AccountDocumentCollectionSchema, AccountDocumentCollectionWritableSchema, AccountDocumentOrder, AccountingAggregationsSchema, AccountingCodeCreateSchema, AccountingCodeSchema, AccountingCodeWritableSchema, AccountingJournalExportParamsSchema, AccountingJournalSchema, AccountingJournalWritableSchema, AccountingMetasSchema, AccountingOrder, ActivityFiltersSchema, ActivityOrder, ActivitySchema, ActivityWritableSchema, AddressCreateSchema, AddressSchema, AddressUpdateSchema, AddressWritableSchema, AdyenSettingsSchema, AssignedStaffLabelSchema, BackupCodeSchema, BackupCodesSchema, BankAccountSchema, BankAccountWritableSchema, BarcodeReadItemSchema, BatchAssignedStaffLabelInputSchema, BatchUnitInputSchema, CalendarEventCreateItemSchema, CalendarEventFiltersSchema, CalendarEventItemSchema, CalendarEventItemWritableSchema, CalendarEventOrder, CalendarEventUpdateItemSchema, CheckLabelOrders, CheckLabelSchema, ClientCreateSchema, ClientCreateWritableSchema, ClientSchema, ClientUpdateSchema, ClientUpdateWritableSchema, ClientWSecretSchema, ClientWSecretWritableSchema, ClientWritableSchema, CommentCreateItemSchema, CommentFiltersSchema, CommentItemSchema, CommentItemWritableSchema, CommentOrder, CommentUpdateItemSchema, CompanyPreferencesSchema, CompanyPreferencesWritableSchema, ComputedProgresssInvoiceSchema, ConsentMarketingSettingsInputSchema, ConsentSettingsInputSchema, ConsentSettingsOuputSchema, ContactCollectionItemSchema, ContactCollectionItemWritableSchema, ContactCreateItemSchema, ContactCreateItemWritableSchema, ContactFiltersSchema, ContactItemSchema, ContactItemWritableSchema, ContactOrders, ContactUpdateItemSchema, ContactUpdateItemWritableSchema, CorporationSubscriptionSchema, CountrySchema, CreateDirectorySchema, CreateItemSchema, CreateModelSchema, CreateModelWritableSchema, CreatePaymentSchema, CreditNoteComputeSchema, CreditNoteComputeWritableSchema, CreditNoteCreateSchema, CreditNoteCreateWritableSchema, CreditNoteFiltersSchema, CreditNoteOneSchema, CreditNoteOneWritableSchema, CreditNoteOrder, CreditNoteSchema, CreditNoteUpdateSchema, CreditNoteUpdateWritableSchema, CreditNoteValidateSchema, CreditNoteWritableSchema, CrmActivityAggregationsSchema, CrmActivityFiltersSchema, CrmActivityMetasSchema, CrmActivityMetasWritableSchema, CrmActivityOrder, CrmActivitySchema, CrmActivityWritableSchema, CurrencySchema, CurrencyWritableSchema, CustomActivityCreateSchema, CustomActivityCreateWritableSchema, CustomActivityFiltersSchema, CustomActivityOrder, CustomActivitySchema, CustomActivityTypeSchema, CustomActivityTypeWritableSchema, CustomActivityWritableSchema, DealsActivityOrder, DealsBatchSchema, DealsFiltersSchema, DealsSchema, DealsWritableSchema, DeclinationReadSchema, DeliveryFiltersSchema, DeliveryOneSchema, DeliveryOneWritableSchema, DeliveryOrder, DeliverySchema, DeliveryWritableSchema, DepositInvoiceComputeInputSchema, DepositInvoiceComputeInputWritableSchema, DepositInvoiceComputeOutputSchema, DepositInvoiceCreateSchema, DepositInvoiceCreateWritableSchema, DepositInvoiceDocType, DepositInvoiceFilterSchema, DepositInvoiceMetadataSchema, DepositInvoiceMetadataWritableSchema, DepositInvoiceOneSchema, DepositInvoiceOneWritableSchema, DepositInvoicePrepareInputSchema, DepositInvoicePrepareOutputSchema, DepositInvoiceUpdateSchema, DepositInvoiceUpdateWritableSchema, Direction, DiscountInclTaxesDocumentInputSchema, DiscountInclTaxesInputSchema, DiscountInclTaxesOutputSchema, DiscountInclTaxesOutputWritableSchema, DocumentLayoutsCollectionSchema, EInvoicingMandateInputSchema, EInvoicingMandateInputWritableSchema, EInvoicingMandateSchema, EmailAttachmentOutputSchema, EmailAuthenticationItemSchema, EmailDeleteBatchBodySchema, EmailEngineItemSchema, EmailEngineItemWritableSchema, EmailItemSchema, EmailItemWritableSchema, EmailProviderMessageSchema, EmailProviderMessageWritableSchema, EmailProviderThreadSchema, EmailProviderThreadUpdateSchema, EmailRecipientSearchOutputSchema, EmailRecipientSearchOutputWritableSchema, EmailRecipientSuggestionOutputSchema, EmailRecipientsOutputSchema, EmailSendBatchBodySchema, EmailSendBodySchema, EmailSettingsInputSchema, EmailSettingsSchema, EmailTemplateCreateInputSchema, EmailTemplateInputSchema, EmailTemplateItemOutputSchema, EmailTemplateItemOutputWritableSchema, EmailTemplateListItemOutputSchema, EmailTemplateOutputSchema, EmailTemplateOutputWritableSchema, EmailTemplateUpdateInputSchema, EmailValidationItemSchema, EmailVerificationInputSchema, EmailVerificationValidateInputSchema, EmailVerificationValidateOutputSchema, EmailsListOrder, ErrorSchema, EsignSettingsSchema, EstimateAggregationsSchema, EstimateCollectionSchema, EstimateCollectionWritableSchema, EstimateComputeSchema, EstimateComputeWritableSchema, EstimateCreateSchema, EstimateCreateWritableSchema, EstimateFiltersSchema, EstimateOneEmbedSchema, EstimateOneEmbedWritableSchema, EstimateOneSchema, EstimateOneWritableSchema, EstimateSchema, EstimateStatusUpdateSchema, EstimateUpdateSchema, EstimateUpdateWritableSchema, EstimateWritableSchema, ExportParamsSchema, FavouriteFiltersOrder, FavouriteFiltersSchema, FileOutputSchema, FileOutputWritableSchema, FiscalYearSchema, GenerateBackupCodeInputSchema, ImportModelSchema, ImportPrepareInputSchema, ImportStartInputSchema, ImportType, ImportValidateInputSchema, IndividualPreferencesSchema, IndividualPreferencesWritableSchema, InvoiceComputeSchema, InvoiceComputeWritableSchema, InvoiceCreateSchema, InvoiceCreateWritableSchema, InvoiceFiltersSchema, InvoiceOneSchema, InvoiceOneWritableSchema, InvoiceOrProgressInvoiceOneSchema, InvoiceOrProgressInvoiceOneWritableSchema, InvoiceOrder, InvoiceSchema, InvoiceUpdateSchema, InvoiceUpdateWritableSchema, InvoiceWritableSchema, InvoicingConformityStateSchema, InvoicingConformityStateWritableSchema, InvoicingPaymentSchema, InvoicingSearchFiltersSchema, InvoicingSearchSchema, InvoicingSettingsMetadataSchema, ItemInputPriceSchema, ItemOrder, ItemPriceSchema, ItemReadItemSchema, LabelBaseItemSchema, LabelBaseItemWritableSchema, LabelOrder, LabelSchema, LabelWritableSchema, Language, LanguageCollectionSchema, LicenseEditSchema, LicenseReadSchema, LinkCompanyContactSchema, LinkPaymentToDocumentSchema, ListFilesOutputSchema, ListFilesOutputWritableSchema, ListingCollectionExportStartSchema, ListingExportItemSchema, ListingExportRescheduleSchema, ListingExportStartSchema, ListingExportUpdateSchema, ListingUserContextSchema, MailchimpSettingsSchema, MailjetSettingsSchema, MarketingAttributeDiffOutputSchema, MarketingAttributeInputSchema, MarketingAttributeOutputSchema, MarketingProvidersSchema, ModelOneSchema, ModelOneWritableSchema, ModelOrder, ModelSchema, ModelWritableSchema, MoveFileInputSchema, NotificationFiltersSchema, NotificationMarkAsReadSchema, NotificationMetadataSchema, NotificationSchema, NotificationSettingsInputSchema, NotificationSettingsOutputSchema, NotificationWritableSchema, ObjectiveCollectionOutputSchema, ObjectiveCollectionOutputWritableSchema, ObjectiveComputeTurnoverInputSchema, ObjectiveComputeTurnoverOutputSchema, ObjectiveMetadataSchema, ObjectiveMetadataUpsellSchema, ObjectiveOrder, ObjectiveOutputSchema, ObjectiveSearchInputSchema, ObjectiveTurnoverInputSchema, ObjectiveTurnoverUpdateInputSchema, OcrOrder, OcrPurInvoiceMetasSchema, OcrSchema, OcrWritableSchema, OnboardingScreenOutputSchema, OpportunitiesAggregationsSchema, OpportunitiesCategoryItemSchema, OpportunitiesCategoryItemWritableSchema, OpportunityCreateSchema, OpportunityFiltersSchema, OpportunityItemSchema, OpportunityItemWritableSchema, OpportunityOrder, OpportunityPatchSchema, OpportunityPipelineCollectionItemSchema, OpportunityPipelineCollectionItemWritableSchema, OpportunityPipelineFiltersSchema, OpportunityPipelineOrder, OpportunityRankUpdateSchema, OpportunitySourceCollectionItemSchema, OpportunitySourceCollectionItemWritableSchema, OpportunitySourceFiltersSchema, OpportunitySourceOrder, OpportunityUpdateSchema, OrderComputeSchema, OrderComputeWritableSchema, OrderCreateSchema, OrderCreateWritableSchema, OrderFiltersSchema, OrderOneSchema, OrderOneWritableSchema, OrderOrder, OrderSchema, OrderUpdateSchema, OrderUpdateWritableSchema, OrderWritableSchema, OwnerSchema, PaginationSchema, PartialEmailHeaderSchema, PaymentMethodOrder, PaymentMethodSchema, PaymentMethodWritableSchema, PaymentProviderSchema, PaymentSchema, PaymentTermSchema, PaymentWritableSchema, PersonalAccessTokenCreateItemSchema, PersonalAccessTokenItemSchema, PersonalAccessTokenMetasSchema, PersonalAccessTokenMetasWritableSchema, PhoneCallCollectionItemSchema, PhoneCallCollectionItemWritableSchema, PhoneCallCreateItemSchema, PhoneCallFilterSchema, PhoneCallItemSchema, PhoneCallItemWritableSchema, PhoneCallOrder, PhoneCallUpdateItemSchema, PipelineStepFiltersSchema, PipelineStepOrder, PredictPlanSchema, ProfileOrder, ProfilesSchema, ProformaInvoiceOneSchema, ProformaInvoiceOneWritableSchema, ProgressInvoiceComputeSchema, ProgressInvoiceComputeWritableSchema, ProgressInvoiceCreateSchema, ProgressInvoiceCreateWritableSchema, ProgressInvoiceDocType, ProgressInvoiceMetadataSchema, ProgressInvoiceMetadataWritableSchema, ProgressInvoiceOneSchema, ProgressInvoiceOneWritableSchema, ProgressInvoiceUpdateSchema, ProgressInvoiceUpdateWritableSchema, ProposalDocumentSchema, ProposalDocumentWritableSchema, ProposalModelSchema, ProposalModelWritableSchema, ProviderCalendarSchema, QuotasSchema, RateCategoryMetadataSchema, RelatedSchema, ReportAggregationSchema, ReportSchema, ReportWritableSchema, SaleEmbedSchema, SaleEmbedWritableSchema, SaleOrder, ScanFetchSchema, ScanListSchema, SearchResultAggregationsSchema, SearchResultBaseItemSchema, SearchResultBaseItemWritableSchema, SearchResultSchema, SearchResultWritableSchema, SocialSchema, StaffAclSchema, StaffAutocompleteResultItemSchema, StaffAutocompleteResultItemWritableSchema, StaffCreateItemSchema, StaffFiltersSchema, StaffOrder, StaffPreferencesSchema, StaffPreferencesWritableSchema, StaffRestrictedViewSchema, StaffRestrictedViewWritableSchema, StaffSchema, StaffUpdateItemSchema, StaffWritableSchema, StancerSettingsSchema, SubscriptionCreateSchema, SubscriptionOneSchema, SubscriptionSchema, TaskCollectionItemSchema, TaskCollectionItemWritableSchema, TaskCreateItemSchema, TaskFilterSchema, TaskItemSchema, TaskItemWritableSchema, TaskOrder, TaskUpdateItemSchema, TaxFilterSchema, TaxSettingsInputSchema, TaxSettingsOutputSchema, TaxesMetadataSchema, TeamSchema, TeamWritableSchema, TwoFactorAuthenticationSettingsInputSchema, TwoFactorAuthenticationSettingsSchema, TwoFactorAuthenticationSettingsWritableSchema, UnitOrder, UnitSchema, UnitSuggestionInputSchema, UnitSuggestionOutputSchema, UnitWritableSchema, UnitsSettingsSchema, UpdateCompanyPreferencesSchema, UpdateCompanySharingSchema, UpdateDirectorySchema, UpdateDiscountInclTaxesSchema, UpdateDocumentSharingSchema, UpdateIndividualPreferencesSchema, UpdateIndividualSharingSchema, UpdateItemSchema, UpdateLinkCompanyContactSchema, UploadFileInputSchema, UserTwoFactorAuthenticationSettingsSchema, UserUpdateTwoFactorAuthenticationSettingsResponseSchema, UserUpdateTwoFactorAuthenticationSettingsSchema, ValidateInvoiceSchema, WarehouseSchema, WarehouseWritableSchema, WebhookCreateItemSchema, WebhookEditItemSchema, WebhookEventsListSchema, WebhookFiltersSchema, WebhookReadItemSchema, activateInvoicingConformity, autocompleteSmartTags, buildClientParams, cancelEsignEstimate, cancelEsignOrder, cancelEsignProposalDocument, client, computeCreditNote, computeDepositInvoice, computeEstimate, computeInvoice, computeOrder, computeProgressInvoice, convertCompany, convertIndividual, convertModel, corporationStaffAggregationSchema, corporationStaffAggregationWritableSchema, createAccountingCode, createBatch, createCalendarEvent, createClient, createClientWithApiKey, createComment, createCompany, createCompanyAddress, createCompanyPayment, createConfig, createContact, createContactAddress, createCreditNote, createDepositInvoice, createDirectory, createDiscountInclTaxes, createEsignEstimate, createEsignOrder, createEsignProposalDocument, createEstimate, createIndividual, createIndividualAddress, createIndividualPayment, createInvoice, createItem, createModel, createOpportunity, createOrder, createPhoneCall, createProgressInvoice, createRateCategory, createStaff, createSubscription, createTask, createTax, createWebhook, deleteAccountingCode, deleteCalendarEvent, deleteClients, deleteComment, deleteCompany, deleteCompanyAddress, deleteContact, deleteContactAddress, deleteCustomActivitiesId, deleteDirectory, deleteDiscountInclTaxes, deleteFile, deleteIndividual, deleteIndividualAddress, deleteItem, deleteModel, deleteNotification, deleteOpportunity, deletePayment, deletePhoneCall, deleteRateCategory, deleteSmartTags, deleteStaffLicenses, deleteSubscription, deleteTask, deleteTax, deleteWebhook, exportAccountingJournal, exportCompanies, exportContacts, exportCrmActivities, exportEstimates, exportExports, exportInvoices, exportOpportunities, fetchClients, generateProposalDocument, getAccountSubscription, getAccountingChartsSettings, getAccountingCodes, getAccountingJournal, getAccountsDocuments, getAddresses, getAssignedStaffLabels, getBankAccounts, getCalendarEvent, getCalendarEvents, getCalendarEventsLabels, getCalendars, getCheckLabels, getComment, getComments, getCompanies, getCompany, getCompanyAddress, getCompanyAddresses, getCompanyContacts, getCompanyCustomFields, getCompanyFavouriteFilters, getCompanyFiles, getCompanySmartTags, getContact, getContactAddress, getContactAddresses, getContactCompanies, getContactCustomFields, getContactFavouriteFilters, getContactFiles, getContactSmartTags, getContacts, getCountries, getCreditNote, getCreditNoteCustomFields, getCreditNoteFavouriteFilters, getCreditNoteFiles, getCreditNoteInvoices, getCreditNotePayments, getCreditNoteSmartTags, getCreditNotes, getCrmActivities, getCurrencies, getCustomActivities, getCustomActivitiesId, getCustomActivityTypes, getCustomActivityTypesId, getCustomField, getCustomFields, getDeliveries, getDelivery, getDepositInvoice, getDepositInvoiceCreditNotes, getDepositInvoiceCustomFields, getDepositInvoiceFiles, getDepositInvoicePayments, getDepositInvoiceSmartTags, getDepositInvoices, getDirectory, getDirectoryFiles, getDiscountInclTaxes, getDiscountsInclTaxes, getDocumentLayouts, getEmail, getEmailDomainDnsData, getEmailSettings, getEmailSignatureTags, getEmailTemplate, getEmailTemplateTags, getEmailTemplateWithContent, getEmailTemplates, getEmailThread, getEsignEstimate, getEsignOrder, getEsignProposalDocument, getEstimate, getEstimateCustomFields, getEstimateFavouriteFilters, getEstimateFiles, getEstimatePayments, getEstimateSmartTags, getEstimates, getFile, getFiscalYears, getGocardlessDirectdebitTimeline, getIndividual, getIndividualAddress, getIndividualAddresses, getIndividualContacts, getIndividualCustomFields, getIndividualFavouriteFilters, getIndividualFiles, getIndividualSmartTags, getIndividuals, getInvoice, getInvoiceCreditNotes, getInvoiceCustomFields, getInvoiceFavouriteFilters, getInvoiceFiles, getInvoicePayments, getInvoiceSmartTags, getInvoices, getInvoicingConformityState, getItem, getItemDeclinationPrices, getItemDeclinations, getItemFavouriteFilters, getItemPrices, getItems, getLanguages, getListingExport, getMandates, getModel, getModelTags, getModels, getNotifications, getNotificationsSettings, getOcrPurInvoice, getOcrPurInvoiceMetas, getOpportunities, getOpportunitiesCategories, getOpportunitiesCategory, getOpportunity, getOpportunityCategorySources, getOpportunityCustomFields, getOpportunityFavouriteFilters, getOpportunityFiles, getOpportunityPipelineSteps, getOpportunityPipelines, getOpportunitySmartTags, getOpportunitySources, getOrder, getOrderCustomFields, getOrderFavouriteFilters, getOrderFiles, getOrderPayments, getOrderSmartTags, getOrders, getPayment, getPaymentMethod, getPaymentMethods, getPaymentTerms, getPayments, getPhoneCall, getPhoneCalls, getPrimes, getProfiles, getProformaInvoiceCustomFields, getProposalDocument, getProposalModel, getProposalsModels, getQuotas, getRateCategories, getRateCategory, getScopes, getScopesTree, getStaff, getStaffs, getSubscription, getSubscriptions, getSubscriptionsPaymentInstallments, getSystemEmailTemplateWithContent, getTask, getTasks, getTasksLabels, getTax, getTaxAccountingChart, getTaxes, getTaxesAccountingCharts, getTeams, getUnits, getWebhook, getWebhookEvents, getWebhooks, linkCompanyContact, linkCompanySmartTags, linkContactSmartTags, linkCreditNoteDiscountInclTaxes, linkCreditNotePayment, linkCreditNotePrime, linkCreditNoteSmartTags, linkCreditNoteToInvoice, linkDepositInvoicePayment, linkDepositInvoiceSmartTags, linkEstimateDiscountInclTaxes, linkEstimatePayment, linkEstimatePrime, linkEstimateSmartTags, linkIndividualSmartTags, linkInvoiceDiscountInclTaxes, linkInvoicePayment, linkInvoicePrime, linkInvoiceSmartTags, linkInvoiceToCreditNote, linkOpportunitySmartTags, linkOrderDiscountInclTaxes, linkOrderPayment, linkOrderPrime, linkOrderSmartTags, listClients, listListingExports, markAllNotificationsAsRead, markNotificationAsRead, mergeHeaders, metaAccountingJournal, metaCrmActivities, moveFile, patchOpportunity, patchSubscriptionPaymentInstallment, postCustomActivities, postCustomActivitiesSearch, postCustomActivityTypes, prepareDepositInvoice, purCreditNoteOneSchema, purCreditNoteOneWritableSchema, purDeliveryOneSchema, purDeliveryOneWritableSchema, purInvoiceOneSchema, purInvoiceOneWritableSchema, purOrderOneSchema, purOrderOneWritableSchema, putAccountingChartsSettings, putCustomActivitiesId, putCustomActivityTypesId, putEmailSettings, putItemPrices, putNotificationsSettings, putStaffLicenses, quickCreateDepositInvoice, rescheduleListingExport, search, searchAccountingCodes, searchAccountingJournal, searchActivities, searchAllOpportunityPipelineSteps, searchBarcodes, searchCalendarEvents, searchComments, searchCompanies, searchContacts, searchCreditNotes, searchCrmActivities, searchCustomFields, searchDeliveries, searchDepositInvoices, searchEstimates, searchIndividuals, searchInvoices, searchItemDeclinations, searchItems, searchListingExports, searchMandates, searchModels, searchNotifications, searchOcrPurInvoice, searchOpportunities, searchOpportunityPipelineSteps, searchOpportunityPipelines, searchOpportunitySources, searchOrders, searchPaymentMethods, searchPayments, searchPhoneCalls, searchProposalsModels, searchStaffs, searchSubscriptions, searchSubscriptionsPaymentInstallments, searchTasks, searchTaxes, searchTimeline, searchWebhooks, sendEmail, unlinkCompanyContact, unlinkCreditNoteDiscountInclTaxes, unlinkCreditNoteInvoices, unlinkCreditNotePayment, unlinkCreditNotePrime, unlinkDepositInvoicePayment, unlinkEstimateDiscountInclTaxes, unlinkEstimatePayment, unlinkEstimatePrime, unlinkInvoiceDiscountInclTaxes, unlinkInvoicePayment, unlinkInvoicePrime, unlinkInvoicesCreditNote, unlinkOrderDiscountInclTaxes, unlinkOrderPayment, unlinkOrderPrime, updateCalendarEvent, updateComment, updateCompany, updateCompanyAddress, updateCompanyContact, updateCompanyCustomFields, updateCompanySharing, updateContact, updateContactAddress, updateContactCustomFields, updateCreditNote, updateCreditNoteCustomFields, updateCreditNoteSharing, updateDeliverySharing, updateDepositInvoice, updateDepositInvoiceCustomFields, updateDepositInvoiceSharing, updateDirectory, updateDiscountInclTaxes, updateDocumentModelSharing, updateEstimate, updateEstimateCustomFields, updateEstimateSharing, updateEstimateStatus, updateIndividual, updateIndividualAddress, updateIndividualCustomFields, updateIndividualSharing, updateInvoice, updateInvoiceCustomFields, updateInvoiceSharing, updateItem, updateListingExport, updateModel, updateOpportunity, updateOpportunityCustomFields, updateOpportunityRank, updateOrder, updateOrderCustomFields, updateOrderSharing, updatePhoneCall, updateProformaInvoiceSharing, updateProgressInvoice, updateProgressInvoiceSharing, updateRateCategory, updateStaff, updateTask, updateTax, updateTaxAccountingChart, updateWebhook, uploadCompanyFile, uploadContactFile, uploadCreditNoteFile, uploadDepositInvoiceFile, uploadDirectoryFile, uploadEmailAttachment, uploadEstimateFile, uploadIndividualFile, uploadInvoiceFile, uploadOpportunityFile, uploadOrderFile, validateCreditNote, validateDepositInvoice, validateEmailDomainDns, validateInvoice };
60695
60965
  //# sourceMappingURL=index.mjs.map