fix: update SDK constraints to ensure compatibility across multiple pubspec files
This commit is contained in:
@@ -5,7 +5,7 @@ version: 0.0.1-M3+4
|
|||||||
resolution: workspace
|
resolution: workspace
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ^3.10.7
|
sdk: '>=3.10.0 <4.0.0'
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
flutter:
|
flutter:
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ version: 0.0.1
|
|||||||
resolution: workspace
|
resolution: workspace
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ^3.10.7
|
sdk: '>=3.10.0 <4.0.0'
|
||||||
|
|
||||||
# Dependencies specify other packages that your package needs in order to work.
|
# Dependencies specify other packages that your package needs in order to work.
|
||||||
# To automatically upgrade your package dependencies to the latest versions
|
# To automatically upgrade your package dependencies to the latest versions
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ version: 0.0.1-M3+1
|
|||||||
resolution: workspace
|
resolution: workspace
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ^3.10.7
|
sdk: '>=3.10.0 <4.0.0'
|
||||||
dependencies:
|
dependencies:
|
||||||
flutter:
|
flutter:
|
||||||
sdk: flutter
|
sdk: flutter
|
||||||
|
|||||||
@@ -1,16 +1,16 @@
|
|||||||
# Basic Usage
|
# Basic Usage
|
||||||
|
|
||||||
```dart
|
```dart
|
||||||
ExampleConnector.instance.listConversations(listConversationsVariables).execute();
|
ExampleConnector.instance.createRoleCategory(createRoleCategoryVariables).execute();
|
||||||
ExampleConnector.instance.getConversationById(getConversationByIdVariables).execute();
|
ExampleConnector.instance.updateRoleCategory(updateRoleCategoryVariables).execute();
|
||||||
ExampleConnector.instance.listConversationsByType(listConversationsByTypeVariables).execute();
|
ExampleConnector.instance.deleteRoleCategory(deleteRoleCategoryVariables).execute();
|
||||||
ExampleConnector.instance.listConversationsByStatus(listConversationsByStatusVariables).execute();
|
ExampleConnector.instance.listShifts(listShiftsVariables).execute();
|
||||||
ExampleConnector.instance.filterConversations(filterConversationsVariables).execute();
|
ExampleConnector.instance.getShiftById(getShiftByIdVariables).execute();
|
||||||
ExampleConnector.instance.createTeamHub(createTeamHubVariables).execute();
|
ExampleConnector.instance.filterShifts(filterShiftsVariables).execute();
|
||||||
ExampleConnector.instance.updateTeamHub(updateTeamHubVariables).execute();
|
ExampleConnector.instance.getShiftsByBusinessId(getShiftsByBusinessIdVariables).execute();
|
||||||
ExampleConnector.instance.deleteTeamHub(deleteTeamHubVariables).execute();
|
ExampleConnector.instance.getShiftsByVendorId(getShiftsByVendorIdVariables).execute();
|
||||||
ExampleConnector.instance.createWorkforce(createWorkforceVariables).execute();
|
ExampleConnector.instance.listStaff().execute();
|
||||||
ExampleConnector.instance.updateWorkforce(updateWorkforceVariables).execute();
|
ExampleConnector.instance.getStaffById(getStaffByIdVariables).execute();
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
@@ -23,8 +23,8 @@ Optional fields can be discovered based on classes that have `Optional` object t
|
|||||||
This is an example of a mutation with an optional field:
|
This is an example of a mutation with an optional field:
|
||||||
|
|
||||||
```dart
|
```dart
|
||||||
await ExampleConnector.instance.markConversationAsRead({ ... })
|
await ExampleConnector.instance.updateHub({ ... })
|
||||||
.lastReadAt(...)
|
.name(...)
|
||||||
.execute();
|
.execute();
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -5,7 +5,7 @@ homepage:
|
|||||||
resolution: workspace
|
resolution: workspace
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ^3.10.7
|
sdk: '>=3.10.0 <4.0.0'
|
||||||
flutter: ">=1.17.0"
|
flutter: ">=1.17.0"
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ publish_to: 'none'
|
|||||||
resolution: workspace
|
resolution: workspace
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: '^3.10.7'
|
sdk: '>=3.10.0 <4.0.0'
|
||||||
flutter: ">=1.17.0"
|
flutter: ">=1.17.0"
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ publish_to: 'none'
|
|||||||
resolution: workspace
|
resolution: workspace
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: '^3.10.7'
|
sdk: '>=3.10.0 <4.0.0'
|
||||||
flutter: ">=1.17.0"
|
flutter: ">=1.17.0"
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
|
|||||||
@@ -1435,5 +1435,5 @@ packages:
|
|||||||
source: hosted
|
source: hosted
|
||||||
version: "2.2.3"
|
version: "2.2.3"
|
||||||
sdks:
|
sdks:
|
||||||
dart: ">=3.10.7 <4.0.0"
|
dart: ">=3.10.3 <4.0.0"
|
||||||
flutter: ">=3.38.4"
|
flutter: ">=3.38.4"
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ name: flutter_melos_modular_scaffold
|
|||||||
publish_to: 'none'
|
publish_to: 'none'
|
||||||
description: "A sample project using melos and modular scaffold."
|
description: "A sample project using melos and modular scaffold."
|
||||||
environment:
|
environment:
|
||||||
sdk: '>=3.10.7 <4.0.0'
|
sdk: '>=3.10.0 <4.0.0'
|
||||||
workspace:
|
workspace:
|
||||||
- packages/design_system
|
- packages/design_system
|
||||||
- packages/core
|
- packages/core
|
||||||
|
|||||||
@@ -208,6 +208,9 @@ workflows:
|
|||||||
<<: *staff-app-base
|
<<: *staff-app-base
|
||||||
name: 🚛🤖👨🍳 Staff App Dev (Android App Distribution)
|
name: 🚛🤖👨🍳 Staff App Dev (Android App Distribution)
|
||||||
environment:
|
environment:
|
||||||
|
flutter: stable
|
||||||
|
xcode: latest
|
||||||
|
cocoapods: default
|
||||||
groups:
|
groups:
|
||||||
- staff_app_dev_credentials
|
- staff_app_dev_credentials
|
||||||
vars:
|
vars:
|
||||||
@@ -220,6 +223,9 @@ workflows:
|
|||||||
<<: *staff-app-base
|
<<: *staff-app-base
|
||||||
name: 🚛🤖👨🍳 Staff App Staging (Android App Distribution)
|
name: 🚛🤖👨🍳 Staff App Staging (Android App Distribution)
|
||||||
environment:
|
environment:
|
||||||
|
flutter: stable
|
||||||
|
xcode: latest
|
||||||
|
cocoapods: default
|
||||||
groups:
|
groups:
|
||||||
- staff_app_staging_credentials
|
- staff_app_staging_credentials
|
||||||
vars:
|
vars:
|
||||||
@@ -232,6 +238,9 @@ workflows:
|
|||||||
<<: *staff-app-base
|
<<: *staff-app-base
|
||||||
name: 🚛🤖👨🍳 Staff App Prod (Android App Distribution)
|
name: 🚛🤖👨🍳 Staff App Prod (Android App Distribution)
|
||||||
environment:
|
environment:
|
||||||
|
flutter: stable
|
||||||
|
xcode: latest
|
||||||
|
cocoapods: default
|
||||||
groups:
|
groups:
|
||||||
- staff_app_prod_credentials
|
- staff_app_prod_credentials
|
||||||
vars:
|
vars:
|
||||||
|
|||||||
Reference in New Issue
Block a user