@solibo/solibo-sdk 1.14.0 → 1.14.1
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/KmLogging-logging.mjs +98 -98
- package/Kotlin-DateTime-library-kotlinx-datetime.mjs +1 -1
- package/KotlinBigInteger-bignum.mjs +1114 -1114
- package/MultiplatformSettings-multiplatform-settings-test.mjs +18 -18
- package/MultiplatformSettings-multiplatform-settings.mjs +16 -16
- package/Stately-stately-concurrency.mjs +3 -3
- package/bitops-library-bits.mjs +33 -33
- package/bitops-library-endian.mjs +3 -3
- package/client.d.mts +5 -1
- package/client.mjs +19 -0
- package/core-library-digest.mjs +29 -29
- package/cryptography-kotlin-cryptography-bigint.mjs +27 -27
- package/cryptography-kotlin-cryptography-core.mjs +47 -47
- package/cryptography-kotlin-cryptography-provider-base.mjs +4 -4
- package/cryptography-kotlin-cryptography-provider-webcrypto.mjs +135 -135
- package/cryptography-kotlin-cryptography-random.mjs +15 -15
- package/cryptography-kotlin-cryptography-serialization-asn1-modules.mjs +112 -112
- package/cryptography-kotlin-cryptography-serialization-asn1.mjs +237 -237
- package/cryptography-kotlin-cryptography-serialization-pem.mjs +15 -15
- package/hash-library-md.mjs +30 -30
- package/kotlin-kotlin-stdlib.mjs +5 -5
- package/kotlin-kotlin-stdlib.mjs.map +1 -1
- package/kotlinx-coroutines-core.mjs +7 -7
- package/kotlinx-coroutines-core.mjs.map +1 -1
- package/ktor-ktor-client-auth.mjs +224 -224
- package/ktor-ktor-client-encoding.mjs +75 -75
- package/ktor-ktor-client-logging.mjs +520 -520
- package/ktor-ktor-client-mock.mjs +39 -39
- package/ktor-ktor-websockets.mjs +2 -2
- package/package.json +1 -1
- package/solibo-sdk-sdk-home-api.mjs +26801 -26664
- package/solibo-sdk-sdk-home-api.mjs.map +1 -1
- package/solibo-sdk-sdk.d.mts +110 -96
- package/solibo-sdk-sdk.mjs +4621 -4620
- package/solibo-sdk-sdk.mjs.map +1 -1
package/solibo-sdk-sdk.d.mts
CHANGED
|
@@ -4237,16 +4237,18 @@ export interface ConversationCountProps {
|
|
|
4237
4237
|
folderCounts?: Map<string, bigint | null | undefined> | null | undefined;
|
|
4238
4238
|
inProgress: bigint;
|
|
4239
4239
|
new: bigint;
|
|
4240
|
+
root?: bigint | null | undefined;
|
|
4240
4241
|
total?: bigint | null | undefined;
|
|
4241
4242
|
}
|
|
4242
4243
|
export declare class ConversationCount {
|
|
4243
4244
|
constructor(props: ConversationCountProps);
|
|
4244
|
-
constructor(done: bigint, draft: bigint, folderCounts: Map<string, bigint | null | undefined> | null | undefined, inProgress: bigint, _new: bigint, total?: bigint | null | undefined);
|
|
4245
|
+
constructor(done: bigint, draft: bigint, folderCounts: Map<string, bigint | null | undefined> | null | undefined, inProgress: bigint, _new: bigint, root?: bigint | null | undefined, total?: bigint | null | undefined);
|
|
4245
4246
|
get done(): bigint;
|
|
4246
4247
|
get draft(): bigint;
|
|
4247
4248
|
get folderCounts(): Map<string, bigint | null | undefined> | null | undefined;
|
|
4248
4249
|
get inProgress(): bigint;
|
|
4249
4250
|
get new(): bigint;
|
|
4251
|
+
get root(): bigint | null | undefined;
|
|
4250
4252
|
get total(): bigint | null | undefined;
|
|
4251
4253
|
}
|
|
4252
4254
|
export declare namespace ConversationCount {
|
|
@@ -4261,16 +4263,18 @@ export interface ConversationCountConversationCountByCompanyMapProps {
|
|
|
4261
4263
|
folderCounts?: Map<string, bigint | null | undefined> | null | undefined;
|
|
4262
4264
|
inProgress: bigint;
|
|
4263
4265
|
new: bigint;
|
|
4266
|
+
root?: bigint | null | undefined;
|
|
4264
4267
|
total?: bigint | null | undefined;
|
|
4265
4268
|
}
|
|
4266
4269
|
export declare class ConversationCountConversationCountByCompanyMap {
|
|
4267
4270
|
constructor(props: ConversationCountConversationCountByCompanyMapProps);
|
|
4268
|
-
constructor(done: bigint, draft: bigint, folderCounts: Map<string, bigint | null | undefined> | null | undefined, inProgress: bigint, _new: bigint, total?: bigint | null | undefined);
|
|
4271
|
+
constructor(done: bigint, draft: bigint, folderCounts: Map<string, bigint | null | undefined> | null | undefined, inProgress: bigint, _new: bigint, root?: bigint | null | undefined, total?: bigint | null | undefined);
|
|
4269
4272
|
get done(): bigint;
|
|
4270
4273
|
get draft(): bigint;
|
|
4271
4274
|
get folderCounts(): Map<string, bigint | null | undefined> | null | undefined;
|
|
4272
4275
|
get inProgress(): bigint;
|
|
4273
4276
|
get new(): bigint;
|
|
4277
|
+
get root(): bigint | null | undefined;
|
|
4274
4278
|
get total(): bigint | null | undefined;
|
|
4275
4279
|
}
|
|
4276
4280
|
export declare namespace ConversationCountConversationCountByCompanyMap {
|
|
@@ -4285,16 +4289,18 @@ export interface ConversationCountConversationCountMapProps {
|
|
|
4285
4289
|
folderCounts?: Map<string, bigint | null | undefined> | null | undefined;
|
|
4286
4290
|
inProgress: bigint;
|
|
4287
4291
|
new: bigint;
|
|
4292
|
+
root?: bigint | null | undefined;
|
|
4288
4293
|
total?: bigint | null | undefined;
|
|
4289
4294
|
}
|
|
4290
4295
|
export declare class ConversationCountConversationCountMap {
|
|
4291
4296
|
constructor(props: ConversationCountConversationCountMapProps);
|
|
4292
|
-
constructor(done: bigint, draft: bigint, folderCounts: Map<string, bigint | null | undefined> | null | undefined, inProgress: bigint, _new: bigint, total?: bigint | null | undefined);
|
|
4297
|
+
constructor(done: bigint, draft: bigint, folderCounts: Map<string, bigint | null | undefined> | null | undefined, inProgress: bigint, _new: bigint, root?: bigint | null | undefined, total?: bigint | null | undefined);
|
|
4293
4298
|
get done(): bigint;
|
|
4294
4299
|
get draft(): bigint;
|
|
4295
4300
|
get folderCounts(): Map<string, bigint | null | undefined> | null | undefined;
|
|
4296
4301
|
get inProgress(): bigint;
|
|
4297
4302
|
get new(): bigint;
|
|
4303
|
+
get root(): bigint | null | undefined;
|
|
4298
4304
|
get total(): bigint | null | undefined;
|
|
4299
4305
|
}
|
|
4300
4306
|
export declare namespace ConversationCountConversationCountMap {
|
|
@@ -10553,181 +10559,185 @@ export declare abstract class InvoiceState {
|
|
|
10553
10559
|
get name(): "INVOICE_PROCESSING_FAILED";
|
|
10554
10560
|
get ordinal(): 26;
|
|
10555
10561
|
};
|
|
10562
|
+
static get INVOICE_HANDED_OFF_TO_CUSTOMER_SERVICE(): InvoiceState & {
|
|
10563
|
+
get name(): "INVOICE_HANDED_OFF_TO_CUSTOMER_SERVICE";
|
|
10564
|
+
get ordinal(): 27;
|
|
10565
|
+
};
|
|
10556
10566
|
static get INVOICE_RECEIPT_RECEIVED(): InvoiceState & {
|
|
10557
10567
|
get name(): "INVOICE_RECEIPT_RECEIVED";
|
|
10558
|
-
get ordinal():
|
|
10568
|
+
get ordinal(): 28;
|
|
10559
10569
|
};
|
|
10560
10570
|
static get INVOICE_EHF_RECEIPT_RECEIVED(): InvoiceState & {
|
|
10561
10571
|
get name(): "INVOICE_EHF_RECEIPT_RECEIVED";
|
|
10562
|
-
get ordinal():
|
|
10572
|
+
get ordinal(): 29;
|
|
10563
10573
|
};
|
|
10564
10574
|
static get INVOICE_EFAKTURA_RECEIPT_RECEIVED(): InvoiceState & {
|
|
10565
10575
|
get name(): "INVOICE_EFAKTURA_RECEIPT_RECEIVED";
|
|
10566
|
-
get ordinal():
|
|
10576
|
+
get ordinal(): 30;
|
|
10567
10577
|
};
|
|
10568
10578
|
static get INVOICE_AVTALEGIRO_RECEIPT_RECEIVED(): InvoiceState & {
|
|
10569
10579
|
get name(): "INVOICE_AVTALEGIRO_RECEIPT_RECEIVED";
|
|
10570
|
-
get ordinal():
|
|
10580
|
+
get ordinal(): 31;
|
|
10571
10581
|
};
|
|
10572
10582
|
static get INVOICE_EMAIL_RECEIPT_RECEIVED(): InvoiceState & {
|
|
10573
10583
|
get name(): "INVOICE_EMAIL_RECEIPT_RECEIVED";
|
|
10574
|
-
get ordinal():
|
|
10584
|
+
get ordinal(): 32;
|
|
10575
10585
|
};
|
|
10576
10586
|
static get INVOICE_OVERDUE_EMAIL_RECEIPT_RECEIVED(): InvoiceState & {
|
|
10577
10587
|
get name(): "INVOICE_OVERDUE_EMAIL_RECEIPT_RECEIVED";
|
|
10578
|
-
get ordinal():
|
|
10588
|
+
get ordinal(): 33;
|
|
10579
10589
|
};
|
|
10580
10590
|
static get INVOICE_SECOND_OVERDUE_EMAIL_RECEIPT_RECEIVED(): InvoiceState & {
|
|
10581
10591
|
get name(): "INVOICE_SECOND_OVERDUE_EMAIL_RECEIPT_RECEIVED";
|
|
10582
|
-
get ordinal():
|
|
10592
|
+
get ordinal(): 34;
|
|
10583
10593
|
};
|
|
10584
10594
|
static get INVOICE_EMAIL_OPENED_RECEIPT_RECEIVED(): InvoiceState & {
|
|
10585
10595
|
get name(): "INVOICE_EMAIL_OPENED_RECEIPT_RECEIVED";
|
|
10586
|
-
get ordinal():
|
|
10596
|
+
get ordinal(): 35;
|
|
10587
10597
|
};
|
|
10588
10598
|
static get INVOICE_OVERDUE_EMAIL_OPENED_RECEIPT_RECEIVED(): InvoiceState & {
|
|
10589
10599
|
get name(): "INVOICE_OVERDUE_EMAIL_OPENED_RECEIPT_RECEIVED";
|
|
10590
|
-
get ordinal():
|
|
10600
|
+
get ordinal(): 36;
|
|
10591
10601
|
};
|
|
10592
10602
|
static get INVOICE_SECOND_OVERDUE_EMAIL_OPENED_RECEIPT_RECEIVED(): InvoiceState & {
|
|
10593
10603
|
get name(): "INVOICE_SECOND_OVERDUE_EMAIL_OPENED_RECEIPT_RECEIVED";
|
|
10594
|
-
get ordinal():
|
|
10604
|
+
get ordinal(): 37;
|
|
10595
10605
|
};
|
|
10596
10606
|
static get INVOICE_OVERDUE_SMS_RECEIPT_RECEIVED(): InvoiceState & {
|
|
10597
10607
|
get name(): "INVOICE_OVERDUE_SMS_RECEIPT_RECEIVED";
|
|
10598
|
-
get ordinal():
|
|
10608
|
+
get ordinal(): 38;
|
|
10599
10609
|
};
|
|
10600
10610
|
static get INVOICE_SECOND_OVERDUE_SMS_RECEIPT_RECEIVED(): InvoiceState & {
|
|
10601
10611
|
get name(): "INVOICE_SECOND_OVERDUE_SMS_RECEIPT_RECEIVED";
|
|
10602
|
-
get ordinal():
|
|
10612
|
+
get ordinal(): 39;
|
|
10603
10613
|
};
|
|
10604
10614
|
static get FAILED_INVOICE_EHF_RECEIPT(): InvoiceState & {
|
|
10605
10615
|
get name(): "FAILED_INVOICE_EHF_RECEIPT";
|
|
10606
|
-
get ordinal():
|
|
10616
|
+
get ordinal(): 40;
|
|
10607
10617
|
};
|
|
10608
10618
|
static get FAILED_INVOICE_EMAIL_RECEIPT(): InvoiceState & {
|
|
10609
10619
|
get name(): "FAILED_INVOICE_EMAIL_RECEIPT";
|
|
10610
|
-
get ordinal():
|
|
10620
|
+
get ordinal(): 41;
|
|
10611
10621
|
};
|
|
10612
10622
|
static get FAILED_INVOICE_OVERDUE_EMAIL_RECEIPT(): InvoiceState & {
|
|
10613
10623
|
get name(): "FAILED_INVOICE_OVERDUE_EMAIL_RECEIPT";
|
|
10614
|
-
get ordinal():
|
|
10624
|
+
get ordinal(): 42;
|
|
10615
10625
|
};
|
|
10616
10626
|
static get FAILED_INVOICE_SECOND_OVERDUE_EMAIL_RECEIPT(): InvoiceState & {
|
|
10617
10627
|
get name(): "FAILED_INVOICE_SECOND_OVERDUE_EMAIL_RECEIPT";
|
|
10618
|
-
get ordinal():
|
|
10628
|
+
get ordinal(): 43;
|
|
10619
10629
|
};
|
|
10620
10630
|
static get FAILED_INVOICE_OVERDUE_SMS_RECEIPT(): InvoiceState & {
|
|
10621
10631
|
get name(): "FAILED_INVOICE_OVERDUE_SMS_RECEIPT";
|
|
10622
|
-
get ordinal():
|
|
10632
|
+
get ordinal(): 44;
|
|
10623
10633
|
};
|
|
10624
10634
|
static get FAILED_INVOICE_SECOND_OVERDUE_SMS_RECEIPT(): InvoiceState & {
|
|
10625
10635
|
get name(): "FAILED_INVOICE_SECOND_OVERDUE_SMS_RECEIPT";
|
|
10626
|
-
get ordinal():
|
|
10636
|
+
get ordinal(): 45;
|
|
10627
10637
|
};
|
|
10628
10638
|
static get FAILED_INVOICE_PROCESSING(): InvoiceState & {
|
|
10629
10639
|
get name(): "FAILED_INVOICE_PROCESSING";
|
|
10630
|
-
get ordinal():
|
|
10640
|
+
get ordinal(): 46;
|
|
10631
10641
|
};
|
|
10632
10642
|
static get FAILED_INVOICE_OVERDUE_NOTICE_SEND(): InvoiceState & {
|
|
10633
10643
|
get name(): "FAILED_INVOICE_OVERDUE_NOTICE_SEND";
|
|
10634
|
-
get ordinal():
|
|
10644
|
+
get ordinal(): 47;
|
|
10635
10645
|
};
|
|
10636
10646
|
static get FAILED_INVOICE_OVERDUE_NOTICE_SEND_EMAIL(): InvoiceState & {
|
|
10637
10647
|
get name(): "FAILED_INVOICE_OVERDUE_NOTICE_SEND_EMAIL";
|
|
10638
|
-
get ordinal():
|
|
10648
|
+
get ordinal(): 48;
|
|
10639
10649
|
};
|
|
10640
10650
|
static get FAILED_INVOICE_OVERDUE_NOTICE_SEND_DIGIPOST(): InvoiceState & {
|
|
10641
10651
|
get name(): "FAILED_INVOICE_OVERDUE_NOTICE_SEND_DIGIPOST";
|
|
10642
|
-
get ordinal():
|
|
10652
|
+
get ordinal(): 49;
|
|
10643
10653
|
};
|
|
10644
10654
|
static get FAILED_INVOICE_OVERDUE_NOTICE_SMS_SEND(): InvoiceState & {
|
|
10645
10655
|
get name(): "FAILED_INVOICE_OVERDUE_NOTICE_SMS_SEND";
|
|
10646
|
-
get ordinal():
|
|
10656
|
+
get ordinal(): 50;
|
|
10647
10657
|
};
|
|
10648
10658
|
static get FAILED_INVOICE_SECOND_OVERDUE_NOTICE_SMS_SEND(): InvoiceState & {
|
|
10649
10659
|
get name(): "FAILED_INVOICE_SECOND_OVERDUE_NOTICE_SMS_SEND";
|
|
10650
|
-
get ordinal():
|
|
10660
|
+
get ordinal(): 51;
|
|
10651
10661
|
};
|
|
10652
10662
|
static get INVOICE_OVERDUE_NOTICE_SENT(): InvoiceState & {
|
|
10653
10663
|
get name(): "INVOICE_OVERDUE_NOTICE_SENT";
|
|
10654
|
-
get ordinal():
|
|
10664
|
+
get ordinal(): 52;
|
|
10655
10665
|
};
|
|
10656
10666
|
static get INVOICE_OVERDUE_EMAIL_NOTICE_SENT(): InvoiceState & {
|
|
10657
10667
|
get name(): "INVOICE_OVERDUE_EMAIL_NOTICE_SENT";
|
|
10658
|
-
get ordinal():
|
|
10668
|
+
get ordinal(): 53;
|
|
10659
10669
|
};
|
|
10660
10670
|
static get INVOICE_OVERDUE_SMS_NOTICE_SENT(): InvoiceState & {
|
|
10661
10671
|
get name(): "INVOICE_OVERDUE_SMS_NOTICE_SENT";
|
|
10662
|
-
get ordinal():
|
|
10672
|
+
get ordinal(): 54;
|
|
10663
10673
|
};
|
|
10664
10674
|
static get INVOICE_OVERDUE_DIGIPOST_NOTICE_SENT(): InvoiceState & {
|
|
10665
10675
|
get name(): "INVOICE_OVERDUE_DIGIPOST_NOTICE_SENT";
|
|
10666
|
-
get ordinal():
|
|
10676
|
+
get ordinal(): 55;
|
|
10667
10677
|
};
|
|
10668
10678
|
static get INVOICE_SECOND_OVERDUE_SMS_NOTICE_SENT(): InvoiceState & {
|
|
10669
10679
|
get name(): "INVOICE_SECOND_OVERDUE_SMS_NOTICE_SENT";
|
|
10670
|
-
get ordinal():
|
|
10680
|
+
get ordinal(): 56;
|
|
10671
10681
|
};
|
|
10672
10682
|
static get FAILED_INVOICE_OVERDUE_PDF_PERSIST(): InvoiceState & {
|
|
10673
10683
|
get name(): "FAILED_INVOICE_OVERDUE_PDF_PERSIST";
|
|
10674
|
-
get ordinal():
|
|
10684
|
+
get ordinal(): 57;
|
|
10675
10685
|
};
|
|
10676
10686
|
static get INVOICE_OVERDUE_PDF_PERSIST(): InvoiceState & {
|
|
10677
10687
|
get name(): "INVOICE_OVERDUE_PDF_PERSIST";
|
|
10678
|
-
get ordinal():
|
|
10688
|
+
get ordinal(): 58;
|
|
10679
10689
|
};
|
|
10680
10690
|
static get FAILED_INVOICE_SECOND_OVERDUE_NOTICE_SEND(): InvoiceState & {
|
|
10681
10691
|
get name(): "FAILED_INVOICE_SECOND_OVERDUE_NOTICE_SEND";
|
|
10682
|
-
get ordinal():
|
|
10692
|
+
get ordinal(): 59;
|
|
10683
10693
|
};
|
|
10684
10694
|
static get FAILED_INVOICE_SECOND_OVERDUE_NOTICE_SEND_EMAIL(): InvoiceState & {
|
|
10685
10695
|
get name(): "FAILED_INVOICE_SECOND_OVERDUE_NOTICE_SEND_EMAIL";
|
|
10686
|
-
get ordinal():
|
|
10696
|
+
get ordinal(): 60;
|
|
10687
10697
|
};
|
|
10688
10698
|
static get FAILED_INVOICE_SECOND_OVERDUE_NOTICE_SEND_DIGIPOST(): InvoiceState & {
|
|
10689
10699
|
get name(): "FAILED_INVOICE_SECOND_OVERDUE_NOTICE_SEND_DIGIPOST";
|
|
10690
|
-
get ordinal():
|
|
10700
|
+
get ordinal(): 61;
|
|
10691
10701
|
};
|
|
10692
10702
|
static get INVOICE_SECOND_OVERDUE_NOTICE_SENT(): InvoiceState & {
|
|
10693
10703
|
get name(): "INVOICE_SECOND_OVERDUE_NOTICE_SENT";
|
|
10694
|
-
get ordinal():
|
|
10704
|
+
get ordinal(): 62;
|
|
10695
10705
|
};
|
|
10696
10706
|
static get INVOICE_SECOND_OVERDUE_EMAIL_NOTICE_SENT(): InvoiceState & {
|
|
10697
10707
|
get name(): "INVOICE_SECOND_OVERDUE_EMAIL_NOTICE_SENT";
|
|
10698
|
-
get ordinal():
|
|
10708
|
+
get ordinal(): 63;
|
|
10699
10709
|
};
|
|
10700
10710
|
static get INVOICE_SECOND_OVERDUE_DIGIPOST_NOTICE_SENT(): InvoiceState & {
|
|
10701
10711
|
get name(): "INVOICE_SECOND_OVERDUE_DIGIPOST_NOTICE_SENT";
|
|
10702
|
-
get ordinal():
|
|
10712
|
+
get ordinal(): 64;
|
|
10703
10713
|
};
|
|
10704
10714
|
static get FAILED_INVOICE_SECOND_OVERDUE_PDF_PERSIST(): InvoiceState & {
|
|
10705
10715
|
get name(): "FAILED_INVOICE_SECOND_OVERDUE_PDF_PERSIST";
|
|
10706
|
-
get ordinal():
|
|
10716
|
+
get ordinal(): 65;
|
|
10707
10717
|
};
|
|
10708
10718
|
static get INVOICE_SECOND_OVERDUE_PDF_PERSIST(): InvoiceState & {
|
|
10709
10719
|
get name(): "INVOICE_SECOND_OVERDUE_PDF_PERSIST";
|
|
10710
|
-
get ordinal():
|
|
10720
|
+
get ordinal(): 66;
|
|
10711
10721
|
};
|
|
10712
10722
|
static get INSUFFICIENT_PAYMENT_RECEIVED(): InvoiceState & {
|
|
10713
10723
|
get name(): "INSUFFICIENT_PAYMENT_RECEIVED";
|
|
10714
|
-
get ordinal():
|
|
10724
|
+
get ordinal(): 67;
|
|
10715
10725
|
};
|
|
10716
10726
|
static get FAILED_LOSS_REGISTRATION(): InvoiceState & {
|
|
10717
10727
|
get name(): "FAILED_LOSS_REGISTRATION";
|
|
10718
|
-
get ordinal():
|
|
10728
|
+
get ordinal(): 68;
|
|
10719
10729
|
};
|
|
10720
10730
|
static get LOSS_REGISTERED(): InvoiceState & {
|
|
10721
10731
|
get name(): "LOSS_REGISTERED";
|
|
10722
|
-
get ordinal():
|
|
10732
|
+
get ordinal(): 69;
|
|
10723
10733
|
};
|
|
10724
10734
|
static get MANUAL_PROCESSING(): InvoiceState & {
|
|
10725
10735
|
get name(): "MANUAL_PROCESSING";
|
|
10726
|
-
get ordinal():
|
|
10736
|
+
get ordinal(): 70;
|
|
10727
10737
|
};
|
|
10728
10738
|
static get COMPLETE(): InvoiceState & {
|
|
10729
10739
|
get name(): "COMPLETE";
|
|
10730
|
-
get ordinal():
|
|
10740
|
+
get ordinal(): 71;
|
|
10731
10741
|
};
|
|
10732
10742
|
static get Unknown(): InvoiceState & {
|
|
10733
10743
|
get name(): "UNKNOWN";
|
|
@@ -10837,186 +10847,190 @@ export declare abstract class InvoiceState {
|
|
|
10837
10847
|
get name(): "INVOICE_PROCESSING_FAILED";
|
|
10838
10848
|
get ordinal(): 26;
|
|
10839
10849
|
};
|
|
10850
|
+
static get InvoiceHandedOffToCustomerService(): InvoiceState & {
|
|
10851
|
+
get name(): "INVOICE_HANDED_OFF_TO_CUSTOMER_SERVICE";
|
|
10852
|
+
get ordinal(): 27;
|
|
10853
|
+
};
|
|
10840
10854
|
static get InvoiceReceiptReceived(): InvoiceState & {
|
|
10841
10855
|
get name(): "INVOICE_RECEIPT_RECEIVED";
|
|
10842
|
-
get ordinal():
|
|
10856
|
+
get ordinal(): 28;
|
|
10843
10857
|
};
|
|
10844
10858
|
static get InvoiceEhfReceiptReceived(): InvoiceState & {
|
|
10845
10859
|
get name(): "INVOICE_EHF_RECEIPT_RECEIVED";
|
|
10846
|
-
get ordinal():
|
|
10860
|
+
get ordinal(): 29;
|
|
10847
10861
|
};
|
|
10848
10862
|
static get InvoiceEfakturaReceiptReceived(): InvoiceState & {
|
|
10849
10863
|
get name(): "INVOICE_EFAKTURA_RECEIPT_RECEIVED";
|
|
10850
|
-
get ordinal():
|
|
10864
|
+
get ordinal(): 30;
|
|
10851
10865
|
};
|
|
10852
10866
|
static get InvoiceAvtalegiroReceiptReceived(): InvoiceState & {
|
|
10853
10867
|
get name(): "INVOICE_AVTALEGIRO_RECEIPT_RECEIVED";
|
|
10854
|
-
get ordinal():
|
|
10868
|
+
get ordinal(): 31;
|
|
10855
10869
|
};
|
|
10856
10870
|
static get InvoiceEmailReceiptReceived(): InvoiceState & {
|
|
10857
10871
|
get name(): "INVOICE_EMAIL_RECEIPT_RECEIVED";
|
|
10858
|
-
get ordinal():
|
|
10872
|
+
get ordinal(): 32;
|
|
10859
10873
|
};
|
|
10860
10874
|
static get InvoiceOverdueEmailReceiptReceived(): InvoiceState & {
|
|
10861
10875
|
get name(): "INVOICE_OVERDUE_EMAIL_RECEIPT_RECEIVED";
|
|
10862
|
-
get ordinal():
|
|
10876
|
+
get ordinal(): 33;
|
|
10863
10877
|
};
|
|
10864
10878
|
static get InvoiceSecondOverdueEmailReceiptReceived(): InvoiceState & {
|
|
10865
10879
|
get name(): "INVOICE_SECOND_OVERDUE_EMAIL_RECEIPT_RECEIVED";
|
|
10866
|
-
get ordinal():
|
|
10880
|
+
get ordinal(): 34;
|
|
10867
10881
|
};
|
|
10868
10882
|
static get InvoiceEmailOpenedReceiptReceived(): InvoiceState & {
|
|
10869
10883
|
get name(): "INVOICE_EMAIL_OPENED_RECEIPT_RECEIVED";
|
|
10870
|
-
get ordinal():
|
|
10884
|
+
get ordinal(): 35;
|
|
10871
10885
|
};
|
|
10872
10886
|
static get InvoiceOverdueEmailOpenedReceiptReceived(): InvoiceState & {
|
|
10873
10887
|
get name(): "INVOICE_OVERDUE_EMAIL_OPENED_RECEIPT_RECEIVED";
|
|
10874
|
-
get ordinal():
|
|
10888
|
+
get ordinal(): 36;
|
|
10875
10889
|
};
|
|
10876
10890
|
static get InvoiceSecondOverdueEmailOpenedReceiptReceived(): InvoiceState & {
|
|
10877
10891
|
get name(): "INVOICE_SECOND_OVERDUE_EMAIL_OPENED_RECEIPT_RECEIVED";
|
|
10878
|
-
get ordinal():
|
|
10892
|
+
get ordinal(): 37;
|
|
10879
10893
|
};
|
|
10880
10894
|
static get InvoiceOverdueSmsReceiptReceived(): InvoiceState & {
|
|
10881
10895
|
get name(): "INVOICE_OVERDUE_SMS_RECEIPT_RECEIVED";
|
|
10882
|
-
get ordinal():
|
|
10896
|
+
get ordinal(): 38;
|
|
10883
10897
|
};
|
|
10884
10898
|
static get InvoiceSecondOverdueSmsReceiptReceived(): InvoiceState & {
|
|
10885
10899
|
get name(): "INVOICE_SECOND_OVERDUE_SMS_RECEIPT_RECEIVED";
|
|
10886
|
-
get ordinal():
|
|
10900
|
+
get ordinal(): 39;
|
|
10887
10901
|
};
|
|
10888
10902
|
static get FailedInvoiceEhfReceipt(): InvoiceState & {
|
|
10889
10903
|
get name(): "FAILED_INVOICE_EHF_RECEIPT";
|
|
10890
|
-
get ordinal():
|
|
10904
|
+
get ordinal(): 40;
|
|
10891
10905
|
};
|
|
10892
10906
|
static get FailedInvoiceEmailReceipt(): InvoiceState & {
|
|
10893
10907
|
get name(): "FAILED_INVOICE_EMAIL_RECEIPT";
|
|
10894
|
-
get ordinal():
|
|
10908
|
+
get ordinal(): 41;
|
|
10895
10909
|
};
|
|
10896
10910
|
static get FailedInvoiceOverdueEmailReceipt(): InvoiceState & {
|
|
10897
10911
|
get name(): "FAILED_INVOICE_OVERDUE_EMAIL_RECEIPT";
|
|
10898
|
-
get ordinal():
|
|
10912
|
+
get ordinal(): 42;
|
|
10899
10913
|
};
|
|
10900
10914
|
static get FailedInvoiceSecondOverdueEmailReceipt(): InvoiceState & {
|
|
10901
10915
|
get name(): "FAILED_INVOICE_SECOND_OVERDUE_EMAIL_RECEIPT";
|
|
10902
|
-
get ordinal():
|
|
10916
|
+
get ordinal(): 43;
|
|
10903
10917
|
};
|
|
10904
10918
|
static get FailedInvoiceOverdueSmsReceipt(): InvoiceState & {
|
|
10905
10919
|
get name(): "FAILED_INVOICE_OVERDUE_SMS_RECEIPT";
|
|
10906
|
-
get ordinal():
|
|
10920
|
+
get ordinal(): 44;
|
|
10907
10921
|
};
|
|
10908
10922
|
static get FailedInvoiceSecondOverdueSmsReceipt(): InvoiceState & {
|
|
10909
10923
|
get name(): "FAILED_INVOICE_SECOND_OVERDUE_SMS_RECEIPT";
|
|
10910
|
-
get ordinal():
|
|
10924
|
+
get ordinal(): 45;
|
|
10911
10925
|
};
|
|
10912
10926
|
static get FailedInvoiceProcessing(): InvoiceState & {
|
|
10913
10927
|
get name(): "FAILED_INVOICE_PROCESSING";
|
|
10914
|
-
get ordinal():
|
|
10928
|
+
get ordinal(): 46;
|
|
10915
10929
|
};
|
|
10916
10930
|
static get FailedInvoiceOverdueNoticeSend(): InvoiceState & {
|
|
10917
10931
|
get name(): "FAILED_INVOICE_OVERDUE_NOTICE_SEND";
|
|
10918
|
-
get ordinal():
|
|
10932
|
+
get ordinal(): 47;
|
|
10919
10933
|
};
|
|
10920
10934
|
static get FailedInvoiceOverdueNoticeSendEmail(): InvoiceState & {
|
|
10921
10935
|
get name(): "FAILED_INVOICE_OVERDUE_NOTICE_SEND_EMAIL";
|
|
10922
|
-
get ordinal():
|
|
10936
|
+
get ordinal(): 48;
|
|
10923
10937
|
};
|
|
10924
10938
|
static get FailedInvoiceOverdueNoticeSendDigipost(): InvoiceState & {
|
|
10925
10939
|
get name(): "FAILED_INVOICE_OVERDUE_NOTICE_SEND_DIGIPOST";
|
|
10926
|
-
get ordinal():
|
|
10940
|
+
get ordinal(): 49;
|
|
10927
10941
|
};
|
|
10928
10942
|
static get FailedInvoiceOverdueNoticeSmsSend(): InvoiceState & {
|
|
10929
10943
|
get name(): "FAILED_INVOICE_OVERDUE_NOTICE_SMS_SEND";
|
|
10930
|
-
get ordinal():
|
|
10944
|
+
get ordinal(): 50;
|
|
10931
10945
|
};
|
|
10932
10946
|
static get FailedInvoiceSecondOverdueNoticeSmsSend(): InvoiceState & {
|
|
10933
10947
|
get name(): "FAILED_INVOICE_SECOND_OVERDUE_NOTICE_SMS_SEND";
|
|
10934
|
-
get ordinal():
|
|
10948
|
+
get ordinal(): 51;
|
|
10935
10949
|
};
|
|
10936
10950
|
static get InvoiceOverdueNoticeSent(): InvoiceState & {
|
|
10937
10951
|
get name(): "INVOICE_OVERDUE_NOTICE_SENT";
|
|
10938
|
-
get ordinal():
|
|
10952
|
+
get ordinal(): 52;
|
|
10939
10953
|
};
|
|
10940
10954
|
static get InvoiceOverdueEmailNoticeSent(): InvoiceState & {
|
|
10941
10955
|
get name(): "INVOICE_OVERDUE_EMAIL_NOTICE_SENT";
|
|
10942
|
-
get ordinal():
|
|
10956
|
+
get ordinal(): 53;
|
|
10943
10957
|
};
|
|
10944
10958
|
static get InvoiceOverdueSmsNoticeSent(): InvoiceState & {
|
|
10945
10959
|
get name(): "INVOICE_OVERDUE_SMS_NOTICE_SENT";
|
|
10946
|
-
get ordinal():
|
|
10960
|
+
get ordinal(): 54;
|
|
10947
10961
|
};
|
|
10948
10962
|
static get InvoiceOverdueDigipostNoticeSent(): InvoiceState & {
|
|
10949
10963
|
get name(): "INVOICE_OVERDUE_DIGIPOST_NOTICE_SENT";
|
|
10950
|
-
get ordinal():
|
|
10964
|
+
get ordinal(): 55;
|
|
10951
10965
|
};
|
|
10952
10966
|
static get InvoiceSecondOverdueSmsNoticeSent(): InvoiceState & {
|
|
10953
10967
|
get name(): "INVOICE_SECOND_OVERDUE_SMS_NOTICE_SENT";
|
|
10954
|
-
get ordinal():
|
|
10968
|
+
get ordinal(): 56;
|
|
10955
10969
|
};
|
|
10956
10970
|
static get FailedInvoiceOverduePdfPersist(): InvoiceState & {
|
|
10957
10971
|
get name(): "FAILED_INVOICE_OVERDUE_PDF_PERSIST";
|
|
10958
|
-
get ordinal():
|
|
10972
|
+
get ordinal(): 57;
|
|
10959
10973
|
};
|
|
10960
10974
|
static get InvoiceOverduePdfPersist(): InvoiceState & {
|
|
10961
10975
|
get name(): "INVOICE_OVERDUE_PDF_PERSIST";
|
|
10962
|
-
get ordinal():
|
|
10976
|
+
get ordinal(): 58;
|
|
10963
10977
|
};
|
|
10964
10978
|
static get FailedInvoiceSecondOverdueNoticeSend(): InvoiceState & {
|
|
10965
10979
|
get name(): "FAILED_INVOICE_SECOND_OVERDUE_NOTICE_SEND";
|
|
10966
|
-
get ordinal():
|
|
10980
|
+
get ordinal(): 59;
|
|
10967
10981
|
};
|
|
10968
10982
|
static get FailedInvoiceSecondOverdueNoticeSendEmail(): InvoiceState & {
|
|
10969
10983
|
get name(): "FAILED_INVOICE_SECOND_OVERDUE_NOTICE_SEND_EMAIL";
|
|
10970
|
-
get ordinal():
|
|
10984
|
+
get ordinal(): 60;
|
|
10971
10985
|
};
|
|
10972
10986
|
static get FailedInvoiceSecondOverdueNoticeSendDigipost(): InvoiceState & {
|
|
10973
10987
|
get name(): "FAILED_INVOICE_SECOND_OVERDUE_NOTICE_SEND_DIGIPOST";
|
|
10974
|
-
get ordinal():
|
|
10988
|
+
get ordinal(): 61;
|
|
10975
10989
|
};
|
|
10976
10990
|
static get InvoiceSecondOverdueNoticeSent(): InvoiceState & {
|
|
10977
10991
|
get name(): "INVOICE_SECOND_OVERDUE_NOTICE_SENT";
|
|
10978
|
-
get ordinal():
|
|
10992
|
+
get ordinal(): 62;
|
|
10979
10993
|
};
|
|
10980
10994
|
static get InvoiceSecondOverdueEmailNoticeSent(): InvoiceState & {
|
|
10981
10995
|
get name(): "INVOICE_SECOND_OVERDUE_EMAIL_NOTICE_SENT";
|
|
10982
|
-
get ordinal():
|
|
10996
|
+
get ordinal(): 63;
|
|
10983
10997
|
};
|
|
10984
10998
|
static get InvoiceSecondOverdueDigipostNoticeSent(): InvoiceState & {
|
|
10985
10999
|
get name(): "INVOICE_SECOND_OVERDUE_DIGIPOST_NOTICE_SENT";
|
|
10986
|
-
get ordinal():
|
|
11000
|
+
get ordinal(): 64;
|
|
10987
11001
|
};
|
|
10988
11002
|
static get FailedInvoiceSecondOverduePdfPersist(): InvoiceState & {
|
|
10989
11003
|
get name(): "FAILED_INVOICE_SECOND_OVERDUE_PDF_PERSIST";
|
|
10990
|
-
get ordinal():
|
|
11004
|
+
get ordinal(): 65;
|
|
10991
11005
|
};
|
|
10992
11006
|
static get InvoiceSecondOverduePdfPersist(): InvoiceState & {
|
|
10993
11007
|
get name(): "INVOICE_SECOND_OVERDUE_PDF_PERSIST";
|
|
10994
|
-
get ordinal():
|
|
11008
|
+
get ordinal(): 66;
|
|
10995
11009
|
};
|
|
10996
11010
|
static get InsufficientPaymentReceived(): InvoiceState & {
|
|
10997
11011
|
get name(): "INSUFFICIENT_PAYMENT_RECEIVED";
|
|
10998
|
-
get ordinal():
|
|
11012
|
+
get ordinal(): 67;
|
|
10999
11013
|
};
|
|
11000
11014
|
static get FailedLossRegistration(): InvoiceState & {
|
|
11001
11015
|
get name(): "FAILED_LOSS_REGISTRATION";
|
|
11002
|
-
get ordinal():
|
|
11016
|
+
get ordinal(): 68;
|
|
11003
11017
|
};
|
|
11004
11018
|
static get LossRegistered(): InvoiceState & {
|
|
11005
11019
|
get name(): "LOSS_REGISTERED";
|
|
11006
|
-
get ordinal():
|
|
11020
|
+
get ordinal(): 69;
|
|
11007
11021
|
};
|
|
11008
11022
|
static get ManualProcessing(): InvoiceState & {
|
|
11009
11023
|
get name(): "MANUAL_PROCESSING";
|
|
11010
|
-
get ordinal():
|
|
11024
|
+
get ordinal(): 70;
|
|
11011
11025
|
};
|
|
11012
11026
|
static get Complete(): InvoiceState & {
|
|
11013
11027
|
get name(): "COMPLETE";
|
|
11014
|
-
get ordinal():
|
|
11028
|
+
get ordinal(): 71;
|
|
11015
11029
|
};
|
|
11016
|
-
static values(): [typeof InvoiceState.UNKNOWN, typeof InvoiceState.FAILED_CREATE, typeof InvoiceState.CREATED, typeof InvoiceState.CREDITED, typeof InvoiceState.FAILED_PDF_PERSIST, typeof InvoiceState.PDF_PERSISTED, typeof InvoiceState.FAILED_VOUCHER_CREATE, typeof InvoiceState.VOUCHER_CREATED, typeof InvoiceState.FAILED_VOUCHER_PDF_PERSIST, typeof InvoiceState.VOUCHER_PDF_PERSISTED, typeof InvoiceState.FAILED_INVOICE_SEND, typeof InvoiceState.INVOICE_SENT_EHF, typeof InvoiceState.INVOICE_SENT_EFAKTURA, typeof InvoiceState.INVOICE_SENT_AVTALEGIRO, typeof InvoiceState.INVOICE_SENT_COMBO, typeof InvoiceState.INVOICE_SENT_ALTERNATIVE_DIGIPOST, typeof InvoiceState.INVOICE_SENT_ALTERNATIVE_EMAIL, typeof InvoiceState.INVOICE_SENT_NONE, typeof InvoiceState.FAILED_INVOICE_SEND_EHF, typeof InvoiceState.FAILED_INVOICE_SEND_ALTERNATIVE, typeof InvoiceState.FAILED_INVOICE_SEND_ALTERNATIVE_DIGIPOST, typeof InvoiceState.FAILED_INVOICE_SEND_ALTERNATIVE_EMAIL, typeof InvoiceState.FAILED_INVOICE_RECEIPT_RECEPTION, typeof InvoiceState.FAILED_INVOICE_EFAKTURA_RECEIPT_RECEPTION, typeof InvoiceState.FAILED_INVOICE_AVTALEGIRO_RECEIPT_RECEPTION, typeof InvoiceState.FAILED_PARTIAL_INVOICE_RECEIPT_RECEPTION, typeof InvoiceState.INVOICE_PROCESSING_FAILED, typeof InvoiceState.INVOICE_RECEIPT_RECEIVED, typeof InvoiceState.INVOICE_EHF_RECEIPT_RECEIVED, typeof InvoiceState.INVOICE_EFAKTURA_RECEIPT_RECEIVED, typeof InvoiceState.INVOICE_AVTALEGIRO_RECEIPT_RECEIVED, typeof InvoiceState.INVOICE_EMAIL_RECEIPT_RECEIVED, typeof InvoiceState.INVOICE_OVERDUE_EMAIL_RECEIPT_RECEIVED, typeof InvoiceState.INVOICE_SECOND_OVERDUE_EMAIL_RECEIPT_RECEIVED, typeof InvoiceState.INVOICE_EMAIL_OPENED_RECEIPT_RECEIVED, typeof InvoiceState.INVOICE_OVERDUE_EMAIL_OPENED_RECEIPT_RECEIVED, typeof InvoiceState.INVOICE_SECOND_OVERDUE_EMAIL_OPENED_RECEIPT_RECEIVED, typeof InvoiceState.INVOICE_OVERDUE_SMS_RECEIPT_RECEIVED, typeof InvoiceState.INVOICE_SECOND_OVERDUE_SMS_RECEIPT_RECEIVED, typeof InvoiceState.FAILED_INVOICE_EHF_RECEIPT, typeof InvoiceState.FAILED_INVOICE_EMAIL_RECEIPT, typeof InvoiceState.FAILED_INVOICE_OVERDUE_EMAIL_RECEIPT, typeof InvoiceState.FAILED_INVOICE_SECOND_OVERDUE_EMAIL_RECEIPT, typeof InvoiceState.FAILED_INVOICE_OVERDUE_SMS_RECEIPT, typeof InvoiceState.FAILED_INVOICE_SECOND_OVERDUE_SMS_RECEIPT, typeof InvoiceState.FAILED_INVOICE_PROCESSING, typeof InvoiceState.FAILED_INVOICE_OVERDUE_NOTICE_SEND, typeof InvoiceState.FAILED_INVOICE_OVERDUE_NOTICE_SEND_EMAIL, typeof InvoiceState.FAILED_INVOICE_OVERDUE_NOTICE_SEND_DIGIPOST, typeof InvoiceState.FAILED_INVOICE_OVERDUE_NOTICE_SMS_SEND, typeof InvoiceState.FAILED_INVOICE_SECOND_OVERDUE_NOTICE_SMS_SEND, typeof InvoiceState.INVOICE_OVERDUE_NOTICE_SENT, typeof InvoiceState.INVOICE_OVERDUE_EMAIL_NOTICE_SENT, typeof InvoiceState.INVOICE_OVERDUE_SMS_NOTICE_SENT, typeof InvoiceState.INVOICE_OVERDUE_DIGIPOST_NOTICE_SENT, typeof InvoiceState.INVOICE_SECOND_OVERDUE_SMS_NOTICE_SENT, typeof InvoiceState.FAILED_INVOICE_OVERDUE_PDF_PERSIST, typeof InvoiceState.INVOICE_OVERDUE_PDF_PERSIST, typeof InvoiceState.FAILED_INVOICE_SECOND_OVERDUE_NOTICE_SEND, typeof InvoiceState.FAILED_INVOICE_SECOND_OVERDUE_NOTICE_SEND_EMAIL, typeof InvoiceState.FAILED_INVOICE_SECOND_OVERDUE_NOTICE_SEND_DIGIPOST, typeof InvoiceState.INVOICE_SECOND_OVERDUE_NOTICE_SENT, typeof InvoiceState.INVOICE_SECOND_OVERDUE_EMAIL_NOTICE_SENT, typeof InvoiceState.INVOICE_SECOND_OVERDUE_DIGIPOST_NOTICE_SENT, typeof InvoiceState.FAILED_INVOICE_SECOND_OVERDUE_PDF_PERSIST, typeof InvoiceState.INVOICE_SECOND_OVERDUE_PDF_PERSIST, typeof InvoiceState.INSUFFICIENT_PAYMENT_RECEIVED, typeof InvoiceState.FAILED_LOSS_REGISTRATION, typeof InvoiceState.LOSS_REGISTERED, typeof InvoiceState.MANUAL_PROCESSING, typeof InvoiceState.COMPLETE];
|
|
11030
|
+
static values(): [typeof InvoiceState.UNKNOWN, typeof InvoiceState.FAILED_CREATE, typeof InvoiceState.CREATED, typeof InvoiceState.CREDITED, typeof InvoiceState.FAILED_PDF_PERSIST, typeof InvoiceState.PDF_PERSISTED, typeof InvoiceState.FAILED_VOUCHER_CREATE, typeof InvoiceState.VOUCHER_CREATED, typeof InvoiceState.FAILED_VOUCHER_PDF_PERSIST, typeof InvoiceState.VOUCHER_PDF_PERSISTED, typeof InvoiceState.FAILED_INVOICE_SEND, typeof InvoiceState.INVOICE_SENT_EHF, typeof InvoiceState.INVOICE_SENT_EFAKTURA, typeof InvoiceState.INVOICE_SENT_AVTALEGIRO, typeof InvoiceState.INVOICE_SENT_COMBO, typeof InvoiceState.INVOICE_SENT_ALTERNATIVE_DIGIPOST, typeof InvoiceState.INVOICE_SENT_ALTERNATIVE_EMAIL, typeof InvoiceState.INVOICE_SENT_NONE, typeof InvoiceState.FAILED_INVOICE_SEND_EHF, typeof InvoiceState.FAILED_INVOICE_SEND_ALTERNATIVE, typeof InvoiceState.FAILED_INVOICE_SEND_ALTERNATIVE_DIGIPOST, typeof InvoiceState.FAILED_INVOICE_SEND_ALTERNATIVE_EMAIL, typeof InvoiceState.FAILED_INVOICE_RECEIPT_RECEPTION, typeof InvoiceState.FAILED_INVOICE_EFAKTURA_RECEIPT_RECEPTION, typeof InvoiceState.FAILED_INVOICE_AVTALEGIRO_RECEIPT_RECEPTION, typeof InvoiceState.FAILED_PARTIAL_INVOICE_RECEIPT_RECEPTION, typeof InvoiceState.INVOICE_PROCESSING_FAILED, typeof InvoiceState.INVOICE_HANDED_OFF_TO_CUSTOMER_SERVICE, typeof InvoiceState.INVOICE_RECEIPT_RECEIVED, typeof InvoiceState.INVOICE_EHF_RECEIPT_RECEIVED, typeof InvoiceState.INVOICE_EFAKTURA_RECEIPT_RECEIVED, typeof InvoiceState.INVOICE_AVTALEGIRO_RECEIPT_RECEIVED, typeof InvoiceState.INVOICE_EMAIL_RECEIPT_RECEIVED, typeof InvoiceState.INVOICE_OVERDUE_EMAIL_RECEIPT_RECEIVED, typeof InvoiceState.INVOICE_SECOND_OVERDUE_EMAIL_RECEIPT_RECEIVED, typeof InvoiceState.INVOICE_EMAIL_OPENED_RECEIPT_RECEIVED, typeof InvoiceState.INVOICE_OVERDUE_EMAIL_OPENED_RECEIPT_RECEIVED, typeof InvoiceState.INVOICE_SECOND_OVERDUE_EMAIL_OPENED_RECEIPT_RECEIVED, typeof InvoiceState.INVOICE_OVERDUE_SMS_RECEIPT_RECEIVED, typeof InvoiceState.INVOICE_SECOND_OVERDUE_SMS_RECEIPT_RECEIVED, typeof InvoiceState.FAILED_INVOICE_EHF_RECEIPT, typeof InvoiceState.FAILED_INVOICE_EMAIL_RECEIPT, typeof InvoiceState.FAILED_INVOICE_OVERDUE_EMAIL_RECEIPT, typeof InvoiceState.FAILED_INVOICE_SECOND_OVERDUE_EMAIL_RECEIPT, typeof InvoiceState.FAILED_INVOICE_OVERDUE_SMS_RECEIPT, typeof InvoiceState.FAILED_INVOICE_SECOND_OVERDUE_SMS_RECEIPT, typeof InvoiceState.FAILED_INVOICE_PROCESSING, typeof InvoiceState.FAILED_INVOICE_OVERDUE_NOTICE_SEND, typeof InvoiceState.FAILED_INVOICE_OVERDUE_NOTICE_SEND_EMAIL, typeof InvoiceState.FAILED_INVOICE_OVERDUE_NOTICE_SEND_DIGIPOST, typeof InvoiceState.FAILED_INVOICE_OVERDUE_NOTICE_SMS_SEND, typeof InvoiceState.FAILED_INVOICE_SECOND_OVERDUE_NOTICE_SMS_SEND, typeof InvoiceState.INVOICE_OVERDUE_NOTICE_SENT, typeof InvoiceState.INVOICE_OVERDUE_EMAIL_NOTICE_SENT, typeof InvoiceState.INVOICE_OVERDUE_SMS_NOTICE_SENT, typeof InvoiceState.INVOICE_OVERDUE_DIGIPOST_NOTICE_SENT, typeof InvoiceState.INVOICE_SECOND_OVERDUE_SMS_NOTICE_SENT, typeof InvoiceState.FAILED_INVOICE_OVERDUE_PDF_PERSIST, typeof InvoiceState.INVOICE_OVERDUE_PDF_PERSIST, typeof InvoiceState.FAILED_INVOICE_SECOND_OVERDUE_NOTICE_SEND, typeof InvoiceState.FAILED_INVOICE_SECOND_OVERDUE_NOTICE_SEND_EMAIL, typeof InvoiceState.FAILED_INVOICE_SECOND_OVERDUE_NOTICE_SEND_DIGIPOST, typeof InvoiceState.INVOICE_SECOND_OVERDUE_NOTICE_SENT, typeof InvoiceState.INVOICE_SECOND_OVERDUE_EMAIL_NOTICE_SENT, typeof InvoiceState.INVOICE_SECOND_OVERDUE_DIGIPOST_NOTICE_SENT, typeof InvoiceState.FAILED_INVOICE_SECOND_OVERDUE_PDF_PERSIST, typeof InvoiceState.INVOICE_SECOND_OVERDUE_PDF_PERSIST, typeof InvoiceState.INSUFFICIENT_PAYMENT_RECEIVED, typeof InvoiceState.FAILED_LOSS_REGISTRATION, typeof InvoiceState.LOSS_REGISTERED, typeof InvoiceState.MANUAL_PROCESSING, typeof InvoiceState.COMPLETE];
|
|
11017
11031
|
static valueOf(value: string): InvoiceState;
|
|
11018
|
-
get name(): "UNKNOWN" | "FAILED_CREATE" | "CREATED" | "CREDITED" | "FAILED_PDF_PERSIST" | "PDF_PERSISTED" | "FAILED_VOUCHER_CREATE" | "VOUCHER_CREATED" | "FAILED_VOUCHER_PDF_PERSIST" | "VOUCHER_PDF_PERSISTED" | "FAILED_INVOICE_SEND" | "INVOICE_SENT_EHF" | "INVOICE_SENT_EFAKTURA" | "INVOICE_SENT_AVTALEGIRO" | "INVOICE_SENT_COMBO" | "INVOICE_SENT_ALTERNATIVE_DIGIPOST" | "INVOICE_SENT_ALTERNATIVE_EMAIL" | "INVOICE_SENT_NONE" | "FAILED_INVOICE_SEND_EHF" | "FAILED_INVOICE_SEND_ALTERNATIVE" | "FAILED_INVOICE_SEND_ALTERNATIVE_DIGIPOST" | "FAILED_INVOICE_SEND_ALTERNATIVE_EMAIL" | "FAILED_INVOICE_RECEIPT_RECEPTION" | "FAILED_INVOICE_EFAKTURA_RECEIPT_RECEPTION" | "FAILED_INVOICE_AVTALEGIRO_RECEIPT_RECEPTION" | "FAILED_PARTIAL_INVOICE_RECEIPT_RECEPTION" | "INVOICE_PROCESSING_FAILED" | "INVOICE_RECEIPT_RECEIVED" | "INVOICE_EHF_RECEIPT_RECEIVED" | "INVOICE_EFAKTURA_RECEIPT_RECEIVED" | "INVOICE_AVTALEGIRO_RECEIPT_RECEIVED" | "INVOICE_EMAIL_RECEIPT_RECEIVED" | "INVOICE_OVERDUE_EMAIL_RECEIPT_RECEIVED" | "INVOICE_SECOND_OVERDUE_EMAIL_RECEIPT_RECEIVED" | "INVOICE_EMAIL_OPENED_RECEIPT_RECEIVED" | "INVOICE_OVERDUE_EMAIL_OPENED_RECEIPT_RECEIVED" | "INVOICE_SECOND_OVERDUE_EMAIL_OPENED_RECEIPT_RECEIVED" | "INVOICE_OVERDUE_SMS_RECEIPT_RECEIVED" | "INVOICE_SECOND_OVERDUE_SMS_RECEIPT_RECEIVED" | "FAILED_INVOICE_EHF_RECEIPT" | "FAILED_INVOICE_EMAIL_RECEIPT" | "FAILED_INVOICE_OVERDUE_EMAIL_RECEIPT" | "FAILED_INVOICE_SECOND_OVERDUE_EMAIL_RECEIPT" | "FAILED_INVOICE_OVERDUE_SMS_RECEIPT" | "FAILED_INVOICE_SECOND_OVERDUE_SMS_RECEIPT" | "FAILED_INVOICE_PROCESSING" | "FAILED_INVOICE_OVERDUE_NOTICE_SEND" | "FAILED_INVOICE_OVERDUE_NOTICE_SEND_EMAIL" | "FAILED_INVOICE_OVERDUE_NOTICE_SEND_DIGIPOST" | "FAILED_INVOICE_OVERDUE_NOTICE_SMS_SEND" | "FAILED_INVOICE_SECOND_OVERDUE_NOTICE_SMS_SEND" | "INVOICE_OVERDUE_NOTICE_SENT" | "INVOICE_OVERDUE_EMAIL_NOTICE_SENT" | "INVOICE_OVERDUE_SMS_NOTICE_SENT" | "INVOICE_OVERDUE_DIGIPOST_NOTICE_SENT" | "INVOICE_SECOND_OVERDUE_SMS_NOTICE_SENT" | "FAILED_INVOICE_OVERDUE_PDF_PERSIST" | "INVOICE_OVERDUE_PDF_PERSIST" | "FAILED_INVOICE_SECOND_OVERDUE_NOTICE_SEND" | "FAILED_INVOICE_SECOND_OVERDUE_NOTICE_SEND_EMAIL" | "FAILED_INVOICE_SECOND_OVERDUE_NOTICE_SEND_DIGIPOST" | "INVOICE_SECOND_OVERDUE_NOTICE_SENT" | "INVOICE_SECOND_OVERDUE_EMAIL_NOTICE_SENT" | "INVOICE_SECOND_OVERDUE_DIGIPOST_NOTICE_SENT" | "FAILED_INVOICE_SECOND_OVERDUE_PDF_PERSIST" | "INVOICE_SECOND_OVERDUE_PDF_PERSIST" | "INSUFFICIENT_PAYMENT_RECEIVED" | "FAILED_LOSS_REGISTRATION" | "LOSS_REGISTERED" | "MANUAL_PROCESSING" | "COMPLETE";
|
|
11019
|
-
get ordinal(): 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70;
|
|
11032
|
+
get name(): "UNKNOWN" | "FAILED_CREATE" | "CREATED" | "CREDITED" | "FAILED_PDF_PERSIST" | "PDF_PERSISTED" | "FAILED_VOUCHER_CREATE" | "VOUCHER_CREATED" | "FAILED_VOUCHER_PDF_PERSIST" | "VOUCHER_PDF_PERSISTED" | "FAILED_INVOICE_SEND" | "INVOICE_SENT_EHF" | "INVOICE_SENT_EFAKTURA" | "INVOICE_SENT_AVTALEGIRO" | "INVOICE_SENT_COMBO" | "INVOICE_SENT_ALTERNATIVE_DIGIPOST" | "INVOICE_SENT_ALTERNATIVE_EMAIL" | "INVOICE_SENT_NONE" | "FAILED_INVOICE_SEND_EHF" | "FAILED_INVOICE_SEND_ALTERNATIVE" | "FAILED_INVOICE_SEND_ALTERNATIVE_DIGIPOST" | "FAILED_INVOICE_SEND_ALTERNATIVE_EMAIL" | "FAILED_INVOICE_RECEIPT_RECEPTION" | "FAILED_INVOICE_EFAKTURA_RECEIPT_RECEPTION" | "FAILED_INVOICE_AVTALEGIRO_RECEIPT_RECEPTION" | "FAILED_PARTIAL_INVOICE_RECEIPT_RECEPTION" | "INVOICE_PROCESSING_FAILED" | "INVOICE_HANDED_OFF_TO_CUSTOMER_SERVICE" | "INVOICE_RECEIPT_RECEIVED" | "INVOICE_EHF_RECEIPT_RECEIVED" | "INVOICE_EFAKTURA_RECEIPT_RECEIVED" | "INVOICE_AVTALEGIRO_RECEIPT_RECEIVED" | "INVOICE_EMAIL_RECEIPT_RECEIVED" | "INVOICE_OVERDUE_EMAIL_RECEIPT_RECEIVED" | "INVOICE_SECOND_OVERDUE_EMAIL_RECEIPT_RECEIVED" | "INVOICE_EMAIL_OPENED_RECEIPT_RECEIVED" | "INVOICE_OVERDUE_EMAIL_OPENED_RECEIPT_RECEIVED" | "INVOICE_SECOND_OVERDUE_EMAIL_OPENED_RECEIPT_RECEIVED" | "INVOICE_OVERDUE_SMS_RECEIPT_RECEIVED" | "INVOICE_SECOND_OVERDUE_SMS_RECEIPT_RECEIVED" | "FAILED_INVOICE_EHF_RECEIPT" | "FAILED_INVOICE_EMAIL_RECEIPT" | "FAILED_INVOICE_OVERDUE_EMAIL_RECEIPT" | "FAILED_INVOICE_SECOND_OVERDUE_EMAIL_RECEIPT" | "FAILED_INVOICE_OVERDUE_SMS_RECEIPT" | "FAILED_INVOICE_SECOND_OVERDUE_SMS_RECEIPT" | "FAILED_INVOICE_PROCESSING" | "FAILED_INVOICE_OVERDUE_NOTICE_SEND" | "FAILED_INVOICE_OVERDUE_NOTICE_SEND_EMAIL" | "FAILED_INVOICE_OVERDUE_NOTICE_SEND_DIGIPOST" | "FAILED_INVOICE_OVERDUE_NOTICE_SMS_SEND" | "FAILED_INVOICE_SECOND_OVERDUE_NOTICE_SMS_SEND" | "INVOICE_OVERDUE_NOTICE_SENT" | "INVOICE_OVERDUE_EMAIL_NOTICE_SENT" | "INVOICE_OVERDUE_SMS_NOTICE_SENT" | "INVOICE_OVERDUE_DIGIPOST_NOTICE_SENT" | "INVOICE_SECOND_OVERDUE_SMS_NOTICE_SENT" | "FAILED_INVOICE_OVERDUE_PDF_PERSIST" | "INVOICE_OVERDUE_PDF_PERSIST" | "FAILED_INVOICE_SECOND_OVERDUE_NOTICE_SEND" | "FAILED_INVOICE_SECOND_OVERDUE_NOTICE_SEND_EMAIL" | "FAILED_INVOICE_SECOND_OVERDUE_NOTICE_SEND_DIGIPOST" | "INVOICE_SECOND_OVERDUE_NOTICE_SENT" | "INVOICE_SECOND_OVERDUE_EMAIL_NOTICE_SENT" | "INVOICE_SECOND_OVERDUE_DIGIPOST_NOTICE_SENT" | "FAILED_INVOICE_SECOND_OVERDUE_PDF_PERSIST" | "INVOICE_SECOND_OVERDUE_PDF_PERSIST" | "INSUFFICIENT_PAYMENT_RECEIVED" | "FAILED_LOSS_REGISTRATION" | "LOSS_REGISTERED" | "MANUAL_PROCESSING" | "COMPLETE";
|
|
11033
|
+
get ordinal(): 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71;
|
|
11020
11034
|
get value(): string;
|
|
11021
11035
|
}
|
|
11022
11036
|
export declare namespace InvoiceState {
|
|
@@ -24186,11 +24200,11 @@ export declare class ConversationApi extends ApiClient.$metadata$.constructor {
|
|
|
24186
24200
|
indexConversationByParticipant(companyId: bigint, participantId: bigint, participantType: ParticipantType, fields?: string | null | undefined, pageToken?: string | null | undefined, autoPaginate?: boolean | null | undefined, count?: number | null | undefined): Promise<HttpResponse<PagedListConversation>>;
|
|
24187
24201
|
indexConversationCategoriesOpen(companySlug: string, fields?: string | null | undefined, pageToken?: string | null | undefined, autoPaginate?: boolean | null | undefined, count?: number | null | undefined): Promise<HttpResponse<PagedListPublicConversationCategory>>;
|
|
24188
24202
|
indexConversationCount(fields?: string | null | undefined): Promise<HttpResponse<KtMap<string, ConversationCountConversationCountMap>>>;
|
|
24189
|
-
indexConversationCountByCompany(companyIds?: KtList<bigint> | null | undefined, categoryIds?: KtList<bigint> | null | undefined, status?: ConversationStatus | null | undefined, folderId?: bigint | null | undefined, assignedToUserId?: bigint | null | undefined, createdSince?: bigint | null | undefined, updatedSince?: bigint | null | undefined, flaggedByCurrentUser?: boolean | null | undefined, readByCurrentUser?: boolean | null | undefined, fields?: string | null | undefined): Promise<HttpResponse<KtMap<string, ConversationCountConversationCountByCompanyMap>>>;
|
|
24203
|
+
indexConversationCountByCompany(companyIds?: KtList<bigint> | null | undefined, categoryIds?: KtList<bigint> | null | undefined, status?: ConversationStatus | null | undefined, draft?: boolean | null | undefined, requiresFollowUp?: boolean | null | undefined, folderId?: bigint | null | undefined, assignedToUserId?: bigint | null | undefined, createdSince?: bigint | null | undefined, updatedSince?: bigint | null | undefined, flaggedByCurrentUser?: boolean | null | undefined, readByCurrentUser?: boolean | null | undefined, fields?: string | null | undefined): Promise<HttpResponse<KtMap<string, ConversationCountConversationCountByCompanyMap>>>;
|
|
24190
24204
|
indexConversationCountInCompany(companyId: bigint, fields?: string | null | undefined): Promise<HttpResponse<ConversationCount>>;
|
|
24191
24205
|
indexConversationFolders(companyId: bigint, parentId?: bigint | null | undefined, fields?: string | null | undefined, pageToken?: string | null | undefined, autoPaginate?: boolean | null | undefined, count?: number | null | undefined): Promise<HttpResponse<PagedListConversationFolder>>;
|
|
24192
24206
|
indexConversationMessageHistory(companyId: bigint, conversationId: bigint, messageId: bigint, fields?: string | null | undefined): Promise<HttpResponse<KtList<MessageEditHistory>>>;
|
|
24193
|
-
indexConversations(search?: string | null | undefined, companyIds?: KtList<bigint> | null | undefined, categoryIds?: KtList<bigint> | null | undefined, status?: ConversationStatus | null | undefined, byParticipants?: KtList<bigint> | null | undefined, byParticipantTypes?: KtList<ParticipantType> | null | undefined, folderId?: bigint | null | undefined, assignedToUserId?: bigint | null | undefined, createdSince?: bigint | null | undefined, updatedSince?: bigint | null | undefined, flaggedByCurrentUser?: boolean | null | undefined, readByCurrentUser?: boolean | null | undefined, orderBy?: ConversationOrderBy | null | undefined, orderDirection?: ConversationOrderDirection | null | undefined, fields?: string | null | undefined, pageToken?: string | null | undefined, autoPaginate?: boolean | null | undefined, count?: number | null | undefined): Promise<HttpResponse<PagedListConversation>>;
|
|
24207
|
+
indexConversations(search?: string | null | undefined, companyIds?: KtList<bigint> | null | undefined, categoryIds?: KtList<bigint> | null | undefined, status?: ConversationStatus | null | undefined, draft?: boolean | null | undefined, requiresFollowUp?: boolean | null | undefined, byParticipants?: KtList<bigint> | null | undefined, byParticipantTypes?: KtList<ParticipantType> | null | undefined, folderId?: bigint | null | undefined, assignedToUserId?: bigint | null | undefined, createdSince?: bigint | null | undefined, updatedSince?: bigint | null | undefined, flaggedByCurrentUser?: boolean | null | undefined, readByCurrentUser?: boolean | null | undefined, orderBy?: ConversationOrderBy | null | undefined, orderDirection?: ConversationOrderDirection | null | undefined, fields?: string | null | undefined, pageToken?: string | null | undefined, autoPaginate?: boolean | null | undefined, count?: number | null | undefined): Promise<HttpResponse<PagedListConversation>>;
|
|
24194
24208
|
moveConversation(companyId: bigint, conversationId: bigint, moveConversationToFolderCommand: MoveConversationToFolderCommand): Promise<HttpResponse<void>>;
|
|
24195
24209
|
moveMultipleConversations(companyId: bigint, batchMoveConversationsToFolderCommand: BatchMoveConversationsToFolderCommand): Promise<HttpResponse<void>>;
|
|
24196
24210
|
previewConversationCategoryParticipants(companyId: bigint, categoryId: bigint, fields?: string | null | undefined): Promise<HttpResponse<KtList<ConversationCategoryParticipantPreview>>>;
|