@scryme/sdk 0.1.0 → 9.64.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.
@@ -0,0 +1,4892 @@
1
+ import { AxiosInstance, AxiosRequestConfig, AxiosResponse } from 'axios';
2
+
3
+ /**
4
+ * Generated by orval v8.23.0 🍺
5
+ * Do not edit manually.
6
+ * Scryme V3 API
7
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
8
+ * OpenAPI spec version: 3.0
9
+ */
10
+ interface AddressDto {
11
+ label: string;
12
+ street1: string;
13
+ street2?: string;
14
+ city: string;
15
+ state?: string;
16
+ postalCode?: string;
17
+ country: string;
18
+ isDefault?: boolean;
19
+ }
20
+
21
+ /**
22
+ * Generated by orval v8.23.0 🍺
23
+ * Do not edit manually.
24
+ * Scryme V3 API
25
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
26
+ * OpenAPI spec version: 3.0
27
+ */
28
+ type RegisterCustomerDtoMetadata = {
29
+ [key: string]: unknown;
30
+ };
31
+
32
+ /**
33
+ * Generated by orval v8.23.0 🍺
34
+ * Do not edit manually.
35
+ * Scryme V3 API
36
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
37
+ * OpenAPI spec version: 3.0
38
+ */
39
+
40
+ interface RegisterCustomerDto {
41
+ zitadelUserId?: string;
42
+ name: string;
43
+ email: string;
44
+ phone?: string;
45
+ location?: string;
46
+ metadata?: RegisterCustomerDtoMetadata;
47
+ address?: AddressDto;
48
+ }
49
+
50
+ /**
51
+ * Generated by orval v8.23.0 🍺
52
+ * Do not edit manually.
53
+ * Scryme V3 API
54
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
55
+ * OpenAPI spec version: 3.0
56
+ */
57
+ interface AcceptInvitationDto {
58
+ token: string;
59
+ }
60
+
61
+ /**
62
+ * Generated by orval v8.23.0 🍺
63
+ * Do not edit manually.
64
+ * Scryme V3 API
65
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
66
+ * OpenAPI spec version: 3.0
67
+ */
68
+ type AccountingGetBalanceSheetParams = {
69
+ asOfDate: string;
70
+ };
71
+
72
+ /**
73
+ * Generated by orval v8.23.0 🍺
74
+ * Do not edit manually.
75
+ * Scryme V3 API
76
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
77
+ * OpenAPI spec version: 3.0
78
+ */
79
+ type AccountingGetCashFlowParams = {
80
+ startDate: string;
81
+ endDate: string;
82
+ };
83
+
84
+ /**
85
+ * Generated by orval v8.23.0 🍺
86
+ * Do not edit manually.
87
+ * Scryme V3 API
88
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
89
+ * OpenAPI spec version: 3.0
90
+ */
91
+ type AccountingGetProfitLossParams = {
92
+ startDate: string;
93
+ endDate: string;
94
+ };
95
+
96
+ /**
97
+ * Generated by orval v8.23.0 🍺
98
+ * Do not edit manually.
99
+ * Scryme V3 API
100
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
101
+ * OpenAPI spec version: 3.0
102
+ */
103
+ type AccountingGetTaxSummaryParams = {
104
+ startDate: string;
105
+ endDate: string;
106
+ };
107
+
108
+ /**
109
+ * Generated by orval v8.23.0 🍺
110
+ * Do not edit manually.
111
+ * Scryme V3 API
112
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
113
+ * OpenAPI spec version: 3.0
114
+ */
115
+ interface ActivateDeviceDto {
116
+ /** The secure setup token */
117
+ token: string;
118
+ /** Unique hardware machine ID */
119
+ machineId: string;
120
+ /** Device hardware fingerprint */
121
+ fingerprint?: string;
122
+ /** Device serial number */
123
+ serialNumber?: string;
124
+ }
125
+
126
+ /**
127
+ * Generated by orval v8.23.0 🍺
128
+ * Do not edit manually.
129
+ * Scryme V3 API
130
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
131
+ * OpenAPI spec version: 3.0
132
+ */
133
+ type AddDepartmentMemberDtoRole = typeof AddDepartmentMemberDtoRole[keyof typeof AddDepartmentMemberDtoRole];
134
+ declare const AddDepartmentMemberDtoRole: {
135
+ readonly HEAD: "HEAD";
136
+ readonly MANAGER: "MANAGER";
137
+ readonly MEMBER: "MEMBER";
138
+ readonly VIEWER: "VIEWER";
139
+ };
140
+
141
+ /**
142
+ * Generated by orval v8.23.0 🍺
143
+ * Do not edit manually.
144
+ * Scryme V3 API
145
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
146
+ * OpenAPI spec version: 3.0
147
+ */
148
+
149
+ interface AddDepartmentMemberDto {
150
+ memberId: string;
151
+ role?: AddDepartmentMemberDtoRole;
152
+ canApproveExpenses?: boolean;
153
+ canManageBudget?: boolean;
154
+ }
155
+
156
+ /**
157
+ * Generated by orval v8.23.0 🍺
158
+ * Do not edit manually.
159
+ * Scryme V3 API
160
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
161
+ * OpenAPI spec version: 3.0
162
+ */
163
+ type AddToCartDtoBookingDetails = {
164
+ [key: string]: unknown;
165
+ };
166
+
167
+ /**
168
+ * Generated by orval v8.23.0 🍺
169
+ * Do not edit manually.
170
+ * Scryme V3 API
171
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
172
+ * OpenAPI spec version: 3.0
173
+ */
174
+
175
+ interface AddToCartDto {
176
+ productId?: string;
177
+ variantId?: string;
178
+ serviceId?: string;
179
+ bookingDetails?: AddToCartDtoBookingDetails;
180
+ quantity: number;
181
+ sessionId?: string;
182
+ customerId?: string;
183
+ }
184
+
185
+ /**
186
+ * Generated by orval v8.23.0 🍺
187
+ * Do not edit manually.
188
+ * Scryme V3 API
189
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
190
+ * OpenAPI spec version: 3.0
191
+ */
192
+ type AdminControllerListMembersParams = {
193
+ isActive: string;
194
+ role: string;
195
+ organizationId: string;
196
+ };
197
+
198
+ /**
199
+ * Generated by orval v8.23.0 🍺
200
+ * Do not edit manually.
201
+ * Scryme V3 API
202
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
203
+ * OpenAPI spec version: 3.0
204
+ */
205
+ type AnalyticsControllerGetResourceUtilizationParams = {
206
+ startDate: string;
207
+ endDate: string;
208
+ };
209
+
210
+ /**
211
+ * Generated by orval v8.23.0 🍺
212
+ * Do not edit manually.
213
+ * Scryme V3 API
214
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
215
+ * OpenAPI spec version: 3.0
216
+ */
217
+ interface AnnouncementDto {
218
+ title: string;
219
+ message: string;
220
+ targetBranchId?: string;
221
+ severity?: string;
222
+ }
223
+
224
+ /**
225
+ * Generated by orval v8.23.0 🍺
226
+ * Do not edit manually.
227
+ * Scryme V3 API
228
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
229
+ * OpenAPI spec version: 3.0
230
+ */
231
+ type AttendanceControllerGetLogsSortOrder = typeof AttendanceControllerGetLogsSortOrder[keyof typeof AttendanceControllerGetLogsSortOrder];
232
+ declare const AttendanceControllerGetLogsSortOrder: {
233
+ readonly asc: "asc";
234
+ readonly desc: "desc";
235
+ };
236
+
237
+ /**
238
+ * Generated by orval v8.23.0 🍺
239
+ * Do not edit manually.
240
+ * Scryme V3 API
241
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
242
+ * OpenAPI spec version: 3.0
243
+ */
244
+
245
+ type AttendanceControllerGetLogsParams = {
246
+ page?: number;
247
+ limit?: number;
248
+ sortBy?: string;
249
+ sortOrder?: AttendanceControllerGetLogsSortOrder;
250
+ memberId?: string;
251
+ locationId?: string;
252
+ startDate?: string;
253
+ endDate?: string;
254
+ };
255
+
256
+ /**
257
+ * Generated by orval v8.23.0 🍺
258
+ * Do not edit manually.
259
+ * Scryme V3 API
260
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
261
+ * OpenAPI spec version: 3.0
262
+ */
263
+ /**
264
+ * @nullable
265
+ */
266
+ type AuthExchangeToken201Meta = {
267
+ [key: string]: unknown;
268
+ } | null;
269
+
270
+ /**
271
+ * Generated by orval v8.23.0 🍺
272
+ * Do not edit manually.
273
+ * Scryme V3 API
274
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
275
+ * OpenAPI spec version: 3.0
276
+ */
277
+ interface TokenResponseDto {
278
+ access_token: string;
279
+ token_type: string;
280
+ expires_in: number;
281
+ }
282
+
283
+ /**
284
+ * Generated by orval v8.23.0 🍺
285
+ * Do not edit manually.
286
+ * Scryme V3 API
287
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
288
+ * OpenAPI spec version: 3.0
289
+ */
290
+
291
+ type AuthExchangeToken201 = {
292
+ success: boolean;
293
+ data: TokenResponseDto;
294
+ timestamp: string;
295
+ /** @nullable */
296
+ meta?: AuthExchangeToken201Meta;
297
+ };
298
+
299
+ /**
300
+ * Generated by orval v8.23.0 🍺
301
+ * Do not edit manually.
302
+ * Scryme V3 API
303
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
304
+ * OpenAPI spec version: 3.0
305
+ */
306
+ interface B2BVariantStockDto {
307
+ availableStock: number;
308
+ locationId: string;
309
+ }
310
+
311
+ /**
312
+ * Generated by orval v8.23.0 🍺
313
+ * Do not edit manually.
314
+ * Scryme V3 API
315
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
316
+ * OpenAPI spec version: 3.0
317
+ */
318
+
319
+ interface B2BVariantDto {
320
+ id: string;
321
+ name: string;
322
+ sku: string;
323
+ unitPrice: number;
324
+ priceListId?: string;
325
+ variantStocks: B2BVariantStockDto[];
326
+ }
327
+
328
+ /**
329
+ * Generated by orval v8.23.0 🍺
330
+ * Do not edit manually.
331
+ * Scryme V3 API
332
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
333
+ * OpenAPI spec version: 3.0
334
+ */
335
+
336
+ interface B2BCatalogProductDto {
337
+ id: string;
338
+ name: string;
339
+ description: string;
340
+ variants: B2BVariantDto[];
341
+ categoryName: string;
342
+ }
343
+
344
+ /**
345
+ * Generated by orval v8.23.0 🍺
346
+ * Do not edit manually.
347
+ * Scryme V3 API
348
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
349
+ * OpenAPI spec version: 3.0
350
+ */
351
+ type B2BGetCatalogParams = {
352
+ page?: number;
353
+ limit?: number;
354
+ search?: string;
355
+ categoryId?: string;
356
+ };
357
+
358
+ /**
359
+ * Generated by orval v8.23.0 🍺
360
+ * Do not edit manually.
361
+ * Scryme V3 API
362
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
363
+ * OpenAPI spec version: 3.0
364
+ */
365
+ interface B2BOrderItemDto {
366
+ /** The ID of the product variant */
367
+ variantId: string;
368
+ /** Quantity to order */
369
+ quantity: number;
370
+ /** Price per unit */
371
+ price?: number;
372
+ }
373
+
374
+ /**
375
+ * Generated by orval v8.23.0 🍺
376
+ * Do not edit manually.
377
+ * Scryme V3 API
378
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
379
+ * OpenAPI spec version: 3.0
380
+ */
381
+ interface B2BOrderResponseDto {
382
+ success: boolean;
383
+ message: string;
384
+ orderId: string;
385
+ }
386
+
387
+ /**
388
+ * Generated by orval v8.23.0 🍺
389
+ * Do not edit manually.
390
+ * Scryme V3 API
391
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
392
+ * OpenAPI spec version: 3.0
393
+ */
394
+ interface B2BQuoteItemDto {
395
+ variantId: string;
396
+ quantity: number;
397
+ }
398
+
399
+ /**
400
+ * Generated by orval v8.23.0 🍺
401
+ * Do not edit manually.
402
+ * Scryme V3 API
403
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
404
+ * OpenAPI spec version: 3.0
405
+ */
406
+ interface BanUserDto {
407
+ /** The reason for banning the user */
408
+ banReason?: string;
409
+ /** The expiration date of the ban */
410
+ banExpires?: string;
411
+ }
412
+
413
+ /**
414
+ * Generated by orval v8.23.0 🍺
415
+ * Do not edit manually.
416
+ * Scryme V3 API
417
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
418
+ * OpenAPI spec version: 3.0
419
+ */
420
+ type BatchReceiptDtoQcResults = {
421
+ [key: string]: unknown;
422
+ };
423
+
424
+ /**
425
+ * Generated by orval v8.23.0 🍺
426
+ * Do not edit manually.
427
+ * Scryme V3 API
428
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
429
+ * OpenAPI spec version: 3.0
430
+ */
431
+
432
+ interface BatchReceiptDto {
433
+ quantity: number;
434
+ batchNumber?: string;
435
+ supplierBatchNumber?: string;
436
+ expiryDate?: string;
437
+ storageUnitId?: string;
438
+ positionId?: string;
439
+ landedCost?: number;
440
+ serialNumbers?: string[];
441
+ qcResults?: BatchReceiptDtoQcResults;
442
+ systemUnitId?: string;
443
+ orgUnitId?: string;
444
+ }
445
+
446
+ /**
447
+ * Generated by orval v8.23.0 🍺
448
+ * Do not edit manually.
449
+ * Scryme V3 API
450
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
451
+ * OpenAPI spec version: 3.0
452
+ */
453
+ type CartControllerClearCartParams = {
454
+ sessionId: string;
455
+ };
456
+
457
+ /**
458
+ * Generated by orval v8.23.0 🍺
459
+ * Do not edit manually.
460
+ * Scryme V3 API
461
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
462
+ * OpenAPI spec version: 3.0
463
+ */
464
+ type CartControllerGetCartParams = {
465
+ sessionId: string;
466
+ };
467
+
468
+ /**
469
+ * Generated by orval v8.23.0 🍺
470
+ * Do not edit manually.
471
+ * Scryme V3 API
472
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
473
+ * OpenAPI spec version: 3.0
474
+ */
475
+ type CartItemDtoBookingDetails = {
476
+ [key: string]: unknown;
477
+ };
478
+
479
+ /**
480
+ * Generated by orval v8.23.0 🍺
481
+ * Do not edit manually.
482
+ * Scryme V3 API
483
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
484
+ * OpenAPI spec version: 3.0
485
+ */
486
+
487
+ interface CartItemDto {
488
+ productId?: string;
489
+ variantId?: string;
490
+ serviceId?: string;
491
+ bookingDetails?: CartItemDtoBookingDetails;
492
+ quantity: number;
493
+ }
494
+
495
+ /**
496
+ * Generated by orval v8.23.0 🍺
497
+ * Do not edit manually.
498
+ * Scryme V3 API
499
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
500
+ * OpenAPI spec version: 3.0
501
+ */
502
+
503
+ interface CartResponseDto {
504
+ id: string;
505
+ items: CartItemDto[];
506
+ customerId?: string;
507
+ sessionId?: string;
508
+ }
509
+
510
+ /**
511
+ * Generated by orval v8.23.0 🍺
512
+ * Do not edit manually.
513
+ * Scryme V3 API
514
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
515
+ * OpenAPI spec version: 3.0
516
+ */
517
+ type CatalogGetPriceChangeRequestsParams = {
518
+ offset?: number;
519
+ limit?: number;
520
+ cursor?: string;
521
+ };
522
+
523
+ /**
524
+ * Generated by orval v8.23.0 🍺
525
+ * Do not edit manually.
526
+ * Scryme V3 API
527
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
528
+ * OpenAPI spec version: 3.0
529
+ */
530
+ type CatalogGetProductsParams = {
531
+ offset?: number;
532
+ limit?: number;
533
+ cursor?: string;
534
+ };
535
+
536
+ /**
537
+ * Generated by orval v8.23.0 🍺
538
+ * Do not edit manually.
539
+ * Scryme V3 API
540
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
541
+ * OpenAPI spec version: 3.0
542
+ */
543
+ type CatalogGetServicesParams = {
544
+ offset?: number;
545
+ limit?: number;
546
+ cursor?: string;
547
+ };
548
+
549
+ /**
550
+ * Generated by orval v8.23.0 🍺
551
+ * Do not edit manually.
552
+ * Scryme V3 API
553
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
554
+ * OpenAPI spec version: 3.0
555
+ */
556
+ interface CheckB2BAvailabilityDto {
557
+ locationId?: string;
558
+ customerId?: string;
559
+ businessAccountId?: string;
560
+ variantIds: string[];
561
+ }
562
+
563
+ /**
564
+ * Generated by orval v8.23.0 🍺
565
+ * Do not edit manually.
566
+ * Scryme V3 API
567
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
568
+ * OpenAPI spec version: 3.0
569
+ */
570
+ interface CheckInDto {
571
+ locationId: string;
572
+ notes?: string;
573
+ }
574
+
575
+ /**
576
+ * Generated by orval v8.23.0 🍺
577
+ * Do not edit manually.
578
+ * Scryme V3 API
579
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
580
+ * OpenAPI spec version: 3.0
581
+ */
582
+ interface CheckOutDto {
583
+ locationId?: string;
584
+ notes?: string;
585
+ isAutoCheckout?: boolean;
586
+ }
587
+
588
+ /**
589
+ * Generated by orval v8.23.0 🍺
590
+ * Do not edit manually.
591
+ * Scryme V3 API
592
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
593
+ * OpenAPI spec version: 3.0
594
+ */
595
+ /**
596
+ * @nullable
597
+ */
598
+ type CmsCustomFieldsDtoArchivedAt = {
599
+ [key: string]: unknown;
600
+ } | null;
601
+
602
+ /**
603
+ * Generated by orval v8.23.0 🍺
604
+ * Do not edit manually.
605
+ * Scryme V3 API
606
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
607
+ * OpenAPI spec version: 3.0
608
+ */
609
+ type CmsCustomFieldsDtoCustomAttributes = {
610
+ [key: string]: unknown;
611
+ };
612
+
613
+ /**
614
+ * Generated by orval v8.23.0 🍺
615
+ * Do not edit manually.
616
+ * Scryme V3 API
617
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
618
+ * OpenAPI spec version: 3.0
619
+ */
620
+ /**
621
+ * @nullable
622
+ */
623
+ type CmsCustomFieldsDtoPublishedAt = {
624
+ [key: string]: unknown;
625
+ } | null;
626
+
627
+ /**
628
+ * Generated by orval v8.23.0 🍺
629
+ * Do not edit manually.
630
+ * Scryme V3 API
631
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
632
+ * OpenAPI spec version: 3.0
633
+ */
634
+ type CmsCustomFieldsDtoPublishStatus = typeof CmsCustomFieldsDtoPublishStatus[keyof typeof CmsCustomFieldsDtoPublishStatus];
635
+ declare const CmsCustomFieldsDtoPublishStatus: {
636
+ readonly Draft: "Draft";
637
+ readonly Published: "Published";
638
+ readonly Scheduled: "Scheduled";
639
+ readonly Archived: "Archived";
640
+ };
641
+
642
+ /**
643
+ * Generated by orval v8.23.0 🍺
644
+ * Do not edit manually.
645
+ * Scryme V3 API
646
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
647
+ * OpenAPI spec version: 3.0
648
+ */
649
+ interface ImageItemDto {
650
+ /** Unique image ID for reordering and DOM reconciliation keys */
651
+ id: string;
652
+ /** Direct URL of the image asset */
653
+ url: string;
654
+ /** Alt text / caption for image */
655
+ caption?: string;
656
+ }
657
+
658
+ /**
659
+ * Generated by orval v8.23.0 🍺
660
+ * Do not edit manually.
661
+ * Scryme V3 API
662
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
663
+ * OpenAPI spec version: 3.0
664
+ */
665
+ interface SeoMetadataDto {
666
+ /** @maxLength 80 */
667
+ title?: string;
668
+ /** @maxLength 200 */
669
+ description?: string;
670
+ keywords?: string;
671
+ }
672
+
673
+ /**
674
+ * Generated by orval v8.23.0 🍺
675
+ * Do not edit manually.
676
+ * Scryme V3 API
677
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
678
+ * OpenAPI spec version: 3.0
679
+ */
680
+
681
+ interface CmsCustomFieldsDto {
682
+ markdownDescription?: string;
683
+ images?: ImageItemDto[];
684
+ seo?: SeoMetadataDto;
685
+ customAttributes?: CmsCustomFieldsDtoCustomAttributes;
686
+ publishStatus?: CmsCustomFieldsDtoPublishStatus;
687
+ /** @nullable */
688
+ publishedAt?: CmsCustomFieldsDtoPublishedAt;
689
+ /** @nullable */
690
+ archivedAt?: CmsCustomFieldsDtoArchivedAt;
691
+ layoutTemplate?: string;
692
+ customSlugOverride?: string;
693
+ }
694
+
695
+ /**
696
+ * Generated by orval v8.23.0 🍺
697
+ * Do not edit manually.
698
+ * Scryme V3 API
699
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
700
+ * OpenAPI spec version: 3.0
701
+ */
702
+ interface ServiceMaterialDto {
703
+ /** Product variant ID */
704
+ variantId: string;
705
+ /** Quantity required */
706
+ quantity: number;
707
+ }
708
+
709
+ /**
710
+ * Generated by orval v8.23.0 🍺
711
+ * Do not edit manually.
712
+ * Scryme V3 API
713
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
714
+ * OpenAPI spec version: 3.0
715
+ */
716
+
717
+ interface CompleteBookingDto {
718
+ /** Actual materials consumed */
719
+ materials?: ServiceMaterialDto[];
720
+ /** Actual start time */
721
+ actualStartTime?: string;
722
+ /** Actual end time */
723
+ actualEndTime?: string;
724
+ }
725
+
726
+ /**
727
+ * Generated by orval v8.23.0 🍺
728
+ * Do not edit manually.
729
+ * Scryme V3 API
730
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
731
+ * OpenAPI spec version: 3.0
732
+ */
733
+
734
+ interface CreateB2BOrderDto {
735
+ /** List of items in the order */
736
+ items: B2BOrderItemDto[];
737
+ }
738
+
739
+ /**
740
+ * Generated by orval v8.23.0 🍺
741
+ * Do not edit manually.
742
+ * Scryme V3 API
743
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
744
+ * OpenAPI spec version: 3.0
745
+ */
746
+ /**
747
+ * Custom fields
748
+ */
749
+ type CreateBookingDtoCustomFields = {
750
+ [key: string]: unknown;
751
+ };
752
+
753
+ /**
754
+ * Generated by orval v8.23.0 🍺
755
+ * Do not edit manually.
756
+ * Scryme V3 API
757
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
758
+ * OpenAPI spec version: 3.0
759
+ */
760
+
761
+ interface CreateBookingDto {
762
+ /** Service ID */
763
+ serviceId: string;
764
+ /** Customer ID */
765
+ customerId?: string;
766
+ /** Location ID for stock deduction */
767
+ locationId?: string;
768
+ /** Scheduled start time */
769
+ scheduledStartTime: string;
770
+ /** Scheduled end time (calculated if omitted) */
771
+ scheduledEndTime?: string;
772
+ /** Assigned staff IDs */
773
+ staffIds?: string[];
774
+ /** Assigned resource IDs */
775
+ resourceIds?: string[];
776
+ /** Booking notes */
777
+ notes?: string;
778
+ /** Custom fields */
779
+ customFields?: CreateBookingDtoCustomFields;
780
+ /** Recurrence rule (RRULE string) */
781
+ recurrenceRule?: string;
782
+ }
783
+
784
+ /**
785
+ * Generated by orval v8.23.0 🍺
786
+ * Do not edit manually.
787
+ * Scryme V3 API
788
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
789
+ * OpenAPI spec version: 3.0
790
+ */
791
+ interface CreateBusinessAccountDto {
792
+ name: string;
793
+ taxId?: string;
794
+ defaultLocationId?: string;
795
+ }
796
+
797
+ /**
798
+ * Generated by orval v8.23.0 🍺
799
+ * Do not edit manually.
800
+ * Scryme V3 API
801
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
802
+ * OpenAPI spec version: 3.0
803
+ */
804
+ type CreateCrmActivityDtoMetadata = {
805
+ [key: string]: unknown;
806
+ };
807
+
808
+ /**
809
+ * Generated by orval v8.23.0 🍺
810
+ * Do not edit manually.
811
+ * Scryme V3 API
812
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
813
+ * OpenAPI spec version: 3.0
814
+ */
815
+
816
+ interface CreateCrmActivityDto {
817
+ recordId: string;
818
+ type: string;
819
+ description: string;
820
+ metadata: CreateCrmActivityDtoMetadata;
821
+ }
822
+
823
+ /**
824
+ * Generated by orval v8.23.0 🍺
825
+ * Do not edit manually.
826
+ * Scryme V3 API
827
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
828
+ * OpenAPI spec version: 3.0
829
+ */
830
+ interface CreateCrmAssociationDto {
831
+ relationshipId: string;
832
+ sourceRecordId: string;
833
+ targetRecordId: string;
834
+ }
835
+
836
+ /**
837
+ * Generated by orval v8.23.0 🍺
838
+ * Do not edit manually.
839
+ * Scryme V3 API
840
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
841
+ * OpenAPI spec version: 3.0
842
+ */
843
+ type CreateCrmFieldDtoType = typeof CreateCrmFieldDtoType[keyof typeof CreateCrmFieldDtoType];
844
+ declare const CreateCrmFieldDtoType: {
845
+ readonly TEXT: "TEXT";
846
+ readonly NUMBER: "NUMBER";
847
+ readonly BOOLEAN: "BOOLEAN";
848
+ readonly DATE: "DATE";
849
+ readonly SELECT: "SELECT";
850
+ readonly MULTI_SELECT: "MULTI_SELECT";
851
+ readonly EMAIL: "EMAIL";
852
+ readonly PHONE: "PHONE";
853
+ readonly URL: "URL";
854
+ readonly JSON: "JSON";
855
+ };
856
+
857
+ /**
858
+ * Generated by orval v8.23.0 🍺
859
+ * Do not edit manually.
860
+ * Scryme V3 API
861
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
862
+ * OpenAPI spec version: 3.0
863
+ */
864
+
865
+ interface CreateCrmFieldDto {
866
+ name: string;
867
+ label: string;
868
+ type: CreateCrmFieldDtoType;
869
+ }
870
+
871
+ /**
872
+ * Generated by orval v8.23.0 🍺
873
+ * Do not edit manually.
874
+ * Scryme V3 API
875
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
876
+ * OpenAPI spec version: 3.0
877
+ */
878
+ interface CreateCrmNoteDto {
879
+ recordId: string;
880
+ content: string;
881
+ timelineDate?: string;
882
+ }
883
+
884
+ /**
885
+ * Generated by orval v8.23.0 🍺
886
+ * Do not edit manually.
887
+ * Scryme V3 API
888
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
889
+ * OpenAPI spec version: 3.0
890
+ */
891
+ interface CreateCrmObjectDto {
892
+ name: string;
893
+ label: string;
894
+ labelPlural: string;
895
+ description: string;
896
+ icon: string;
897
+ }
898
+
899
+ /**
900
+ * Generated by orval v8.23.0 🍺
901
+ * Do not edit manually.
902
+ * Scryme V3 API
903
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
904
+ * OpenAPI spec version: 3.0
905
+ */
906
+ type CreateCrmRecordDtoData = {
907
+ [key: string]: unknown;
908
+ };
909
+
910
+ /**
911
+ * Generated by orval v8.23.0 🍺
912
+ * Do not edit manually.
913
+ * Scryme V3 API
914
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
915
+ * OpenAPI spec version: 3.0
916
+ */
917
+
918
+ interface CreateCrmRecordDto {
919
+ objectId: string;
920
+ data: CreateCrmRecordDtoData;
921
+ ownerId?: string;
922
+ }
923
+
924
+ /**
925
+ * Generated by orval v8.23.0 🍺
926
+ * Do not edit manually.
927
+ * Scryme V3 API
928
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
929
+ * OpenAPI spec version: 3.0
930
+ */
931
+ type CreateCrmRelationshipDtoType = typeof CreateCrmRelationshipDtoType[keyof typeof CreateCrmRelationshipDtoType];
932
+ declare const CreateCrmRelationshipDtoType: {
933
+ readonly ONE_TO_ONE: "ONE_TO_ONE";
934
+ readonly ONE_TO_MANY: "ONE_TO_MANY";
935
+ readonly MANY_TO_MANY: "MANY_TO_MANY";
936
+ };
937
+
938
+ /**
939
+ * Generated by orval v8.23.0 🍺
940
+ * Do not edit manually.
941
+ * Scryme V3 API
942
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
943
+ * OpenAPI spec version: 3.0
944
+ */
945
+
946
+ interface CreateCrmRelationshipDto {
947
+ name: string;
948
+ type: CreateCrmRelationshipDtoType;
949
+ sourceObjectId: string;
950
+ targetObjectId: string;
951
+ sourceLabel: string;
952
+ targetLabel: string;
953
+ }
954
+
955
+ /**
956
+ * Generated by orval v8.23.0 🍺
957
+ * Do not edit manually.
958
+ * Scryme V3 API
959
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
960
+ * OpenAPI spec version: 3.0
961
+ */
962
+ interface CreateCustomRoleDto {
963
+ name: string;
964
+ description?: string;
965
+ permissions: string[];
966
+ }
967
+
968
+ /**
969
+ * Generated by orval v8.23.0 🍺
970
+ * Do not edit manually.
971
+ * Scryme V3 API
972
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
973
+ * OpenAPI spec version: 3.0
974
+ */
975
+ type CreateDepartmentDtoSettings = {
976
+ [key: string]: unknown;
977
+ };
978
+
979
+ /**
980
+ * Generated by orval v8.23.0 🍺
981
+ * Do not edit manually.
982
+ * Scryme V3 API
983
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
984
+ * OpenAPI spec version: 3.0
985
+ */
986
+
987
+ interface CreateDepartmentDto {
988
+ name: string;
989
+ description?: string;
990
+ image?: string;
991
+ headId?: string;
992
+ parentId?: string;
993
+ locationId?: string;
994
+ costCenterId?: string;
995
+ settings?: CreateDepartmentDtoSettings;
996
+ }
997
+
998
+ /**
999
+ * Generated by orval v8.23.0 🍺
1000
+ * Do not edit manually.
1001
+ * Scryme V3 API
1002
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1003
+ * OpenAPI spec version: 3.0
1004
+ */
1005
+ type CreateExpenseDtoPaymentMethod = typeof CreateExpenseDtoPaymentMethod[keyof typeof CreateExpenseDtoPaymentMethod];
1006
+ declare const CreateExpenseDtoPaymentMethod: {
1007
+ readonly CASH: "CASH";
1008
+ readonly CREDIT: "CREDIT";
1009
+ readonly CARD: "CARD";
1010
+ readonly MOBILE_PAYMENT: "MOBILE_PAYMENT";
1011
+ readonly MPESA_C2B: "MPESA_C2B";
1012
+ readonly BANK_TRANSFER: "BANK_TRANSFER";
1013
+ readonly CHEQUE: "CHEQUE";
1014
+ readonly STORE_CREDIT: "STORE_CREDIT";
1015
+ readonly GIFT_CARD: "GIFT_CARD";
1016
+ readonly LOYALTY_POINTS: "LOYALTY_POINTS";
1017
+ readonly ON_ACCOUNT: "ON_ACCOUNT";
1018
+ readonly MPESA: "MPESA";
1019
+ readonly OTHER: "OTHER";
1020
+ };
1021
+
1022
+ /**
1023
+ * Generated by orval v8.23.0 🍺
1024
+ * Do not edit manually.
1025
+ * Scryme V3 API
1026
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1027
+ * OpenAPI spec version: 3.0
1028
+ */
1029
+
1030
+ interface CreateExpenseDto {
1031
+ description: string;
1032
+ amount: number;
1033
+ expenseDate?: string;
1034
+ categoryId: string;
1035
+ paymentMethod: CreateExpenseDtoPaymentMethod;
1036
+ locationId?: string;
1037
+ supplierId?: string;
1038
+ purchaseId?: string;
1039
+ pettyCashFundId?: string;
1040
+ utilityAccountId?: string;
1041
+ budgetId?: string;
1042
+ receiptUrl?: string;
1043
+ notes?: string;
1044
+ tags?: string[];
1045
+ isReimbursable?: boolean;
1046
+ isBillable?: boolean;
1047
+ autoApprove?: boolean;
1048
+ }
1049
+
1050
+ /**
1051
+ * Generated by orval v8.23.0 🍺
1052
+ * Do not edit manually.
1053
+ * Scryme V3 API
1054
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1055
+ * OpenAPI spec version: 3.0
1056
+ */
1057
+ /**
1058
+ * Auth type of integration
1059
+ */
1060
+ type CreateIntegrationDefinitionDtoAuthType = typeof CreateIntegrationDefinitionDtoAuthType[keyof typeof CreateIntegrationDefinitionDtoAuthType];
1061
+ declare const CreateIntegrationDefinitionDtoAuthType: {
1062
+ readonly API_KEY: "API_KEY";
1063
+ readonly OAUTH2: "OAUTH2";
1064
+ readonly OTHER: "OTHER";
1065
+ };
1066
+
1067
+ /**
1068
+ * Generated by orval v8.23.0 🍺
1069
+ * Do not edit manually.
1070
+ * Scryme V3 API
1071
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1072
+ * OpenAPI spec version: 3.0
1073
+ */
1074
+ /**
1075
+ * Category of integration
1076
+ */
1077
+ type CreateIntegrationDefinitionDtoCategory = typeof CreateIntegrationDefinitionDtoCategory[keyof typeof CreateIntegrationDefinitionDtoCategory];
1078
+ declare const CreateIntegrationDefinitionDtoCategory: {
1079
+ readonly E_COMMERCE: "E_COMMERCE";
1080
+ readonly ACCOUNTING: "ACCOUNTING";
1081
+ readonly MARKETING: "MARKETING";
1082
+ readonly PAYMENT_GATEWAY: "PAYMENT_GATEWAY";
1083
+ readonly CRM: "CRM";
1084
+ readonly COMMUNICATION: "COMMUNICATION";
1085
+ readonly OTHER: "OTHER";
1086
+ };
1087
+
1088
+ /**
1089
+ * Generated by orval v8.23.0 🍺
1090
+ * Do not edit manually.
1091
+ * Scryme V3 API
1092
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1093
+ * OpenAPI spec version: 3.0
1094
+ */
1095
+
1096
+ interface CreateIntegrationDefinitionDto {
1097
+ /** Name of integration */
1098
+ name: string;
1099
+ /** Slug of integration, e.g. shopify */
1100
+ slug: string;
1101
+ /** Description */
1102
+ description?: string;
1103
+ /** Logo URL */
1104
+ logoUrl?: string;
1105
+ /** Category of integration */
1106
+ category: CreateIntegrationDefinitionDtoCategory;
1107
+ /** Auth type of integration */
1108
+ authType: CreateIntegrationDefinitionDtoAuthType;
1109
+ /** Is this integration active and connectable */
1110
+ isActive?: boolean;
1111
+ }
1112
+
1113
+ /**
1114
+ * Generated by orval v8.23.0 🍺
1115
+ * Do not edit manually.
1116
+ * Scryme V3 API
1117
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1118
+ * OpenAPI spec version: 3.0
1119
+ */
1120
+ type CreateInvitationDtoRole = typeof CreateInvitationDtoRole[keyof typeof CreateInvitationDtoRole];
1121
+ declare const CreateInvitationDtoRole: {
1122
+ readonly OWNER: "OWNER";
1123
+ readonly ADMIN: "ADMIN";
1124
+ readonly MANAGER: "MANAGER";
1125
+ readonly EMPLOYEE: "EMPLOYEE";
1126
+ readonly CASHIER: "CASHIER";
1127
+ readonly REPORTER: "REPORTER";
1128
+ readonly GUEST: "GUEST";
1129
+ };
1130
+
1131
+ /**
1132
+ * Generated by orval v8.23.0 🍺
1133
+ * Do not edit manually.
1134
+ * Scryme V3 API
1135
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1136
+ * OpenAPI spec version: 3.0
1137
+ */
1138
+
1139
+ interface CreateInvitationDto {
1140
+ email: string;
1141
+ role: CreateInvitationDtoRole;
1142
+ departmentIds?: string[];
1143
+ customRoleIds?: string[];
1144
+ roleGroupIds?: string[];
1145
+ expiresAt?: string;
1146
+ isGuestInvite?: boolean;
1147
+ }
1148
+
1149
+ /**
1150
+ * Generated by orval v8.23.0 🍺
1151
+ * Do not edit manually.
1152
+ * Scryme V3 API
1153
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1154
+ * OpenAPI spec version: 3.0
1155
+ */
1156
+ interface CreateInvoiceDto {
1157
+ [key: string]: unknown;
1158
+ }
1159
+
1160
+ /**
1161
+ * Generated by orval v8.23.0 🍺
1162
+ * Do not edit manually.
1163
+ * Scryme V3 API
1164
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1165
+ * OpenAPI spec version: 3.0
1166
+ */
1167
+ type CreateMemberDtoRole = typeof CreateMemberDtoRole[keyof typeof CreateMemberDtoRole];
1168
+ declare const CreateMemberDtoRole: {
1169
+ readonly OWNER: "OWNER";
1170
+ readonly ADMIN: "ADMIN";
1171
+ readonly MANAGER: "MANAGER";
1172
+ readonly EMPLOYEE: "EMPLOYEE";
1173
+ readonly CASHIER: "CASHIER";
1174
+ readonly REPORTER: "REPORTER";
1175
+ readonly GUEST: "GUEST";
1176
+ };
1177
+
1178
+ /**
1179
+ * Generated by orval v8.23.0 🍺
1180
+ * Do not edit manually.
1181
+ * Scryme V3 API
1182
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1183
+ * OpenAPI spec version: 3.0
1184
+ */
1185
+
1186
+ interface CreateMemberDto {
1187
+ email: string;
1188
+ name: string;
1189
+ role: CreateMemberDtoRole;
1190
+ pin?: string;
1191
+ cardId?: string;
1192
+ phone?: string;
1193
+ departmentIds?: string[];
1194
+ customRoleIds?: string[];
1195
+ roleGroupIds?: string[];
1196
+ }
1197
+
1198
+ /**
1199
+ * Generated by orval v8.23.0 🍺
1200
+ * Do not edit manually.
1201
+ * Scryme V3 API
1202
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1203
+ * OpenAPI spec version: 3.0
1204
+ */
1205
+ type CreateOrderDtoChannel = typeof CreateOrderDtoChannel[keyof typeof CreateOrderDtoChannel];
1206
+ declare const CreateOrderDtoChannel: {
1207
+ readonly ECOMMERCE_STORE: "ECOMMERCE_STORE";
1208
+ readonly MOBILE_APP: "MOBILE_APP";
1209
+ };
1210
+
1211
+ /**
1212
+ * Generated by orval v8.23.0 🍺
1213
+ * Do not edit manually.
1214
+ * Scryme V3 API
1215
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1216
+ * OpenAPI spec version: 3.0
1217
+ */
1218
+ interface OrderItemDto {
1219
+ variantId: string;
1220
+ quantity: number;
1221
+ unitPrice?: number;
1222
+ }
1223
+
1224
+ /**
1225
+ * Generated by orval v8.23.0 🍺
1226
+ * Do not edit manually.
1227
+ * Scryme V3 API
1228
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1229
+ * OpenAPI spec version: 3.0
1230
+ */
1231
+ interface ServiceBookingItemDto {
1232
+ serviceId: string;
1233
+ scheduledStartTime: string;
1234
+ scheduledEndTime?: string;
1235
+ staffIds?: string[];
1236
+ resourceIds?: string[];
1237
+ notes?: string;
1238
+ }
1239
+
1240
+ /**
1241
+ * Generated by orval v8.23.0 🍺
1242
+ * Do not edit manually.
1243
+ * Scryme V3 API
1244
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1245
+ * OpenAPI spec version: 3.0
1246
+ */
1247
+
1248
+ interface CreateOrderDto {
1249
+ /** Internal customer ID. If omitted, it will be treated as a guest checkout. */
1250
+ customerId?: string;
1251
+ /** Inventory location ID */
1252
+ locationId: string;
1253
+ items?: OrderItemDto[];
1254
+ services?: ServiceBookingItemDto[];
1255
+ shippingAddress?: AddressDto;
1256
+ channel: CreateOrderDtoChannel;
1257
+ notes?: string;
1258
+ }
1259
+
1260
+ /**
1261
+ * Generated by orval v8.23.0 🍺
1262
+ * Do not edit manually.
1263
+ * Scryme V3 API
1264
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1265
+ * OpenAPI spec version: 3.0
1266
+ */
1267
+ interface CreateOrganizationDto {
1268
+ /** The name of the organization */
1269
+ name: string;
1270
+ /** The unique slug of the organization */
1271
+ slug: string;
1272
+ /** Logo URL */
1273
+ logo?: string;
1274
+ /** Description */
1275
+ description?: string;
1276
+ }
1277
+
1278
+ /**
1279
+ * Generated by orval v8.23.0 🍺
1280
+ * Do not edit manually.
1281
+ * Scryme V3 API
1282
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1283
+ * OpenAPI spec version: 3.0
1284
+ */
1285
+ type CreatePartnerDtoBenefitType = typeof CreatePartnerDtoBenefitType[keyof typeof CreatePartnerDtoBenefitType];
1286
+ declare const CreatePartnerDtoBenefitType: {
1287
+ readonly COMMISSION: "COMMISSION";
1288
+ readonly FIXED_FEE: "FIXED_FEE";
1289
+ readonly PROFIT_MARGIN: "PROFIT_MARGIN";
1290
+ readonly NONE: "NONE";
1291
+ };
1292
+
1293
+ /**
1294
+ * Generated by orval v8.23.0 🍺
1295
+ * Do not edit manually.
1296
+ * Scryme V3 API
1297
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1298
+ * OpenAPI spec version: 3.0
1299
+ */
1300
+ type CreatePartnerDtoReconciliationPolicy = typeof CreatePartnerDtoReconciliationPolicy[keyof typeof CreatePartnerDtoReconciliationPolicy];
1301
+ declare const CreatePartnerDtoReconciliationPolicy: {
1302
+ readonly RETURN_TO_STOCK: "RETURN_TO_STOCK";
1303
+ readonly MARK_AS_WASTE: "MARK_AS_WASTE";
1304
+ readonly PARTNER_CHARGED: "PARTNER_CHARGED";
1305
+ };
1306
+
1307
+ /**
1308
+ * Generated by orval v8.23.0 🍺
1309
+ * Do not edit manually.
1310
+ * Scryme V3 API
1311
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1312
+ * OpenAPI spec version: 3.0
1313
+ */
1314
+
1315
+ interface CreatePartnerDto {
1316
+ name: string;
1317
+ email?: string;
1318
+ phone?: string;
1319
+ address?: string;
1320
+ benefitType?: CreatePartnerDtoBenefitType;
1321
+ commissionRate?: number;
1322
+ fixedFee?: number;
1323
+ reconciliationPolicy?: CreatePartnerDtoReconciliationPolicy;
1324
+ }
1325
+
1326
+ /**
1327
+ * Generated by orval v8.23.0 🍺
1328
+ * Do not edit manually.
1329
+ * Scryme V3 API
1330
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1331
+ * OpenAPI spec version: 3.0
1332
+ */
1333
+ interface CreatePermissionSetDto {
1334
+ name: string;
1335
+ description?: string;
1336
+ permissions: string[];
1337
+ }
1338
+
1339
+ /**
1340
+ * Generated by orval v8.23.0 🍺
1341
+ * Do not edit manually.
1342
+ * Scryme V3 API
1343
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1344
+ * OpenAPI spec version: 3.0
1345
+ */
1346
+ interface CreatePettyCashFundDto {
1347
+ name: string;
1348
+ floatAmount: number;
1349
+ currencyCode?: string;
1350
+ responsibleMemberId: string;
1351
+ }
1352
+
1353
+ /**
1354
+ * Generated by orval v8.23.0 🍺
1355
+ * Do not edit manually.
1356
+ * Scryme V3 API
1357
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1358
+ * OpenAPI spec version: 3.0
1359
+ */
1360
+
1361
+ interface CreateProductDto {
1362
+ /** The name of the product */
1363
+ name: string;
1364
+ /** Product description */
1365
+ description: string;
1366
+ /** Base price of the product */
1367
+ price: number;
1368
+ /** Stock Keeping Unit */
1369
+ sku: string;
1370
+ customFields?: CmsCustomFieldsDto;
1371
+ }
1372
+
1373
+ /**
1374
+ * Generated by orval v8.23.0 🍺
1375
+ * Do not edit manually.
1376
+ * Scryme V3 API
1377
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1378
+ * OpenAPI spec version: 3.0
1379
+ */
1380
+ interface CreatePurchaseItemDto {
1381
+ variantId: string;
1382
+ orderedQuantity: number;
1383
+ unitCost: number;
1384
+ orderedUnitId?: string;
1385
+ orderedOrgUnitId?: string;
1386
+ }
1387
+
1388
+ /**
1389
+ * Generated by orval v8.23.0 🍺
1390
+ * Do not edit manually.
1391
+ * Scryme V3 API
1392
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1393
+ * OpenAPI spec version: 3.0
1394
+ */
1395
+
1396
+ interface CreatePurchaseDto {
1397
+ supplierId: string;
1398
+ dueDate?: string;
1399
+ expectedDate?: string;
1400
+ currency?: string;
1401
+ shippingCost?: number;
1402
+ notes?: string;
1403
+ items: CreatePurchaseItemDto[];
1404
+ }
1405
+
1406
+ /**
1407
+ * Generated by orval v8.23.0 🍺
1408
+ * Do not edit manually.
1409
+ * Scryme V3 API
1410
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1411
+ * OpenAPI spec version: 3.0
1412
+ */
1413
+ interface CreateRoleGroupDto {
1414
+ name: string;
1415
+ description?: string;
1416
+ permissionSetIds?: string[];
1417
+ }
1418
+
1419
+ /**
1420
+ * Generated by orval v8.23.0 🍺
1421
+ * Do not edit manually.
1422
+ * Scryme V3 API
1423
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1424
+ * OpenAPI spec version: 3.0
1425
+ */
1426
+ interface CreateServiceCategoryDto {
1427
+ /** Category name */
1428
+ name: string;
1429
+ /** Category description */
1430
+ description?: string;
1431
+ /** Parent category ID */
1432
+ parentId?: string;
1433
+ }
1434
+
1435
+ /**
1436
+ * Generated by orval v8.23.0 🍺
1437
+ * Do not edit manually.
1438
+ * Scryme V3 API
1439
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1440
+ * OpenAPI spec version: 3.0
1441
+ */
1442
+ /**
1443
+ * Pricing model
1444
+ */
1445
+ type CreateServiceDtoPricingModel = typeof CreateServiceDtoPricingModel[keyof typeof CreateServiceDtoPricingModel];
1446
+ declare const CreateServiceDtoPricingModel: {
1447
+ readonly FIXED: "FIXED";
1448
+ readonly HOURLY: "HOURLY";
1449
+ readonly VARIABLE: "VARIABLE";
1450
+ };
1451
+
1452
+ /**
1453
+ * Generated by orval v8.23.0 🍺
1454
+ * Do not edit manually.
1455
+ * Scryme V3 API
1456
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1457
+ * OpenAPI spec version: 3.0
1458
+ */
1459
+
1460
+ interface CreateServiceDto {
1461
+ /** Service name */
1462
+ name: string;
1463
+ /** Service description */
1464
+ description?: string;
1465
+ /** Service SKU */
1466
+ sku: string;
1467
+ /** Category ID */
1468
+ categoryId: string;
1469
+ /** Pricing model */
1470
+ pricingModel: CreateServiceDtoPricingModel;
1471
+ /** Base price */
1472
+ price: number;
1473
+ /** Minimum price for VARIABLE model */
1474
+ minPrice?: number;
1475
+ /** Estimated duration in minutes */
1476
+ estimatedDuration?: number;
1477
+ /** Buffer time before in minutes */
1478
+ bufferTimeBefore?: number;
1479
+ /** Buffer time after in minutes */
1480
+ bufferTimeAfter?: number;
1481
+ customFields?: CmsCustomFieldsDto;
1482
+ /** Assigned staff member IDs */
1483
+ staffIds?: string[];
1484
+ /** Assigned resource IDs */
1485
+ resourceIds?: string[];
1486
+ /** Bill of materials */
1487
+ materials?: ServiceMaterialDto[];
1488
+ /** Tax rate IDs */
1489
+ taxRateIds?: string[];
1490
+ /** Is service active */
1491
+ isActive?: boolean;
1492
+ }
1493
+
1494
+ /**
1495
+ * Generated by orval v8.23.0 🍺
1496
+ * Do not edit manually.
1497
+ * Scryme V3 API
1498
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1499
+ * OpenAPI spec version: 3.0
1500
+ */
1501
+ interface CreateServiceResourceDto {
1502
+ /** Resource name */
1503
+ name: string;
1504
+ /** Resource type */
1505
+ type?: string;
1506
+ /** Is resource active */
1507
+ isActive?: boolean;
1508
+ }
1509
+
1510
+ /**
1511
+ * Generated by orval v8.23.0 🍺
1512
+ * Do not edit manually.
1513
+ * Scryme V3 API
1514
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1515
+ * OpenAPI spec version: 3.0
1516
+ */
1517
+ interface CreateSetupKeyDto {
1518
+ /** Human-readable name for the device */
1519
+ name: string;
1520
+ /** Human-assigned ID for the device (e.g., POS-001) */
1521
+ deviceId: string;
1522
+ /** Expiry in days */
1523
+ expiresInDays?: number;
1524
+ }
1525
+
1526
+ /**
1527
+ * Generated by orval v8.23.0 🍺
1528
+ * Do not edit manually.
1529
+ * Scryme V3 API
1530
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1531
+ * OpenAPI spec version: 3.0
1532
+ */
1533
+ type CreateStrapiConnectionDtoEnabledSyncTypesItem = typeof CreateStrapiConnectionDtoEnabledSyncTypesItem[keyof typeof CreateStrapiConnectionDtoEnabledSyncTypesItem];
1534
+ declare const CreateStrapiConnectionDtoEnabledSyncTypesItem: {
1535
+ readonly PRODUCTS: "PRODUCTS";
1536
+ readonly INVENTORY: "INVENTORY";
1537
+ readonly ORDERS: "ORDERS";
1538
+ readonly CUSTOMERS: "CUSTOMERS";
1539
+ readonly CATEGORIES: "CATEGORIES";
1540
+ readonly PRICES: "PRICES";
1541
+ };
1542
+
1543
+ /**
1544
+ * Generated by orval v8.23.0 🍺
1545
+ * Do not edit manually.
1546
+ * Scryme V3 API
1547
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1548
+ * OpenAPI spec version: 3.0
1549
+ */
1550
+ /**
1551
+ * Map storefront slugs to Scryme InventoryLocation IDs, e.g. { "store-lagos": "loc_abc" }
1552
+ */
1553
+ type CreateStrapiConnectionDtoLocationMap = {
1554
+ [key: string]: unknown;
1555
+ };
1556
+
1557
+ /**
1558
+ * Generated by orval v8.23.0 🍺
1559
+ * Do not edit manually.
1560
+ * Scryme V3 API
1561
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1562
+ * OpenAPI spec version: 3.0
1563
+ */
1564
+ type CreateStrapiConnectionDtoSyncDirection = typeof CreateStrapiConnectionDtoSyncDirection[keyof typeof CreateStrapiConnectionDtoSyncDirection];
1565
+ declare const CreateStrapiConnectionDtoSyncDirection: {
1566
+ readonly INBOUND: "INBOUND";
1567
+ readonly OUTBOUND: "OUTBOUND";
1568
+ readonly BIDIRECTIONAL: "BIDIRECTIONAL";
1569
+ };
1570
+
1571
+ /**
1572
+ * Generated by orval v8.23.0 🍺
1573
+ * Do not edit manually.
1574
+ * Scryme V3 API
1575
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1576
+ * OpenAPI spec version: 3.0
1577
+ */
1578
+
1579
+ interface CreateStrapiConnectionDto {
1580
+ /** Friendly display name, e.g. 'Main Storefront' */
1581
+ name: string;
1582
+ /** Strapi v4 base URL, e.g. https://cms.example.com */
1583
+ strapiUrl: string;
1584
+ /** Full-access API token from Strapi admin → API Tokens */
1585
+ apiToken: string;
1586
+ /** Read-only public token for storefront queries */
1587
+ publicToken?: string;
1588
+ /** HMAC secret used to verify Strapi webhook signatures */
1589
+ webhookSecret?: string;
1590
+ graphqlPath?: string;
1591
+ webhooksEnabled?: boolean;
1592
+ /** Strapi content-type UIDs to sync */
1593
+ contentTypes?: string[];
1594
+ /** Map storefront slugs to Scryme InventoryLocation IDs, e.g. { "store-lagos": "loc_abc" } */
1595
+ locationMap?: CreateStrapiConnectionDtoLocationMap;
1596
+ syncDirection?: CreateStrapiConnectionDtoSyncDirection;
1597
+ enabledSyncTypes?: CreateStrapiConnectionDtoEnabledSyncTypesItem[];
1598
+ autoSync?: boolean;
1599
+ /** Auto sync interval in minutes */
1600
+ syncInterval?: number;
1601
+ /** Default InventoryLocation ID for product sync */
1602
+ defaultLocationId?: string;
1603
+ }
1604
+
1605
+ /**
1606
+ * Generated by orval v8.23.0 🍺
1607
+ * Do not edit manually.
1608
+ * Scryme V3 API
1609
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1610
+ * OpenAPI spec version: 3.0
1611
+ */
1612
+ type CreateTransferDtoPriority = typeof CreateTransferDtoPriority[keyof typeof CreateTransferDtoPriority];
1613
+ declare const CreateTransferDtoPriority: {
1614
+ readonly LOW: "LOW";
1615
+ readonly MEDIUM: "MEDIUM";
1616
+ readonly HIGH: "HIGH";
1617
+ readonly URGENT: "URGENT";
1618
+ };
1619
+
1620
+ /**
1621
+ * Generated by orval v8.23.0 🍺
1622
+ * Do not edit manually.
1623
+ * Scryme V3 API
1624
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1625
+ * OpenAPI spec version: 3.0
1626
+ */
1627
+ interface CreateTransferItemDto {
1628
+ variantId: string;
1629
+ requestedQuantity: number;
1630
+ }
1631
+
1632
+ /**
1633
+ * Generated by orval v8.23.0 🍺
1634
+ * Do not edit manually.
1635
+ * Scryme V3 API
1636
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1637
+ * OpenAPI spec version: 3.0
1638
+ */
1639
+
1640
+ interface CreateTransferDto {
1641
+ fromLocationId: string;
1642
+ toLocationId: string;
1643
+ priority?: CreateTransferDtoPriority;
1644
+ notes?: string;
1645
+ items: CreateTransferItemDto[];
1646
+ }
1647
+
1648
+ /**
1649
+ * Generated by orval v8.23.0 🍺
1650
+ * Do not edit manually.
1651
+ * Scryme V3 API
1652
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1653
+ * OpenAPI spec version: 3.0
1654
+ */
1655
+ type CreateUtilityAccountDtoType = typeof CreateUtilityAccountDtoType[keyof typeof CreateUtilityAccountDtoType];
1656
+ declare const CreateUtilityAccountDtoType: {
1657
+ readonly ELECTRICITY: "ELECTRICITY";
1658
+ readonly WATER: "WATER";
1659
+ readonly INTERNET: "INTERNET";
1660
+ readonly GAS: "GAS";
1661
+ readonly WASTE_MANAGEMENT: "WASTE_MANAGEMENT";
1662
+ readonly OTHER: "OTHER";
1663
+ };
1664
+
1665
+ /**
1666
+ * Generated by orval v8.23.0 🍺
1667
+ * Do not edit manually.
1668
+ * Scryme V3 API
1669
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1670
+ * OpenAPI spec version: 3.0
1671
+ */
1672
+
1673
+ interface CreateUtilityAccountDto {
1674
+ name: string;
1675
+ provider?: string;
1676
+ accountNumber: string;
1677
+ meterNumber?: string;
1678
+ type: CreateUtilityAccountDtoType;
1679
+ }
1680
+
1681
+ /**
1682
+ * Generated by orval v8.23.0 🍺
1683
+ * Do not edit manually.
1684
+ * Scryme V3 API
1685
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1686
+ * OpenAPI spec version: 3.0
1687
+ */
1688
+ interface CreateWebhookDto {
1689
+ name: string;
1690
+ url: string;
1691
+ events: string[];
1692
+ }
1693
+
1694
+ /**
1695
+ * Generated by orval v8.23.0 🍺
1696
+ * Do not edit manually.
1697
+ * Scryme V3 API
1698
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1699
+ * OpenAPI spec version: 3.0
1700
+ */
1701
+ type CrmIntegrationsHandleCallbackParams = {
1702
+ code: string;
1703
+ state: string;
1704
+ };
1705
+
1706
+ /**
1707
+ * Generated by orval v8.23.0 🍺
1708
+ * Do not edit manually.
1709
+ * Scryme V3 API
1710
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1711
+ * OpenAPI spec version: 3.0
1712
+ */
1713
+ type CrmNoteResponseDtoCreatedById = {
1714
+ [key: string]: unknown;
1715
+ };
1716
+
1717
+ /**
1718
+ * Generated by orval v8.23.0 🍺
1719
+ * Do not edit manually.
1720
+ * Scryme V3 API
1721
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1722
+ * OpenAPI spec version: 3.0
1723
+ */
1724
+
1725
+ interface CrmNoteResponseDto {
1726
+ id: string;
1727
+ recordId: string;
1728
+ content: string;
1729
+ createdById: CrmNoteResponseDtoCreatedById;
1730
+ timelineDate: string;
1731
+ createdAt: string;
1732
+ }
1733
+
1734
+ /**
1735
+ * Generated by orval v8.23.0 🍺
1736
+ * Do not edit manually.
1737
+ * Scryme V3 API
1738
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1739
+ * OpenAPI spec version: 3.0
1740
+ */
1741
+ type CrmRecordResponseDtoData = {
1742
+ [key: string]: unknown;
1743
+ };
1744
+
1745
+ /**
1746
+ * Generated by orval v8.23.0 🍺
1747
+ * Do not edit manually.
1748
+ * Scryme V3 API
1749
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1750
+ * OpenAPI spec version: 3.0
1751
+ */
1752
+ type CrmRecordResponseDtoOwnerId = {
1753
+ [key: string]: unknown;
1754
+ };
1755
+
1756
+ /**
1757
+ * Generated by orval v8.23.0 🍺
1758
+ * Do not edit manually.
1759
+ * Scryme V3 API
1760
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1761
+ * OpenAPI spec version: 3.0
1762
+ */
1763
+
1764
+ interface CrmRecordResponseDto {
1765
+ id: string;
1766
+ objectId: string;
1767
+ data: CrmRecordResponseDtoData;
1768
+ ownerId: CrmRecordResponseDtoOwnerId;
1769
+ createdAt: string;
1770
+ updatedAt: string;
1771
+ }
1772
+
1773
+ /**
1774
+ * Generated by orval v8.23.0 🍺
1775
+ * Do not edit manually.
1776
+ * Scryme V3 API
1777
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1778
+ * OpenAPI spec version: 3.0
1779
+ */
1780
+ interface CustomerResponseDto {
1781
+ id: string;
1782
+ name: string;
1783
+ email: string;
1784
+ phone: string;
1785
+ }
1786
+
1787
+ /**
1788
+ * Generated by orval v8.23.0 🍺
1789
+ * Do not edit manually.
1790
+ * Scryme V3 API
1791
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1792
+ * OpenAPI spec version: 3.0
1793
+ */
1794
+ type CustomersGetCustomersParams = {
1795
+ offset?: number;
1796
+ limit?: number;
1797
+ cursor?: string;
1798
+ };
1799
+
1800
+ /**
1801
+ * Generated by orval v8.23.0 🍺
1802
+ * Do not edit manually.
1803
+ * Scryme V3 API
1804
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1805
+ * OpenAPI spec version: 3.0
1806
+ */
1807
+ /**
1808
+ * Tier limits (as a JSON/object, e.g., member limit, product limit)
1809
+ */
1810
+ type DefineTierDtoLimits = {
1811
+ [key: string]: unknown;
1812
+ };
1813
+
1814
+ /**
1815
+ * Generated by orval v8.23.0 🍺
1816
+ * Do not edit manually.
1817
+ * Scryme V3 API
1818
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1819
+ * OpenAPI spec version: 3.0
1820
+ */
1821
+
1822
+ interface DefineTierDto {
1823
+ /** Unique slug/id for the tier, e.g., 'growth' */
1824
+ slug: string;
1825
+ /** Display name of the tier */
1826
+ name: string;
1827
+ /** Monthly or annual price of the tier */
1828
+ price: number;
1829
+ /** Description of the tier */
1830
+ description?: string;
1831
+ /** Tier limits (as a JSON/object, e.g., member limit, product limit) */
1832
+ limits?: DefineTierDtoLimits;
1833
+ /** Features enabled for this tier */
1834
+ features?: string[];
1835
+ }
1836
+
1837
+ /**
1838
+ * Generated by orval v8.23.0 🍺
1839
+ * Do not edit manually.
1840
+ * Scryme V3 API
1841
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1842
+ * OpenAPI spec version: 3.0
1843
+ */
1844
+ interface DepartmentResponseDto {
1845
+ id: string;
1846
+ name: string;
1847
+ description?: string;
1848
+ headId?: string;
1849
+ createdAt: string;
1850
+ }
1851
+
1852
+ /**
1853
+ * Generated by orval v8.23.0 🍺
1854
+ * Do not edit manually.
1855
+ * Scryme V3 API
1856
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1857
+ * OpenAPI spec version: 3.0
1858
+ */
1859
+ type DepartmentsListSortOrder = typeof DepartmentsListSortOrder[keyof typeof DepartmentsListSortOrder];
1860
+ declare const DepartmentsListSortOrder: {
1861
+ readonly asc: "asc";
1862
+ readonly desc: "desc";
1863
+ };
1864
+
1865
+ /**
1866
+ * Generated by orval v8.23.0 🍺
1867
+ * Do not edit manually.
1868
+ * Scryme V3 API
1869
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1870
+ * OpenAPI spec version: 3.0
1871
+ */
1872
+
1873
+ type DepartmentsListParams = {
1874
+ page?: number;
1875
+ limit?: number;
1876
+ sortBy?: string;
1877
+ sortOrder?: DepartmentsListSortOrder;
1878
+ search?: string;
1879
+ };
1880
+
1881
+ /**
1882
+ * Generated by orval v8.23.0 🍺
1883
+ * Do not edit manually.
1884
+ * Scryme V3 API
1885
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1886
+ * OpenAPI spec version: 3.0
1887
+ */
1888
+ interface DispatchAddressDto {
1889
+ street: string;
1890
+ city: string;
1891
+ state?: string;
1892
+ zip?: string;
1893
+ country?: string;
1894
+ }
1895
+
1896
+ /**
1897
+ * Generated by orval v8.23.0 🍺
1898
+ * Do not edit manually.
1899
+ * Scryme V3 API
1900
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1901
+ * OpenAPI spec version: 3.0
1902
+ */
1903
+ interface ManualBatchSelectionDto {
1904
+ variantId: string;
1905
+ batchId: string;
1906
+ quantity: number;
1907
+ }
1908
+
1909
+ /**
1910
+ * Generated by orval v8.23.0 🍺
1911
+ * Do not edit manually.
1912
+ * Scryme V3 API
1913
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1914
+ * OpenAPI spec version: 3.0
1915
+ */
1916
+
1917
+ interface DispatchOrderDto {
1918
+ transactionId: string;
1919
+ driverId?: string;
1920
+ deliveryPartnerId?: string;
1921
+ deliveryAddress?: DispatchAddressDto;
1922
+ estimatedTime?: string;
1923
+ deliveryFee?: number;
1924
+ notes?: string;
1925
+ manualBatches?: ManualBatchSelectionDto[];
1926
+ }
1927
+
1928
+ /**
1929
+ * Generated by orval v8.23.0 🍺
1930
+ * Do not edit manually.
1931
+ * Scryme V3 API
1932
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1933
+ * OpenAPI spec version: 3.0
1934
+ */
1935
+ type ExpenseControllerGetExpensesStatus = typeof ExpenseControllerGetExpensesStatus[keyof typeof ExpenseControllerGetExpensesStatus];
1936
+ declare const ExpenseControllerGetExpensesStatus: {
1937
+ readonly PENDING: "PENDING";
1938
+ readonly PENDING_APPROVAL: "PENDING_APPROVAL";
1939
+ readonly APPROVED: "APPROVED";
1940
+ readonly REJECTED: "REJECTED";
1941
+ readonly PAID: "PAID";
1942
+ readonly REIMBURSED: "REIMBURSED";
1943
+ readonly VOIDED: "VOIDED";
1944
+ };
1945
+
1946
+ /**
1947
+ * Generated by orval v8.23.0 🍺
1948
+ * Do not edit manually.
1949
+ * Scryme V3 API
1950
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1951
+ * OpenAPI spec version: 3.0
1952
+ */
1953
+
1954
+ type ExpenseControllerGetExpensesParams = {
1955
+ status: ExpenseControllerGetExpensesStatus;
1956
+ categoryId: string;
1957
+ };
1958
+
1959
+ /**
1960
+ * Generated by orval v8.23.0 🍺
1961
+ * Do not edit manually.
1962
+ * Scryme V3 API
1963
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1964
+ * OpenAPI spec version: 3.0
1965
+ */
1966
+ interface FavoriteDto {
1967
+ productId: string;
1968
+ customerId?: string;
1969
+ }
1970
+
1971
+ /**
1972
+ * Generated by orval v8.23.0 🍺
1973
+ * Do not edit manually.
1974
+ * Scryme V3 API
1975
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1976
+ * OpenAPI spec version: 3.0
1977
+ */
1978
+ interface FavoriteResponseDto {
1979
+ id: string;
1980
+ productId: string;
1981
+ customerId: string;
1982
+ createdAt: string;
1983
+ }
1984
+
1985
+ /**
1986
+ * Generated by orval v8.23.0 🍺
1987
+ * Do not edit manually.
1988
+ * Scryme V3 API
1989
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1990
+ * OpenAPI spec version: 3.0
1991
+ */
1992
+ type InventoryFixIntegrityParams = {
1993
+ locationId: string;
1994
+ };
1995
+
1996
+ /**
1997
+ * Generated by orval v8.23.0 🍺
1998
+ * Do not edit manually.
1999
+ * Scryme V3 API
2000
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2001
+ * OpenAPI spec version: 3.0
2002
+ */
2003
+ type InventoryGetAdjustmentsParams = {
2004
+ offset?: number;
2005
+ limit?: number;
2006
+ cursor?: string;
2007
+ status: string;
2008
+ };
2009
+
2010
+ /**
2011
+ * Generated by orval v8.23.0 🍺
2012
+ * Do not edit manually.
2013
+ * Scryme V3 API
2014
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2015
+ * OpenAPI spec version: 3.0
2016
+ */
2017
+ type InventoryGetInventoryParams = {
2018
+ offset?: number;
2019
+ limit?: number;
2020
+ cursor?: string;
2021
+ locationId: string;
2022
+ };
2023
+
2024
+ /**
2025
+ * Generated by orval v8.23.0 🍺
2026
+ * Do not edit manually.
2027
+ * Scryme V3 API
2028
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2029
+ * OpenAPI spec version: 3.0
2030
+ */
2031
+ type InventoryGetLeadTimeParams = {
2032
+ supplierId: string;
2033
+ };
2034
+
2035
+ /**
2036
+ * Generated by orval v8.23.0 🍺
2037
+ * Do not edit manually.
2038
+ * Scryme V3 API
2039
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2040
+ * OpenAPI spec version: 3.0
2041
+ */
2042
+ type InventoryGetWasteAnalysisParams = {
2043
+ startDate: string;
2044
+ endDate: string;
2045
+ };
2046
+
2047
+ /**
2048
+ * Generated by orval v8.23.0 🍺
2049
+ * Do not edit manually.
2050
+ * Scryme V3 API
2051
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2052
+ * OpenAPI spec version: 3.0
2053
+ */
2054
+ interface InventoryResponseDto {
2055
+ id: string;
2056
+ productId: string;
2057
+ quantity: number;
2058
+ locationId: string;
2059
+ }
2060
+
2061
+ /**
2062
+ * Generated by orval v8.23.0 🍺
2063
+ * Do not edit manually.
2064
+ * Scryme V3 API
2065
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2066
+ * OpenAPI spec version: 3.0
2067
+ */
2068
+ type InvitationResponseDtoRole = typeof InvitationResponseDtoRole[keyof typeof InvitationResponseDtoRole];
2069
+ declare const InvitationResponseDtoRole: {
2070
+ readonly OWNER: "OWNER";
2071
+ readonly ADMIN: "ADMIN";
2072
+ readonly MANAGER: "MANAGER";
2073
+ readonly EMPLOYEE: "EMPLOYEE";
2074
+ readonly CASHIER: "CASHIER";
2075
+ readonly REPORTER: "REPORTER";
2076
+ readonly GUEST: "GUEST";
2077
+ };
2078
+
2079
+ /**
2080
+ * Generated by orval v8.23.0 🍺
2081
+ * Do not edit manually.
2082
+ * Scryme V3 API
2083
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2084
+ * OpenAPI spec version: 3.0
2085
+ */
2086
+ type InvitationResponseDtoStatus = typeof InvitationResponseDtoStatus[keyof typeof InvitationResponseDtoStatus];
2087
+ declare const InvitationResponseDtoStatus: {
2088
+ readonly PENDING: "PENDING";
2089
+ readonly ACCEPTED: "ACCEPTED";
2090
+ readonly DECLINED: "DECLINED";
2091
+ readonly EXPIRED: "EXPIRED";
2092
+ };
2093
+
2094
+ /**
2095
+ * Generated by orval v8.23.0 🍺
2096
+ * Do not edit manually.
2097
+ * Scryme V3 API
2098
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2099
+ * OpenAPI spec version: 3.0
2100
+ */
2101
+
2102
+ interface InvitationResponseDto {
2103
+ id: string;
2104
+ email: string;
2105
+ role: InvitationResponseDtoRole;
2106
+ status: InvitationResponseDtoStatus;
2107
+ expiresAt: string;
2108
+ inviterId: string;
2109
+ createdAt: string;
2110
+ }
2111
+
2112
+ /**
2113
+ * Generated by orval v8.23.0 🍺
2114
+ * Do not edit manually.
2115
+ * Scryme V3 API
2116
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2117
+ * OpenAPI spec version: 3.0
2118
+ */
2119
+ type InvitationsListSortOrder = typeof InvitationsListSortOrder[keyof typeof InvitationsListSortOrder];
2120
+ declare const InvitationsListSortOrder: {
2121
+ readonly asc: "asc";
2122
+ readonly desc: "desc";
2123
+ };
2124
+
2125
+ /**
2126
+ * Generated by orval v8.23.0 🍺
2127
+ * Do not edit manually.
2128
+ * Scryme V3 API
2129
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2130
+ * OpenAPI spec version: 3.0
2131
+ */
2132
+ type InvitationsListStatus = typeof InvitationsListStatus[keyof typeof InvitationsListStatus];
2133
+ declare const InvitationsListStatus: {
2134
+ readonly PENDING: "PENDING";
2135
+ readonly ACCEPTED: "ACCEPTED";
2136
+ readonly DECLINED: "DECLINED";
2137
+ readonly EXPIRED: "EXPIRED";
2138
+ };
2139
+
2140
+ /**
2141
+ * Generated by orval v8.23.0 🍺
2142
+ * Do not edit manually.
2143
+ * Scryme V3 API
2144
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2145
+ * OpenAPI spec version: 3.0
2146
+ */
2147
+
2148
+ type InvitationsListParams = {
2149
+ page?: number;
2150
+ limit?: number;
2151
+ sortBy?: string;
2152
+ sortOrder?: InvitationsListSortOrder;
2153
+ status?: InvitationsListStatus;
2154
+ email?: string;
2155
+ };
2156
+
2157
+ /**
2158
+ * Generated by orval v8.23.0 🍺
2159
+ * Do not edit manually.
2160
+ * Scryme V3 API
2161
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2162
+ * OpenAPI spec version: 3.0
2163
+ */
2164
+ interface InvoiceConfigDto {
2165
+ [key: string]: unknown;
2166
+ }
2167
+
2168
+ /**
2169
+ * Generated by orval v8.23.0 🍺
2170
+ * Do not edit manually.
2171
+ * Scryme V3 API
2172
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2173
+ * OpenAPI spec version: 3.0
2174
+ */
2175
+ interface LinkOrganizationDto {
2176
+ /** The internal ID of the standalone device */
2177
+ deviceId: string;
2178
+ /** The ID of the organization to link to */
2179
+ organizationId: string;
2180
+ }
2181
+
2182
+ /**
2183
+ * Generated by orval v8.23.0 🍺
2184
+ * Do not edit manually.
2185
+ * Scryme V3 API
2186
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2187
+ * OpenAPI spec version: 3.0
2188
+ */
2189
+ type LoyaltyStatusResponseDtoAvailableRewardsItem = {
2190
+ [key: string]: unknown;
2191
+ };
2192
+
2193
+ /**
2194
+ * Generated by orval v8.23.0 🍺
2195
+ * Do not edit manually.
2196
+ * Scryme V3 API
2197
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2198
+ * OpenAPI spec version: 3.0
2199
+ */
2200
+
2201
+ interface LoyaltyStatusResponseDto {
2202
+ /** Current points balance */
2203
+ points: number;
2204
+ /** Current loyalty tier */
2205
+ tier: string;
2206
+ /** List of available rewards */
2207
+ availableRewards: LoyaltyStatusResponseDtoAvailableRewardsItem[];
2208
+ }
2209
+
2210
+ /**
2211
+ * Generated by orval v8.23.0 🍺
2212
+ * Do not edit manually.
2213
+ * Scryme V3 API
2214
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2215
+ * OpenAPI spec version: 3.0
2216
+ */
2217
+ interface MemberDepartmentDto {
2218
+ id: string;
2219
+ name: string;
2220
+ role: string;
2221
+ }
2222
+
2223
+ /**
2224
+ * Generated by orval v8.23.0 🍺
2225
+ * Do not edit manually.
2226
+ * Scryme V3 API
2227
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2228
+ * OpenAPI spec version: 3.0
2229
+ */
2230
+ type MemberResponseDtoMembershipStatus = typeof MemberResponseDtoMembershipStatus[keyof typeof MemberResponseDtoMembershipStatus];
2231
+ declare const MemberResponseDtoMembershipStatus: {
2232
+ readonly ACTIVE: "ACTIVE";
2233
+ readonly PENDING_APPROVAL: "PENDING_APPROVAL";
2234
+ readonly SUSPENDED: "SUSPENDED";
2235
+ readonly REJECTED: "REJECTED";
2236
+ };
2237
+
2238
+ /**
2239
+ * Generated by orval v8.23.0 🍺
2240
+ * Do not edit manually.
2241
+ * Scryme V3 API
2242
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2243
+ * OpenAPI spec version: 3.0
2244
+ */
2245
+ type MemberResponseDtoRole = typeof MemberResponseDtoRole[keyof typeof MemberResponseDtoRole];
2246
+ declare const MemberResponseDtoRole: {
2247
+ readonly OWNER: "OWNER";
2248
+ readonly ADMIN: "ADMIN";
2249
+ readonly MANAGER: "MANAGER";
2250
+ readonly EMPLOYEE: "EMPLOYEE";
2251
+ readonly CASHIER: "CASHIER";
2252
+ readonly REPORTER: "REPORTER";
2253
+ readonly GUEST: "GUEST";
2254
+ };
2255
+
2256
+ /**
2257
+ * Generated by orval v8.23.0 🍺
2258
+ * Do not edit manually.
2259
+ * Scryme V3 API
2260
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2261
+ * OpenAPI spec version: 3.0
2262
+ */
2263
+ type MemberResponseDtoStatus = typeof MemberResponseDtoStatus[keyof typeof MemberResponseDtoStatus];
2264
+ declare const MemberResponseDtoStatus: {
2265
+ readonly ONLINE: "ONLINE";
2266
+ readonly OFFLINE: "OFFLINE";
2267
+ };
2268
+
2269
+ /**
2270
+ * Generated by orval v8.23.0 🍺
2271
+ * Do not edit manually.
2272
+ * Scryme V3 API
2273
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2274
+ * OpenAPI spec version: 3.0
2275
+ */
2276
+ interface MemberRoleDto {
2277
+ id: string;
2278
+ name: string;
2279
+ }
2280
+
2281
+ /**
2282
+ * Generated by orval v8.23.0 🍺
2283
+ * Do not edit manually.
2284
+ * Scryme V3 API
2285
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2286
+ * OpenAPI spec version: 3.0
2287
+ */
2288
+ interface UserSummaryDto {
2289
+ id: string;
2290
+ email: string;
2291
+ name: string;
2292
+ image?: string;
2293
+ }
2294
+
2295
+ /**
2296
+ * Generated by orval v8.23.0 🍺
2297
+ * Do not edit manually.
2298
+ * Scryme V3 API
2299
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2300
+ * OpenAPI spec version: 3.0
2301
+ */
2302
+
2303
+ interface MemberResponseDto {
2304
+ id: string;
2305
+ user: UserSummaryDto;
2306
+ role: MemberResponseDtoRole;
2307
+ membershipStatus: MemberResponseDtoMembershipStatus;
2308
+ isActive: boolean;
2309
+ status: MemberResponseDtoStatus;
2310
+ cardId?: string;
2311
+ phone?: string;
2312
+ createdAt: string;
2313
+ updatedAt: string;
2314
+ departments?: MemberDepartmentDto[];
2315
+ customRoles?: MemberRoleDto[];
2316
+ roleGroups?: MemberRoleDto[];
2317
+ }
2318
+
2319
+ /**
2320
+ * Generated by orval v8.23.0 🍺
2321
+ * Do not edit manually.
2322
+ * Scryme V3 API
2323
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2324
+ * OpenAPI spec version: 3.0
2325
+ */
2326
+ type MembersControllerGetMembersMembershipStatus = typeof MembersControllerGetMembersMembershipStatus[keyof typeof MembersControllerGetMembersMembershipStatus];
2327
+ declare const MembersControllerGetMembersMembershipStatus: {
2328
+ readonly ACTIVE: "ACTIVE";
2329
+ readonly PENDING_APPROVAL: "PENDING_APPROVAL";
2330
+ readonly SUSPENDED: "SUSPENDED";
2331
+ readonly REJECTED: "REJECTED";
2332
+ };
2333
+
2334
+ /**
2335
+ * Generated by orval v8.23.0 🍺
2336
+ * Do not edit manually.
2337
+ * Scryme V3 API
2338
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2339
+ * OpenAPI spec version: 3.0
2340
+ */
2341
+ type MembersControllerGetMembersRole = typeof MembersControllerGetMembersRole[keyof typeof MembersControllerGetMembersRole];
2342
+ declare const MembersControllerGetMembersRole: {
2343
+ readonly OWNER: "OWNER";
2344
+ readonly ADMIN: "ADMIN";
2345
+ readonly MANAGER: "MANAGER";
2346
+ readonly EMPLOYEE: "EMPLOYEE";
2347
+ readonly CASHIER: "CASHIER";
2348
+ readonly REPORTER: "REPORTER";
2349
+ readonly GUEST: "GUEST";
2350
+ };
2351
+
2352
+ /**
2353
+ * Generated by orval v8.23.0 🍺
2354
+ * Do not edit manually.
2355
+ * Scryme V3 API
2356
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2357
+ * OpenAPI spec version: 3.0
2358
+ */
2359
+ type MembersControllerGetMembersSortOrder = typeof MembersControllerGetMembersSortOrder[keyof typeof MembersControllerGetMembersSortOrder];
2360
+ declare const MembersControllerGetMembersSortOrder: {
2361
+ readonly asc: "asc";
2362
+ readonly desc: "desc";
2363
+ };
2364
+
2365
+ /**
2366
+ * Generated by orval v8.23.0 🍺
2367
+ * Do not edit manually.
2368
+ * Scryme V3 API
2369
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2370
+ * OpenAPI spec version: 3.0
2371
+ */
2372
+
2373
+ type MembersControllerGetMembersParams = {
2374
+ page?: number;
2375
+ limit?: number;
2376
+ sortBy?: string;
2377
+ sortOrder?: MembersControllerGetMembersSortOrder;
2378
+ role?: MembersControllerGetMembersRole;
2379
+ membershipStatus?: MembersControllerGetMembersMembershipStatus;
2380
+ isActive?: boolean;
2381
+ departmentId?: string;
2382
+ search?: string;
2383
+ };
2384
+
2385
+ /**
2386
+ * Generated by orval v8.23.0 🍺
2387
+ * Do not edit manually.
2388
+ * Scryme V3 API
2389
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2390
+ * OpenAPI spec version: 3.0
2391
+ */
2392
+ interface OrderResponseDto {
2393
+ id: string;
2394
+ status: string;
2395
+ totalAmount: number;
2396
+ createdAt: string;
2397
+ }
2398
+
2399
+ /**
2400
+ * Generated by orval v8.23.0 🍺
2401
+ * Do not edit manually.
2402
+ * Scryme V3 API
2403
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2404
+ * OpenAPI spec version: 3.0
2405
+ */
2406
+ type OrdersGetOrdersParams = {
2407
+ offset?: number;
2408
+ limit?: number;
2409
+ cursor?: string;
2410
+ };
2411
+
2412
+ /**
2413
+ * Generated by orval v8.23.0 🍺
2414
+ * Do not edit manually.
2415
+ * Scryme V3 API
2416
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2417
+ * OpenAPI spec version: 3.0
2418
+ */
2419
+ interface PaginationMetaDto {
2420
+ total: number;
2421
+ limit: number;
2422
+ offset: number;
2423
+ nextCursor: string;
2424
+ }
2425
+
2426
+ /**
2427
+ * Generated by orval v8.23.0 🍺
2428
+ * Do not edit manually.
2429
+ * Scryme V3 API
2430
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2431
+ * OpenAPI spec version: 3.0
2432
+ */
2433
+
2434
+ interface PaginatedB2BCatalogDto {
2435
+ data: B2BCatalogProductDto[];
2436
+ meta: PaginationMetaDto;
2437
+ }
2438
+
2439
+ /**
2440
+ * Generated by orval v8.23.0 🍺
2441
+ * Do not edit manually.
2442
+ * Scryme V3 API
2443
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2444
+ * OpenAPI spec version: 3.0
2445
+ */
2446
+ interface PartnerWalletActionDto {
2447
+ amount: number;
2448
+ notes?: string;
2449
+ }
2450
+
2451
+ /**
2452
+ * Generated by orval v8.23.0 🍺
2453
+ * Do not edit manually.
2454
+ * Scryme V3 API
2455
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2456
+ * OpenAPI spec version: 3.0
2457
+ */
2458
+ type POSGetPettyCashTransactionsParams = {
2459
+ limit: string;
2460
+ };
2461
+
2462
+ /**
2463
+ * Generated by orval v8.23.0 🍺
2464
+ * Do not edit manually.
2465
+ * Scryme V3 API
2466
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2467
+ * OpenAPI spec version: 3.0
2468
+ */
2469
+ interface PosLoginDto {
2470
+ /** The Client ID of the provisioned device */
2471
+ clientId: string;
2472
+ /** The staff PIN */
2473
+ pin: string;
2474
+ /** Optional card ID for optimized member lookup */
2475
+ cardId?: string;
2476
+ }
2477
+
2478
+ /**
2479
+ * Generated by orval v8.23.0 🍺
2480
+ * Do not edit manually.
2481
+ * Scryme V3 API
2482
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2483
+ * OpenAPI spec version: 3.0
2484
+ */
2485
+ interface PosLoginResponseDto {
2486
+ accessToken: string;
2487
+ }
2488
+
2489
+ /**
2490
+ * Generated by orval v8.23.0 🍺
2491
+ * Do not edit manually.
2492
+ * Scryme V3 API
2493
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2494
+ * OpenAPI spec version: 3.0
2495
+ */
2496
+ interface SaleItemDto {
2497
+ /** Product variant ID */
2498
+ variantId: string;
2499
+ /** Quantity of the variant purchased */
2500
+ quantity: number;
2501
+ /** Client provided price (validated against DB) */
2502
+ unitPrice: number;
2503
+ }
2504
+
2505
+ /**
2506
+ * Generated by orval v8.23.0 🍺
2507
+ * Do not edit manually.
2508
+ * Scryme V3 API
2509
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2510
+ * OpenAPI spec version: 3.0
2511
+ */
2512
+ interface SalePaymentDto {
2513
+ /** Payment method (e.g. CASH, CARD, MPESA) */
2514
+ method: string;
2515
+ /** Payment amount */
2516
+ amount: number;
2517
+ /** Optional gateway transaction reference or check number */
2518
+ reference?: string;
2519
+ }
2520
+
2521
+ /**
2522
+ * Generated by orval v8.23.0 🍺
2523
+ * Do not edit manually.
2524
+ * Scryme V3 API
2525
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2526
+ * OpenAPI spec version: 3.0
2527
+ */
2528
+ interface SaleServiceItemDto {
2529
+ /** Service ID */
2530
+ serviceId: string;
2531
+ /** Quantity of the service purchased */
2532
+ quantity: number;
2533
+ /** Optional unit price override (defaults to service base price if not provided) */
2534
+ unitPrice?: number;
2535
+ /** Option A: Optional existing booking ID to associate, complete, and consume materials for */
2536
+ bookingId?: string;
2537
+ /** Optional notes for the service line item */
2538
+ notes?: string;
2539
+ }
2540
+
2541
+ /**
2542
+ * Generated by orval v8.23.0 🍺
2543
+ * Do not edit manually.
2544
+ * Scryme V3 API
2545
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2546
+ * OpenAPI spec version: 3.0
2547
+ */
2548
+
2549
+ interface ProcessSaleDto {
2550
+ /** List of physical product variants purchased */
2551
+ items?: SaleItemDto[];
2552
+ /** List of services purchased (Option A with bookingId or Option C without) */
2553
+ serviceItems?: SaleServiceItemDto[];
2554
+ /** List of payments applied to this transaction */
2555
+ payments: SalePaymentDto[];
2556
+ /** Generic discount amount applied to the overall transaction */
2557
+ discountAmount?: number;
2558
+ /** Optional customer phone number (auto-creates or links customer) */
2559
+ customerPhone?: string;
2560
+ /** Optional transaction notes */
2561
+ notes?: string;
2562
+ /** Optional loyalty voucher code to apply discount */
2563
+ loyaltyVoucherCode?: string;
2564
+ }
2565
+
2566
+ /**
2567
+ * Generated by orval v8.23.0 🍺
2568
+ * Do not edit manually.
2569
+ * Scryme V3 API
2570
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2571
+ * OpenAPI spec version: 3.0
2572
+ */
2573
+ interface ProductCategoryResponseDto {
2574
+ id: string;
2575
+ name: string;
2576
+ }
2577
+
2578
+ /**
2579
+ * Generated by orval v8.23.0 🍺
2580
+ * Do not edit manually.
2581
+ * Scryme V3 API
2582
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2583
+ * OpenAPI spec version: 3.0
2584
+ */
2585
+ /**
2586
+ * @nullable
2587
+ */
2588
+ type ProductResponseDtoDescription = {
2589
+ [key: string]: unknown;
2590
+ } | null;
2591
+
2592
+ /**
2593
+ * Generated by orval v8.23.0 🍺
2594
+ * Do not edit manually.
2595
+ * Scryme V3 API
2596
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2597
+ * OpenAPI spec version: 3.0
2598
+ */
2599
+ /**
2600
+ * @nullable
2601
+ */
2602
+ type ProductResponseDtoRetailPrice = {
2603
+ [key: string]: unknown;
2604
+ } | null;
2605
+
2606
+ /**
2607
+ * Generated by orval v8.23.0 🍺
2608
+ * Do not edit manually.
2609
+ * Scryme V3 API
2610
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2611
+ * OpenAPI spec version: 3.0
2612
+ */
2613
+ /**
2614
+ * @nullable
2615
+ */
2616
+ type ProductResponseDtoSlug = {
2617
+ [key: string]: unknown;
2618
+ } | null;
2619
+
2620
+ /**
2621
+ * Generated by orval v8.23.0 🍺
2622
+ * Do not edit manually.
2623
+ * Scryme V3 API
2624
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2625
+ * OpenAPI spec version: 3.0
2626
+ */
2627
+ /**
2628
+ * @nullable
2629
+ */
2630
+ type ProductVariantResponseDtoRetailPrice = {
2631
+ [key: string]: unknown;
2632
+ } | null;
2633
+
2634
+ /**
2635
+ * Generated by orval v8.23.0 🍺
2636
+ * Do not edit manually.
2637
+ * Scryme V3 API
2638
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2639
+ * OpenAPI spec version: 3.0
2640
+ */
2641
+
2642
+ interface ProductVariantResponseDto {
2643
+ id: string;
2644
+ name: string;
2645
+ sku: string;
2646
+ /** @nullable */
2647
+ retailPrice: ProductVariantResponseDtoRetailPrice;
2648
+ }
2649
+
2650
+ /**
2651
+ * Generated by orval v8.23.0 🍺
2652
+ * Do not edit manually.
2653
+ * Scryme V3 API
2654
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2655
+ * OpenAPI spec version: 3.0
2656
+ */
2657
+
2658
+ interface ProductResponseDto {
2659
+ id: string;
2660
+ name: string;
2661
+ /** @nullable */
2662
+ description: ProductResponseDtoDescription;
2663
+ sku: string;
2664
+ /** @nullable */
2665
+ retailPrice: ProductResponseDtoRetailPrice;
2666
+ images: string[];
2667
+ category: ProductCategoryResponseDto;
2668
+ /** @nullable */
2669
+ slug: ProductResponseDtoSlug;
2670
+ variants?: ProductVariantResponseDto[];
2671
+ customFields?: CmsCustomFieldsDto;
2672
+ }
2673
+
2674
+ /**
2675
+ * Generated by orval v8.23.0 🍺
2676
+ * Do not edit manually.
2677
+ * Scryme V3 API
2678
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2679
+ * OpenAPI spec version: 3.0
2680
+ */
2681
+ interface ProvisionDeviceDto {
2682
+ /** The setup token generated in the dashboard */
2683
+ token: string;
2684
+ }
2685
+
2686
+ /**
2687
+ * Generated by orval v8.23.0 🍺
2688
+ * Do not edit manually.
2689
+ * Scryme V3 API
2690
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2691
+ * OpenAPI spec version: 3.0
2692
+ */
2693
+ interface ProvisionResponseDto {
2694
+ clientId: string;
2695
+ clientSecret: string;
2696
+ }
2697
+
2698
+ /**
2699
+ * Generated by orval v8.23.0 🍺
2700
+ * Do not edit manually.
2701
+ * Scryme V3 API
2702
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2703
+ * OpenAPI spec version: 3.0
2704
+ */
2705
+ interface ProvisionZitadelDto {
2706
+ redirectUris?: string[];
2707
+ postLogoutRedirectUris?: string[];
2708
+ }
2709
+
2710
+ /**
2711
+ * Generated by orval v8.23.0 🍺
2712
+ * Do not edit manually.
2713
+ * Scryme V3 API
2714
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2715
+ * OpenAPI spec version: 3.0
2716
+ */
2717
+ type PublicInvoiceControllerDownloadInvoiceByTransactionParams = {
2718
+ token: string;
2719
+ };
2720
+
2721
+ /**
2722
+ * Generated by orval v8.23.0 🍺
2723
+ * Do not edit manually.
2724
+ * Scryme V3 API
2725
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2726
+ * OpenAPI spec version: 3.0
2727
+ */
2728
+ type PublicInvoiceControllerDownloadInvoiceParams = {
2729
+ token: string;
2730
+ };
2731
+
2732
+ /**
2733
+ * Generated by orval v8.23.0 🍺
2734
+ * Do not edit manually.
2735
+ * Scryme V3 API
2736
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2737
+ * OpenAPI spec version: 3.0
2738
+ */
2739
+ type PublicInvoiceControllerDownloadReceiptParams = {
2740
+ token: string;
2741
+ };
2742
+
2743
+ /**
2744
+ * Generated by orval v8.23.0 🍺
2745
+ * Do not edit manually.
2746
+ * Scryme V3 API
2747
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2748
+ * OpenAPI spec version: 3.0
2749
+ */
2750
+ type PublicInvoiceControllerGeneratePublicLinkParams = {
2751
+ token: string;
2752
+ };
2753
+
2754
+ /**
2755
+ * Generated by orval v8.23.0 🍺
2756
+ * Do not edit manually.
2757
+ * Scryme V3 API
2758
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2759
+ * OpenAPI spec version: 3.0
2760
+ */
2761
+
2762
+ interface ReceivePurchaseItemDto {
2763
+ purchaseItemId: string;
2764
+ batches: BatchReceiptDto[];
2765
+ rejectedQuantity?: number;
2766
+ }
2767
+
2768
+ /**
2769
+ * Generated by orval v8.23.0 🍺
2770
+ * Do not edit manually.
2771
+ * Scryme V3 API
2772
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2773
+ * OpenAPI spec version: 3.0
2774
+ */
2775
+
2776
+ interface ReceivePurchaseDto {
2777
+ locationId: string;
2778
+ items: ReceivePurchaseItemDto[];
2779
+ notes?: string;
2780
+ }
2781
+
2782
+ /**
2783
+ * Generated by orval v8.23.0 🍺
2784
+ * Do not edit manually.
2785
+ * Scryme V3 API
2786
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2787
+ * OpenAPI spec version: 3.0
2788
+ */
2789
+ interface ReceiveTransferItemDto {
2790
+ transferItemId: string;
2791
+ receivedQuantity: number;
2792
+ }
2793
+
2794
+ /**
2795
+ * Generated by orval v8.23.0 🍺
2796
+ * Do not edit manually.
2797
+ * Scryme V3 API
2798
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2799
+ * OpenAPI spec version: 3.0
2800
+ */
2801
+
2802
+ interface ReceiveTransferDto {
2803
+ items: ReceiveTransferItemDto[];
2804
+ }
2805
+
2806
+ /**
2807
+ * Generated by orval v8.23.0 🍺
2808
+ * Do not edit manually.
2809
+ * Scryme V3 API
2810
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2811
+ * OpenAPI spec version: 3.0
2812
+ */
2813
+ type ReconcilePodDtoOutcome = typeof ReconcilePodDtoOutcome[keyof typeof ReconcilePodDtoOutcome];
2814
+ declare const ReconcilePodDtoOutcome: {
2815
+ readonly DELIVERED: "DELIVERED";
2816
+ readonly FAILED: "FAILED";
2817
+ readonly PARTIAL: "PARTIAL";
2818
+ };
2819
+
2820
+ /**
2821
+ * Generated by orval v8.23.0 🍺
2822
+ * Do not edit manually.
2823
+ * Scryme V3 API
2824
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2825
+ * OpenAPI spec version: 3.0
2826
+ */
2827
+
2828
+ interface ReconcilePodDto {
2829
+ fulfillmentId: string;
2830
+ outcome: ReconcilePodDtoOutcome;
2831
+ quantityDelivered?: number;
2832
+ proofOfDeliveryUrl?: string;
2833
+ receivedBy?: string;
2834
+ failureReason?: string;
2835
+ }
2836
+
2837
+ /**
2838
+ * Generated by orval v8.23.0 🍺
2839
+ * Do not edit manually.
2840
+ * Scryme V3 API
2841
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2842
+ * OpenAPI spec version: 3.0
2843
+ */
2844
+ interface ReconciliationItemDto {
2845
+ variantId: string;
2846
+ actualQuantity: number;
2847
+ notes?: string;
2848
+ }
2849
+
2850
+ /**
2851
+ * Generated by orval v8.23.0 🍺
2852
+ * Do not edit manually.
2853
+ * Scryme V3 API
2854
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2855
+ * OpenAPI spec version: 3.0
2856
+ */
2857
+ interface RecordCustomPaymentDto {
2858
+ /** Target Organization ID */
2859
+ organizationId: string;
2860
+ /** Paid amount */
2861
+ amount: number;
2862
+ /** Phone number associated with payment */
2863
+ phoneNumber: string;
2864
+ /** Payment reference / transaction code (e.g. M-Pesa Code) */
2865
+ reference: string;
2866
+ /** Upgrade organization subscription to this tier slug on successful payment */
2867
+ tierSlug?: string;
2868
+ /** Custom notes/metadata for the payment */
2869
+ notes?: string;
2870
+ }
2871
+
2872
+ /**
2873
+ * Generated by orval v8.23.0 🍺
2874
+ * Do not edit manually.
2875
+ * Scryme V3 API
2876
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2877
+ * OpenAPI spec version: 3.0
2878
+ */
2879
+ interface RedeemRewardDto {
2880
+ /** The ID of the customer */
2881
+ customerId: string;
2882
+ /** The ID of the reward to redeem */
2883
+ rewardId: string;
2884
+ }
2885
+
2886
+ /**
2887
+ * Generated by orval v8.23.0 🍺
2888
+ * Do not edit manually.
2889
+ * Scryme V3 API
2890
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2891
+ * OpenAPI spec version: 3.0
2892
+ */
2893
+ type RegisterPettyCashDtoPaymentMethod = typeof RegisterPettyCashDtoPaymentMethod[keyof typeof RegisterPettyCashDtoPaymentMethod];
2894
+ declare const RegisterPettyCashDtoPaymentMethod: {
2895
+ readonly CASH: "CASH";
2896
+ readonly CREDIT: "CREDIT";
2897
+ readonly CARD: "CARD";
2898
+ readonly MOBILE_PAYMENT: "MOBILE_PAYMENT";
2899
+ readonly MPESA_C2B: "MPESA_C2B";
2900
+ readonly BANK_TRANSFER: "BANK_TRANSFER";
2901
+ readonly CHEQUE: "CHEQUE";
2902
+ readonly STORE_CREDIT: "STORE_CREDIT";
2903
+ readonly GIFT_CARD: "GIFT_CARD";
2904
+ readonly LOYALTY_POINTS: "LOYALTY_POINTS";
2905
+ readonly ON_ACCOUNT: "ON_ACCOUNT";
2906
+ readonly MPESA: "MPESA";
2907
+ readonly OTHER: "OTHER";
2908
+ };
2909
+
2910
+ /**
2911
+ * Generated by orval v8.23.0 🍺
2912
+ * Do not edit manually.
2913
+ * Scryme V3 API
2914
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2915
+ * OpenAPI spec version: 3.0
2916
+ */
2917
+
2918
+ interface RegisterPettyCashDto {
2919
+ /** Description of the expense */
2920
+ description: string;
2921
+ /** Amount of the expense */
2922
+ amount: number;
2923
+ paymentMethod: RegisterPettyCashDtoPaymentMethod;
2924
+ pettyCashFundId?: string;
2925
+ receiptUrl?: string;
2926
+ }
2927
+
2928
+ /**
2929
+ * Generated by orval v8.23.0 🍺
2930
+ * Do not edit manually.
2931
+ * Scryme V3 API
2932
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2933
+ * OpenAPI spec version: 3.0
2934
+ */
2935
+ interface RemoveFromCartDto {
2936
+ productId?: string;
2937
+ variantId?: string;
2938
+ serviceId?: string;
2939
+ sessionId?: string;
2940
+ customerId?: string;
2941
+ }
2942
+
2943
+ /**
2944
+ * Generated by orval v8.23.0 🍺
2945
+ * Do not edit manually.
2946
+ * Scryme V3 API
2947
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2948
+ * OpenAPI spec version: 3.0
2949
+ */
2950
+
2951
+ interface RequestB2BQuoteDto {
2952
+ customerId?: string;
2953
+ businessAccountId?: string;
2954
+ locationId?: string;
2955
+ items: B2BQuoteItemDto[];
2956
+ notes?: string;
2957
+ }
2958
+
2959
+ /**
2960
+ * Generated by orval v8.23.0 🍺
2961
+ * Do not edit manually.
2962
+ * Scryme V3 API
2963
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2964
+ * OpenAPI spec version: 3.0
2965
+ */
2966
+ /**
2967
+ * New status (APPROVED or REJECTED)
2968
+ */
2969
+ type ReviewPriceChangeDtoStatus = typeof ReviewPriceChangeDtoStatus[keyof typeof ReviewPriceChangeDtoStatus];
2970
+ declare const ReviewPriceChangeDtoStatus: {
2971
+ readonly PENDING: "PENDING";
2972
+ readonly APPROVED: "APPROVED";
2973
+ readonly REJECTED: "REJECTED";
2974
+ readonly EXPIRED: "EXPIRED";
2975
+ readonly CANCELLED: "CANCELLED";
2976
+ };
2977
+
2978
+ /**
2979
+ * Generated by orval v8.23.0 🍺
2980
+ * Do not edit manually.
2981
+ * Scryme V3 API
2982
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2983
+ * OpenAPI spec version: 3.0
2984
+ */
2985
+
2986
+ interface ReviewPriceChangeDto {
2987
+ /** New status (APPROVED or REJECTED) */
2988
+ status: ReviewPriceChangeDtoStatus;
2989
+ /** Reason for rejection */
2990
+ rejectionReason?: string;
2991
+ }
2992
+
2993
+ /**
2994
+ * Generated by orval v8.23.0 🍺
2995
+ * Do not edit manually.
2996
+ * Scryme V3 API
2997
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2998
+ * OpenAPI spec version: 3.0
2999
+ */
3000
+ type RoleManagementControllerGetCustomRolesSortOrder = typeof RoleManagementControllerGetCustomRolesSortOrder[keyof typeof RoleManagementControllerGetCustomRolesSortOrder];
3001
+ declare const RoleManagementControllerGetCustomRolesSortOrder: {
3002
+ readonly asc: "asc";
3003
+ readonly desc: "desc";
3004
+ };
3005
+
3006
+ /**
3007
+ * Generated by orval v8.23.0 🍺
3008
+ * Do not edit manually.
3009
+ * Scryme V3 API
3010
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3011
+ * OpenAPI spec version: 3.0
3012
+ */
3013
+
3014
+ type RoleManagementControllerGetCustomRolesParams = {
3015
+ page?: number;
3016
+ limit?: number;
3017
+ sortBy?: string;
3018
+ sortOrder?: RoleManagementControllerGetCustomRolesSortOrder;
3019
+ search?: string;
3020
+ isActive?: boolean;
3021
+ };
3022
+
3023
+ /**
3024
+ * Generated by orval v8.23.0 🍺
3025
+ * Do not edit manually.
3026
+ * Scryme V3 API
3027
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3028
+ * OpenAPI spec version: 3.0
3029
+ */
3030
+ /**
3031
+ * @nullable
3032
+ */
3033
+ type ServiceCatalogResponseDtoDescription = {
3034
+ [key: string]: unknown;
3035
+ } | null;
3036
+
3037
+ /**
3038
+ * Generated by orval v8.23.0 🍺
3039
+ * Do not edit manually.
3040
+ * Scryme V3 API
3041
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3042
+ * OpenAPI spec version: 3.0
3043
+ */
3044
+ /**
3045
+ * @nullable
3046
+ */
3047
+ type ServiceCatalogResponseDtoEstimatedDuration = {
3048
+ [key: string]: unknown;
3049
+ } | null;
3050
+
3051
+ /**
3052
+ * Generated by orval v8.23.0 🍺
3053
+ * Do not edit manually.
3054
+ * Scryme V3 API
3055
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3056
+ * OpenAPI spec version: 3.0
3057
+ */
3058
+ /**
3059
+ * @nullable
3060
+ */
3061
+ type ServiceCatalogResponseDtoSlug = {
3062
+ [key: string]: unknown;
3063
+ } | null;
3064
+
3065
+ /**
3066
+ * Generated by orval v8.23.0 🍺
3067
+ * Do not edit manually.
3068
+ * Scryme V3 API
3069
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3070
+ * OpenAPI spec version: 3.0
3071
+ */
3072
+ interface ServiceCategoryResponseDto {
3073
+ id: string;
3074
+ name: string;
3075
+ }
3076
+
3077
+ /**
3078
+ * Generated by orval v8.23.0 🍺
3079
+ * Do not edit manually.
3080
+ * Scryme V3 API
3081
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3082
+ * OpenAPI spec version: 3.0
3083
+ */
3084
+
3085
+ interface ServiceCatalogResponseDto {
3086
+ id: string;
3087
+ name: string;
3088
+ /** @nullable */
3089
+ description: ServiceCatalogResponseDtoDescription;
3090
+ sku: string;
3091
+ retailPrice: number;
3092
+ images: string[];
3093
+ category: ServiceCategoryResponseDto;
3094
+ /** @nullable */
3095
+ slug: ServiceCatalogResponseDtoSlug;
3096
+ pricingModel: string;
3097
+ /** @nullable */
3098
+ estimatedDuration: ServiceCatalogResponseDtoEstimatedDuration;
3099
+ isActive: boolean;
3100
+ customFields?: CmsCustomFieldsDto;
3101
+ }
3102
+
3103
+ /**
3104
+ * Generated by orval v8.23.0 🍺
3105
+ * Do not edit manually.
3106
+ * Scryme V3 API
3107
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3108
+ * OpenAPI spec version: 3.0
3109
+ */
3110
+ type ServicesAddBreakBody = {
3111
+ /** Break start time in HH:mm */
3112
+ startTime: string;
3113
+ /** Break end time in HH:mm */
3114
+ endTime: string;
3115
+ /** @nullable */
3116
+ description?: string | null;
3117
+ };
3118
+
3119
+ /**
3120
+ * Generated by orval v8.23.0 🍺
3121
+ * Do not edit manually.
3122
+ * Scryme V3 API
3123
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3124
+ * OpenAPI spec version: 3.0
3125
+ */
3126
+ type ServicesCreateShiftBody = {
3127
+ /**
3128
+ * 0 for Sunday, 6 for Saturday
3129
+ * @minimum 0
3130
+ * @maximum 6
3131
+ */
3132
+ dayOfWeek: number;
3133
+ /** Shift start time in HH:mm */
3134
+ startTime: string;
3135
+ /** Shift end time in HH:mm */
3136
+ endTime: string;
3137
+ };
3138
+
3139
+ /**
3140
+ * Generated by orval v8.23.0 🍺
3141
+ * Do not edit manually.
3142
+ * Scryme V3 API
3143
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3144
+ * OpenAPI spec version: 3.0
3145
+ */
3146
+ type ServicesGetFunnelParams = {
3147
+ startDate: string;
3148
+ endDate: string;
3149
+ };
3150
+
3151
+ /**
3152
+ * Generated by orval v8.23.0 🍺
3153
+ * Do not edit manually.
3154
+ * Scryme V3 API
3155
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3156
+ * OpenAPI spec version: 3.0
3157
+ */
3158
+ type ServicesGetPerformanceParams = {
3159
+ startDate: string;
3160
+ endDate: string;
3161
+ };
3162
+
3163
+ /**
3164
+ * Generated by orval v8.23.0 🍺
3165
+ * Do not edit manually.
3166
+ * Scryme V3 API
3167
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3168
+ * OpenAPI spec version: 3.0
3169
+ */
3170
+ type ServicesGetShiftsParams = {
3171
+ /**
3172
+ * Filter shifts by member ID
3173
+ */
3174
+ memberId?: string;
3175
+ /**
3176
+ * Filter shifts by day of the week (0 = Sunday, 6 = Saturday)
3177
+ * @minimum 0
3178
+ * @maximum 6
3179
+ */
3180
+ dayOfWeek?: number;
3181
+ /**
3182
+ * Filter shifts by active status
3183
+ */
3184
+ isActive?: boolean;
3185
+ };
3186
+
3187
+ /**
3188
+ * Generated by orval v8.23.0 🍺
3189
+ * Do not edit manually.
3190
+ * Scryme V3 API
3191
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3192
+ * OpenAPI spec version: 3.0
3193
+ */
3194
+ type ServicesGetUtilizationParams = {
3195
+ startDate: string;
3196
+ endDate: string;
3197
+ };
3198
+
3199
+ /**
3200
+ * Generated by orval v8.23.0 🍺
3201
+ * Do not edit manually.
3202
+ * Scryme V3 API
3203
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3204
+ * OpenAPI spec version: 3.0
3205
+ */
3206
+ type ServicesRegisterCustomerAppBody = {
3207
+ /** The name of the customer application */
3208
+ name: string;
3209
+ };
3210
+
3211
+ /**
3212
+ * Generated by orval v8.23.0 🍺
3213
+ * Do not edit manually.
3214
+ * Scryme V3 API
3215
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3216
+ * OpenAPI spec version: 3.0
3217
+ */
3218
+ type ServicesUpdateBookingStatusBodyStatus = typeof ServicesUpdateBookingStatusBodyStatus[keyof typeof ServicesUpdateBookingStatusBodyStatus];
3219
+ declare const ServicesUpdateBookingStatusBodyStatus: {
3220
+ readonly REQUESTED: "REQUESTED";
3221
+ readonly SCHEDULED: "SCHEDULED";
3222
+ readonly IN_PROGRESS: "IN_PROGRESS";
3223
+ readonly COMPLETED: "COMPLETED";
3224
+ readonly CANCELLED: "CANCELLED";
3225
+ readonly NOSHOW: "NOSHOW";
3226
+ };
3227
+
3228
+ /**
3229
+ * Generated by orval v8.23.0 🍺
3230
+ * Do not edit manually.
3231
+ * Scryme V3 API
3232
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3233
+ * OpenAPI spec version: 3.0
3234
+ */
3235
+
3236
+ type ServicesUpdateBookingStatusBody = {
3237
+ status: ServicesUpdateBookingStatusBodyStatus;
3238
+ };
3239
+
3240
+ /**
3241
+ * Generated by orval v8.23.0 🍺
3242
+ * Do not edit manually.
3243
+ * Scryme V3 API
3244
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3245
+ * OpenAPI spec version: 3.0
3246
+ */
3247
+ interface SetGlobalSettingDto {
3248
+ /** Setting key */
3249
+ key: string;
3250
+ /** Setting value */
3251
+ value: string;
3252
+ }
3253
+
3254
+ /**
3255
+ * Generated by orval v8.23.0 🍺
3256
+ * Do not edit manually.
3257
+ * Scryme V3 API
3258
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3259
+ * OpenAPI spec version: 3.0
3260
+ */
3261
+ interface ShipTransferItemDto {
3262
+ transferItemId: string;
3263
+ shippedQuantity: number;
3264
+ stockBatchId?: string;
3265
+ }
3266
+
3267
+ /**
3268
+ * Generated by orval v8.23.0 🍺
3269
+ * Do not edit manually.
3270
+ * Scryme V3 API
3271
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3272
+ * OpenAPI spec version: 3.0
3273
+ */
3274
+
3275
+ interface ShipTransferDto {
3276
+ carrier?: string;
3277
+ trackingNumber?: string;
3278
+ items: ShipTransferItemDto[];
3279
+ }
3280
+
3281
+ /**
3282
+ * Generated by orval v8.23.0 🍺
3283
+ * Do not edit manually.
3284
+ * Scryme V3 API
3285
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3286
+ * OpenAPI spec version: 3.0
3287
+ */
3288
+ type StockingGetActiveDeliveriesParams = {
3289
+ offset?: number;
3290
+ limit?: number;
3291
+ cursor?: string;
3292
+ };
3293
+
3294
+ /**
3295
+ * Generated by orval v8.23.0 🍺
3296
+ * Do not edit manually.
3297
+ * Scryme V3 API
3298
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3299
+ * OpenAPI spec version: 3.0
3300
+ */
3301
+ type StockingGetPendingDispatchParams = {
3302
+ offset?: number;
3303
+ limit?: number;
3304
+ cursor?: string;
3305
+ };
3306
+
3307
+ /**
3308
+ * Generated by orval v8.23.0 🍺
3309
+ * Do not edit manually.
3310
+ * Scryme V3 API
3311
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3312
+ * OpenAPI spec version: 3.0
3313
+ */
3314
+ type StockingGetPhysicalReconciliationsParams = {
3315
+ offset?: number;
3316
+ limit?: number;
3317
+ cursor?: string;
3318
+ };
3319
+
3320
+ /**
3321
+ * Generated by orval v8.23.0 🍺
3322
+ * Do not edit manually.
3323
+ * Scryme V3 API
3324
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3325
+ * OpenAPI spec version: 3.0
3326
+ */
3327
+ type StockingGetPurchasesParams = {
3328
+ offset?: number;
3329
+ limit?: number;
3330
+ cursor?: string;
3331
+ };
3332
+
3333
+ /**
3334
+ * Generated by orval v8.23.0 🍺
3335
+ * Do not edit manually.
3336
+ * Scryme V3 API
3337
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3338
+ * OpenAPI spec version: 3.0
3339
+ */
3340
+ type StockingGetRequestsParams = {
3341
+ offset?: number;
3342
+ limit?: number;
3343
+ cursor?: string;
3344
+ };
3345
+
3346
+ /**
3347
+ * Generated by orval v8.23.0 🍺
3348
+ * Do not edit manually.
3349
+ * Scryme V3 API
3350
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3351
+ * OpenAPI spec version: 3.0
3352
+ */
3353
+ type StockingGetTransfersParams = {
3354
+ offset?: number;
3355
+ limit?: number;
3356
+ cursor?: string;
3357
+ };
3358
+
3359
+ /**
3360
+ * Generated by orval v8.23.0 🍺
3361
+ * Do not edit manually.
3362
+ * Scryme V3 API
3363
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3364
+ * OpenAPI spec version: 3.0
3365
+ */
3366
+ type StrapiConnectionResponseDtoLocationMap = {
3367
+ [key: string]: unknown;
3368
+ };
3369
+
3370
+ /**
3371
+ * Generated by orval v8.23.0 🍺
3372
+ * Do not edit manually.
3373
+ * Scryme V3 API
3374
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3375
+ * OpenAPI spec version: 3.0
3376
+ */
3377
+
3378
+ interface StrapiConnectionResponseDto {
3379
+ id: string;
3380
+ name: string;
3381
+ strapiUrl: string;
3382
+ syncDirection: string;
3383
+ enabledSyncTypes: string[];
3384
+ webhooksEnabled: boolean;
3385
+ contentTypes: string[];
3386
+ locationMap?: StrapiConnectionResponseDtoLocationMap;
3387
+ autoSync: boolean;
3388
+ syncInterval?: number;
3389
+ defaultLocationId?: string;
3390
+ strapiVersion?: string;
3391
+ isActive: boolean;
3392
+ createdAt: string;
3393
+ updatedAt: string;
3394
+ lastSyncAt?: string;
3395
+ }
3396
+
3397
+ /**
3398
+ * Generated by orval v8.23.0 🍺
3399
+ * Do not edit manually.
3400
+ * Scryme V3 API
3401
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3402
+ * OpenAPI spec version: 3.0
3403
+ */
3404
+
3405
+ interface SubmitReconciliationDto {
3406
+ locationId: string;
3407
+ description?: string;
3408
+ items: ReconciliationItemDto[];
3409
+ }
3410
+
3411
+ /**
3412
+ * Generated by orval v8.23.0 🍺
3413
+ * Do not edit manually.
3414
+ * Scryme V3 API
3415
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3416
+ * OpenAPI spec version: 3.0
3417
+ */
3418
+ interface TerminalLoginDto {
3419
+ cardId: string;
3420
+ pin: string;
3421
+ }
3422
+
3423
+ /**
3424
+ * Generated by orval v8.23.0 🍺
3425
+ * Do not edit manually.
3426
+ * Scryme V3 API
3427
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3428
+ * OpenAPI spec version: 3.0
3429
+ */
3430
+
3431
+ interface TerminalLoginResponseDto {
3432
+ token: string;
3433
+ member: MemberResponseDto;
3434
+ restoredSession?: boolean;
3435
+ }
3436
+
3437
+ /**
3438
+ * Generated by orval v8.23.0 🍺
3439
+ * Do not edit manually.
3440
+ * Scryme V3 API
3441
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3442
+ * OpenAPI spec version: 3.0
3443
+ */
3444
+ interface TokenRequestDto {
3445
+ /** The Client ID provided during provisioning or registration */
3446
+ clientId: string;
3447
+ /** The Client Secret */
3448
+ clientSecret: string;
3449
+ }
3450
+
3451
+ /**
3452
+ * Generated by orval v8.23.0 🍺
3453
+ * Do not edit manually.
3454
+ * Scryme V3 API
3455
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3456
+ * OpenAPI spec version: 3.0
3457
+ */
3458
+ interface TopUpPettyCashFundDto {
3459
+ amount: number;
3460
+ description?: string;
3461
+ }
3462
+
3463
+ /**
3464
+ * Generated by orval v8.23.0 🍺
3465
+ * Do not edit manually.
3466
+ * Scryme V3 API
3467
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3468
+ * OpenAPI spec version: 3.0
3469
+ */
3470
+ type TriggerSyncDtoDirection = typeof TriggerSyncDtoDirection[keyof typeof TriggerSyncDtoDirection];
3471
+ declare const TriggerSyncDtoDirection: {
3472
+ readonly INBOUND: "INBOUND";
3473
+ readonly OUTBOUND: "OUTBOUND";
3474
+ readonly BIDIRECTIONAL: "BIDIRECTIONAL";
3475
+ };
3476
+
3477
+ /**
3478
+ * Generated by orval v8.23.0 🍺
3479
+ * Do not edit manually.
3480
+ * Scryme V3 API
3481
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3482
+ * OpenAPI spec version: 3.0
3483
+ */
3484
+ type TriggerSyncDtoSyncTypesItem = typeof TriggerSyncDtoSyncTypesItem[keyof typeof TriggerSyncDtoSyncTypesItem];
3485
+ declare const TriggerSyncDtoSyncTypesItem: {
3486
+ readonly PRODUCTS: "PRODUCTS";
3487
+ readonly INVENTORY: "INVENTORY";
3488
+ readonly ORDERS: "ORDERS";
3489
+ readonly CUSTOMERS: "CUSTOMERS";
3490
+ readonly CATEGORIES: "CATEGORIES";
3491
+ readonly PRICES: "PRICES";
3492
+ };
3493
+
3494
+ /**
3495
+ * Generated by orval v8.23.0 🍺
3496
+ * Do not edit manually.
3497
+ * Scryme V3 API
3498
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3499
+ * OpenAPI spec version: 3.0
3500
+ */
3501
+
3502
+ interface TriggerSyncDto {
3503
+ syncTypes: TriggerSyncDtoSyncTypesItem[];
3504
+ direction?: TriggerSyncDtoDirection;
3505
+ }
3506
+
3507
+ /**
3508
+ * Generated by orval v8.23.0 🍺
3509
+ * Do not edit manually.
3510
+ * Scryme V3 API
3511
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3512
+ * OpenAPI spec version: 3.0
3513
+ */
3514
+ type UnitsGetUnitsParams = {
3515
+ /**
3516
+ * Optional timestamp for delta sync
3517
+ */
3518
+ lastSync?: string;
3519
+ };
3520
+
3521
+ /**
3522
+ * Generated by orval v8.23.0 🍺
3523
+ * Do not edit manually.
3524
+ * Scryme V3 API
3525
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3526
+ * OpenAPI spec version: 3.0
3527
+ */
3528
+ type UpdateCrmRecordDtoData = {
3529
+ [key: string]: unknown;
3530
+ };
3531
+
3532
+ /**
3533
+ * Generated by orval v8.23.0 🍺
3534
+ * Do not edit manually.
3535
+ * Scryme V3 API
3536
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3537
+ * OpenAPI spec version: 3.0
3538
+ */
3539
+
3540
+ interface UpdateCrmRecordDto {
3541
+ data: UpdateCrmRecordDtoData;
3542
+ ownerId?: string;
3543
+ }
3544
+
3545
+ /**
3546
+ * Generated by orval v8.23.0 🍺
3547
+ * Do not edit manually.
3548
+ * Scryme V3 API
3549
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3550
+ * OpenAPI spec version: 3.0
3551
+ */
3552
+ type UpdateCustomerDtoMetadata = {
3553
+ [key: string]: unknown;
3554
+ };
3555
+
3556
+ /**
3557
+ * Generated by orval v8.23.0 🍺
3558
+ * Do not edit manually.
3559
+ * Scryme V3 API
3560
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3561
+ * OpenAPI spec version: 3.0
3562
+ */
3563
+
3564
+ interface UpdateCustomerDto {
3565
+ zitadelUserId?: string;
3566
+ name?: string;
3567
+ email?: string;
3568
+ phone?: string;
3569
+ location?: string;
3570
+ metadata?: UpdateCustomerDtoMetadata;
3571
+ address?: AddressDto;
3572
+ }
3573
+
3574
+ /**
3575
+ * Generated by orval v8.23.0 🍺
3576
+ * Do not edit manually.
3577
+ * Scryme V3 API
3578
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3579
+ * OpenAPI spec version: 3.0
3580
+ */
3581
+ interface UpdateCustomRoleDto {
3582
+ name?: string;
3583
+ description?: string;
3584
+ permissions?: string[];
3585
+ isActive?: boolean;
3586
+ }
3587
+
3588
+ /**
3589
+ * Generated by orval v8.23.0 🍺
3590
+ * Do not edit manually.
3591
+ * Scryme V3 API
3592
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3593
+ * OpenAPI spec version: 3.0
3594
+ */
3595
+ type UpdateDepartmentDtoSettings = {
3596
+ [key: string]: unknown;
3597
+ };
3598
+
3599
+ /**
3600
+ * Generated by orval v8.23.0 🍺
3601
+ * Do not edit manually.
3602
+ * Scryme V3 API
3603
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3604
+ * OpenAPI spec version: 3.0
3605
+ */
3606
+
3607
+ interface UpdateDepartmentDto {
3608
+ name?: string;
3609
+ description?: string;
3610
+ image?: string;
3611
+ headId?: string;
3612
+ parentId?: string;
3613
+ locationId?: string;
3614
+ costCenterId?: string;
3615
+ settings?: UpdateDepartmentDtoSettings;
3616
+ }
3617
+
3618
+ /**
3619
+ * Generated by orval v8.23.0 🍺
3620
+ * Do not edit manually.
3621
+ * Scryme V3 API
3622
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3623
+ * OpenAPI spec version: 3.0
3624
+ */
3625
+ /**
3626
+ * Auth type of integration
3627
+ */
3628
+ type UpdateIntegrationDefinitionDtoAuthType = typeof UpdateIntegrationDefinitionDtoAuthType[keyof typeof UpdateIntegrationDefinitionDtoAuthType];
3629
+ declare const UpdateIntegrationDefinitionDtoAuthType: {
3630
+ readonly API_KEY: "API_KEY";
3631
+ readonly OAUTH2: "OAUTH2";
3632
+ readonly OTHER: "OTHER";
3633
+ };
3634
+
3635
+ /**
3636
+ * Generated by orval v8.23.0 🍺
3637
+ * Do not edit manually.
3638
+ * Scryme V3 API
3639
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3640
+ * OpenAPI spec version: 3.0
3641
+ */
3642
+ /**
3643
+ * Category of integration
3644
+ */
3645
+ type UpdateIntegrationDefinitionDtoCategory = typeof UpdateIntegrationDefinitionDtoCategory[keyof typeof UpdateIntegrationDefinitionDtoCategory];
3646
+ declare const UpdateIntegrationDefinitionDtoCategory: {
3647
+ readonly E_COMMERCE: "E_COMMERCE";
3648
+ readonly ACCOUNTING: "ACCOUNTING";
3649
+ readonly MARKETING: "MARKETING";
3650
+ readonly PAYMENT_GATEWAY: "PAYMENT_GATEWAY";
3651
+ readonly CRM: "CRM";
3652
+ readonly COMMUNICATION: "COMMUNICATION";
3653
+ readonly OTHER: "OTHER";
3654
+ };
3655
+
3656
+ /**
3657
+ * Generated by orval v8.23.0 🍺
3658
+ * Do not edit manually.
3659
+ * Scryme V3 API
3660
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3661
+ * OpenAPI spec version: 3.0
3662
+ */
3663
+
3664
+ interface UpdateIntegrationDefinitionDto {
3665
+ /** Name of integration */
3666
+ name?: string;
3667
+ /** Slug of integration */
3668
+ slug?: string;
3669
+ /** Description */
3670
+ description?: string;
3671
+ /** Logo URL */
3672
+ logoUrl?: string;
3673
+ /** Category of integration */
3674
+ category?: UpdateIntegrationDefinitionDtoCategory;
3675
+ /** Auth type of integration */
3676
+ authType?: UpdateIntegrationDefinitionDtoAuthType;
3677
+ /** Is this integration active and connectable */
3678
+ isActive?: boolean;
3679
+ }
3680
+
3681
+ /**
3682
+ * Generated by orval v8.23.0 🍺
3683
+ * Do not edit manually.
3684
+ * Scryme V3 API
3685
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3686
+ * OpenAPI spec version: 3.0
3687
+ */
3688
+ interface UpdateInvoiceDto {
3689
+ [key: string]: unknown;
3690
+ }
3691
+
3692
+ /**
3693
+ * Generated by orval v8.23.0 🍺
3694
+ * Do not edit manually.
3695
+ * Scryme V3 API
3696
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3697
+ * OpenAPI spec version: 3.0
3698
+ */
3699
+ type UpdateMemberDtoMembershipStatus = typeof UpdateMemberDtoMembershipStatus[keyof typeof UpdateMemberDtoMembershipStatus];
3700
+ declare const UpdateMemberDtoMembershipStatus: {
3701
+ readonly ACTIVE: "ACTIVE";
3702
+ readonly PENDING_APPROVAL: "PENDING_APPROVAL";
3703
+ readonly SUSPENDED: "SUSPENDED";
3704
+ readonly REJECTED: "REJECTED";
3705
+ };
3706
+
3707
+ /**
3708
+ * Generated by orval v8.23.0 🍺
3709
+ * Do not edit manually.
3710
+ * Scryme V3 API
3711
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3712
+ * OpenAPI spec version: 3.0
3713
+ */
3714
+ type UpdateMemberDtoRole = typeof UpdateMemberDtoRole[keyof typeof UpdateMemberDtoRole];
3715
+ declare const UpdateMemberDtoRole: {
3716
+ readonly OWNER: "OWNER";
3717
+ readonly ADMIN: "ADMIN";
3718
+ readonly MANAGER: "MANAGER";
3719
+ readonly EMPLOYEE: "EMPLOYEE";
3720
+ readonly CASHIER: "CASHIER";
3721
+ readonly REPORTER: "REPORTER";
3722
+ readonly GUEST: "GUEST";
3723
+ };
3724
+
3725
+ /**
3726
+ * Generated by orval v8.23.0 🍺
3727
+ * Do not edit manually.
3728
+ * Scryme V3 API
3729
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3730
+ * OpenAPI spec version: 3.0
3731
+ */
3732
+ type UpdateMemberDtoStatus = typeof UpdateMemberDtoStatus[keyof typeof UpdateMemberDtoStatus];
3733
+ declare const UpdateMemberDtoStatus: {
3734
+ readonly ONLINE: "ONLINE";
3735
+ readonly OFFLINE: "OFFLINE";
3736
+ };
3737
+
3738
+ /**
3739
+ * Generated by orval v8.23.0 🍺
3740
+ * Do not edit manually.
3741
+ * Scryme V3 API
3742
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3743
+ * OpenAPI spec version: 3.0
3744
+ */
3745
+
3746
+ interface UpdateMemberDto {
3747
+ name?: string;
3748
+ role?: UpdateMemberDtoRole;
3749
+ membershipStatus?: UpdateMemberDtoMembershipStatus;
3750
+ pin?: string;
3751
+ cardId?: string;
3752
+ phone?: string;
3753
+ isActive?: boolean;
3754
+ status?: UpdateMemberDtoStatus;
3755
+ departmentIds?: string[];
3756
+ customRoleIds?: string[];
3757
+ roleGroupIds?: string[];
3758
+ }
3759
+
3760
+ /**
3761
+ * Generated by orval v8.23.0 🍺
3762
+ * Do not edit manually.
3763
+ * Scryme V3 API
3764
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3765
+ * OpenAPI spec version: 3.0
3766
+ */
3767
+ interface UpdateOrderStatusDto {
3768
+ /** The new status of the order */
3769
+ status: string;
3770
+ }
3771
+
3772
+ /**
3773
+ * Generated by orval v8.23.0 🍺
3774
+ * Do not edit manually.
3775
+ * Scryme V3 API
3776
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3777
+ * OpenAPI spec version: 3.0
3778
+ */
3779
+ interface UpdateOrganizationDto {
3780
+ /** The name of the organization */
3781
+ name?: string;
3782
+ /** The unique slug of the organization */
3783
+ slug?: string;
3784
+ /** Logo URL */
3785
+ logo?: string;
3786
+ /** Description */
3787
+ description?: string;
3788
+ }
3789
+
3790
+ /**
3791
+ * Generated by orval v8.23.0 🍺
3792
+ * Do not edit manually.
3793
+ * Scryme V3 API
3794
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3795
+ * OpenAPI spec version: 3.0
3796
+ */
3797
+ type UpdatePartnerDtoBenefitType = typeof UpdatePartnerDtoBenefitType[keyof typeof UpdatePartnerDtoBenefitType];
3798
+ declare const UpdatePartnerDtoBenefitType: {
3799
+ readonly COMMISSION: "COMMISSION";
3800
+ readonly FIXED_FEE: "FIXED_FEE";
3801
+ readonly PROFIT_MARGIN: "PROFIT_MARGIN";
3802
+ readonly NONE: "NONE";
3803
+ };
3804
+
3805
+ /**
3806
+ * Generated by orval v8.23.0 🍺
3807
+ * Do not edit manually.
3808
+ * Scryme V3 API
3809
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3810
+ * OpenAPI spec version: 3.0
3811
+ */
3812
+ type UpdatePartnerDtoReconciliationPolicy = typeof UpdatePartnerDtoReconciliationPolicy[keyof typeof UpdatePartnerDtoReconciliationPolicy];
3813
+ declare const UpdatePartnerDtoReconciliationPolicy: {
3814
+ readonly RETURN_TO_STOCK: "RETURN_TO_STOCK";
3815
+ readonly MARK_AS_WASTE: "MARK_AS_WASTE";
3816
+ readonly PARTNER_CHARGED: "PARTNER_CHARGED";
3817
+ };
3818
+
3819
+ /**
3820
+ * Generated by orval v8.23.0 🍺
3821
+ * Do not edit manually.
3822
+ * Scryme V3 API
3823
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3824
+ * OpenAPI spec version: 3.0
3825
+ */
3826
+
3827
+ interface UpdatePartnerDto {
3828
+ name: string;
3829
+ email?: string;
3830
+ phone?: string;
3831
+ address?: string;
3832
+ benefitType?: UpdatePartnerDtoBenefitType;
3833
+ commissionRate?: number;
3834
+ fixedFee?: number;
3835
+ reconciliationPolicy?: UpdatePartnerDtoReconciliationPolicy;
3836
+ isActive?: boolean;
3837
+ }
3838
+
3839
+ /**
3840
+ * Generated by orval v8.23.0 🍺
3841
+ * Do not edit manually.
3842
+ * Scryme V3 API
3843
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3844
+ * OpenAPI spec version: 3.0
3845
+ */
3846
+
3847
+ interface UpdateProductDto {
3848
+ name?: string;
3849
+ description?: string;
3850
+ price?: number;
3851
+ sku?: string;
3852
+ customFields?: CmsCustomFieldsDto;
3853
+ }
3854
+
3855
+ /**
3856
+ * Generated by orval v8.23.0 🍺
3857
+ * Do not edit manually.
3858
+ * Scryme V3 API
3859
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3860
+ * OpenAPI spec version: 3.0
3861
+ */
3862
+ interface UpdateServiceCategoryDto {
3863
+ /** Category name */
3864
+ name?: string;
3865
+ /** Category description */
3866
+ description?: string;
3867
+ /** Parent category ID */
3868
+ parentId?: string;
3869
+ }
3870
+
3871
+ /**
3872
+ * Generated by orval v8.23.0 🍺
3873
+ * Do not edit manually.
3874
+ * Scryme V3 API
3875
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3876
+ * OpenAPI spec version: 3.0
3877
+ */
3878
+ /**
3879
+ * Pricing model
3880
+ */
3881
+ type UpdateServiceDtoPricingModel = typeof UpdateServiceDtoPricingModel[keyof typeof UpdateServiceDtoPricingModel];
3882
+ declare const UpdateServiceDtoPricingModel: {
3883
+ readonly FIXED: "FIXED";
3884
+ readonly HOURLY: "HOURLY";
3885
+ readonly VARIABLE: "VARIABLE";
3886
+ };
3887
+
3888
+ /**
3889
+ * Generated by orval v8.23.0 🍺
3890
+ * Do not edit manually.
3891
+ * Scryme V3 API
3892
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3893
+ * OpenAPI spec version: 3.0
3894
+ */
3895
+
3896
+ interface UpdateServiceDto {
3897
+ /** Service name */
3898
+ name?: string;
3899
+ /** Service description */
3900
+ description?: string;
3901
+ /** Service SKU */
3902
+ sku?: string;
3903
+ /** Category ID */
3904
+ categoryId?: string;
3905
+ /** Pricing model */
3906
+ pricingModel?: UpdateServiceDtoPricingModel;
3907
+ /** Base price */
3908
+ price?: number;
3909
+ /** Minimum price for VARIABLE model */
3910
+ minPrice?: number;
3911
+ /** Estimated duration in minutes */
3912
+ estimatedDuration?: number;
3913
+ /** Buffer time before in minutes */
3914
+ bufferTimeBefore?: number;
3915
+ /** Buffer time after in minutes */
3916
+ bufferTimeAfter?: number;
3917
+ customFields?: CmsCustomFieldsDto;
3918
+ /** Assigned staff member IDs */
3919
+ staffIds?: string[];
3920
+ /** Assigned resource IDs */
3921
+ resourceIds?: string[];
3922
+ /** Bill of materials */
3923
+ materials?: ServiceMaterialDto[];
3924
+ /** Tax rate IDs */
3925
+ taxRateIds?: string[];
3926
+ /** Is service active */
3927
+ isActive?: boolean;
3928
+ }
3929
+
3930
+ /**
3931
+ * Generated by orval v8.23.0 🍺
3932
+ * Do not edit manually.
3933
+ * Scryme V3 API
3934
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3935
+ * OpenAPI spec version: 3.0
3936
+ */
3937
+ interface UpdateServiceResourceDto {
3938
+ /** Resource name */
3939
+ name?: string;
3940
+ /** Resource type */
3941
+ type?: string;
3942
+ /** Is resource active */
3943
+ isActive?: boolean;
3944
+ }
3945
+
3946
+ /**
3947
+ * Generated by orval v8.23.0 🍺
3948
+ * Do not edit manually.
3949
+ * Scryme V3 API
3950
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3951
+ * OpenAPI spec version: 3.0
3952
+ */
3953
+ type UpdateStrapiConnectionDtoEnabledSyncTypesItem = typeof UpdateStrapiConnectionDtoEnabledSyncTypesItem[keyof typeof UpdateStrapiConnectionDtoEnabledSyncTypesItem];
3954
+ declare const UpdateStrapiConnectionDtoEnabledSyncTypesItem: {
3955
+ readonly PRODUCTS: "PRODUCTS";
3956
+ readonly INVENTORY: "INVENTORY";
3957
+ readonly ORDERS: "ORDERS";
3958
+ readonly CUSTOMERS: "CUSTOMERS";
3959
+ readonly CATEGORIES: "CATEGORIES";
3960
+ readonly PRICES: "PRICES";
3961
+ };
3962
+
3963
+ /**
3964
+ * Generated by orval v8.23.0 🍺
3965
+ * Do not edit manually.
3966
+ * Scryme V3 API
3967
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3968
+ * OpenAPI spec version: 3.0
3969
+ */
3970
+ /**
3971
+ * Map storefront slugs to Scryme InventoryLocation IDs, e.g. { "store-lagos": "loc_abc" }
3972
+ */
3973
+ type UpdateStrapiConnectionDtoLocationMap = {
3974
+ [key: string]: unknown;
3975
+ };
3976
+
3977
+ /**
3978
+ * Generated by orval v8.23.0 🍺
3979
+ * Do not edit manually.
3980
+ * Scryme V3 API
3981
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3982
+ * OpenAPI spec version: 3.0
3983
+ */
3984
+ type UpdateStrapiConnectionDtoSyncDirection = typeof UpdateStrapiConnectionDtoSyncDirection[keyof typeof UpdateStrapiConnectionDtoSyncDirection];
3985
+ declare const UpdateStrapiConnectionDtoSyncDirection: {
3986
+ readonly INBOUND: "INBOUND";
3987
+ readonly OUTBOUND: "OUTBOUND";
3988
+ readonly BIDIRECTIONAL: "BIDIRECTIONAL";
3989
+ };
3990
+
3991
+ /**
3992
+ * Generated by orval v8.23.0 🍺
3993
+ * Do not edit manually.
3994
+ * Scryme V3 API
3995
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3996
+ * OpenAPI spec version: 3.0
3997
+ */
3998
+
3999
+ interface UpdateStrapiConnectionDto {
4000
+ /** Friendly display name, e.g. 'Main Storefront' */
4001
+ name?: string;
4002
+ /** Strapi v4 base URL, e.g. https://cms.example.com */
4003
+ strapiUrl?: string;
4004
+ /** Full-access API token from Strapi admin → API Tokens */
4005
+ apiToken?: string;
4006
+ /** Read-only public token for storefront queries */
4007
+ publicToken?: string;
4008
+ /** HMAC secret used to verify Strapi webhook signatures */
4009
+ webhookSecret?: string;
4010
+ graphqlPath?: string;
4011
+ webhooksEnabled?: boolean;
4012
+ /** Strapi content-type UIDs to sync */
4013
+ contentTypes?: string[];
4014
+ /** Map storefront slugs to Scryme InventoryLocation IDs, e.g. { "store-lagos": "loc_abc" } */
4015
+ locationMap?: UpdateStrapiConnectionDtoLocationMap;
4016
+ syncDirection?: UpdateStrapiConnectionDtoSyncDirection;
4017
+ enabledSyncTypes?: UpdateStrapiConnectionDtoEnabledSyncTypesItem[];
4018
+ autoSync?: boolean;
4019
+ /** Auto sync interval in minutes */
4020
+ syncInterval?: number;
4021
+ /** Default InventoryLocation ID for product sync */
4022
+ defaultLocationId?: string;
4023
+ }
4024
+
4025
+ /**
4026
+ * Generated by orval v8.23.0 🍺
4027
+ * Do not edit manually.
4028
+ * Scryme V3 API
4029
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
4030
+ * OpenAPI spec version: 3.0
4031
+ */
4032
+ interface UpdateSubscriptionDto {
4033
+ /** Slug of the tier / plan */
4034
+ tierSlug: string;
4035
+ /** Dodo Customer ID */
4036
+ dodoCustomerId?: string;
4037
+ /** Dodo Subscription ID */
4038
+ dodoSubscriptionId?: string;
4039
+ /** Dodo Price ID */
4040
+ dodoPriceId?: string;
4041
+ /** Dodo Subscription end period */
4042
+ dodoCurrentPeriodEnd?: string;
4043
+ }
4044
+
4045
+ /**
4046
+ * Generated by orval v8.23.0 🍺
4047
+ * Do not edit manually.
4048
+ * Scryme V3 API
4049
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
4050
+ * OpenAPI spec version: 3.0
4051
+ */
4052
+ interface UpdateSupplierProductDto {
4053
+ /** New cost price */
4054
+ costPrice?: number;
4055
+ /** Supplier-specific SKU */
4056
+ supplierSku?: string;
4057
+ /** Is this the preferred supplier for this product/variant? */
4058
+ isPreferred?: boolean;
4059
+ }
4060
+
4061
+ /**
4062
+ * Generated by orval v8.23.0 🍺
4063
+ * Do not edit manually.
4064
+ * Scryme V3 API
4065
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
4066
+ * OpenAPI spec version: 3.0
4067
+ */
4068
+ interface ValidateVoucherDto {
4069
+ /** The voucher code to validate */
4070
+ code: string;
4071
+ /** The ID of the customer */
4072
+ customerId: string;
4073
+ }
4074
+
4075
+ /**
4076
+ * Generated by orval v8.23.0 🍺
4077
+ * Do not edit manually.
4078
+ * Scryme V3 API
4079
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
4080
+ * OpenAPI spec version: 3.0
4081
+ */
4082
+ interface WebhookResponseDto {
4083
+ id: string;
4084
+ name: string;
4085
+ url: string;
4086
+ events: string[];
4087
+ secret: string;
4088
+ }
4089
+
4090
+ declare const getScrymeV3API: (axiosInstance?: AxiosInstance) => {
4091
+ inventoryVerifyIntegrity: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4092
+ inventoryFixIntegrity: (orgSlug: string, variantId: string, params: InventoryFixIntegrityParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4093
+ inventoryGetInventory: (orgSlug: string, params: InventoryGetInventoryParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<InventoryResponseDto[]>>;
4094
+ inventoryTraceBatch: (orgSlug: string, identifier: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4095
+ inventorySplitBatch: (orgSlug: string, id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4096
+ inventoryMergeBatches: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4097
+ inventoryCreateAssembly: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4098
+ inventoryCompleteAssembly: (orgSlug: string, id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4099
+ inventoryRequestAdjustment: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4100
+ inventoryGetAdjustments: (orgSlug: string, params: InventoryGetAdjustmentsParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4101
+ inventoryApproveAdjustment: (orgSlug: string, id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4102
+ inventoryRejectAdjustment: (orgSlug: string, id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4103
+ inventoryGetLeadTime: (orgSlug: string, params: InventoryGetLeadTimeParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4104
+ inventoryGetWasteAnalysis: (orgSlug: string, params: InventoryGetWasteAnalysisParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4105
+ inventoryCheckB2BAvailability: (orgSlug: string, checkB2BAvailabilityDto: CheckB2BAvailabilityDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4106
+ inventoryUnpackBatch: (orgSlug: string, id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4107
+ inventoryScanUnpackBatch: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4108
+ inventoryQuickStockInquiry: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4109
+ expenseControllerCreateExpense: (createExpenseDto: CreateExpenseDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4110
+ expenseControllerGetExpenses: (params: ExpenseControllerGetExpensesParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4111
+ expenseControllerGetExpenseCategories: (options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4112
+ expenseControllerGetExpense: (id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4113
+ pettyCashControllerCreateFund: (createPettyCashFundDto: CreatePettyCashFundDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4114
+ pettyCashControllerGetFunds: (options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4115
+ pettyCashControllerGetFund: (id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4116
+ pettyCashControllerTopUpFund: (id: string, topUpPettyCashFundDto: TopUpPettyCashFundDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4117
+ pettyCashControllerGetFundTransactions: (id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4118
+ utilityAccountControllerCreateAccount: (createUtilityAccountDto: CreateUtilityAccountDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4119
+ utilityAccountControllerGetAccounts: (options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4120
+ utilityAccountControllerGetAccount: (id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4121
+ accountingInitialize: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4122
+ accountingGetProfitLoss: (orgSlug: string, params: AccountingGetProfitLossParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4123
+ accountingGetBalanceSheet: (orgSlug: string, params: AccountingGetBalanceSheetParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4124
+ accountingGetCashFlow: (orgSlug: string, params: AccountingGetCashFlowParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4125
+ accountingGetTaxSummary: (orgSlug: string, params: AccountingGetTaxSummaryParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4126
+ invoiceControllerCreateInvoice: (createInvoiceDto: CreateInvoiceDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4127
+ invoiceControllerGetInvoices: (options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4128
+ invoiceControllerGetInvoice: (id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4129
+ invoiceControllerUpdateInvoice: (id: string, updateInvoiceDto: UpdateInvoiceDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4130
+ invoiceControllerDeleteInvoice: (id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4131
+ invoiceControllerFinalizeInvoice: (id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4132
+ invoiceControllerGetTemplates: (options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4133
+ invoiceControllerCreateTemplate: (options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4134
+ invoiceControllerGetConfig: (options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4135
+ invoiceControllerUpdateConfig: (invoiceConfigDto: InvoiceConfigDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4136
+ publicInvoiceControllerDownloadInvoice: (id: string, params: PublicInvoiceControllerDownloadInvoiceParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4137
+ publicInvoiceControllerDownloadInvoiceByTransaction: (transactionId: string, params: PublicInvoiceControllerDownloadInvoiceByTransactionParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4138
+ publicInvoiceControllerDownloadReceipt: (transactionId: string, params: PublicInvoiceControllerDownloadReceiptParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4139
+ publicInvoiceControllerGeneratePublicLink: (transactionId: string, params: PublicInvoiceControllerGeneratePublicLinkParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4140
+ authExchangeToken: (tokenRequestDto: TokenRequestDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<AuthExchangeToken201>>;
4141
+ authControllerHandleOAuth2: (path: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4142
+ adminControllerGetStats: (options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4143
+ adminControllerListOrganizations: (options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4144
+ adminControllerCreateOrganization: (createOrganizationDto: CreateOrganizationDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4145
+ adminControllerGetOrganizationDetails: (id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4146
+ adminControllerUpdateOrganization: (id: string, updateOrganizationDto: UpdateOrganizationDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4147
+ adminControllerDeleteOrganization: (id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4148
+ adminControllerListMembers: (params: AdminControllerListMembersParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4149
+ adminControllerListUsers: (options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4150
+ adminControllerBanUser: (id: string, banUserDto: BanUserDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4151
+ adminControllerUnbanUser: (id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4152
+ adminControllerListConnectedApps: (options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4153
+ adminControllerListSystemLogs: (options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4154
+ adminControllerListGlobalSettings: (options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4155
+ adminControllerSetGlobalSetting: (setGlobalSettingDto: SetGlobalSettingDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4156
+ adminControllerDeleteGlobalSetting: (key: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4157
+ adminControllerListTiers: (options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4158
+ adminControllerDefineTier: (defineTierDto: DefineTierDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4159
+ adminControllerDeleteTier: (slug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4160
+ adminControllerGetOrganizationSubscription: (id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4161
+ adminControllerUpdateOrganizationSubscription: (id: string, updateSubscriptionDto: UpdateSubscriptionDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4162
+ adminControllerListSystemPayments: (options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4163
+ adminControllerRecordCustomPayment: (recordCustomPaymentDto: RecordCustomPaymentDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4164
+ adminControllerListIntegrationDefinitions: (options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4165
+ adminControllerCreateIntegrationDefinition: (createIntegrationDefinitionDto: CreateIntegrationDefinitionDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4166
+ adminControllerUpdateIntegrationDefinition: (id: string, updateIntegrationDefinitionDto: UpdateIntegrationDefinitionDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4167
+ adminControllerDeleteIntegrationDefinition: (id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4168
+ adminControllerListActiveOrganizationIntegrations: (options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4169
+ webhooksCreate: (orgSlug: string, createWebhookDto: CreateWebhookDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<WebhookResponseDto>>;
4170
+ webhooksList: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<WebhookResponseDto[]>>;
4171
+ webhooksDelete: (orgSlug: string, id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4172
+ windmillCallbackControllerHandleCallback: (options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4173
+ windmillCallbackControllerHandleApprovalCallback: (options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4174
+ windmillCallbackControllerHandleBakeryDisposalCallback: (options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4175
+ windmillCallbackControllerHandleOutcomeCallback: (options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4176
+ catalogGetProducts: (orgSlug: string, params?: CatalogGetProductsParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<ProductResponseDto[]>>;
4177
+ catalogCreateProduct: (orgSlug: string, createProductDto: CreateProductDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<ProductResponseDto>>;
4178
+ catalogGetServices: (orgSlug: string, params?: CatalogGetServicesParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<ServiceCatalogResponseDto[]>>;
4179
+ catalogUpdateProduct: (orgSlug: string, id: string, updateProductDto: UpdateProductDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<ProductResponseDto>>;
4180
+ catalogUpdateSupplierVariant: (orgSlug: string, supplierId: string, variantId: string, updateSupplierProductDto: UpdateSupplierProductDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4181
+ catalogGetPriceChangeRequests: (orgSlug: string, params?: CatalogGetPriceChangeRequestsParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4182
+ catalogReviewPriceChangeRequest: (orgSlug: string, id: string, reviewPriceChangeDto: ReviewPriceChangeDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4183
+ servicesCreateCategory: (orgSlug: string, createServiceCategoryDto: CreateServiceCategoryDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4184
+ servicesGetCategories: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4185
+ servicesUpdateCategory: (orgSlug: string, id: string, updateServiceCategoryDto: UpdateServiceCategoryDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4186
+ servicesDeleteCategory: (orgSlug: string, id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4187
+ servicesCreateService: (orgSlug: string, createServiceDto: CreateServiceDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4188
+ servicesGetServices: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4189
+ servicesGetCurrentMemberShifts: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4190
+ servicesGetShifts: (orgSlug: string, params?: ServicesGetShiftsParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4191
+ servicesGetService: (orgSlug: string, id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4192
+ servicesUpdateService: (orgSlug: string, id: string, updateServiceDto: UpdateServiceDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4193
+ servicesDeleteService: (orgSlug: string, id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4194
+ servicesCreateResource: (orgSlug: string, createServiceResourceDto: CreateServiceResourceDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4195
+ servicesGetResources: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4196
+ servicesUpdateResource: (orgSlug: string, id: string, updateServiceResourceDto: UpdateServiceResourceDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4197
+ servicesDeleteResource: (orgSlug: string, id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4198
+ servicesCreateBooking: (orgSlug: string, createBookingDto: CreateBookingDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4199
+ servicesGetBookings: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4200
+ servicesGetBooking: (orgSlug: string, id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4201
+ servicesUpdateBookingStatus: (orgSlug: string, id: string, servicesUpdateBookingStatusBody: ServicesUpdateBookingStatusBody, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4202
+ servicesCompleteBooking: (orgSlug: string, id: string, completeBookingDto: CompleteBookingDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4203
+ servicesCreateShift: (orgSlug: string, memberId: string, servicesCreateShiftBody: ServicesCreateShiftBody, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4204
+ servicesGetStaffShifts: (orgSlug: string, memberId: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4205
+ servicesAddBreak: (orgSlug: string, shiftId: string, servicesAddBreakBody: ServicesAddBreakBody, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4206
+ servicesRegisterCustomerApp: (orgSlug: string, servicesRegisterCustomerAppBody: ServicesRegisterCustomerAppBody, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4207
+ servicesGetUtilization: (orgSlug: string, params: ServicesGetUtilizationParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4208
+ servicesGetPerformance: (orgSlug: string, params: ServicesGetPerformanceParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4209
+ servicesGetFunnel: (orgSlug: string, params: ServicesGetFunnelParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4210
+ customersProvisionZitadel: (orgSlug: string, provisionZitadelDto: ProvisionZitadelDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4211
+ customersGetCustomers: (orgSlug: string, params?: CustomersGetCustomersParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<CustomerResponseDto[]>>;
4212
+ customersRegister: (orgSlug: string, registerCustomerDto: RegisterCustomerDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<CustomerResponseDto>>;
4213
+ customersUpdate: (orgSlug: string, id: string, updateCustomerDto: UpdateCustomerDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<CustomerResponseDto>>;
4214
+ customersGetCustomerById: (orgSlug: string, id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<CustomerResponseDto>>;
4215
+ customersDelete: (orgSlug: string, id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4216
+ customersGetAddresses: (orgSlug: string, id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4217
+ customersAddAddress: (orgSlug: string, id: string, addressDto: AddressDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4218
+ businessAccountControllerCreate: (orgSlug: string, createBusinessAccountDto: CreateBusinessAccountDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4219
+ businessAccountControllerGetOne: (orgSlug: string, id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4220
+ crmControllerCreateRecord: (orgSlug: string, createCrmRecordDto: CreateCrmRecordDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<CrmRecordResponseDto>>;
4221
+ crmControllerGetRecord: (orgSlug: string, id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<CrmRecordResponseDto>>;
4222
+ crmControllerUpdateRecord: (orgSlug: string, id: string, updateCrmRecordDto: UpdateCrmRecordDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<CrmRecordResponseDto>>;
4223
+ crmControllerCreateNote: (orgSlug: string, createCrmNoteDto: CreateCrmNoteDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<CrmNoteResponseDto>>;
4224
+ crmControllerGetRecordNotes: (orgSlug: string, id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<CrmNoteResponseDto[]>>;
4225
+ crmControllerCreateActivity: (orgSlug: string, createCrmActivityDto: CreateCrmActivityDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4226
+ crmControllerGetTimeline: (orgSlug: string, id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4227
+ crmControllerCreateObject: (orgSlug: string, createCrmObjectDto: CreateCrmObjectDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4228
+ crmControllerListObjects: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4229
+ crmControllerCreateField: (orgSlug: string, objectId: string, createCrmFieldDto: CreateCrmFieldDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4230
+ crmControllerListFields: (orgSlug: string, objectId: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4231
+ crmControllerCreateRelationship: (orgSlug: string, createCrmRelationshipDto: CreateCrmRelationshipDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4232
+ crmControllerListRelationships: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4233
+ crmControllerCreateAssociation: (orgSlug: string, createCrmAssociationDto: CreateCrmAssociationDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4234
+ crmControllerListRecordAssociations: (orgSlug: string, id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4235
+ loyaltyRedeemReward: (orgSlug: string, redeemRewardDto: RedeemRewardDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4236
+ loyaltyGetCustomerStatus: (orgSlug: string, id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<LoyaltyStatusResponseDto>>;
4237
+ loyaltyValidateVoucher: (orgSlug: string, validateVoucherDto: ValidateVoucherDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4238
+ ordersCreateOrder: (orgSlug: string, createOrderDto: CreateOrderDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<OrderResponseDto>>;
4239
+ ordersGetOrders: (orgSlug: string, params?: OrdersGetOrdersParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<OrderResponseDto[]>>;
4240
+ ordersUpdateStatus: (orgSlug: string, id: string, updateOrderStatusDto: UpdateOrderStatusDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<OrderResponseDto>>;
4241
+ ordersRequestB2BQuote: (orgSlug: string, requestB2BQuoteDto: RequestB2BQuoteDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4242
+ ordersConvertQuoteToOrder: (orgSlug: string, id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4243
+ paymentsControllerHandleStkCallback: (orgSlug: string, paymentId: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4244
+ pOSProvision: (orgSlug: string, provisionDeviceDto: ProvisionDeviceDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<ProvisionResponseDto>>;
4245
+ pOSLogin: (orgSlug: string, posLoginDto: PosLoginDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<PosLoginResponseDto>>;
4246
+ pOSGetMe: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4247
+ pOSProcessSale: (orgSlug: string, processSaleDto: ProcessSaleDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4248
+ pOSSync: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4249
+ pOSGetTransactions: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4250
+ pOSRegisterPettyCash: (orgSlug: string, registerPettyCashDto: RegisterPettyCashDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4251
+ pOSGetPettyCashFunds: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4252
+ pOSGetPettyCashTransactions: (orgSlug: string, params: POSGetPettyCashTransactionsParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4253
+ membersControllerGetMembers: (orgSlug: string, params?: MembersControllerGetMembersParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<MemberResponseDto[]>>;
4254
+ membersControllerCreateMember: (orgSlug: string, createMemberDto: CreateMemberDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<MemberResponseDto>>;
4255
+ membersControllerGetMember: (orgSlug: string, id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<MemberResponseDto>>;
4256
+ membersControllerUpdateMember: (orgSlug: string, id: string, updateMemberDto: UpdateMemberDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<MemberResponseDto>>;
4257
+ membersControllerDeleteMember: (orgSlug: string, id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4258
+ membersControllerGetMemberActivity: (orgSlug: string, id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4259
+ membersControllerUpdateStatus: (orgSlug: string, id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4260
+ membersControllerAdminCheckOut: (orgSlug: string, memberId: string, checkOutDto: CheckOutDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4261
+ terminalMembersControllerLogin: (terminalLoginDto: TerminalLoginDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<TerminalLoginResponseDto>>;
4262
+ invitationsList: (orgSlug: string, params?: InvitationsListParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<InvitationResponseDto[]>>;
4263
+ invitationsCreate: (orgSlug: string, createInvitationDto: CreateInvitationDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<InvitationResponseDto>>;
4264
+ invitationsRevoke: (orgSlug: string, id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4265
+ invitationsAccept: (orgSlug: string, acceptInvitationDto: AcceptInvitationDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4266
+ roleManagementControllerGetCustomRoles: (orgSlug: string, params?: RoleManagementControllerGetCustomRolesParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4267
+ roleManagementControllerCreateCustomRole: (orgSlug: string, createCustomRoleDto: CreateCustomRoleDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4268
+ roleManagementControllerUpdateCustomRole: (orgSlug: string, id: string, updateCustomRoleDto: UpdateCustomRoleDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4269
+ roleManagementControllerDeleteCustomRole: (orgSlug: string, id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4270
+ roleManagementControllerGetPermissionSets: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4271
+ roleManagementControllerCreatePermissionSet: (orgSlug: string, createPermissionSetDto: CreatePermissionSetDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4272
+ roleManagementControllerGetRoleGroups: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4273
+ roleManagementControllerCreateRoleGroup: (orgSlug: string, createRoleGroupDto: CreateRoleGroupDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4274
+ roleManagementControllerAssignRoles: (orgSlug: string, memberId: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4275
+ roleManagementControllerRemoveRoles: (orgSlug: string, memberId: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4276
+ departmentsList: (orgSlug: string, params?: DepartmentsListParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<DepartmentResponseDto[]>>;
4277
+ departmentsCreate: (orgSlug: string, createDepartmentDto: CreateDepartmentDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<DepartmentResponseDto>>;
4278
+ departmentsGet: (orgSlug: string, id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<DepartmentResponseDto>>;
4279
+ departmentsUpdate: (orgSlug: string, id: string, updateDepartmentDto: UpdateDepartmentDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<DepartmentResponseDto>>;
4280
+ departmentsDelete: (orgSlug: string, id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4281
+ departmentsAddMember: (orgSlug: string, id: string, addDepartmentMemberDto: AddDepartmentMemberDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4282
+ departmentsRemoveMember: (orgSlug: string, id: string, memberId: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4283
+ attendanceControllerGetLogs: (orgSlug: string, params?: AttendanceControllerGetLogsParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4284
+ attendanceControllerCheckIn: (orgSlug: string, checkInDto: CheckInDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4285
+ attendanceControllerCheckOut: (orgSlug: string, checkOutDto: CheckOutDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4286
+ attendanceControllerGetMyStatus: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4287
+ attendanceControllerGetStatus: (orgSlug: string, memberId: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4288
+ announcementControllerBroadcastAnnouncement: (orgSlug: string, announcementDto: AnnouncementDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4289
+ cartControllerGetCart: (orgSlug: string, params: CartControllerGetCartParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<CartResponseDto>>;
4290
+ cartControllerClearCart: (orgSlug: string, params: CartControllerClearCartParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4291
+ cartControllerAddToCart: (orgSlug: string, addToCartDto: AddToCartDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4292
+ cartControllerRemoveFromCart: (orgSlug: string, removeFromCartDto: RemoveFromCartDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4293
+ favoritesControllerGetFavorites: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<FavoriteResponseDto[]>>;
4294
+ favoritesControllerAddFavorite: (orgSlug: string, favoriteDto: FavoriteDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4295
+ favoritesControllerRemoveFavorite: (orgSlug: string, favoriteDto: FavoriteDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4296
+ stockingGetPurchases: (orgSlug: string, params?: StockingGetPurchasesParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4297
+ stockingCreatePurchase: (orgSlug: string, createPurchaseDto: CreatePurchaseDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4298
+ stockingReceivePurchase: (orgSlug: string, id: string, receivePurchaseDto: ReceivePurchaseDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4299
+ stockingGetTransfers: (orgSlug: string, params?: StockingGetTransfersParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4300
+ stockingCreateTransfer: (orgSlug: string, createTransferDto: CreateTransferDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4301
+ stockingShipTransfer: (orgSlug: string, id: string, shipTransferDto: ShipTransferDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4302
+ stockingReceiveTransfer: (orgSlug: string, id: string, receiveTransferDto: ReceiveTransferDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4303
+ stockingGetRequests: (orgSlug: string, params?: StockingGetRequestsParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4304
+ stockingGetPendingDispatch: (orgSlug: string, params?: StockingGetPendingDispatchParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4305
+ stockingDispatchOrders: (orgSlug: string, dispatchOrderDto: DispatchOrderDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4306
+ stockingGetActiveDeliveries: (orgSlug: string, params?: StockingGetActiveDeliveriesParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4307
+ stockingReconcilePod: (orgSlug: string, reconcilePodDto: ReconcilePodDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4308
+ stockingGetPhysicalReconciliations: (orgSlug: string, params?: StockingGetPhysicalReconciliationsParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4309
+ stockingSubmitPhysicalReconciliation: (orgSlug: string, submitReconciliationDto: SubmitReconciliationDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4310
+ stockingGetReconciliationReport: (orgSlug: string, id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4311
+ stockingGetPartners: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4312
+ stockingCreatePartner: (orgSlug: string, createPartnerDto: CreatePartnerDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4313
+ stockingGetPartner: (orgSlug: string, id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4314
+ stockingUpdatePartner: (orgSlug: string, id: string, updatePartnerDto: UpdatePartnerDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4315
+ stockingAdjustPartnerWallet: (orgSlug: string, id: string, partnerWalletActionDto: PartnerWalletActionDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4316
+ standalonePosControllerCreateSetupKey: (createSetupKeyDto: CreateSetupKeyDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4317
+ standalonePosControllerActivateDevice: (activateDeviceDto: ActivateDeviceDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4318
+ standalonePosControllerValidateKey: (options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4319
+ standalonePosControllerLinkOrganization: (linkOrganizationDto: LinkOrganizationDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4320
+ b2BGetCatalog: (orgSlug: string, params?: B2BGetCatalogParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<PaginatedB2BCatalogDto>>;
4321
+ b2BGetInvoices: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4322
+ b2BGetOrders: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4323
+ b2BCreateOrder: (orgSlug: string, createB2BOrderDto: CreateB2BOrderDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<B2BOrderResponseDto>>;
4324
+ b2BCreateQuote: (orgSlug: string, createB2BOrderDto: CreateB2BOrderDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4325
+ crmIntegrationsGetAuthUrl: (orgSlug: string, provider: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4326
+ crmIntegrationsHandleCallback: (orgSlug: string, provider: string, params: CrmIntegrationsHandleCallbackParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4327
+ crmIntegrationsHandleWebhook: (orgSlug: string, provider: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4328
+ crmIntegrationsReplyToActivity: (orgSlug: string, id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4329
+ unitsGetUnits: (orgSlug: string, params?: UnitsGetUnitsParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4330
+ strapiCreateConnection: (orgSlug: string, createStrapiConnectionDto: CreateStrapiConnectionDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<StrapiConnectionResponseDto>>;
4331
+ strapiListConnections: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<StrapiConnectionResponseDto[]>>;
4332
+ strapiGetConnection: (orgSlug: string, connectionId: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<StrapiConnectionResponseDto>>;
4333
+ strapiUpdateConnection: (orgSlug: string, connectionId: string, updateStrapiConnectionDto: UpdateStrapiConnectionDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<StrapiConnectionResponseDto>>;
4334
+ strapiDeleteConnection: (orgSlug: string, connectionId: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4335
+ strapiTriggerSync: (orgSlug: string, connectionId: string, triggerSyncDto: TriggerSyncDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4336
+ strapiEnqueueSync: (orgSlug: string, connectionId: string, triggerSyncDto: TriggerSyncDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4337
+ strapiGetWebhookLogs: (orgSlug: string, connectionId: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4338
+ strapiGetSyncLogs: (orgSlug: string, connectionId: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4339
+ strapiExchangeCustomerToken: (orgSlug: string, connectionId: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4340
+ strapiRegisterCustomer: (orgSlug: string, connectionId: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4341
+ strapiReceiveWebhook: (connectionId: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4342
+ analyticsControllerGetDashboardAnalytics: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4343
+ analyticsControllerGetResourceUtilization: (orgSlug: string, params: AnalyticsControllerGetResourceUtilizationParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4344
+ };
4345
+ type InventoryVerifyIntegrityResult = AxiosResponse<void>;
4346
+ type InventoryFixIntegrityResult = AxiosResponse<void>;
4347
+ type InventoryGetInventoryResult = AxiosResponse<InventoryResponseDto[]>;
4348
+ type InventoryTraceBatchResult = AxiosResponse<void>;
4349
+ type InventorySplitBatchResult = AxiosResponse<void>;
4350
+ type InventoryMergeBatchesResult = AxiosResponse<void>;
4351
+ type InventoryCreateAssemblyResult = AxiosResponse<void>;
4352
+ type InventoryCompleteAssemblyResult = AxiosResponse<void>;
4353
+ type InventoryRequestAdjustmentResult = AxiosResponse<void>;
4354
+ type InventoryGetAdjustmentsResult = AxiosResponse<void>;
4355
+ type InventoryApproveAdjustmentResult = AxiosResponse<void>;
4356
+ type InventoryRejectAdjustmentResult = AxiosResponse<void>;
4357
+ type InventoryGetLeadTimeResult = AxiosResponse<void>;
4358
+ type InventoryGetWasteAnalysisResult = AxiosResponse<void>;
4359
+ type InventoryCheckB2BAvailabilityResult = AxiosResponse<void>;
4360
+ type InventoryUnpackBatchResult = AxiosResponse<void>;
4361
+ type InventoryScanUnpackBatchResult = AxiosResponse<void>;
4362
+ type InventoryQuickStockInquiryResult = AxiosResponse<void>;
4363
+ type ExpenseControllerCreateExpenseResult = AxiosResponse<void>;
4364
+ type ExpenseControllerGetExpensesResult = AxiosResponse<void>;
4365
+ type ExpenseControllerGetExpenseCategoriesResult = AxiosResponse<void>;
4366
+ type ExpenseControllerGetExpenseResult = AxiosResponse<void>;
4367
+ type PettyCashControllerCreateFundResult = AxiosResponse<void>;
4368
+ type PettyCashControllerGetFundsResult = AxiosResponse<void>;
4369
+ type PettyCashControllerGetFundResult = AxiosResponse<void>;
4370
+ type PettyCashControllerTopUpFundResult = AxiosResponse<void>;
4371
+ type PettyCashControllerGetFundTransactionsResult = AxiosResponse<void>;
4372
+ type UtilityAccountControllerCreateAccountResult = AxiosResponse<void>;
4373
+ type UtilityAccountControllerGetAccountsResult = AxiosResponse<void>;
4374
+ type UtilityAccountControllerGetAccountResult = AxiosResponse<void>;
4375
+ type AccountingInitializeResult = AxiosResponse<void>;
4376
+ type AccountingGetProfitLossResult = AxiosResponse<void>;
4377
+ type AccountingGetBalanceSheetResult = AxiosResponse<void>;
4378
+ type AccountingGetCashFlowResult = AxiosResponse<void>;
4379
+ type AccountingGetTaxSummaryResult = AxiosResponse<void>;
4380
+ type InvoiceControllerCreateInvoiceResult = AxiosResponse<void>;
4381
+ type InvoiceControllerGetInvoicesResult = AxiosResponse<void>;
4382
+ type InvoiceControllerGetInvoiceResult = AxiosResponse<void>;
4383
+ type InvoiceControllerUpdateInvoiceResult = AxiosResponse<void>;
4384
+ type InvoiceControllerDeleteInvoiceResult = AxiosResponse<void>;
4385
+ type InvoiceControllerFinalizeInvoiceResult = AxiosResponse<void>;
4386
+ type InvoiceControllerGetTemplatesResult = AxiosResponse<void>;
4387
+ type InvoiceControllerCreateTemplateResult = AxiosResponse<void>;
4388
+ type InvoiceControllerGetConfigResult = AxiosResponse<void>;
4389
+ type InvoiceControllerUpdateConfigResult = AxiosResponse<void>;
4390
+ type PublicInvoiceControllerDownloadInvoiceResult = AxiosResponse<void>;
4391
+ type PublicInvoiceControllerDownloadInvoiceByTransactionResult = AxiosResponse<void>;
4392
+ type PublicInvoiceControllerDownloadReceiptResult = AxiosResponse<void>;
4393
+ type PublicInvoiceControllerGeneratePublicLinkResult = AxiosResponse<void>;
4394
+ type AuthExchangeTokenResult = AxiosResponse<AuthExchangeToken201>;
4395
+ type AuthControllerHandleOAuth2Result = AxiosResponse<void>;
4396
+ type AdminControllerGetStatsResult = AxiosResponse<void>;
4397
+ type AdminControllerListOrganizationsResult = AxiosResponse<void>;
4398
+ type AdminControllerCreateOrganizationResult = AxiosResponse<void>;
4399
+ type AdminControllerGetOrganizationDetailsResult = AxiosResponse<void>;
4400
+ type AdminControllerUpdateOrganizationResult = AxiosResponse<void>;
4401
+ type AdminControllerDeleteOrganizationResult = AxiosResponse<void>;
4402
+ type AdminControllerListMembersResult = AxiosResponse<void>;
4403
+ type AdminControllerListUsersResult = AxiosResponse<void>;
4404
+ type AdminControllerBanUserResult = AxiosResponse<void>;
4405
+ type AdminControllerUnbanUserResult = AxiosResponse<void>;
4406
+ type AdminControllerListConnectedAppsResult = AxiosResponse<void>;
4407
+ type AdminControllerListSystemLogsResult = AxiosResponse<void>;
4408
+ type AdminControllerListGlobalSettingsResult = AxiosResponse<void>;
4409
+ type AdminControllerSetGlobalSettingResult = AxiosResponse<void>;
4410
+ type AdminControllerDeleteGlobalSettingResult = AxiosResponse<void>;
4411
+ type AdminControllerListTiersResult = AxiosResponse<void>;
4412
+ type AdminControllerDefineTierResult = AxiosResponse<void>;
4413
+ type AdminControllerDeleteTierResult = AxiosResponse<void>;
4414
+ type AdminControllerGetOrganizationSubscriptionResult = AxiosResponse<void>;
4415
+ type AdminControllerUpdateOrganizationSubscriptionResult = AxiosResponse<void>;
4416
+ type AdminControllerListSystemPaymentsResult = AxiosResponse<void>;
4417
+ type AdminControllerRecordCustomPaymentResult = AxiosResponse<void>;
4418
+ type AdminControllerListIntegrationDefinitionsResult = AxiosResponse<void>;
4419
+ type AdminControllerCreateIntegrationDefinitionResult = AxiosResponse<void>;
4420
+ type AdminControllerUpdateIntegrationDefinitionResult = AxiosResponse<void>;
4421
+ type AdminControllerDeleteIntegrationDefinitionResult = AxiosResponse<void>;
4422
+ type AdminControllerListActiveOrganizationIntegrationsResult = AxiosResponse<void>;
4423
+ type WebhooksCreateResult = AxiosResponse<WebhookResponseDto>;
4424
+ type WebhooksListResult = AxiosResponse<WebhookResponseDto[]>;
4425
+ type WebhooksDeleteResult = AxiosResponse<void>;
4426
+ type WindmillCallbackControllerHandleCallbackResult = AxiosResponse<void>;
4427
+ type WindmillCallbackControllerHandleApprovalCallbackResult = AxiosResponse<void>;
4428
+ type WindmillCallbackControllerHandleBakeryDisposalCallbackResult = AxiosResponse<void>;
4429
+ type WindmillCallbackControllerHandleOutcomeCallbackResult = AxiosResponse<void>;
4430
+ type CatalogGetProductsResult = AxiosResponse<ProductResponseDto[]>;
4431
+ type CatalogCreateProductResult = AxiosResponse<ProductResponseDto>;
4432
+ type CatalogGetServicesResult = AxiosResponse<ServiceCatalogResponseDto[]>;
4433
+ type CatalogUpdateProductResult = AxiosResponse<ProductResponseDto>;
4434
+ type CatalogUpdateSupplierVariantResult = AxiosResponse<void>;
4435
+ type CatalogGetPriceChangeRequestsResult = AxiosResponse<void>;
4436
+ type CatalogReviewPriceChangeRequestResult = AxiosResponse<void>;
4437
+ type ServicesCreateCategoryResult = AxiosResponse<void>;
4438
+ type ServicesGetCategoriesResult = AxiosResponse<void>;
4439
+ type ServicesUpdateCategoryResult = AxiosResponse<void>;
4440
+ type ServicesDeleteCategoryResult = AxiosResponse<void>;
4441
+ type ServicesCreateServiceResult = AxiosResponse<void>;
4442
+ type ServicesGetServicesResult = AxiosResponse<void>;
4443
+ type ServicesGetCurrentMemberShiftsResult = AxiosResponse<void>;
4444
+ type ServicesGetShiftsResult = AxiosResponse<void>;
4445
+ type ServicesGetServiceResult = AxiosResponse<void>;
4446
+ type ServicesUpdateServiceResult = AxiosResponse<void>;
4447
+ type ServicesDeleteServiceResult = AxiosResponse<void>;
4448
+ type ServicesCreateResourceResult = AxiosResponse<void>;
4449
+ type ServicesGetResourcesResult = AxiosResponse<void>;
4450
+ type ServicesUpdateResourceResult = AxiosResponse<void>;
4451
+ type ServicesDeleteResourceResult = AxiosResponse<void>;
4452
+ type ServicesCreateBookingResult = AxiosResponse<void>;
4453
+ type ServicesGetBookingsResult = AxiosResponse<void>;
4454
+ type ServicesGetBookingResult = AxiosResponse<void>;
4455
+ type ServicesUpdateBookingStatusResult = AxiosResponse<void>;
4456
+ type ServicesCompleteBookingResult = AxiosResponse<void>;
4457
+ type ServicesCreateShiftResult = AxiosResponse<void>;
4458
+ type ServicesGetStaffShiftsResult = AxiosResponse<void>;
4459
+ type ServicesAddBreakResult = AxiosResponse<void>;
4460
+ type ServicesRegisterCustomerAppResult = AxiosResponse<void>;
4461
+ type ServicesGetUtilizationResult = AxiosResponse<void>;
4462
+ type ServicesGetPerformanceResult = AxiosResponse<void>;
4463
+ type ServicesGetFunnelResult = AxiosResponse<void>;
4464
+ type CustomersProvisionZitadelResult = AxiosResponse<void>;
4465
+ type CustomersGetCustomersResult = AxiosResponse<CustomerResponseDto[]>;
4466
+ type CustomersRegisterResult = AxiosResponse<CustomerResponseDto>;
4467
+ type CustomersUpdateResult = AxiosResponse<CustomerResponseDto>;
4468
+ type CustomersGetCustomerByIdResult = AxiosResponse<CustomerResponseDto>;
4469
+ type CustomersDeleteResult = AxiosResponse<void>;
4470
+ type CustomersGetAddressesResult = AxiosResponse<void>;
4471
+ type CustomersAddAddressResult = AxiosResponse<void>;
4472
+ type BusinessAccountControllerCreateResult = AxiosResponse<void>;
4473
+ type BusinessAccountControllerGetOneResult = AxiosResponse<void>;
4474
+ type CrmControllerCreateRecordResult = AxiosResponse<CrmRecordResponseDto>;
4475
+ type CrmControllerGetRecordResult = AxiosResponse<CrmRecordResponseDto>;
4476
+ type CrmControllerUpdateRecordResult = AxiosResponse<CrmRecordResponseDto>;
4477
+ type CrmControllerCreateNoteResult = AxiosResponse<CrmNoteResponseDto>;
4478
+ type CrmControllerGetRecordNotesResult = AxiosResponse<CrmNoteResponseDto[]>;
4479
+ type CrmControllerCreateActivityResult = AxiosResponse<void>;
4480
+ type CrmControllerGetTimelineResult = AxiosResponse<void>;
4481
+ type CrmControllerCreateObjectResult = AxiosResponse<void>;
4482
+ type CrmControllerListObjectsResult = AxiosResponse<void>;
4483
+ type CrmControllerCreateFieldResult = AxiosResponse<void>;
4484
+ type CrmControllerListFieldsResult = AxiosResponse<void>;
4485
+ type CrmControllerCreateRelationshipResult = AxiosResponse<void>;
4486
+ type CrmControllerListRelationshipsResult = AxiosResponse<void>;
4487
+ type CrmControllerCreateAssociationResult = AxiosResponse<void>;
4488
+ type CrmControllerListRecordAssociationsResult = AxiosResponse<void>;
4489
+ type LoyaltyRedeemRewardResult = AxiosResponse<void>;
4490
+ type LoyaltyGetCustomerStatusResult = AxiosResponse<LoyaltyStatusResponseDto>;
4491
+ type LoyaltyValidateVoucherResult = AxiosResponse<void>;
4492
+ type OrdersCreateOrderResult = AxiosResponse<OrderResponseDto>;
4493
+ type OrdersGetOrdersResult = AxiosResponse<OrderResponseDto[]>;
4494
+ type OrdersUpdateStatusResult = AxiosResponse<OrderResponseDto>;
4495
+ type OrdersRequestB2BQuoteResult = AxiosResponse<void>;
4496
+ type OrdersConvertQuoteToOrderResult = AxiosResponse<void>;
4497
+ type PaymentsControllerHandleStkCallbackResult = AxiosResponse<void>;
4498
+ type POSProvisionResult = AxiosResponse<ProvisionResponseDto>;
4499
+ type POSLoginResult = AxiosResponse<PosLoginResponseDto>;
4500
+ type POSGetMeResult = AxiosResponse<void>;
4501
+ type POSProcessSaleResult = AxiosResponse<void>;
4502
+ type POSSyncResult = AxiosResponse<void>;
4503
+ type POSGetTransactionsResult = AxiosResponse<void>;
4504
+ type POSRegisterPettyCashResult = AxiosResponse<void>;
4505
+ type POSGetPettyCashFundsResult = AxiosResponse<void>;
4506
+ type POSGetPettyCashTransactionsResult = AxiosResponse<void>;
4507
+ type MembersControllerGetMembersResult = AxiosResponse<MemberResponseDto[]>;
4508
+ type MembersControllerCreateMemberResult = AxiosResponse<MemberResponseDto>;
4509
+ type MembersControllerGetMemberResult = AxiosResponse<MemberResponseDto>;
4510
+ type MembersControllerUpdateMemberResult = AxiosResponse<MemberResponseDto>;
4511
+ type MembersControllerDeleteMemberResult = AxiosResponse<void>;
4512
+ type MembersControllerGetMemberActivityResult = AxiosResponse<void>;
4513
+ type MembersControllerUpdateStatusResult = AxiosResponse<void>;
4514
+ type MembersControllerAdminCheckOutResult = AxiosResponse<void>;
4515
+ type TerminalMembersControllerLoginResult = AxiosResponse<TerminalLoginResponseDto>;
4516
+ type InvitationsListResult = AxiosResponse<InvitationResponseDto[]>;
4517
+ type InvitationsCreateResult = AxiosResponse<InvitationResponseDto>;
4518
+ type InvitationsRevokeResult = AxiosResponse<void>;
4519
+ type InvitationsAcceptResult = AxiosResponse<void>;
4520
+ type RoleManagementControllerGetCustomRolesResult = AxiosResponse<void>;
4521
+ type RoleManagementControllerCreateCustomRoleResult = AxiosResponse<void>;
4522
+ type RoleManagementControllerUpdateCustomRoleResult = AxiosResponse<void>;
4523
+ type RoleManagementControllerDeleteCustomRoleResult = AxiosResponse<void>;
4524
+ type RoleManagementControllerGetPermissionSetsResult = AxiosResponse<void>;
4525
+ type RoleManagementControllerCreatePermissionSetResult = AxiosResponse<void>;
4526
+ type RoleManagementControllerGetRoleGroupsResult = AxiosResponse<void>;
4527
+ type RoleManagementControllerCreateRoleGroupResult = AxiosResponse<void>;
4528
+ type RoleManagementControllerAssignRolesResult = AxiosResponse<void>;
4529
+ type RoleManagementControllerRemoveRolesResult = AxiosResponse<void>;
4530
+ type DepartmentsListResult = AxiosResponse<DepartmentResponseDto[]>;
4531
+ type DepartmentsCreateResult = AxiosResponse<DepartmentResponseDto>;
4532
+ type DepartmentsGetResult = AxiosResponse<DepartmentResponseDto>;
4533
+ type DepartmentsUpdateResult = AxiosResponse<DepartmentResponseDto>;
4534
+ type DepartmentsDeleteResult = AxiosResponse<void>;
4535
+ type DepartmentsAddMemberResult = AxiosResponse<void>;
4536
+ type DepartmentsRemoveMemberResult = AxiosResponse<void>;
4537
+ type AttendanceControllerGetLogsResult = AxiosResponse<void>;
4538
+ type AttendanceControllerCheckInResult = AxiosResponse<void>;
4539
+ type AttendanceControllerCheckOutResult = AxiosResponse<void>;
4540
+ type AttendanceControllerGetMyStatusResult = AxiosResponse<void>;
4541
+ type AttendanceControllerGetStatusResult = AxiosResponse<void>;
4542
+ type AnnouncementControllerBroadcastAnnouncementResult = AxiosResponse<void>;
4543
+ type CartControllerGetCartResult = AxiosResponse<CartResponseDto>;
4544
+ type CartControllerClearCartResult = AxiosResponse<void>;
4545
+ type CartControllerAddToCartResult = AxiosResponse<void>;
4546
+ type CartControllerRemoveFromCartResult = AxiosResponse<void>;
4547
+ type FavoritesControllerGetFavoritesResult = AxiosResponse<FavoriteResponseDto[]>;
4548
+ type FavoritesControllerAddFavoriteResult = AxiosResponse<void>;
4549
+ type FavoritesControllerRemoveFavoriteResult = AxiosResponse<void>;
4550
+ type StockingGetPurchasesResult = AxiosResponse<void>;
4551
+ type StockingCreatePurchaseResult = AxiosResponse<void>;
4552
+ type StockingReceivePurchaseResult = AxiosResponse<void>;
4553
+ type StockingGetTransfersResult = AxiosResponse<void>;
4554
+ type StockingCreateTransferResult = AxiosResponse<void>;
4555
+ type StockingShipTransferResult = AxiosResponse<void>;
4556
+ type StockingReceiveTransferResult = AxiosResponse<void>;
4557
+ type StockingGetRequestsResult = AxiosResponse<void>;
4558
+ type StockingGetPendingDispatchResult = AxiosResponse<void>;
4559
+ type StockingDispatchOrdersResult = AxiosResponse<void>;
4560
+ type StockingGetActiveDeliveriesResult = AxiosResponse<void>;
4561
+ type StockingReconcilePodResult = AxiosResponse<void>;
4562
+ type StockingGetPhysicalReconciliationsResult = AxiosResponse<void>;
4563
+ type StockingSubmitPhysicalReconciliationResult = AxiosResponse<void>;
4564
+ type StockingGetReconciliationReportResult = AxiosResponse<void>;
4565
+ type StockingGetPartnersResult = AxiosResponse<void>;
4566
+ type StockingCreatePartnerResult = AxiosResponse<void>;
4567
+ type StockingGetPartnerResult = AxiosResponse<void>;
4568
+ type StockingUpdatePartnerResult = AxiosResponse<void>;
4569
+ type StockingAdjustPartnerWalletResult = AxiosResponse<void>;
4570
+ type StandalonePosControllerCreateSetupKeyResult = AxiosResponse<void>;
4571
+ type StandalonePosControllerActivateDeviceResult = AxiosResponse<void>;
4572
+ type StandalonePosControllerValidateKeyResult = AxiosResponse<void>;
4573
+ type StandalonePosControllerLinkOrganizationResult = AxiosResponse<void>;
4574
+ type B2BGetCatalogResult = AxiosResponse<PaginatedB2BCatalogDto>;
4575
+ type B2BGetInvoicesResult = AxiosResponse<void>;
4576
+ type B2BGetOrdersResult = AxiosResponse<void>;
4577
+ type B2BCreateOrderResult = AxiosResponse<B2BOrderResponseDto>;
4578
+ type B2BCreateQuoteResult = AxiosResponse<void>;
4579
+ type CrmIntegrationsGetAuthUrlResult = AxiosResponse<void>;
4580
+ type CrmIntegrationsHandleCallbackResult = AxiosResponse<void>;
4581
+ type CrmIntegrationsHandleWebhookResult = AxiosResponse<void>;
4582
+ type CrmIntegrationsReplyToActivityResult = AxiosResponse<void>;
4583
+ type UnitsGetUnitsResult = AxiosResponse<void>;
4584
+ type StrapiCreateConnectionResult = AxiosResponse<StrapiConnectionResponseDto>;
4585
+ type StrapiListConnectionsResult = AxiosResponse<StrapiConnectionResponseDto[]>;
4586
+ type StrapiGetConnectionResult = AxiosResponse<StrapiConnectionResponseDto>;
4587
+ type StrapiUpdateConnectionResult = AxiosResponse<StrapiConnectionResponseDto>;
4588
+ type StrapiDeleteConnectionResult = AxiosResponse<void>;
4589
+ type StrapiTriggerSyncResult = AxiosResponse<void>;
4590
+ type StrapiEnqueueSyncResult = AxiosResponse<void>;
4591
+ type StrapiGetWebhookLogsResult = AxiosResponse<void>;
4592
+ type StrapiGetSyncLogsResult = AxiosResponse<void>;
4593
+ type StrapiExchangeCustomerTokenResult = AxiosResponse<void>;
4594
+ type StrapiRegisterCustomerResult = AxiosResponse<void>;
4595
+ type StrapiReceiveWebhookResult = AxiosResponse<void>;
4596
+ type AnalyticsControllerGetDashboardAnalyticsResult = AxiosResponse<void>;
4597
+ type AnalyticsControllerGetResourceUtilizationResult = AxiosResponse<void>;
4598
+
4599
+ type RawAPI = ReturnType<typeof getScrymeV3API>;
4600
+ type MethodsWithOrgSlug = "inventoryVerifyIntegrity" | "inventoryFixIntegrity" | "inventoryGetInventory" | "inventoryTraceBatch" | "inventorySplitBatch" | "inventoryMergeBatches" | "inventoryCreateAssembly" | "inventoryCompleteAssembly" | "inventoryRequestAdjustment" | "inventoryGetAdjustments" | "inventoryApproveAdjustment" | "inventoryRejectAdjustment" | "inventoryGetLeadTime" | "inventoryGetWasteAnalysis" | "inventoryCheckB2BAvailability" | "inventoryUnpackBatch" | "inventoryScanUnpackBatch" | "inventoryQuickStockInquiry" | "accountingInitialize" | "accountingGetProfitLoss" | "accountingGetBalanceSheet" | "accountingGetCashFlow" | "accountingGetTaxSummary" | "webhooksCreate" | "webhooksList" | "webhooksDelete" | "catalogGetProducts" | "catalogCreateProduct" | "catalogGetServices" | "catalogUpdateProduct" | "catalogUpdateSupplierVariant" | "catalogGetPriceChangeRequests" | "catalogReviewPriceChangeRequest" | "servicesCreateCategory" | "servicesGetCategories" | "servicesUpdateCategory" | "servicesDeleteCategory" | "servicesCreateService" | "servicesGetServices" | "servicesGetCurrentMemberShifts" | "servicesGetShifts" | "servicesGetService" | "servicesUpdateService" | "servicesDeleteService" | "servicesCreateResource" | "servicesGetResources" | "servicesUpdateResource" | "servicesDeleteResource" | "servicesCreateBooking" | "servicesGetBookings" | "servicesGetBooking" | "servicesUpdateBookingStatus" | "servicesCompleteBooking" | "servicesCreateShift" | "servicesGetStaffShifts" | "servicesAddBreak" | "servicesRegisterCustomerApp" | "servicesGetUtilization" | "servicesGetPerformance" | "servicesGetFunnel" | "customersProvisionZitadel" | "customersGetCustomers" | "customersRegister" | "customersUpdate" | "customersGetCustomerById" | "customersDelete" | "customersGetAddresses" | "customersAddAddress" | "businessAccountControllerCreate" | "businessAccountControllerGetOne" | "crmControllerCreateRecord" | "crmControllerGetRecord" | "crmControllerUpdateRecord" | "crmControllerCreateNote" | "crmControllerGetRecordNotes" | "crmControllerCreateActivity" | "crmControllerGetTimeline" | "crmControllerCreateObject" | "crmControllerListObjects" | "crmControllerCreateField" | "crmControllerListFields" | "crmControllerCreateRelationship" | "crmControllerListRelationships" | "crmControllerCreateAssociation" | "crmControllerListRecordAssociations" | "loyaltyRedeemReward" | "loyaltyGetCustomerStatus" | "loyaltyValidateVoucher" | "ordersCreateOrder" | "ordersGetOrders" | "ordersUpdateStatus" | "ordersRequestB2BQuote" | "ordersConvertQuoteToOrder" | "paymentsControllerHandleStkCallback" | "pOSProvision" | "pOSLogin" | "pOSGetMe" | "pOSProcessSale" | "pOSSync" | "pOSGetTransactions" | "pOSRegisterPettyCash" | "pOSGetPettyCashFunds" | "pOSGetPettyCashTransactions" | "membersControllerGetMembers" | "membersControllerCreateMember" | "membersControllerGetMember" | "membersControllerUpdateMember" | "membersControllerDeleteMember" | "membersControllerGetMemberActivity" | "membersControllerUpdateStatus" | "membersControllerAdminCheckOut" | "invitationsList" | "invitationsCreate" | "invitationsRevoke" | "invitationsAccept" | "roleManagementControllerGetCustomRoles" | "roleManagementControllerCreateCustomRole" | "roleManagementControllerUpdateCustomRole" | "roleManagementControllerDeleteCustomRole" | "roleManagementControllerGetPermissionSets" | "roleManagementControllerCreatePermissionSet" | "roleManagementControllerGetRoleGroups" | "roleManagementControllerCreateRoleGroup" | "roleManagementControllerAssignRoles" | "roleManagementControllerRemoveRoles" | "departmentsList" | "departmentsCreate" | "departmentsGet" | "departmentsUpdate" | "departmentsDelete" | "departmentsAddMember" | "departmentsRemoveMember" | "attendanceControllerGetLogs" | "attendanceControllerCheckIn" | "attendanceControllerCheckOut" | "attendanceControllerGetMyStatus" | "attendanceControllerGetStatus" | "announcementControllerBroadcastAnnouncement" | "cartControllerGetCart" | "cartControllerClearCart" | "cartControllerAddToCart" | "cartControllerRemoveFromCart" | "favoritesControllerGetFavorites" | "favoritesControllerAddFavorite" | "favoritesControllerRemoveFavorite" | "stockingGetPurchases" | "stockingCreatePurchase" | "stockingReceivePurchase" | "stockingGetTransfers" | "stockingCreateTransfer" | "stockingShipTransfer" | "stockingReceiveTransfer" | "stockingGetRequests" | "stockingGetPendingDispatch" | "stockingDispatchOrders" | "stockingGetActiveDeliveries" | "stockingReconcilePod" | "stockingGetPhysicalReconciliations" | "stockingSubmitPhysicalReconciliation" | "stockingGetReconciliationReport" | "stockingGetPartners" | "stockingCreatePartner" | "stockingGetPartner" | "stockingUpdatePartner" | "stockingAdjustPartnerWallet" | "b2BGetCatalog" | "b2BGetInvoices" | "b2BGetOrders" | "b2BCreateOrder" | "b2BCreateQuote" | "crmIntegrationsGetAuthUrl" | "crmIntegrationsHandleCallback" | "crmIntegrationsHandleWebhook" | "crmIntegrationsReplyToActivity" | "unitsGetUnits" | "strapiCreateConnection" | "strapiListConnections" | "strapiGetConnection" | "strapiUpdateConnection" | "strapiDeleteConnection" | "strapiTriggerSync" | "strapiEnqueueSync" | "strapiGetWebhookLogs" | "strapiGetSyncLogs" | "strapiExchangeCustomerToken" | "strapiRegisterCustomer" | "analyticsControllerGetDashboardAnalytics" | "analyticsControllerGetResourceUtilization";
4601
+ declare const methodsWithOrgSlugSet: Set<string>;
4602
+ type OmitOrgSlug<MethodName extends keyof RawAPI, T> = MethodName extends MethodsWithOrgSlug ? (T extends (orgSlug: string, ...args: infer A) => infer R ? (...args: A) => R : T) : T;
4603
+ type SDKModule<Mapping> = {
4604
+ [K in keyof Mapping]: Mapping[K] extends keyof RawAPI ? OmitOrgSlug<Mapping[K], RawAPI[Mapping[K]]> : never;
4605
+ };
4606
+ declare const catalogMapping: {
4607
+ readonly getProducts: "catalogGetProducts";
4608
+ readonly createProduct: "catalogCreateProduct";
4609
+ readonly getServices: "catalogGetServices";
4610
+ readonly updateProduct: "catalogUpdateProduct";
4611
+ readonly updateSupplierVariant: "catalogUpdateSupplierVariant";
4612
+ readonly getPriceChangeRequests: "catalogGetPriceChangeRequests";
4613
+ readonly reviewPriceChangeRequest: "catalogReviewPriceChangeRequest";
4614
+ readonly createServiceCategory: "servicesCreateCategory";
4615
+ readonly getServiceCategories: "servicesGetCategories";
4616
+ readonly updateServiceCategory: "servicesUpdateCategory";
4617
+ readonly deleteServiceCategory: "servicesDeleteCategory";
4618
+ readonly createService: "servicesCreateService";
4619
+ readonly getServicesList: "servicesGetServices";
4620
+ readonly getCurrentMemberShifts: "servicesGetCurrentMemberShifts";
4621
+ readonly getShifts: "servicesGetShifts";
4622
+ readonly getService: "servicesGetService";
4623
+ readonly updateService: "servicesUpdateService";
4624
+ readonly deleteService: "servicesDeleteService";
4625
+ readonly createResource: "servicesCreateResource";
4626
+ readonly getResources: "servicesGetResources";
4627
+ readonly updateResource: "servicesUpdateResource";
4628
+ readonly deleteResource: "servicesDeleteResource";
4629
+ readonly createBooking: "servicesCreateBooking";
4630
+ readonly getBookings: "servicesGetBookings";
4631
+ readonly getBooking: "servicesGetBooking";
4632
+ readonly updateBookingStatus: "servicesUpdateBookingStatus";
4633
+ readonly completeBooking: "servicesCompleteBooking";
4634
+ readonly createShift: "servicesCreateShift";
4635
+ readonly getStaffShifts: "servicesGetStaffShifts";
4636
+ readonly addBreak: "servicesAddBreak";
4637
+ readonly registerCustomerApp: "servicesRegisterCustomerApp";
4638
+ readonly getServiceUtilization: "servicesGetUtilization";
4639
+ readonly getServicePerformance: "servicesGetPerformance";
4640
+ readonly getServiceFunnel: "servicesGetFunnel";
4641
+ };
4642
+ declare const authMapping: {
4643
+ readonly exchangeToken: "authExchangeToken";
4644
+ readonly handleOAuth2: "authControllerHandleOAuth2";
4645
+ };
4646
+ declare const inventoryMapping: {
4647
+ readonly verifyIntegrity: "inventoryVerifyIntegrity";
4648
+ readonly fixIntegrity: "inventoryFixIntegrity";
4649
+ readonly getInventory: "inventoryGetInventory";
4650
+ readonly traceBatch: "inventoryTraceBatch";
4651
+ readonly splitBatch: "inventorySplitBatch";
4652
+ readonly mergeBatches: "inventoryMergeBatches";
4653
+ readonly createAssembly: "inventoryCreateAssembly";
4654
+ readonly completeAssembly: "inventoryCompleteAssembly";
4655
+ readonly requestAdjustment: "inventoryRequestAdjustment";
4656
+ readonly getAdjustments: "inventoryGetAdjustments";
4657
+ readonly approveAdjustment: "inventoryApproveAdjustment";
4658
+ readonly rejectAdjustment: "inventoryRejectAdjustment";
4659
+ readonly getLeadTime: "inventoryGetLeadTime";
4660
+ readonly getWasteAnalysis: "inventoryGetWasteAnalysis";
4661
+ readonly checkB2BAvailability: "inventoryCheckB2BAvailability";
4662
+ readonly unpackBatch: "inventoryUnpackBatch";
4663
+ readonly scanUnpackBatch: "inventoryScanUnpackBatch";
4664
+ readonly quickStockInquiry: "inventoryQuickStockInquiry";
4665
+ readonly getPurchases: "stockingGetPurchases";
4666
+ readonly createPurchase: "stockingCreatePurchase";
4667
+ readonly receivePurchase: "stockingReceivePurchase";
4668
+ readonly getTransfers: "stockingGetTransfers";
4669
+ readonly createTransfer: "stockingCreateTransfer";
4670
+ readonly shipTransfer: "stockingShipTransfer";
4671
+ readonly receiveTransfer: "stockingReceiveTransfer";
4672
+ readonly getRequests: "stockingGetRequests";
4673
+ readonly getPendingDispatch: "stockingGetPendingDispatch";
4674
+ readonly dispatchOrders: "stockingDispatchOrders";
4675
+ readonly getActiveDeliveries: "stockingGetActiveDeliveries";
4676
+ readonly reconcilePod: "stockingReconcilePod";
4677
+ readonly getPhysicalReconciliations: "stockingGetPhysicalReconciliations";
4678
+ readonly submitPhysicalReconciliation: "stockingSubmitPhysicalReconciliation";
4679
+ readonly getReconciliationReport: "stockingGetReconciliationReport";
4680
+ readonly getPartners: "stockingGetPartners";
4681
+ readonly createPartner: "stockingCreatePartner";
4682
+ readonly getPartner: "stockingGetPartner";
4683
+ readonly updatePartner: "stockingUpdatePartner";
4684
+ readonly adjustPartnerWallet: "stockingAdjustPartnerWallet";
4685
+ readonly getUnits: "unitsGetUnits";
4686
+ };
4687
+ declare const ordersMapping: {
4688
+ readonly createOrder: "ordersCreateOrder";
4689
+ readonly getOrders: "ordersGetOrders";
4690
+ readonly updateStatus: "ordersUpdateStatus";
4691
+ readonly requestB2BQuote: "ordersRequestB2BQuote";
4692
+ readonly convertQuoteToOrder: "ordersConvertQuoteToOrder";
4693
+ readonly getB2BCatalog: "b2BGetCatalog";
4694
+ readonly getB2BInvoices: "b2BGetInvoices";
4695
+ readonly getB2BOrders: "b2BGetOrders";
4696
+ readonly createB2BOrder: "b2BCreateOrder";
4697
+ readonly createB2BQuote: "b2BCreateQuote";
4698
+ readonly getCart: "cartControllerGetCart";
4699
+ readonly clearCart: "cartControllerClearCart";
4700
+ readonly addToCart: "cartControllerAddToCart";
4701
+ readonly removeFromCart: "cartControllerRemoveFromCart";
4702
+ readonly handleStkCallback: "paymentsControllerHandleStkCallback";
4703
+ };
4704
+ declare const crmMapping: {
4705
+ readonly createRecord: "crmControllerCreateRecord";
4706
+ readonly getRecord: "crmControllerGetRecord";
4707
+ readonly updateRecord: "crmControllerUpdateRecord";
4708
+ readonly createNote: "crmControllerCreateNote";
4709
+ readonly getRecordNotes: "crmControllerGetRecordNotes";
4710
+ readonly createActivity: "crmControllerCreateActivity";
4711
+ readonly getTimeline: "crmControllerGetTimeline";
4712
+ readonly createObject: "crmControllerCreateObject";
4713
+ readonly listObjects: "crmControllerListObjects";
4714
+ readonly createField: "crmControllerCreateField";
4715
+ readonly listFields: "crmControllerListFields";
4716
+ readonly createRelationship: "crmControllerCreateRelationship";
4717
+ readonly listRelationships: "crmControllerListRelationships";
4718
+ readonly createAssociation: "crmControllerCreateAssociation";
4719
+ readonly listRecordAssociations: "crmControllerListRecordAssociations";
4720
+ readonly getIntegrationsAuthUrl: "crmIntegrationsGetAuthUrl";
4721
+ readonly handleIntegrationsCallback: "crmIntegrationsHandleCallback";
4722
+ readonly handleIntegrationsWebhook: "crmIntegrationsHandleWebhook";
4723
+ readonly replyToIntegrationsActivity: "crmIntegrationsReplyToActivity";
4724
+ readonly createStrapiConnection: "strapiCreateConnection";
4725
+ readonly listStrapiConnections: "strapiListConnections";
4726
+ readonly getStrapiConnection: "strapiGetConnection";
4727
+ readonly updateStrapiConnection: "strapiUpdateConnection";
4728
+ readonly deleteStrapiConnection: "strapiDeleteConnection";
4729
+ readonly triggerStrapiSync: "strapiTriggerSync";
4730
+ readonly enqueueStrapiSync: "strapiEnqueueSync";
4731
+ readonly getStrapiWebhookLogs: "strapiGetWebhookLogs";
4732
+ readonly getStrapiSyncLogs: "strapiGetSyncLogs";
4733
+ readonly exchangeStrapiCustomerToken: "strapiExchangeCustomerToken";
4734
+ readonly registerStrapiCustomer: "strapiRegisterCustomer";
4735
+ readonly receiveStrapiWebhook: "strapiReceiveWebhook";
4736
+ };
4737
+ declare const posMapping: {
4738
+ readonly provision: "pOSProvision";
4739
+ readonly login: "pOSLogin";
4740
+ readonly getMe: "pOSGetMe";
4741
+ readonly processSale: "pOSProcessSale";
4742
+ readonly sync: "pOSSync";
4743
+ readonly getTransactions: "pOSGetTransactions";
4744
+ readonly registerPettyCash: "pOSRegisterPettyCash";
4745
+ readonly getPettyCashFunds: "pOSGetPettyCashFunds";
4746
+ readonly getPettyCashTransactions: "pOSGetPettyCashTransactions";
4747
+ readonly createSetupKey: "standalonePosControllerCreateSetupKey";
4748
+ readonly activateDevice: "standalonePosControllerActivateDevice";
4749
+ readonly validateKey: "standalonePosControllerValidateKey";
4750
+ readonly linkOrganization: "standalonePosControllerLinkOrganization";
4751
+ };
4752
+ declare const accountingMapping: {
4753
+ readonly createExpense: "expenseControllerCreateExpense";
4754
+ readonly getExpenses: "expenseControllerGetExpenses";
4755
+ readonly getExpenseCategories: "expenseControllerGetExpenseCategories";
4756
+ readonly getExpense: "expenseControllerGetExpense";
4757
+ readonly createPettyCashFund: "pettyCashControllerCreateFund";
4758
+ readonly getPettyCashFunds: "pettyCashControllerGetFunds";
4759
+ readonly getPettyCashFund: "pettyCashControllerGetFund";
4760
+ readonly topUpPettyCashFund: "pettyCashControllerTopUpFund";
4761
+ readonly getPettyCashFundTransactions: "pettyCashControllerGetFundTransactions";
4762
+ readonly createUtilityAccount: "utilityAccountControllerCreateAccount";
4763
+ readonly getUtilityAccounts: "utilityAccountControllerGetAccounts";
4764
+ readonly getUtilityAccount: "utilityAccountControllerGetAccount";
4765
+ readonly initialize: "accountingInitialize";
4766
+ readonly getProfitLoss: "accountingGetProfitLoss";
4767
+ readonly getBalanceSheet: "accountingGetBalanceSheet";
4768
+ readonly getCashFlow: "accountingGetCashFlow";
4769
+ readonly getTaxSummary: "accountingGetTaxSummary";
4770
+ readonly createInvoice: "invoiceControllerCreateInvoice";
4771
+ readonly getInvoices: "invoiceControllerGetInvoices";
4772
+ readonly getInvoice: "invoiceControllerGetInvoice";
4773
+ readonly updateInvoice: "invoiceControllerUpdateInvoice";
4774
+ readonly deleteInvoice: "invoiceControllerDeleteInvoice";
4775
+ readonly finalizeInvoice: "invoiceControllerFinalizeInvoice";
4776
+ readonly getTemplates: "invoiceControllerGetTemplates";
4777
+ readonly createTemplate: "invoiceControllerCreateTemplate";
4778
+ readonly getInvoiceConfig: "invoiceControllerGetConfig";
4779
+ readonly updateInvoiceConfig: "invoiceControllerUpdateConfig";
4780
+ readonly downloadInvoice: "publicInvoiceControllerDownloadInvoice";
4781
+ readonly downloadInvoiceByTransaction: "publicInvoiceControllerDownloadInvoiceByTransaction";
4782
+ readonly downloadReceipt: "publicInvoiceControllerDownloadReceipt";
4783
+ readonly generatePublicLink: "publicInvoiceControllerGeneratePublicLink";
4784
+ };
4785
+ declare const loyaltyMapping: {
4786
+ readonly redeemReward: "loyaltyRedeemReward";
4787
+ readonly getCustomerStatus: "loyaltyGetCustomerStatus";
4788
+ readonly validateVoucher: "loyaltyValidateVoucher";
4789
+ readonly getFavorites: "favoritesControllerGetFavorites";
4790
+ readonly addFavorite: "favoritesControllerAddFavorite";
4791
+ readonly removeFavorite: "favoritesControllerRemoveFavorite";
4792
+ };
4793
+ declare const membersMapping: {
4794
+ readonly getMembers: "membersControllerGetMembers";
4795
+ readonly createMember: "membersControllerCreateMember";
4796
+ readonly getMember: "membersControllerGetMember";
4797
+ readonly updateMember: "membersControllerUpdateMember";
4798
+ readonly deleteMember: "membersControllerDeleteMember";
4799
+ readonly getMemberActivity: "membersControllerGetMemberActivity";
4800
+ readonly updateStatus: "membersControllerUpdateStatus";
4801
+ readonly adminCheckOut: "membersControllerAdminCheckOut";
4802
+ readonly terminalLogin: "terminalMembersControllerLogin";
4803
+ readonly listInvitations: "invitationsList";
4804
+ readonly createInvitation: "invitationsCreate";
4805
+ readonly revokeInvitation: "invitationsRevoke";
4806
+ readonly acceptInvitation: "invitationsAccept";
4807
+ readonly getCustomRoles: "roleManagementControllerGetCustomRoles";
4808
+ readonly createCustomRole: "roleManagementControllerCreateCustomRole";
4809
+ readonly updateCustomRole: "roleManagementControllerUpdateCustomRole";
4810
+ readonly deleteCustomRole: "roleManagementControllerDeleteCustomRole";
4811
+ readonly getPermissionSets: "roleManagementControllerGetPermissionSets";
4812
+ readonly createPermissionSet: "roleManagementControllerCreatePermissionSet";
4813
+ readonly getRoleGroups: "roleManagementControllerGetRoleGroups";
4814
+ readonly createRoleGroup: "roleManagementControllerCreateRoleGroup";
4815
+ readonly assignRoles: "roleManagementControllerAssignRoles";
4816
+ readonly removeRoles: "roleManagementControllerRemoveRoles";
4817
+ readonly listDepartments: "departmentsList";
4818
+ readonly createDepartment: "departmentsCreate";
4819
+ readonly getDepartment: "departmentsGet";
4820
+ readonly updateDepartment: "departmentsUpdate";
4821
+ readonly deleteDepartment: "departmentsDelete";
4822
+ readonly addDepartmentMember: "departmentsAddMember";
4823
+ readonly removeDepartmentMember: "departmentsRemoveMember";
4824
+ readonly getAttendanceLogs: "attendanceControllerGetLogs";
4825
+ readonly checkIn: "attendanceControllerCheckIn";
4826
+ readonly checkOut: "attendanceControllerCheckOut";
4827
+ readonly getMyAttendanceStatus: "attendanceControllerGetMyStatus";
4828
+ readonly getAttendanceStatus: "attendanceControllerGetStatus";
4829
+ readonly broadcastAnnouncement: "announcementControllerBroadcastAnnouncement";
4830
+ };
4831
+ declare const adminMapping: {
4832
+ readonly getStats: "adminControllerGetStats";
4833
+ readonly listOrganizations: "adminControllerListOrganizations";
4834
+ readonly createOrganization: "adminControllerCreateOrganization";
4835
+ readonly getOrganizationDetails: "adminControllerGetOrganizationDetails";
4836
+ readonly updateOrganization: "adminControllerUpdateOrganization";
4837
+ readonly deleteOrganization: "adminControllerDeleteOrganization";
4838
+ readonly listMembers: "adminControllerListMembers";
4839
+ readonly listUsers: "adminControllerListUsers";
4840
+ readonly banUser: "adminControllerBanUser";
4841
+ readonly unbanUser: "adminControllerUnbanUser";
4842
+ readonly listConnectedApps: "adminControllerListConnectedApps";
4843
+ readonly listSystemLogs: "adminControllerListSystemLogs";
4844
+ readonly listGlobalSettings: "adminControllerListGlobalSettings";
4845
+ readonly setGlobalSetting: "adminControllerSetGlobalSetting";
4846
+ readonly deleteGlobalSetting: "adminControllerDeleteGlobalSetting";
4847
+ readonly listTiers: "adminControllerListTiers";
4848
+ readonly defineTier: "adminControllerDefineTier";
4849
+ readonly deleteTier: "adminControllerDeleteTier";
4850
+ readonly getOrganizationSubscription: "adminControllerGetOrganizationSubscription";
4851
+ readonly updateOrganizationSubscription: "adminControllerUpdateOrganizationSubscription";
4852
+ readonly listSystemPayments: "adminControllerListSystemPayments";
4853
+ readonly recordCustomPayment: "adminControllerRecordCustomPayment";
4854
+ readonly listIntegrationDefinitions: "adminControllerListIntegrationDefinitions";
4855
+ readonly createIntegrationDefinition: "adminControllerCreateIntegrationDefinition";
4856
+ readonly updateIntegrationDefinition: "adminControllerUpdateIntegrationDefinition";
4857
+ readonly deleteIntegrationDefinition: "adminControllerDeleteIntegrationDefinition";
4858
+ readonly listActiveOrganizationIntegrations: "adminControllerListActiveOrganizationIntegrations";
4859
+ readonly createWebhook: "webhooksCreate";
4860
+ readonly listWebhooks: "webhooksList";
4861
+ readonly deleteWebhook: "webhooksDelete";
4862
+ readonly handleWindmillCallback: "windmillCallbackControllerHandleCallback";
4863
+ readonly handleWindmillApprovalCallback: "windmillCallbackControllerHandleApprovalCallback";
4864
+ readonly handleWindmillBakeryDisposalCallback: "windmillCallbackControllerHandleBakeryDisposalCallback";
4865
+ readonly handleWindmillOutcomeCallback: "windmillCallbackControllerHandleOutcomeCallback";
4866
+ readonly provisionZitadel: "customersProvisionZitadel";
4867
+ readonly getCustomers: "customersGetCustomers";
4868
+ readonly registerCustomer: "customersRegister";
4869
+ readonly updateCustomer: "customersUpdate";
4870
+ readonly getCustomerById: "customersGetCustomerById";
4871
+ readonly deleteCustomer: "customersDelete";
4872
+ readonly getCustomerAddresses: "customersGetAddresses";
4873
+ readonly addCustomerAddress: "customersAddAddress";
4874
+ readonly createBusinessAccount: "businessAccountControllerCreate";
4875
+ readonly getBusinessAccount: "businessAccountControllerGetOne";
4876
+ readonly getDashboardAnalytics: "analyticsControllerGetDashboardAnalytics";
4877
+ readonly getResourceUtilization: "analyticsControllerGetResourceUtilization";
4878
+ };
4879
+ type CatalogModule = SDKModule<typeof catalogMapping>;
4880
+ type AuthModule = SDKModule<typeof authMapping>;
4881
+ type InventoryModule = SDKModule<typeof inventoryMapping>;
4882
+ type OrdersModule = SDKModule<typeof ordersMapping>;
4883
+ type CRMModule = SDKModule<typeof crmMapping>;
4884
+ type POSModule = SDKModule<typeof posMapping>;
4885
+ type AccountingModule = SDKModule<typeof accountingMapping>;
4886
+ type LoyaltyModule = SDKModule<typeof loyaltyMapping>;
4887
+ type MembersModule = SDKModule<typeof membersMapping>;
4888
+ type AdminModule = SDKModule<typeof adminMapping>;
4889
+ declare function buildModule<Mapping extends Record<string, keyof RawAPI>>(api: RawAPI, orgSlug: string, mapping: Mapping): SDKModule<Mapping>;
4890
+ declare function getJwtExpiry(token: string): number | null;
4891
+
4892
+ export { type CreateBookingDto as $, type AccountingGetProfitLossParams as A, type BanUserDto as B, type CheckB2BAvailabilityDto as C, type DefineTierDto as D, type ExpenseControllerGetExpensesParams as E, type ProductResponseDto as F, type CreateProductDto as G, type CatalogGetServicesParams as H, type InventoryFixIntegrityParams as I, type ServiceCatalogResponseDto as J, type UpdateProductDto as K, type UpdateSupplierProductDto as L, type CatalogGetPriceChangeRequestsParams as M, type ReviewPriceChangeDto as N, type CreateServiceCategoryDto as O, type PublicInvoiceControllerDownloadInvoiceParams as P, type UpdateServiceCategoryDto as Q, type RecordCustomPaymentDto as R, type SetGlobalSettingDto as S, type TopUpPettyCashFundDto as T, type UpdateInvoiceDto as U, type CreateServiceDto as V, type WebhookResponseDto as W, type ServicesGetShiftsParams as X, type UpdateServiceDto as Y, type CreateServiceResourceDto as Z, type UpdateServiceResourceDto as _, type InventoryGetInventoryParams as a, type AnnouncementDto as a$, type ServicesUpdateBookingStatusBody as a0, type CompleteBookingDto as a1, type ServicesCreateShiftBody as a2, type ServicesAddBreakBody as a3, type ServicesRegisterCustomerAppBody as a4, type ServicesGetUtilizationParams as a5, type ServicesGetPerformanceParams as a6, type ServicesGetFunnelParams as a7, type ProvisionZitadelDto as a8, type CustomersGetCustomersParams as a9, type PosLoginResponseDto as aA, type ProcessSaleDto as aB, type RegisterPettyCashDto as aC, type POSGetPettyCashTransactionsParams as aD, type MembersControllerGetMembersParams as aE, type MemberResponseDto as aF, type CreateMemberDto as aG, type UpdateMemberDto as aH, type CheckOutDto as aI, type TerminalLoginDto as aJ, type TerminalLoginResponseDto as aK, type InvitationsListParams as aL, type InvitationResponseDto as aM, type CreateInvitationDto as aN, type AcceptInvitationDto as aO, type RoleManagementControllerGetCustomRolesParams as aP, type CreateCustomRoleDto as aQ, type UpdateCustomRoleDto as aR, type CreatePermissionSetDto as aS, type CreateRoleGroupDto as aT, type DepartmentsListParams as aU, type DepartmentResponseDto as aV, type CreateDepartmentDto as aW, type UpdateDepartmentDto as aX, type AddDepartmentMemberDto as aY, type AttendanceControllerGetLogsParams as aZ, type CheckInDto as a_, type CustomerResponseDto as aa, type RegisterCustomerDto as ab, type UpdateCustomerDto as ac, type AddressDto as ad, type CreateBusinessAccountDto as ae, type CreateCrmRecordDto as af, type CrmRecordResponseDto as ag, type UpdateCrmRecordDto as ah, type CreateCrmNoteDto as ai, type CrmNoteResponseDto as aj, type CreateCrmActivityDto as ak, type CreateCrmObjectDto as al, type CreateCrmFieldDto as am, type CreateCrmRelationshipDto as an, type CreateCrmAssociationDto as ao, type RedeemRewardDto as ap, type LoyaltyStatusResponseDto as aq, type ValidateVoucherDto as ar, type CreateOrderDto as as, type OrderResponseDto as at, type OrdersGetOrdersParams as au, type UpdateOrderStatusDto as av, type RequestB2BQuoteDto as aw, type ProvisionDeviceDto as ax, type ProvisionResponseDto as ay, type PosLoginDto as az, type InventoryResponseDto as b, type AdminControllerListSystemLogsResult as b$, type CartControllerGetCartParams as b0, type CartResponseDto as b1, type CartControllerClearCartParams as b2, type AddToCartDto as b3, type RemoveFromCartDto as b4, type FavoriteResponseDto as b5, type FavoriteDto as b6, type StockingGetPurchasesParams as b7, type CreatePurchaseDto as b8, type ReceivePurchaseDto as b9, type TriggerSyncDto as bA, type AnalyticsControllerGetResourceUtilizationParams as bB, type AccountingGetBalanceSheetResult as bC, type AccountingGetCashFlowResult as bD, type AccountingGetProfitLossResult as bE, type AccountingGetTaxSummaryResult as bF, type AccountingInitializeResult as bG, type AccountingModule as bH, AddDepartmentMemberDtoRole as bI, type AddToCartDtoBookingDetails as bJ, type AdminControllerBanUserResult as bK, type AdminControllerCreateIntegrationDefinitionResult as bL, type AdminControllerCreateOrganizationResult as bM, type AdminControllerDefineTierResult as bN, type AdminControllerDeleteGlobalSettingResult as bO, type AdminControllerDeleteIntegrationDefinitionResult as bP, type AdminControllerDeleteOrganizationResult as bQ, type AdminControllerDeleteTierResult as bR, type AdminControllerGetOrganizationDetailsResult as bS, type AdminControllerGetOrganizationSubscriptionResult as bT, type AdminControllerGetStatsResult as bU, type AdminControllerListActiveOrganizationIntegrationsResult as bV, type AdminControllerListConnectedAppsResult as bW, type AdminControllerListGlobalSettingsResult as bX, type AdminControllerListIntegrationDefinitionsResult as bY, type AdminControllerListMembersResult as bZ, type AdminControllerListOrganizationsResult as b_, type StockingGetTransfersParams as ba, type CreateTransferDto as bb, type ShipTransferDto as bc, type ReceiveTransferDto as bd, type StockingGetRequestsParams as be, type StockingGetPendingDispatchParams as bf, type DispatchOrderDto as bg, type StockingGetActiveDeliveriesParams as bh, type ReconcilePodDto as bi, type StockingGetPhysicalReconciliationsParams as bj, type SubmitReconciliationDto as bk, type CreatePartnerDto as bl, type UpdatePartnerDto as bm, type PartnerWalletActionDto as bn, type CreateSetupKeyDto as bo, type ActivateDeviceDto as bp, type LinkOrganizationDto as bq, type B2BGetCatalogParams as br, type PaginatedB2BCatalogDto as bs, type CreateB2BOrderDto as bt, type B2BOrderResponseDto as bu, type CrmIntegrationsHandleCallbackParams as bv, type UnitsGetUnitsParams as bw, type CreateStrapiConnectionDto as bx, type StrapiConnectionResponseDto as by, type UpdateStrapiConnectionDto as bz, type InventoryGetAdjustmentsParams as c, CreateExpenseDtoPaymentMethod as c$, type AdminControllerListSystemPaymentsResult as c0, type AdminControllerListTiersResult as c1, type AdminControllerListUsersResult as c2, type AdminControllerRecordCustomPaymentResult as c3, type AdminControllerSetGlobalSettingResult as c4, type AdminControllerUnbanUserResult as c5, type AdminControllerUpdateIntegrationDefinitionResult as c6, type AdminControllerUpdateOrganizationResult as c7, type AdminControllerUpdateOrganizationSubscriptionResult as c8, type AdminModule as c9, type BusinessAccountControllerGetOneResult as cA, type CRMModule as cB, type CartControllerAddToCartResult as cC, type CartControllerClearCartResult as cD, type CartControllerGetCartResult as cE, type CartControllerRemoveFromCartResult as cF, type CartItemDto as cG, type CartItemDtoBookingDetails as cH, type CatalogCreateProductResult as cI, type CatalogGetPriceChangeRequestsResult as cJ, type CatalogGetProductsResult as cK, type CatalogGetServicesResult as cL, type CatalogModule as cM, type CatalogReviewPriceChangeRequestResult as cN, type CatalogUpdateProductResult as cO, type CatalogUpdateSupplierVariantResult as cP, type CmsCustomFieldsDto as cQ, type CmsCustomFieldsDtoArchivedAt as cR, type CmsCustomFieldsDtoCustomAttributes as cS, CmsCustomFieldsDtoPublishStatus as cT, type CmsCustomFieldsDtoPublishedAt as cU, type CreateBookingDtoCustomFields as cV, type CreateCrmActivityDtoMetadata as cW, CreateCrmFieldDtoType as cX, type CreateCrmRecordDtoData as cY, CreateCrmRelationshipDtoType as cZ, type CreateDepartmentDtoSettings as c_, type AnalyticsControllerGetDashboardAnalyticsResult as ca, type AnalyticsControllerGetResourceUtilizationResult as cb, type AnnouncementControllerBroadcastAnnouncementResult as cc, type AttendanceControllerCheckInResult as cd, type AttendanceControllerCheckOutResult as ce, type AttendanceControllerGetLogsResult as cf, AttendanceControllerGetLogsSortOrder as cg, type AttendanceControllerGetMyStatusResult as ch, type AttendanceControllerGetStatusResult as ci, type AuthControllerHandleOAuth2Result as cj, type AuthExchangeToken201Meta as ck, type AuthExchangeTokenResult as cl, type AuthModule as cm, type B2BCatalogProductDto as cn, type B2BCreateOrderResult as co, type B2BCreateQuoteResult as cp, type B2BGetCatalogResult as cq, type B2BGetInvoicesResult as cr, type B2BGetOrdersResult as cs, type B2BOrderItemDto as ct, type B2BQuoteItemDto as cu, type B2BVariantDto as cv, type B2BVariantStockDto as cw, type BatchReceiptDto as cx, type BatchReceiptDtoQcResults as cy, type BusinessAccountControllerCreateResult as cz, type InventoryGetLeadTimeParams as d, type FavoritesControllerRemoveFavoriteResult as d$, CreateIntegrationDefinitionDtoAuthType as d0, CreateIntegrationDefinitionDtoCategory as d1, CreateInvitationDtoRole as d2, CreateMemberDtoRole as d3, CreateOrderDtoChannel as d4, CreatePartnerDtoBenefitType as d5, CreatePartnerDtoReconciliationPolicy as d6, type CreatePurchaseItemDto as d7, CreateServiceDtoPricingModel as d8, CreateStrapiConnectionDtoEnabledSyncTypesItem as d9, type CrmRecordResponseDtoData as dA, type CrmRecordResponseDtoOwnerId as dB, type CustomersAddAddressResult as dC, type CustomersDeleteResult as dD, type CustomersGetAddressesResult as dE, type CustomersGetCustomerByIdResult as dF, type CustomersGetCustomersResult as dG, type CustomersProvisionZitadelResult as dH, type CustomersRegisterResult as dI, type CustomersUpdateResult as dJ, type DefineTierDtoLimits as dK, type DepartmentsAddMemberResult as dL, type DepartmentsCreateResult as dM, type DepartmentsDeleteResult as dN, type DepartmentsGetResult as dO, type DepartmentsListResult as dP, DepartmentsListSortOrder as dQ, type DepartmentsRemoveMemberResult as dR, type DepartmentsUpdateResult as dS, type DispatchAddressDto as dT, type ExpenseControllerCreateExpenseResult as dU, type ExpenseControllerGetExpenseCategoriesResult as dV, type ExpenseControllerGetExpenseResult as dW, type ExpenseControllerGetExpensesResult as dX, ExpenseControllerGetExpensesStatus as dY, type FavoritesControllerAddFavoriteResult as dZ, type FavoritesControllerGetFavoritesResult as d_, type CreateStrapiConnectionDtoLocationMap as da, CreateStrapiConnectionDtoSyncDirection as db, CreateTransferDtoPriority as dc, type CreateTransferItemDto as dd, CreateUtilityAccountDtoType as de, type CrmControllerCreateActivityResult as df, type CrmControllerCreateAssociationResult as dg, type CrmControllerCreateFieldResult as dh, type CrmControllerCreateNoteResult as di, type CrmControllerCreateObjectResult as dj, type CrmControllerCreateRecordResult as dk, type CrmControllerCreateRelationshipResult as dl, type CrmControllerGetRecordNotesResult as dm, type CrmControllerGetRecordResult as dn, type CrmControllerGetTimelineResult as dp, type CrmControllerListFieldsResult as dq, type CrmControllerListObjectsResult as dr, type CrmControllerListRecordAssociationsResult as ds, type CrmControllerListRelationshipsResult as dt, type CrmControllerUpdateRecordResult as du, type CrmIntegrationsGetAuthUrlResult as dv, type CrmIntegrationsHandleCallbackResult as dw, type CrmIntegrationsHandleWebhookResult as dx, type CrmIntegrationsReplyToActivityResult as dy, type CrmNoteResponseDtoCreatedById as dz, type InventoryGetWasteAnalysisParams as e, type OrderItemDto as e$, type ImageItemDto as e0, type InventoryApproveAdjustmentResult as e1, type InventoryCheckB2BAvailabilityResult as e2, type InventoryCompleteAssemblyResult as e3, type InventoryCreateAssemblyResult as e4, type InventoryFixIntegrityResult as e5, type InventoryGetAdjustmentsResult as e6, type InventoryGetInventoryResult as e7, type InventoryGetLeadTimeResult as e8, type InventoryGetWasteAnalysisResult as e9, type InvoiceControllerUpdateConfigResult as eA, type InvoiceControllerUpdateInvoiceResult as eB, type LoyaltyGetCustomerStatusResult as eC, type LoyaltyModule as eD, type LoyaltyRedeemRewardResult as eE, type LoyaltyStatusResponseDtoAvailableRewardsItem as eF, type LoyaltyValidateVoucherResult as eG, type ManualBatchSelectionDto as eH, type MemberDepartmentDto as eI, MemberResponseDtoMembershipStatus as eJ, MemberResponseDtoRole as eK, MemberResponseDtoStatus as eL, type MemberRoleDto as eM, type MembersControllerAdminCheckOutResult as eN, type MembersControllerCreateMemberResult as eO, type MembersControllerDeleteMemberResult as eP, type MembersControllerGetMemberActivityResult as eQ, type MembersControllerGetMemberResult as eR, MembersControllerGetMembersMembershipStatus as eS, type MembersControllerGetMembersResult as eT, MembersControllerGetMembersRole as eU, MembersControllerGetMembersSortOrder as eV, type MembersControllerUpdateMemberResult as eW, type MembersControllerUpdateStatusResult as eX, type MembersModule as eY, type MethodsWithOrgSlug as eZ, type OmitOrgSlug as e_, type InventoryMergeBatchesResult as ea, type InventoryModule as eb, type InventoryQuickStockInquiryResult as ec, type InventoryRejectAdjustmentResult as ed, type InventoryRequestAdjustmentResult as ee, type InventoryScanUnpackBatchResult as ef, type InventorySplitBatchResult as eg, type InventoryTraceBatchResult as eh, type InventoryUnpackBatchResult as ei, type InventoryVerifyIntegrityResult as ej, InvitationResponseDtoRole as ek, InvitationResponseDtoStatus as el, type InvitationsAcceptResult as em, type InvitationsCreateResult as en, type InvitationsListResult as eo, InvitationsListSortOrder as ep, InvitationsListStatus as eq, type InvitationsRevokeResult as er, type InvoiceControllerCreateInvoiceResult as es, type InvoiceControllerCreateTemplateResult as et, type InvoiceControllerDeleteInvoiceResult as eu, type InvoiceControllerFinalizeInvoiceResult as ev, type InvoiceControllerGetConfigResult as ew, type InvoiceControllerGetInvoiceResult as ex, type InvoiceControllerGetInvoicesResult as ey, type InvoiceControllerGetTemplatesResult as ez, type CreateExpenseDto as f, type ServicesAddBreakResult as f$, type OrdersConvertQuoteToOrderResult as f0, type OrdersCreateOrderResult as f1, type OrdersGetOrdersResult as f2, type OrdersModule as f3, type OrdersRequestB2BQuoteResult as f4, type OrdersUpdateStatusResult as f5, type POSGetMeResult as f6, type POSGetPettyCashFundsResult as f7, type POSGetPettyCashTransactionsResult as f8, type POSGetTransactionsResult as f9, ReconcilePodDtoOutcome as fA, type ReconciliationItemDto as fB, type RegisterCustomerDtoMetadata as fC, RegisterPettyCashDtoPaymentMethod as fD, ReviewPriceChangeDtoStatus as fE, type RoleManagementControllerAssignRolesResult as fF, type RoleManagementControllerCreateCustomRoleResult as fG, type RoleManagementControllerCreatePermissionSetResult as fH, type RoleManagementControllerCreateRoleGroupResult as fI, type RoleManagementControllerDeleteCustomRoleResult as fJ, type RoleManagementControllerGetCustomRolesResult as fK, RoleManagementControllerGetCustomRolesSortOrder as fL, type RoleManagementControllerGetPermissionSetsResult as fM, type RoleManagementControllerGetRoleGroupsResult as fN, type RoleManagementControllerRemoveRolesResult as fO, type RoleManagementControllerUpdateCustomRoleResult as fP, type SDKModule as fQ, type SaleItemDto as fR, type SalePaymentDto as fS, type SaleServiceItemDto as fT, type SeoMetadataDto as fU, type ServiceBookingItemDto as fV, type ServiceCatalogResponseDtoDescription as fW, type ServiceCatalogResponseDtoEstimatedDuration as fX, type ServiceCatalogResponseDtoSlug as fY, type ServiceCategoryResponseDto as fZ, type ServiceMaterialDto as f_, type POSLoginResult as fa, type POSModule as fb, type POSProcessSaleResult as fc, type POSProvisionResult as fd, type POSRegisterPettyCashResult as fe, type POSSyncResult as ff, type PaginationMetaDto as fg, type PaymentsControllerHandleStkCallbackResult as fh, type PettyCashControllerCreateFundResult as fi, type PettyCashControllerGetFundResult as fj, type PettyCashControllerGetFundTransactionsResult as fk, type PettyCashControllerGetFundsResult as fl, type PettyCashControllerTopUpFundResult as fm, type ProductCategoryResponseDto as fn, type ProductResponseDtoDescription as fo, type ProductResponseDtoRetailPrice as fp, type ProductResponseDtoSlug as fq, type ProductVariantResponseDto as fr, type ProductVariantResponseDtoRetailPrice as fs, type PublicInvoiceControllerDownloadInvoiceByTransactionResult as ft, type PublicInvoiceControllerDownloadInvoiceResult as fu, type PublicInvoiceControllerDownloadReceiptResult as fv, type PublicInvoiceControllerGeneratePublicLinkResult as fw, type RawAPI as fx, type ReceivePurchaseItemDto as fy, type ReceiveTransferItemDto as fz, type CreatePettyCashFundDto as g, type StrapiTriggerSyncResult as g$, type ServicesCompleteBookingResult as g0, type ServicesCreateBookingResult as g1, type ServicesCreateCategoryResult as g2, type ServicesCreateResourceResult as g3, type ServicesCreateServiceResult as g4, type ServicesCreateShiftResult as g5, type ServicesDeleteCategoryResult as g6, type ServicesDeleteResourceResult as g7, type ServicesDeleteServiceResult as g8, type ServicesGetBookingResult as g9, type StockingDispatchOrdersResult as gA, type StockingGetActiveDeliveriesResult as gB, type StockingGetPartnerResult as gC, type StockingGetPartnersResult as gD, type StockingGetPendingDispatchResult as gE, type StockingGetPhysicalReconciliationsResult as gF, type StockingGetPurchasesResult as gG, type StockingGetReconciliationReportResult as gH, type StockingGetRequestsResult as gI, type StockingGetTransfersResult as gJ, type StockingReceivePurchaseResult as gK, type StockingReceiveTransferResult as gL, type StockingReconcilePodResult as gM, type StockingShipTransferResult as gN, type StockingSubmitPhysicalReconciliationResult as gO, type StockingUpdatePartnerResult as gP, type StrapiConnectionResponseDtoLocationMap as gQ, type StrapiCreateConnectionResult as gR, type StrapiDeleteConnectionResult as gS, type StrapiEnqueueSyncResult as gT, type StrapiExchangeCustomerTokenResult as gU, type StrapiGetConnectionResult as gV, type StrapiGetSyncLogsResult as gW, type StrapiGetWebhookLogsResult as gX, type StrapiListConnectionsResult as gY, type StrapiReceiveWebhookResult as gZ, type StrapiRegisterCustomerResult as g_, type ServicesGetBookingsResult as ga, type ServicesGetCategoriesResult as gb, type ServicesGetCurrentMemberShiftsResult as gc, type ServicesGetFunnelResult as gd, type ServicesGetPerformanceResult as ge, type ServicesGetResourcesResult as gf, type ServicesGetServiceResult as gg, type ServicesGetServicesResult as gh, type ServicesGetShiftsResult as gi, type ServicesGetStaffShiftsResult as gj, type ServicesGetUtilizationResult as gk, type ServicesRegisterCustomerAppResult as gl, ServicesUpdateBookingStatusBodyStatus as gm, type ServicesUpdateBookingStatusResult as gn, type ServicesUpdateCategoryResult as go, type ServicesUpdateResourceResult as gp, type ServicesUpdateServiceResult as gq, type ShipTransferItemDto as gr, type StandalonePosControllerActivateDeviceResult as gs, type StandalonePosControllerCreateSetupKeyResult as gt, type StandalonePosControllerLinkOrganizationResult as gu, type StandalonePosControllerValidateKeyResult as gv, type StockingAdjustPartnerWalletResult as gw, type StockingCreatePartnerResult as gx, type StockingCreatePurchaseResult as gy, type StockingCreateTransferResult as gz, type CreateUtilityAccountDto as h, type StrapiUpdateConnectionResult as h0, type TerminalMembersControllerLoginResult as h1, type TokenResponseDto as h2, TriggerSyncDtoDirection as h3, TriggerSyncDtoSyncTypesItem as h4, type UnitsGetUnitsResult as h5, type UpdateCrmRecordDtoData as h6, type UpdateCustomerDtoMetadata as h7, type UpdateDepartmentDtoSettings as h8, UpdateIntegrationDefinitionDtoAuthType as h9, crmMapping as hA, getJwtExpiry as hB, inventoryMapping as hC, loyaltyMapping as hD, membersMapping as hE, methodsWithOrgSlugSet as hF, ordersMapping as hG, posMapping as hH, UpdateIntegrationDefinitionDtoCategory as ha, UpdateMemberDtoMembershipStatus as hb, UpdateMemberDtoRole as hc, UpdateMemberDtoStatus as hd, UpdatePartnerDtoBenefitType as he, UpdatePartnerDtoReconciliationPolicy as hf, UpdateServiceDtoPricingModel as hg, UpdateStrapiConnectionDtoEnabledSyncTypesItem as hh, type UpdateStrapiConnectionDtoLocationMap as hi, UpdateStrapiConnectionDtoSyncDirection as hj, type UserSummaryDto as hk, type UtilityAccountControllerCreateAccountResult as hl, type UtilityAccountControllerGetAccountResult as hm, type UtilityAccountControllerGetAccountsResult as hn, type WebhooksCreateResult as ho, type WebhooksDeleteResult as hp, type WebhooksListResult as hq, type WindmillCallbackControllerHandleApprovalCallbackResult as hr, type WindmillCallbackControllerHandleBakeryDisposalCallbackResult as hs, type WindmillCallbackControllerHandleCallbackResult as ht, type WindmillCallbackControllerHandleOutcomeCallbackResult as hu, accountingMapping as hv, adminMapping as hw, authMapping as hx, buildModule as hy, catalogMapping as hz, type AccountingGetBalanceSheetParams as i, type AccountingGetCashFlowParams as j, type AccountingGetTaxSummaryParams as k, type CreateInvoiceDto as l, type InvoiceConfigDto as m, type PublicInvoiceControllerDownloadInvoiceByTransactionParams as n, type PublicInvoiceControllerDownloadReceiptParams as o, type PublicInvoiceControllerGeneratePublicLinkParams as p, type TokenRequestDto as q, type AuthExchangeToken201 as r, type CreateOrganizationDto as s, type UpdateOrganizationDto as t, type AdminControllerListMembersParams as u, type UpdateSubscriptionDto as v, type CreateIntegrationDefinitionDto as w, type UpdateIntegrationDefinitionDto as x, type CreateWebhookDto as y, type CatalogGetProductsParams as z };