@absolutejs/auth 0.65.3 → 0.65.5

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.
@@ -475,7 +475,14 @@ var auditEventsTable = pgTable4("auth_audit_events", {
475
475
 
476
476
  // src/credentials/postgresCredentialStore.ts
477
477
  import { eq as eq5 } from "drizzle-orm";
478
- import { bigint as bigint5, boolean as boolean2, pgTable as pgTable5, text as text2, varchar as varchar5 } from "drizzle-orm/pg-core";
478
+ import {
479
+ bigint as bigint5,
480
+ boolean as boolean2,
481
+ jsonb as jsonb2,
482
+ pgTable as pgTable5,
483
+ text as text2,
484
+ varchar as varchar5
485
+ } from "drizzle-orm/pg-core";
479
486
  var EMAIL_LENGTH = 320;
480
487
  var ID_LENGTH5 = 255;
481
488
  var STATUS_LENGTH2 = 32;
@@ -486,6 +493,7 @@ var credentialsTable = pgTable5("auth_credentials", {
486
493
  email_verified: boolean2("email_verified").notNull().default(false),
487
494
  organization_id: varchar5("organization_id", { length: ID_LENGTH5 }),
488
495
  password_hash: text2("password_hash").notNull(),
496
+ registration_data: jsonb2("registration_data").$type(),
489
497
  status: varchar5("status", { length: STATUS_LENGTH2 }).notNull().default("active"),
490
498
  updated_at_ms: bigint5("updated_at_ms", { mode: "number" }).notNull(),
491
499
  user_id: varchar5("user_id", { length: ID_LENGTH5 })
@@ -518,7 +526,7 @@ var warrantsTable = pgTable6("auth_fga_warrants", {
518
526
  import { neon as neon3 } from "@neondatabase/serverless";
519
527
  import { desc as desc5, eq as eq7 } from "drizzle-orm";
520
528
  import { drizzle as drizzle2 } from "drizzle-orm/neon-http";
521
- import { jsonb as jsonb2, pgTable as pgTable7, text as text3, timestamp, varchar as varchar7 } from "drizzle-orm/pg-core";
529
+ import { jsonb as jsonb3, pgTable as pgTable7, text as text3, timestamp, varchar as varchar7 } from "drizzle-orm/pg-core";
522
530
 
523
531
  // node_modules/citra/dist/index.js
524
532
  var NUM_GENERATOR_BYTES = 32;
@@ -2620,8 +2628,8 @@ var scopeRequiredProviderOptions = Object.keys(providers).filter(isScopeRequired
2620
2628
 
2621
2629
  // src/linkedProviders/neonStores.ts
2622
2630
  var linkedProviderBindingsTable = pgTable7("linked_provider_bindings", {
2623
- available_scopes: jsonb2("available_scopes").$type().notNull().default([]),
2624
- capabilities: jsonb2("capabilities").$type().default([]),
2631
+ available_scopes: jsonb3("available_scopes").$type().notNull().default([]),
2632
+ capabilities: jsonb3("capabilities").$type().default([]),
2625
2633
  connector_provider: varchar7("connector_provider", { length: 64 }).notNull(),
2626
2634
  created_at: timestamp("created_at").notNull().defaultNow(),
2627
2635
  email: varchar7("email", { length: 320 }),
@@ -2634,7 +2642,7 @@ var linkedProviderBindingsTable = pgTable7("linked_provider_bindings", {
2634
2642
  grant_id: varchar7("grant_id", { length: 255 }).notNull(),
2635
2643
  id: varchar7("id", { length: 255 }).primaryKey(),
2636
2644
  label: varchar7("label", { length: 255 }),
2637
- metadata: jsonb2("metadata").$type().default({}),
2645
+ metadata: jsonb3("metadata").$type().default({}),
2638
2646
  status: varchar7("status", { length: 64 }).$type().notNull(),
2639
2647
  updated_at: timestamp("updated_at").notNull().defaultNow(),
2640
2648
  username: varchar7("username", { length: 255 })
@@ -2644,11 +2652,11 @@ var linkedProviderGrantsTable = pgTable7("linked_provider_grants", {
2644
2652
  auth_provider_key: varchar7("auth_provider_key", { length: 64 }).notNull(),
2645
2653
  created_at: timestamp("created_at").notNull().defaultNow(),
2646
2654
  expires_at: timestamp("expires_at"),
2647
- granted_scopes: jsonb2("granted_scopes").$type().notNull().default([]),
2655
+ granted_scopes: jsonb3("granted_scopes").$type().notNull().default([]),
2648
2656
  id: varchar7("id", { length: 255 }).primaryKey(),
2649
2657
  last_refresh_error: text3("last_refresh_error"),
2650
2658
  last_refreshed_at: timestamp("last_refreshed_at"),
2651
- metadata: jsonb2("metadata").$type().default({}),
2659
+ metadata: jsonb3("metadata").$type().default({}),
2652
2660
  owner_ref: varchar7("owner_ref", { length: 255 }).notNull(),
2653
2661
  provider_family: varchar7("provider_family", { length: 64 }).notNull(),
2654
2662
  provider_subject: varchar7("provider_subject", { length: 255 }).notNull(),
@@ -2676,7 +2684,7 @@ import { and as and4, eq as eq9, isNull as isNull2, lte, or as or2, sql } from "
2676
2684
  import {
2677
2685
  bigint as bigint7,
2678
2686
  boolean as boolean3,
2679
- jsonb as jsonb3,
2687
+ jsonb as jsonb4,
2680
2688
  pgTable as pgTable9,
2681
2689
  smallint,
2682
2690
  text as text4,
@@ -2685,7 +2693,7 @@ import {
2685
2693
  var ID_LENGTH7 = 255;
2686
2694
  var PHONE_LENGTH = 20;
2687
2695
  var mfaEnrollmentsTable = pgTable9("auth_mfa_enrollments", {
2688
- backup_code_hashes: jsonb3("backup_code_hashes").$type().notNull().default([]),
2696
+ backup_code_hashes: jsonb4("backup_code_hashes").$type().notNull().default([]),
2689
2697
  created_at_ms: bigint7("created_at_ms", { mode: "number" }).notNull(),
2690
2698
  last_used_at_ms: bigint7("last_used_at_ms", { mode: "number" }),
2691
2699
  sms_challenge_id: text4("sms_challenge_id"),
@@ -2711,7 +2719,7 @@ import { and as and5, desc as desc6, eq as eq10, gt as gt2, lt as lt3 } from "dr
2711
2719
  import {
2712
2720
  bigint as bigint8,
2713
2721
  boolean as boolean4,
2714
- jsonb as jsonb4,
2722
+ jsonb as jsonb5,
2715
2723
  pgTable as pgTable10,
2716
2724
  text as text5,
2717
2725
  varchar as varchar10
@@ -2761,7 +2769,7 @@ var oauthClientsTable = pgTable10("auth_oauth_clients", {
2761
2769
  }),
2762
2770
  client_id: varchar10("client_id", { length: ID_LENGTH8 }).primaryKey(),
2763
2771
  hashed_secret: varchar10("hashed_secret", { length: ID_LENGTH8 }),
2764
- jwks_json: jsonb4("jwks_json").$type(),
2772
+ jwks_json: jsonb5("jwks_json").$type(),
2765
2773
  jwks_uri: varchar10("jwks_uri", { length: URL_LENGTH }),
2766
2774
  name: varchar10("name", { length: ID_LENGTH8 }).notNull(),
2767
2775
  post_logout_redirect_uris: text5("post_logout_redirect_uris").array(),
@@ -2773,7 +2781,7 @@ var oauthClientsTable = pgTable10("auth_oauth_clients", {
2773
2781
  var oauthCodesTable = pgTable10("auth_oauth_codes", {
2774
2782
  acr: varchar10("acr", { length: ID_LENGTH8 }),
2775
2783
  audience: varchar10("audience", { length: URL_LENGTH }),
2776
- claims_json: jsonb4("claims_json").$type(),
2784
+ claims_json: jsonb5("claims_json").$type(),
2777
2785
  client_id: varchar10("client_id", { length: ID_LENGTH8 }).notNull(),
2778
2786
  code_challenge: varchar10("code_challenge", { length: ID_LENGTH8 }).notNull(),
2779
2787
  code_hash: varchar10("code_hash", { length: ID_LENGTH8 }).primaryKey(),
@@ -2818,7 +2826,7 @@ var oauthPushedAuthorizationRequestsTable = pgTable10("auth_oauth_pushed_authori
2818
2826
  client_id: varchar10("client_id", { length: ID_LENGTH8 }).notNull(),
2819
2827
  created_at_ms: bigint8("created_at_ms", { mode: "number" }).notNull(),
2820
2828
  expires_at_ms: bigint8("expires_at_ms", { mode: "number" }).notNull(),
2821
- params_json: jsonb4("params_json").$type().notNull(),
2829
+ params_json: jsonb5("params_json").$type().notNull(),
2822
2830
  request_uri_hash: varchar10("request_uri_hash", {
2823
2831
  length: ID_LENGTH8
2824
2832
  }).primaryKey()
@@ -2826,7 +2834,7 @@ var oauthPushedAuthorizationRequestsTable = pgTable10("auth_oauth_pushed_authori
2826
2834
  var oauthRefreshTokensTable = pgTable10("auth_oauth_refresh_tokens", {
2827
2835
  acr: varchar10("acr", { length: ID_LENGTH8 }),
2828
2836
  audience: varchar10("audience", { length: URL_LENGTH }),
2829
- claims_json: jsonb4("claims_json").$type(),
2837
+ claims_json: jsonb5("claims_json").$type(),
2830
2838
  client_id: varchar10("client_id", { length: ID_LENGTH8 }).notNull(),
2831
2839
  created_at_ms: bigint8("created_at_ms", { mode: "number" }).notNull(),
2832
2840
  dpop_jkt: varchar10("dpop_jkt", { length: ID_LENGTH8 }),
@@ -2840,7 +2848,7 @@ var oauthRefreshTokensTable = pgTable10("auth_oauth_refresh_tokens", {
2840
2848
  import { and as and6, desc as desc7, eq as eq11 } from "drizzle-orm";
2841
2849
  import {
2842
2850
  bigint as bigint9,
2843
- jsonb as jsonb5,
2851
+ jsonb as jsonb6,
2844
2852
  pgTable as pgTable11,
2845
2853
  primaryKey as primaryKey2,
2846
2854
  varchar as varchar11
@@ -2860,7 +2868,7 @@ var organizationInvitationsTable = pgTable11("auth_organization_invitations", {
2860
2868
  organization_id: varchar11("organization_id", {
2861
2869
  length: ID_LENGTH9
2862
2870
  }).notNull(),
2863
- roles: jsonb5("roles").$type().notNull().default([]),
2871
+ roles: jsonb6("roles").$type().notNull().default([]),
2864
2872
  state: varchar11("state", { length: STATE_LENGTH }).$type().notNull().default("pending"),
2865
2873
  token_hash: varchar11("token_hash", { length: ID_LENGTH9 }).notNull().unique()
2866
2874
  });
@@ -2869,14 +2877,14 @@ var organizationMembershipsTable = pgTable11("auth_organization_memberships", {
2869
2877
  organization_id: varchar11("organization_id", {
2870
2878
  length: ID_LENGTH9
2871
2879
  }).notNull(),
2872
- roles: jsonb5("roles").$type().notNull().default([]),
2880
+ roles: jsonb6("roles").$type().notNull().default([]),
2873
2881
  status: varchar11("status", { length: STATE_LENGTH }).$type().notNull().default("active"),
2874
2882
  updated_at_ms: bigint9("updated_at_ms", { mode: "number" }).notNull(),
2875
2883
  user_id: varchar11("user_id", { length: ID_LENGTH9 }).notNull()
2876
2884
  }, (table) => [primaryKey2({ columns: [table.organization_id, table.user_id] })]);
2877
2885
  var organizationsTable = pgTable11("auth_organizations", {
2878
2886
  created_at_ms: bigint9("created_at_ms", { mode: "number" }).notNull(),
2879
- metadata: jsonb5("metadata").$type(),
2887
+ metadata: jsonb6("metadata").$type(),
2880
2888
  name: varchar11("name", { length: NAME_LENGTH2 }).notNull(),
2881
2889
  organization_id: varchar11("organization_id", {
2882
2890
  length: ID_LENGTH9
@@ -2896,10 +2904,10 @@ var passwordlessTokensTable = pgTable12("auth_passwordless_tokens", {
2896
2904
 
2897
2905
  // src/portal/postgresSetupSessionStore.ts
2898
2906
  import { eq as eq13 } from "drizzle-orm";
2899
- import { bigint as bigint11, jsonb as jsonb6, pgTable as pgTable13, varchar as varchar13 } from "drizzle-orm/pg-core";
2907
+ import { bigint as bigint11, jsonb as jsonb7, pgTable as pgTable13, varchar as varchar13 } from "drizzle-orm/pg-core";
2900
2908
  var ID_LENGTH11 = 255;
2901
2909
  var setupSessionsTable = pgTable13("auth_setup_sessions", {
2902
- capabilities: jsonb6("capabilities").$type().notNull().default([]),
2910
+ capabilities: jsonb7("capabilities").$type().notNull().default([]),
2903
2911
  created_at_ms: bigint11("created_at_ms", { mode: "number" }).notNull(),
2904
2912
  created_by: varchar13("created_by", { length: ID_LENGTH11 }),
2905
2913
  expires_at_ms: bigint11("expires_at_ms", { mode: "number" }).notNull(),
@@ -2916,7 +2924,7 @@ var setupSessionsTable = pgTable13("auth_setup_sessions", {
2916
2924
  import { and as and7, eq as eq14 } from "drizzle-orm";
2917
2925
  import {
2918
2926
  bigint as bigint12,
2919
- jsonb as jsonb7,
2927
+ jsonb as jsonb8,
2920
2928
  pgTable as pgTable14,
2921
2929
  primaryKey as primaryKey3,
2922
2930
  varchar as varchar14
@@ -2927,7 +2935,7 @@ var GLOBAL_SCOPE = "";
2927
2935
  var rolesTable = pgTable14("auth_roles", {
2928
2936
  created_at_ms: bigint12("created_at_ms", { mode: "number" }).notNull(),
2929
2937
  organization_id: varchar14("organization_id", { length: ID_LENGTH12 }).notNull().default(GLOBAL_SCOPE),
2930
- permissions: jsonb7("permissions").$type().notNull().default([]),
2938
+ permissions: jsonb8("permissions").$type().notNull().default([]),
2931
2939
  slug: varchar14("slug", { length: SLUG_LENGTH }).notNull(),
2932
2940
  updated_at_ms: bigint12("updated_at_ms", { mode: "number" }).notNull()
2933
2941
  }, (table) => [primaryKey3({ columns: [table.organization_id, table.slug] })]);
@@ -2953,7 +2961,7 @@ import { drizzle as drizzle3 } from "drizzle-orm/neon-http";
2953
2961
  import {
2954
2962
  bigint as bigint14,
2955
2963
  index,
2956
- jsonb as jsonb8,
2964
+ jsonb as jsonb9,
2957
2965
  pgTable as pgTable16,
2958
2966
  text as text6,
2959
2967
  timestamp as timestamp2,
@@ -2965,21 +2973,21 @@ var authSessionsTable = pgTable16("auth_sessions", {
2965
2973
  created_at: timestamp2("created_at").notNull().defaultNow(),
2966
2974
  expires_at_ms: bigint14("expires_at_ms", { mode: "number" }).notNull(),
2967
2975
  id: varchar16("id", { length: 255 }).primaryKey(),
2968
- oauth_subject_json: jsonb8("oauth_subject_json").$type(),
2976
+ oauth_subject_json: jsonb9("oauth_subject_json").$type(),
2969
2977
  refresh_token: text6("refresh_token"),
2970
2978
  updated_at: timestamp2("updated_at").notNull().defaultNow(),
2971
- user_json: jsonb8("user_json").$type().notNull()
2979
+ user_json: jsonb9("user_json").$type().notNull()
2972
2980
  }, (table) => [index("auth_sessions_expires_at_idx").on(table.expires_at_ms)]);
2973
2981
  var authUnregisteredSessionsTable = pgTable16("auth_unregistered_sessions", {
2974
2982
  access_token: text6("access_token"),
2975
2983
  created_at: timestamp2("created_at").notNull().defaultNow(),
2976
2984
  expires_at_ms: bigint14("expires_at_ms", { mode: "number" }).notNull(),
2977
2985
  id: varchar16("id", { length: 255 }).primaryKey(),
2978
- oauth_subject_json: jsonb8("oauth_subject_json").$type(),
2986
+ oauth_subject_json: jsonb9("oauth_subject_json").$type(),
2979
2987
  refresh_token: text6("refresh_token"),
2980
- session_information_json: jsonb8("session_information_json").$type(),
2988
+ session_information_json: jsonb9("session_information_json").$type(),
2981
2989
  updated_at: timestamp2("updated_at").notNull().defaultNow(),
2982
- user_identity_json: jsonb8("user_identity_json").$type()
2990
+ user_identity_json: jsonb9("user_identity_json").$type()
2983
2991
  }, (table) => [
2984
2992
  index("auth_unregistered_sessions_expires_at_idx").on(table.expires_at_ms)
2985
2993
  ]);
@@ -3000,11 +3008,11 @@ var samlServiceProvidersTable = pgTable17("auth_saml_service_providers", {
3000
3008
 
3001
3009
  // src/sso/postgresSsoConnectionStore.ts
3002
3010
  import { and as and8, desc as desc9, eq as eq18 } from "drizzle-orm";
3003
- import { bigint as bigint16, boolean as boolean5, jsonb as jsonb9, pgTable as pgTable18, varchar as varchar18 } from "drizzle-orm/pg-core";
3011
+ import { bigint as bigint16, boolean as boolean5, jsonb as jsonb10, pgTable as pgTable18, varchar as varchar18 } from "drizzle-orm/pg-core";
3004
3012
  var ID_LENGTH15 = 255;
3005
3013
  var TYPE_LENGTH2 = 16;
3006
3014
  var ssoConnectionsTable = pgTable18("auth_sso_connections", {
3007
- config: jsonb9("config").$type().notNull(),
3015
+ config: jsonb10("config").$type().notNull(),
3008
3016
  connection_id: varchar18("connection_id", { length: ID_LENGTH15 }).primaryKey(),
3009
3017
  created_at_ms: bigint16("created_at_ms", { mode: "number" }).notNull(),
3010
3018
  enabled: boolean5("enabled").notNull().default(true),
@@ -3017,7 +3025,7 @@ var ssoConnectionsTable = pgTable18("auth_sso_connections", {
3017
3025
 
3018
3026
  // src/vc/postgresVcStores.ts
3019
3027
  import { eq as eq19 } from "drizzle-orm";
3020
- import { bigint as bigint17, boolean as boolean6, jsonb as jsonb10, pgTable as pgTable19, varchar as varchar19 } from "drizzle-orm/pg-core";
3028
+ import { bigint as bigint17, boolean as boolean6, jsonb as jsonb11, pgTable as pgTable19, varchar as varchar19 } from "drizzle-orm/pg-core";
3021
3029
  var ID_LENGTH16 = 255;
3022
3030
  var vcCredentialNoncesTable = pgTable19("auth_vc_credential_nonces", {
3023
3031
  expires_at_ms: bigint17("expires_at_ms", { mode: "number" }).notNull(),
@@ -3039,11 +3047,11 @@ var vcCredentialOffersTable = pgTable19("auth_vc_credential_offers", {
3039
3047
  var vcPresentationRequestsTable = pgTable19("auth_vc_presentation_requests", {
3040
3048
  client_id: varchar19("client_id", { length: ID_LENGTH16 }).notNull(),
3041
3049
  created_at_ms: bigint17("created_at_ms", { mode: "number" }).notNull(),
3042
- expected_issuer_jwk_json: jsonb10("expected_issuer_jwk_json").$type().notNull(),
3050
+ expected_issuer_jwk_json: jsonb11("expected_issuer_jwk_json").$type().notNull(),
3043
3051
  expires_at_ms: bigint17("expires_at_ms", { mode: "number" }).notNull(),
3044
3052
  nonce: varchar19("nonce", { length: ID_LENGTH16 }).notNull(),
3045
3053
  request_id: varchar19("request_id", { length: ID_LENGTH16 }).primaryKey(),
3046
- requested_claims: jsonb10("requested_claims").$type().notNull(),
3054
+ requested_claims: jsonb11("requested_claims").$type().notNull(),
3047
3055
  response_uri: varchar19("response_uri", { length: ID_LENGTH16 }).notNull(),
3048
3056
  state: varchar19("state", { length: ID_LENGTH16 })
3049
3057
  });
@@ -3071,7 +3079,7 @@ import { eq as eq21 } from "drizzle-orm";
3071
3079
  import {
3072
3080
  bigint as bigint19,
3073
3081
  boolean as boolean7,
3074
- jsonb as jsonb11,
3082
+ jsonb as jsonb12,
3075
3083
  pgTable as pgTable21,
3076
3084
  text as text9,
3077
3085
  varchar as varchar21
@@ -3086,13 +3094,13 @@ var webauthnCredentialsTable = pgTable21("auth_webauthn_credentials", {
3086
3094
  device_type: varchar21("device_type", { length: DEVICE_TYPE_LENGTH }),
3087
3095
  last_used_at_ms: bigint19("last_used_at_ms", { mode: "number" }),
3088
3096
  public_key: text9("public_key").notNull(),
3089
- transports: jsonb11("transports").$type(),
3097
+ transports: jsonb12("transports").$type(),
3090
3098
  user_id: varchar21("user_id", { length: ID_LENGTH18 }).notNull()
3091
3099
  });
3092
3100
 
3093
3101
  // src/webhooks/postgresStore.ts
3094
3102
  import { desc as desc10, eq as eq22 } from "drizzle-orm";
3095
- import { bigint as bigint20, jsonb as jsonb12, pgTable as pgTable22, text as text10, varchar as varchar22 } from "drizzle-orm/pg-core";
3103
+ import { bigint as bigint20, jsonb as jsonb13, pgTable as pgTable22, text as text10, varchar as varchar22 } from "drizzle-orm/pg-core";
3096
3104
  var ID_LENGTH19 = 255;
3097
3105
  var URL_LENGTH3 = 2048;
3098
3106
  var webhookDeliveriesTable = pgTable22("auth_webhook_deliveries", {
@@ -3100,7 +3108,7 @@ var webhookDeliveriesTable = pgTable22("auth_webhook_deliveries", {
3100
3108
  created_at_ms: bigint20("created_at_ms", { mode: "number" }).notNull(),
3101
3109
  endpoint_url: varchar22("endpoint_url", { length: URL_LENGTH3 }).notNull(),
3102
3110
  envelope_id: varchar22("envelope_id", { length: ID_LENGTH19 }).primaryKey(),
3103
- envelope_json: jsonb12("envelope_json").$type().notNull(),
3111
+ envelope_json: jsonb13("envelope_json").$type().notNull(),
3104
3112
  last_error: text10("last_error"),
3105
3113
  last_status: bigint20("last_status", { mode: "number" })
3106
3114
  });
@@ -3240,6 +3248,10 @@ var mfaSmsColumnsMigration = {
3240
3248
  ].join(`
3241
3249
  `)
3242
3250
  };
3251
+ var credentialDeferredUserMigration = {
3252
+ id: "0002_deferred_user_creation",
3253
+ sql: 'ALTER TABLE "auth_credentials" ADD COLUMN IF NOT EXISTS "registration_data" jsonb;'
3254
+ };
3243
3255
  var mfaTotpLockoutMigration = {
3244
3256
  id: "0003_totp_lockout",
3245
3257
  sql: 'ALTER TABLE "auth_mfa_enrollments" ADD COLUMN IF NOT EXISTS "totp_failed_attempts" smallint NOT NULL DEFAULT 0;'
@@ -3295,11 +3307,17 @@ var blockMigrations = {
3295
3307
  apiKeysTable
3296
3308
  ]),
3297
3309
  audit: initMigration("audit", [auditEventsTable]),
3298
- credentials: initMigration("credentials", [
3299
- credentialsTable,
3300
- credentialResetTokensTable,
3301
- credentialVerificationTokensTable
3302
- ]),
3310
+ credentials: {
3311
+ block: "credentials",
3312
+ migrations: [
3313
+ ...initMigration("credentials", [
3314
+ credentialsTable,
3315
+ credentialResetTokensTable,
3316
+ credentialVerificationTokensTable
3317
+ ]).migrations,
3318
+ credentialDeferredUserMigration
3319
+ ]
3320
+ },
3303
3321
  fga: initMigration("fga", [warrantsTable]),
3304
3322
  linkedProviders: initMigration("linkedProviders", [
3305
3323
  linkedProviderBindingsTable,
@@ -3550,5 +3568,5 @@ var main = async () => {
3550
3568
  };
3551
3569
  await main();
3552
3570
 
3553
- //# debugId=F3F4FD6B1C5A081764756E2164756E21
3571
+ //# debugId=EE06BEC981E3DD8664756E2164756E21
3554
3572
  //# sourceMappingURL=migrate.js.map