This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:dio/dio.dart'; | |
import 'package:flutter/foundation.dart'; | |
import 'dio_error_util.dart'; | |
typedef ResponseDecoderCallBack<DecoderType> = DecoderType Function(dynamic); | |
class DioClient { | |
final Dio dio; | |
DioClient(this.dio); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Label</key> | |
<string>com.tabbyml.scheduler</string> | |
<key>ProgramArguments</key> | |
<array> | |
<string>/opt/homebrew/bin/tabby</string> | |
<string>scheduler</string> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
update bom | |
set bomSourceType = JSON_ARRAY(bomSourceType); | |
alter table bom | |
modify bomSourceType json; | |
alter table contractManufacturing rename column processLinkedContract to productionWorkflowContract; | |
alter table batch | |
add column `reservedForEntityLineItemId` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL; |