@getyetty-sdk/sellsy 2026.6.27 → 2026.7.2

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
@@ -1914,7 +1914,7 @@ const ContactItemSchema = {
1914
1914
  example: 6547,
1915
1915
  readOnly: true
1916
1916
  },
1917
- social: { allOf: [{ $ref: "#/paths/~1companies/post/requestBody/content/application~1json/schema/properties/social" }] },
1917
+ social: { allOf: [{ $ref: "#/components/schemas/Company/properties/social" }] },
1918
1918
  sync: {
1919
1919
  type: "object",
1920
1920
  properties: {
@@ -4636,7 +4636,7 @@ const SaleEmbedSchema = {
4636
4636
  example: "+33100000000",
4637
4637
  nullable: true
4638
4638
  },
4639
- legal_france: { $ref: "#/paths/~1companies~1{id}~1share/put/responses/200/content/application~1json/schema/properties/legal_france" },
4639
+ legal_france: { $ref: "#/components/schemas/Company/properties/legal_france" },
4640
4640
  capital: {
4641
4641
  type: "string",
4642
4642
  nullable: true,
@@ -4660,7 +4660,7 @@ const SaleEmbedSchema = {
4660
4660
  example: "0EX11C",
4661
4661
  nullable: true
4662
4662
  },
4663
- social: { $ref: "#/paths/~1companies/post/requestBody/content/application~1json/schema/properties/social" },
4663
+ social: { $ref: "#/components/schemas/Company/properties/social" },
4664
4664
  rate_category_id: {
4665
4665
  type: "integer",
4666
4666
  nullable: true,
@@ -4785,6 +4785,12 @@ const SaleEmbedSchema = {
4785
4785
  },
4786
4786
  description: "list of campaign type subcribed",
4787
4787
  uniqueItems: true
4788
+ },
4789
+ einvoicing_electronic_address: {
4790
+ type: "string",
4791
+ nullable: true,
4792
+ description: "Default e-invoicing routing address identifier",
4793
+ example: "987463775"
4788
4794
  }
4789
4795
  }
4790
4796
  },
@@ -4880,7 +4886,7 @@ const SaleEmbedSchema = {
4880
4886
  example: "0EX11C",
4881
4887
  nullable: true
4882
4888
  },
4883
- social: { $ref: "#/paths/~1companies/post/requestBody/content/application~1json/schema/properties/social" },
4889
+ social: { $ref: "#/components/schemas/Company/properties/social" },
4884
4890
  rate_category_id: {
4885
4891
  type: "integer",
4886
4892
  nullable: true,
@@ -10524,7 +10530,7 @@ const OcrSchema = {
10524
10530
  linked_type: {
10525
10531
  description: "Type of linked object",
10526
10532
  type: "string",
10527
- enum: ["purInvoice"],
10533
+ enum: ["purInvoice", "purCreditNote"],
10528
10534
  example: "purInvoice"
10529
10535
  },
10530
10536
  linked_id: {
@@ -10591,6 +10597,28 @@ const OcrSchema = {
10591
10597
  description: "Currency code",
10592
10598
  nullable: true,
10593
10599
  example: "EUR"
10600
+ },
10601
+ lifecycle: {
10602
+ description: "Latest e-invoicing lifecycle event for the document, or null when none.",
10603
+ nullable: true,
10604
+ readOnly: true,
10605
+ allOf: [{
10606
+ type: "object",
10607
+ description: "Latest lifecycle event of an e-invoicing document",
10608
+ required: ["status", "label"],
10609
+ properties: {
10610
+ status: {
10611
+ type: "integer",
10612
+ description: "AFNOR lifecycle status code\n- `200` : Déposée\n- `201` : Émise\n- `202` : Reçue\n- `203` : Mise à disposition\n- `204` : Prise en charge\n- `205` : Approuvée\n- `206` : Approuvée partiellement\n- `207` : En litige\n- `208` : Suspendue\n- `209` : Complétée\n- `210` : Refusée\n- `211` : Paiement transmis\n- `212` : Encaissée\n- `213` : Rejetée\n- `501` : Irrecevable\n",
10613
+ example: 205
10614
+ },
10615
+ label: {
10616
+ type: "string",
10617
+ description: "Lifecycle status label",
10618
+ example: "Approuvée"
10619
+ }
10620
+ }
10621
+ }]
10594
10622
  }
10595
10623
  }
10596
10624
  };
@@ -17690,6 +17718,161 @@ const CreatePaymentSchema = {
17690
17718
  "type"
17691
17719
  ]
17692
17720
  };
17721
+ const RecordPaymentSchema = {
17722
+ type: "object",
17723
+ description: "Payment record object — create a payment, link it to a document, and persist its VAT breakdown and bank deposit.",
17724
+ properties: {
17725
+ paid_at: {
17726
+ description: "Payment date (ISO 8601)",
17727
+ type: "string",
17728
+ format: "date",
17729
+ example: "2026-06-16"
17730
+ },
17731
+ type: {
17732
+ description: "Payment type",
17733
+ type: "string",
17734
+ enum: ["debit", "credit"],
17735
+ example: "credit"
17736
+ },
17737
+ amount: {
17738
+ type: "object",
17739
+ description: "Amount of payment (currency is derived from the document)",
17740
+ properties: { value: {
17741
+ description: "Amount (can be negative; cannot be zero)",
17742
+ type: "string",
17743
+ example: "177.12"
17744
+ } },
17745
+ required: ["value"]
17746
+ },
17747
+ payment_method_id: {
17748
+ description: "Payment method id",
17749
+ type: "integer",
17750
+ example: 7
17751
+ },
17752
+ number: {
17753
+ description: "Payment reference",
17754
+ type: "string",
17755
+ nullable: true
17756
+ },
17757
+ note: {
17758
+ description: "Note of payment",
17759
+ type: "string",
17760
+ nullable: true
17761
+ },
17762
+ send_email: {
17763
+ description: "Send a thank-you email to the contact",
17764
+ type: "boolean"
17765
+ },
17766
+ send_email_copy: {
17767
+ description: "Send a copy of the thank-you email to the sender",
17768
+ type: "boolean"
17769
+ },
17770
+ deadline_ids: {
17771
+ description: "Ids of the document deadlines to settle with this payment",
17772
+ type: "array",
17773
+ items: { type: "integer" }
17774
+ },
17775
+ vat_breakdown: {
17776
+ description: "VAT breakdown per rate, for e-invoicing compliant documents.",
17777
+ type: "array",
17778
+ items: {
17779
+ type: "object",
17780
+ properties: {
17781
+ tax_id: { type: "integer" },
17782
+ rate: {
17783
+ type: "string",
17784
+ example: "20"
17785
+ },
17786
+ vat_amount: { type: "string" },
17787
+ ht_amount: { type: "string" }
17788
+ }
17789
+ }
17790
+ },
17791
+ bank_deposit: {
17792
+ description: "Bank deposit to attach to the payment",
17793
+ type: "object",
17794
+ nullable: true,
17795
+ properties: {
17796
+ enabled: { type: "boolean" },
17797
+ bank_account_id: { type: "integer" },
17798
+ bank_account_label: { type: "string" },
17799
+ deposited_at: {
17800
+ type: "string",
17801
+ format: "date"
17802
+ }
17803
+ }
17804
+ }
17805
+ },
17806
+ required: [
17807
+ "paid_at",
17808
+ "type",
17809
+ "amount",
17810
+ "payment_method_id"
17811
+ ]
17812
+ };
17813
+ const PaymentContextSchema = {
17814
+ type: "object",
17815
+ description: "Data needed to render the payment modal: document amounts, e-invoicing VAT rates, available payment methods and bank accounts, and the third's unsettled payments.",
17816
+ properties: {
17817
+ document: {
17818
+ type: "object",
17819
+ properties: {
17820
+ id: { type: "integer" },
17821
+ type: { type: "string" },
17822
+ third_id: { type: "integer" },
17823
+ total_amount: { type: "string" },
17824
+ due_amount: { type: "string" },
17825
+ currency_id: { type: "integer" },
17826
+ currency_symbol: { type: "string" },
17827
+ is_einvoicing: { type: "boolean" }
17828
+ }
17829
+ },
17830
+ vat_rates: {
17831
+ type: "array",
17832
+ items: {
17833
+ type: "object",
17834
+ properties: {
17835
+ tax_id: { type: "integer" },
17836
+ rate: { type: "string" },
17837
+ label: { type: "string" },
17838
+ system_label: { type: "string" },
17839
+ vat_amount: { type: "string" },
17840
+ ht_amount: { type: "string" }
17841
+ }
17842
+ }
17843
+ },
17844
+ deadlines: {
17845
+ type: "array",
17846
+ items: {
17847
+ type: "object",
17848
+ properties: {
17849
+ id: { type: "integer" },
17850
+ amount: { type: "string" },
17851
+ remaining_amount: { type: "string" },
17852
+ date: { type: "integer" }
17853
+ }
17854
+ }
17855
+ },
17856
+ payment_methods: {
17857
+ type: "array",
17858
+ items: { type: "object" }
17859
+ },
17860
+ bank_accounts: {
17861
+ type: "array",
17862
+ items: { type: "object" }
17863
+ },
17864
+ unsettled_payments: {
17865
+ type: "object",
17866
+ properties: {
17867
+ total_remaining: { type: "string" },
17868
+ items: {
17869
+ type: "array",
17870
+ items: { type: "object" }
17871
+ }
17872
+ }
17873
+ }
17874
+ }
17875
+ };
17693
17876
  const UnitSchema = {
17694
17877
  type: "object",
17695
17878
  title: "Unit object",
@@ -19945,9 +20128,10 @@ const ScanFetchSchema = {
19945
20128
  enum: [
19946
20129
  "registered_inactive",
19947
20130
  "registered_active",
20131
+ "registered_no_pa",
19948
20132
  "unregistered"
19949
20133
  ],
19950
- description: "Registration status of the entity in the French e-invoicing directory.\n\n- `unregistered`: Not registered in the e-invoicing directory.\n- `registered_active`: Registered with a valid e-invoicing routing address.\n- `registered_inactive`: Registered but without a valid e-invoicing routing address.\n"
20134
+ description: "Registration status of the entity in the French e-invoicing directory.\n\n- `unregistered`: Not registered in the e-invoicing directory.\n- `registered_active`: Registered with a valid e-invoicing routing address.\n- `registered_inactive`: Registered but without a valid e-invoicing routing address.\n- `registered_no_pa`: Registered but without an approved platform (PDP) able to receive e-invoices; treated like `registered_inactive`.\n"
19951
20135
  },
19952
20136
  einvoicing_electronic_addresses: {
19953
20137
  nullable: true,
@@ -21177,6 +21361,36 @@ const InvoiceSchema = {
21177
21361
  "mixed"
21178
21362
  ],
21179
21363
  example: "product"
21364
+ },
21365
+ einvoicing_electronic_address: {
21366
+ type: "string",
21367
+ nullable: true,
21368
+ description: "E-invoicing routing address identifier for this document",
21369
+ example: "987463775"
21370
+ },
21371
+ einvoicing_flow: {
21372
+ type: "string",
21373
+ nullable: true,
21374
+ description: "E-invoicing flow applied when the document was validated",
21375
+ enum: ["einvoicing", "ereporting"],
21376
+ example: "einvoicing"
21377
+ },
21378
+ lifecycle_status: {
21379
+ type: "object",
21380
+ nullable: true,
21381
+ description: "Last known e-invoicing lifecycle status of the document",
21382
+ properties: {
21383
+ status: {
21384
+ type: "integer",
21385
+ description: "AFNOR lifecycle status code",
21386
+ example: 212
21387
+ },
21388
+ label: {
21389
+ type: "string",
21390
+ description: "Localized lifecycle status label",
21391
+ example: "Encaissée"
21392
+ }
21393
+ }
21180
21394
  }
21181
21395
  }
21182
21396
  };
@@ -21599,6 +21813,36 @@ const InvoiceOneSchema = {
21599
21813
  "mixed"
21600
21814
  ],
21601
21815
  example: "product"
21816
+ },
21817
+ einvoicing_electronic_address: {
21818
+ type: "string",
21819
+ nullable: true,
21820
+ description: "E-invoicing routing address identifier for this document",
21821
+ example: "987463775"
21822
+ },
21823
+ einvoicing_flow: {
21824
+ type: "string",
21825
+ nullable: true,
21826
+ description: "E-invoicing flow applied when the document was validated",
21827
+ enum: ["einvoicing", "ereporting"],
21828
+ example: "einvoicing"
21829
+ },
21830
+ lifecycle_status: {
21831
+ type: "object",
21832
+ nullable: true,
21833
+ description: "Last known e-invoicing lifecycle status of the document",
21834
+ properties: {
21835
+ status: {
21836
+ type: "integer",
21837
+ description: "AFNOR lifecycle status code",
21838
+ example: 212
21839
+ },
21840
+ label: {
21841
+ type: "string",
21842
+ description: "Localized lifecycle status label",
21843
+ example: "Encaissée"
21844
+ }
21845
+ }
21602
21846
  }
21603
21847
  }
21604
21848
  }, {
@@ -23266,6 +23510,13 @@ const InvoiceCreateSchema = { allOf: [{
23266
23510
  "mixed"
23267
23511
  ],
23268
23512
  example: "product"
23513
+ },
23514
+ einvoicing_electronic_address: {
23515
+ type: "string",
23516
+ nullable: true,
23517
+ maxLength: 255,
23518
+ description: "E-invoicing routing address identifier for this document",
23519
+ example: "987463775"
23269
23520
  }
23270
23521
  }
23271
23522
  }, {
@@ -23930,6 +24181,13 @@ const DepositInvoiceCreateSchema = {
23930
24181
  "mixed"
23931
24182
  ],
23932
24183
  example: "product"
24184
+ },
24185
+ einvoicing_electronic_address: {
24186
+ type: "string",
24187
+ nullable: true,
24188
+ maxLength: 255,
24189
+ description: "E-invoicing routing address identifier for this document",
24190
+ example: "987463775"
23933
24191
  }
23934
24192
  },
23935
24193
  required: ["parent", "rows"]
@@ -24107,6 +24365,13 @@ const DepositInvoiceUpdateSchema = {
24107
24365
  "mixed"
24108
24366
  ],
24109
24367
  example: "product"
24368
+ },
24369
+ einvoicing_electronic_address: {
24370
+ type: "string",
24371
+ nullable: true,
24372
+ maxLength: 255,
24373
+ description: "E-invoicing routing address identifier for this document",
24374
+ example: "987463775"
24110
24375
  }
24111
24376
  }
24112
24377
  };
@@ -25062,6 +25327,43 @@ const DepositInvoiceMetadataSchema = {
25062
25327
  is_document_compliant: {
25063
25328
  type: "boolean",
25064
25329
  description: "Compliance state of the parent document on creation, or of the edited document on update"
25330
+ },
25331
+ company_einvoicing: {
25332
+ type: "object",
25333
+ properties: {
25334
+ is_subject: {
25335
+ type: "boolean",
25336
+ description: "Company is subject to e-invoicing"
25337
+ },
25338
+ is_compliant: {
25339
+ type: "boolean",
25340
+ description: "Company is compliant to e-invoicing"
25341
+ },
25342
+ violations: {
25343
+ type: "array",
25344
+ description: "List of non-compliant reasons",
25345
+ items: {
25346
+ type: "string",
25347
+ enum: [
25348
+ "missing_address",
25349
+ "incomplete_address",
25350
+ "missing_siren",
25351
+ "invalid_siren_format",
25352
+ "missing_siret",
25353
+ "invalid_siret_format",
25354
+ "invalid_vat_format",
25355
+ "missing_vat_eu",
25356
+ "missing_routing_address"
25357
+ ]
25358
+ }
25359
+ }
25360
+ }
25361
+ },
25362
+ einvoicing_electronic_address: {
25363
+ type: "string",
25364
+ nullable: true,
25365
+ description: "E-invoicing routing address identifier (document value if set, otherwise third default)",
25366
+ example: "987463775"
25065
25367
  }
25066
25368
  }
25067
25369
  };
@@ -25223,9 +25525,21 @@ const ProgressInvoiceCreateSchema = {
25223
25525
  example: "2022-01-02"
25224
25526
  },
25225
25527
  validate: {
25226
- type: "boolean",
25227
- description: "If true the invoice will be validated with definitive number and will not be editable.",
25228
- default: false
25528
+ type: "object",
25529
+ description: "Validation options for the progress invoice.",
25530
+ additionalProperties: false,
25531
+ properties: {
25532
+ status: {
25533
+ type: "boolean",
25534
+ description: "If true the invoice will be validated with definitive number and will not be editable."
25535
+ },
25536
+ flow: {
25537
+ type: "string",
25538
+ description: "E-invoicing flow applied when validating the invoice. Optional — when omitted, the recommended flow will be used. When provided, the value is checked against the recommended flow:\n - if the invoice is out of the e-invoicing scope, a validation error is returned;\n - if the detected flow is forced (the opposite flow is not selectable) and differs from the value provided, a validation error is returned;\n - otherwise, the value provided is applied.\n",
25539
+ enum: ["einvoicing", "ereporting"]
25540
+ }
25541
+ },
25542
+ required: ["status"]
25229
25543
  },
25230
25544
  subject: {
25231
25545
  type: "string",
@@ -25882,6 +26196,13 @@ const ProgressInvoiceCreateSchema = {
25882
26196
  "mixed"
25883
26197
  ],
25884
26198
  example: "product"
26199
+ },
26200
+ einvoicing_electronic_address: {
26201
+ type: "string",
26202
+ nullable: true,
26203
+ maxLength: 255,
26204
+ description: "E-invoicing routing address identifier for this document",
26205
+ example: "987463775"
25885
26206
  }
25886
26207
  },
25887
26208
  required: ["parent", "rows"]
@@ -26343,12 +26664,24 @@ const InvoiceUpdateSchema = { allOf: [{ $ref: "#/components/schemas/InvoiceCreat
26343
26664
  }] };
26344
26665
  const ValidateInvoiceSchema = {
26345
26666
  type: "object",
26346
- properties: { date: {
26347
- type: "string",
26348
- format: "date",
26349
- example: "2022-01-01",
26350
- description: "Date of document.<br/> > Depending on your conformity settings, the date may not be greater than the current date.\n"
26351
- } }
26667
+ properties: {
26668
+ date: {
26669
+ type: "string",
26670
+ format: "date",
26671
+ example: "2022-01-01",
26672
+ description: "Date of document.<br/> > Depending on your conformity settings, the date may not be greater than the current date.\n"
26673
+ },
26674
+ einvoicing_electronic_address: {
26675
+ type: "string",
26676
+ maxLength: 255,
26677
+ description: "E-invoicing routing address the validated document is sent to. Optional — applied only when the resolved flow is e-invoicing, ignored otherwise.\n"
26678
+ },
26679
+ einvoicing_flow: {
26680
+ type: "string",
26681
+ description: "E-invoicing flow applied when validating the document. Optional — when omitted, the recommended flow will be used. When provided, the value is checked against the recommended flow:\n - if the document is out of the e-invoicing scope, a validation error is returned;\n - if the detected flow is forced (the opposite flow is not selectable) and differs from the value provided, a validation error is returned;\n - otherwise, the value provided is applied.\n",
26682
+ enum: ["einvoicing", "ereporting"]
26683
+ }
26684
+ }
26352
26685
  };
26353
26686
  const CreditNoteSchema = {
26354
26687
  title: "Credit Note",
@@ -26676,6 +27009,36 @@ const CreditNoteSchema = {
26676
27009
  ],
26677
27010
  example: "product"
26678
27011
  },
27012
+ einvoicing_electronic_address: {
27013
+ type: "string",
27014
+ nullable: true,
27015
+ description: "E-invoicing routing address identifier for this document",
27016
+ example: "987463775"
27017
+ },
27018
+ einvoicing_flow: {
27019
+ type: "string",
27020
+ nullable: true,
27021
+ description: "E-invoicing flow applied when the document was validated",
27022
+ enum: ["einvoicing", "ereporting"],
27023
+ example: "einvoicing"
27024
+ },
27025
+ lifecycle_status: {
27026
+ type: "object",
27027
+ nullable: true,
27028
+ description: "Last known e-invoicing lifecycle status of the document",
27029
+ properties: {
27030
+ status: {
27031
+ type: "integer",
27032
+ description: "AFNOR lifecycle status code",
27033
+ example: 212
27034
+ },
27035
+ label: {
27036
+ type: "string",
27037
+ description: "Localized lifecycle status label",
27038
+ example: "Encaissée"
27039
+ }
27040
+ }
27041
+ },
26679
27042
  _embed: {
26680
27043
  title: "Credit Note Embed",
26681
27044
  allOf: [
@@ -27056,6 +27419,36 @@ const CreditNoteOneSchema = { allOf: [{
27056
27419
  ],
27057
27420
  example: "product"
27058
27421
  },
27422
+ einvoicing_electronic_address: {
27423
+ type: "string",
27424
+ nullable: true,
27425
+ description: "E-invoicing routing address identifier for this document",
27426
+ example: "987463775"
27427
+ },
27428
+ einvoicing_flow: {
27429
+ type: "string",
27430
+ nullable: true,
27431
+ description: "E-invoicing flow applied when the document was validated",
27432
+ enum: ["einvoicing", "ereporting"],
27433
+ example: "einvoicing"
27434
+ },
27435
+ lifecycle_status: {
27436
+ type: "object",
27437
+ nullable: true,
27438
+ description: "Last known e-invoicing lifecycle status of the document",
27439
+ properties: {
27440
+ status: {
27441
+ type: "integer",
27442
+ description: "AFNOR lifecycle status code",
27443
+ example: 212
27444
+ },
27445
+ label: {
27446
+ type: "string",
27447
+ description: "Localized lifecycle status label",
27448
+ example: "Encaissée"
27449
+ }
27450
+ }
27451
+ },
27059
27452
  _embed: { $ref: "#/components/schemas/CreditNote/properties/_embed" }
27060
27453
  }
27061
27454
  }, {
@@ -27222,6 +27615,13 @@ const CreditNoteCreateSchema = { allOf: [{
27222
27615
  issuer_address_id: {
27223
27616
  type: "integer",
27224
27617
  description: "Issuer address, by default take main account address."
27618
+ },
27619
+ einvoicing_electronic_address: {
27620
+ type: "string",
27621
+ nullable: true,
27622
+ maxLength: 255,
27623
+ description: "E-invoicing routing address identifier for this document",
27624
+ example: "987463775"
27225
27625
  }
27226
27626
  }
27227
27627
  }, {
@@ -27254,12 +27654,24 @@ const CreditNoteUpdateSchema = { allOf: [{ $ref: "#/components/schemas/CreditNot
27254
27654
  }] };
27255
27655
  const CreditNoteValidateSchema = {
27256
27656
  type: "object",
27257
- properties: { date: {
27258
- type: "string",
27259
- format: "date",
27260
- example: "2022-01-01",
27261
- description: "Date of document.<br/> > Depending on your conformity settings, the date may not be greater than the current date.\n"
27262
- } }
27657
+ properties: {
27658
+ date: {
27659
+ type: "string",
27660
+ format: "date",
27661
+ example: "2022-01-01",
27662
+ description: "Date of document.<br/> > Depending on your conformity settings, the date may not be greater than the current date.\n"
27663
+ },
27664
+ einvoicing_electronic_address: {
27665
+ type: "string",
27666
+ maxLength: 255,
27667
+ description: "E-invoicing routing address the validated document is sent to. Optional — applied only when the resolved flow is e-invoicing, ignored otherwise.\n"
27668
+ },
27669
+ einvoicing_flow: {
27670
+ type: "string",
27671
+ description: "E-invoicing flow applied when validating the document. Optional — when omitted, the recommended flow will be used. When provided, the value is checked against the recommended flow:\n - if the document is out of the e-invoicing scope, a validation error is returned;\n - if the detected flow is forced (the opposite flow is not selectable) and differs from the value provided, a validation error is returned;\n - otherwise, the value provided is applied.\n",
27672
+ enum: ["einvoicing", "ereporting"]
27673
+ }
27674
+ }
27263
27675
  };
27264
27676
  const CreditNoteComputeSchema = {
27265
27677
  title: "Credit Note",
@@ -32417,6 +32829,506 @@ const UpdateIndividualSharingSchema = {
32417
32829
  additionalProperties: false
32418
32830
  };
32419
32831
  const UpdateCompanySharingSchema = { $ref: "#/components/schemas/UpdateIndividualSharing" };
32832
+ const CompanySchema = {
32833
+ title: "Company",
32834
+ type: "object",
32835
+ description: "",
32836
+ "x-examples": {},
32837
+ properties: {
32838
+ id: {
32839
+ type: "integer",
32840
+ description: "Unique ID",
32841
+ example: 6657
32842
+ },
32843
+ type: {
32844
+ type: "string",
32845
+ enum: [
32846
+ "prospect",
32847
+ "client",
32848
+ "supplier"
32849
+ ]
32850
+ },
32851
+ name: {
32852
+ type: "string",
32853
+ description: "Company name",
32854
+ example: "Example company",
32855
+ maxLength: 250
32856
+ },
32857
+ email: {
32858
+ description: "Company email",
32859
+ type: "string",
32860
+ format: "email",
32861
+ example: "contact@example-company.com",
32862
+ nullable: true
32863
+ },
32864
+ website: {
32865
+ type: "string",
32866
+ format: "url",
32867
+ description: "Company website",
32868
+ example: "http://example-company.com",
32869
+ nullable: true
32870
+ },
32871
+ phone_number: {
32872
+ type: "string",
32873
+ description: "Company phone number",
32874
+ example: "+33100000000",
32875
+ nullable: true
32876
+ },
32877
+ mobile_number: {
32878
+ type: "string",
32879
+ description: "Company mobile number",
32880
+ example: "+33600000000",
32881
+ nullable: true
32882
+ },
32883
+ fax_number: {
32884
+ type: "string",
32885
+ description: "Company Fax number",
32886
+ example: "+33100000000",
32887
+ nullable: true
32888
+ },
32889
+ legal_france: {
32890
+ type: "object",
32891
+ additionalProperties: false,
32892
+ properties: {
32893
+ siret: {
32894
+ description: "Company Siret",
32895
+ type: "string",
32896
+ nullable: true,
32897
+ example: "73282932000074"
32898
+ },
32899
+ siren: {
32900
+ description: "Company Siren",
32901
+ type: "string",
32902
+ nullable: true,
32903
+ example: "732829320"
32904
+ },
32905
+ vat: {
32906
+ description: "VAT number",
32907
+ type: "string",
32908
+ nullable: true,
32909
+ example: "FR99999999999"
32910
+ },
32911
+ ape_naf_code: {
32912
+ description: "APE/NAF Code",
32913
+ type: "string",
32914
+ nullable: true,
32915
+ example: "4711C"
32916
+ },
32917
+ company_type: {
32918
+ description: "Company type",
32919
+ type: "string",
32920
+ nullable: true,
32921
+ example: "SAS"
32922
+ },
32923
+ rcs_immatriculation: {
32924
+ description: "RCS immatriculation code",
32925
+ type: "string",
32926
+ nullable: true,
32927
+ example: "RCS xxxxx"
32928
+ }
32929
+ }
32930
+ },
32931
+ capital: {
32932
+ type: "string",
32933
+ nullable: true,
32934
+ description: "Company Capital",
32935
+ example: "4000"
32936
+ },
32937
+ reference: {
32938
+ type: "string",
32939
+ description: "Company reference",
32940
+ example: "CLI-1654",
32941
+ nullable: true
32942
+ },
32943
+ note: {
32944
+ type: "string",
32945
+ description: "Note on company",
32946
+ example: "An handed-written note describing this company"
32947
+ },
32948
+ auxiliary_code: {
32949
+ type: "string",
32950
+ description: "Auxiliary code",
32951
+ example: "0EX11C",
32952
+ nullable: true
32953
+ },
32954
+ social: {
32955
+ type: "object",
32956
+ properties: {
32957
+ twitter: {
32958
+ type: "string",
32959
+ format: "url",
32960
+ description: "Twitter account",
32961
+ example: "https://twitter.com/example",
32962
+ nullable: true
32963
+ },
32964
+ facebook: {
32965
+ type: "string",
32966
+ format: "url",
32967
+ description: "Facebook account",
32968
+ example: "https://facebook.com/example",
32969
+ nullable: true
32970
+ },
32971
+ linkedin: {
32972
+ type: "string",
32973
+ format: "url",
32974
+ description: "Linkedin account",
32975
+ example: "https://linkedin.com/example",
32976
+ nullable: true
32977
+ },
32978
+ viadeo: {
32979
+ type: "string",
32980
+ format: "url",
32981
+ description: "Deprecated, no longer use",
32982
+ deprecated: true,
32983
+ example: "https://viadeo.com/example",
32984
+ nullable: true
32985
+ },
32986
+ instagram: {
32987
+ type: "string",
32988
+ format: "url",
32989
+ description: "Instagram account",
32990
+ example: "https://www.instagram.com/example",
32991
+ nullable: true
32992
+ }
32993
+ }
32994
+ },
32995
+ rate_category_id: {
32996
+ type: "integer",
32997
+ nullable: true,
32998
+ description: "Company Rate category id",
32999
+ example: 9956
33000
+ },
33001
+ main_contact_id: {
33002
+ description: "Main contact unique ID",
33003
+ type: "integer",
33004
+ nullable: true,
33005
+ minimum: 1,
33006
+ example: 6654
33007
+ },
33008
+ dunning_contact_id: {
33009
+ description: "Dunning contact unique ID",
33010
+ type: "integer",
33011
+ nullable: true,
33012
+ minimum: 1,
33013
+ example: 6654
33014
+ },
33015
+ invoicing_contact_id: {
33016
+ description: "Invoicing contact unique ID",
33017
+ type: "integer",
33018
+ nullable: true,
33019
+ minimum: 1,
33020
+ example: 6654
33021
+ },
33022
+ invoicing_address_id: {
33023
+ description: "Invoicing address unique ID",
33024
+ type: "integer",
33025
+ nullable: true,
33026
+ minimum: 1,
33027
+ example: 9987
33028
+ },
33029
+ delivery_address_id: {
33030
+ description: "Delivery address unique ID",
33031
+ type: "integer",
33032
+ nullable: true,
33033
+ minimum: 1,
33034
+ example: 6547
33035
+ },
33036
+ accounting_code_id: {
33037
+ type: "integer",
33038
+ nullable: true,
33039
+ description: "Company accounting code id",
33040
+ example: 12345
33041
+ },
33042
+ accounting_purchase_code_id: {
33043
+ type: "integer",
33044
+ nullable: true,
33045
+ description: "Company accouting purchase code id",
33046
+ example: 98556
33047
+ },
33048
+ owner: { $ref: "#/components/schemas/Model/properties/owner/allOf/0" },
33049
+ created: {
33050
+ type: "string",
33051
+ format: "date-time",
33052
+ nullable: false,
33053
+ description: "Datetime of creating company",
33054
+ example: "2020-05-29T11:22:03+02:00"
33055
+ },
33056
+ updated_at: {
33057
+ type: "string",
33058
+ format: "date-time",
33059
+ nullable: false,
33060
+ description: "Datetime of the last update of the company",
33061
+ example: "2020-05-29T11:22:03+02:00"
33062
+ },
33063
+ is_archived: {
33064
+ type: "boolean",
33065
+ nullable: false,
33066
+ description: "Status archived or not",
33067
+ example: false
33068
+ },
33069
+ business_segment: {
33070
+ type: "object",
33071
+ description: "Company business segment",
33072
+ nullable: true,
33073
+ properties: {
33074
+ id: {
33075
+ type: "integer",
33076
+ example: 3
33077
+ },
33078
+ label: {
33079
+ type: "string",
33080
+ example: "Software publisher / Digital services company"
33081
+ }
33082
+ }
33083
+ },
33084
+ number_of_employees: {
33085
+ type: "object",
33086
+ description: "Number of employees of company",
33087
+ nullable: true,
33088
+ properties: {
33089
+ id: {
33090
+ type: "integer",
33091
+ example: 1
33092
+ },
33093
+ label: {
33094
+ type: "string",
33095
+ example: "From 1 to 5"
33096
+ }
33097
+ }
33098
+ },
33099
+ main_activity_description: {
33100
+ type: "string",
33101
+ description: "Description of the company main activity",
33102
+ example: "Application software publishing",
33103
+ nullable: true
33104
+ },
33105
+ marketing_campaigns_subscriptions: {
33106
+ type: "array",
33107
+ items: {
33108
+ type: "string",
33109
+ enum: [
33110
+ "sms",
33111
+ "phone",
33112
+ "email",
33113
+ "postal_mail",
33114
+ "custom"
33115
+ ]
33116
+ },
33117
+ description: "list of campaign type subcribed",
33118
+ uniqueItems: true
33119
+ },
33120
+ einvoicing_electronic_address: {
33121
+ type: "string",
33122
+ nullable: true,
33123
+ description: "Default e-invoicing routing address identifier",
33124
+ example: "987463775"
33125
+ }
33126
+ }
33127
+ };
33128
+ const IndividualSchema = {
33129
+ title: "Individual",
33130
+ type: "object",
33131
+ description: "",
33132
+ "x-examples": {},
33133
+ properties: {
33134
+ id: {
33135
+ type: "integer",
33136
+ description: "Unique ID",
33137
+ example: 6657
33138
+ },
33139
+ type: {
33140
+ type: "string",
33141
+ enum: [
33142
+ "prospect",
33143
+ "client",
33144
+ "supplier"
33145
+ ]
33146
+ },
33147
+ last_name: {
33148
+ type: "string",
33149
+ description: "Individual contact lastname",
33150
+ example: "Martin",
33151
+ maxLength: 200
33152
+ },
33153
+ first_name: {
33154
+ type: "string",
33155
+ description: "Individual contact firstname",
33156
+ example: "Jean",
33157
+ nullable: true,
33158
+ maxLength: 200
33159
+ },
33160
+ civility: {
33161
+ type: "string",
33162
+ description: "Civility of individual",
33163
+ example: "mr",
33164
+ nullable: true,
33165
+ enum: [
33166
+ "mr",
33167
+ "mrs",
33168
+ "ms"
33169
+ ]
33170
+ },
33171
+ email: {
33172
+ description: "Individual email",
33173
+ type: "string",
33174
+ format: "email",
33175
+ example: "jean.martin@personal-example.com",
33176
+ nullable: true
33177
+ },
33178
+ website: {
33179
+ type: "string",
33180
+ format: "url",
33181
+ description: "Individual website",
33182
+ example: "http://personal-example.com",
33183
+ nullable: true
33184
+ },
33185
+ phone_number: {
33186
+ type: "string",
33187
+ description: "Phone number",
33188
+ example: "+33100000000",
33189
+ nullable: true
33190
+ },
33191
+ mobile_number: {
33192
+ type: "string",
33193
+ description: "Mobile number",
33194
+ example: "+33600000000",
33195
+ nullable: true
33196
+ },
33197
+ fax_number: {
33198
+ type: "string",
33199
+ description: "Fax number",
33200
+ example: "+33100000000",
33201
+ nullable: true
33202
+ },
33203
+ reference: {
33204
+ type: "string",
33205
+ description: "Internal reference",
33206
+ example: "IND-1654",
33207
+ nullable: true
33208
+ },
33209
+ note: {
33210
+ type: "string",
33211
+ description: "Note on individual",
33212
+ example: "An handed-written note describing this individual"
33213
+ },
33214
+ auxiliary_code: {
33215
+ type: "string",
33216
+ description: "Auxiliary code",
33217
+ example: "0EX11C",
33218
+ nullable: true
33219
+ },
33220
+ social: { $ref: "#/components/schemas/Company/properties/social" },
33221
+ rate_category_id: {
33222
+ type: "integer",
33223
+ nullable: true,
33224
+ description: "Rate category id",
33225
+ example: 9956
33226
+ },
33227
+ main_contact_id: {
33228
+ description: "Main contact unique ID",
33229
+ type: "integer",
33230
+ nullable: true,
33231
+ minimum: 1,
33232
+ example: 6654
33233
+ },
33234
+ dunning_contact_id: {
33235
+ description: "Dunning contact unique ID",
33236
+ type: "integer",
33237
+ nullable: true,
33238
+ minimum: 1,
33239
+ example: 6654
33240
+ },
33241
+ invoicing_contact_id: {
33242
+ description: "Invoicing contact unique ID",
33243
+ type: "integer",
33244
+ nullable: true,
33245
+ minimum: 1,
33246
+ example: 6654
33247
+ },
33248
+ invoicing_address_id: {
33249
+ description: "Invoicing address unique ID",
33250
+ type: "integer",
33251
+ nullable: true,
33252
+ minimum: 1,
33253
+ example: 9987
33254
+ },
33255
+ delivery_address_id: {
33256
+ description: "Delivery address unique ID",
33257
+ type: "integer",
33258
+ nullable: true,
33259
+ minimum: 1,
33260
+ example: 6547
33261
+ },
33262
+ accounting_code_id: {
33263
+ type: "integer",
33264
+ nullable: true,
33265
+ description: "Accounting code id",
33266
+ example: 12345
33267
+ },
33268
+ accounting_purchase_code_id: {
33269
+ type: "integer",
33270
+ nullable: true,
33271
+ description: "Accouting purchase code id",
33272
+ example: 98556
33273
+ },
33274
+ owner: { $ref: "#/components/schemas/Model/properties/owner/allOf/0" },
33275
+ created: {
33276
+ type: "string",
33277
+ format: "date-time",
33278
+ nullable: false,
33279
+ description: "Datetime of creation",
33280
+ example: "2020-05-29T11:22:03+02:00"
33281
+ },
33282
+ updated_at: {
33283
+ type: "string",
33284
+ format: "date-time",
33285
+ nullable: false,
33286
+ description: "Datetime of the last update of the individual",
33287
+ example: "2020-05-29T11:22:03+02:00"
33288
+ },
33289
+ is_archived: {
33290
+ type: "boolean",
33291
+ nullable: false,
33292
+ description: "Status archived or not",
33293
+ example: false
33294
+ },
33295
+ marketing_campaigns_subscriptions: {
33296
+ type: "array",
33297
+ items: {
33298
+ type: "string",
33299
+ enum: [
33300
+ "sms",
33301
+ "phone",
33302
+ "email",
33303
+ "postal_mail",
33304
+ "custom"
33305
+ ]
33306
+ },
33307
+ description: "list of campaign type subcribed",
33308
+ uniqueItems: true
33309
+ },
33310
+ sync: {
33311
+ type: "object",
33312
+ properties: {
33313
+ mailchimp: {
33314
+ type: "boolean",
33315
+ description: "Activate the mailchimp synchronization",
33316
+ nullable: false
33317
+ },
33318
+ mailjet: {
33319
+ type: "boolean",
33320
+ description: "Activate the mailjet synchronization",
33321
+ nullable: false
33322
+ },
33323
+ simplemail: {
33324
+ type: "boolean",
33325
+ description: "Activate the simplemail synchronization",
33326
+ nullable: false
33327
+ }
33328
+ }
33329
+ }
33330
+ }
33331
+ };
32420
33332
  const UpdateDocumentSharingSchema = { $ref: "#/components/schemas/UpdateIndividualSharing" };
32421
33333
  const ProformaInvoiceOneSchema = { allOf: [{
32422
33334
  title: "Proforma Invoice",
@@ -34955,6 +35867,20 @@ const ProgressInvoiceMetadataSchema = {
34955
35867
  default: "per-line",
34956
35868
  description: "Progress invoice mode",
34957
35869
  enum: ["global", "per-line"]
35870
+ },
35871
+ recipient_legal: {
35872
+ type: "object",
35873
+ properties: {
35874
+ is_company: { type: "boolean" },
35875
+ siren: {
35876
+ type: "string",
35877
+ nullable: true
35878
+ },
35879
+ vat_number: {
35880
+ type: "string",
35881
+ nullable: true
35882
+ }
35883
+ }
34958
35884
  }
34959
35885
  }
34960
35886
  }]
@@ -35731,6 +36657,13 @@ const ProgressInvoiceMetadataSchema = {
35731
36657
  is_document_compliant: {
35732
36658
  type: "boolean",
35733
36659
  description: "Compliance state of the parent document on creation, or of the edited document on update"
36660
+ },
36661
+ company_einvoicing: { $ref: "#/components/schemas/DepositInvoiceMetadata/properties/company_einvoicing" },
36662
+ einvoicing_electronic_address: {
36663
+ type: "string",
36664
+ nullable: true,
36665
+ description: "E-invoicing routing address identifier (document value if set, otherwise third default)",
36666
+ example: "987463775"
35734
36667
  }
35735
36668
  }
35736
36669
  };
@@ -35785,11 +36718,7 @@ const ProgressInvoiceUpdateSchema = {
35785
36718
  description: "Date of the invoice",
35786
36719
  example: "2022-01-02"
35787
36720
  },
35788
- validate: {
35789
- type: "boolean",
35790
- description: "If true the invoice will be validated with definitive number and will not be editable.",
35791
- default: false
35792
- },
36721
+ validate: { $ref: "#/components/schemas/ProgressInvoiceCreate/properties/validate" },
35793
36722
  subject: {
35794
36723
  type: "string",
35795
36724
  description: "Subject of the invoice"
@@ -35940,6 +36869,13 @@ const ProgressInvoiceUpdateSchema = {
35940
36869
  "mixed"
35941
36870
  ],
35942
36871
  example: "product"
36872
+ },
36873
+ einvoicing_electronic_address: {
36874
+ type: "string",
36875
+ nullable: true,
36876
+ maxLength: 255,
36877
+ description: "E-invoicing routing address identifier for this document",
36878
+ example: "987463775"
35943
36879
  }
35944
36880
  }
35945
36881
  };
@@ -37628,7 +38564,7 @@ const ContactItemWritableSchema = {
37628
38564
  description: "Note on contact",
37629
38565
  example: "An handed-written note describing this contact"
37630
38566
  },
37631
- social: { allOf: [{ $ref: "#/paths/~1companies/post/requestBody/content/application~1json/schema/properties/social" }] },
38567
+ social: { allOf: [{ $ref: "#/components/schemas/Company/properties/social" }] },
37632
38568
  sync: {
37633
38569
  type: "object",
37634
38570
  properties: {
@@ -39596,7 +40532,7 @@ const SaleEmbedWritableSchema = {
39596
40532
  example: "+33100000000",
39597
40533
  nullable: true
39598
40534
  },
39599
- legal_france: { $ref: "#/paths/~1companies~1{id}~1share/put/responses/200/content/application~1json/schema/properties/legal_france" },
40535
+ legal_france: { $ref: "#/components/schemas/Company/properties/legal_france" },
39600
40536
  capital: {
39601
40537
  type: "string",
39602
40538
  nullable: true,
@@ -39620,7 +40556,7 @@ const SaleEmbedWritableSchema = {
39620
40556
  example: "0EX11C",
39621
40557
  nullable: true
39622
40558
  },
39623
- social: { $ref: "#/paths/~1companies/post/requestBody/content/application~1json/schema/properties/social" },
40559
+ social: { $ref: "#/components/schemas/Company/properties/social" },
39624
40560
  rate_category_id: {
39625
40561
  type: "integer",
39626
40562
  nullable: true,
@@ -39744,6 +40680,12 @@ const SaleEmbedWritableSchema = {
39744
40680
  },
39745
40681
  description: "list of campaign type subcribed",
39746
40682
  uniqueItems: true
40683
+ },
40684
+ einvoicing_electronic_address: {
40685
+ type: "string",
40686
+ nullable: true,
40687
+ description: "Default e-invoicing routing address identifier",
40688
+ example: "987463775"
39747
40689
  }
39748
40690
  }
39749
40691
  },
@@ -39839,7 +40781,7 @@ const SaleEmbedWritableSchema = {
39839
40781
  example: "0EX11C",
39840
40782
  nullable: true
39841
40783
  },
39842
- social: { $ref: "#/paths/~1companies/post/requestBody/content/application~1json/schema/properties/social" },
40784
+ social: { $ref: "#/components/schemas/Company/properties/social" },
39843
40785
  rate_category_id: {
39844
40786
  type: "integer",
39845
40787
  nullable: true,
@@ -42456,7 +43398,7 @@ const OcrWritableSchema = {
42456
43398
  linked_type: {
42457
43399
  description: "Type of linked object",
42458
43400
  type: "string",
42459
- enum: ["purInvoice"],
43401
+ enum: ["purInvoice", "purCreditNote"],
42460
43402
  example: "purInvoice"
42461
43403
  },
42462
43404
  linked_id: {
@@ -45600,6 +46542,36 @@ const InvoiceWritableSchema = {
45600
46542
  "mixed"
45601
46543
  ],
45602
46544
  example: "product"
46545
+ },
46546
+ einvoicing_electronic_address: {
46547
+ type: "string",
46548
+ nullable: true,
46549
+ description: "E-invoicing routing address identifier for this document",
46550
+ example: "987463775"
46551
+ },
46552
+ einvoicing_flow: {
46553
+ type: "string",
46554
+ nullable: true,
46555
+ description: "E-invoicing flow applied when the document was validated",
46556
+ enum: ["einvoicing", "ereporting"],
46557
+ example: "einvoicing"
46558
+ },
46559
+ lifecycle_status: {
46560
+ type: "object",
46561
+ nullable: true,
46562
+ description: "Last known e-invoicing lifecycle status of the document",
46563
+ properties: {
46564
+ status: {
46565
+ type: "integer",
46566
+ description: "AFNOR lifecycle status code",
46567
+ example: 212
46568
+ },
46569
+ label: {
46570
+ type: "string",
46571
+ description: "Localized lifecycle status label",
46572
+ example: "Encaissée"
46573
+ }
46574
+ }
45603
46575
  }
45604
46576
  }
45605
46577
  };
@@ -45839,6 +46811,36 @@ const InvoiceOneWritableSchema = {
45839
46811
  "mixed"
45840
46812
  ],
45841
46813
  example: "product"
46814
+ },
46815
+ einvoicing_electronic_address: {
46816
+ type: "string",
46817
+ nullable: true,
46818
+ description: "E-invoicing routing address identifier for this document",
46819
+ example: "987463775"
46820
+ },
46821
+ einvoicing_flow: {
46822
+ type: "string",
46823
+ nullable: true,
46824
+ description: "E-invoicing flow applied when the document was validated",
46825
+ enum: ["einvoicing", "ereporting"],
46826
+ example: "einvoicing"
46827
+ },
46828
+ lifecycle_status: {
46829
+ type: "object",
46830
+ nullable: true,
46831
+ description: "Last known e-invoicing lifecycle status of the document",
46832
+ properties: {
46833
+ status: {
46834
+ type: "integer",
46835
+ description: "AFNOR lifecycle status code",
46836
+ example: 212
46837
+ },
46838
+ label: {
46839
+ type: "string",
46840
+ description: "Localized lifecycle status label",
46841
+ example: "Encaissée"
46842
+ }
46843
+ }
45842
46844
  }
45843
46845
  }
45844
46846
  }, {
@@ -47064,6 +48066,13 @@ const InvoiceCreateWritableSchema = { allOf: [{
47064
48066
  "mixed"
47065
48067
  ],
47066
48068
  example: "product"
48069
+ },
48070
+ einvoicing_electronic_address: {
48071
+ type: "string",
48072
+ nullable: true,
48073
+ maxLength: 255,
48074
+ description: "E-invoicing routing address identifier for this document",
48075
+ example: "987463775"
47067
48076
  }
47068
48077
  }
47069
48078
  }, {
@@ -47722,6 +48731,13 @@ const DepositInvoiceCreateWritableSchema = {
47722
48731
  "mixed"
47723
48732
  ],
47724
48733
  example: "product"
48734
+ },
48735
+ einvoicing_electronic_address: {
48736
+ type: "string",
48737
+ nullable: true,
48738
+ maxLength: 255,
48739
+ description: "E-invoicing routing address identifier for this document",
48740
+ example: "987463775"
47725
48741
  }
47726
48742
  },
47727
48743
  required: ["parent", "rows"]
@@ -47899,6 +48915,13 @@ const DepositInvoiceUpdateWritableSchema = {
47899
48915
  "mixed"
47900
48916
  ],
47901
48917
  example: "product"
48918
+ },
48919
+ einvoicing_electronic_address: {
48920
+ type: "string",
48921
+ nullable: true,
48922
+ maxLength: 255,
48923
+ description: "E-invoicing routing address identifier for this document",
48924
+ example: "987463775"
47902
48925
  }
47903
48926
  }
47904
48927
  };
@@ -48546,6 +49569,43 @@ const DepositInvoiceMetadataWritableSchema = {
48546
49569
  is_document_compliant: {
48547
49570
  type: "boolean",
48548
49571
  description: "Compliance state of the parent document on creation, or of the edited document on update"
49572
+ },
49573
+ company_einvoicing: {
49574
+ type: "object",
49575
+ properties: {
49576
+ is_subject: {
49577
+ type: "boolean",
49578
+ description: "Company is subject to e-invoicing"
49579
+ },
49580
+ is_compliant: {
49581
+ type: "boolean",
49582
+ description: "Company is compliant to e-invoicing"
49583
+ },
49584
+ violations: {
49585
+ type: "array",
49586
+ description: "List of non-compliant reasons",
49587
+ items: {
49588
+ type: "string",
49589
+ enum: [
49590
+ "missing_address",
49591
+ "incomplete_address",
49592
+ "missing_siren",
49593
+ "invalid_siren_format",
49594
+ "missing_siret",
49595
+ "invalid_siret_format",
49596
+ "invalid_vat_format",
49597
+ "missing_vat_eu",
49598
+ "missing_routing_address"
49599
+ ]
49600
+ }
49601
+ }
49602
+ }
49603
+ },
49604
+ einvoicing_electronic_address: {
49605
+ type: "string",
49606
+ nullable: true,
49607
+ description: "E-invoicing routing address identifier (document value if set, otherwise third default)",
49608
+ example: "987463775"
48549
49609
  }
48550
49610
  }
48551
49611
  };
@@ -48707,9 +49767,21 @@ const ProgressInvoiceCreateWritableSchema = {
48707
49767
  example: "2022-01-02"
48708
49768
  },
48709
49769
  validate: {
48710
- type: "boolean",
48711
- description: "If true the invoice will be validated with definitive number and will not be editable.",
48712
- default: false
49770
+ type: "object",
49771
+ description: "Validation options for the progress invoice.",
49772
+ additionalProperties: false,
49773
+ properties: {
49774
+ status: {
49775
+ type: "boolean",
49776
+ description: "If true the invoice will be validated with definitive number and will not be editable."
49777
+ },
49778
+ flow: {
49779
+ type: "string",
49780
+ description: "E-invoicing flow applied when validating the invoice. Optional — when omitted, the recommended flow will be used. When provided, the value is checked against the recommended flow:\n - if the invoice is out of the e-invoicing scope, a validation error is returned;\n - if the detected flow is forced (the opposite flow is not selectable) and differs from the value provided, a validation error is returned;\n - otherwise, the value provided is applied.\n",
49781
+ enum: ["einvoicing", "ereporting"]
49782
+ }
49783
+ },
49784
+ required: ["status"]
48713
49785
  },
48714
49786
  subject: {
48715
49787
  type: "string",
@@ -49366,6 +50438,13 @@ const ProgressInvoiceCreateWritableSchema = {
49366
50438
  "mixed"
49367
50439
  ],
49368
50440
  example: "product"
50441
+ },
50442
+ einvoicing_electronic_address: {
50443
+ type: "string",
50444
+ nullable: true,
50445
+ maxLength: 255,
50446
+ description: "E-invoicing routing address identifier for this document",
50447
+ example: "987463775"
49369
50448
  }
49370
50449
  },
49371
50450
  required: ["parent", "rows"]
@@ -49790,6 +50869,36 @@ const CreditNoteWritableSchema = {
49790
50869
  ],
49791
50870
  example: "product"
49792
50871
  },
50872
+ einvoicing_electronic_address: {
50873
+ type: "string",
50874
+ nullable: true,
50875
+ description: "E-invoicing routing address identifier for this document",
50876
+ example: "987463775"
50877
+ },
50878
+ einvoicing_flow: {
50879
+ type: "string",
50880
+ nullable: true,
50881
+ description: "E-invoicing flow applied when the document was validated",
50882
+ enum: ["einvoicing", "ereporting"],
50883
+ example: "einvoicing"
50884
+ },
50885
+ lifecycle_status: {
50886
+ type: "object",
50887
+ nullable: true,
50888
+ description: "Last known e-invoicing lifecycle status of the document",
50889
+ properties: {
50890
+ status: {
50891
+ type: "integer",
50892
+ description: "AFNOR lifecycle status code",
50893
+ example: 212
50894
+ },
50895
+ label: {
50896
+ type: "string",
50897
+ description: "Localized lifecycle status label",
50898
+ example: "Encaissée"
50899
+ }
50900
+ }
50901
+ },
49793
50902
  _embed: {
49794
50903
  title: "Credit Note Embed",
49795
50904
  allOf: [
@@ -50105,6 +51214,36 @@ const CreditNoteOneWritableSchema = { allOf: [{
50105
51214
  ],
50106
51215
  example: "product"
50107
51216
  },
51217
+ einvoicing_electronic_address: {
51218
+ type: "string",
51219
+ nullable: true,
51220
+ description: "E-invoicing routing address identifier for this document",
51221
+ example: "987463775"
51222
+ },
51223
+ einvoicing_flow: {
51224
+ type: "string",
51225
+ nullable: true,
51226
+ description: "E-invoicing flow applied when the document was validated",
51227
+ enum: ["einvoicing", "ereporting"],
51228
+ example: "einvoicing"
51229
+ },
51230
+ lifecycle_status: {
51231
+ type: "object",
51232
+ nullable: true,
51233
+ description: "Last known e-invoicing lifecycle status of the document",
51234
+ properties: {
51235
+ status: {
51236
+ type: "integer",
51237
+ description: "AFNOR lifecycle status code",
51238
+ example: 212
51239
+ },
51240
+ label: {
51241
+ type: "string",
51242
+ description: "Localized lifecycle status label",
51243
+ example: "Encaissée"
51244
+ }
51245
+ }
51246
+ },
50108
51247
  _embed: { $ref: "#/components/schemas/CreditNote/properties/_embed" }
50109
51248
  }
50110
51249
  }, {
@@ -50271,6 +51410,13 @@ const CreditNoteCreateWritableSchema = { allOf: [{
50271
51410
  issuer_address_id: {
50272
51411
  type: "integer",
50273
51412
  description: "Issuer address, by default take main account address."
51413
+ },
51414
+ einvoicing_electronic_address: {
51415
+ type: "string",
51416
+ nullable: true,
51417
+ maxLength: 255,
51418
+ description: "E-invoicing routing address identifier for this document",
51419
+ example: "987463775"
50274
51420
  }
50275
51421
  }
50276
51422
  }, {
@@ -52294,6 +53440,504 @@ const IndividualPreferencesWritableSchema = {
52294
53440
  }
52295
53441
  }
52296
53442
  };
53443
+ const CompanyWritableSchema = {
53444
+ title: "Company",
53445
+ type: "object",
53446
+ description: "",
53447
+ "x-examples": {},
53448
+ properties: {
53449
+ id: {
53450
+ type: "integer",
53451
+ description: "Unique ID",
53452
+ example: 6657
53453
+ },
53454
+ type: {
53455
+ type: "string",
53456
+ enum: [
53457
+ "prospect",
53458
+ "client",
53459
+ "supplier"
53460
+ ]
53461
+ },
53462
+ name: {
53463
+ type: "string",
53464
+ description: "Company name",
53465
+ example: "Example company",
53466
+ maxLength: 250
53467
+ },
53468
+ email: {
53469
+ description: "Company email",
53470
+ type: "string",
53471
+ format: "email",
53472
+ example: "contact@example-company.com",
53473
+ nullable: true
53474
+ },
53475
+ website: {
53476
+ type: "string",
53477
+ format: "url",
53478
+ description: "Company website",
53479
+ example: "http://example-company.com",
53480
+ nullable: true
53481
+ },
53482
+ phone_number: {
53483
+ type: "string",
53484
+ description: "Company phone number",
53485
+ example: "+33100000000",
53486
+ nullable: true
53487
+ },
53488
+ mobile_number: {
53489
+ type: "string",
53490
+ description: "Company mobile number",
53491
+ example: "+33600000000",
53492
+ nullable: true
53493
+ },
53494
+ fax_number: {
53495
+ type: "string",
53496
+ description: "Company Fax number",
53497
+ example: "+33100000000",
53498
+ nullable: true
53499
+ },
53500
+ legal_france: {
53501
+ type: "object",
53502
+ additionalProperties: false,
53503
+ properties: {
53504
+ siret: {
53505
+ description: "Company Siret",
53506
+ type: "string",
53507
+ nullable: true,
53508
+ example: "73282932000074"
53509
+ },
53510
+ siren: {
53511
+ description: "Company Siren",
53512
+ type: "string",
53513
+ nullable: true,
53514
+ example: "732829320"
53515
+ },
53516
+ vat: {
53517
+ description: "VAT number",
53518
+ type: "string",
53519
+ nullable: true,
53520
+ example: "FR99999999999"
53521
+ },
53522
+ ape_naf_code: {
53523
+ description: "APE/NAF Code",
53524
+ type: "string",
53525
+ nullable: true,
53526
+ example: "4711C"
53527
+ },
53528
+ company_type: {
53529
+ description: "Company type",
53530
+ type: "string",
53531
+ nullable: true,
53532
+ example: "SAS"
53533
+ },
53534
+ rcs_immatriculation: {
53535
+ description: "RCS immatriculation code",
53536
+ type: "string",
53537
+ nullable: true,
53538
+ example: "RCS xxxxx"
53539
+ }
53540
+ }
53541
+ },
53542
+ capital: {
53543
+ type: "string",
53544
+ nullable: true,
53545
+ description: "Company Capital",
53546
+ example: "4000"
53547
+ },
53548
+ reference: {
53549
+ type: "string",
53550
+ description: "Company reference",
53551
+ example: "CLI-1654",
53552
+ nullable: true
53553
+ },
53554
+ note: {
53555
+ type: "string",
53556
+ description: "Note on company",
53557
+ example: "An handed-written note describing this company"
53558
+ },
53559
+ auxiliary_code: {
53560
+ type: "string",
53561
+ description: "Auxiliary code",
53562
+ example: "0EX11C",
53563
+ nullable: true
53564
+ },
53565
+ social: {
53566
+ type: "object",
53567
+ properties: {
53568
+ twitter: {
53569
+ type: "string",
53570
+ format: "url",
53571
+ description: "Twitter account",
53572
+ example: "https://twitter.com/example",
53573
+ nullable: true
53574
+ },
53575
+ facebook: {
53576
+ type: "string",
53577
+ format: "url",
53578
+ description: "Facebook account",
53579
+ example: "https://facebook.com/example",
53580
+ nullable: true
53581
+ },
53582
+ linkedin: {
53583
+ type: "string",
53584
+ format: "url",
53585
+ description: "Linkedin account",
53586
+ example: "https://linkedin.com/example",
53587
+ nullable: true
53588
+ },
53589
+ viadeo: {
53590
+ type: "string",
53591
+ format: "url",
53592
+ description: "Deprecated, no longer use",
53593
+ deprecated: true,
53594
+ example: "https://viadeo.com/example",
53595
+ nullable: true
53596
+ },
53597
+ instagram: {
53598
+ type: "string",
53599
+ format: "url",
53600
+ description: "Instagram account",
53601
+ example: "https://www.instagram.com/example",
53602
+ nullable: true
53603
+ }
53604
+ }
53605
+ },
53606
+ rate_category_id: {
53607
+ type: "integer",
53608
+ nullable: true,
53609
+ description: "Company Rate category id",
53610
+ example: 9956
53611
+ },
53612
+ main_contact_id: {
53613
+ description: "Main contact unique ID",
53614
+ type: "integer",
53615
+ nullable: true,
53616
+ minimum: 1,
53617
+ example: 6654
53618
+ },
53619
+ dunning_contact_id: {
53620
+ description: "Dunning contact unique ID",
53621
+ type: "integer",
53622
+ nullable: true,
53623
+ minimum: 1,
53624
+ example: 6654
53625
+ },
53626
+ invoicing_contact_id: {
53627
+ description: "Invoicing contact unique ID",
53628
+ type: "integer",
53629
+ nullable: true,
53630
+ minimum: 1,
53631
+ example: 6654
53632
+ },
53633
+ invoicing_address_id: {
53634
+ description: "Invoicing address unique ID",
53635
+ type: "integer",
53636
+ nullable: true,
53637
+ minimum: 1,
53638
+ example: 9987
53639
+ },
53640
+ delivery_address_id: {
53641
+ description: "Delivery address unique ID",
53642
+ type: "integer",
53643
+ nullable: true,
53644
+ minimum: 1,
53645
+ example: 6547
53646
+ },
53647
+ accounting_code_id: {
53648
+ type: "integer",
53649
+ nullable: true,
53650
+ description: "Company accounting code id",
53651
+ example: 12345
53652
+ },
53653
+ accounting_purchase_code_id: {
53654
+ type: "integer",
53655
+ nullable: true,
53656
+ description: "Company accouting purchase code id",
53657
+ example: 98556
53658
+ },
53659
+ created: {
53660
+ type: "string",
53661
+ format: "date-time",
53662
+ nullable: false,
53663
+ description: "Datetime of creating company",
53664
+ example: "2020-05-29T11:22:03+02:00"
53665
+ },
53666
+ updated_at: {
53667
+ type: "string",
53668
+ format: "date-time",
53669
+ nullable: false,
53670
+ description: "Datetime of the last update of the company",
53671
+ example: "2020-05-29T11:22:03+02:00"
53672
+ },
53673
+ is_archived: {
53674
+ type: "boolean",
53675
+ nullable: false,
53676
+ description: "Status archived or not",
53677
+ example: false
53678
+ },
53679
+ business_segment: {
53680
+ type: "object",
53681
+ description: "Company business segment",
53682
+ nullable: true,
53683
+ properties: {
53684
+ id: {
53685
+ type: "integer",
53686
+ example: 3
53687
+ },
53688
+ label: {
53689
+ type: "string",
53690
+ example: "Software publisher / Digital services company"
53691
+ }
53692
+ }
53693
+ },
53694
+ number_of_employees: {
53695
+ type: "object",
53696
+ description: "Number of employees of company",
53697
+ nullable: true,
53698
+ properties: {
53699
+ id: {
53700
+ type: "integer",
53701
+ example: 1
53702
+ },
53703
+ label: {
53704
+ type: "string",
53705
+ example: "From 1 to 5"
53706
+ }
53707
+ }
53708
+ },
53709
+ main_activity_description: {
53710
+ type: "string",
53711
+ description: "Description of the company main activity",
53712
+ example: "Application software publishing",
53713
+ nullable: true
53714
+ },
53715
+ marketing_campaigns_subscriptions: {
53716
+ type: "array",
53717
+ items: {
53718
+ type: "string",
53719
+ enum: [
53720
+ "sms",
53721
+ "phone",
53722
+ "email",
53723
+ "postal_mail",
53724
+ "custom"
53725
+ ]
53726
+ },
53727
+ description: "list of campaign type subcribed",
53728
+ uniqueItems: true
53729
+ },
53730
+ einvoicing_electronic_address: {
53731
+ type: "string",
53732
+ nullable: true,
53733
+ description: "Default e-invoicing routing address identifier",
53734
+ example: "987463775"
53735
+ }
53736
+ }
53737
+ };
53738
+ const IndividualWritableSchema = {
53739
+ title: "Individual",
53740
+ type: "object",
53741
+ description: "",
53742
+ "x-examples": {},
53743
+ properties: {
53744
+ id: {
53745
+ type: "integer",
53746
+ description: "Unique ID",
53747
+ example: 6657
53748
+ },
53749
+ type: {
53750
+ type: "string",
53751
+ enum: [
53752
+ "prospect",
53753
+ "client",
53754
+ "supplier"
53755
+ ]
53756
+ },
53757
+ last_name: {
53758
+ type: "string",
53759
+ description: "Individual contact lastname",
53760
+ example: "Martin",
53761
+ maxLength: 200
53762
+ },
53763
+ first_name: {
53764
+ type: "string",
53765
+ description: "Individual contact firstname",
53766
+ example: "Jean",
53767
+ nullable: true,
53768
+ maxLength: 200
53769
+ },
53770
+ civility: {
53771
+ type: "string",
53772
+ description: "Civility of individual",
53773
+ example: "mr",
53774
+ nullable: true,
53775
+ enum: [
53776
+ "mr",
53777
+ "mrs",
53778
+ "ms"
53779
+ ]
53780
+ },
53781
+ email: {
53782
+ description: "Individual email",
53783
+ type: "string",
53784
+ format: "email",
53785
+ example: "jean.martin@personal-example.com",
53786
+ nullable: true
53787
+ },
53788
+ website: {
53789
+ type: "string",
53790
+ format: "url",
53791
+ description: "Individual website",
53792
+ example: "http://personal-example.com",
53793
+ nullable: true
53794
+ },
53795
+ phone_number: {
53796
+ type: "string",
53797
+ description: "Phone number",
53798
+ example: "+33100000000",
53799
+ nullable: true
53800
+ },
53801
+ mobile_number: {
53802
+ type: "string",
53803
+ description: "Mobile number",
53804
+ example: "+33600000000",
53805
+ nullable: true
53806
+ },
53807
+ fax_number: {
53808
+ type: "string",
53809
+ description: "Fax number",
53810
+ example: "+33100000000",
53811
+ nullable: true
53812
+ },
53813
+ reference: {
53814
+ type: "string",
53815
+ description: "Internal reference",
53816
+ example: "IND-1654",
53817
+ nullable: true
53818
+ },
53819
+ note: {
53820
+ type: "string",
53821
+ description: "Note on individual",
53822
+ example: "An handed-written note describing this individual"
53823
+ },
53824
+ auxiliary_code: {
53825
+ type: "string",
53826
+ description: "Auxiliary code",
53827
+ example: "0EX11C",
53828
+ nullable: true
53829
+ },
53830
+ social: { $ref: "#/components/schemas/Company/properties/social" },
53831
+ rate_category_id: {
53832
+ type: "integer",
53833
+ nullable: true,
53834
+ description: "Rate category id",
53835
+ example: 9956
53836
+ },
53837
+ main_contact_id: {
53838
+ description: "Main contact unique ID",
53839
+ type: "integer",
53840
+ nullable: true,
53841
+ minimum: 1,
53842
+ example: 6654
53843
+ },
53844
+ dunning_contact_id: {
53845
+ description: "Dunning contact unique ID",
53846
+ type: "integer",
53847
+ nullable: true,
53848
+ minimum: 1,
53849
+ example: 6654
53850
+ },
53851
+ invoicing_contact_id: {
53852
+ description: "Invoicing contact unique ID",
53853
+ type: "integer",
53854
+ nullable: true,
53855
+ minimum: 1,
53856
+ example: 6654
53857
+ },
53858
+ invoicing_address_id: {
53859
+ description: "Invoicing address unique ID",
53860
+ type: "integer",
53861
+ nullable: true,
53862
+ minimum: 1,
53863
+ example: 9987
53864
+ },
53865
+ delivery_address_id: {
53866
+ description: "Delivery address unique ID",
53867
+ type: "integer",
53868
+ nullable: true,
53869
+ minimum: 1,
53870
+ example: 6547
53871
+ },
53872
+ accounting_code_id: {
53873
+ type: "integer",
53874
+ nullable: true,
53875
+ description: "Accounting code id",
53876
+ example: 12345
53877
+ },
53878
+ accounting_purchase_code_id: {
53879
+ type: "integer",
53880
+ nullable: true,
53881
+ description: "Accouting purchase code id",
53882
+ example: 98556
53883
+ },
53884
+ created: {
53885
+ type: "string",
53886
+ format: "date-time",
53887
+ nullable: false,
53888
+ description: "Datetime of creation",
53889
+ example: "2020-05-29T11:22:03+02:00"
53890
+ },
53891
+ updated_at: {
53892
+ type: "string",
53893
+ format: "date-time",
53894
+ nullable: false,
53895
+ description: "Datetime of the last update of the individual",
53896
+ example: "2020-05-29T11:22:03+02:00"
53897
+ },
53898
+ is_archived: {
53899
+ type: "boolean",
53900
+ nullable: false,
53901
+ description: "Status archived or not",
53902
+ example: false
53903
+ },
53904
+ marketing_campaigns_subscriptions: {
53905
+ type: "array",
53906
+ items: {
53907
+ type: "string",
53908
+ enum: [
53909
+ "sms",
53910
+ "phone",
53911
+ "email",
53912
+ "postal_mail",
53913
+ "custom"
53914
+ ]
53915
+ },
53916
+ description: "list of campaign type subcribed",
53917
+ uniqueItems: true
53918
+ },
53919
+ sync: {
53920
+ type: "object",
53921
+ properties: {
53922
+ mailchimp: {
53923
+ type: "boolean",
53924
+ description: "Activate the mailchimp synchronization",
53925
+ nullable: false
53926
+ },
53927
+ mailjet: {
53928
+ type: "boolean",
53929
+ description: "Activate the mailjet synchronization",
53930
+ nullable: false
53931
+ },
53932
+ simplemail: {
53933
+ type: "boolean",
53934
+ description: "Activate the simplemail synchronization",
53935
+ nullable: false
53936
+ }
53937
+ }
53938
+ }
53939
+ }
53940
+ };
52297
53941
  const ProformaInvoiceOneWritableSchema = { allOf: [{
52298
53942
  title: "Proforma Invoice",
52299
53943
  type: "object",
@@ -52783,6 +54427,20 @@ const ProgressInvoiceMetadataWritableSchema = {
52783
54427
  default: "per-line",
52784
54428
  description: "Progress invoice mode",
52785
54429
  enum: ["global", "per-line"]
54430
+ },
54431
+ recipient_legal: {
54432
+ type: "object",
54433
+ properties: {
54434
+ is_company: { type: "boolean" },
54435
+ siren: {
54436
+ type: "string",
54437
+ nullable: true
54438
+ },
54439
+ vat_number: {
54440
+ type: "string",
54441
+ nullable: true
54442
+ }
54443
+ }
52786
54444
  }
52787
54445
  }
52788
54446
  }]
@@ -53555,6 +55213,13 @@ const ProgressInvoiceMetadataWritableSchema = {
53555
55213
  is_document_compliant: {
53556
55214
  type: "boolean",
53557
55215
  description: "Compliance state of the parent document on creation, or of the edited document on update"
55216
+ },
55217
+ company_einvoicing: { $ref: "#/components/schemas/DepositInvoiceMetadata/properties/company_einvoicing" },
55218
+ einvoicing_electronic_address: {
55219
+ type: "string",
55220
+ nullable: true,
55221
+ description: "E-invoicing routing address identifier (document value if set, otherwise third default)",
55222
+ example: "987463775"
53558
55223
  }
53559
55224
  }
53560
55225
  };
@@ -53609,11 +55274,7 @@ const ProgressInvoiceUpdateWritableSchema = {
53609
55274
  description: "Date of the invoice",
53610
55275
  example: "2022-01-02"
53611
55276
  },
53612
- validate: {
53613
- type: "boolean",
53614
- description: "If true the invoice will be validated with definitive number and will not be editable.",
53615
- default: false
53616
- },
55277
+ validate: { $ref: "#/components/schemas/ProgressInvoiceCreate/properties/validate" },
53617
55278
  subject: {
53618
55279
  type: "string",
53619
55280
  description: "Subject of the invoice"
@@ -53764,6 +55425,13 @@ const ProgressInvoiceUpdateWritableSchema = {
53764
55425
  "mixed"
53765
55426
  ],
53766
55427
  example: "product"
55428
+ },
55429
+ einvoicing_electronic_address: {
55430
+ type: "string",
55431
+ nullable: true,
55432
+ maxLength: 255,
55433
+ description: "E-invoicing routing address identifier for this document",
55434
+ example: "987463775"
53767
55435
  }
53768
55436
  }
53769
55437
  };
@@ -54382,21 +56050,6 @@ const updateCompany = (options) => (options.client ?? client).put({
54382
56050
  }
54383
56051
  });
54384
56052
  /**
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
- /**
54400
56053
  * Convert prospect company to client company
54401
56054
  */
54402
56055
  const convertCompany = (options) => (options.client ?? client).post({
@@ -54852,21 +56505,6 @@ const updateEstimate = (options) => (options.client ?? client).put({
54852
56505
  }
54853
56506
  });
54854
56507
  /**
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
- /**
54870
56508
  * Update estimate status
54871
56509
  *
54872
56510
  * Update an estimate status
@@ -55203,21 +56841,6 @@ const updateOrder = (options) => (options.client ?? client).put({
55203
56841
  }
55204
56842
  });
55205
56843
  /**
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
- /**
55221
56844
  * Search orders
55222
56845
  *
55223
56846
  * 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>
@@ -55543,21 +57166,6 @@ const getDelivery = (options) => (options.client ?? client).get({
55543
57166
  ...options
55544
57167
  });
55545
57168
  /**
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
- /**
55561
57169
  * Individuals List
55562
57170
  *
55563
57171
  * Get a list of individuals
@@ -55723,21 +57331,6 @@ const updateIndividual = (options) => (options.client ?? client).put({
55723
57331
  }
55724
57332
  });
55725
57333
  /**
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
- /**
55741
57334
  * Convert prospect individual to client individual
55742
57335
  */
55743
57336
  const convertIndividual = (options) => (options.client ?? client).post({
@@ -58603,21 +60196,6 @@ const updateInvoice = (options) => (options.client ?? client).put({
58603
60196
  }
58604
60197
  });
58605
60198
  /**
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
- /**
58621
60199
  * Invoices List
58622
60200
  *
58623
60201
  * 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>
@@ -59013,21 +60591,6 @@ const updateCreditNote = (options) => (options.client ?? client).put({
59013
60591
  }
59014
60592
  });
59015
60593
  /**
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
- /**
59031
60594
  * Credit notes List
59032
60595
  *
59033
60596
  * 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>
@@ -59882,21 +61445,6 @@ const updateModel = (options) => (options.client ?? client).put({
59882
61445
  }
59883
61446
  });
59884
61447
  /**
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
- /**
59900
61448
  * Search document models
59901
61449
  *
59902
61450
  * Search document models
@@ -60170,21 +61718,6 @@ const updateDepositInvoice = (options) => (options.client ?? client).put({
60170
61718
  }
60171
61719
  });
60172
61720
  /**
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
- /**
60188
61721
  * Get smart tags for a deposit invoice
60189
61722
  *
60190
61723
  * 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>
@@ -60357,21 +61890,6 @@ const updateDepositInvoiceCustomFields = (options) => (options.client ?? client)
60357
61890
  }
60358
61891
  });
60359
61892
  /**
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
- /**
60375
61893
  * Proforma Invoice custom fields List
60376
61894
  *
60377
61895
  * Get list of custom fields for a Proforma Invoice
@@ -60439,21 +61957,6 @@ const updateProgressInvoice = (options) => (options.client ?? client).put({
60439
61957
  }
60440
61958
  });
60441
61959
  /**
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
- /**
60457
61960
  * List payment terms
60458
61961
  *
60459
61962
  * List all payment terms
@@ -60961,5 +62464,5 @@ function createClientWithApiKey(apiKey) {
60961
62464
  }
60962
62465
 
60963
62466
  //#endregion
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 };
62467
+ 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, CompanySchema, CompanyWritableSchema, 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, IndividualSchema, IndividualWritableSchema, 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, PaymentContextSchema, 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, RecordPaymentSchema, 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, 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 };
60965
62468
  //# sourceMappingURL=index.mjs.map