@chift/chift-nodejs 1.0.15 → 1.0.16
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/.eslintcache +1 -1
- package/CHANGELOG.md +4 -1
- package/dist/src/modules/api.d.ts +60 -0
- package/dist/src/modules/consumer.d.ts +12 -1
- package/dist/src/modules/consumers.d.ts +55 -0
- package/dist/src/modules/integrations.d.ts +5 -0
- package/dist/src/modules/sync.d.ts +44 -0
- package/dist/src/types/public-api/schema.d.ts +69 -25
- package/package.json +1 -1
- package/src/modules/consumer.ts +3 -1
- package/src/types/public-api/schema.d.ts +69 -25
- package/src/types/public-api/schema.ts +69 -25
|
@@ -97,6 +97,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
97
97
|
tax_amount: number;
|
|
98
98
|
total: number;
|
|
99
99
|
}[] | undefined;
|
|
100
|
+
guests?: number | undefined;
|
|
100
101
|
payments: {
|
|
101
102
|
id?: string | undefined;
|
|
102
103
|
payment_method_id?: string | undefined;
|
|
@@ -170,6 +171,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
170
171
|
tax_amount: number;
|
|
171
172
|
total: number;
|
|
172
173
|
}[] | undefined;
|
|
174
|
+
guests?: number | undefined;
|
|
173
175
|
payments: {
|
|
174
176
|
id?: string | undefined;
|
|
175
177
|
payment_method_id?: string | undefined;
|
|
@@ -340,6 +342,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
340
342
|
tax_amount: number;
|
|
341
343
|
total: number;
|
|
342
344
|
}[] | undefined;
|
|
345
|
+
guests?: number | undefined;
|
|
343
346
|
payments: {
|
|
344
347
|
id?: string | undefined;
|
|
345
348
|
payment_method_id?: string | undefined;
|
|
@@ -422,6 +425,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
422
425
|
tax_amount: number;
|
|
423
426
|
total: number;
|
|
424
427
|
}[] | undefined;
|
|
428
|
+
guests?: number | undefined;
|
|
425
429
|
items: {
|
|
426
430
|
id: string;
|
|
427
431
|
source_ref: {
|
|
@@ -2659,6 +2663,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
2659
2663
|
updated_after?: string | undefined;
|
|
2660
2664
|
include_detailed_refunds?: "true" | "false" | undefined;
|
|
2661
2665
|
include_product_categories?: "true" | "false" | undefined;
|
|
2666
|
+
include_customer_details?: "true" | "false" | undefined;
|
|
2662
2667
|
} | undefined): import("../types/api").RequestData<{
|
|
2663
2668
|
id: string;
|
|
2664
2669
|
source_ref: {
|
|
@@ -2754,6 +2759,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
2754
2759
|
}[] | undefined;
|
|
2755
2760
|
transactions?: {
|
|
2756
2761
|
id: string;
|
|
2762
|
+
created_on?: string | undefined;
|
|
2757
2763
|
payment_method_id?: string | undefined;
|
|
2758
2764
|
payment_method_name?: string | undefined;
|
|
2759
2765
|
amount: number;
|
|
@@ -2815,6 +2821,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
2815
2821
|
payment_method_id?: string | undefined;
|
|
2816
2822
|
transactions?: {
|
|
2817
2823
|
id: string;
|
|
2824
|
+
created_on?: string | undefined;
|
|
2818
2825
|
payment_method_id?: string | undefined;
|
|
2819
2826
|
payment_method_name?: string | undefined;
|
|
2820
2827
|
amount: number;
|
|
@@ -2961,6 +2968,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
2961
2968
|
}[] | undefined;
|
|
2962
2969
|
transactions?: {
|
|
2963
2970
|
id: string;
|
|
2971
|
+
created_on?: string | undefined;
|
|
2964
2972
|
payment_method_id?: string | undefined;
|
|
2965
2973
|
payment_method_name?: string | undefined;
|
|
2966
2974
|
amount: number;
|
|
@@ -3022,6 +3030,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
3022
3030
|
payment_method_id?: string | undefined;
|
|
3023
3031
|
transactions?: {
|
|
3024
3032
|
id: string;
|
|
3033
|
+
created_on?: string | undefined;
|
|
3025
3034
|
payment_method_id?: string | undefined;
|
|
3026
3035
|
payment_method_name?: string | undefined;
|
|
3027
3036
|
amount: number;
|
|
@@ -3127,6 +3136,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
3127
3136
|
}[] | undefined;
|
|
3128
3137
|
transactions?: {
|
|
3129
3138
|
id: string;
|
|
3139
|
+
created_on?: string | undefined;
|
|
3130
3140
|
payment_method_id?: string | undefined;
|
|
3131
3141
|
payment_method_name?: string | undefined;
|
|
3132
3142
|
amount: number;
|
|
@@ -3188,6 +3198,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
3188
3198
|
payment_method_id?: string | undefined;
|
|
3189
3199
|
transactions?: {
|
|
3190
3200
|
id: string;
|
|
3201
|
+
created_on?: string | undefined;
|
|
3191
3202
|
payment_method_id?: string | undefined;
|
|
3192
3203
|
payment_method_name?: string | undefined;
|
|
3193
3204
|
amount: number;
|
|
@@ -3421,6 +3432,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
3421
3432
|
tax_amount: number;
|
|
3422
3433
|
total: number;
|
|
3423
3434
|
}[] | undefined;
|
|
3435
|
+
guests?: number | undefined;
|
|
3424
3436
|
payments: {
|
|
3425
3437
|
id?: string | undefined;
|
|
3426
3438
|
payment_method_id?: string | undefined;
|
|
@@ -3494,6 +3506,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
3494
3506
|
tax_amount: number;
|
|
3495
3507
|
total: number;
|
|
3496
3508
|
}[] | undefined;
|
|
3509
|
+
guests?: number | undefined;
|
|
3497
3510
|
payments: {
|
|
3498
3511
|
id?: string | undefined;
|
|
3499
3512
|
payment_method_id?: string | undefined;
|
|
@@ -3664,6 +3677,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
3664
3677
|
tax_amount: number;
|
|
3665
3678
|
total: number;
|
|
3666
3679
|
}[] | undefined;
|
|
3680
|
+
guests?: number | undefined;
|
|
3667
3681
|
payments: {
|
|
3668
3682
|
id?: string | undefined;
|
|
3669
3683
|
payment_method_id?: string | undefined;
|
|
@@ -3746,6 +3760,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
3746
3760
|
tax_amount: number;
|
|
3747
3761
|
total: number;
|
|
3748
3762
|
}[] | undefined;
|
|
3763
|
+
guests?: number | undefined;
|
|
3749
3764
|
items: {
|
|
3750
3765
|
id: string;
|
|
3751
3766
|
source_ref: {
|
|
@@ -5983,6 +5998,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
5983
5998
|
updated_after?: string | undefined;
|
|
5984
5999
|
include_detailed_refunds?: "true" | "false" | undefined;
|
|
5985
6000
|
include_product_categories?: "true" | "false" | undefined;
|
|
6001
|
+
include_customer_details?: "true" | "false" | undefined;
|
|
5986
6002
|
} | undefined): import("../types/api").RequestData<{
|
|
5987
6003
|
id: string;
|
|
5988
6004
|
source_ref: {
|
|
@@ -6078,6 +6094,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
6078
6094
|
}[] | undefined;
|
|
6079
6095
|
transactions?: {
|
|
6080
6096
|
id: string;
|
|
6097
|
+
created_on?: string | undefined;
|
|
6081
6098
|
payment_method_id?: string | undefined;
|
|
6082
6099
|
payment_method_name?: string | undefined;
|
|
6083
6100
|
amount: number;
|
|
@@ -6139,6 +6156,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
6139
6156
|
payment_method_id?: string | undefined;
|
|
6140
6157
|
transactions?: {
|
|
6141
6158
|
id: string;
|
|
6159
|
+
created_on?: string | undefined;
|
|
6142
6160
|
payment_method_id?: string | undefined;
|
|
6143
6161
|
payment_method_name?: string | undefined;
|
|
6144
6162
|
amount: number;
|
|
@@ -6285,6 +6303,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
6285
6303
|
}[] | undefined;
|
|
6286
6304
|
transactions?: {
|
|
6287
6305
|
id: string;
|
|
6306
|
+
created_on?: string | undefined;
|
|
6288
6307
|
payment_method_id?: string | undefined;
|
|
6289
6308
|
payment_method_name?: string | undefined;
|
|
6290
6309
|
amount: number;
|
|
@@ -6346,6 +6365,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
6346
6365
|
payment_method_id?: string | undefined;
|
|
6347
6366
|
transactions?: {
|
|
6348
6367
|
id: string;
|
|
6368
|
+
created_on?: string | undefined;
|
|
6349
6369
|
payment_method_id?: string | undefined;
|
|
6350
6370
|
payment_method_name?: string | undefined;
|
|
6351
6371
|
amount: number;
|
|
@@ -6451,6 +6471,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
6451
6471
|
}[] | undefined;
|
|
6452
6472
|
transactions?: {
|
|
6453
6473
|
id: string;
|
|
6474
|
+
created_on?: string | undefined;
|
|
6454
6475
|
payment_method_id?: string | undefined;
|
|
6455
6476
|
payment_method_name?: string | undefined;
|
|
6456
6477
|
amount: number;
|
|
@@ -6512,6 +6533,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
6512
6533
|
payment_method_id?: string | undefined;
|
|
6513
6534
|
transactions?: {
|
|
6514
6535
|
id: string;
|
|
6536
|
+
created_on?: string | undefined;
|
|
6515
6537
|
payment_method_id?: string | undefined;
|
|
6516
6538
|
payment_method_name?: string | undefined;
|
|
6517
6539
|
amount: number;
|
|
@@ -6745,6 +6767,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
6745
6767
|
tax_amount: number;
|
|
6746
6768
|
total: number;
|
|
6747
6769
|
}[] | undefined;
|
|
6770
|
+
guests?: number | undefined;
|
|
6748
6771
|
payments: {
|
|
6749
6772
|
id?: string | undefined;
|
|
6750
6773
|
payment_method_id?: string | undefined;
|
|
@@ -6818,6 +6841,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
6818
6841
|
tax_amount: number;
|
|
6819
6842
|
total: number;
|
|
6820
6843
|
}[] | undefined;
|
|
6844
|
+
guests?: number | undefined;
|
|
6821
6845
|
payments: {
|
|
6822
6846
|
id?: string | undefined;
|
|
6823
6847
|
payment_method_id?: string | undefined;
|
|
@@ -6988,6 +7012,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
6988
7012
|
tax_amount: number;
|
|
6989
7013
|
total: number;
|
|
6990
7014
|
}[] | undefined;
|
|
7015
|
+
guests?: number | undefined;
|
|
6991
7016
|
payments: {
|
|
6992
7017
|
id?: string | undefined;
|
|
6993
7018
|
payment_method_id?: string | undefined;
|
|
@@ -7070,6 +7095,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
7070
7095
|
tax_amount: number;
|
|
7071
7096
|
total: number;
|
|
7072
7097
|
}[] | undefined;
|
|
7098
|
+
guests?: number | undefined;
|
|
7073
7099
|
items: {
|
|
7074
7100
|
id: string;
|
|
7075
7101
|
source_ref: {
|
|
@@ -9307,6 +9333,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
9307
9333
|
updated_after?: string | undefined;
|
|
9308
9334
|
include_detailed_refunds?: "true" | "false" | undefined;
|
|
9309
9335
|
include_product_categories?: "true" | "false" | undefined;
|
|
9336
|
+
include_customer_details?: "true" | "false" | undefined;
|
|
9310
9337
|
} | undefined): import("../types/api").RequestData<{
|
|
9311
9338
|
id: string;
|
|
9312
9339
|
source_ref: {
|
|
@@ -9402,6 +9429,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
9402
9429
|
}[] | undefined;
|
|
9403
9430
|
transactions?: {
|
|
9404
9431
|
id: string;
|
|
9432
|
+
created_on?: string | undefined;
|
|
9405
9433
|
payment_method_id?: string | undefined;
|
|
9406
9434
|
payment_method_name?: string | undefined;
|
|
9407
9435
|
amount: number;
|
|
@@ -9463,6 +9491,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
9463
9491
|
payment_method_id?: string | undefined;
|
|
9464
9492
|
transactions?: {
|
|
9465
9493
|
id: string;
|
|
9494
|
+
created_on?: string | undefined;
|
|
9466
9495
|
payment_method_id?: string | undefined;
|
|
9467
9496
|
payment_method_name?: string | undefined;
|
|
9468
9497
|
amount: number;
|
|
@@ -9609,6 +9638,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
9609
9638
|
}[] | undefined;
|
|
9610
9639
|
transactions?: {
|
|
9611
9640
|
id: string;
|
|
9641
|
+
created_on?: string | undefined;
|
|
9612
9642
|
payment_method_id?: string | undefined;
|
|
9613
9643
|
payment_method_name?: string | undefined;
|
|
9614
9644
|
amount: number;
|
|
@@ -9670,6 +9700,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
9670
9700
|
payment_method_id?: string | undefined;
|
|
9671
9701
|
transactions?: {
|
|
9672
9702
|
id: string;
|
|
9703
|
+
created_on?: string | undefined;
|
|
9673
9704
|
payment_method_id?: string | undefined;
|
|
9674
9705
|
payment_method_name?: string | undefined;
|
|
9675
9706
|
amount: number;
|
|
@@ -9775,6 +9806,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
9775
9806
|
}[] | undefined;
|
|
9776
9807
|
transactions?: {
|
|
9777
9808
|
id: string;
|
|
9809
|
+
created_on?: string | undefined;
|
|
9778
9810
|
payment_method_id?: string | undefined;
|
|
9779
9811
|
payment_method_name?: string | undefined;
|
|
9780
9812
|
amount: number;
|
|
@@ -9836,6 +9868,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
9836
9868
|
payment_method_id?: string | undefined;
|
|
9837
9869
|
transactions?: {
|
|
9838
9870
|
id: string;
|
|
9871
|
+
created_on?: string | undefined;
|
|
9839
9872
|
payment_method_id?: string | undefined;
|
|
9840
9873
|
payment_method_name?: string | undefined;
|
|
9841
9874
|
amount: number;
|
|
@@ -10069,6 +10102,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
10069
10102
|
tax_amount: number;
|
|
10070
10103
|
total: number;
|
|
10071
10104
|
}[] | undefined;
|
|
10105
|
+
guests?: number | undefined;
|
|
10072
10106
|
payments: {
|
|
10073
10107
|
id?: string | undefined;
|
|
10074
10108
|
payment_method_id?: string | undefined;
|
|
@@ -10142,6 +10176,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
10142
10176
|
tax_amount: number;
|
|
10143
10177
|
total: number;
|
|
10144
10178
|
}[] | undefined;
|
|
10179
|
+
guests?: number | undefined;
|
|
10145
10180
|
payments: {
|
|
10146
10181
|
id?: string | undefined;
|
|
10147
10182
|
payment_method_id?: string | undefined;
|
|
@@ -10312,6 +10347,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
10312
10347
|
tax_amount: number;
|
|
10313
10348
|
total: number;
|
|
10314
10349
|
}[] | undefined;
|
|
10350
|
+
guests?: number | undefined;
|
|
10315
10351
|
payments: {
|
|
10316
10352
|
id?: string | undefined;
|
|
10317
10353
|
payment_method_id?: string | undefined;
|
|
@@ -10394,6 +10430,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
10394
10430
|
tax_amount: number;
|
|
10395
10431
|
total: number;
|
|
10396
10432
|
}[] | undefined;
|
|
10433
|
+
guests?: number | undefined;
|
|
10397
10434
|
items: {
|
|
10398
10435
|
id: string;
|
|
10399
10436
|
source_ref: {
|
|
@@ -12631,6 +12668,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
12631
12668
|
updated_after?: string | undefined;
|
|
12632
12669
|
include_detailed_refunds?: "true" | "false" | undefined;
|
|
12633
12670
|
include_product_categories?: "true" | "false" | undefined;
|
|
12671
|
+
include_customer_details?: "true" | "false" | undefined;
|
|
12634
12672
|
} | undefined): import("../types/api").RequestData<{
|
|
12635
12673
|
id: string;
|
|
12636
12674
|
source_ref: {
|
|
@@ -12726,6 +12764,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
12726
12764
|
}[] | undefined;
|
|
12727
12765
|
transactions?: {
|
|
12728
12766
|
id: string;
|
|
12767
|
+
created_on?: string | undefined;
|
|
12729
12768
|
payment_method_id?: string | undefined;
|
|
12730
12769
|
payment_method_name?: string | undefined;
|
|
12731
12770
|
amount: number;
|
|
@@ -12787,6 +12826,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
12787
12826
|
payment_method_id?: string | undefined;
|
|
12788
12827
|
transactions?: {
|
|
12789
12828
|
id: string;
|
|
12829
|
+
created_on?: string | undefined;
|
|
12790
12830
|
payment_method_id?: string | undefined;
|
|
12791
12831
|
payment_method_name?: string | undefined;
|
|
12792
12832
|
amount: number;
|
|
@@ -12933,6 +12973,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
12933
12973
|
}[] | undefined;
|
|
12934
12974
|
transactions?: {
|
|
12935
12975
|
id: string;
|
|
12976
|
+
created_on?: string | undefined;
|
|
12936
12977
|
payment_method_id?: string | undefined;
|
|
12937
12978
|
payment_method_name?: string | undefined;
|
|
12938
12979
|
amount: number;
|
|
@@ -12994,6 +13035,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
12994
13035
|
payment_method_id?: string | undefined;
|
|
12995
13036
|
transactions?: {
|
|
12996
13037
|
id: string;
|
|
13038
|
+
created_on?: string | undefined;
|
|
12997
13039
|
payment_method_id?: string | undefined;
|
|
12998
13040
|
payment_method_name?: string | undefined;
|
|
12999
13041
|
amount: number;
|
|
@@ -13099,6 +13141,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
13099
13141
|
}[] | undefined;
|
|
13100
13142
|
transactions?: {
|
|
13101
13143
|
id: string;
|
|
13144
|
+
created_on?: string | undefined;
|
|
13102
13145
|
payment_method_id?: string | undefined;
|
|
13103
13146
|
payment_method_name?: string | undefined;
|
|
13104
13147
|
amount: number;
|
|
@@ -13160,6 +13203,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
13160
13203
|
payment_method_id?: string | undefined;
|
|
13161
13204
|
transactions?: {
|
|
13162
13205
|
id: string;
|
|
13206
|
+
created_on?: string | undefined;
|
|
13163
13207
|
payment_method_id?: string | undefined;
|
|
13164
13208
|
payment_method_name?: string | undefined;
|
|
13165
13209
|
amount: number;
|
|
@@ -13393,6 +13437,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
13393
13437
|
tax_amount: number;
|
|
13394
13438
|
total: number;
|
|
13395
13439
|
}[] | undefined;
|
|
13440
|
+
guests?: number | undefined;
|
|
13396
13441
|
payments: {
|
|
13397
13442
|
id?: string | undefined;
|
|
13398
13443
|
payment_method_id?: string | undefined;
|
|
@@ -13466,6 +13511,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
13466
13511
|
tax_amount: number;
|
|
13467
13512
|
total: number;
|
|
13468
13513
|
}[] | undefined;
|
|
13514
|
+
guests?: number | undefined;
|
|
13469
13515
|
payments: {
|
|
13470
13516
|
id?: string | undefined;
|
|
13471
13517
|
payment_method_id?: string | undefined;
|
|
@@ -13636,6 +13682,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
13636
13682
|
tax_amount: number;
|
|
13637
13683
|
total: number;
|
|
13638
13684
|
}[] | undefined;
|
|
13685
|
+
guests?: number | undefined;
|
|
13639
13686
|
payments: {
|
|
13640
13687
|
id?: string | undefined;
|
|
13641
13688
|
payment_method_id?: string | undefined;
|
|
@@ -13718,6 +13765,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
13718
13765
|
tax_amount: number;
|
|
13719
13766
|
total: number;
|
|
13720
13767
|
}[] | undefined;
|
|
13768
|
+
guests?: number | undefined;
|
|
13721
13769
|
items: {
|
|
13722
13770
|
id: string;
|
|
13723
13771
|
source_ref: {
|
|
@@ -15955,6 +16003,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
15955
16003
|
updated_after?: string | undefined;
|
|
15956
16004
|
include_detailed_refunds?: "true" | "false" | undefined;
|
|
15957
16005
|
include_product_categories?: "true" | "false" | undefined;
|
|
16006
|
+
include_customer_details?: "true" | "false" | undefined;
|
|
15958
16007
|
} | undefined): import("../types/api").RequestData<{
|
|
15959
16008
|
id: string;
|
|
15960
16009
|
source_ref: {
|
|
@@ -16050,6 +16099,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
16050
16099
|
}[] | undefined;
|
|
16051
16100
|
transactions?: {
|
|
16052
16101
|
id: string;
|
|
16102
|
+
created_on?: string | undefined;
|
|
16053
16103
|
payment_method_id?: string | undefined;
|
|
16054
16104
|
payment_method_name?: string | undefined;
|
|
16055
16105
|
amount: number;
|
|
@@ -16111,6 +16161,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
16111
16161
|
payment_method_id?: string | undefined;
|
|
16112
16162
|
transactions?: {
|
|
16113
16163
|
id: string;
|
|
16164
|
+
created_on?: string | undefined;
|
|
16114
16165
|
payment_method_id?: string | undefined;
|
|
16115
16166
|
payment_method_name?: string | undefined;
|
|
16116
16167
|
amount: number;
|
|
@@ -16257,6 +16308,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
16257
16308
|
}[] | undefined;
|
|
16258
16309
|
transactions?: {
|
|
16259
16310
|
id: string;
|
|
16311
|
+
created_on?: string | undefined;
|
|
16260
16312
|
payment_method_id?: string | undefined;
|
|
16261
16313
|
payment_method_name?: string | undefined;
|
|
16262
16314
|
amount: number;
|
|
@@ -16318,6 +16370,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
16318
16370
|
payment_method_id?: string | undefined;
|
|
16319
16371
|
transactions?: {
|
|
16320
16372
|
id: string;
|
|
16373
|
+
created_on?: string | undefined;
|
|
16321
16374
|
payment_method_id?: string | undefined;
|
|
16322
16375
|
payment_method_name?: string | undefined;
|
|
16323
16376
|
amount: number;
|
|
@@ -16423,6 +16476,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
16423
16476
|
}[] | undefined;
|
|
16424
16477
|
transactions?: {
|
|
16425
16478
|
id: string;
|
|
16479
|
+
created_on?: string | undefined;
|
|
16426
16480
|
payment_method_id?: string | undefined;
|
|
16427
16481
|
payment_method_name?: string | undefined;
|
|
16428
16482
|
amount: number;
|
|
@@ -16484,6 +16538,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
16484
16538
|
payment_method_id?: string | undefined;
|
|
16485
16539
|
transactions?: {
|
|
16486
16540
|
id: string;
|
|
16541
|
+
created_on?: string | undefined;
|
|
16487
16542
|
payment_method_id?: string | undefined;
|
|
16488
16543
|
payment_method_name?: string | undefined;
|
|
16489
16544
|
amount: number;
|
|
@@ -9,6 +9,11 @@ declare const Integrations: (internalApi: InternalAPI) => {
|
|
|
9
9
|
api: "Point of Sale" | "eCommerce" | "Accounting" | "Invoicing" | "Communication" | "Banking" | "Custom" | "Payment" | "Property Management System";
|
|
10
10
|
logo_url: string;
|
|
11
11
|
icon_url: string;
|
|
12
|
+
post_connections?: {
|
|
13
|
+
title: string;
|
|
14
|
+
optional: boolean;
|
|
15
|
+
resource: string;
|
|
16
|
+
}[] | undefined;
|
|
12
17
|
credentials?: {
|
|
13
18
|
name: string;
|
|
14
19
|
optional?: boolean | undefined;
|