diff --git a/apps/mobile/packages/domain/lib/src/adapters/financial/time_card_adapter.dart b/apps/mobile/packages/domain/lib/src/adapters/financial/time_card_adapter.dart index 572d74a1..6c5033a7 100644 --- a/apps/mobile/packages/domain/lib/src/adapters/financial/time_card_adapter.dart +++ b/apps/mobile/packages/domain/lib/src/adapters/financial/time_card_adapter.dart @@ -41,7 +41,6 @@ class TimeCardAdapter { case 'DISPUTED': return TimeCardStatus.disputed; case 'CHECKED_IN': - case 'ACCEPTED': case 'CONFIRMED': default: return TimeCardStatus.pending; diff --git a/apps/mobile/packages/features/client/client_coverage/lib/src/data/repositories_impl/coverage_repository_impl.dart b/apps/mobile/packages/features/client/client_coverage/lib/src/data/repositories_impl/coverage_repository_impl.dart index b79c7ddc..e7cb2bd9 100644 --- a/apps/mobile/packages/features/client/client_coverage/lib/src/data/repositories_impl/coverage_repository_impl.dart +++ b/apps/mobile/packages/features/client/client_coverage/lib/src/data/repositories_impl/coverage_repository_impl.dart @@ -177,8 +177,6 @@ class CoverageRepositoryImpl implements CoverageRepository { switch (status.value) { case dc.ApplicationStatus.PENDING: return CoverageWorkerStatus.pending; - case dc.ApplicationStatus.ACCEPTED: - return CoverageWorkerStatus.confirmed; case dc.ApplicationStatus.REJECTED: return CoverageWorkerStatus.rejected; case dc.ApplicationStatus.CONFIRMED: diff --git a/apps/mobile/packages/features/staff/home/lib/src/data/repositories/home_repository_impl.dart b/apps/mobile/packages/features/staff/home/lib/src/data/repositories/home_repository_impl.dart index 74f03d5c..8783e938 100644 --- a/apps/mobile/packages/features/staff/home/lib/src/data/repositories/home_repository_impl.dart +++ b/apps/mobile/packages/features/staff/home/lib/src/data/repositories/home_repository_impl.dart @@ -46,10 +46,8 @@ class HomeRepositoryImpl .dayEnd(_toTimestamp(end)) .execute()); - // Filter for ACCEPTED applications (same logic as shifts_repository_impl) + // Filter for CONFIRMED applications (same logic as shifts_repository_impl) final apps = response.data.applications.where((app) => - (app.status is Known && - (app.status as Known).value == ApplicationStatus.ACCEPTED) || (app.status is Known && (app.status as Known).value == ApplicationStatus.CONFIRMED)); @@ -145,4 +143,3 @@ class HomeRepositoryImpl ); } } - diff --git a/apps/mobile/packages/features/staff/shifts/lib/src/data/repositories_impl/shifts_repository_impl.dart b/apps/mobile/packages/features/staff/shifts/lib/src/data/repositories_impl/shifts_repository_impl.dart index b56b0c15..a1588633 100644 --- a/apps/mobile/packages/features/staff/shifts/lib/src/data/repositories_impl/shifts_repository_impl.dart +++ b/apps/mobile/packages/features/staff/shifts/lib/src/data/repositories_impl/shifts_repository_impl.dart @@ -176,7 +176,7 @@ class ShiftsRepositoryImpl final DateTime? endDt = _toDateTime(app.shiftRole.endTime); final DateTime? createdDt = _toDateTime(app.createdAt); - // Override status to reflect the application state (e.g., CHECKED_OUT, ACCEPTED) + // Override status to reflect the application state (e.g., CHECKED_OUT, CONFIRMED) final bool hasCheckIn = app.checkInTime != null; final bool hasCheckOut = app.checkOutTime != null; dc.ApplicationStatus? appStatus; @@ -187,7 +187,7 @@ class ShiftsRepositoryImpl ? 'completed' : hasCheckIn ? 'checked_in' - : _mapStatus(appStatus ?? dc.ApplicationStatus.ACCEPTED); + : _mapStatus(appStatus ?? dc.ApplicationStatus.CONFIRMED); shifts.add( Shift( id: app.shift.id, @@ -223,7 +223,6 @@ class ShiftsRepositoryImpl String _mapStatus(dc.ApplicationStatus status) { switch (status) { - case dc.ApplicationStatus.ACCEPTED: case dc.ApplicationStatus.CONFIRMED: return 'confirmed'; case dc.ApplicationStatus.PENDING: @@ -477,7 +476,7 @@ class ShiftsRepositoryImpl shiftId: shiftId, staffId: staffId, roleId: targetRoleId, - status: dc.ApplicationStatus.ACCEPTED, + status: dc.ApplicationStatus.CONFIRMED, origin: dc.ApplicationOrigin.STAFF, ) // TODO: this should be PENDING so a vendor can accept it. @@ -518,7 +517,7 @@ class ShiftsRepositoryImpl @override Future acceptShift(String shiftId) async { - await _updateApplicationStatus(shiftId, dc.ApplicationStatus.ACCEPTED); + await _updateApplicationStatus(shiftId, dc.ApplicationStatus.CONFIRMED); } @override diff --git a/backend/dataconnect/connector/application/queries.gql b/backend/dataconnect/connector/application/queries.gql index b7719115..4458488d 100644 --- a/backend/dataconnect/connector/application/queries.gql +++ b/backend/dataconnect/connector/application/queries.gql @@ -275,7 +275,7 @@ query getApplicationsByStaffId( applications( where: { staffId: { eq: $staffId } - status: { in: [ACCEPTED, CONFIRMED, CHECKED_IN, CHECKED_OUT, LATE] } + status: { in: [ CONFIRMED, CHECKED_IN, CHECKED_OUT, LATE] } shift: { date: { ge: $dayStart, le: $dayEnd } } @@ -516,7 +516,7 @@ query getApplicationByStaffShiftAndRole( } -#getting staffs of an shiftrole ACCEPTED for orders view client +#getting staffs of an shiftrole CONFIRMED for orders view client query listAcceptedApplicationsByShiftRoleKey( $shiftId: UUID! $roleId: UUID! @@ -527,7 +527,7 @@ query listAcceptedApplicationsByShiftRoleKey( where: { shiftId: { eq: $shiftId } roleId: { eq: $roleId } - status: { eq: ACCEPTED } + status: { eq: CONFIRMED } } offset: $offset limit: $limit @@ -540,7 +540,7 @@ query listAcceptedApplicationsByShiftRoleKey( } } -#getting staffs of an shiftrole ACCEPTED for orders of the day view client +#getting staffs of an shiftrole status for orders of the day view client query listAcceptedApplicationsByBusinessForDay( $businessId: UUID! $dayStart: Timestamp! @@ -550,8 +550,7 @@ query listAcceptedApplicationsByBusinessForDay( ) @auth(level: USER) { applications( where: { - #status: { eq: ACCEPTED } - status: { in: [ACCEPTED, CONFIRMED, CHECKED_IN, CHECKED_OUT, LATE] } + status: { in: [ CONFIRMED, CHECKED_IN, CHECKED_OUT, LATE] } shift: { date: { ge: $dayStart, le: $dayEnd } order: { businessId: { eq: $businessId } } @@ -581,11 +580,10 @@ query listStaffsApplicationsByBusinessForDay( ) @auth(level: USER) { applications( where: { - status: {in: [ACCEPTED, CONFIRMED, CHECKED_IN, CHECKED_OUT, LATE]} + status: {in: [ CONFIRMED, CHECKED_IN, CHECKED_OUT, LATE]} shift: { date: { ge: $dayStart, le: $dayEnd } order: { businessId: { eq: $businessId } } - #status: { eq: ACCEPTED } } } offset: $offset diff --git a/backend/dataconnect/schema/application.gql b/backend/dataconnect/schema/application.gql index e0c13dc1..cfe90cd9 100644 --- a/backend/dataconnect/schema/application.gql +++ b/backend/dataconnect/schema/application.gql @@ -1,6 +1,5 @@ enum ApplicationStatus { PENDING - ACCEPTED REJECTED CONFIRMED CHECKED_IN diff --git a/backend/dataconnect/seed_last.gql b/backend/dataconnect/seed_last.gql deleted file mode 100644 index dbf5af3b..00000000 --- a/backend/dataconnect/seed_last.gql +++ /dev/null @@ -1,1897 +0,0 @@ -mutation @transaction { - user_insert_1: user_insert( - data: { - id: "rU9P2kG7mQ4sV1xT6bN8hC3jZ0L5" - email: "vendor1@example.com" - fullName: "Seed Vendor 1" - role: USER - userRole: "vendor" - photoUrl: "https://i.pravatar.cc/150?u=rU9P2kG7mQ4sV1xT6bN8hC3jZ0L5" - } - ) - user_insert_2: user_insert( - data: { - id: "Y3kL9vT2sR8pQ6mN1wE4xC7zA0B5" - email: "staff2@example.com" - fullName: "Seed Staff 2" - role: USER - userRole: "staff" - photoUrl: "https://i.pravatar.cc/150?u=Y3kL9vT2sR8pQ6mN1wE4xC7zA0B5" - } - ) - user_insert_3: user_insert( - data: { - id: "kP7vR2mX9tQ4sL1nB6cE8zA3fD0H" - email: "staff3@example.com" - fullName: "Seed Staff 3" - role: USER - userRole: "staff" - photoUrl: "https://i.pravatar.cc/150?u=kP7vR2mX9tQ4sL1nB6cE8zA3fD0H" - } - ) - user_insert_4: user_insert( - data: { - id: "mT4sQ8nR1vP6kX2bL7cE9aD3zF0H" - email: "staff4@example.com" - fullName: "Seed Staff 4" - role: USER - userRole: "staff" - photoUrl: "https://i.pravatar.cc/150?u=mT4sQ8nR1vP6kX2bL7cE9aD3zF0H" - } - ) - user_insert_5: user_insert( - data: { - id: "sN2pQ6vT9kR4mX1bL8cE3zA7dF0H" - email: "staff5@example.com" - fullName: "Seed Staff 5" - role: USER - userRole: "staff" - photoUrl: "https://i.pravatar.cc/150?u=sN2pQ6vT9kR4mX1bL8cE3zA7dF0H" - } - ) - user_insert_6: user_insert( - data: { - id: "vR6mQ1tP8kN3xL2bE7cA9zD4fH0" - email: "staff6@example.com" - fullName: "Seed Staff 6" - role: USER - userRole: "staff" - photoUrl: "https://i.pravatar.cc/150?u=vR6mQ1tP8kN3xL2bE7cA9zD4fH0" - } - ) - user_insert_7: user_insert( - data: { - id: "Q8kR2mT5vP1nX9bL6cE3zA7dF0H" - email: "staff7@example.com" - fullName: "Seed Staff 7" - role: USER - userRole: "staff" - photoUrl: "https://i.pravatar.cc/150?u=Q8kR2mT5vP1nX9bL6cE3zA7dF0H" - } - ) - user_insert_8: user_insert( - data: { - id: "nP5vR9kT2mQ1xL8bE6cA3zD7fH0" - email: "staff8@example.com" - fullName: "Seed Staff 8" - role: USER - userRole: "staff" - photoUrl: "https://i.pravatar.cc/150?u=nP5vR9kT2mQ1xL8bE6cA3zD7fH0" - } - ) - user_insert_9: user_insert( - data: { - id: "tR1mQ6vP9kN2xL8bE3cA7zD4fH0" - email: "staff9@example.com" - fullName: "Seed Staff 9" - role: USER - userRole: "staff" - photoUrl: "https://i.pravatar.cc/150?u=tR1mQ6vP9kN2xL8bE3cA7zD4fH0" - } - ) - user_insert_10: user_insert( - data: { - id: "pQ2vR7kT1mN9xL6bE3cA8zD4fH0" - email: "staff10@example.com" - fullName: "Seed Staff 10" - role: USER - userRole: "staff" - photoUrl: "https://i.pravatar.cc/150?u=pQ2vR7kT1mN9xL6bE3cA8zD4fH0" - } - ) - roleCategory_insert_1: roleCategory_insert(data: { id: "a9ca81d8-dd76-4576-943a-af7576968764", roleName: "Kitchen", category: KITCHEN_AND_CULINARY }) - roleCategory_insert_2: roleCategory_insert(data: { id: "e131e670-bedf-4c20-8ec6-cb80821b3b15", roleName: "Security", category: SECURITY }) - vendor_insert_new: vendor_insert( - data: { - id: "32adf31b-8a8f-49be-ace4-50402daa8046" - userId: "rU9P2kG7mQ4sV1xT6bN8hC3jZ0L5" - companyName: "Seed Vendor C" - email: "vendorc@example.com" - phone: "555-0101" - approvalStatus: APPROVED - isActive: true - tier: STANDARD - region: "CA" - city: "Los Angeles" - } - ) - role_insert_c_1: role_insert( - data: { - id: "a6cee403-e3fa-4295-a6d1-623e7e2e18f7" - name: "Line Cook" - costPerHour: 21.0 - vendorId: "32adf31b-8a8f-49be-ace4-50402daa8046" - roleCategoryId: "a9ca81d8-dd76-4576-943a-af7576968764" - } - ) - role_insert_c_2: role_insert( - data: { - id: "c1f6b67f-f9ef-45b5-8dcb-bd32b4295fcb" - name: "Security" - costPerHour: 24.0 - vendorId: "32adf31b-8a8f-49be-ace4-50402daa8046" - roleCategoryId: "e131e670-bedf-4c20-8ec6-cb80821b3b15" - } - ) - staff_insert_1: staff_insert( - data: { - id: "1e45b730-9c45-43a2-bda3-9b2e9d22b019" - userId: "Y3kL9vT2sR8pQ6mN1wE4xC7zA0B5" - fullName: "Ava Morales" - ownerId: "afa9ef70-fd90-493b-95b0-bc05791c514f" - totalShifts: 0 - averageRating: 4.5 - onTimeRate: 90 - noShowCount: 0 - cancellationCount: 0 - reliabilityScore: 90 - englishRequired: false - backgroundCheckStatus: CLEARED - employmentType: PART_TIME - english: FLUENT - isRecommended: false - } - ) - staff_insert_2: staff_insert( - data: { - id: "15ca4017-4759-4db2-b68b-0f0aba860807" - userId: "kP7vR2mX9tQ4sL1nB6cE8zA3fD0H" - fullName: "Luis Herrera" - ownerId: "afa9ef70-fd90-493b-95b0-bc05791c514f" - totalShifts: 0 - averageRating: 4.5 - onTimeRate: 90 - noShowCount: 0 - cancellationCount: 0 - reliabilityScore: 90 - englishRequired: false - backgroundCheckStatus: CLEARED - employmentType: PART_TIME - english: FLUENT - isRecommended: false - } - ) - staff_insert_3: staff_insert( - data: { - id: "273c47c5-ae9e-46e3-885c-553a1600263b" - userId: "mT4sQ8nR1vP6kX2bL7cE9aD3zF0H" - fullName: "Sofia Vega" - ownerId: "afa9ef70-fd90-493b-95b0-bc05791c514f" - totalShifts: 0 - averageRating: 4.5 - onTimeRate: 90 - noShowCount: 0 - cancellationCount: 0 - reliabilityScore: 90 - englishRequired: false - backgroundCheckStatus: CLEARED - employmentType: PART_TIME - english: FLUENT - isRecommended: false - } - ) - staff_insert_4: staff_insert( - data: { - id: "bacfd25e-b5b0-463b-bce8-fad1aff2d9bb" - userId: "sN2pQ6vT9kR4mX1bL8cE3zA7dF0H" - fullName: "Noah King" - ownerId: "b959b8d6-9133-4025-b3d2-a4c1564f9a25" - totalShifts: 0 - averageRating: 4.5 - onTimeRate: 90 - noShowCount: 0 - cancellationCount: 0 - reliabilityScore: 90 - englishRequired: false - backgroundCheckStatus: CLEARED - employmentType: PART_TIME - english: FLUENT - isRecommended: false - } - ) - staff_insert_5: staff_insert( - data: { - id: "44c79ae8-d759-41e0-94d7-ae60b504d65c" - userId: "vR6mQ1tP8kN3xL2bE7cA9zD4fH0" - fullName: "Emma Reed" - ownerId: "b959b8d6-9133-4025-b3d2-a4c1564f9a25" - totalShifts: 0 - averageRating: 4.5 - onTimeRate: 90 - noShowCount: 0 - cancellationCount: 0 - reliabilityScore: 90 - englishRequired: false - backgroundCheckStatus: CLEARED - employmentType: PART_TIME - english: FLUENT - isRecommended: false - } - ) - staff_insert_6: staff_insert( - data: { - id: "e168945c-0ede-4e72-bd47-683e02b55188" - userId: "Q8kR2mT5vP1nX9bL6cE3zA7dF0H" - fullName: "Diego Cruz" - ownerId: "b959b8d6-9133-4025-b3d2-a4c1564f9a25" - totalShifts: 0 - averageRating: 4.5 - onTimeRate: 90 - noShowCount: 0 - cancellationCount: 0 - reliabilityScore: 90 - englishRequired: false - backgroundCheckStatus: CLEARED - employmentType: PART_TIME - english: FLUENT - isRecommended: false - } - ) - staff_insert_7: staff_insert( - data: { - id: "c5801579-2472-4ddb-b81b-1af656c85e73" - userId: "nP5vR9kT2mQ1xL8bE6cA3zD7fH0" - fullName: "Maya Patel" - ownerId: "32adf31b-8a8f-49be-ace4-50402daa8046" - totalShifts: 0 - averageRating: 4.5 - onTimeRate: 90 - noShowCount: 0 - cancellationCount: 0 - reliabilityScore: 90 - englishRequired: false - backgroundCheckStatus: CLEARED - employmentType: PART_TIME - english: FLUENT - isRecommended: false - } - ) - staff_insert_8: staff_insert( - data: { - id: "24421973-9a75-48dd-97d5-a931851abc97" - userId: "tR1mQ6vP9kN2xL8bE3cA7zD4fH0" - fullName: "Ethan Brooks" - ownerId: "32adf31b-8a8f-49be-ace4-50402daa8046" - totalShifts: 0 - averageRating: 4.5 - onTimeRate: 90 - noShowCount: 0 - cancellationCount: 0 - reliabilityScore: 90 - englishRequired: false - backgroundCheckStatus: CLEARED - employmentType: PART_TIME - english: FLUENT - isRecommended: false - } - ) - staff_insert_9: staff_insert( - data: { - id: "6fe2f40c-717d-4fbe-954d-4eb1e8dfc129" - userId: "pQ2vR7kT1mN9xL6bE3cA8zD4fH0" - fullName: "Lina Chen" - ownerId: "32adf31b-8a8f-49be-ace4-50402daa8046" - totalShifts: 0 - averageRating: 4.5 - onTimeRate: 90 - noShowCount: 0 - cancellationCount: 0 - reliabilityScore: 90 - englishRequired: false - backgroundCheckStatus: CLEARED - employmentType: PART_TIME - english: FLUENT - isRecommended: false - } - ) - order_insert_1: order_insert( - data: { - id: "dccde341-3d23-4587-8037-188963f5ae26" - vendorId: "afa9ef70-fd90-493b-95b0-bc05791c514f" - businessId: "c5d0f18b-ba95-479b-8915-1bd498fd6860" - orderType: ONE_TIME - status: COMPLETED - date: "2026-01-26T05:00:00Z" - eventName: "Event 1" - requested: 2 - teamHubId: "9c8eb9c6-c186-4d55-877e-35be852c3e86" - total: 400.0 - } - ) - order_insert_2: order_insert( - data: { - id: "e2825341-d6dd-4dff-9ee0-12332549c3d6" - vendorId: "b959b8d6-9133-4025-b3d2-a4c1564f9a25" - businessId: "c5d0f18b-ba95-479b-8915-1bd498fd6860" - orderType: ONE_TIME - status: COMPLETED - date: "2026-01-26T05:00:00Z" - eventName: "Event 2" - requested: 1 - teamHubId: "75c70d83-1680-4b28-ab61-2fe64a74fc5f" - total: 200.0 - } - ) - order_insert_3: order_insert( - data: { - id: "19798ac3-adb6-4c77-9fd1-026d3af8138d" - vendorId: "32adf31b-8a8f-49be-ace4-50402daa8046" - businessId: "c5d0f18b-ba95-479b-8915-1bd498fd6860" - orderType: ONE_TIME - status: COMPLETED - date: "2026-01-27T05:00:00Z" - eventName: "Event 3" - requested: 2 - teamHubId: "22a0b119-e6dc-4011-9043-d857cd4c12f3" - total: 400.0 - } - ) - order_insert_4: order_insert( - data: { - id: "4ca2f85b-63ef-453f-b9e0-bc0c1a51817a" - vendorId: "afa9ef70-fd90-493b-95b0-bc05791c514f" - businessId: "c5d0f18b-ba95-479b-8915-1bd498fd6860" - orderType: ONE_TIME - status: COMPLETED - date: "2026-01-27T05:00:00Z" - eventName: "Event 4" - requested: 2 - teamHubId: "9c8eb9c6-c186-4d55-877e-35be852c3e86" - total: 400.0 - } - ) - order_insert_5: order_insert( - data: { - id: "62eed7f5-d8de-4146-bf4c-d4b04965b97d" - vendorId: "b959b8d6-9133-4025-b3d2-a4c1564f9a25" - businessId: "c5d0f18b-ba95-479b-8915-1bd498fd6860" - orderType: ONE_TIME - status: COMPLETED - date: "2026-01-28T05:00:00Z" - eventName: "Event 5" - requested: 1 - teamHubId: "75c70d83-1680-4b28-ab61-2fe64a74fc5f" - total: 200.0 - } - ) - order_insert_6: order_insert( - data: { - id: "170c1ff2-67ce-4527-83fd-c4722fc755b0" - vendorId: "32adf31b-8a8f-49be-ace4-50402daa8046" - businessId: "c5d0f18b-ba95-479b-8915-1bd498fd6860" - orderType: ONE_TIME - status: COMPLETED - date: "2026-01-29T05:00:00Z" - eventName: "Event 6" - requested: 2 - teamHubId: "22a0b119-e6dc-4011-9043-d857cd4c12f3" - total: 400.0 - } - ) - order_insert_7: order_insert( - data: { - id: "b507de75-e9ff-4372-9552-1f34a2161502" - vendorId: "afa9ef70-fd90-493b-95b0-bc05791c514f" - businessId: "c5d0f18b-ba95-479b-8915-1bd498fd6860" - orderType: ONE_TIME - status: PARTIAL_STAFFED - date: "2026-01-30T05:00:00Z" - eventName: "Event 7" - requested: 2 - teamHubId: "9c8eb9c6-c186-4d55-877e-35be852c3e86" - total: 400.0 - } - ) - order_insert_8: order_insert( - data: { - id: "69c2992a-773a-4987-9c6a-c44fbcde3142" - vendorId: "b959b8d6-9133-4025-b3d2-a4c1564f9a25" - businessId: "c5d0f18b-ba95-479b-8915-1bd498fd6860" - orderType: ONE_TIME - status: PARTIAL_STAFFED - date: "2026-01-30T05:00:00Z" - eventName: "Event 8" - requested: 2 - teamHubId: "75c70d83-1680-4b28-ab61-2fe64a74fc5f" - total: 400.0 - } - ) - order_insert_9: order_insert( - data: { - id: "64899806-9d73-43bc-b3ee-59016cb581ae" - vendorId: "32adf31b-8a8f-49be-ace4-50402daa8046" - businessId: "c5d0f18b-ba95-479b-8915-1bd498fd6860" - orderType: ONE_TIME - status: POSTED - date: "2026-01-31T05:00:00Z" - eventName: "Event 9" - requested: 2 - teamHubId: "22a0b119-e6dc-4011-9043-d857cd4c12f3" - total: 400.0 - } - ) - order_insert_10: order_insert( - data: { - id: "00717d39-aadc-4e66-aad6-00580176ca1f" - vendorId: "afa9ef70-fd90-493b-95b0-bc05791c514f" - businessId: "c5d0f18b-ba95-479b-8915-1bd498fd6860" - orderType: ONE_TIME - status: POSTED - date: "2026-02-01T05:00:00Z" - eventName: "Event 10" - requested: 2 - teamHubId: "9c8eb9c6-c186-4d55-877e-35be852c3e86" - total: 400.0 - } - ) - order_insert_11: order_insert( - data: { - id: "e7633cc7-8c0e-4eac-b02a-975db83f23ee" - vendorId: "b959b8d6-9133-4025-b3d2-a4c1564f9a25" - businessId: "c5d0f18b-ba95-479b-8915-1bd498fd6860" - orderType: ONE_TIME - status: PARTIAL_STAFFED - date: "2026-02-02T05:00:00Z" - eventName: "Event 11" - requested: 3 - teamHubId: "75c70d83-1680-4b28-ab61-2fe64a74fc5f" - total: 600.0 - } - ) - order_insert_12: order_insert( - data: { - id: "370c65c4-d470-4d06-b9e6-35d2010ea6d8" - vendorId: "32adf31b-8a8f-49be-ace4-50402daa8046" - businessId: "c5d0f18b-ba95-479b-8915-1bd498fd6860" - orderType: ONE_TIME - status: PARTIAL_STAFFED - date: "2026-02-02T05:00:00Z" - eventName: "Event 12" - requested: 3 - teamHubId: "22a0b119-e6dc-4011-9043-d857cd4c12f3" - total: 600.0 - } - ) - order_insert_13: order_insert( - data: { - id: "cf41794b-fe23-46f6-a201-4ccb8a98c859" - vendorId: "afa9ef70-fd90-493b-95b0-bc05791c514f" - businessId: "c5d0f18b-ba95-479b-8915-1bd498fd6860" - orderType: ONE_TIME - status: POSTED - date: "2026-02-03T05:00:00Z" - eventName: "Event 13" - requested: 2 - teamHubId: "9c8eb9c6-c186-4d55-877e-35be852c3e86" - total: 400.0 - } - ) - order_insert_14: order_insert( - data: { - id: "92667bc1-2b5f-425d-9447-24b86b8526d3" - vendorId: "b959b8d6-9133-4025-b3d2-a4c1564f9a25" - businessId: "c5d0f18b-ba95-479b-8915-1bd498fd6860" - orderType: ONE_TIME - status: PARTIAL_STAFFED - date: "2026-02-04T05:00:00Z" - eventName: "Event 14" - requested: 3 - teamHubId: "75c70d83-1680-4b28-ab61-2fe64a74fc5f" - total: 600.0 - } - ) - order_insert_15: order_insert( - data: { - id: "666f9195-0e39-47c9-9b47-953eac28b30d" - vendorId: "32adf31b-8a8f-49be-ace4-50402daa8046" - businessId: "c5d0f18b-ba95-479b-8915-1bd498fd6860" - orderType: ONE_TIME - status: POSTED - date: "2026-02-05T05:00:00Z" - eventName: "Event 15" - requested: 2 - teamHubId: "22a0b119-e6dc-4011-9043-d857cd4c12f3" - total: 400.0 - } - ) - order_insert_16: order_insert( - data: { - id: "13ec91cd-fbb5-4a39-a993-1c238c00761f" - vendorId: "afa9ef70-fd90-493b-95b0-bc05791c514f" - businessId: "c5d0f18b-ba95-479b-8915-1bd498fd6860" - orderType: ONE_TIME - status: POSTED - date: "2026-02-06T05:00:00Z" - eventName: "Event 16" - requested: 2 - teamHubId: "9c8eb9c6-c186-4d55-877e-35be852c3e86" - total: 400.0 - } - ) - order_insert_17: order_insert( - data: { - id: "32ec8f3e-3e07-43c6-8775-4afba7d7f09b" - vendorId: "b959b8d6-9133-4025-b3d2-a4c1564f9a25" - businessId: "c5d0f18b-ba95-479b-8915-1bd498fd6860" - orderType: ONE_TIME - status: POSTED - date: "2026-02-06T05:00:00Z" - eventName: "Event 17" - requested: 2 - teamHubId: "75c70d83-1680-4b28-ab61-2fe64a74fc5f" - total: 400.0 - } - ) - order_insert_18: order_insert( - data: { - id: "0d0e06a5-a03b-4a8f-b0f5-c44d8f41ccfc" - vendorId: "32adf31b-8a8f-49be-ace4-50402daa8046" - businessId: "c5d0f18b-ba95-479b-8915-1bd498fd6860" - orderType: ONE_TIME - status: POSTED - date: "2026-02-07T05:00:00Z" - eventName: "Event 18" - requested: 2 - teamHubId: "22a0b119-e6dc-4011-9043-d857cd4c12f3" - total: 400.0 - } - ) - order_insert_19: order_insert( - data: { - id: "8a90077e-e45b-42dd-aec0-fe8289f43708" - vendorId: "afa9ef70-fd90-493b-95b0-bc05791c514f" - businessId: "c5d0f18b-ba95-479b-8915-1bd498fd6860" - orderType: ONE_TIME - status: POSTED - date: "2026-02-07T05:00:00Z" - eventName: "Event 19" - requested: 2 - teamHubId: "9c8eb9c6-c186-4d55-877e-35be852c3e86" - total: 400.0 - } - ) - order_insert_20: order_insert( - data: { - id: "4bc87380-8388-4f27-bbe0-aa7f3b24620d" - vendorId: "b959b8d6-9133-4025-b3d2-a4c1564f9a25" - businessId: "c5d0f18b-ba95-479b-8915-1bd498fd6860" - orderType: ONE_TIME - status: PARTIAL_STAFFED - date: "2026-02-08T05:00:00Z" - eventName: "Event 20" - requested: 3 - teamHubId: "75c70d83-1680-4b28-ab61-2fe64a74fc5f" - total: 600.0 - } - ) - shift_insert_1: shift_insert( - data: { - id: "6ed269b0-770b-4d01-b694-ed298d6ea441" - title: "Shift 1" - orderId: "dccde341-3d23-4587-8037-188963f5ae26" - date: "2026-01-26T05:00:00Z" - startTime: "2026-01-26T14:00:00Z" - endTime: "2026-01-26T22:00:00Z" - hours: 8.0 - cost: 376.0 - status: COMPLETED - workersNeeded: 2 - filled: 2 - location: "Los Angeles" - locationAddress: "San Jose Street" - city: "Los Angeles" - state: "CA" - street: "San Jose Street" - country: "US" - } - ) - shift_insert_2: shift_insert( - data: { - id: "ba1343dc-56be-4887-88cf-9cd626fcfcb5" - title: "Shift 2" - orderId: "e2825341-d6dd-4dff-9ee0-12332549c3d6" - date: "2026-01-26T05:00:00Z" - startTime: "2026-01-26T14:00:00Z" - endTime: "2026-01-26T22:00:00Z" - hours: 8.0 - cost: 216.0 - status: COMPLETED - workersNeeded: 1 - filled: 1 - location: "Los Angeles" - locationAddress: "San Jose Street" - city: "Los Angeles" - state: "CA" - street: "San Jose Street" - country: "US" - } - ) - shift_insert_3: shift_insert( - data: { - id: "e3d006a1-c0b6-4cef-82ca-df157ee5462f" - title: "Shift 3" - orderId: "19798ac3-adb6-4c77-9fd1-026d3af8138d" - date: "2026-01-27T05:00:00Z" - startTime: "2026-01-27T14:00:00Z" - endTime: "2026-01-27T22:00:00Z" - hours: 8.0 - cost: 360.0 - status: COMPLETED - workersNeeded: 2 - filled: 2 - location: "Los Angeles" - locationAddress: "San Jose Street" - city: "Los Angeles" - state: "CA" - street: "San Jose Street" - country: "US" - } - ) - shift_insert_4: shift_insert( - data: { - id: "5991da4f-86cb-4a38-b654-01de5fc79616" - title: "Shift 4" - orderId: "4ca2f85b-63ef-453f-b9e0-bc0c1a51817a" - date: "2026-01-27T05:00:00Z" - startTime: "2026-01-27T14:00:00Z" - endTime: "2026-01-27T22:00:00Z" - hours: 8.0 - cost: 376.0 - status: COMPLETED - workersNeeded: 2 - filled: 2 - location: "Los Angeles" - locationAddress: "San Jose Street" - city: "Los Angeles" - state: "CA" - street: "San Jose Street" - country: "US" - } - ) - shift_insert_5: shift_insert( - data: { - id: "c1831485-fffa-494b-aaf0-1d83f0ccbd30" - title: "Shift 5" - orderId: "62eed7f5-d8de-4146-bf4c-d4b04965b97d" - date: "2026-01-28T05:00:00Z" - startTime: "2026-01-28T14:00:00Z" - endTime: "2026-01-28T22:00:00Z" - hours: 8.0 - cost: 216.0 - status: COMPLETED - workersNeeded: 1 - filled: 1 - location: "Los Angeles" - locationAddress: "San Jose Street" - city: "Los Angeles" - state: "CA" - street: "San Jose Street" - country: "US" - } - ) - shift_insert_6: shift_insert( - data: { - id: "a7fda158-4fef-4e96-8b26-f3cf95fa0a50" - title: "Shift 6" - orderId: "170c1ff2-67ce-4527-83fd-c4722fc755b0" - date: "2026-01-29T05:00:00Z" - startTime: "2026-01-29T14:00:00Z" - endTime: "2026-01-29T22:00:00Z" - hours: 8.0 - cost: 360.0 - status: COMPLETED - workersNeeded: 2 - filled: 2 - location: "Los Angeles" - locationAddress: "San Jose Street" - city: "Los Angeles" - state: "CA" - street: "San Jose Street" - country: "US" - } - ) - shift_insert_7: shift_insert( - data: { - id: "efaf6e1c-27e3-414f-93f0-cd65031dee08" - title: "Shift 7" - orderId: "b507de75-e9ff-4372-9552-1f34a2161502" - date: "2026-01-30T05:00:00Z" - startTime: "2026-01-30T14:00:00Z" - endTime: "2026-01-30T22:00:00Z" - hours: 8.0 - cost: 376.0 - status: IN_PROGRESS - workersNeeded: 2 - filled: 2 - location: "Los Angeles" - locationAddress: "San Jose Street" - city: "Los Angeles" - state: "CA" - street: "San Jose Street" - country: "US" - } - ) - shift_insert_8: shift_insert( - data: { - id: "65414c88-9655-40ab-9f6c-23e7e443ad8c" - title: "Shift 8" - orderId: "69c2992a-773a-4987-9c6a-c44fbcde3142" - date: "2026-01-30T05:00:00Z" - startTime: "2026-01-30T14:00:00Z" - endTime: "2026-01-30T22:00:00Z" - hours: 8.0 - cost: 472.0 - status: IN_PROGRESS - workersNeeded: 2 - filled: 2 - location: "Los Angeles" - locationAddress: "San Jose Street" - city: "Los Angeles" - state: "CA" - street: "San Jose Street" - country: "US" - } - ) - shift_insert_9: shift_insert( - data: { - id: "e92e0b29-80b1-48b9-a704-a72aae95180f" - title: "Shift 9" - orderId: "64899806-9d73-43bc-b3ee-59016cb581ae" - date: "2026-01-31T05:00:00Z" - startTime: "2026-01-31T14:00:00Z" - endTime: "2026-01-31T22:00:00Z" - hours: 8.0 - cost: 360.0 - status: OPEN - workersNeeded: 2 - filled: 0 - location: "Los Angeles" - locationAddress: "San Jose Street" - city: "Los Angeles" - state: "CA" - street: "San Jose Street" - country: "US" - } - ) - shift_insert_10: shift_insert( - data: { - id: "685cf551-2164-458a-8e87-fefa82dd3e90" - title: "Shift 10" - orderId: "00717d39-aadc-4e66-aad6-00580176ca1f" - date: "2026-02-01T05:00:00Z" - startTime: "2026-02-01T14:00:00Z" - endTime: "2026-02-01T22:00:00Z" - hours: 8.0 - cost: 376.0 - status: OPEN - workersNeeded: 2 - filled: 0 - location: "Los Angeles" - locationAddress: "San Jose Street" - city: "Los Angeles" - state: "CA" - street: "San Jose Street" - country: "US" - } - ) - shift_insert_11: shift_insert( - data: { - id: "b51ca5e8-3f83-4937-bbee-8fae228d18cf" - title: "Shift 11" - orderId: "e7633cc7-8c0e-4eac-b02a-975db83f23ee" - date: "2026-02-02T05:00:00Z" - startTime: "2026-02-02T14:00:00Z" - endTime: "2026-02-02T22:00:00Z" - hours: 8.0 - cost: 688.0 - status: OPEN - workersNeeded: 3 - filled: 2 - location: "Los Angeles" - locationAddress: "San Jose Street" - city: "Los Angeles" - state: "CA" - street: "San Jose Street" - country: "US" - } - ) - shift_insert_12: shift_insert( - data: { - id: "d3260cd9-1b15-4c0e-9c7f-b1b0fc5da2ff" - title: "Shift 12" - orderId: "370c65c4-d470-4d06-b9e6-35d2010ea6d8" - date: "2026-02-02T05:00:00Z" - startTime: "2026-02-02T14:00:00Z" - endTime: "2026-02-02T22:00:00Z" - hours: 8.0 - cost: 528.0 - status: OPEN - workersNeeded: 3 - filled: 2 - location: "Los Angeles" - locationAddress: "San Jose Street" - city: "Los Angeles" - state: "CA" - street: "San Jose Street" - country: "US" - } - ) - shift_insert_13: shift_insert( - data: { - id: "fe82461f-8e87-4ac4-a40c-d34d9ddf34d2" - title: "Shift 13" - orderId: "cf41794b-fe23-46f6-a201-4ccb8a98c859" - date: "2026-02-03T05:00:00Z" - startTime: "2026-02-03T14:00:00Z" - endTime: "2026-02-03T22:00:00Z" - hours: 8.0 - cost: 376.0 - status: OPEN - workersNeeded: 2 - filled: 0 - location: "Los Angeles" - locationAddress: "San Jose Street" - city: "Los Angeles" - state: "CA" - street: "San Jose Street" - country: "US" - } - ) - shift_insert_14: shift_insert( - data: { - id: "001be679-3e96-464a-a1a1-696ac9677fda" - title: "Shift 14" - orderId: "92667bc1-2b5f-425d-9447-24b86b8526d3" - date: "2026-02-04T05:00:00Z" - startTime: "2026-02-04T14:00:00Z" - endTime: "2026-02-04T22:00:00Z" - hours: 8.0 - cost: 688.0 - status: OPEN - workersNeeded: 3 - filled: 2 - location: "Los Angeles" - locationAddress: "San Jose Street" - city: "Los Angeles" - state: "CA" - street: "San Jose Street" - country: "US" - } - ) - shift_insert_15: shift_insert( - data: { - id: "f52a4c9b-c75d-42e2-9310-7c51a0224bff" - title: "Shift 15" - orderId: "666f9195-0e39-47c9-9b47-953eac28b30d" - date: "2026-02-05T05:00:00Z" - startTime: "2026-02-05T14:00:00Z" - endTime: "2026-02-05T22:00:00Z" - hours: 8.0 - cost: 360.0 - status: OPEN - workersNeeded: 2 - filled: 0 - location: "Los Angeles" - locationAddress: "San Jose Street" - city: "Los Angeles" - state: "CA" - street: "San Jose Street" - country: "US" - } - ) - shift_insert_16: shift_insert( - data: { - id: "081eaceb-938a-4ccf-affa-7c1c8d7c6204" - title: "Shift 16" - orderId: "13ec91cd-fbb5-4a39-a993-1c238c00761f" - date: "2026-02-06T05:00:00Z" - startTime: "2026-02-06T14:00:00Z" - endTime: "2026-02-06T22:00:00Z" - hours: 8.0 - cost: 376.0 - status: OPEN - workersNeeded: 2 - filled: 0 - location: "Los Angeles" - locationAddress: "San Jose Street" - city: "Los Angeles" - state: "CA" - street: "San Jose Street" - country: "US" - } - ) - shift_insert_17: shift_insert( - data: { - id: "e34fda56-0a92-4976-b4b9-41e72233eea1" - title: "Shift 17" - orderId: "32ec8f3e-3e07-43c6-8775-4afba7d7f09b" - date: "2026-02-06T05:00:00Z" - startTime: "2026-02-06T14:00:00Z" - endTime: "2026-02-06T22:00:00Z" - hours: 8.0 - cost: 472.0 - status: OPEN - workersNeeded: 2 - filled: 0 - location: "Los Angeles" - locationAddress: "San Jose Street" - city: "Los Angeles" - state: "CA" - street: "San Jose Street" - country: "US" - } - ) - shift_insert_18: shift_insert( - data: { - id: "ba9f6b73-ab07-4264-a027-5ccb2271e18e" - title: "Shift 18" - orderId: "0d0e06a5-a03b-4a8f-b0f5-c44d8f41ccfc" - date: "2026-02-07T05:00:00Z" - startTime: "2026-02-07T14:00:00Z" - endTime: "2026-02-07T22:00:00Z" - hours: 8.0 - cost: 360.0 - status: OPEN - workersNeeded: 2 - filled: 0 - location: "Los Angeles" - locationAddress: "San Jose Street" - city: "Los Angeles" - state: "CA" - street: "San Jose Street" - country: "US" - } - ) - shift_insert_19: shift_insert( - data: { - id: "cb494616-35eb-4d3c-8c48-a131e6e03eff" - title: "Shift 19" - orderId: "8a90077e-e45b-42dd-aec0-fe8289f43708" - date: "2026-02-07T05:00:00Z" - startTime: "2026-02-07T14:00:00Z" - endTime: "2026-02-07T22:00:00Z" - hours: 8.0 - cost: 376.0 - status: OPEN - workersNeeded: 2 - filled: 0 - location: "Los Angeles" - locationAddress: "San Jose Street" - city: "Los Angeles" - state: "CA" - street: "San Jose Street" - country: "US" - } - ) - shift_insert_20: shift_insert( - data: { - id: "d394a15c-1a42-41fa-b4cd-cc3e33929c05" - title: "Shift 20" - orderId: "4bc87380-8388-4f27-bbe0-aa7f3b24620d" - date: "2026-02-08T05:00:00Z" - startTime: "2026-02-08T14:00:00Z" - endTime: "2026-02-08T22:00:00Z" - hours: 8.0 - cost: 688.0 - status: OPEN - workersNeeded: 3 - filled: 2 - location: "Los Angeles" - locationAddress: "San Jose Street" - city: "Los Angeles" - state: "CA" - street: "San Jose Street" - country: "US" - } - ) - shiftRole_insert_1: shiftRole_insert( - data: { - shiftId: "6ed269b0-770b-4d01-b694-ed298d6ea441" - roleId: "cd5a0e59-1f1a-42ff-897c-36ae9349859a" - count: 1 - assigned: 1 - startTime: "2026-01-26T14:00:00Z" - endTime: "2026-01-26T22:00:00Z" - hours: 8.0 - breakType: MIN_30 - totalValue: 176.0 - } - ) - shiftRole_insert_2: shiftRole_insert( - data: { - shiftId: "6ed269b0-770b-4d01-b694-ed298d6ea441" - roleId: "25c3e5d7-6ee1-4672-8ed8-a9241587233e" - count: 1 - assigned: 1 - startTime: "2026-01-26T14:00:00Z" - endTime: "2026-01-26T22:00:00Z" - hours: 8.0 - breakType: MIN_30 - totalValue: 200.0 - } - ) - shiftRole_insert_3: shiftRole_insert( - data: { - shiftId: "ba1343dc-56be-4887-88cf-9cd626fcfcb5" - roleId: "e39f7067-8742-43b0-bfff-626094a8cb55" - count: 1 - assigned: 1 - startTime: "2026-01-26T14:00:00Z" - endTime: "2026-01-26T22:00:00Z" - hours: 8.0 - breakType: MIN_30 - totalValue: 216.0 - } - ) - shiftRole_insert_4: shiftRole_insert( - data: { - shiftId: "e3d006a1-c0b6-4cef-82ca-df157ee5462f" - roleId: "a6cee403-e3fa-4295-a6d1-623e7e2e18f7" - count: 1 - assigned: 1 - startTime: "2026-01-27T14:00:00Z" - endTime: "2026-01-27T22:00:00Z" - hours: 8.0 - breakType: MIN_30 - totalValue: 168.0 - } - ) - shiftRole_insert_5: shiftRole_insert( - data: { - shiftId: "e3d006a1-c0b6-4cef-82ca-df157ee5462f" - roleId: "c1f6b67f-f9ef-45b5-8dcb-bd32b4295fcb" - count: 1 - assigned: 1 - startTime: "2026-01-27T14:00:00Z" - endTime: "2026-01-27T22:00:00Z" - hours: 8.0 - breakType: MIN_30 - totalValue: 192.0 - } - ) - shiftRole_insert_6: shiftRole_insert( - data: { - shiftId: "5991da4f-86cb-4a38-b654-01de5fc79616" - roleId: "cd5a0e59-1f1a-42ff-897c-36ae9349859a" - count: 1 - assigned: 1 - startTime: "2026-01-27T14:00:00Z" - endTime: "2026-01-27T22:00:00Z" - hours: 8.0 - breakType: MIN_30 - totalValue: 176.0 - } - ) - shiftRole_insert_7: shiftRole_insert( - data: { - shiftId: "5991da4f-86cb-4a38-b654-01de5fc79616" - roleId: "25c3e5d7-6ee1-4672-8ed8-a9241587233e" - count: 1 - assigned: 1 - startTime: "2026-01-27T14:00:00Z" - endTime: "2026-01-27T22:00:00Z" - hours: 8.0 - breakType: MIN_30 - totalValue: 200.0 - } - ) - shiftRole_insert_8: shiftRole_insert( - data: { - shiftId: "c1831485-fffa-494b-aaf0-1d83f0ccbd30" - roleId: "e39f7067-8742-43b0-bfff-626094a8cb55" - count: 1 - assigned: 1 - startTime: "2026-01-28T14:00:00Z" - endTime: "2026-01-28T22:00:00Z" - hours: 8.0 - breakType: MIN_30 - totalValue: 216.0 - } - ) - shiftRole_insert_9: shiftRole_insert( - data: { - shiftId: "a7fda158-4fef-4e96-8b26-f3cf95fa0a50" - roleId: "a6cee403-e3fa-4295-a6d1-623e7e2e18f7" - count: 1 - assigned: 1 - startTime: "2026-01-29T14:00:00Z" - endTime: "2026-01-29T22:00:00Z" - hours: 8.0 - breakType: MIN_30 - totalValue: 168.0 - } - ) - shiftRole_insert_10: shiftRole_insert( - data: { - shiftId: "a7fda158-4fef-4e96-8b26-f3cf95fa0a50" - roleId: "c1f6b67f-f9ef-45b5-8dcb-bd32b4295fcb" - count: 1 - assigned: 1 - startTime: "2026-01-29T14:00:00Z" - endTime: "2026-01-29T22:00:00Z" - hours: 8.0 - breakType: MIN_30 - totalValue: 192.0 - } - ) - shiftRole_insert_11: shiftRole_insert( - data: { - shiftId: "efaf6e1c-27e3-414f-93f0-cd65031dee08" - roleId: "cd5a0e59-1f1a-42ff-897c-36ae9349859a" - count: 1 - assigned: 1 - startTime: "2026-01-30T14:00:00Z" - endTime: "2026-01-30T22:00:00Z" - hours: 8.0 - breakType: MIN_30 - totalValue: 176.0 - } - ) - shiftRole_insert_12: shiftRole_insert( - data: { - shiftId: "efaf6e1c-27e3-414f-93f0-cd65031dee08" - roleId: "25c3e5d7-6ee1-4672-8ed8-a9241587233e" - count: 1 - assigned: 1 - startTime: "2026-01-30T14:00:00Z" - endTime: "2026-01-30T22:00:00Z" - hours: 8.0 - breakType: MIN_30 - totalValue: 200.0 - } - ) - shiftRole_insert_13: shiftRole_insert( - data: { - shiftId: "65414c88-9655-40ab-9f6c-23e7e443ad8c" - roleId: "e39f7067-8742-43b0-bfff-626094a8cb55" - count: 1 - assigned: 1 - startTime: "2026-01-30T14:00:00Z" - endTime: "2026-01-30T22:00:00Z" - hours: 8.0 - breakType: MIN_30 - totalValue: 216.0 - } - ) - shiftRole_insert_14: shiftRole_insert( - data: { - shiftId: "65414c88-9655-40ab-9f6c-23e7e443ad8c" - roleId: "29ddea5b-9040-4c46-96d9-3eba480b56b7" - count: 1 - assigned: 1 - startTime: "2026-01-30T14:00:00Z" - endTime: "2026-01-30T22:00:00Z" - hours: 8.0 - breakType: MIN_30 - totalValue: 256.0 - } - ) - shiftRole_insert_15: shiftRole_insert( - data: { - shiftId: "e92e0b29-80b1-48b9-a704-a72aae95180f" - roleId: "a6cee403-e3fa-4295-a6d1-623e7e2e18f7" - count: 1 - assigned: 0 - startTime: "2026-01-31T14:00:00Z" - endTime: "2026-01-31T22:00:00Z" - hours: 8.0 - breakType: MIN_30 - totalValue: 168.0 - } - ) - shiftRole_insert_16: shiftRole_insert( - data: { - shiftId: "e92e0b29-80b1-48b9-a704-a72aae95180f" - roleId: "c1f6b67f-f9ef-45b5-8dcb-bd32b4295fcb" - count: 1 - assigned: 0 - startTime: "2026-01-31T14:00:00Z" - endTime: "2026-01-31T22:00:00Z" - hours: 8.0 - breakType: MIN_30 - totalValue: 192.0 - } - ) - shiftRole_insert_17: shiftRole_insert( - data: { - shiftId: "685cf551-2164-458a-8e87-fefa82dd3e90" - roleId: "cd5a0e59-1f1a-42ff-897c-36ae9349859a" - count: 1 - assigned: 0 - startTime: "2026-02-01T14:00:00Z" - endTime: "2026-02-01T22:00:00Z" - hours: 8.0 - breakType: MIN_30 - totalValue: 176.0 - } - ) - shiftRole_insert_18: shiftRole_insert( - data: { - shiftId: "685cf551-2164-458a-8e87-fefa82dd3e90" - roleId: "25c3e5d7-6ee1-4672-8ed8-a9241587233e" - count: 1 - assigned: 0 - startTime: "2026-02-01T14:00:00Z" - endTime: "2026-02-01T22:00:00Z" - hours: 8.0 - breakType: MIN_30 - totalValue: 200.0 - } - ) - shiftRole_insert_19: shiftRole_insert( - data: { - shiftId: "b51ca5e8-3f83-4937-bbee-8fae228d18cf" - roleId: "e39f7067-8742-43b0-bfff-626094a8cb55" - count: 2 - assigned: 1 - startTime: "2026-02-02T14:00:00Z" - endTime: "2026-02-02T22:00:00Z" - hours: 8.0 - breakType: MIN_30 - totalValue: 432.0 - } - ) - shiftRole_insert_20: shiftRole_insert( - data: { - shiftId: "b51ca5e8-3f83-4937-bbee-8fae228d18cf" - roleId: "29ddea5b-9040-4c46-96d9-3eba480b56b7" - count: 1 - assigned: 1 - startTime: "2026-02-02T14:00:00Z" - endTime: "2026-02-02T22:00:00Z" - hours: 8.0 - breakType: MIN_30 - totalValue: 256.0 - } - ) - shiftRole_insert_21: shiftRole_insert( - data: { - shiftId: "d3260cd9-1b15-4c0e-9c7f-b1b0fc5da2ff" - roleId: "a6cee403-e3fa-4295-a6d1-623e7e2e18f7" - count: 2 - assigned: 1 - startTime: "2026-02-02T14:00:00Z" - endTime: "2026-02-02T22:00:00Z" - hours: 8.0 - breakType: MIN_30 - totalValue: 336.0 - } - ) - shiftRole_insert_22: shiftRole_insert( - data: { - shiftId: "d3260cd9-1b15-4c0e-9c7f-b1b0fc5da2ff" - roleId: "c1f6b67f-f9ef-45b5-8dcb-bd32b4295fcb" - count: 1 - assigned: 1 - startTime: "2026-02-02T14:00:00Z" - endTime: "2026-02-02T22:00:00Z" - hours: 8.0 - breakType: MIN_30 - totalValue: 192.0 - } - ) - shiftRole_insert_23: shiftRole_insert( - data: { - shiftId: "fe82461f-8e87-4ac4-a40c-d34d9ddf34d2" - roleId: "cd5a0e59-1f1a-42ff-897c-36ae9349859a" - count: 1 - assigned: 0 - startTime: "2026-02-03T14:00:00Z" - endTime: "2026-02-03T22:00:00Z" - hours: 8.0 - breakType: MIN_30 - totalValue: 176.0 - } - ) - shiftRole_insert_24: shiftRole_insert( - data: { - shiftId: "fe82461f-8e87-4ac4-a40c-d34d9ddf34d2" - roleId: "25c3e5d7-6ee1-4672-8ed8-a9241587233e" - count: 1 - assigned: 0 - startTime: "2026-02-03T14:00:00Z" - endTime: "2026-02-03T22:00:00Z" - hours: 8.0 - breakType: MIN_30 - totalValue: 200.0 - } - ) - shiftRole_insert_25: shiftRole_insert( - data: { - shiftId: "001be679-3e96-464a-a1a1-696ac9677fda" - roleId: "e39f7067-8742-43b0-bfff-626094a8cb55" - count: 2 - assigned: 1 - startTime: "2026-02-04T14:00:00Z" - endTime: "2026-02-04T22:00:00Z" - hours: 8.0 - breakType: MIN_30 - totalValue: 432.0 - } - ) - shiftRole_insert_26: shiftRole_insert( - data: { - shiftId: "001be679-3e96-464a-a1a1-696ac9677fda" - roleId: "29ddea5b-9040-4c46-96d9-3eba480b56b7" - count: 1 - assigned: 1 - startTime: "2026-02-04T14:00:00Z" - endTime: "2026-02-04T22:00:00Z" - hours: 8.0 - breakType: MIN_30 - totalValue: 256.0 - } - ) - shiftRole_insert_27: shiftRole_insert( - data: { - shiftId: "f52a4c9b-c75d-42e2-9310-7c51a0224bff" - roleId: "a6cee403-e3fa-4295-a6d1-623e7e2e18f7" - count: 1 - assigned: 0 - startTime: "2026-02-05T14:00:00Z" - endTime: "2026-02-05T22:00:00Z" - hours: 8.0 - breakType: MIN_30 - totalValue: 168.0 - } - ) - shiftRole_insert_28: shiftRole_insert( - data: { - shiftId: "f52a4c9b-c75d-42e2-9310-7c51a0224bff" - roleId: "c1f6b67f-f9ef-45b5-8dcb-bd32b4295fcb" - count: 1 - assigned: 0 - startTime: "2026-02-05T14:00:00Z" - endTime: "2026-02-05T22:00:00Z" - hours: 8.0 - breakType: MIN_30 - totalValue: 192.0 - } - ) - shiftRole_insert_29: shiftRole_insert( - data: { - shiftId: "081eaceb-938a-4ccf-affa-7c1c8d7c6204" - roleId: "cd5a0e59-1f1a-42ff-897c-36ae9349859a" - count: 1 - assigned: 0 - startTime: "2026-02-06T14:00:00Z" - endTime: "2026-02-06T22:00:00Z" - hours: 8.0 - breakType: MIN_30 - totalValue: 176.0 - } - ) - shiftRole_insert_30: shiftRole_insert( - data: { - shiftId: "081eaceb-938a-4ccf-affa-7c1c8d7c6204" - roleId: "25c3e5d7-6ee1-4672-8ed8-a9241587233e" - count: 1 - assigned: 0 - startTime: "2026-02-06T14:00:00Z" - endTime: "2026-02-06T22:00:00Z" - hours: 8.0 - breakType: MIN_30 - totalValue: 200.0 - } - ) - shiftRole_insert_31: shiftRole_insert( - data: { - shiftId: "e34fda56-0a92-4976-b4b9-41e72233eea1" - roleId: "e39f7067-8742-43b0-bfff-626094a8cb55" - count: 1 - assigned: 0 - startTime: "2026-02-06T14:00:00Z" - endTime: "2026-02-06T22:00:00Z" - hours: 8.0 - breakType: MIN_30 - totalValue: 216.0 - } - ) - shiftRole_insert_32: shiftRole_insert( - data: { - shiftId: "e34fda56-0a92-4976-b4b9-41e72233eea1" - roleId: "29ddea5b-9040-4c46-96d9-3eba480b56b7" - count: 1 - assigned: 0 - startTime: "2026-02-06T14:00:00Z" - endTime: "2026-02-06T22:00:00Z" - hours: 8.0 - breakType: MIN_30 - totalValue: 256.0 - } - ) - shiftRole_insert_33: shiftRole_insert( - data: { - shiftId: "ba9f6b73-ab07-4264-a027-5ccb2271e18e" - roleId: "a6cee403-e3fa-4295-a6d1-623e7e2e18f7" - count: 1 - assigned: 0 - startTime: "2026-02-07T14:00:00Z" - endTime: "2026-02-07T22:00:00Z" - hours: 8.0 - breakType: MIN_30 - totalValue: 168.0 - } - ) - shiftRole_insert_34: shiftRole_insert( - data: { - shiftId: "ba9f6b73-ab07-4264-a027-5ccb2271e18e" - roleId: "c1f6b67f-f9ef-45b5-8dcb-bd32b4295fcb" - count: 1 - assigned: 0 - startTime: "2026-02-07T14:00:00Z" - endTime: "2026-02-07T22:00:00Z" - hours: 8.0 - breakType: MIN_30 - totalValue: 192.0 - } - ) - shiftRole_insert_35: shiftRole_insert( - data: { - shiftId: "cb494616-35eb-4d3c-8c48-a131e6e03eff" - roleId: "cd5a0e59-1f1a-42ff-897c-36ae9349859a" - count: 1 - assigned: 0 - startTime: "2026-02-07T14:00:00Z" - endTime: "2026-02-07T22:00:00Z" - hours: 8.0 - breakType: MIN_30 - totalValue: 176.0 - } - ) - shiftRole_insert_36: shiftRole_insert( - data: { - shiftId: "cb494616-35eb-4d3c-8c48-a131e6e03eff" - roleId: "25c3e5d7-6ee1-4672-8ed8-a9241587233e" - count: 1 - assigned: 0 - startTime: "2026-02-07T14:00:00Z" - endTime: "2026-02-07T22:00:00Z" - hours: 8.0 - breakType: MIN_30 - totalValue: 200.0 - } - ) - shiftRole_insert_37: shiftRole_insert( - data: { - shiftId: "d394a15c-1a42-41fa-b4cd-cc3e33929c05" - roleId: "e39f7067-8742-43b0-bfff-626094a8cb55" - count: 2 - assigned: 1 - startTime: "2026-02-08T14:00:00Z" - endTime: "2026-02-08T22:00:00Z" - hours: 8.0 - breakType: MIN_30 - totalValue: 432.0 - } - ) - shiftRole_insert_38: shiftRole_insert( - data: { - shiftId: "d394a15c-1a42-41fa-b4cd-cc3e33929c05" - roleId: "29ddea5b-9040-4c46-96d9-3eba480b56b7" - count: 1 - assigned: 1 - startTime: "2026-02-08T14:00:00Z" - endTime: "2026-02-08T22:00:00Z" - hours: 8.0 - breakType: MIN_30 - totalValue: 256.0 - } - ) - application_insert_1: application_insert( - data: { - id: "759cc343-e6a4-45ad-92f0-8c6ddf498af8" - shiftId: "6ed269b0-770b-4d01-b694-ed298d6ea441" - staffId: "584756aa-0294-4caa-8256-bcc9c18995eb" - roleId: "cd5a0e59-1f1a-42ff-897c-36ae9349859a" - status: COMPLETED - origin: STAFF - checkInTime: "2026-01-26T14:00:00Z" - checkOutTime: "2026-01-26T22:00:00Z" - } - ) - application_insert_2: application_insert( - data: { - id: "6f61a6e0-b4d4-48e2-bbeb-8ec059a4d260" - shiftId: "6ed269b0-770b-4d01-b694-ed298d6ea441" - staffId: "1e45b730-9c45-43a2-bda3-9b2e9d22b019" - roleId: "25c3e5d7-6ee1-4672-8ed8-a9241587233e" - status: COMPLETED - origin: STAFF - checkInTime: "2026-01-26T14:00:00Z" - checkOutTime: "2026-01-26T22:00:00Z" - } - ) - application_insert_3: application_insert( - data: { - id: "94b0aef9-1d1b-490b-b68e-0a495083ad9c" - shiftId: "ba1343dc-56be-4887-88cf-9cd626fcfcb5" - staffId: "bacfd25e-b5b0-463b-bce8-fad1aff2d9bb" - roleId: "e39f7067-8742-43b0-bfff-626094a8cb55" - status: COMPLETED - origin: STAFF - checkInTime: "2026-01-26T14:00:00Z" - checkOutTime: "2026-01-26T22:00:00Z" - } - ) - application_insert_4: application_insert( - data: { - id: "5997f3dc-9d67-4af5-beb2-22fb99ec2e3d" - shiftId: "e3d006a1-c0b6-4cef-82ca-df157ee5462f" - staffId: "c5801579-2472-4ddb-b81b-1af656c85e73" - roleId: "a6cee403-e3fa-4295-a6d1-623e7e2e18f7" - status: COMPLETED - origin: STAFF - checkInTime: "2026-01-27T14:00:00Z" - checkOutTime: "2026-01-27T22:00:00Z" - } - ) - application_insert_5: application_insert( - data: { - id: "5e2f6f5e-a2ac-4592-81a0-73ab883c7cc2" - shiftId: "e3d006a1-c0b6-4cef-82ca-df157ee5462f" - staffId: "24421973-9a75-48dd-97d5-a931851abc97" - roleId: "c1f6b67f-f9ef-45b5-8dcb-bd32b4295fcb" - status: COMPLETED - origin: STAFF - checkInTime: "2026-01-27T14:00:00Z" - checkOutTime: "2026-01-27T22:00:00Z" - } - ) - application_insert_6: application_insert( - data: { - id: "b71ad968-be58-4e73-a916-f2da800285b1" - shiftId: "5991da4f-86cb-4a38-b654-01de5fc79616" - staffId: "584756aa-0294-4caa-8256-bcc9c18995eb" - roleId: "cd5a0e59-1f1a-42ff-897c-36ae9349859a" - status: COMPLETED - origin: STAFF - checkInTime: "2026-01-27T14:00:00Z" - checkOutTime: "2026-01-27T22:00:00Z" - } - ) - application_insert_7: application_insert( - data: { - id: "8116a76a-97b8-4606-971a-a18cbf1bb65f" - shiftId: "5991da4f-86cb-4a38-b654-01de5fc79616" - staffId: "1e45b730-9c45-43a2-bda3-9b2e9d22b019" - roleId: "25c3e5d7-6ee1-4672-8ed8-a9241587233e" - status: COMPLETED - origin: STAFF - checkInTime: "2026-01-27T14:00:00Z" - checkOutTime: "2026-01-27T22:00:00Z" - } - ) - application_insert_8: application_insert( - data: { - id: "dd7167dc-4218-46ca-af43-0d87601fb964" - shiftId: "c1831485-fffa-494b-aaf0-1d83f0ccbd30" - staffId: "bacfd25e-b5b0-463b-bce8-fad1aff2d9bb" - roleId: "e39f7067-8742-43b0-bfff-626094a8cb55" - status: COMPLETED - origin: STAFF - checkInTime: "2026-01-28T14:00:00Z" - checkOutTime: "2026-01-28T22:00:00Z" - } - ) - application_insert_9: application_insert( - data: { - id: "412e0b38-00fb-4d6b-877e-62394673c2ea" - shiftId: "a7fda158-4fef-4e96-8b26-f3cf95fa0a50" - staffId: "c5801579-2472-4ddb-b81b-1af656c85e73" - roleId: "a6cee403-e3fa-4295-a6d1-623e7e2e18f7" - status: COMPLETED - origin: STAFF - checkInTime: "2026-01-29T14:00:00Z" - checkOutTime: "2026-01-29T22:00:00Z" - } - ) - application_insert_10: application_insert( - data: { - id: "27f8c3d4-9341-429d-9e14-4efba72ab41f" - shiftId: "a7fda158-4fef-4e96-8b26-f3cf95fa0a50" - staffId: "24421973-9a75-48dd-97d5-a931851abc97" - roleId: "c1f6b67f-f9ef-45b5-8dcb-bd32b4295fcb" - status: COMPLETED - origin: STAFF - checkInTime: "2026-01-29T14:00:00Z" - checkOutTime: "2026-01-29T22:00:00Z" - } - ) - application_insert_11: application_insert( - data: { - id: "4c05f90d-5ca5-4ea2-9c67-5f2a86f66d94" - shiftId: "efaf6e1c-27e3-414f-93f0-cd65031dee08" - staffId: "584756aa-0294-4caa-8256-bcc9c18995eb" - roleId: "cd5a0e59-1f1a-42ff-897c-36ae9349859a" - status: CONFIRMED - origin: STAFF - checkInTime: "2026-01-30T14:00:00Z" - } - ) - application_insert_12: application_insert( - data: { - id: "3692d105-a9c4-4443-b4b2-8973e31be92a" - shiftId: "efaf6e1c-27e3-414f-93f0-cd65031dee08" - staffId: "1e45b730-9c45-43a2-bda3-9b2e9d22b019" - roleId: "25c3e5d7-6ee1-4672-8ed8-a9241587233e" - status: CHECKED_IN - origin: STAFF - checkInTime: "2026-01-30T14:00:00Z" - } - ) - application_insert_13: application_insert( - data: { - id: "61a88f86-17d0-4bd2-80fe-2358eb9f1ab3" - shiftId: "65414c88-9655-40ab-9f6c-23e7e443ad8c" - staffId: "bacfd25e-b5b0-463b-bce8-fad1aff2d9bb" - roleId: "e39f7067-8742-43b0-bfff-626094a8cb55" - status: CONFIRMED - origin: STAFF - checkInTime: "2026-01-30T14:00:00Z" - } - ) - application_insert_14: application_insert( - data: { - id: "3002d811-fcf2-41e0-81ad-87e772f9d632" - shiftId: "65414c88-9655-40ab-9f6c-23e7e443ad8c" - staffId: "44c79ae8-d759-41e0-94d7-ae60b504d65c" - roleId: "29ddea5b-9040-4c46-96d9-3eba480b56b7" - status: CHECKED_IN - origin: STAFF - checkInTime: "2026-01-30T14:00:00Z" - } - ) - application_insert_15: application_insert( - data: { - id: "48ddc0cb-9764-4113-b2c6-dfee2970b56f" - shiftId: "b51ca5e8-3f83-4937-bbee-8fae228d18cf" - staffId: "bacfd25e-b5b0-463b-bce8-fad1aff2d9bb" - roleId: "e39f7067-8742-43b0-bfff-626094a8cb55" - status: ACCEPTED - origin: STAFF - } - ) - application_insert_16: application_insert( - data: { - id: "3e701714-52e3-452d-b55c-8e669de41555" - shiftId: "b51ca5e8-3f83-4937-bbee-8fae228d18cf" - staffId: "44c79ae8-d759-41e0-94d7-ae60b504d65c" - roleId: "29ddea5b-9040-4c46-96d9-3eba480b56b7" - status: ACCEPTED - origin: STAFF - } - ) - application_insert_17: application_insert( - data: { - id: "b408ba8f-9c87-415d-a226-1c91b56b1ca3" - shiftId: "d3260cd9-1b15-4c0e-9c7f-b1b0fc5da2ff" - staffId: "c5801579-2472-4ddb-b81b-1af656c85e73" - roleId: "a6cee403-e3fa-4295-a6d1-623e7e2e18f7" - status: ACCEPTED - origin: STAFF - } - ) - application_insert_18: application_insert( - data: { - id: "ee99cca8-6412-404f-ad4d-e688ac36f3d6" - shiftId: "d3260cd9-1b15-4c0e-9c7f-b1b0fc5da2ff" - staffId: "24421973-9a75-48dd-97d5-a931851abc97" - roleId: "c1f6b67f-f9ef-45b5-8dcb-bd32b4295fcb" - status: ACCEPTED - origin: STAFF - } - ) - application_insert_19: application_insert( - data: { - id: "de01d803-429d-4549-9a91-e3a5a3750911" - shiftId: "001be679-3e96-464a-a1a1-696ac9677fda" - staffId: "bacfd25e-b5b0-463b-bce8-fad1aff2d9bb" - roleId: "e39f7067-8742-43b0-bfff-626094a8cb55" - status: ACCEPTED - origin: STAFF - } - ) - application_insert_20: application_insert( - data: { - id: "d071f83a-5071-4061-b843-c69df4d58d08" - shiftId: "001be679-3e96-464a-a1a1-696ac9677fda" - staffId: "44c79ae8-d759-41e0-94d7-ae60b504d65c" - roleId: "29ddea5b-9040-4c46-96d9-3eba480b56b7" - status: ACCEPTED - origin: STAFF - } - ) - application_insert_21: application_insert( - data: { - id: "5268e4b8-fa6c-4594-bcb6-4bace5e1be7c" - shiftId: "d394a15c-1a42-41fa-b4cd-cc3e33929c05" - staffId: "bacfd25e-b5b0-463b-bce8-fad1aff2d9bb" - roleId: "e39f7067-8742-43b0-bfff-626094a8cb55" - status: ACCEPTED - origin: STAFF - } - ) - application_insert_22: application_insert( - data: { - id: "eeac50a3-4ff2-4212-a0ec-009a99ab717f" - shiftId: "d394a15c-1a42-41fa-b4cd-cc3e33929c05" - staffId: "44c79ae8-d759-41e0-94d7-ae60b504d65c" - roleId: "29ddea5b-9040-4c46-96d9-3eba480b56b7" - status: ACCEPTED - origin: STAFF - } - ) - invoice_insert_1: invoice_insert( - data: { - id: "f91168e1-2dc9-4544-86b9-71145e987d83" - status: PAID - vendorId: "afa9ef70-fd90-493b-95b0-bc05791c514f" - businessId: "c5d0f18b-ba95-479b-8915-1bd498fd6860" - orderId: "dccde341-3d23-4587-8037-188963f5ae26" - paymentTerms: NET_30 - invoiceNumber: "INV-2026-001" - issueDate: "2026-01-26T17:00:00Z" - dueDate: "2026-02-09T17:00:00Z" - hub: "Los Angeles" - amount: 400.0 - staffCount: 2 - chargesCount: 2 - } - ) - invoice_insert_2: invoice_insert( - data: { - id: "edf18bc2-1317-487e-89cc-0d8fe95b592a" - status: PAID - vendorId: "b959b8d6-9133-4025-b3d2-a4c1564f9a25" - businessId: "c5d0f18b-ba95-479b-8915-1bd498fd6860" - orderId: "e2825341-d6dd-4dff-9ee0-12332549c3d6" - paymentTerms: NET_30 - invoiceNumber: "INV-2026-002" - issueDate: "2026-01-26T17:00:00Z" - dueDate: "2026-02-09T17:00:00Z" - hub: "Los Angeles" - amount: 200.0 - staffCount: 1 - chargesCount: 1 - } - ) - invoice_insert_3: invoice_insert( - data: { - id: "1747bac6-588d-4fd9-8bad-0067f602d14c" - status: PAID - vendorId: "32adf31b-8a8f-49be-ace4-50402daa8046" - businessId: "c5d0f18b-ba95-479b-8915-1bd498fd6860" - orderId: "19798ac3-adb6-4c77-9fd1-026d3af8138d" - paymentTerms: NET_30 - invoiceNumber: "INV-2026-003" - issueDate: "2026-01-27T17:00:00Z" - dueDate: "2026-02-10T17:00:00Z" - hub: "Los Angeles" - amount: 400.0 - staffCount: 2 - chargesCount: 2 - } - ) - invoice_insert_4: invoice_insert( - data: { - id: "67d95e3e-151f-447e-82c8-c9cfad58b83a" - status: APPROVED - vendorId: "afa9ef70-fd90-493b-95b0-bc05791c514f" - businessId: "c5d0f18b-ba95-479b-8915-1bd498fd6860" - orderId: "4ca2f85b-63ef-453f-b9e0-bc0c1a51817a" - paymentTerms: NET_30 - invoiceNumber: "INV-2026-004" - issueDate: "2026-01-27T17:00:00Z" - dueDate: "2026-02-10T17:00:00Z" - hub: "Los Angeles" - amount: 400.0 - staffCount: 2 - chargesCount: 2 - } - ) - invoice_insert_5: invoice_insert( - data: { - id: "335d6d39-51ec-4dba-8065-d1909a28dbfd" - status: APPROVED - vendorId: "b959b8d6-9133-4025-b3d2-a4c1564f9a25" - businessId: "c5d0f18b-ba95-479b-8915-1bd498fd6860" - orderId: "62eed7f5-d8de-4146-bf4c-d4b04965b97d" - paymentTerms: NET_30 - invoiceNumber: "INV-2026-005" - issueDate: "2026-01-28T17:00:00Z" - dueDate: "2026-02-11T17:00:00Z" - hub: "Los Angeles" - amount: 200.0 - staffCount: 1 - chargesCount: 1 - } - ) - invoice_insert_6: invoice_insert( - data: { - id: "3396091d-b921-4316-9956-8de8e7a0c0e9" - status: APPROVED - vendorId: "32adf31b-8a8f-49be-ace4-50402daa8046" - businessId: "c5d0f18b-ba95-479b-8915-1bd498fd6860" - orderId: "170c1ff2-67ce-4527-83fd-c4722fc755b0" - paymentTerms: NET_30 - invoiceNumber: "INV-2026-006" - issueDate: "2026-01-29T17:00:00Z" - dueDate: "2026-02-12T17:00:00Z" - hub: "Los Angeles" - amount: 400.0 - staffCount: 2 - chargesCount: 2 - } - ) - recentPayment_insert_1: recentPayment_insert( - data: { - id: "fa09b5ec-535c-462d-8660-c034472f0f64" - workedTime: "8.0h" - status: PAID - staffId: "584756aa-0294-4caa-8256-bcc9c18995eb" - applicationId: "759cc343-e6a4-45ad-92f0-8c6ddf498af8" - invoiceId: "f91168e1-2dc9-4544-86b9-71145e987d83" - } - ) - recentPayment_insert_2: recentPayment_insert( - data: { - id: "ae9f05c3-9597-4f66-9ee2-f1b388b42273" - workedTime: "8.0h" - status: PAID - staffId: "1e45b730-9c45-43a2-bda3-9b2e9d22b019" - applicationId: "6f61a6e0-b4d4-48e2-bbeb-8ec059a4d260" - invoiceId: "f91168e1-2dc9-4544-86b9-71145e987d83" - } - ) - recentPayment_insert_3: recentPayment_insert( - data: { - id: "98031410-6035-406c-8842-9bc3f960fced" - workedTime: "8.0h" - status: PAID - staffId: "bacfd25e-b5b0-463b-bce8-fad1aff2d9bb" - applicationId: "94b0aef9-1d1b-490b-b68e-0a495083ad9c" - invoiceId: "edf18bc2-1317-487e-89cc-0d8fe95b592a" - } - ) - recentPayment_insert_4: recentPayment_insert( - data: { - id: "77d8b914-242a-46a1-b467-9ecd8dd5c1fa" - workedTime: "8.0h" - status: PAID - staffId: "c5801579-2472-4ddb-b81b-1af656c85e73" - applicationId: "5997f3dc-9d67-4af5-beb2-22fb99ec2e3d" - invoiceId: "1747bac6-588d-4fd9-8bad-0067f602d14c" - } - ) - recentPayment_insert_5: recentPayment_insert( - data: { - id: "4f5c1961-5b1e-4bf5-8415-5b812bbf0d0b" - workedTime: "8.0h" - status: PAID - staffId: "24421973-9a75-48dd-97d5-a931851abc97" - applicationId: "5e2f6f5e-a2ac-4592-81a0-73ab883c7cc2" - invoiceId: "1747bac6-588d-4fd9-8bad-0067f602d14c" - } - ) -}