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
|
||||
|
||||
environment:
|
||||
sdk: ^3.10.7
|
||||
sdk: '>=3.10.0 <4.0.0'
|
||||
|
||||
dependencies:
|
||||
flutter:
|
||||
|
||||
@@ -20,7 +20,7 @@ version: 0.0.1
|
||||
resolution: workspace
|
||||
|
||||
environment:
|
||||
sdk: ^3.10.7
|
||||
sdk: '>=3.10.0 <4.0.0'
|
||||
|
||||
# Dependencies specify other packages that your package needs in order to work.
|
||||
# To automatically upgrade your package dependencies to the latest versions
|
||||
|
||||
@@ -5,7 +5,7 @@ version: 0.0.1-M3+1
|
||||
resolution: workspace
|
||||
|
||||
environment:
|
||||
sdk: ^3.10.7
|
||||
sdk: '>=3.10.0 <4.0.0'
|
||||
dependencies:
|
||||
flutter:
|
||||
sdk: flutter
|
||||
|
||||
@@ -1,16 +1,16 @@
|
||||
# Basic Usage
|
||||
|
||||
```dart
|
||||
ExampleConnector.instance.listConversations(listConversationsVariables).execute();
|
||||
ExampleConnector.instance.getConversationById(getConversationByIdVariables).execute();
|
||||
ExampleConnector.instance.listConversationsByType(listConversationsByTypeVariables).execute();
|
||||
ExampleConnector.instance.listConversationsByStatus(listConversationsByStatusVariables).execute();
|
||||
ExampleConnector.instance.filterConversations(filterConversationsVariables).execute();
|
||||
ExampleConnector.instance.createTeamHub(createTeamHubVariables).execute();
|
||||
ExampleConnector.instance.updateTeamHub(updateTeamHubVariables).execute();
|
||||
ExampleConnector.instance.deleteTeamHub(deleteTeamHubVariables).execute();
|
||||
ExampleConnector.instance.createWorkforce(createWorkforceVariables).execute();
|
||||
ExampleConnector.instance.updateWorkforce(updateWorkforceVariables).execute();
|
||||
ExampleConnector.instance.createRoleCategory(createRoleCategoryVariables).execute();
|
||||
ExampleConnector.instance.updateRoleCategory(updateRoleCategoryVariables).execute();
|
||||
ExampleConnector.instance.deleteRoleCategory(deleteRoleCategoryVariables).execute();
|
||||
ExampleConnector.instance.listShifts(listShiftsVariables).execute();
|
||||
ExampleConnector.instance.getShiftById(getShiftByIdVariables).execute();
|
||||
ExampleConnector.instance.filterShifts(filterShiftsVariables).execute();
|
||||
ExampleConnector.instance.getShiftsByBusinessId(getShiftsByBusinessIdVariables).execute();
|
||||
ExampleConnector.instance.getShiftsByVendorId(getShiftsByVendorIdVariables).execute();
|
||||
ExampleConnector.instance.listStaff().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:
|
||||
|
||||
```dart
|
||||
await ExampleConnector.instance.markConversationAsRead({ ... })
|
||||
.lastReadAt(...)
|
||||
await ExampleConnector.instance.updateHub({ ... })
|
||||
.name(...)
|
||||
.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
|
||||
|
||||
environment:
|
||||
sdk: ^3.10.7
|
||||
sdk: '>=3.10.0 <4.0.0'
|
||||
flutter: ">=1.17.0"
|
||||
|
||||
dependencies:
|
||||
|
||||
@@ -5,7 +5,7 @@ publish_to: 'none'
|
||||
resolution: workspace
|
||||
|
||||
environment:
|
||||
sdk: '^3.10.7'
|
||||
sdk: '>=3.10.0 <4.0.0'
|
||||
flutter: ">=1.17.0"
|
||||
|
||||
dependencies:
|
||||
|
||||
@@ -5,7 +5,7 @@ publish_to: 'none'
|
||||
resolution: workspace
|
||||
|
||||
environment:
|
||||
sdk: '^3.10.7'
|
||||
sdk: '>=3.10.0 <4.0.0'
|
||||
flutter: ">=1.17.0"
|
||||
|
||||
dependencies:
|
||||
|
||||
@@ -1435,5 +1435,5 @@ packages:
|
||||
source: hosted
|
||||
version: "2.2.3"
|
||||
sdks:
|
||||
dart: ">=3.10.7 <4.0.0"
|
||||
dart: ">=3.10.3 <4.0.0"
|
||||
flutter: ">=3.38.4"
|
||||
|
||||
@@ -2,7 +2,7 @@ name: flutter_melos_modular_scaffold
|
||||
publish_to: 'none'
|
||||
description: "A sample project using melos and modular scaffold."
|
||||
environment:
|
||||
sdk: '>=3.10.7 <4.0.0'
|
||||
sdk: '>=3.10.0 <4.0.0'
|
||||
workspace:
|
||||
- packages/design_system
|
||||
- packages/core
|
||||
|
||||
@@ -208,6 +208,9 @@ workflows:
|
||||
<<: *staff-app-base
|
||||
name: 🚛🤖👨🍳 Staff App Dev (Android App Distribution)
|
||||
environment:
|
||||
flutter: stable
|
||||
xcode: latest
|
||||
cocoapods: default
|
||||
groups:
|
||||
- staff_app_dev_credentials
|
||||
vars:
|
||||
@@ -220,6 +223,9 @@ workflows:
|
||||
<<: *staff-app-base
|
||||
name: 🚛🤖👨🍳 Staff App Staging (Android App Distribution)
|
||||
environment:
|
||||
flutter: stable
|
||||
xcode: latest
|
||||
cocoapods: default
|
||||
groups:
|
||||
- staff_app_staging_credentials
|
||||
vars:
|
||||
@@ -232,6 +238,9 @@ workflows:
|
||||
<<: *staff-app-base
|
||||
name: 🚛🤖👨🍳 Staff App Prod (Android App Distribution)
|
||||
environment:
|
||||
flutter: stable
|
||||
xcode: latest
|
||||
cocoapods: default
|
||||
groups:
|
||||
- staff_app_prod_credentials
|
||||
vars:
|
||||
|
||||
Reference in New Issue
Block a user