@adaptware/eagles-db 0.1.87 → 0.1.89
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/client/edge.js +7 -6
- package/client/index-browser.js +2 -1
- package/client/index.d.ts +2 -1
- package/client/index.js +7 -6
- package/client/package.json +1 -1
- package/client/schema.prisma +1 -0
- package/client/wasm.js +2 -1
- package/dist/index.d.ts +5 -5
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +6 -8
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/prisma/.DS_Store +0 -0
- package/prisma/migrations/20260415120000_remove_job_profile_current_phase/migration.sql +2 -0
- package/prisma/migrations/20260422120000_add_integration_provider_zoom/migration.sql +2 -0
- package/prisma/migrations/20260422140000_add_zoom_meeting_tables/migration.sql +57 -0
- package/prisma/migrations/20260422180000_add_zoom_webhook_event/migration.sql +18 -0
- package/prisma/migrations/20260423140000_add_interview_platform/migration.sql +6 -0
- package/prisma/migrations/20260423150000_remove_interview_zoom_topic/migration.sql +2 -0
- package/prisma/migrations/20260423160000_zoom_meeting_uuid/migration.sql +4 -0
- package/prisma/migrations/20260424120000_auth_module_user_provider_unique/migration.sql +5 -0
- package/prisma/migrations/20260424130000_zoom_meeting_zoom_host_user_id/migration.sql +6 -0
- package/prisma/migrations/20260425100000_zoom_participant_user_enum/migration.sql +22 -0
- package/prisma/migrations/20260425110000_zoom_participant_zoom_id_required/migration.sql +13 -0
- package/prisma/migrations/20260425120000_zoom_participant_id_nullable/migration.sql +4 -0
- package/prisma/migrations/20260429140000_drop_evaluation_plan_job_order_unique/migration.sql +5 -0
- package/prisma/migrations/20260429180000_eval_plan_timeline_optional_ongoing_duration/migration.sql +15 -0
- package/prisma/migrations/20260430120000_drop_assessment_library_metadata_fields/migration.sql +8 -0
- package/prisma/migrations/20260430140000_drop_question_question_type/migration.sql +5 -0
- package/prisma/migrations/migration_lock.toml +3 -0
- package/prisma/schema/integration.prisma +1 -0
- package/client/libquery_engine-darwin.dylib.node +0 -0
package/client/index-browser.js
CHANGED
|
@@ -1057,7 +1057,8 @@ exports.IntegrationProvider = exports.$Enums.IntegrationProvider = {
|
|
|
1057
1057
|
LINKEDIN: 'LINKEDIN',
|
|
1058
1058
|
GOOGLE: 'GOOGLE',
|
|
1059
1059
|
MICROSOFT: 'MICROSOFT',
|
|
1060
|
-
ZOOM: 'ZOOM'
|
|
1060
|
+
ZOOM: 'ZOOM',
|
|
1061
|
+
CALENDLY: 'CALENDLY'
|
|
1061
1062
|
};
|
|
1062
1063
|
|
|
1063
1064
|
exports.IntegrationAuthType = exports.$Enums.IntegrationAuthType = {
|
package/client/index.d.ts
CHANGED
|
@@ -400,7 +400,8 @@ export const IntegrationProvider: {
|
|
|
400
400
|
LINKEDIN: 'LINKEDIN',
|
|
401
401
|
GOOGLE: 'GOOGLE',
|
|
402
402
|
MICROSOFT: 'MICROSOFT',
|
|
403
|
-
ZOOM: 'ZOOM'
|
|
403
|
+
ZOOM: 'ZOOM',
|
|
404
|
+
CALENDLY: 'CALENDLY'
|
|
404
405
|
};
|
|
405
406
|
|
|
406
407
|
export type IntegrationProvider = (typeof IntegrationProvider)[keyof typeof IntegrationProvider]
|