fix: update SDK constraints to ensure compatibility across multiple pubspec files

This commit is contained in:
Achintha Isuru
2026-02-02 10:30:50 -05:00
parent 075c3150d0
commit 94ad1d66fb
12 changed files with 17751 additions and 17742 deletions

View File

@@ -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();
```

View File

@@ -5,7 +5,7 @@ homepage:
resolution: workspace
environment:
sdk: ^3.10.7
sdk: '>=3.10.0 <4.0.0'
flutter: ">=1.17.0"
dependencies:

View File

@@ -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:

View File

@@ -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: