@erp-galoper/types 1.0.1913 → 1.0.1915
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/openapi.ts +1590 -285
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -22328,6 +22328,277 @@ export interface paths {
|
|
|
22328
22328
|
patch: operations["event_views_cancel_event"];
|
|
22329
22329
|
trace?: never;
|
|
22330
22330
|
};
|
|
22331
|
+
"/api/v1/maintenance/repair-orders/": {
|
|
22332
|
+
parameters: {
|
|
22333
|
+
query?: never;
|
|
22334
|
+
header?: never;
|
|
22335
|
+
path?: never;
|
|
22336
|
+
cookie?: never;
|
|
22337
|
+
};
|
|
22338
|
+
/**
|
|
22339
|
+
* List Repair Orders
|
|
22340
|
+
* @description Endpoint for listing repair orders.
|
|
22341
|
+
*
|
|
22342
|
+
* Possible Responses:
|
|
22343
|
+
* - 200: RepairOrderListSchema
|
|
22344
|
+
* - 400: invalidFilterFormat, paginationError
|
|
22345
|
+
* - 403: permissionDenied, noModuleAccess, noBranchAccess
|
|
22346
|
+
* - 500: serverError
|
|
22347
|
+
*
|
|
22348
|
+
* Permission key: `repairorder = ['view']`
|
|
22349
|
+
*/
|
|
22350
|
+
get: operations["maintenance_views_list_repair_orders"];
|
|
22351
|
+
put?: never;
|
|
22352
|
+
/**
|
|
22353
|
+
* Create Repair Order
|
|
22354
|
+
* @description Endpoint for creating a repair order.
|
|
22355
|
+
*
|
|
22356
|
+
* Possible Responses:
|
|
22357
|
+
* - 201: RepairOrderDetailSchema
|
|
22358
|
+
* - 400: validation errors
|
|
22359
|
+
* - 403: permissionDenied, noModuleAccess, noBranchAccess
|
|
22360
|
+
* - 500: serverError
|
|
22361
|
+
*
|
|
22362
|
+
* Permission key: `repairorder = ['add']`
|
|
22363
|
+
*/
|
|
22364
|
+
post: operations["maintenance_views_create_repair_order"];
|
|
22365
|
+
delete?: never;
|
|
22366
|
+
options?: never;
|
|
22367
|
+
head?: never;
|
|
22368
|
+
patch?: never;
|
|
22369
|
+
trace?: never;
|
|
22370
|
+
};
|
|
22371
|
+
"/api/v1/maintenance/repair-orders/{id}/": {
|
|
22372
|
+
parameters: {
|
|
22373
|
+
query?: never;
|
|
22374
|
+
header?: never;
|
|
22375
|
+
path?: never;
|
|
22376
|
+
cookie?: never;
|
|
22377
|
+
};
|
|
22378
|
+
/**
|
|
22379
|
+
* Get Repair Order
|
|
22380
|
+
* @description Endpoint for retrieving a repair order.
|
|
22381
|
+
*
|
|
22382
|
+
* Possible Responses:
|
|
22383
|
+
* - 200: RepairOrderDetailSchema
|
|
22384
|
+
* - 403: permissionDenied, noModuleAccess, noBranchAccess
|
|
22385
|
+
* - 404: repairOrderDoesNotExist
|
|
22386
|
+
* - 500: serverError
|
|
22387
|
+
*
|
|
22388
|
+
* Permission key: `repairorder = ['view']`
|
|
22389
|
+
*/
|
|
22390
|
+
get: operations["maintenance_views_get_repair_order"];
|
|
22391
|
+
/**
|
|
22392
|
+
* Update Repair Order
|
|
22393
|
+
* @description Endpoint for fully updating a repair order.
|
|
22394
|
+
*
|
|
22395
|
+
* Possible Responses:
|
|
22396
|
+
* - 200: RepairOrderDetailSchema
|
|
22397
|
+
* - 400: validation errors
|
|
22398
|
+
* - 403: permissionDenied, noModuleAccess, noBranchAccess, repairOrderShouldBeDraft
|
|
22399
|
+
* - 404: repairOrderDoesNotExist
|
|
22400
|
+
* - 500: serverError
|
|
22401
|
+
*
|
|
22402
|
+
* Permission key: `repairorder = ['change']`
|
|
22403
|
+
*/
|
|
22404
|
+
put: operations["maintenance_views_update_repair_order"];
|
|
22405
|
+
post?: never;
|
|
22406
|
+
/**
|
|
22407
|
+
* Delete Repair Order
|
|
22408
|
+
* @description Endpoint for deleting a repair order.
|
|
22409
|
+
*
|
|
22410
|
+
* Canceled repair orders can be deleted. Repair orders linked to a sales invoice cannot be deleted.
|
|
22411
|
+
*
|
|
22412
|
+
* Possible Responses:
|
|
22413
|
+
* - 204: deleted
|
|
22414
|
+
* - 400: cantBeDeleted, cannotModifyPaidRepairOrder
|
|
22415
|
+
* - 403: permissionDenied, noModuleAccess, noBranchAccess
|
|
22416
|
+
* - 404: repairOrderDoesNotExist
|
|
22417
|
+
* - 500: serverError
|
|
22418
|
+
*
|
|
22419
|
+
* Permission key: `repairorder = ['delete']`
|
|
22420
|
+
*/
|
|
22421
|
+
delete: operations["maintenance_views_delete_repair_order"];
|
|
22422
|
+
options?: never;
|
|
22423
|
+
head?: never;
|
|
22424
|
+
/**
|
|
22425
|
+
* Partial Update Repair Order
|
|
22426
|
+
* @description Endpoint for partially updating a repair order.
|
|
22427
|
+
*
|
|
22428
|
+
* Possible Responses:
|
|
22429
|
+
* - 200: RepairOrderDetailSchema
|
|
22430
|
+
* - 400: validation errors, noChangesDetected
|
|
22431
|
+
* - 403: permissionDenied, noModuleAccess, noBranchAccess, repairOrderShouldBeDraft
|
|
22432
|
+
* - 404: repairOrderDoesNotExist
|
|
22433
|
+
* - 500: serverError
|
|
22434
|
+
*
|
|
22435
|
+
* Permission key: `repairorder = ['change']`
|
|
22436
|
+
*/
|
|
22437
|
+
patch: operations["maintenance_views_partial_update_repair_order"];
|
|
22438
|
+
trace?: never;
|
|
22439
|
+
};
|
|
22440
|
+
"/api/v1/maintenance/repair-orders/{id}/reset-to-draft/": {
|
|
22441
|
+
parameters: {
|
|
22442
|
+
query?: never;
|
|
22443
|
+
header?: never;
|
|
22444
|
+
path?: never;
|
|
22445
|
+
cookie?: never;
|
|
22446
|
+
};
|
|
22447
|
+
get?: never;
|
|
22448
|
+
put?: never;
|
|
22449
|
+
/**
|
|
22450
|
+
* Reset Repair Order To Draft
|
|
22451
|
+
* @description Endpoint for resetting a repair order to draft.
|
|
22452
|
+
*
|
|
22453
|
+
* Possible Responses:
|
|
22454
|
+
* - 200: RepairOrderDetailSchema
|
|
22455
|
+
* - 400: cannotResetPaidRepairOrderToDraft
|
|
22456
|
+
* - 403: permissionDenied, noModuleAccess, noBranchAccess, repairOrderIsCanceled, repairOrderIsAlreadyDraft
|
|
22457
|
+
* - 404: repairOrderDoesNotExist
|
|
22458
|
+
* - 500: serverError
|
|
22459
|
+
*
|
|
22460
|
+
* Permission key: `repairorder = ['resettodraft']`
|
|
22461
|
+
*/
|
|
22462
|
+
post: operations["maintenance_views_reset_repair_order_to_draft"];
|
|
22463
|
+
delete?: never;
|
|
22464
|
+
options?: never;
|
|
22465
|
+
head?: never;
|
|
22466
|
+
patch?: never;
|
|
22467
|
+
trace?: never;
|
|
22468
|
+
};
|
|
22469
|
+
"/api/v1/maintenance/repair-orders/{id}/cancel/": {
|
|
22470
|
+
parameters: {
|
|
22471
|
+
query?: never;
|
|
22472
|
+
header?: never;
|
|
22473
|
+
path?: never;
|
|
22474
|
+
cookie?: never;
|
|
22475
|
+
};
|
|
22476
|
+
get?: never;
|
|
22477
|
+
put?: never;
|
|
22478
|
+
/**
|
|
22479
|
+
* Cancel Repair Order
|
|
22480
|
+
* @description Endpoint for canceling a repair order.
|
|
22481
|
+
*
|
|
22482
|
+
* Possible Responses:
|
|
22483
|
+
* - 200: RepairOrderDetailSchema
|
|
22484
|
+
* - 400: cantBeCanceled, cannotCancelPaidRepairOrder
|
|
22485
|
+
* - 403: permissionDenied, noModuleAccess, noBranchAccess, statusAlreadyCanceled
|
|
22486
|
+
* - 404: repairOrderDoesNotExist
|
|
22487
|
+
* - 500: serverError
|
|
22488
|
+
*
|
|
22489
|
+
* Permission key: `repairorder = ['cancel']`
|
|
22490
|
+
*/
|
|
22491
|
+
post: operations["maintenance_views_cancel_repair_order"];
|
|
22492
|
+
delete?: never;
|
|
22493
|
+
options?: never;
|
|
22494
|
+
head?: never;
|
|
22495
|
+
patch?: never;
|
|
22496
|
+
trace?: never;
|
|
22497
|
+
};
|
|
22498
|
+
"/api/v1/maintenance/damage-types/": {
|
|
22499
|
+
parameters: {
|
|
22500
|
+
query?: never;
|
|
22501
|
+
header?: never;
|
|
22502
|
+
path?: never;
|
|
22503
|
+
cookie?: never;
|
|
22504
|
+
};
|
|
22505
|
+
/**
|
|
22506
|
+
* List Damage Types
|
|
22507
|
+
* @description Endpoint for listing damage types.
|
|
22508
|
+
*
|
|
22509
|
+
* Damage types are common across all branches.
|
|
22510
|
+
*
|
|
22511
|
+
* Possible Responses:
|
|
22512
|
+
* - 200: DamageTypeListSchema
|
|
22513
|
+
* - 400: invalidFilterFormat, paginationError
|
|
22514
|
+
* - 403: permissionDenied, noModuleAccess
|
|
22515
|
+
* - 500: serverError
|
|
22516
|
+
*
|
|
22517
|
+
* Permission key: `damagetype = ['view']`
|
|
22518
|
+
*/
|
|
22519
|
+
get: operations["maintenance_views_list_damage_types"];
|
|
22520
|
+
put?: never;
|
|
22521
|
+
/**
|
|
22522
|
+
* Create Damage Type
|
|
22523
|
+
* @description Endpoint for creating a damage type.
|
|
22524
|
+
*
|
|
22525
|
+
* Damage types are common across all branches.
|
|
22526
|
+
*
|
|
22527
|
+
* Possible Responses:
|
|
22528
|
+
* - 201: DamageTypeSchema
|
|
22529
|
+
* - 400: validation errors
|
|
22530
|
+
* - 403: permissionDenied, noModuleAccess
|
|
22531
|
+
* - 500: serverError
|
|
22532
|
+
*
|
|
22533
|
+
* Permission key: `damagetype = ['add']`
|
|
22534
|
+
*/
|
|
22535
|
+
post: operations["maintenance_views_create_damage_type"];
|
|
22536
|
+
delete?: never;
|
|
22537
|
+
options?: never;
|
|
22538
|
+
head?: never;
|
|
22539
|
+
patch?: never;
|
|
22540
|
+
trace?: never;
|
|
22541
|
+
};
|
|
22542
|
+
"/api/v1/maintenance/damage-types/{id}/": {
|
|
22543
|
+
parameters: {
|
|
22544
|
+
query?: never;
|
|
22545
|
+
header?: never;
|
|
22546
|
+
path?: never;
|
|
22547
|
+
cookie?: never;
|
|
22548
|
+
};
|
|
22549
|
+
/**
|
|
22550
|
+
* Get Damage Type
|
|
22551
|
+
* @description Endpoint for retrieving a damage type.
|
|
22552
|
+
*
|
|
22553
|
+
* Damage types are common across all branches.
|
|
22554
|
+
*
|
|
22555
|
+
* Possible Responses:
|
|
22556
|
+
* - 200: DamageTypeSchema
|
|
22557
|
+
* - 403: permissionDenied, noModuleAccess
|
|
22558
|
+
* - 404: damageTypeDoesNotExist
|
|
22559
|
+
* - 500: serverError
|
|
22560
|
+
*
|
|
22561
|
+
* Permission key: `damagetype = ['view']`
|
|
22562
|
+
*/
|
|
22563
|
+
get: operations["maintenance_views_get_damage_type"];
|
|
22564
|
+
put?: never;
|
|
22565
|
+
post?: never;
|
|
22566
|
+
/**
|
|
22567
|
+
* Delete Damage Type
|
|
22568
|
+
* @description Endpoint for deleting a damage type.
|
|
22569
|
+
*
|
|
22570
|
+
* Damage types are common across all branches.
|
|
22571
|
+
*
|
|
22572
|
+
* Possible Responses:
|
|
22573
|
+
* - 204: deleted
|
|
22574
|
+
* - 400: cantBeDeleted
|
|
22575
|
+
* - 403: permissionDenied, noModuleAccess
|
|
22576
|
+
* - 404: damageTypeDoesNotExist
|
|
22577
|
+
* - 500: serverError
|
|
22578
|
+
*
|
|
22579
|
+
* Permission key: `damagetype = ['delete']`
|
|
22580
|
+
*/
|
|
22581
|
+
delete: operations["maintenance_views_delete_damage_type"];
|
|
22582
|
+
options?: never;
|
|
22583
|
+
head?: never;
|
|
22584
|
+
/**
|
|
22585
|
+
* Update Damage Type
|
|
22586
|
+
* @description Endpoint for updating a damage type.
|
|
22587
|
+
*
|
|
22588
|
+
* Damage types are common across all branches.
|
|
22589
|
+
*
|
|
22590
|
+
* Possible Responses:
|
|
22591
|
+
* - 200: DamageTypeSchema
|
|
22592
|
+
* - 400: noChangesDetected, validation errors
|
|
22593
|
+
* - 403: permissionDenied, noModuleAccess
|
|
22594
|
+
* - 404: damageTypeDoesNotExist
|
|
22595
|
+
* - 500: serverError
|
|
22596
|
+
*
|
|
22597
|
+
* Permission key: `damagetype = ['change']`
|
|
22598
|
+
*/
|
|
22599
|
+
patch: operations["maintenance_views_update_damage_type"];
|
|
22600
|
+
trace?: never;
|
|
22601
|
+
};
|
|
22331
22602
|
"/api/v1/event/category": {
|
|
22332
22603
|
parameters: {
|
|
22333
22604
|
query?: never;
|
|
@@ -24803,6 +25074,11 @@ export interface components {
|
|
|
24803
25074
|
* @default []
|
|
24804
25075
|
*/
|
|
24805
25076
|
settings: components["schemas"]["BasePermissionsSchema_Settings_Settings"];
|
|
25077
|
+
/**
|
|
25078
|
+
* @description maintenance actions
|
|
25079
|
+
* @default []
|
|
25080
|
+
*/
|
|
25081
|
+
maintenance: components["schemas"]["BasePermissionsSchema_Settings_Maintenance"];
|
|
24806
25082
|
/**
|
|
24807
25083
|
* @description notification actions
|
|
24808
25084
|
* @default []
|
|
@@ -25262,6 +25538,20 @@ export interface components {
|
|
|
25262
25538
|
* @enum {string}
|
|
25263
25539
|
*/
|
|
25264
25540
|
BasePermissionsSchema_Settings_Inventory_VariationsheaderEnum: "add" | "change" | "delete" | "view";
|
|
25541
|
+
/** BasePermissionsSchema_Settings_Maintenance */
|
|
25542
|
+
BasePermissionsSchema_Settings_Maintenance: {
|
|
25543
|
+
/**
|
|
25544
|
+
* Damagetype
|
|
25545
|
+
* @description damagetype actions
|
|
25546
|
+
* @default []
|
|
25547
|
+
*/
|
|
25548
|
+
damagetype: components["schemas"]["BasePermissionsSchema_Settings_Maintenance_DamagetypeEnum"][];
|
|
25549
|
+
};
|
|
25550
|
+
/**
|
|
25551
|
+
* BasePermissionsSchema_Settings_Maintenance_DamagetypeEnum
|
|
25552
|
+
* @enum {string}
|
|
25553
|
+
*/
|
|
25554
|
+
BasePermissionsSchema_Settings_Maintenance_DamagetypeEnum: "add" | "change" | "delete" | "view";
|
|
25265
25555
|
/** BasePermissionsSchema_Settings_Miscellaneous */
|
|
25266
25556
|
BasePermissionsSchema_Settings_Miscellaneous: {
|
|
25267
25557
|
/**
|
|
@@ -26115,15 +26405,9 @@ export interface components {
|
|
|
26115
26405
|
firstName?: string | null;
|
|
26116
26406
|
/** Lastname */
|
|
26117
26407
|
lastName?: string | null;
|
|
26118
|
-
/**
|
|
26119
|
-
* Username
|
|
26120
|
-
* @description disabled when user is owner
|
|
26121
|
-
*/
|
|
26408
|
+
/** Username */
|
|
26122
26409
|
username?: string | null;
|
|
26123
|
-
/**
|
|
26124
|
-
* Email
|
|
26125
|
-
* @description disabled when user is owner
|
|
26126
|
-
*/
|
|
26410
|
+
/** Email */
|
|
26127
26411
|
email?: string | null;
|
|
26128
26412
|
/** Language */
|
|
26129
26413
|
language?: string | null;
|
|
@@ -30787,6 +31071,8 @@ export interface components {
|
|
|
30787
31071
|
task: boolean;
|
|
30788
31072
|
/** Event */
|
|
30789
31073
|
event: boolean;
|
|
31074
|
+
/** Maintenance */
|
|
31075
|
+
maintenance: boolean;
|
|
30790
31076
|
};
|
|
30791
31077
|
/**
|
|
30792
31078
|
* ChartOfAccountType
|
|
@@ -54736,6 +55022,8 @@ export interface components {
|
|
|
54736
55022
|
/** @description The sales order linked to this invoice, if applicable. */
|
|
54737
55023
|
salesOrder: components["schemas"]["DocumentCommonSchema"] | null;
|
|
54738
55024
|
salesQuotation: components["schemas"]["DocumentCommonSchema"] | null;
|
|
55025
|
+
/** @description The repair order linked to this invoice, if applicable. */
|
|
55026
|
+
repairOrder: components["schemas"]["DocumentCommonSchema"] | null;
|
|
54739
55027
|
/**
|
|
54740
55028
|
* Date
|
|
54741
55029
|
* Format: date
|
|
@@ -55148,6 +55436,12 @@ export interface components {
|
|
|
55148
55436
|
* @description get sales quotations filtered by customer.id, branch and approval status=approved or not_required
|
|
55149
55437
|
*/
|
|
55150
55438
|
salesQuotation?: string;
|
|
55439
|
+
/**
|
|
55440
|
+
* Repairorder
|
|
55441
|
+
* Format: uuid
|
|
55442
|
+
* @description get repair orders filtered by customer.id, branch, and approval status=approved or not_required
|
|
55443
|
+
*/
|
|
55444
|
+
repairOrder?: string;
|
|
55151
55445
|
/**
|
|
55152
55446
|
* Pricelist
|
|
55153
55447
|
* Format: uuid
|
|
@@ -55367,6 +55661,8 @@ export interface components {
|
|
|
55367
55661
|
/** @description The sales order linked to this invoice, if applicable. */
|
|
55368
55662
|
salesOrder: components["schemas"]["DocumentCommonSchema"] | null;
|
|
55369
55663
|
salesQuotation: components["schemas"]["DocumentCommonSchema"] | null;
|
|
55664
|
+
/** @description The repair order linked to this invoice, if applicable. */
|
|
55665
|
+
repairOrder: components["schemas"]["DocumentCommonSchema"] | null;
|
|
55370
55666
|
/**
|
|
55371
55667
|
* Date
|
|
55372
55668
|
* Format: date
|
|
@@ -55650,6 +55946,8 @@ export interface components {
|
|
|
55650
55946
|
/** @description The sales order linked to this invoice, if applicable. */
|
|
55651
55947
|
salesOrder: components["schemas"]["DocumentCommonSchema"] | null;
|
|
55652
55948
|
salesQuotation: components["schemas"]["DocumentCommonSchema"] | null;
|
|
55949
|
+
/** @description The repair order linked to this invoice, if applicable. */
|
|
55950
|
+
repairOrder: components["schemas"]["DocumentCommonSchema"] | null;
|
|
55653
55951
|
/**
|
|
55654
55952
|
* Date
|
|
55655
55953
|
* Format: date
|
|
@@ -59882,14 +60180,6 @@ export interface components {
|
|
|
59882
60180
|
id: string;
|
|
59883
60181
|
/** Name */
|
|
59884
60182
|
name: string;
|
|
59885
|
-
/** Skucode */
|
|
59886
|
-
skuCode?: string | null;
|
|
59887
|
-
/**
|
|
59888
|
-
* Unitsofmeasure
|
|
59889
|
-
* @description All available units of measure for this item
|
|
59890
|
-
* @default []
|
|
59891
|
-
*/
|
|
59892
|
-
unitsOfMeasure: components["schemas"]["UnitOfMeasureSummaryInfo"][];
|
|
59893
60183
|
};
|
|
59894
60184
|
/** SalesByItemListSchema */
|
|
59895
60185
|
SalesByItemListSchema: {
|
|
@@ -60055,8 +60345,8 @@ export interface components {
|
|
|
60055
60345
|
id: string;
|
|
60056
60346
|
/** Name */
|
|
60057
60347
|
name: string;
|
|
60058
|
-
/**
|
|
60059
|
-
|
|
60348
|
+
/** Phone1 */
|
|
60349
|
+
phone1?: string | null;
|
|
60060
60350
|
};
|
|
60061
60351
|
/** SalesByCustomerListSchema */
|
|
60062
60352
|
SalesByCustomerListSchema: {
|
|
@@ -60654,7 +60944,7 @@ export interface components {
|
|
|
60654
60944
|
* CombinedModelName
|
|
60655
60945
|
* @enum {string}
|
|
60656
60946
|
*/
|
|
60657
|
-
common__shared_schemas__CombinedModelName: "item" | "customer" | "supplier" | "internalTransferHeader" | "transferRequest" | "stockAdjustment" | "openingQuantity" | "supplierPriceList" | "chartOfAccount" | "journalVoucher" | "requisition" | "requestForQuotation" | "advancePayment" | "paymentVoucher" | "purchaseInvoice" | "purchaseOrder" | "purchaseQuotation" | "purchaseReturnOrder" | "purchaseReturnInvoice" | "refundVoucher" | "purchaseCreditNote" | "project" | "warehouse" | "employeePosition" | "employee" | "accountingSetting" | "defaultGeneralAccounts" | "transactionalSubsidiaryAccounts" | "accountClassification" | "taxes" | "appointmentSettings" | "approvalSettings" | "approvalConfig" | "approvalCondition" | "approvalLevel" | "inventorySettings" | "itemVariantSettings" | "posSettings" | "purchaseSettings" | "salesSetting" | "city" | "zone" | "shippingMethod" | "systemSettings" | "transactionLocking" | "userSetting" | "department" | "company" | "branch" | "region" | "currency" | "facility" | "reason" | "emailSetting" | "bank" | "users" | "roles" | "appointment" | "offerAndPromotion" | "salesQuotation" | "salesOrder" | "downPayment" | "receiptVoucher" | "salesCreditNote" | "salesInvoice" | "salesReturnOrder" | "salesReturnInvoice" | "salesRefundVoucher" | "salesPriceList" | "goodsDeliveryNote" | "returnablePackageReconciliation" | "salesReturnPackage" | "package" | "packageType" | "itemPackage" | "goodsReceiptNote" | "salesPerson" | "commissionStructure" | "commissionPayout" | "closingCommission" | "posInvoice" | "onlineStoreSetting" | "onlineStorageSettings" | "task" | "event" | "dimension" | "expenseCategory" | "expenseVoucher" | "expensePaymentVoucher" | "whatsAppIntegration" | "onlineOrder" | "accountStatement" | "generalLedgerReport" | "trialBalance" | "statementOfAccount" | "profitAndLoss" | "bankStatement" | "balanceSheet" | "projectStatement" | "supplierStatement" | "customerStatement" | "topCustomers" | "topSuppliers" | "employeeStatement" | "stockReport" | "salesByItem" | "salesByCategory" | "salesByBrand" | "salesByCustomer" | "salesBySalesPerson" | "salesByWarehouse" | "salesSummary" | "salesTrend";
|
|
60947
|
+
common__shared_schemas__CombinedModelName: "item" | "customer" | "supplier" | "internalTransferHeader" | "transferRequest" | "repairOrder" | "stockAdjustment" | "openingQuantity" | "supplierPriceList" | "chartOfAccount" | "journalVoucher" | "requisition" | "requestForQuotation" | "advancePayment" | "paymentVoucher" | "purchaseInvoice" | "purchaseOrder" | "purchaseQuotation" | "purchaseReturnOrder" | "purchaseReturnInvoice" | "refundVoucher" | "purchaseCreditNote" | "project" | "warehouse" | "employeePosition" | "employee" | "accountingSetting" | "defaultGeneralAccounts" | "transactionalSubsidiaryAccounts" | "accountClassification" | "taxes" | "appointmentSettings" | "approvalSettings" | "approvalConfig" | "approvalCondition" | "approvalLevel" | "inventorySettings" | "itemVariantSettings" | "posSettings" | "purchaseSettings" | "salesSetting" | "city" | "zone" | "shippingMethod" | "systemSettings" | "transactionLocking" | "userSetting" | "department" | "company" | "branch" | "region" | "currency" | "facility" | "reason" | "emailSetting" | "bank" | "users" | "roles" | "appointment" | "offerAndPromotion" | "salesQuotation" | "salesOrder" | "downPayment" | "receiptVoucher" | "salesCreditNote" | "salesInvoice" | "salesReturnOrder" | "salesReturnInvoice" | "salesRefundVoucher" | "salesPriceList" | "goodsDeliveryNote" | "returnablePackageReconciliation" | "salesReturnPackage" | "package" | "packageType" | "itemPackage" | "goodsReceiptNote" | "salesPerson" | "commissionStructure" | "commissionPayout" | "closingCommission" | "posInvoice" | "onlineStoreSetting" | "onlineStorageSettings" | "task" | "event" | "dimension" | "expenseCategory" | "expenseVoucher" | "expensePaymentVoucher" | "whatsAppIntegration" | "onlineOrder" | "accountStatement" | "generalLedgerReport" | "trialBalance" | "statementOfAccount" | "profitAndLoss" | "bankStatement" | "balanceSheet" | "projectStatement" | "supplierStatement" | "customerStatement" | "topCustomers" | "topSuppliers" | "employeeStatement" | "stockReport" | "salesByItem" | "salesByCategory" | "salesByBrand" | "salesByCustomer" | "salesBySalesPerson" | "salesByWarehouse" | "salesSummary" | "salesTrend";
|
|
60658
60948
|
/** TasksListSchema */
|
|
60659
60949
|
TasksListSchema: {
|
|
60660
60950
|
info: components["schemas"]["PageInfoSchema"];
|
|
@@ -61789,6 +62079,306 @@ export interface components {
|
|
|
61789
62079
|
/** Customfields */
|
|
61790
62080
|
customFields?: components["schemas"]["CreateUpdateCustomFieldValues"][];
|
|
61791
62081
|
};
|
|
62082
|
+
/** DamageTypeSchema */
|
|
62083
|
+
DamageTypeSchema: {
|
|
62084
|
+
/**
|
|
62085
|
+
* Datecreated
|
|
62086
|
+
* Format: date-time
|
|
62087
|
+
*/
|
|
62088
|
+
dateCreated: string;
|
|
62089
|
+
/** Datemodified */
|
|
62090
|
+
dateModified: string | null;
|
|
62091
|
+
createdBy: components["schemas"]["RecordUserSchema"];
|
|
62092
|
+
modifiedBy: components["schemas"]["RecordUserSchema"] | null;
|
|
62093
|
+
/**
|
|
62094
|
+
* Id
|
|
62095
|
+
* Format: uuid
|
|
62096
|
+
*/
|
|
62097
|
+
id: string;
|
|
62098
|
+
/** Name */
|
|
62099
|
+
name: string;
|
|
62100
|
+
};
|
|
62101
|
+
/** EmployeeSummarySchema */
|
|
62102
|
+
EmployeeSummarySchema: {
|
|
62103
|
+
/**
|
|
62104
|
+
* Id
|
|
62105
|
+
* Format: uuid
|
|
62106
|
+
*/
|
|
62107
|
+
id: string;
|
|
62108
|
+
/** Name */
|
|
62109
|
+
name?: string | null;
|
|
62110
|
+
position: components["schemas"]["EmployeePositionSummaryInfo"];
|
|
62111
|
+
};
|
|
62112
|
+
/**
|
|
62113
|
+
* PaymentStatusEnum
|
|
62114
|
+
* @enum {string}
|
|
62115
|
+
*/
|
|
62116
|
+
PaymentStatusEnum: "notPaid" | "partiallyPaid" | "paid";
|
|
62117
|
+
/** RepairOrderDetailSchema */
|
|
62118
|
+
RepairOrderDetailSchema: {
|
|
62119
|
+
/**
|
|
62120
|
+
* Datecreated
|
|
62121
|
+
* Format: date-time
|
|
62122
|
+
*/
|
|
62123
|
+
dateCreated: string;
|
|
62124
|
+
/** Datemodified */
|
|
62125
|
+
dateModified: string | null;
|
|
62126
|
+
createdBy: components["schemas"]["RecordUserSchema"];
|
|
62127
|
+
modifiedBy: components["schemas"]["RecordUserSchema"] | null;
|
|
62128
|
+
/**
|
|
62129
|
+
* Id
|
|
62130
|
+
* Format: uuid
|
|
62131
|
+
*/
|
|
62132
|
+
id: string;
|
|
62133
|
+
/** Serialnumber */
|
|
62134
|
+
serialNumber: string;
|
|
62135
|
+
branch: components["schemas"]["BranchInfo"];
|
|
62136
|
+
/**
|
|
62137
|
+
* Canconvert
|
|
62138
|
+
* @description True when the repair order can be converted to a sales invoice.
|
|
62139
|
+
* @default false
|
|
62140
|
+
*/
|
|
62141
|
+
canConvert: boolean;
|
|
62142
|
+
/**
|
|
62143
|
+
* Canmodify
|
|
62144
|
+
* @description False when the linked sales invoice has been paid or the repair order is canceled.
|
|
62145
|
+
* @default true
|
|
62146
|
+
*/
|
|
62147
|
+
canModify: boolean;
|
|
62148
|
+
/**
|
|
62149
|
+
* Cannotmodifyreason
|
|
62150
|
+
* @description Reason editing is blocked: paid or canceled.
|
|
62151
|
+
*/
|
|
62152
|
+
cannotModifyReason?: string | null;
|
|
62153
|
+
/**
|
|
62154
|
+
* Date
|
|
62155
|
+
* Format: date
|
|
62156
|
+
*/
|
|
62157
|
+
date: string;
|
|
62158
|
+
customer: components["schemas"]["CustomerSummarySchema"];
|
|
62159
|
+
item: components["schemas"]["ItemSummarySchema"];
|
|
62160
|
+
/** Productidentification */
|
|
62161
|
+
productIdentification?: string | null;
|
|
62162
|
+
/** Devicepassword */
|
|
62163
|
+
devicePassword?: string | null;
|
|
62164
|
+
/** Staffnotes */
|
|
62165
|
+
staffNotes?: string | null;
|
|
62166
|
+
status: components["schemas"]["RetrieveInternalStatusChoices"];
|
|
62167
|
+
approvalStatus: components["schemas"]["ApprovalChoices"];
|
|
62168
|
+
repairStatus: components["schemas"]["RepairStatusEnum"];
|
|
62169
|
+
/** @description Derived from the linked sales invoice. Paid when the linked invoice is fully paid. */
|
|
62170
|
+
paymentStatus: components["schemas"]["PaymentStatusEnum"];
|
|
62171
|
+
/** Damagetypes */
|
|
62172
|
+
damageTypes?: components["schemas"]["DamageTypeSchema"][];
|
|
62173
|
+
receivedBy?: components["schemas"]["EmployeeSummarySchema"] | null;
|
|
62174
|
+
/** Technicians */
|
|
62175
|
+
technicians?: components["schemas"]["EmployeeSummarySchema"][];
|
|
62176
|
+
/**
|
|
62177
|
+
* Accessories
|
|
62178
|
+
* @description Accessories received with the device, such as charger or case.
|
|
62179
|
+
*/
|
|
62180
|
+
accessories?: string | null;
|
|
62181
|
+
/**
|
|
62182
|
+
* Attachments
|
|
62183
|
+
* @description Attachment file IDs.
|
|
62184
|
+
*/
|
|
62185
|
+
attachments?: string[];
|
|
62186
|
+
/**
|
|
62187
|
+
* Description
|
|
62188
|
+
* @description Detailed description of the repair order.
|
|
62189
|
+
*/
|
|
62190
|
+
description?: string | null;
|
|
62191
|
+
/**
|
|
62192
|
+
* Notes
|
|
62193
|
+
* @description Additional notes for the repair order.
|
|
62194
|
+
*/
|
|
62195
|
+
notes?: string | null;
|
|
62196
|
+
};
|
|
62197
|
+
/**
|
|
62198
|
+
* RepairStatusEnum
|
|
62199
|
+
* @enum {string}
|
|
62200
|
+
*/
|
|
62201
|
+
RepairStatusEnum: "pending" | "repairing" | "completed" | "approved";
|
|
62202
|
+
/** CreateRepairOrderSchema */
|
|
62203
|
+
CreateRepairOrderSchema: {
|
|
62204
|
+
/**
|
|
62205
|
+
* Date
|
|
62206
|
+
* Format: date
|
|
62207
|
+
*/
|
|
62208
|
+
date: string;
|
|
62209
|
+
/**
|
|
62210
|
+
* Customer
|
|
62211
|
+
* Format: uuid
|
|
62212
|
+
* @description - get customers using route /api/v1/customers/?type=children
|
|
62213
|
+
* - filter by isActive equal to true
|
|
62214
|
+
* - filter customerType equal to debtor
|
|
62215
|
+
*/
|
|
62216
|
+
customer: string;
|
|
62217
|
+
/**
|
|
62218
|
+
* Item
|
|
62219
|
+
* Format: uuid
|
|
62220
|
+
* @description - get items using route /api/v1/inventory/items/
|
|
62221
|
+
* - filter by isActive equal to true
|
|
62222
|
+
* - filter role not equal to template
|
|
62223
|
+
* - usually type should not be service
|
|
62224
|
+
*/
|
|
62225
|
+
item: string;
|
|
62226
|
+
/**
|
|
62227
|
+
* Productidentification
|
|
62228
|
+
* @description Barcode, serial number, or SKU to identify the device being repaired.
|
|
62229
|
+
*/
|
|
62230
|
+
productIdentification: string;
|
|
62231
|
+
/**
|
|
62232
|
+
* Devicepassword
|
|
62233
|
+
* @description Device password or unlock code provided by the customer.
|
|
62234
|
+
*/
|
|
62235
|
+
devicePassword?: string | null;
|
|
62236
|
+
/**
|
|
62237
|
+
* Staffnotes
|
|
62238
|
+
* @description Internal notes visible only to staff.
|
|
62239
|
+
*/
|
|
62240
|
+
staffNotes?: string | null;
|
|
62241
|
+
/** @default draft */
|
|
62242
|
+
status: components["schemas"]["InternalStatusChoices"];
|
|
62243
|
+
/** @description Current repair workflow status. */
|
|
62244
|
+
repairStatus: components["schemas"]["RepairStatusEnum"];
|
|
62245
|
+
/**
|
|
62246
|
+
* Damagetypes
|
|
62247
|
+
* @description - get damage types using route /api/v1/maintenance/damage-types/
|
|
62248
|
+
* - at least one damage type is required
|
|
62249
|
+
*/
|
|
62250
|
+
damageTypes: string[];
|
|
62251
|
+
/**
|
|
62252
|
+
* Receivedby
|
|
62253
|
+
* @description - get employees using route /api/v1/employees/?branchId={branch-id}&type=children&document_type=default
|
|
62254
|
+
* - filter by isActive equal to true
|
|
62255
|
+
*/
|
|
62256
|
+
receivedBy?: string | null;
|
|
62257
|
+
/**
|
|
62258
|
+
* Technicians
|
|
62259
|
+
* @description - get employees using route /api/v1/employees/?branchId={branch-id}&type=children&document_type=default
|
|
62260
|
+
* - filter by isActive equal to true
|
|
62261
|
+
*/
|
|
62262
|
+
technicians?: string[];
|
|
62263
|
+
/**
|
|
62264
|
+
* Accessories
|
|
62265
|
+
* @description Accessories received with the device, such as charger or case.
|
|
62266
|
+
*/
|
|
62267
|
+
accessories?: string | null;
|
|
62268
|
+
/**
|
|
62269
|
+
* Description
|
|
62270
|
+
* @description Detailed description of the repair order.
|
|
62271
|
+
*/
|
|
62272
|
+
description?: string | null;
|
|
62273
|
+
/**
|
|
62274
|
+
* Notes
|
|
62275
|
+
* @description Additional notes for the repair order.
|
|
62276
|
+
*/
|
|
62277
|
+
notes?: string | null;
|
|
62278
|
+
/**
|
|
62279
|
+
* Attachments
|
|
62280
|
+
* @description Attachment file IDs.
|
|
62281
|
+
*/
|
|
62282
|
+
attachments?: string[];
|
|
62283
|
+
};
|
|
62284
|
+
/**
|
|
62285
|
+
* RepairOrderSortBy
|
|
62286
|
+
* @enum {string}
|
|
62287
|
+
*/
|
|
62288
|
+
RepairOrderSortBy: "itemName" | "customerName" | "serialNumber" | "date";
|
|
62289
|
+
/** RepairOrderListSchema */
|
|
62290
|
+
RepairOrderListSchema: {
|
|
62291
|
+
info: components["schemas"]["PageInfoSchema"];
|
|
62292
|
+
/** Results */
|
|
62293
|
+
results?: components["schemas"]["RepairOrderDetailSchema"][];
|
|
62294
|
+
};
|
|
62295
|
+
/** UpdateRepairOrderSchema */
|
|
62296
|
+
UpdateRepairOrderSchema: {
|
|
62297
|
+
/** Date */
|
|
62298
|
+
date?: null;
|
|
62299
|
+
/**
|
|
62300
|
+
* Customer
|
|
62301
|
+
* @description - get customers using route /api/v1/customers/?type=children
|
|
62302
|
+
* - filter by isActive equal to true
|
|
62303
|
+
* - filter customerType equal to debtor
|
|
62304
|
+
*/
|
|
62305
|
+
customer?: string | null;
|
|
62306
|
+
/**
|
|
62307
|
+
* Item
|
|
62308
|
+
* @description - get items using route /api/v1/inventory/items/
|
|
62309
|
+
* - filter by isActive equal to true
|
|
62310
|
+
* - filter role not equal to template
|
|
62311
|
+
* - usually type should not be service
|
|
62312
|
+
*/
|
|
62313
|
+
item?: string | null;
|
|
62314
|
+
/**
|
|
62315
|
+
* Productidentification
|
|
62316
|
+
* @description Barcode, serial number, or SKU to identify the device being repaired.
|
|
62317
|
+
*/
|
|
62318
|
+
productIdentification?: string | null;
|
|
62319
|
+
/**
|
|
62320
|
+
* Devicepassword
|
|
62321
|
+
* @description Device password or unlock code provided by the customer.
|
|
62322
|
+
*/
|
|
62323
|
+
devicePassword?: string | null;
|
|
62324
|
+
/**
|
|
62325
|
+
* Staffnotes
|
|
62326
|
+
* @description Internal notes visible only to staff.
|
|
62327
|
+
*/
|
|
62328
|
+
staffNotes?: string | null;
|
|
62329
|
+
status?: components["schemas"]["InternalStatusChoices"] | null;
|
|
62330
|
+
/** @description Current repair workflow status. */
|
|
62331
|
+
repairStatus?: components["schemas"]["RepairStatusEnum"] | null;
|
|
62332
|
+
/**
|
|
62333
|
+
* Damagetypes
|
|
62334
|
+
* @description - get damage types using route /api/v1/maintenance/damage-types/
|
|
62335
|
+
* - at least one damage type is required
|
|
62336
|
+
*/
|
|
62337
|
+
damageTypes?: string[] | null;
|
|
62338
|
+
/**
|
|
62339
|
+
* Receivedby
|
|
62340
|
+
* @description - get employees using route /api/v1/employees/?branchId={branch-id}&type=children&document_type=default
|
|
62341
|
+
* - filter by isActive equal to true
|
|
62342
|
+
*/
|
|
62343
|
+
receivedBy?: string | null;
|
|
62344
|
+
/**
|
|
62345
|
+
* Technicians
|
|
62346
|
+
* @description - get employees using route /api/v1/employees/?branchId={branch-id}&type=children&document_type=default
|
|
62347
|
+
* - filter by isActive equal to true
|
|
62348
|
+
*/
|
|
62349
|
+
technicians?: string[] | null;
|
|
62350
|
+
/**
|
|
62351
|
+
* Accessories
|
|
62352
|
+
* @description Accessories received with the device, such as charger or case.
|
|
62353
|
+
*/
|
|
62354
|
+
accessories?: string | null;
|
|
62355
|
+
/**
|
|
62356
|
+
* Description
|
|
62357
|
+
* @description Detailed description of the repair order.
|
|
62358
|
+
*/
|
|
62359
|
+
description?: string | null;
|
|
62360
|
+
/**
|
|
62361
|
+
* Notes
|
|
62362
|
+
* @description Additional notes for the repair order.
|
|
62363
|
+
*/
|
|
62364
|
+
notes?: string | null;
|
|
62365
|
+
/**
|
|
62366
|
+
* Attachments
|
|
62367
|
+
* @description Attachment file IDs.
|
|
62368
|
+
*/
|
|
62369
|
+
attachments?: string[] | null;
|
|
62370
|
+
};
|
|
62371
|
+
/** CreateDamageTypeSchema */
|
|
62372
|
+
CreateDamageTypeSchema: {
|
|
62373
|
+
/** Name */
|
|
62374
|
+
name: string;
|
|
62375
|
+
};
|
|
62376
|
+
/** DamageTypeListSchema */
|
|
62377
|
+
DamageTypeListSchema: {
|
|
62378
|
+
info: components["schemas"]["PageInfoSchema"];
|
|
62379
|
+
/** Results */
|
|
62380
|
+
results?: components["schemas"]["DamageTypeSchema"][];
|
|
62381
|
+
};
|
|
61792
62382
|
/** CreateUpdateEventCategory */
|
|
61793
62383
|
CreateUpdateEventCategory: {
|
|
61794
62384
|
/** Name */
|
|
@@ -62383,11 +62973,6 @@ export interface components {
|
|
|
62383
62973
|
/** Secondaryamount */
|
|
62384
62974
|
secondaryAmount: string;
|
|
62385
62975
|
};
|
|
62386
|
-
/**
|
|
62387
|
-
* PaymentStatusEnum
|
|
62388
|
-
* @enum {string}
|
|
62389
|
-
*/
|
|
62390
|
-
PaymentStatusEnum: "notPaid" | "partiallyPaid" | "paid";
|
|
62391
62976
|
/**
|
|
62392
62977
|
* RecognitionFrequencyEnum
|
|
62393
62978
|
* @enum {string}
|
|
@@ -67802,7 +68387,7 @@ export interface operations {
|
|
|
67802
68387
|
common_views_get_model_names: {
|
|
67803
68388
|
parameters: {
|
|
67804
68389
|
query?: {
|
|
67805
|
-
CombinedModelNames?: "item" | "customer" | "supplier" | "internalTransferHeader" | "transferRequest" | "stockAdjustment" | "openingQuantity" | "supplierPriceList" | "chartOfAccount" | "journalVoucher" | "requisition" | "requestForQuotation" | "advancePayment" | "paymentVoucher" | "purchaseInvoice" | "purchaseOrder" | "purchaseQuotation" | "purchaseReturnOrder" | "purchaseReturnInvoice" | "refundVoucher" | "purchaseCreditNote" | "project" | "warehouse" | "employeePosition" | "employee" | "accountingSetting" | "defaultGeneralAccounts" | "transactionalSubsidiaryAccounts" | "accountClassification" | "taxes" | "appointmentSettings" | "approvalSettings" | "approvalConfig" | "approvalCondition" | "approvalLevel" | "inventorySettings" | "itemVariantSettings" | "posSettings" | "purchaseSettings" | "salesSetting" | "city" | "zone" | "shippingMethod" | "systemSettings" | "transactionLocking" | "userSetting" | "department" | "company" | "branch" | "region" | "currency" | "facility" | "reason" | "emailSetting" | "bank" | "users" | "roles" | "appointment" | "offerAndPromotion" | "salesQuotation" | "salesOrder" | "downPayment" | "receiptVoucher" | "salesCreditNote" | "salesInvoice" | "salesReturnOrder" | "salesReturnInvoice" | "salesRefundVoucher" | "salesPriceList" | "goodsDeliveryNote" | "returnablePackageReconciliation" | "salesReturnPackage" | "package" | "packageType" | "itemPackage" | "goodsReceiptNote" | "salesPerson" | "commissionStructure" | "commissionPayout" | "closingCommission" | "posInvoice" | "onlineStoreSetting" | "onlineStorageSettings" | "task" | "event" | "dimension" | "expenseCategory" | "expenseVoucher" | "expensePaymentVoucher" | "whatsAppIntegration" | "onlineOrder" | "accountStatement" | "generalLedgerReport" | "trialBalance" | "statementOfAccount" | "profitAndLoss" | "bankStatement" | "balanceSheet" | "projectStatement" | "supplierStatement" | "customerStatement" | "topCustomers" | "topSuppliers" | "employeeStatement" | "stockReport" | "salesByItem" | "salesByCategory" | "salesByBrand" | "salesByCustomer" | "salesBySalesPerson" | "salesByWarehouse" | "salesSummary" | "salesTrend";
|
|
68390
|
+
CombinedModelNames?: "item" | "customer" | "supplier" | "internalTransferHeader" | "transferRequest" | "repairOrder" | "stockAdjustment" | "openingQuantity" | "supplierPriceList" | "chartOfAccount" | "journalVoucher" | "requisition" | "requestForQuotation" | "advancePayment" | "paymentVoucher" | "purchaseInvoice" | "purchaseOrder" | "purchaseQuotation" | "purchaseReturnOrder" | "purchaseReturnInvoice" | "refundVoucher" | "purchaseCreditNote" | "project" | "warehouse" | "employeePosition" | "employee" | "accountingSetting" | "defaultGeneralAccounts" | "transactionalSubsidiaryAccounts" | "accountClassification" | "taxes" | "appointmentSettings" | "approvalSettings" | "approvalConfig" | "approvalCondition" | "approvalLevel" | "inventorySettings" | "itemVariantSettings" | "posSettings" | "purchaseSettings" | "salesSetting" | "city" | "zone" | "shippingMethod" | "systemSettings" | "transactionLocking" | "userSetting" | "department" | "company" | "branch" | "region" | "currency" | "facility" | "reason" | "emailSetting" | "bank" | "users" | "roles" | "appointment" | "offerAndPromotion" | "salesQuotation" | "salesOrder" | "downPayment" | "receiptVoucher" | "salesCreditNote" | "salesInvoice" | "salesReturnOrder" | "salesReturnInvoice" | "salesRefundVoucher" | "salesPriceList" | "goodsDeliveryNote" | "returnablePackageReconciliation" | "salesReturnPackage" | "package" | "packageType" | "itemPackage" | "goodsReceiptNote" | "salesPerson" | "commissionStructure" | "commissionPayout" | "closingCommission" | "posInvoice" | "onlineStoreSetting" | "onlineStorageSettings" | "task" | "event" | "dimension" | "expenseCategory" | "expenseVoucher" | "expensePaymentVoucher" | "whatsAppIntegration" | "onlineOrder" | "accountStatement" | "generalLedgerReport" | "trialBalance" | "statementOfAccount" | "profitAndLoss" | "bankStatement" | "balanceSheet" | "projectStatement" | "supplierStatement" | "customerStatement" | "topCustomers" | "topSuppliers" | "employeeStatement" | "stockReport" | "salesByItem" | "salesByCategory" | "salesByBrand" | "salesByCustomer" | "salesBySalesPerson" | "salesByWarehouse" | "salesSummary" | "salesTrend";
|
|
67806
68391
|
};
|
|
67807
68392
|
header?: never;
|
|
67808
68393
|
path?: never;
|
|
@@ -106222,25 +106807,640 @@ export interface operations {
|
|
|
106222
106807
|
};
|
|
106223
106808
|
};
|
|
106224
106809
|
};
|
|
106225
|
-
integration_sync_views_shopify_app_entry: {
|
|
106810
|
+
integration_sync_views_shopify_app_entry: {
|
|
106811
|
+
parameters: {
|
|
106812
|
+
query: {
|
|
106813
|
+
/** @description Shopify store domain */
|
|
106814
|
+
shop: string;
|
|
106815
|
+
/** @description Shopify host parameter */
|
|
106816
|
+
host?: string | null;
|
|
106817
|
+
/** @description Embedded app indicator */
|
|
106818
|
+
embedded?: string | null;
|
|
106819
|
+
/** @description HMAC signature */
|
|
106820
|
+
hmac?: string | null;
|
|
106821
|
+
/** @description Shopify ID token */
|
|
106822
|
+
id_token?: string | null;
|
|
106823
|
+
/** @description User locale */
|
|
106824
|
+
locale?: string | null;
|
|
106825
|
+
/** @description Session ID */
|
|
106826
|
+
session?: string | null;
|
|
106827
|
+
/** @description Request timestamp */
|
|
106828
|
+
timestamp?: string | null;
|
|
106829
|
+
};
|
|
106830
|
+
header?: never;
|
|
106831
|
+
path?: never;
|
|
106832
|
+
cookie?: never;
|
|
106833
|
+
};
|
|
106834
|
+
requestBody?: never;
|
|
106835
|
+
responses: {
|
|
106836
|
+
/** @description OK */
|
|
106837
|
+
200: {
|
|
106838
|
+
headers: {
|
|
106839
|
+
[name: string]: unknown;
|
|
106840
|
+
};
|
|
106841
|
+
content: {
|
|
106842
|
+
"application/json": Record<string, never>;
|
|
106843
|
+
};
|
|
106844
|
+
};
|
|
106845
|
+
/** @description Found */
|
|
106846
|
+
302: {
|
|
106847
|
+
headers: {
|
|
106848
|
+
[name: string]: unknown;
|
|
106849
|
+
};
|
|
106850
|
+
content?: never;
|
|
106851
|
+
};
|
|
106852
|
+
/** @description Bad Request */
|
|
106853
|
+
400: {
|
|
106854
|
+
headers: {
|
|
106855
|
+
[name: string]: unknown;
|
|
106856
|
+
};
|
|
106857
|
+
content: {
|
|
106858
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
106859
|
+
};
|
|
106860
|
+
};
|
|
106861
|
+
/** @description Internal Server Error */
|
|
106862
|
+
500: {
|
|
106863
|
+
headers: {
|
|
106864
|
+
[name: string]: unknown;
|
|
106865
|
+
};
|
|
106866
|
+
content: {
|
|
106867
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
106868
|
+
};
|
|
106869
|
+
};
|
|
106870
|
+
};
|
|
106871
|
+
};
|
|
106872
|
+
integration_sync_views_shopify_oauth_callback: {
|
|
106873
|
+
parameters: {
|
|
106874
|
+
query: {
|
|
106875
|
+
shop: string;
|
|
106876
|
+
code: string;
|
|
106877
|
+
hmac: string;
|
|
106878
|
+
timestamp: string;
|
|
106879
|
+
state?: string | null;
|
|
106880
|
+
host?: string | null;
|
|
106881
|
+
};
|
|
106882
|
+
header?: never;
|
|
106883
|
+
path?: never;
|
|
106884
|
+
cookie?: never;
|
|
106885
|
+
};
|
|
106886
|
+
requestBody?: never;
|
|
106887
|
+
responses: {
|
|
106888
|
+
/** @description OK */
|
|
106889
|
+
200: {
|
|
106890
|
+
headers: {
|
|
106891
|
+
[name: string]: unknown;
|
|
106892
|
+
};
|
|
106893
|
+
content: {
|
|
106894
|
+
"application/json": components["schemas"]["ShopifyOAuthResponseSchema"];
|
|
106895
|
+
};
|
|
106896
|
+
};
|
|
106897
|
+
/** @description Bad Request */
|
|
106898
|
+
400: {
|
|
106899
|
+
headers: {
|
|
106900
|
+
[name: string]: unknown;
|
|
106901
|
+
};
|
|
106902
|
+
content: {
|
|
106903
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
106904
|
+
};
|
|
106905
|
+
};
|
|
106906
|
+
/** @description Forbidden */
|
|
106907
|
+
403: {
|
|
106908
|
+
headers: {
|
|
106909
|
+
[name: string]: unknown;
|
|
106910
|
+
};
|
|
106911
|
+
content: {
|
|
106912
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
106913
|
+
};
|
|
106914
|
+
};
|
|
106915
|
+
/** @description Internal Server Error */
|
|
106916
|
+
500: {
|
|
106917
|
+
headers: {
|
|
106918
|
+
[name: string]: unknown;
|
|
106919
|
+
};
|
|
106920
|
+
content: {
|
|
106921
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
106922
|
+
};
|
|
106923
|
+
};
|
|
106924
|
+
};
|
|
106925
|
+
};
|
|
106926
|
+
integration_whatsapp_views_get_whatsapp_integration: {
|
|
106927
|
+
parameters: {
|
|
106928
|
+
query?: never;
|
|
106929
|
+
header?: never;
|
|
106930
|
+
path?: never;
|
|
106931
|
+
cookie?: never;
|
|
106932
|
+
};
|
|
106933
|
+
requestBody?: never;
|
|
106934
|
+
responses: {
|
|
106935
|
+
/** @description OK */
|
|
106936
|
+
200: {
|
|
106937
|
+
headers: {
|
|
106938
|
+
[name: string]: unknown;
|
|
106939
|
+
};
|
|
106940
|
+
content: {
|
|
106941
|
+
"application/json": components["schemas"]["RetrieveWhatsAppIntegration"];
|
|
106942
|
+
};
|
|
106943
|
+
};
|
|
106944
|
+
/** @description Bad Request */
|
|
106945
|
+
400: {
|
|
106946
|
+
headers: {
|
|
106947
|
+
[name: string]: unknown;
|
|
106948
|
+
};
|
|
106949
|
+
content: {
|
|
106950
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
106951
|
+
};
|
|
106952
|
+
};
|
|
106953
|
+
/** @description Not Found */
|
|
106954
|
+
404: {
|
|
106955
|
+
headers: {
|
|
106956
|
+
[name: string]: unknown;
|
|
106957
|
+
};
|
|
106958
|
+
content: {
|
|
106959
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
106960
|
+
};
|
|
106961
|
+
};
|
|
106962
|
+
/** @description Conflict */
|
|
106963
|
+
409: {
|
|
106964
|
+
headers: {
|
|
106965
|
+
[name: string]: unknown;
|
|
106966
|
+
};
|
|
106967
|
+
content: {
|
|
106968
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
106969
|
+
};
|
|
106970
|
+
};
|
|
106971
|
+
/** @description Internal Server Error */
|
|
106972
|
+
500: {
|
|
106973
|
+
headers: {
|
|
106974
|
+
[name: string]: unknown;
|
|
106975
|
+
};
|
|
106976
|
+
content: {
|
|
106977
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
106978
|
+
};
|
|
106979
|
+
};
|
|
106980
|
+
};
|
|
106981
|
+
};
|
|
106982
|
+
integration_whatsapp_views_setup_whatsapp: {
|
|
106983
|
+
parameters: {
|
|
106984
|
+
query?: never;
|
|
106985
|
+
header?: never;
|
|
106986
|
+
path?: never;
|
|
106987
|
+
cookie?: never;
|
|
106988
|
+
};
|
|
106989
|
+
requestBody: {
|
|
106990
|
+
content: {
|
|
106991
|
+
"application/json": components["schemas"]["CreateWhatsAppIntegrationSchema"];
|
|
106992
|
+
};
|
|
106993
|
+
};
|
|
106994
|
+
responses: {
|
|
106995
|
+
/** @description Created */
|
|
106996
|
+
201: {
|
|
106997
|
+
headers: {
|
|
106998
|
+
[name: string]: unknown;
|
|
106999
|
+
};
|
|
107000
|
+
content: {
|
|
107001
|
+
"application/json": components["schemas"]["WhatsAppIntegrationResponseSchema"];
|
|
107002
|
+
};
|
|
107003
|
+
};
|
|
107004
|
+
/** @description Bad Request */
|
|
107005
|
+
400: {
|
|
107006
|
+
headers: {
|
|
107007
|
+
[name: string]: unknown;
|
|
107008
|
+
};
|
|
107009
|
+
content: {
|
|
107010
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
107011
|
+
};
|
|
107012
|
+
};
|
|
107013
|
+
/** @description Forbidden */
|
|
107014
|
+
403: {
|
|
107015
|
+
headers: {
|
|
107016
|
+
[name: string]: unknown;
|
|
107017
|
+
};
|
|
107018
|
+
content: {
|
|
107019
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
107020
|
+
};
|
|
107021
|
+
};
|
|
107022
|
+
/** @description Conflict */
|
|
107023
|
+
409: {
|
|
107024
|
+
headers: {
|
|
107025
|
+
[name: string]: unknown;
|
|
107026
|
+
};
|
|
107027
|
+
content: {
|
|
107028
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
107029
|
+
};
|
|
107030
|
+
};
|
|
107031
|
+
/** @description Internal Server Error */
|
|
107032
|
+
500: {
|
|
107033
|
+
headers: {
|
|
107034
|
+
[name: string]: unknown;
|
|
107035
|
+
};
|
|
107036
|
+
content: {
|
|
107037
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
107038
|
+
};
|
|
107039
|
+
};
|
|
107040
|
+
};
|
|
107041
|
+
};
|
|
107042
|
+
integration_whatsapp_views_sync_approval_statuses: {
|
|
107043
|
+
parameters: {
|
|
107044
|
+
query?: never;
|
|
107045
|
+
header?: never;
|
|
107046
|
+
path?: never;
|
|
107047
|
+
cookie?: never;
|
|
107048
|
+
};
|
|
107049
|
+
requestBody?: never;
|
|
107050
|
+
responses: {
|
|
107051
|
+
/** @description OK */
|
|
107052
|
+
200: {
|
|
107053
|
+
headers: {
|
|
107054
|
+
[name: string]: unknown;
|
|
107055
|
+
};
|
|
107056
|
+
content: {
|
|
107057
|
+
"application/json": components["schemas"]["SyncApprovalStatusesResponseSchema"];
|
|
107058
|
+
};
|
|
107059
|
+
};
|
|
107060
|
+
/** @description Forbidden */
|
|
107061
|
+
403: {
|
|
107062
|
+
headers: {
|
|
107063
|
+
[name: string]: unknown;
|
|
107064
|
+
};
|
|
107065
|
+
content: {
|
|
107066
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
107067
|
+
};
|
|
107068
|
+
};
|
|
107069
|
+
/** @description Not Found */
|
|
107070
|
+
404: {
|
|
107071
|
+
headers: {
|
|
107072
|
+
[name: string]: unknown;
|
|
107073
|
+
};
|
|
107074
|
+
content: {
|
|
107075
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
107076
|
+
};
|
|
107077
|
+
};
|
|
107078
|
+
/** @description Internal Server Error */
|
|
107079
|
+
500: {
|
|
107080
|
+
headers: {
|
|
107081
|
+
[name: string]: unknown;
|
|
107082
|
+
};
|
|
107083
|
+
content: {
|
|
107084
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
107085
|
+
};
|
|
107086
|
+
};
|
|
107087
|
+
};
|
|
107088
|
+
};
|
|
107089
|
+
integration_whatsapp_views_get_templates: {
|
|
107090
|
+
parameters: {
|
|
107091
|
+
query?: {
|
|
107092
|
+
/** @description Page number */
|
|
107093
|
+
page?: number;
|
|
107094
|
+
/** @description Page size */
|
|
107095
|
+
pageSize?: number;
|
|
107096
|
+
/** @description Search by template name or language */
|
|
107097
|
+
search?: string | null;
|
|
107098
|
+
/** @description Filter by entity type */
|
|
107099
|
+
entityType?: components["schemas"]["EntityType"] | null;
|
|
107100
|
+
};
|
|
107101
|
+
header?: never;
|
|
107102
|
+
path?: never;
|
|
107103
|
+
cookie?: never;
|
|
107104
|
+
};
|
|
107105
|
+
requestBody?: never;
|
|
107106
|
+
responses: {
|
|
107107
|
+
/** @description OK */
|
|
107108
|
+
200: {
|
|
107109
|
+
headers: {
|
|
107110
|
+
[name: string]: unknown;
|
|
107111
|
+
};
|
|
107112
|
+
content: {
|
|
107113
|
+
"application/json": components["schemas"]["GetTemplatesResponseSchema"];
|
|
107114
|
+
};
|
|
107115
|
+
};
|
|
107116
|
+
/** @description Forbidden */
|
|
107117
|
+
403: {
|
|
107118
|
+
headers: {
|
|
107119
|
+
[name: string]: unknown;
|
|
107120
|
+
};
|
|
107121
|
+
content: {
|
|
107122
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
107123
|
+
};
|
|
107124
|
+
};
|
|
107125
|
+
/** @description Not Found */
|
|
107126
|
+
404: {
|
|
107127
|
+
headers: {
|
|
107128
|
+
[name: string]: unknown;
|
|
107129
|
+
};
|
|
107130
|
+
content: {
|
|
107131
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
107132
|
+
};
|
|
107133
|
+
};
|
|
107134
|
+
/** @description Internal Server Error */
|
|
107135
|
+
500: {
|
|
107136
|
+
headers: {
|
|
107137
|
+
[name: string]: unknown;
|
|
107138
|
+
};
|
|
107139
|
+
content: {
|
|
107140
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
107141
|
+
};
|
|
107142
|
+
};
|
|
107143
|
+
};
|
|
107144
|
+
};
|
|
107145
|
+
integration_whatsapp_views_register_template: {
|
|
107146
|
+
parameters: {
|
|
107147
|
+
query?: never;
|
|
107148
|
+
header?: never;
|
|
107149
|
+
path?: never;
|
|
107150
|
+
cookie?: never;
|
|
107151
|
+
};
|
|
107152
|
+
requestBody: {
|
|
107153
|
+
content: {
|
|
107154
|
+
"application/json": components["schemas"]["RegisterTemplateSchema"];
|
|
107155
|
+
};
|
|
107156
|
+
};
|
|
107157
|
+
responses: {
|
|
107158
|
+
/** @description Created */
|
|
107159
|
+
201: {
|
|
107160
|
+
headers: {
|
|
107161
|
+
[name: string]: unknown;
|
|
107162
|
+
};
|
|
107163
|
+
content: {
|
|
107164
|
+
"application/json": components["schemas"]["TemplateSchema"];
|
|
107165
|
+
};
|
|
107166
|
+
};
|
|
107167
|
+
/** @description Bad Request */
|
|
107168
|
+
400: {
|
|
107169
|
+
headers: {
|
|
107170
|
+
[name: string]: unknown;
|
|
107171
|
+
};
|
|
107172
|
+
content: {
|
|
107173
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
107174
|
+
};
|
|
107175
|
+
};
|
|
107176
|
+
/** @description Forbidden */
|
|
107177
|
+
403: {
|
|
107178
|
+
headers: {
|
|
107179
|
+
[name: string]: unknown;
|
|
107180
|
+
};
|
|
107181
|
+
content: {
|
|
107182
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
107183
|
+
};
|
|
107184
|
+
};
|
|
107185
|
+
/** @description Not Found */
|
|
107186
|
+
404: {
|
|
107187
|
+
headers: {
|
|
107188
|
+
[name: string]: unknown;
|
|
107189
|
+
};
|
|
107190
|
+
content: {
|
|
107191
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
107192
|
+
};
|
|
107193
|
+
};
|
|
107194
|
+
/** @description Internal Server Error */
|
|
107195
|
+
500: {
|
|
107196
|
+
headers: {
|
|
107197
|
+
[name: string]: unknown;
|
|
107198
|
+
};
|
|
107199
|
+
content: {
|
|
107200
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
107201
|
+
};
|
|
107202
|
+
};
|
|
107203
|
+
};
|
|
107204
|
+
};
|
|
107205
|
+
integration_whatsapp_views_get_template: {
|
|
107206
|
+
parameters: {
|
|
107207
|
+
query?: never;
|
|
107208
|
+
header?: never;
|
|
107209
|
+
path: {
|
|
107210
|
+
id: string;
|
|
107211
|
+
};
|
|
107212
|
+
cookie?: never;
|
|
107213
|
+
};
|
|
107214
|
+
requestBody?: never;
|
|
107215
|
+
responses: {
|
|
107216
|
+
/** @description OK */
|
|
107217
|
+
200: {
|
|
107218
|
+
headers: {
|
|
107219
|
+
[name: string]: unknown;
|
|
107220
|
+
};
|
|
107221
|
+
content: {
|
|
107222
|
+
"application/json": components["schemas"]["TemplateSchema"];
|
|
107223
|
+
};
|
|
107224
|
+
};
|
|
107225
|
+
/** @description Forbidden */
|
|
107226
|
+
403: {
|
|
107227
|
+
headers: {
|
|
107228
|
+
[name: string]: unknown;
|
|
107229
|
+
};
|
|
107230
|
+
content: {
|
|
107231
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
107232
|
+
};
|
|
107233
|
+
};
|
|
107234
|
+
/** @description Not Found */
|
|
107235
|
+
404: {
|
|
107236
|
+
headers: {
|
|
107237
|
+
[name: string]: unknown;
|
|
107238
|
+
};
|
|
107239
|
+
content: {
|
|
107240
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
107241
|
+
};
|
|
107242
|
+
};
|
|
107243
|
+
/** @description Internal Server Error */
|
|
107244
|
+
500: {
|
|
107245
|
+
headers: {
|
|
107246
|
+
[name: string]: unknown;
|
|
107247
|
+
};
|
|
107248
|
+
content: {
|
|
107249
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
107250
|
+
};
|
|
107251
|
+
};
|
|
107252
|
+
};
|
|
107253
|
+
};
|
|
107254
|
+
integration_whatsapp_views_delete_template: {
|
|
107255
|
+
parameters: {
|
|
107256
|
+
query?: never;
|
|
107257
|
+
header?: never;
|
|
107258
|
+
path: {
|
|
107259
|
+
id: string;
|
|
107260
|
+
};
|
|
107261
|
+
cookie?: never;
|
|
107262
|
+
};
|
|
107263
|
+
requestBody?: never;
|
|
107264
|
+
responses: {
|
|
107265
|
+
/** @description No Content */
|
|
107266
|
+
204: {
|
|
107267
|
+
headers: {
|
|
107268
|
+
[name: string]: unknown;
|
|
107269
|
+
};
|
|
107270
|
+
content?: never;
|
|
107271
|
+
};
|
|
107272
|
+
/** @description Bad Request */
|
|
107273
|
+
400: {
|
|
107274
|
+
headers: {
|
|
107275
|
+
[name: string]: unknown;
|
|
107276
|
+
};
|
|
107277
|
+
content: {
|
|
107278
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
107279
|
+
};
|
|
107280
|
+
};
|
|
107281
|
+
/** @description Forbidden */
|
|
107282
|
+
403: {
|
|
107283
|
+
headers: {
|
|
107284
|
+
[name: string]: unknown;
|
|
107285
|
+
};
|
|
107286
|
+
content: {
|
|
107287
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
107288
|
+
};
|
|
107289
|
+
};
|
|
107290
|
+
/** @description Not Found */
|
|
107291
|
+
404: {
|
|
107292
|
+
headers: {
|
|
107293
|
+
[name: string]: unknown;
|
|
107294
|
+
};
|
|
107295
|
+
content: {
|
|
107296
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
107297
|
+
};
|
|
107298
|
+
};
|
|
107299
|
+
/** @description Internal Server Error */
|
|
107300
|
+
500: {
|
|
107301
|
+
headers: {
|
|
107302
|
+
[name: string]: unknown;
|
|
107303
|
+
};
|
|
107304
|
+
content: {
|
|
107305
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
107306
|
+
};
|
|
107307
|
+
};
|
|
107308
|
+
};
|
|
107309
|
+
};
|
|
107310
|
+
erp_settings_notificationsettings_views_get_notification_setting: {
|
|
107311
|
+
parameters: {
|
|
107312
|
+
query?: never;
|
|
107313
|
+
header?: never;
|
|
107314
|
+
path: {
|
|
107315
|
+
id: string;
|
|
107316
|
+
};
|
|
107317
|
+
cookie?: never;
|
|
107318
|
+
};
|
|
107319
|
+
requestBody?: never;
|
|
107320
|
+
responses: {
|
|
107321
|
+
/** @description OK */
|
|
107322
|
+
200: {
|
|
107323
|
+
headers: {
|
|
107324
|
+
[name: string]: unknown;
|
|
107325
|
+
};
|
|
107326
|
+
content: {
|
|
107327
|
+
"application/json": components["schemas"]["RetrieveNotificationSetting"];
|
|
107328
|
+
};
|
|
107329
|
+
};
|
|
107330
|
+
/** @description Bad Request */
|
|
107331
|
+
400: {
|
|
107332
|
+
headers: {
|
|
107333
|
+
[name: string]: unknown;
|
|
107334
|
+
};
|
|
107335
|
+
content: {
|
|
107336
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
107337
|
+
};
|
|
107338
|
+
};
|
|
107339
|
+
/** @description Forbidden */
|
|
107340
|
+
403: {
|
|
107341
|
+
headers: {
|
|
107342
|
+
[name: string]: unknown;
|
|
107343
|
+
};
|
|
107344
|
+
content: {
|
|
107345
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
107346
|
+
};
|
|
107347
|
+
};
|
|
107348
|
+
/** @description Not Found */
|
|
107349
|
+
404: {
|
|
107350
|
+
headers: {
|
|
107351
|
+
[name: string]: unknown;
|
|
107352
|
+
};
|
|
107353
|
+
content: {
|
|
107354
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
107355
|
+
};
|
|
107356
|
+
};
|
|
107357
|
+
/** @description Internal Server Error */
|
|
107358
|
+
500: {
|
|
107359
|
+
headers: {
|
|
107360
|
+
[name: string]: unknown;
|
|
107361
|
+
};
|
|
107362
|
+
content: {
|
|
107363
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
107364
|
+
};
|
|
107365
|
+
};
|
|
107366
|
+
};
|
|
107367
|
+
};
|
|
107368
|
+
erp_settings_notificationsettings_views_edit_notification_setting: {
|
|
107369
|
+
parameters: {
|
|
107370
|
+
query?: never;
|
|
107371
|
+
header?: never;
|
|
107372
|
+
path: {
|
|
107373
|
+
id: string;
|
|
107374
|
+
};
|
|
107375
|
+
cookie?: never;
|
|
107376
|
+
};
|
|
107377
|
+
requestBody: {
|
|
107378
|
+
content: {
|
|
107379
|
+
"application/json": components["schemas"]["UpdateNotificationSetting"];
|
|
107380
|
+
};
|
|
107381
|
+
};
|
|
107382
|
+
responses: {
|
|
107383
|
+
/** @description OK */
|
|
107384
|
+
200: {
|
|
107385
|
+
headers: {
|
|
107386
|
+
[name: string]: unknown;
|
|
107387
|
+
};
|
|
107388
|
+
content: {
|
|
107389
|
+
"application/json": components["schemas"]["RetrieveNotificationSetting"];
|
|
107390
|
+
};
|
|
107391
|
+
};
|
|
107392
|
+
/** @description Bad Request */
|
|
107393
|
+
400: {
|
|
107394
|
+
headers: {
|
|
107395
|
+
[name: string]: unknown;
|
|
107396
|
+
};
|
|
107397
|
+
content: {
|
|
107398
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
107399
|
+
};
|
|
107400
|
+
};
|
|
107401
|
+
/** @description Forbidden */
|
|
107402
|
+
403: {
|
|
107403
|
+
headers: {
|
|
107404
|
+
[name: string]: unknown;
|
|
107405
|
+
};
|
|
107406
|
+
content: {
|
|
107407
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
107408
|
+
};
|
|
107409
|
+
};
|
|
107410
|
+
/** @description Not Found */
|
|
107411
|
+
404: {
|
|
107412
|
+
headers: {
|
|
107413
|
+
[name: string]: unknown;
|
|
107414
|
+
};
|
|
107415
|
+
content: {
|
|
107416
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
107417
|
+
};
|
|
107418
|
+
};
|
|
107419
|
+
/** @description Conflict */
|
|
107420
|
+
409: {
|
|
107421
|
+
headers: {
|
|
107422
|
+
[name: string]: unknown;
|
|
107423
|
+
};
|
|
107424
|
+
content: {
|
|
107425
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
107426
|
+
};
|
|
107427
|
+
};
|
|
107428
|
+
/** @description Internal Server Error */
|
|
107429
|
+
500: {
|
|
107430
|
+
headers: {
|
|
107431
|
+
[name: string]: unknown;
|
|
107432
|
+
};
|
|
107433
|
+
content: {
|
|
107434
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
107435
|
+
};
|
|
107436
|
+
};
|
|
107437
|
+
};
|
|
107438
|
+
};
|
|
107439
|
+
erp_settings_notificationsettings_views_list_notification_settings: {
|
|
106226
107440
|
parameters: {
|
|
106227
|
-
query
|
|
106228
|
-
/** @description
|
|
106229
|
-
|
|
106230
|
-
/** @description Shopify host parameter */
|
|
106231
|
-
host?: string | null;
|
|
106232
|
-
/** @description Embedded app indicator */
|
|
106233
|
-
embedded?: string | null;
|
|
106234
|
-
/** @description HMAC signature */
|
|
106235
|
-
hmac?: string | null;
|
|
106236
|
-
/** @description Shopify ID token */
|
|
106237
|
-
id_token?: string | null;
|
|
106238
|
-
/** @description User locale */
|
|
106239
|
-
locale?: string | null;
|
|
106240
|
-
/** @description Session ID */
|
|
106241
|
-
session?: string | null;
|
|
106242
|
-
/** @description Request timestamp */
|
|
106243
|
-
timestamp?: string | null;
|
|
107441
|
+
query?: {
|
|
107442
|
+
/** @description Search notification setting by notification type */
|
|
107443
|
+
search?: string | null;
|
|
106244
107444
|
};
|
|
106245
107445
|
header?: never;
|
|
106246
107446
|
path?: never;
|
|
@@ -106254,23 +107454,34 @@ export interface operations {
|
|
|
106254
107454
|
[name: string]: unknown;
|
|
106255
107455
|
};
|
|
106256
107456
|
content: {
|
|
106257
|
-
"application/json":
|
|
107457
|
+
"application/json": components["schemas"]["NotificationSettingList"];
|
|
106258
107458
|
};
|
|
106259
107459
|
};
|
|
106260
|
-
/** @description
|
|
106261
|
-
|
|
107460
|
+
/** @description Bad Request */
|
|
107461
|
+
400: {
|
|
106262
107462
|
headers: {
|
|
106263
107463
|
[name: string]: unknown;
|
|
106264
107464
|
};
|
|
106265
|
-
content
|
|
107465
|
+
content: {
|
|
107466
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
107467
|
+
};
|
|
106266
107468
|
};
|
|
106267
|
-
/** @description
|
|
106268
|
-
|
|
107469
|
+
/** @description Forbidden */
|
|
107470
|
+
403: {
|
|
106269
107471
|
headers: {
|
|
106270
107472
|
[name: string]: unknown;
|
|
106271
107473
|
};
|
|
106272
107474
|
content: {
|
|
106273
|
-
"application/json": components["schemas"]["
|
|
107475
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
107476
|
+
};
|
|
107477
|
+
};
|
|
107478
|
+
/** @description Not Found */
|
|
107479
|
+
404: {
|
|
107480
|
+
headers: {
|
|
107481
|
+
[name: string]: unknown;
|
|
107482
|
+
};
|
|
107483
|
+
content: {
|
|
107484
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
106274
107485
|
};
|
|
106275
107486
|
};
|
|
106276
107487
|
/** @description Internal Server Error */
|
|
@@ -106284,16 +107495,9 @@ export interface operations {
|
|
|
106284
107495
|
};
|
|
106285
107496
|
};
|
|
106286
107497
|
};
|
|
106287
|
-
|
|
107498
|
+
notification_views_notification_stream: {
|
|
106288
107499
|
parameters: {
|
|
106289
|
-
query
|
|
106290
|
-
shop: string;
|
|
106291
|
-
code: string;
|
|
106292
|
-
hmac: string;
|
|
106293
|
-
timestamp: string;
|
|
106294
|
-
state?: string | null;
|
|
106295
|
-
host?: string | null;
|
|
106296
|
-
};
|
|
107500
|
+
query?: never;
|
|
106297
107501
|
header?: never;
|
|
106298
107502
|
path?: never;
|
|
106299
107503
|
cookie?: never;
|
|
@@ -106305,18 +107509,7 @@ export interface operations {
|
|
|
106305
107509
|
headers: {
|
|
106306
107510
|
[name: string]: unknown;
|
|
106307
107511
|
};
|
|
106308
|
-
content
|
|
106309
|
-
"application/json": components["schemas"]["ShopifyOAuthResponseSchema"];
|
|
106310
|
-
};
|
|
106311
|
-
};
|
|
106312
|
-
/** @description Bad Request */
|
|
106313
|
-
400: {
|
|
106314
|
-
headers: {
|
|
106315
|
-
[name: string]: unknown;
|
|
106316
|
-
};
|
|
106317
|
-
content: {
|
|
106318
|
-
"application/json": components["schemas"]["ErrorMessages"];
|
|
106319
|
-
};
|
|
107512
|
+
content?: never;
|
|
106320
107513
|
};
|
|
106321
107514
|
/** @description Forbidden */
|
|
106322
107515
|
403: {
|
|
@@ -106338,9 +107531,12 @@ export interface operations {
|
|
|
106338
107531
|
};
|
|
106339
107532
|
};
|
|
106340
107533
|
};
|
|
106341
|
-
|
|
107534
|
+
notification_views_list_notification: {
|
|
106342
107535
|
parameters: {
|
|
106343
|
-
query?:
|
|
107536
|
+
query?: {
|
|
107537
|
+
/** @description Search notification by title or message */
|
|
107538
|
+
search?: string | null;
|
|
107539
|
+
};
|
|
106344
107540
|
header?: never;
|
|
106345
107541
|
path?: never;
|
|
106346
107542
|
cookie?: never;
|
|
@@ -106353,7 +107549,7 @@ export interface operations {
|
|
|
106353
107549
|
[name: string]: unknown;
|
|
106354
107550
|
};
|
|
106355
107551
|
content: {
|
|
106356
|
-
"application/json": components["schemas"]["
|
|
107552
|
+
"application/json": components["schemas"]["NotificationsList"];
|
|
106357
107553
|
};
|
|
106358
107554
|
};
|
|
106359
107555
|
/** @description Bad Request */
|
|
@@ -106365,22 +107561,13 @@ export interface operations {
|
|
|
106365
107561
|
"application/json": components["schemas"]["ErrorMessages"];
|
|
106366
107562
|
};
|
|
106367
107563
|
};
|
|
106368
|
-
/** @description
|
|
106369
|
-
|
|
106370
|
-
headers: {
|
|
106371
|
-
[name: string]: unknown;
|
|
106372
|
-
};
|
|
106373
|
-
content: {
|
|
106374
|
-
"application/json": components["schemas"]["MessageWithCode"];
|
|
106375
|
-
};
|
|
106376
|
-
};
|
|
106377
|
-
/** @description Conflict */
|
|
106378
|
-
409: {
|
|
107564
|
+
/** @description Forbidden */
|
|
107565
|
+
403: {
|
|
106379
107566
|
headers: {
|
|
106380
107567
|
[name: string]: unknown;
|
|
106381
107568
|
};
|
|
106382
107569
|
content: {
|
|
106383
|
-
"application/json": components["schemas"]["
|
|
107570
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
106384
107571
|
};
|
|
106385
107572
|
};
|
|
106386
107573
|
/** @description Internal Server Error */
|
|
@@ -106389,31 +107576,33 @@ export interface operations {
|
|
|
106389
107576
|
[name: string]: unknown;
|
|
106390
107577
|
};
|
|
106391
107578
|
content: {
|
|
106392
|
-
"application/json": components["schemas"]["
|
|
107579
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
106393
107580
|
};
|
|
106394
107581
|
};
|
|
106395
107582
|
};
|
|
106396
107583
|
};
|
|
106397
|
-
|
|
107584
|
+
notification_views_update_notification_status: {
|
|
106398
107585
|
parameters: {
|
|
106399
107586
|
query?: never;
|
|
106400
107587
|
header?: never;
|
|
106401
|
-
path
|
|
107588
|
+
path: {
|
|
107589
|
+
id: string;
|
|
107590
|
+
};
|
|
106402
107591
|
cookie?: never;
|
|
106403
107592
|
};
|
|
106404
107593
|
requestBody: {
|
|
106405
107594
|
content: {
|
|
106406
|
-
"application/json": components["schemas"]["
|
|
107595
|
+
"application/json": components["schemas"]["MarkAsReadNotif"];
|
|
106407
107596
|
};
|
|
106408
107597
|
};
|
|
106409
107598
|
responses: {
|
|
106410
|
-
/** @description
|
|
106411
|
-
|
|
107599
|
+
/** @description OK */
|
|
107600
|
+
200: {
|
|
106412
107601
|
headers: {
|
|
106413
107602
|
[name: string]: unknown;
|
|
106414
107603
|
};
|
|
106415
107604
|
content: {
|
|
106416
|
-
"application/json": components["schemas"]["
|
|
107605
|
+
"application/json": components["schemas"]["RetrieveNotificationRecipient"];
|
|
106417
107606
|
};
|
|
106418
107607
|
};
|
|
106419
107608
|
/** @description Bad Request */
|
|
@@ -106431,16 +107620,16 @@ export interface operations {
|
|
|
106431
107620
|
[name: string]: unknown;
|
|
106432
107621
|
};
|
|
106433
107622
|
content: {
|
|
106434
|
-
"application/json": components["schemas"]["
|
|
107623
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
106435
107624
|
};
|
|
106436
107625
|
};
|
|
106437
|
-
/** @description
|
|
106438
|
-
|
|
107626
|
+
/** @description Not Found */
|
|
107627
|
+
404: {
|
|
106439
107628
|
headers: {
|
|
106440
107629
|
[name: string]: unknown;
|
|
106441
107630
|
};
|
|
106442
107631
|
content: {
|
|
106443
|
-
"application/json": components["schemas"]["
|
|
107632
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
106444
107633
|
};
|
|
106445
107634
|
};
|
|
106446
107635
|
/** @description Internal Server Error */
|
|
@@ -106449,19 +107638,23 @@ export interface operations {
|
|
|
106449
107638
|
[name: string]: unknown;
|
|
106450
107639
|
};
|
|
106451
107640
|
content: {
|
|
106452
|
-
"application/json": components["schemas"]["
|
|
107641
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
106453
107642
|
};
|
|
106454
107643
|
};
|
|
106455
107644
|
};
|
|
106456
107645
|
};
|
|
106457
|
-
|
|
107646
|
+
notification_views_batch_update_notification_status: {
|
|
106458
107647
|
parameters: {
|
|
106459
107648
|
query?: never;
|
|
106460
107649
|
header?: never;
|
|
106461
107650
|
path?: never;
|
|
106462
107651
|
cookie?: never;
|
|
106463
107652
|
};
|
|
106464
|
-
requestBody
|
|
107653
|
+
requestBody: {
|
|
107654
|
+
content: {
|
|
107655
|
+
"application/json": components["schemas"]["BatchUpdateStatus"];
|
|
107656
|
+
};
|
|
107657
|
+
};
|
|
106465
107658
|
responses: {
|
|
106466
107659
|
/** @description OK */
|
|
106467
107660
|
200: {
|
|
@@ -106469,7 +107662,16 @@ export interface operations {
|
|
|
106469
107662
|
[name: string]: unknown;
|
|
106470
107663
|
};
|
|
106471
107664
|
content: {
|
|
106472
|
-
"application/json": components["schemas"]["
|
|
107665
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
107666
|
+
};
|
|
107667
|
+
};
|
|
107668
|
+
/** @description Bad Request */
|
|
107669
|
+
400: {
|
|
107670
|
+
headers: {
|
|
107671
|
+
[name: string]: unknown;
|
|
107672
|
+
};
|
|
107673
|
+
content: {
|
|
107674
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
106473
107675
|
};
|
|
106474
107676
|
};
|
|
106475
107677
|
/** @description Forbidden */
|
|
@@ -106478,7 +107680,7 @@ export interface operations {
|
|
|
106478
107680
|
[name: string]: unknown;
|
|
106479
107681
|
};
|
|
106480
107682
|
content: {
|
|
106481
|
-
"application/json": components["schemas"]["
|
|
107683
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
106482
107684
|
};
|
|
106483
107685
|
};
|
|
106484
107686
|
/** @description Not Found */
|
|
@@ -106487,7 +107689,7 @@ export interface operations {
|
|
|
106487
107689
|
[name: string]: unknown;
|
|
106488
107690
|
};
|
|
106489
107691
|
content: {
|
|
106490
|
-
"application/json": components["schemas"]["
|
|
107692
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
106491
107693
|
};
|
|
106492
107694
|
};
|
|
106493
107695
|
/** @description Internal Server Error */
|
|
@@ -106496,25 +107698,18 @@ export interface operations {
|
|
|
106496
107698
|
[name: string]: unknown;
|
|
106497
107699
|
};
|
|
106498
107700
|
content: {
|
|
106499
|
-
"application/json": components["schemas"]["
|
|
107701
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
106500
107702
|
};
|
|
106501
107703
|
};
|
|
106502
107704
|
};
|
|
106503
107705
|
};
|
|
106504
|
-
|
|
107706
|
+
notification_views_get_notification: {
|
|
106505
107707
|
parameters: {
|
|
106506
|
-
query?:
|
|
106507
|
-
/** @description Page number */
|
|
106508
|
-
page?: number;
|
|
106509
|
-
/** @description Page size */
|
|
106510
|
-
pageSize?: number;
|
|
106511
|
-
/** @description Search by template name or language */
|
|
106512
|
-
search?: string | null;
|
|
106513
|
-
/** @description Filter by entity type */
|
|
106514
|
-
entityType?: components["schemas"]["EntityType"] | null;
|
|
106515
|
-
};
|
|
107708
|
+
query?: never;
|
|
106516
107709
|
header?: never;
|
|
106517
|
-
path
|
|
107710
|
+
path: {
|
|
107711
|
+
id: string;
|
|
107712
|
+
};
|
|
106518
107713
|
cookie?: never;
|
|
106519
107714
|
};
|
|
106520
107715
|
requestBody?: never;
|
|
@@ -106525,7 +107720,7 @@ export interface operations {
|
|
|
106525
107720
|
[name: string]: unknown;
|
|
106526
107721
|
};
|
|
106527
107722
|
content: {
|
|
106528
|
-
"application/json": components["schemas"]["
|
|
107723
|
+
"application/json": components["schemas"]["RetrieveNotificationRecipient"];
|
|
106529
107724
|
};
|
|
106530
107725
|
};
|
|
106531
107726
|
/** @description Forbidden */
|
|
@@ -106534,7 +107729,7 @@ export interface operations {
|
|
|
106534
107729
|
[name: string]: unknown;
|
|
106535
107730
|
};
|
|
106536
107731
|
content: {
|
|
106537
|
-
"application/json": components["schemas"]["
|
|
107732
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
106538
107733
|
};
|
|
106539
107734
|
};
|
|
106540
107735
|
/** @description Not Found */
|
|
@@ -106543,7 +107738,7 @@ export interface operations {
|
|
|
106543
107738
|
[name: string]: unknown;
|
|
106544
107739
|
};
|
|
106545
107740
|
content: {
|
|
106546
|
-
"application/json": components["schemas"]["
|
|
107741
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
106547
107742
|
};
|
|
106548
107743
|
};
|
|
106549
107744
|
/** @description Internal Server Error */
|
|
@@ -106552,31 +107747,30 @@ export interface operations {
|
|
|
106552
107747
|
[name: string]: unknown;
|
|
106553
107748
|
};
|
|
106554
107749
|
content: {
|
|
106555
|
-
"application/json": components["schemas"]["
|
|
107750
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
106556
107751
|
};
|
|
106557
107752
|
};
|
|
106558
107753
|
};
|
|
106559
107754
|
};
|
|
106560
|
-
|
|
107755
|
+
event_views_list_events: {
|
|
106561
107756
|
parameters: {
|
|
106562
|
-
query?:
|
|
107757
|
+
query?: {
|
|
107758
|
+
/** @description Search event by title */
|
|
107759
|
+
search?: string | null;
|
|
107760
|
+
};
|
|
106563
107761
|
header?: never;
|
|
106564
107762
|
path?: never;
|
|
106565
107763
|
cookie?: never;
|
|
106566
107764
|
};
|
|
106567
|
-
requestBody
|
|
106568
|
-
content: {
|
|
106569
|
-
"application/json": components["schemas"]["RegisterTemplateSchema"];
|
|
106570
|
-
};
|
|
106571
|
-
};
|
|
107765
|
+
requestBody?: never;
|
|
106572
107766
|
responses: {
|
|
106573
|
-
/** @description
|
|
106574
|
-
|
|
107767
|
+
/** @description OK */
|
|
107768
|
+
200: {
|
|
106575
107769
|
headers: {
|
|
106576
107770
|
[name: string]: unknown;
|
|
106577
107771
|
};
|
|
106578
107772
|
content: {
|
|
106579
|
-
"application/json": components["schemas"]["
|
|
107773
|
+
"application/json": components["schemas"]["EventsListSchema"];
|
|
106580
107774
|
};
|
|
106581
107775
|
};
|
|
106582
107776
|
/** @description Bad Request */
|
|
@@ -106594,7 +107788,7 @@ export interface operations {
|
|
|
106594
107788
|
[name: string]: unknown;
|
|
106595
107789
|
};
|
|
106596
107790
|
content: {
|
|
106597
|
-
"application/json": components["schemas"]["
|
|
107791
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
106598
107792
|
};
|
|
106599
107793
|
};
|
|
106600
107794
|
/** @description Not Found */
|
|
@@ -106603,7 +107797,16 @@ export interface operations {
|
|
|
106603
107797
|
[name: string]: unknown;
|
|
106604
107798
|
};
|
|
106605
107799
|
content: {
|
|
106606
|
-
"application/json": components["schemas"]["
|
|
107800
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
107801
|
+
};
|
|
107802
|
+
};
|
|
107803
|
+
/** @description Conflict */
|
|
107804
|
+
409: {
|
|
107805
|
+
headers: {
|
|
107806
|
+
[name: string]: unknown;
|
|
107807
|
+
};
|
|
107808
|
+
content: {
|
|
107809
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
106607
107810
|
};
|
|
106608
107811
|
};
|
|
106609
107812
|
/** @description Internal Server Error */
|
|
@@ -106612,29 +107815,40 @@ export interface operations {
|
|
|
106612
107815
|
[name: string]: unknown;
|
|
106613
107816
|
};
|
|
106614
107817
|
content: {
|
|
106615
|
-
"application/json": components["schemas"]["
|
|
107818
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
106616
107819
|
};
|
|
106617
107820
|
};
|
|
106618
107821
|
};
|
|
106619
107822
|
};
|
|
106620
|
-
|
|
107823
|
+
event_views_create_event: {
|
|
106621
107824
|
parameters: {
|
|
106622
107825
|
query?: never;
|
|
106623
107826
|
header?: never;
|
|
106624
|
-
path
|
|
106625
|
-
id: string;
|
|
106626
|
-
};
|
|
107827
|
+
path?: never;
|
|
106627
107828
|
cookie?: never;
|
|
106628
107829
|
};
|
|
106629
|
-
requestBody
|
|
107830
|
+
requestBody: {
|
|
107831
|
+
content: {
|
|
107832
|
+
"application/json": components["schemas"]["CreateUpdateEvent"];
|
|
107833
|
+
};
|
|
107834
|
+
};
|
|
106630
107835
|
responses: {
|
|
106631
|
-
/** @description
|
|
106632
|
-
|
|
107836
|
+
/** @description Created */
|
|
107837
|
+
201: {
|
|
106633
107838
|
headers: {
|
|
106634
107839
|
[name: string]: unknown;
|
|
106635
107840
|
};
|
|
106636
107841
|
content: {
|
|
106637
|
-
"application/json": components["schemas"]["
|
|
107842
|
+
"application/json": components["schemas"]["RetrieveEvent"];
|
|
107843
|
+
};
|
|
107844
|
+
};
|
|
107845
|
+
/** @description Bad Request */
|
|
107846
|
+
400: {
|
|
107847
|
+
headers: {
|
|
107848
|
+
[name: string]: unknown;
|
|
107849
|
+
};
|
|
107850
|
+
content: {
|
|
107851
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
106638
107852
|
};
|
|
106639
107853
|
};
|
|
106640
107854
|
/** @description Forbidden */
|
|
@@ -106643,7 +107857,7 @@ export interface operations {
|
|
|
106643
107857
|
[name: string]: unknown;
|
|
106644
107858
|
};
|
|
106645
107859
|
content: {
|
|
106646
|
-
"application/json": components["schemas"]["
|
|
107860
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
106647
107861
|
};
|
|
106648
107862
|
};
|
|
106649
107863
|
/** @description Not Found */
|
|
@@ -106652,7 +107866,16 @@ export interface operations {
|
|
|
106652
107866
|
[name: string]: unknown;
|
|
106653
107867
|
};
|
|
106654
107868
|
content: {
|
|
106655
|
-
"application/json": components["schemas"]["
|
|
107869
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
107870
|
+
};
|
|
107871
|
+
};
|
|
107872
|
+
/** @description Conflict */
|
|
107873
|
+
409: {
|
|
107874
|
+
headers: {
|
|
107875
|
+
[name: string]: unknown;
|
|
107876
|
+
};
|
|
107877
|
+
content: {
|
|
107878
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
106656
107879
|
};
|
|
106657
107880
|
};
|
|
106658
107881
|
/** @description Internal Server Error */
|
|
@@ -106661,12 +107884,12 @@ export interface operations {
|
|
|
106661
107884
|
[name: string]: unknown;
|
|
106662
107885
|
};
|
|
106663
107886
|
content: {
|
|
106664
|
-
"application/json": components["schemas"]["
|
|
107887
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
106665
107888
|
};
|
|
106666
107889
|
};
|
|
106667
107890
|
};
|
|
106668
107891
|
};
|
|
106669
|
-
|
|
107892
|
+
event_views_get_event: {
|
|
106670
107893
|
parameters: {
|
|
106671
107894
|
query?: never;
|
|
106672
107895
|
header?: never;
|
|
@@ -106677,20 +107900,13 @@ export interface operations {
|
|
|
106677
107900
|
};
|
|
106678
107901
|
requestBody?: never;
|
|
106679
107902
|
responses: {
|
|
106680
|
-
/** @description
|
|
106681
|
-
|
|
106682
|
-
headers: {
|
|
106683
|
-
[name: string]: unknown;
|
|
106684
|
-
};
|
|
106685
|
-
content?: never;
|
|
106686
|
-
};
|
|
106687
|
-
/** @description Bad Request */
|
|
106688
|
-
400: {
|
|
107903
|
+
/** @description OK */
|
|
107904
|
+
200: {
|
|
106689
107905
|
headers: {
|
|
106690
107906
|
[name: string]: unknown;
|
|
106691
107907
|
};
|
|
106692
107908
|
content: {
|
|
106693
|
-
"application/json": components["schemas"]["
|
|
107909
|
+
"application/json": components["schemas"]["RetrieveEvent"];
|
|
106694
107910
|
};
|
|
106695
107911
|
};
|
|
106696
107912
|
/** @description Forbidden */
|
|
@@ -106699,7 +107915,7 @@ export interface operations {
|
|
|
106699
107915
|
[name: string]: unknown;
|
|
106700
107916
|
};
|
|
106701
107917
|
content: {
|
|
106702
|
-
"application/json": components["schemas"]["
|
|
107918
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
106703
107919
|
};
|
|
106704
107920
|
};
|
|
106705
107921
|
/** @description Not Found */
|
|
@@ -106708,7 +107924,7 @@ export interface operations {
|
|
|
106708
107924
|
[name: string]: unknown;
|
|
106709
107925
|
};
|
|
106710
107926
|
content: {
|
|
106711
|
-
"application/json": components["schemas"]["
|
|
107927
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
106712
107928
|
};
|
|
106713
107929
|
};
|
|
106714
107930
|
/** @description Internal Server Error */
|
|
@@ -106717,12 +107933,12 @@ export interface operations {
|
|
|
106717
107933
|
[name: string]: unknown;
|
|
106718
107934
|
};
|
|
106719
107935
|
content: {
|
|
106720
|
-
"application/json": components["schemas"]["
|
|
107936
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
106721
107937
|
};
|
|
106722
107938
|
};
|
|
106723
107939
|
};
|
|
106724
107940
|
};
|
|
106725
|
-
|
|
107941
|
+
event_views_edit_event: {
|
|
106726
107942
|
parameters: {
|
|
106727
107943
|
query?: never;
|
|
106728
107944
|
header?: never;
|
|
@@ -106731,7 +107947,11 @@ export interface operations {
|
|
|
106731
107947
|
};
|
|
106732
107948
|
cookie?: never;
|
|
106733
107949
|
};
|
|
106734
|
-
requestBody
|
|
107950
|
+
requestBody: {
|
|
107951
|
+
content: {
|
|
107952
|
+
"application/json": components["schemas"]["CreateUpdateEvent"];
|
|
107953
|
+
};
|
|
107954
|
+
};
|
|
106735
107955
|
responses: {
|
|
106736
107956
|
/** @description OK */
|
|
106737
107957
|
200: {
|
|
@@ -106739,7 +107959,7 @@ export interface operations {
|
|
|
106739
107959
|
[name: string]: unknown;
|
|
106740
107960
|
};
|
|
106741
107961
|
content: {
|
|
106742
|
-
"application/json": components["schemas"]["
|
|
107962
|
+
"application/json": components["schemas"]["RetrieveEvent"];
|
|
106743
107963
|
};
|
|
106744
107964
|
};
|
|
106745
107965
|
/** @description Bad Request */
|
|
@@ -106769,6 +107989,15 @@ export interface operations {
|
|
|
106769
107989
|
"application/json": components["schemas"]["MessageResponse"];
|
|
106770
107990
|
};
|
|
106771
107991
|
};
|
|
107992
|
+
/** @description Conflict */
|
|
107993
|
+
409: {
|
|
107994
|
+
headers: {
|
|
107995
|
+
[name: string]: unknown;
|
|
107996
|
+
};
|
|
107997
|
+
content: {
|
|
107998
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
107999
|
+
};
|
|
108000
|
+
};
|
|
106772
108001
|
/** @description Internal Server Error */
|
|
106773
108002
|
500: {
|
|
106774
108003
|
headers: {
|
|
@@ -106780,7 +108009,7 @@ export interface operations {
|
|
|
106780
108009
|
};
|
|
106781
108010
|
};
|
|
106782
108011
|
};
|
|
106783
|
-
|
|
108012
|
+
event_views_delete_event: {
|
|
106784
108013
|
parameters: {
|
|
106785
108014
|
query?: never;
|
|
106786
108015
|
header?: never;
|
|
@@ -106789,20 +108018,14 @@ export interface operations {
|
|
|
106789
108018
|
};
|
|
106790
108019
|
cookie?: never;
|
|
106791
108020
|
};
|
|
106792
|
-
requestBody
|
|
106793
|
-
content: {
|
|
106794
|
-
"application/json": components["schemas"]["UpdateNotificationSetting"];
|
|
106795
|
-
};
|
|
106796
|
-
};
|
|
108021
|
+
requestBody?: never;
|
|
106797
108022
|
responses: {
|
|
106798
|
-
/** @description
|
|
106799
|
-
|
|
108023
|
+
/** @description No Content */
|
|
108024
|
+
204: {
|
|
106800
108025
|
headers: {
|
|
106801
108026
|
[name: string]: unknown;
|
|
106802
108027
|
};
|
|
106803
|
-
content
|
|
106804
|
-
"application/json": components["schemas"]["RetrieveNotificationSetting"];
|
|
106805
|
-
};
|
|
108028
|
+
content?: never;
|
|
106806
108029
|
};
|
|
106807
108030
|
/** @description Bad Request */
|
|
106808
108031
|
400: {
|
|
@@ -106851,14 +108074,13 @@ export interface operations {
|
|
|
106851
108074
|
};
|
|
106852
108075
|
};
|
|
106853
108076
|
};
|
|
106854
|
-
|
|
108077
|
+
event_views_cancel_event: {
|
|
106855
108078
|
parameters: {
|
|
106856
|
-
query?:
|
|
106857
|
-
/** @description Search notification setting by notification type */
|
|
106858
|
-
search?: string | null;
|
|
106859
|
-
};
|
|
108079
|
+
query?: never;
|
|
106860
108080
|
header?: never;
|
|
106861
|
-
path
|
|
108081
|
+
path: {
|
|
108082
|
+
id: string;
|
|
108083
|
+
};
|
|
106862
108084
|
cookie?: never;
|
|
106863
108085
|
};
|
|
106864
108086
|
requestBody?: never;
|
|
@@ -106869,7 +108091,7 @@ export interface operations {
|
|
|
106869
108091
|
[name: string]: unknown;
|
|
106870
108092
|
};
|
|
106871
108093
|
content: {
|
|
106872
|
-
"application/json": components["schemas"]["
|
|
108094
|
+
"application/json": components["schemas"]["RetrieveEvent"];
|
|
106873
108095
|
};
|
|
106874
108096
|
};
|
|
106875
108097
|
/** @description Bad Request */
|
|
@@ -106899,6 +108121,15 @@ export interface operations {
|
|
|
106899
108121
|
"application/json": components["schemas"]["MessageResponse"];
|
|
106900
108122
|
};
|
|
106901
108123
|
};
|
|
108124
|
+
/** @description Conflict */
|
|
108125
|
+
409: {
|
|
108126
|
+
headers: {
|
|
108127
|
+
[name: string]: unknown;
|
|
108128
|
+
};
|
|
108129
|
+
content: {
|
|
108130
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
108131
|
+
};
|
|
108132
|
+
};
|
|
106902
108133
|
/** @description Internal Server Error */
|
|
106903
108134
|
500: {
|
|
106904
108135
|
headers: {
|
|
@@ -106910,9 +108141,15 @@ export interface operations {
|
|
|
106910
108141
|
};
|
|
106911
108142
|
};
|
|
106912
108143
|
};
|
|
106913
|
-
|
|
108144
|
+
maintenance_views_list_repair_orders: {
|
|
106914
108145
|
parameters: {
|
|
106915
|
-
query?:
|
|
108146
|
+
query?: {
|
|
108147
|
+
search?: string | null;
|
|
108148
|
+
/** @description Field to sort repair orders by: itemName, customerName, serialNumber, or date. */
|
|
108149
|
+
sortBy?: components["schemas"]["RepairOrderSortBy"] | null;
|
|
108150
|
+
/** @description Sort order: ascending or descending. */
|
|
108151
|
+
order?: components["schemas"]["SortOrder"] | null;
|
|
108152
|
+
};
|
|
106916
108153
|
header?: never;
|
|
106917
108154
|
path?: never;
|
|
106918
108155
|
cookie?: never;
|
|
@@ -106924,7 +108161,18 @@ export interface operations {
|
|
|
106924
108161
|
headers: {
|
|
106925
108162
|
[name: string]: unknown;
|
|
106926
108163
|
};
|
|
106927
|
-
content
|
|
108164
|
+
content: {
|
|
108165
|
+
"application/json": components["schemas"]["RepairOrderListSchema"];
|
|
108166
|
+
};
|
|
108167
|
+
};
|
|
108168
|
+
/** @description Bad Request */
|
|
108169
|
+
400: {
|
|
108170
|
+
headers: {
|
|
108171
|
+
[name: string]: unknown;
|
|
108172
|
+
};
|
|
108173
|
+
content: {
|
|
108174
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
108175
|
+
};
|
|
106928
108176
|
};
|
|
106929
108177
|
/** @description Forbidden */
|
|
106930
108178
|
403: {
|
|
@@ -106946,25 +108194,26 @@ export interface operations {
|
|
|
106946
108194
|
};
|
|
106947
108195
|
};
|
|
106948
108196
|
};
|
|
106949
|
-
|
|
108197
|
+
maintenance_views_create_repair_order: {
|
|
106950
108198
|
parameters: {
|
|
106951
|
-
query?:
|
|
106952
|
-
/** @description Search notification by title or message */
|
|
106953
|
-
search?: string | null;
|
|
106954
|
-
};
|
|
108199
|
+
query?: never;
|
|
106955
108200
|
header?: never;
|
|
106956
108201
|
path?: never;
|
|
106957
108202
|
cookie?: never;
|
|
106958
108203
|
};
|
|
106959
|
-
requestBody
|
|
108204
|
+
requestBody: {
|
|
108205
|
+
content: {
|
|
108206
|
+
"application/json": components["schemas"]["CreateRepairOrderSchema"];
|
|
108207
|
+
};
|
|
108208
|
+
};
|
|
106960
108209
|
responses: {
|
|
106961
|
-
/** @description
|
|
106962
|
-
|
|
108210
|
+
/** @description Created */
|
|
108211
|
+
201: {
|
|
106963
108212
|
headers: {
|
|
106964
108213
|
[name: string]: unknown;
|
|
106965
108214
|
};
|
|
106966
108215
|
content: {
|
|
106967
|
-
"application/json": components["schemas"]["
|
|
108216
|
+
"application/json": components["schemas"]["RepairOrderDetailSchema"];
|
|
106968
108217
|
};
|
|
106969
108218
|
};
|
|
106970
108219
|
/** @description Bad Request */
|
|
@@ -106996,7 +108245,7 @@ export interface operations {
|
|
|
106996
108245
|
};
|
|
106997
108246
|
};
|
|
106998
108247
|
};
|
|
106999
|
-
|
|
108248
|
+
maintenance_views_get_repair_order: {
|
|
107000
108249
|
parameters: {
|
|
107001
108250
|
query?: never;
|
|
107002
108251
|
header?: never;
|
|
@@ -107005,11 +108254,7 @@ export interface operations {
|
|
|
107005
108254
|
};
|
|
107006
108255
|
cookie?: never;
|
|
107007
108256
|
};
|
|
107008
|
-
requestBody
|
|
107009
|
-
content: {
|
|
107010
|
-
"application/json": components["schemas"]["MarkAsReadNotif"];
|
|
107011
|
-
};
|
|
107012
|
-
};
|
|
108257
|
+
requestBody?: never;
|
|
107013
108258
|
responses: {
|
|
107014
108259
|
/** @description OK */
|
|
107015
108260
|
200: {
|
|
@@ -107017,16 +108262,7 @@ export interface operations {
|
|
|
107017
108262
|
[name: string]: unknown;
|
|
107018
108263
|
};
|
|
107019
108264
|
content: {
|
|
107020
|
-
"application/json": components["schemas"]["
|
|
107021
|
-
};
|
|
107022
|
-
};
|
|
107023
|
-
/** @description Bad Request */
|
|
107024
|
-
400: {
|
|
107025
|
-
headers: {
|
|
107026
|
-
[name: string]: unknown;
|
|
107027
|
-
};
|
|
107028
|
-
content: {
|
|
107029
|
-
"application/json": components["schemas"]["ErrorMessages"];
|
|
108265
|
+
"application/json": components["schemas"]["RepairOrderDetailSchema"];
|
|
107030
108266
|
};
|
|
107031
108267
|
};
|
|
107032
108268
|
/** @description Forbidden */
|
|
@@ -107058,16 +108294,18 @@ export interface operations {
|
|
|
107058
108294
|
};
|
|
107059
108295
|
};
|
|
107060
108296
|
};
|
|
107061
|
-
|
|
108297
|
+
maintenance_views_update_repair_order: {
|
|
107062
108298
|
parameters: {
|
|
107063
108299
|
query?: never;
|
|
107064
108300
|
header?: never;
|
|
107065
|
-
path
|
|
108301
|
+
path: {
|
|
108302
|
+
id: string;
|
|
108303
|
+
};
|
|
107066
108304
|
cookie?: never;
|
|
107067
108305
|
};
|
|
107068
108306
|
requestBody: {
|
|
107069
108307
|
content: {
|
|
107070
|
-
"application/json": components["schemas"]["
|
|
108308
|
+
"application/json": components["schemas"]["CreateRepairOrderSchema"];
|
|
107071
108309
|
};
|
|
107072
108310
|
};
|
|
107073
108311
|
responses: {
|
|
@@ -107077,7 +108315,7 @@ export interface operations {
|
|
|
107077
108315
|
[name: string]: unknown;
|
|
107078
108316
|
};
|
|
107079
108317
|
content: {
|
|
107080
|
-
"application/json": components["schemas"]["
|
|
108318
|
+
"application/json": components["schemas"]["RepairOrderDetailSchema"];
|
|
107081
108319
|
};
|
|
107082
108320
|
};
|
|
107083
108321
|
/** @description Bad Request */
|
|
@@ -107118,7 +108356,7 @@ export interface operations {
|
|
|
107118
108356
|
};
|
|
107119
108357
|
};
|
|
107120
108358
|
};
|
|
107121
|
-
|
|
108359
|
+
maintenance_views_delete_repair_order: {
|
|
107122
108360
|
parameters: {
|
|
107123
108361
|
query?: never;
|
|
107124
108362
|
header?: never;
|
|
@@ -107129,13 +108367,20 @@ export interface operations {
|
|
|
107129
108367
|
};
|
|
107130
108368
|
requestBody?: never;
|
|
107131
108369
|
responses: {
|
|
107132
|
-
/** @description
|
|
107133
|
-
|
|
108370
|
+
/** @description No Content */
|
|
108371
|
+
204: {
|
|
108372
|
+
headers: {
|
|
108373
|
+
[name: string]: unknown;
|
|
108374
|
+
};
|
|
108375
|
+
content?: never;
|
|
108376
|
+
};
|
|
108377
|
+
/** @description Bad Request */
|
|
108378
|
+
400: {
|
|
107134
108379
|
headers: {
|
|
107135
108380
|
[name: string]: unknown;
|
|
107136
108381
|
};
|
|
107137
108382
|
content: {
|
|
107138
|
-
"application/json": components["schemas"]["
|
|
108383
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
107139
108384
|
};
|
|
107140
108385
|
};
|
|
107141
108386
|
/** @description Forbidden */
|
|
@@ -107167,17 +108412,20 @@ export interface operations {
|
|
|
107167
108412
|
};
|
|
107168
108413
|
};
|
|
107169
108414
|
};
|
|
107170
|
-
|
|
108415
|
+
maintenance_views_partial_update_repair_order: {
|
|
107171
108416
|
parameters: {
|
|
107172
|
-
query?:
|
|
107173
|
-
/** @description Search event by title */
|
|
107174
|
-
search?: string | null;
|
|
107175
|
-
};
|
|
108417
|
+
query?: never;
|
|
107176
108418
|
header?: never;
|
|
107177
|
-
path
|
|
108419
|
+
path: {
|
|
108420
|
+
id: string;
|
|
108421
|
+
};
|
|
107178
108422
|
cookie?: never;
|
|
107179
108423
|
};
|
|
107180
|
-
requestBody
|
|
108424
|
+
requestBody: {
|
|
108425
|
+
content: {
|
|
108426
|
+
"application/json": components["schemas"]["UpdateRepairOrderSchema"];
|
|
108427
|
+
};
|
|
108428
|
+
};
|
|
107181
108429
|
responses: {
|
|
107182
108430
|
/** @description OK */
|
|
107183
108431
|
200: {
|
|
@@ -107185,7 +108433,7 @@ export interface operations {
|
|
|
107185
108433
|
[name: string]: unknown;
|
|
107186
108434
|
};
|
|
107187
108435
|
content: {
|
|
107188
|
-
"application/json": components["schemas"]["
|
|
108436
|
+
"application/json": components["schemas"]["RepairOrderDetailSchema"];
|
|
107189
108437
|
};
|
|
107190
108438
|
};
|
|
107191
108439
|
/** @description Bad Request */
|
|
@@ -107215,8 +108463,57 @@ export interface operations {
|
|
|
107215
108463
|
"application/json": components["schemas"]["MessageResponse"];
|
|
107216
108464
|
};
|
|
107217
108465
|
};
|
|
107218
|
-
/** @description
|
|
107219
|
-
|
|
108466
|
+
/** @description Internal Server Error */
|
|
108467
|
+
500: {
|
|
108468
|
+
headers: {
|
|
108469
|
+
[name: string]: unknown;
|
|
108470
|
+
};
|
|
108471
|
+
content: {
|
|
108472
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
108473
|
+
};
|
|
108474
|
+
};
|
|
108475
|
+
};
|
|
108476
|
+
};
|
|
108477
|
+
maintenance_views_reset_repair_order_to_draft: {
|
|
108478
|
+
parameters: {
|
|
108479
|
+
query?: never;
|
|
108480
|
+
header?: never;
|
|
108481
|
+
path: {
|
|
108482
|
+
id: string;
|
|
108483
|
+
};
|
|
108484
|
+
cookie?: never;
|
|
108485
|
+
};
|
|
108486
|
+
requestBody?: never;
|
|
108487
|
+
responses: {
|
|
108488
|
+
/** @description OK */
|
|
108489
|
+
200: {
|
|
108490
|
+
headers: {
|
|
108491
|
+
[name: string]: unknown;
|
|
108492
|
+
};
|
|
108493
|
+
content: {
|
|
108494
|
+
"application/json": components["schemas"]["RepairOrderDetailSchema"];
|
|
108495
|
+
};
|
|
108496
|
+
};
|
|
108497
|
+
/** @description Bad Request */
|
|
108498
|
+
400: {
|
|
108499
|
+
headers: {
|
|
108500
|
+
[name: string]: unknown;
|
|
108501
|
+
};
|
|
108502
|
+
content: {
|
|
108503
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
108504
|
+
};
|
|
108505
|
+
};
|
|
108506
|
+
/** @description Forbidden */
|
|
108507
|
+
403: {
|
|
108508
|
+
headers: {
|
|
108509
|
+
[name: string]: unknown;
|
|
108510
|
+
};
|
|
108511
|
+
content: {
|
|
108512
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
108513
|
+
};
|
|
108514
|
+
};
|
|
108515
|
+
/** @description Not Found */
|
|
108516
|
+
404: {
|
|
107220
108517
|
headers: {
|
|
107221
108518
|
[name: string]: unknown;
|
|
107222
108519
|
};
|
|
@@ -107235,26 +108532,28 @@ export interface operations {
|
|
|
107235
108532
|
};
|
|
107236
108533
|
};
|
|
107237
108534
|
};
|
|
107238
|
-
|
|
108535
|
+
maintenance_views_cancel_repair_order: {
|
|
107239
108536
|
parameters: {
|
|
107240
108537
|
query?: never;
|
|
107241
108538
|
header?: never;
|
|
107242
|
-
path
|
|
108539
|
+
path: {
|
|
108540
|
+
id: string;
|
|
108541
|
+
};
|
|
107243
108542
|
cookie?: never;
|
|
107244
108543
|
};
|
|
107245
108544
|
requestBody: {
|
|
107246
108545
|
content: {
|
|
107247
|
-
"application/json": components["schemas"]["
|
|
108546
|
+
"application/json": components["schemas"]["ActionsPayloadSchemas"];
|
|
107248
108547
|
};
|
|
107249
108548
|
};
|
|
107250
108549
|
responses: {
|
|
107251
|
-
/** @description
|
|
107252
|
-
|
|
108550
|
+
/** @description OK */
|
|
108551
|
+
200: {
|
|
107253
108552
|
headers: {
|
|
107254
108553
|
[name: string]: unknown;
|
|
107255
108554
|
};
|
|
107256
108555
|
content: {
|
|
107257
|
-
"application/json": components["schemas"]["
|
|
108556
|
+
"application/json": components["schemas"]["RepairOrderDetailSchema"];
|
|
107258
108557
|
};
|
|
107259
108558
|
};
|
|
107260
108559
|
/** @description Bad Request */
|
|
@@ -107284,15 +108583,6 @@ export interface operations {
|
|
|
107284
108583
|
"application/json": components["schemas"]["MessageResponse"];
|
|
107285
108584
|
};
|
|
107286
108585
|
};
|
|
107287
|
-
/** @description Conflict */
|
|
107288
|
-
409: {
|
|
107289
|
-
headers: {
|
|
107290
|
-
[name: string]: unknown;
|
|
107291
|
-
};
|
|
107292
|
-
content: {
|
|
107293
|
-
"application/json": components["schemas"]["MessageResponse"];
|
|
107294
|
-
};
|
|
107295
|
-
};
|
|
107296
108586
|
/** @description Internal Server Error */
|
|
107297
108587
|
500: {
|
|
107298
108588
|
headers: {
|
|
@@ -107304,13 +108594,13 @@ export interface operations {
|
|
|
107304
108594
|
};
|
|
107305
108595
|
};
|
|
107306
108596
|
};
|
|
107307
|
-
|
|
108597
|
+
maintenance_views_list_damage_types: {
|
|
107308
108598
|
parameters: {
|
|
107309
|
-
query?:
|
|
107310
|
-
|
|
107311
|
-
path: {
|
|
107312
|
-
id: string;
|
|
108599
|
+
query?: {
|
|
108600
|
+
search?: string | null;
|
|
107313
108601
|
};
|
|
108602
|
+
header?: never;
|
|
108603
|
+
path?: never;
|
|
107314
108604
|
cookie?: never;
|
|
107315
108605
|
};
|
|
107316
108606
|
requestBody?: never;
|
|
@@ -107321,11 +108611,11 @@ export interface operations {
|
|
|
107321
108611
|
[name: string]: unknown;
|
|
107322
108612
|
};
|
|
107323
108613
|
content: {
|
|
107324
|
-
"application/json": components["schemas"]["
|
|
108614
|
+
"application/json": components["schemas"]["DamageTypeListSchema"];
|
|
107325
108615
|
};
|
|
107326
108616
|
};
|
|
107327
|
-
/** @description
|
|
107328
|
-
|
|
108617
|
+
/** @description Bad Request */
|
|
108618
|
+
400: {
|
|
107329
108619
|
headers: {
|
|
107330
108620
|
[name: string]: unknown;
|
|
107331
108621
|
};
|
|
@@ -107333,8 +108623,8 @@ export interface operations {
|
|
|
107333
108623
|
"application/json": components["schemas"]["MessageResponse"];
|
|
107334
108624
|
};
|
|
107335
108625
|
};
|
|
107336
|
-
/** @description
|
|
107337
|
-
|
|
108626
|
+
/** @description Forbidden */
|
|
108627
|
+
403: {
|
|
107338
108628
|
headers: {
|
|
107339
108629
|
[name: string]: unknown;
|
|
107340
108630
|
};
|
|
@@ -107353,28 +108643,26 @@ export interface operations {
|
|
|
107353
108643
|
};
|
|
107354
108644
|
};
|
|
107355
108645
|
};
|
|
107356
|
-
|
|
108646
|
+
maintenance_views_create_damage_type: {
|
|
107357
108647
|
parameters: {
|
|
107358
108648
|
query?: never;
|
|
107359
108649
|
header?: never;
|
|
107360
|
-
path
|
|
107361
|
-
id: string;
|
|
107362
|
-
};
|
|
108650
|
+
path?: never;
|
|
107363
108651
|
cookie?: never;
|
|
107364
108652
|
};
|
|
107365
108653
|
requestBody: {
|
|
107366
108654
|
content: {
|
|
107367
|
-
"application/json": components["schemas"]["
|
|
108655
|
+
"application/json": components["schemas"]["CreateDamageTypeSchema"];
|
|
107368
108656
|
};
|
|
107369
108657
|
};
|
|
107370
108658
|
responses: {
|
|
107371
|
-
/** @description
|
|
107372
|
-
|
|
108659
|
+
/** @description Created */
|
|
108660
|
+
201: {
|
|
107373
108661
|
headers: {
|
|
107374
108662
|
[name: string]: unknown;
|
|
107375
108663
|
};
|
|
107376
108664
|
content: {
|
|
107377
|
-
"application/json": components["schemas"]["
|
|
108665
|
+
"application/json": components["schemas"]["DamageTypeSchema"];
|
|
107378
108666
|
};
|
|
107379
108667
|
};
|
|
107380
108668
|
/** @description Bad Request */
|
|
@@ -107395,8 +108683,8 @@ export interface operations {
|
|
|
107395
108683
|
"application/json": components["schemas"]["MessageResponse"];
|
|
107396
108684
|
};
|
|
107397
108685
|
};
|
|
107398
|
-
/** @description
|
|
107399
|
-
|
|
108686
|
+
/** @description Internal Server Error */
|
|
108687
|
+
500: {
|
|
107400
108688
|
headers: {
|
|
107401
108689
|
[name: string]: unknown;
|
|
107402
108690
|
};
|
|
@@ -107404,8 +108692,39 @@ export interface operations {
|
|
|
107404
108692
|
"application/json": components["schemas"]["MessageResponse"];
|
|
107405
108693
|
};
|
|
107406
108694
|
};
|
|
107407
|
-
|
|
107408
|
-
|
|
108695
|
+
};
|
|
108696
|
+
};
|
|
108697
|
+
maintenance_views_get_damage_type: {
|
|
108698
|
+
parameters: {
|
|
108699
|
+
query?: never;
|
|
108700
|
+
header?: never;
|
|
108701
|
+
path: {
|
|
108702
|
+
id: string;
|
|
108703
|
+
};
|
|
108704
|
+
cookie?: never;
|
|
108705
|
+
};
|
|
108706
|
+
requestBody?: never;
|
|
108707
|
+
responses: {
|
|
108708
|
+
/** @description OK */
|
|
108709
|
+
200: {
|
|
108710
|
+
headers: {
|
|
108711
|
+
[name: string]: unknown;
|
|
108712
|
+
};
|
|
108713
|
+
content: {
|
|
108714
|
+
"application/json": components["schemas"]["DamageTypeSchema"];
|
|
108715
|
+
};
|
|
108716
|
+
};
|
|
108717
|
+
/** @description Forbidden */
|
|
108718
|
+
403: {
|
|
108719
|
+
headers: {
|
|
108720
|
+
[name: string]: unknown;
|
|
108721
|
+
};
|
|
108722
|
+
content: {
|
|
108723
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
108724
|
+
};
|
|
108725
|
+
};
|
|
108726
|
+
/** @description Not Found */
|
|
108727
|
+
404: {
|
|
107409
108728
|
headers: {
|
|
107410
108729
|
[name: string]: unknown;
|
|
107411
108730
|
};
|
|
@@ -107424,7 +108743,7 @@ export interface operations {
|
|
|
107424
108743
|
};
|
|
107425
108744
|
};
|
|
107426
108745
|
};
|
|
107427
|
-
|
|
108746
|
+
maintenance_views_delete_damage_type: {
|
|
107428
108747
|
parameters: {
|
|
107429
108748
|
query?: never;
|
|
107430
108749
|
header?: never;
|
|
@@ -107448,7 +108767,7 @@ export interface operations {
|
|
|
107448
108767
|
[name: string]: unknown;
|
|
107449
108768
|
};
|
|
107450
108769
|
content: {
|
|
107451
|
-
"application/json": components["schemas"]["
|
|
108770
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
107452
108771
|
};
|
|
107453
108772
|
};
|
|
107454
108773
|
/** @description Forbidden */
|
|
@@ -107469,15 +108788,6 @@ export interface operations {
|
|
|
107469
108788
|
"application/json": components["schemas"]["MessageResponse"];
|
|
107470
108789
|
};
|
|
107471
108790
|
};
|
|
107472
|
-
/** @description Conflict */
|
|
107473
|
-
409: {
|
|
107474
|
-
headers: {
|
|
107475
|
-
[name: string]: unknown;
|
|
107476
|
-
};
|
|
107477
|
-
content: {
|
|
107478
|
-
"application/json": components["schemas"]["MessageResponse"];
|
|
107479
|
-
};
|
|
107480
|
-
};
|
|
107481
108791
|
/** @description Internal Server Error */
|
|
107482
108792
|
500: {
|
|
107483
108793
|
headers: {
|
|
@@ -107489,7 +108799,7 @@ export interface operations {
|
|
|
107489
108799
|
};
|
|
107490
108800
|
};
|
|
107491
108801
|
};
|
|
107492
|
-
|
|
108802
|
+
maintenance_views_update_damage_type: {
|
|
107493
108803
|
parameters: {
|
|
107494
108804
|
query?: never;
|
|
107495
108805
|
header?: never;
|
|
@@ -107498,7 +108808,11 @@ export interface operations {
|
|
|
107498
108808
|
};
|
|
107499
108809
|
cookie?: never;
|
|
107500
108810
|
};
|
|
107501
|
-
requestBody
|
|
108811
|
+
requestBody: {
|
|
108812
|
+
content: {
|
|
108813
|
+
"application/json": components["schemas"]["CreateDamageTypeSchema"];
|
|
108814
|
+
};
|
|
108815
|
+
};
|
|
107502
108816
|
responses: {
|
|
107503
108817
|
/** @description OK */
|
|
107504
108818
|
200: {
|
|
@@ -107506,7 +108820,7 @@ export interface operations {
|
|
|
107506
108820
|
[name: string]: unknown;
|
|
107507
108821
|
};
|
|
107508
108822
|
content: {
|
|
107509
|
-
"application/json": components["schemas"]["
|
|
108823
|
+
"application/json": components["schemas"]["DamageTypeSchema"];
|
|
107510
108824
|
};
|
|
107511
108825
|
};
|
|
107512
108826
|
/** @description Bad Request */
|
|
@@ -107536,15 +108850,6 @@ export interface operations {
|
|
|
107536
108850
|
"application/json": components["schemas"]["MessageResponse"];
|
|
107537
108851
|
};
|
|
107538
108852
|
};
|
|
107539
|
-
/** @description Conflict */
|
|
107540
|
-
409: {
|
|
107541
|
-
headers: {
|
|
107542
|
-
[name: string]: unknown;
|
|
107543
|
-
};
|
|
107544
|
-
content: {
|
|
107545
|
-
"application/json": components["schemas"]["MessageResponse"];
|
|
107546
|
-
};
|
|
107547
|
-
};
|
|
107548
108853
|
/** @description Internal Server Error */
|
|
107549
108854
|
500: {
|
|
107550
108855
|
headers: {
|