@seamapi/types 1.264.0 → 1.264.1

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.
Files changed (27) hide show
  1. package/dist/connect.cjs +74 -41
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +506 -336
  4. package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +64 -39
  5. package/lib/seam/connect/models/action-attempts/deprecated.d.ts +61 -21
  6. package/lib/seam/connect/models/action-attempts/deprecated.js +13 -5
  7. package/lib/seam/connect/models/action-attempts/deprecated.js.map +1 -1
  8. package/lib/seam/connect/models/action-attempts/encode-card.d.ts +3 -18
  9. package/lib/seam/connect/models/action-attempts/encode-card.js +1 -12
  10. package/lib/seam/connect/models/action-attempts/encode-card.js.map +1 -1
  11. package/lib/seam/connect/models/action-attempts/index.d.ts +1 -0
  12. package/lib/seam/connect/models/action-attempts/index.js +1 -0
  13. package/lib/seam/connect/models/action-attempts/index.js.map +1 -1
  14. package/lib/seam/connect/openapi.d.ts +69 -36
  15. package/lib/seam/connect/openapi.js +57 -31
  16. package/lib/seam/connect/openapi.js.map +1 -1
  17. package/lib/seam/connect/route-types.d.ts +320 -260
  18. package/lib/seam/connect/schemas.d.ts +1 -1
  19. package/lib/seam/connect/schemas.js +1 -1
  20. package/lib/seam/connect/schemas.js.map +1 -1
  21. package/package.json +1 -1
  22. package/src/lib/seam/connect/models/action-attempts/deprecated.ts +13 -5
  23. package/src/lib/seam/connect/models/action-attempts/encode-card.ts +1 -12
  24. package/src/lib/seam/connect/models/action-attempts/index.ts +1 -0
  25. package/src/lib/seam/connect/openapi.ts +57 -33
  26. package/src/lib/seam/connect/route-types.ts +320 -260
  27. package/src/lib/seam/connect/schemas.ts +3 -0
@@ -2588,33 +2588,18 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
2588
2588
  error: z.ZodNull;
2589
2589
  }>, {
2590
2590
  action_type: z.ZodLiteral<"ENCODE_CARD">;
2591
- result: z.ZodObject<{
2592
- acs_credential_id: z.ZodNullable<z.ZodString>;
2593
- card_number: z.ZodNullable<z.ZodString>;
2594
- }, "strip", z.ZodTypeAny, {
2595
- acs_credential_id: string | null;
2596
- card_number: string | null;
2597
- }, {
2598
- acs_credential_id: string | null;
2599
- card_number: string | null;
2600
- }>;
2591
+ result: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
2601
2592
  }>, "strip", z.ZodTypeAny, {
2602
2593
  status: "success";
2603
2594
  action_attempt_id: string;
2604
2595
  error: null;
2605
- result: {
2606
- acs_credential_id: string | null;
2607
- card_number: string | null;
2608
- };
2596
+ result: {};
2609
2597
  action_type: "ENCODE_CARD";
2610
2598
  }, {
2611
2599
  status: "success";
2612
2600
  action_attempt_id: string;
2613
2601
  error: null;
2614
- result: {
2615
- acs_credential_id: string | null;
2616
- card_number: string | null;
2617
- };
2602
+ result: {};
2618
2603
  action_type: "ENCODE_CARD";
2619
2604
  }>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
2620
2605
  action_attempt_id: z.ZodString;
@@ -3227,19 +3212,19 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
3227
3212
  error: z.ZodNull;
3228
3213
  }>, {
3229
3214
  action_type: z.ZodLiteral<"SYNC_ACCESS_CODES">;
3230
- result: z.ZodAny;
3215
+ result: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
3231
3216
  }>, "strip", z.ZodTypeAny, {
3232
3217
  status: "success";
3233
3218
  action_attempt_id: string;
3234
3219
  error: null;
3220
+ result: {};
3235
3221
  action_type: "SYNC_ACCESS_CODES";
3236
- result?: any;
3237
3222
  }, {
3238
3223
  status: "success";
3239
3224
  action_attempt_id: string;
3240
3225
  error: null;
3226
+ result: {};
3241
3227
  action_type: "SYNC_ACCESS_CODES";
3242
- result?: any;
3243
3228
  }>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
3244
3229
  action_attempt_id: z.ZodString;
3245
3230
  status: z.ZodEnum<["pending", "success", "error"]>;
@@ -3305,19 +3290,29 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
3305
3290
  error: z.ZodNull;
3306
3291
  }>, {
3307
3292
  action_type: z.ZodLiteral<"CREATE_ACCESS_CODE">;
3308
- result: z.ZodAny;
3293
+ result: z.ZodObject<{
3294
+ access_code: z.ZodAny;
3295
+ }, "strip", z.ZodTypeAny, {
3296
+ access_code?: any;
3297
+ }, {
3298
+ access_code?: any;
3299
+ }>;
3309
3300
  }>, "strip", z.ZodTypeAny, {
3310
3301
  status: "success";
3311
3302
  action_attempt_id: string;
3312
3303
  error: null;
3304
+ result: {
3305
+ access_code?: any;
3306
+ };
3313
3307
  action_type: "CREATE_ACCESS_CODE";
3314
- result?: any;
3315
3308
  }, {
3316
3309
  status: "success";
3317
3310
  action_attempt_id: string;
3318
3311
  error: null;
3312
+ result: {
3313
+ access_code?: any;
3314
+ };
3319
3315
  action_type: "CREATE_ACCESS_CODE";
3320
- result?: any;
3321
3316
  }>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
3322
3317
  action_attempt_id: z.ZodString;
3323
3318
  status: z.ZodEnum<["pending", "success", "error"]>;
@@ -3383,19 +3378,19 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
3383
3378
  error: z.ZodNull;
3384
3379
  }>, {
3385
3380
  action_type: z.ZodLiteral<"DELETE_ACCESS_CODE">;
3386
- result: z.ZodAny;
3381
+ result: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
3387
3382
  }>, "strip", z.ZodTypeAny, {
3388
3383
  status: "success";
3389
3384
  action_attempt_id: string;
3390
3385
  error: null;
3386
+ result: {};
3391
3387
  action_type: "DELETE_ACCESS_CODE";
3392
- result?: any;
3393
3388
  }, {
3394
3389
  status: "success";
3395
3390
  action_attempt_id: string;
3396
3391
  error: null;
3392
+ result: {};
3397
3393
  action_type: "DELETE_ACCESS_CODE";
3398
- result?: any;
3399
3394
  }>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
3400
3395
  action_attempt_id: z.ZodString;
3401
3396
  status: z.ZodEnum<["pending", "success", "error"]>;
@@ -3461,19 +3456,29 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
3461
3456
  error: z.ZodNull;
3462
3457
  }>, {
3463
3458
  action_type: z.ZodLiteral<"UPDATE_ACCESS_CODE">;
3464
- result: z.ZodAny;
3459
+ result: z.ZodObject<{
3460
+ access_code: z.ZodAny;
3461
+ }, "strip", z.ZodTypeAny, {
3462
+ access_code?: any;
3463
+ }, {
3464
+ access_code?: any;
3465
+ }>;
3465
3466
  }>, "strip", z.ZodTypeAny, {
3466
3467
  status: "success";
3467
3468
  action_attempt_id: string;
3468
3469
  error: null;
3470
+ result: {
3471
+ access_code?: any;
3472
+ };
3469
3473
  action_type: "UPDATE_ACCESS_CODE";
3470
- result?: any;
3471
3474
  }, {
3472
3475
  status: "success";
3473
3476
  action_attempt_id: string;
3474
3477
  error: null;
3478
+ result: {
3479
+ access_code?: any;
3480
+ };
3475
3481
  action_type: "UPDATE_ACCESS_CODE";
3476
- result?: any;
3477
3482
  }>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
3478
3483
  action_attempt_id: z.ZodString;
3479
3484
  status: z.ZodEnum<["pending", "success", "error"]>;
@@ -3539,19 +3544,29 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
3539
3544
  error: z.ZodNull;
3540
3545
  }>, {
3541
3546
  action_type: z.ZodLiteral<"CREATE_NOISE_THRESHOLD">;
3542
- result: z.ZodAny;
3547
+ result: z.ZodObject<{
3548
+ noise_threshold: z.ZodAny;
3549
+ }, "strip", z.ZodTypeAny, {
3550
+ noise_threshold?: any;
3551
+ }, {
3552
+ noise_threshold?: any;
3553
+ }>;
3543
3554
  }>, "strip", z.ZodTypeAny, {
3544
3555
  status: "success";
3545
3556
  action_attempt_id: string;
3546
3557
  error: null;
3558
+ result: {
3559
+ noise_threshold?: any;
3560
+ };
3547
3561
  action_type: "CREATE_NOISE_THRESHOLD";
3548
- result?: any;
3549
3562
  }, {
3550
3563
  status: "success";
3551
3564
  action_attempt_id: string;
3552
3565
  error: null;
3566
+ result: {
3567
+ noise_threshold?: any;
3568
+ };
3553
3569
  action_type: "CREATE_NOISE_THRESHOLD";
3554
- result?: any;
3555
3570
  }>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
3556
3571
  action_attempt_id: z.ZodString;
3557
3572
  status: z.ZodEnum<["pending", "success", "error"]>;
@@ -3617,19 +3632,19 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
3617
3632
  error: z.ZodNull;
3618
3633
  }>, {
3619
3634
  action_type: z.ZodLiteral<"DELETE_NOISE_THRESHOLD">;
3620
- result: z.ZodAny;
3635
+ result: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
3621
3636
  }>, "strip", z.ZodTypeAny, {
3622
3637
  status: "success";
3623
3638
  action_attempt_id: string;
3624
3639
  error: null;
3640
+ result: {};
3625
3641
  action_type: "DELETE_NOISE_THRESHOLD";
3626
- result?: any;
3627
3642
  }, {
3628
3643
  status: "success";
3629
3644
  action_attempt_id: string;
3630
3645
  error: null;
3646
+ result: {};
3631
3647
  action_type: "DELETE_NOISE_THRESHOLD";
3632
- result?: any;
3633
3648
  }>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
3634
3649
  action_attempt_id: z.ZodString;
3635
3650
  status: z.ZodEnum<["pending", "success", "error"]>;
@@ -3695,19 +3710,29 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
3695
3710
  error: z.ZodNull;
3696
3711
  }>, {
3697
3712
  action_type: z.ZodLiteral<"UPDATE_NOISE_THRESHOLD">;
3698
- result: z.ZodAny;
3713
+ result: z.ZodObject<{
3714
+ noise_threshold: z.ZodAny;
3715
+ }, "strip", z.ZodTypeAny, {
3716
+ noise_threshold?: any;
3717
+ }, {
3718
+ noise_threshold?: any;
3719
+ }>;
3699
3720
  }>, "strip", z.ZodTypeAny, {
3700
3721
  status: "success";
3701
3722
  action_attempt_id: string;
3702
3723
  error: null;
3724
+ result: {
3725
+ noise_threshold?: any;
3726
+ };
3703
3727
  action_type: "UPDATE_NOISE_THRESHOLD";
3704
- result?: any;
3705
3728
  }, {
3706
3729
  status: "success";
3707
3730
  action_attempt_id: string;
3708
3731
  error: null;
3732
+ result: {
3733
+ noise_threshold?: any;
3734
+ };
3709
3735
  action_type: "UPDATE_NOISE_THRESHOLD";
3710
- result?: any;
3711
3736
  }>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
3712
3737
  action_attempt_id: z.ZodString;
3713
3738
  status: z.ZodEnum<["pending", "success", "error"]>;
@@ -3747,6 +3772,55 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
3747
3772
  }>]>;
3748
3773
  type ActionAttempt = z.infer<typeof action_attempt>;
3749
3774
 
3775
+ declare const common_pending_action_attempt: z.ZodObject<z.objectUtil.extendShape<{
3776
+ action_attempt_id: z.ZodString;
3777
+ status: z.ZodEnum<["pending", "success", "error"]>;
3778
+ }, {
3779
+ status: z.ZodLiteral<"pending">;
3780
+ result: z.ZodNull;
3781
+ error: z.ZodNull;
3782
+ }>, "strip", z.ZodTypeAny, {
3783
+ status: "pending";
3784
+ action_attempt_id: string;
3785
+ error: null;
3786
+ result: null;
3787
+ }, {
3788
+ status: "pending";
3789
+ action_attempt_id: string;
3790
+ error: null;
3791
+ result: null;
3792
+ }>;
3793
+ declare const common_succeeded_action_attempt: z.ZodObject<z.objectUtil.extendShape<{
3794
+ action_attempt_id: z.ZodString;
3795
+ status: z.ZodEnum<["pending", "success", "error"]>;
3796
+ }, {
3797
+ status: z.ZodLiteral<"success">;
3798
+ error: z.ZodNull;
3799
+ }>, "strip", z.ZodTypeAny, {
3800
+ status: "success";
3801
+ action_attempt_id: string;
3802
+ error: null;
3803
+ }, {
3804
+ status: "success";
3805
+ action_attempt_id: string;
3806
+ error: null;
3807
+ }>;
3808
+ declare const common_failed_action_attempt: z.ZodObject<z.objectUtil.extendShape<{
3809
+ action_attempt_id: z.ZodString;
3810
+ status: z.ZodEnum<["pending", "success", "error"]>;
3811
+ }, {
3812
+ status: z.ZodLiteral<"error">;
3813
+ result: z.ZodNull;
3814
+ }>, "strip", z.ZodTypeAny, {
3815
+ status: "error";
3816
+ action_attempt_id: string;
3817
+ result: null;
3818
+ }, {
3819
+ status: "error";
3820
+ action_attempt_id: string;
3821
+ result: null;
3822
+ }>;
3823
+
3750
3824
  declare const client_session: z.ZodObject<{
3751
3825
  client_session_id: z.ZodString;
3752
3826
  workspace_id: z.ZodString;
@@ -10507,6 +10581,9 @@ declare const schemas_acs_system: typeof acs_system;
10507
10581
  declare const schemas_acs_user: typeof acs_user;
10508
10582
  declare const schemas_action_attempt: typeof action_attempt;
10509
10583
  declare const schemas_client_session: typeof client_session;
10584
+ declare const schemas_common_failed_action_attempt: typeof common_failed_action_attempt;
10585
+ declare const schemas_common_pending_action_attempt: typeof common_pending_action_attempt;
10586
+ declare const schemas_common_succeeded_action_attempt: typeof common_succeeded_action_attempt;
10510
10587
  declare const schemas_connect_webview: typeof connect_webview;
10511
10588
  declare const schemas_connected_account: typeof connected_account;
10512
10589
  declare const schemas_custom_metadata: typeof custom_metadata;
@@ -10524,7 +10601,7 @@ declare const schemas_user_identity: typeof user_identity;
10524
10601
  declare const schemas_webhook: typeof webhook;
10525
10602
  declare const schemas_workspace: typeof workspace;
10526
10603
  declare namespace schemas {
10527
- export { schemas_access_code as access_code, schemas_acs_access_group as acs_access_group, schemas_acs_credential as acs_credential, schemas_acs_entrance as acs_entrance, schemas_acs_system as acs_system, schemas_acs_user as acs_user, schemas_action_attempt as action_attempt, schemas_client_session as client_session, schemas_connect_webview as connect_webview, schemas_connected_account as connected_account, schemas_custom_metadata as custom_metadata, schemas_device as device, schemas_device_provider as device_provider, schemas_noise_threshold as noise_threshold, schemas_seam_event as seam_event, schemas_thermostat_schedule as thermostat_schedule, schemas_unmanaged_access_code as unmanaged_access_code, schemas_unmanaged_acs_access_group as unmanaged_acs_access_group, schemas_unmanaged_acs_credential as unmanaged_acs_credential, schemas_unmanaged_acs_user as unmanaged_acs_user, schemas_unmanaged_device as unmanaged_device, schemas_user_identity as user_identity, schemas_webhook as webhook, schemas_workspace as workspace };
10604
+ export { schemas_access_code as access_code, schemas_acs_access_group as acs_access_group, schemas_acs_credential as acs_credential, schemas_acs_entrance as acs_entrance, schemas_acs_system as acs_system, schemas_acs_user as acs_user, schemas_action_attempt as action_attempt, schemas_client_session as client_session, schemas_common_failed_action_attempt as common_failed_action_attempt, schemas_common_pending_action_attempt as common_pending_action_attempt, schemas_common_succeeded_action_attempt as common_succeeded_action_attempt, schemas_connect_webview as connect_webview, schemas_connected_account as connected_account, schemas_custom_metadata as custom_metadata, schemas_device as device, schemas_device_provider as device_provider, schemas_noise_threshold as noise_threshold, schemas_seam_event as seam_event, schemas_thermostat_schedule as thermostat_schedule, schemas_unmanaged_access_code as unmanaged_access_code, schemas_unmanaged_acs_access_group as unmanaged_acs_access_group, schemas_unmanaged_acs_credential as unmanaged_acs_credential, schemas_unmanaged_acs_user as unmanaged_acs_user, schemas_unmanaged_device as unmanaged_device, schemas_user_identity as user_identity, schemas_webhook as webhook, schemas_workspace as workspace };
10528
10605
  }
10529
10606
 
10530
10607
  declare const _default: {
@@ -11475,8 +11552,8 @@ declare const _default: {
11475
11552
  properties: {
11476
11553
  acs_credential_on_encoder?: never;
11477
11554
  acs_credential_on_seam?: never;
11478
- acs_credential_id?: never;
11479
- card_number?: never;
11555
+ access_code?: never;
11556
+ noise_threshold?: never;
11480
11557
  };
11481
11558
  type: string;
11482
11559
  nullable?: never;
@@ -11787,8 +11864,8 @@ declare const _default: {
11787
11864
  type: string;
11788
11865
  }[];
11789
11866
  };
11790
- acs_credential_id?: never;
11791
- card_number?: never;
11867
+ access_code?: never;
11868
+ noise_threshold?: never;
11792
11869
  };
11793
11870
  required: string[];
11794
11871
  type: string;
@@ -11842,7 +11919,38 @@ declare const _default: {
11842
11919
  required: string[];
11843
11920
  type: string;
11844
11921
  } | {
11845
- description: string;
11922
+ properties: {
11923
+ action_attempt_id: {
11924
+ description: string;
11925
+ format: string;
11926
+ type: string;
11927
+ 'x-title': string;
11928
+ };
11929
+ action_type: {
11930
+ enum: string[];
11931
+ type: string;
11932
+ };
11933
+ error: {
11934
+ nullable: boolean;
11935
+ properties?: never;
11936
+ required?: never;
11937
+ type?: never;
11938
+ };
11939
+ result: {
11940
+ nullable: boolean;
11941
+ properties?: never;
11942
+ type?: never;
11943
+ required?: never;
11944
+ };
11945
+ status: {
11946
+ enum: string[];
11947
+ type: string;
11948
+ };
11949
+ };
11950
+ required: string[];
11951
+ type: string;
11952
+ description?: never;
11953
+ } | {
11846
11954
  properties: {
11847
11955
  action_attempt_id: {
11848
11956
  description: string;
@@ -11862,23 +11970,14 @@ declare const _default: {
11862
11970
  };
11863
11971
  result: {
11864
11972
  properties: {
11865
- acs_credential_id: {
11866
- description: string;
11867
- format: string;
11868
- nullable: boolean;
11869
- type: string;
11870
- };
11871
- card_number: {
11872
- description: string;
11873
- nullable: boolean;
11874
- type: string;
11875
- };
11876
11973
  acs_credential_on_encoder?: never;
11877
11974
  acs_credential_on_seam?: never;
11975
+ access_code?: never;
11976
+ noise_threshold?: never;
11878
11977
  };
11879
- required: string[];
11880
11978
  type: string;
11881
11979
  nullable?: never;
11980
+ required?: never;
11882
11981
  };
11883
11982
  status: {
11884
11983
  enum: string[];
@@ -11887,6 +11986,7 @@ declare const _default: {
11887
11986
  };
11888
11987
  required: string[];
11889
11988
  type: string;
11989
+ description?: never;
11890
11990
  } | {
11891
11991
  properties: {
11892
11992
  action_attempt_id: {
@@ -11900,10 +12000,18 @@ declare const _default: {
11900
12000
  type: string;
11901
12001
  };
11902
12002
  error: {
11903
- nullable: boolean;
11904
- properties?: never;
11905
- required?: never;
11906
- type?: never;
12003
+ properties: {
12004
+ message: {
12005
+ type: string;
12006
+ };
12007
+ type: {
12008
+ type: string;
12009
+ enum?: never;
12010
+ };
12011
+ };
12012
+ required: string[];
12013
+ type: string;
12014
+ nullable?: never;
11907
12015
  };
11908
12016
  result: {
11909
12017
  nullable: boolean;
@@ -11938,9 +12046,14 @@ declare const _default: {
11938
12046
  type?: never;
11939
12047
  };
11940
12048
  result: {
12049
+ properties: {
12050
+ access_code: {};
12051
+ acs_credential_on_encoder?: never;
12052
+ acs_credential_on_seam?: never;
12053
+ noise_threshold?: never;
12054
+ };
12055
+ type: string;
11941
12056
  nullable?: never;
11942
- properties?: never;
11943
- type?: never;
11944
12057
  required?: never;
11945
12058
  };
11946
12059
  status: {
@@ -11964,23 +12077,20 @@ declare const _default: {
11964
12077
  type: string;
11965
12078
  };
11966
12079
  error: {
12080
+ nullable: boolean;
12081
+ properties?: never;
12082
+ required?: never;
12083
+ type?: never;
12084
+ };
12085
+ result: {
11967
12086
  properties: {
11968
- message: {
11969
- type: string;
11970
- };
11971
- type: {
11972
- type: string;
11973
- enum?: never;
11974
- };
12087
+ noise_threshold: {};
12088
+ acs_credential_on_encoder?: never;
12089
+ acs_credential_on_seam?: never;
12090
+ access_code?: never;
11975
12091
  };
11976
- required: string[];
11977
12092
  type: string;
11978
12093
  nullable?: never;
11979
- };
11980
- result: {
11981
- nullable: boolean;
11982
- properties?: never;
11983
- type?: never;
11984
12094
  required?: never;
11985
12095
  };
11986
12096
  status: {
@@ -29912,12 +30022,7 @@ interface Routes {
29912
30022
  status: 'success';
29913
30023
  error: null;
29914
30024
  action_type: 'ENCODE_CARD';
29915
- result: {
29916
- /** Matching acs_credential currently encoded on this card. */
29917
- acs_credential_id: string | null;
29918
- /** A number or string that physically identifies this card. */
29919
- card_number: string | null;
29920
- };
30025
+ result: {};
29921
30026
  } | {
29922
30027
  /** The ID of the action attempt. */
29923
30028
  action_attempt_id: string;
@@ -30109,7 +30214,7 @@ interface Routes {
30109
30214
  status: 'success';
30110
30215
  error: null;
30111
30216
  action_type: 'SYNC_ACCESS_CODES';
30112
- result?: any;
30217
+ result: {};
30113
30218
  } | {
30114
30219
  /** The ID of the action attempt. */
30115
30220
  action_attempt_id: string;
@@ -30133,7 +30238,9 @@ interface Routes {
30133
30238
  status: 'success';
30134
30239
  error: null;
30135
30240
  action_type: 'CREATE_ACCESS_CODE';
30136
- result?: any;
30241
+ result: {
30242
+ access_code?: any;
30243
+ };
30137
30244
  } | {
30138
30245
  /** The ID of the action attempt. */
30139
30246
  action_attempt_id: string;
@@ -30157,7 +30264,7 @@ interface Routes {
30157
30264
  status: 'success';
30158
30265
  error: null;
30159
30266
  action_type: 'DELETE_ACCESS_CODE';
30160
- result?: any;
30267
+ result: {};
30161
30268
  } | {
30162
30269
  /** The ID of the action attempt. */
30163
30270
  action_attempt_id: string;
@@ -30181,7 +30288,9 @@ interface Routes {
30181
30288
  status: 'success';
30182
30289
  error: null;
30183
30290
  action_type: 'UPDATE_ACCESS_CODE';
30184
- result?: any;
30291
+ result: {
30292
+ access_code?: any;
30293
+ };
30185
30294
  } | {
30186
30295
  /** The ID of the action attempt. */
30187
30296
  action_attempt_id: string;
@@ -30205,7 +30314,9 @@ interface Routes {
30205
30314
  status: 'success';
30206
30315
  error: null;
30207
30316
  action_type: 'CREATE_NOISE_THRESHOLD';
30208
- result?: any;
30317
+ result: {
30318
+ noise_threshold?: any;
30319
+ };
30209
30320
  } | {
30210
30321
  /** The ID of the action attempt. */
30211
30322
  action_attempt_id: string;
@@ -30229,7 +30340,7 @@ interface Routes {
30229
30340
  status: 'success';
30230
30341
  error: null;
30231
30342
  action_type: 'DELETE_NOISE_THRESHOLD';
30232
- result?: any;
30343
+ result: {};
30233
30344
  } | {
30234
30345
  /** The ID of the action attempt. */
30235
30346
  action_attempt_id: string;
@@ -30253,7 +30364,9 @@ interface Routes {
30253
30364
  status: 'success';
30254
30365
  error: null;
30255
30366
  action_type: 'UPDATE_NOISE_THRESHOLD';
30256
- result?: any;
30367
+ result: {
30368
+ noise_threshold?: any;
30369
+ };
30257
30370
  } | {
30258
30371
  /** The ID of the action attempt. */
30259
30372
  action_attempt_id: string;
@@ -30621,12 +30734,7 @@ interface Routes {
30621
30734
  status: 'success';
30622
30735
  error: null;
30623
30736
  action_type: 'ENCODE_CARD';
30624
- result: {
30625
- /** Matching acs_credential currently encoded on this card. */
30626
- acs_credential_id: string | null;
30627
- /** A number or string that physically identifies this card. */
30628
- card_number: string | null;
30629
- };
30737
+ result: {};
30630
30738
  } | {
30631
30739
  /** The ID of the action attempt. */
30632
30740
  action_attempt_id: string;
@@ -30818,7 +30926,7 @@ interface Routes {
30818
30926
  status: 'success';
30819
30927
  error: null;
30820
30928
  action_type: 'SYNC_ACCESS_CODES';
30821
- result?: any;
30929
+ result: {};
30822
30930
  } | {
30823
30931
  /** The ID of the action attempt. */
30824
30932
  action_attempt_id: string;
@@ -30842,7 +30950,9 @@ interface Routes {
30842
30950
  status: 'success';
30843
30951
  error: null;
30844
30952
  action_type: 'CREATE_ACCESS_CODE';
30845
- result?: any;
30953
+ result: {
30954
+ access_code?: any;
30955
+ };
30846
30956
  } | {
30847
30957
  /** The ID of the action attempt. */
30848
30958
  action_attempt_id: string;
@@ -30866,7 +30976,7 @@ interface Routes {
30866
30976
  status: 'success';
30867
30977
  error: null;
30868
30978
  action_type: 'DELETE_ACCESS_CODE';
30869
- result?: any;
30979
+ result: {};
30870
30980
  } | {
30871
30981
  /** The ID of the action attempt. */
30872
30982
  action_attempt_id: string;
@@ -30890,7 +31000,9 @@ interface Routes {
30890
31000
  status: 'success';
30891
31001
  error: null;
30892
31002
  action_type: 'UPDATE_ACCESS_CODE';
30893
- result?: any;
31003
+ result: {
31004
+ access_code?: any;
31005
+ };
30894
31006
  } | {
30895
31007
  /** The ID of the action attempt. */
30896
31008
  action_attempt_id: string;
@@ -30914,7 +31026,9 @@ interface Routes {
30914
31026
  status: 'success';
30915
31027
  error: null;
30916
31028
  action_type: 'CREATE_NOISE_THRESHOLD';
30917
- result?: any;
31029
+ result: {
31030
+ noise_threshold?: any;
31031
+ };
30918
31032
  } | {
30919
31033
  /** The ID of the action attempt. */
30920
31034
  action_attempt_id: string;
@@ -30938,7 +31052,7 @@ interface Routes {
30938
31052
  status: 'success';
30939
31053
  error: null;
30940
31054
  action_type: 'DELETE_NOISE_THRESHOLD';
30941
- result?: any;
31055
+ result: {};
30942
31056
  } | {
30943
31057
  /** The ID of the action attempt. */
30944
31058
  action_attempt_id: string;
@@ -30962,7 +31076,9 @@ interface Routes {
30962
31076
  status: 'success';
30963
31077
  error: null;
30964
31078
  action_type: 'UPDATE_NOISE_THRESHOLD';
30965
- result?: any;
31079
+ result: {
31080
+ noise_threshold?: any;
31081
+ };
30966
31082
  } | {
30967
31083
  /** The ID of the action attempt. */
30968
31084
  action_attempt_id: string;
@@ -31487,12 +31603,7 @@ interface Routes {
31487
31603
  status: 'success';
31488
31604
  error: null;
31489
31605
  action_type: 'ENCODE_CARD';
31490
- result: {
31491
- /** Matching acs_credential currently encoded on this card. */
31492
- acs_credential_id: string | null;
31493
- /** A number or string that physically identifies this card. */
31494
- card_number: string | null;
31495
- };
31606
+ result: {};
31496
31607
  } | {
31497
31608
  /** The ID of the action attempt. */
31498
31609
  action_attempt_id: string;
@@ -31684,7 +31795,7 @@ interface Routes {
31684
31795
  status: 'success';
31685
31796
  error: null;
31686
31797
  action_type: 'SYNC_ACCESS_CODES';
31687
- result?: any;
31798
+ result: {};
31688
31799
  } | {
31689
31800
  /** The ID of the action attempt. */
31690
31801
  action_attempt_id: string;
@@ -31708,7 +31819,9 @@ interface Routes {
31708
31819
  status: 'success';
31709
31820
  error: null;
31710
31821
  action_type: 'CREATE_ACCESS_CODE';
31711
- result?: any;
31822
+ result: {
31823
+ access_code?: any;
31824
+ };
31712
31825
  } | {
31713
31826
  /** The ID of the action attempt. */
31714
31827
  action_attempt_id: string;
@@ -31732,7 +31845,7 @@ interface Routes {
31732
31845
  status: 'success';
31733
31846
  error: null;
31734
31847
  action_type: 'DELETE_ACCESS_CODE';
31735
- result?: any;
31848
+ result: {};
31736
31849
  } | {
31737
31850
  /** The ID of the action attempt. */
31738
31851
  action_attempt_id: string;
@@ -31756,7 +31869,9 @@ interface Routes {
31756
31869
  status: 'success';
31757
31870
  error: null;
31758
31871
  action_type: 'UPDATE_ACCESS_CODE';
31759
- result?: any;
31872
+ result: {
31873
+ access_code?: any;
31874
+ };
31760
31875
  } | {
31761
31876
  /** The ID of the action attempt. */
31762
31877
  action_attempt_id: string;
@@ -31780,7 +31895,9 @@ interface Routes {
31780
31895
  status: 'success';
31781
31896
  error: null;
31782
31897
  action_type: 'CREATE_NOISE_THRESHOLD';
31783
- result?: any;
31898
+ result: {
31899
+ noise_threshold?: any;
31900
+ };
31784
31901
  } | {
31785
31902
  /** The ID of the action attempt. */
31786
31903
  action_attempt_id: string;
@@ -31804,7 +31921,7 @@ interface Routes {
31804
31921
  status: 'success';
31805
31922
  error: null;
31806
31923
  action_type: 'DELETE_NOISE_THRESHOLD';
31807
- result?: any;
31924
+ result: {};
31808
31925
  } | {
31809
31926
  /** The ID of the action attempt. */
31810
31927
  action_attempt_id: string;
@@ -31828,7 +31945,9 @@ interface Routes {
31828
31945
  status: 'success';
31829
31946
  error: null;
31830
31947
  action_type: 'UPDATE_NOISE_THRESHOLD';
31831
- result?: any;
31948
+ result: {
31949
+ noise_threshold?: any;
31950
+ };
31832
31951
  } | {
31833
31952
  /** The ID of the action attempt. */
31834
31953
  action_attempt_id: string;
@@ -32183,12 +32302,7 @@ interface Routes {
32183
32302
  status: 'success';
32184
32303
  error: null;
32185
32304
  action_type: 'ENCODE_CARD';
32186
- result: {
32187
- /** Matching acs_credential currently encoded on this card. */
32188
- acs_credential_id: string | null;
32189
- /** A number or string that physically identifies this card. */
32190
- card_number: string | null;
32191
- };
32305
+ result: {};
32192
32306
  } | {
32193
32307
  /** The ID of the action attempt. */
32194
32308
  action_attempt_id: string;
@@ -32380,7 +32494,7 @@ interface Routes {
32380
32494
  status: 'success';
32381
32495
  error: null;
32382
32496
  action_type: 'SYNC_ACCESS_CODES';
32383
- result?: any;
32497
+ result: {};
32384
32498
  } | {
32385
32499
  /** The ID of the action attempt. */
32386
32500
  action_attempt_id: string;
@@ -32404,7 +32518,9 @@ interface Routes {
32404
32518
  status: 'success';
32405
32519
  error: null;
32406
32520
  action_type: 'CREATE_ACCESS_CODE';
32407
- result?: any;
32521
+ result: {
32522
+ access_code?: any;
32523
+ };
32408
32524
  } | {
32409
32525
  /** The ID of the action attempt. */
32410
32526
  action_attempt_id: string;
@@ -32428,7 +32544,7 @@ interface Routes {
32428
32544
  status: 'success';
32429
32545
  error: null;
32430
32546
  action_type: 'DELETE_ACCESS_CODE';
32431
- result?: any;
32547
+ result: {};
32432
32548
  } | {
32433
32549
  /** The ID of the action attempt. */
32434
32550
  action_attempt_id: string;
@@ -32452,7 +32568,9 @@ interface Routes {
32452
32568
  status: 'success';
32453
32569
  error: null;
32454
32570
  action_type: 'UPDATE_ACCESS_CODE';
32455
- result?: any;
32571
+ result: {
32572
+ access_code?: any;
32573
+ };
32456
32574
  } | {
32457
32575
  /** The ID of the action attempt. */
32458
32576
  action_attempt_id: string;
@@ -32476,7 +32594,9 @@ interface Routes {
32476
32594
  status: 'success';
32477
32595
  error: null;
32478
32596
  action_type: 'CREATE_NOISE_THRESHOLD';
32479
- result?: any;
32597
+ result: {
32598
+ noise_threshold?: any;
32599
+ };
32480
32600
  } | {
32481
32601
  /** The ID of the action attempt. */
32482
32602
  action_attempt_id: string;
@@ -32500,7 +32620,7 @@ interface Routes {
32500
32620
  status: 'success';
32501
32621
  error: null;
32502
32622
  action_type: 'DELETE_NOISE_THRESHOLD';
32503
- result?: any;
32623
+ result: {};
32504
32624
  } | {
32505
32625
  /** The ID of the action attempt. */
32506
32626
  action_attempt_id: string;
@@ -32524,7 +32644,9 @@ interface Routes {
32524
32644
  status: 'success';
32525
32645
  error: null;
32526
32646
  action_type: 'UPDATE_NOISE_THRESHOLD';
32527
- result?: any;
32647
+ result: {
32648
+ noise_threshold?: any;
32649
+ };
32528
32650
  } | {
32529
32651
  /** The ID of the action attempt. */
32530
32652
  action_attempt_id: string;
@@ -33623,12 +33745,7 @@ interface Routes {
33623
33745
  status: 'success';
33624
33746
  error: null;
33625
33747
  action_type: 'ENCODE_CARD';
33626
- result: {
33627
- /** Matching acs_credential currently encoded on this card. */
33628
- acs_credential_id: string | null;
33629
- /** A number or string that physically identifies this card. */
33630
- card_number: string | null;
33631
- };
33748
+ result: {};
33632
33749
  } | {
33633
33750
  /** The ID of the action attempt. */
33634
33751
  action_attempt_id: string;
@@ -33820,7 +33937,7 @@ interface Routes {
33820
33937
  status: 'success';
33821
33938
  error: null;
33822
33939
  action_type: 'SYNC_ACCESS_CODES';
33823
- result?: any;
33940
+ result: {};
33824
33941
  } | {
33825
33942
  /** The ID of the action attempt. */
33826
33943
  action_attempt_id: string;
@@ -33844,7 +33961,9 @@ interface Routes {
33844
33961
  status: 'success';
33845
33962
  error: null;
33846
33963
  action_type: 'CREATE_ACCESS_CODE';
33847
- result?: any;
33964
+ result: {
33965
+ access_code?: any;
33966
+ };
33848
33967
  } | {
33849
33968
  /** The ID of the action attempt. */
33850
33969
  action_attempt_id: string;
@@ -33868,7 +33987,7 @@ interface Routes {
33868
33987
  status: 'success';
33869
33988
  error: null;
33870
33989
  action_type: 'DELETE_ACCESS_CODE';
33871
- result?: any;
33990
+ result: {};
33872
33991
  } | {
33873
33992
  /** The ID of the action attempt. */
33874
33993
  action_attempt_id: string;
@@ -33892,7 +34011,9 @@ interface Routes {
33892
34011
  status: 'success';
33893
34012
  error: null;
33894
34013
  action_type: 'UPDATE_ACCESS_CODE';
33895
- result?: any;
34014
+ result: {
34015
+ access_code?: any;
34016
+ };
33896
34017
  } | {
33897
34018
  /** The ID of the action attempt. */
33898
34019
  action_attempt_id: string;
@@ -33916,7 +34037,9 @@ interface Routes {
33916
34037
  status: 'success';
33917
34038
  error: null;
33918
34039
  action_type: 'CREATE_NOISE_THRESHOLD';
33919
- result?: any;
34040
+ result: {
34041
+ noise_threshold?: any;
34042
+ };
33920
34043
  } | {
33921
34044
  /** The ID of the action attempt. */
33922
34045
  action_attempt_id: string;
@@ -33940,7 +34063,7 @@ interface Routes {
33940
34063
  status: 'success';
33941
34064
  error: null;
33942
34065
  action_type: 'DELETE_NOISE_THRESHOLD';
33943
- result?: any;
34066
+ result: {};
33944
34067
  } | {
33945
34068
  /** The ID of the action attempt. */
33946
34069
  action_attempt_id: string;
@@ -33964,7 +34087,9 @@ interface Routes {
33964
34087
  status: 'success';
33965
34088
  error: null;
33966
34089
  action_type: 'UPDATE_NOISE_THRESHOLD';
33967
- result?: any;
34090
+ result: {
34091
+ noise_threshold?: any;
34092
+ };
33968
34093
  } | {
33969
34094
  /** The ID of the action attempt. */
33970
34095
  action_attempt_id: string;
@@ -34644,12 +34769,7 @@ interface Routes {
34644
34769
  status: 'success';
34645
34770
  error: null;
34646
34771
  action_type: 'ENCODE_CARD';
34647
- result: {
34648
- /** Matching acs_credential currently encoded on this card. */
34649
- acs_credential_id: string | null;
34650
- /** A number or string that physically identifies this card. */
34651
- card_number: string | null;
34652
- };
34772
+ result: {};
34653
34773
  } | {
34654
34774
  /** The ID of the action attempt. */
34655
34775
  action_attempt_id: string;
@@ -34841,7 +34961,7 @@ interface Routes {
34841
34961
  status: 'success';
34842
34962
  error: null;
34843
34963
  action_type: 'SYNC_ACCESS_CODES';
34844
- result?: any;
34964
+ result: {};
34845
34965
  } | {
34846
34966
  /** The ID of the action attempt. */
34847
34967
  action_attempt_id: string;
@@ -34865,7 +34985,9 @@ interface Routes {
34865
34985
  status: 'success';
34866
34986
  error: null;
34867
34987
  action_type: 'CREATE_ACCESS_CODE';
34868
- result?: any;
34988
+ result: {
34989
+ access_code?: any;
34990
+ };
34869
34991
  } | {
34870
34992
  /** The ID of the action attempt. */
34871
34993
  action_attempt_id: string;
@@ -34889,7 +35011,7 @@ interface Routes {
34889
35011
  status: 'success';
34890
35012
  error: null;
34891
35013
  action_type: 'DELETE_ACCESS_CODE';
34892
- result?: any;
35014
+ result: {};
34893
35015
  } | {
34894
35016
  /** The ID of the action attempt. */
34895
35017
  action_attempt_id: string;
@@ -34913,7 +35035,9 @@ interface Routes {
34913
35035
  status: 'success';
34914
35036
  error: null;
34915
35037
  action_type: 'UPDATE_ACCESS_CODE';
34916
- result?: any;
35038
+ result: {
35039
+ access_code?: any;
35040
+ };
34917
35041
  } | {
34918
35042
  /** The ID of the action attempt. */
34919
35043
  action_attempt_id: string;
@@ -34937,7 +35061,9 @@ interface Routes {
34937
35061
  status: 'success';
34938
35062
  error: null;
34939
35063
  action_type: 'CREATE_NOISE_THRESHOLD';
34940
- result?: any;
35064
+ result: {
35065
+ noise_threshold?: any;
35066
+ };
34941
35067
  } | {
34942
35068
  /** The ID of the action attempt. */
34943
35069
  action_attempt_id: string;
@@ -34961,7 +35087,7 @@ interface Routes {
34961
35087
  status: 'success';
34962
35088
  error: null;
34963
35089
  action_type: 'DELETE_NOISE_THRESHOLD';
34964
- result?: any;
35090
+ result: {};
34965
35091
  } | {
34966
35092
  /** The ID of the action attempt. */
34967
35093
  action_attempt_id: string;
@@ -34985,7 +35111,9 @@ interface Routes {
34985
35111
  status: 'success';
34986
35112
  error: null;
34987
35113
  action_type: 'UPDATE_NOISE_THRESHOLD';
34988
- result?: any;
35114
+ result: {
35115
+ noise_threshold?: any;
35116
+ };
34989
35117
  } | {
34990
35118
  /** The ID of the action attempt. */
34991
35119
  action_attempt_id: string;
@@ -36360,12 +36488,7 @@ interface Routes {
36360
36488
  status: 'success';
36361
36489
  error: null;
36362
36490
  action_type: 'ENCODE_CARD';
36363
- result: {
36364
- /** Matching acs_credential currently encoded on this card. */
36365
- acs_credential_id: string | null;
36366
- /** A number or string that physically identifies this card. */
36367
- card_number: string | null;
36368
- };
36491
+ result: {};
36369
36492
  } | {
36370
36493
  /** The ID of the action attempt. */
36371
36494
  action_attempt_id: string;
@@ -36557,7 +36680,7 @@ interface Routes {
36557
36680
  status: 'success';
36558
36681
  error: null;
36559
36682
  action_type: 'SYNC_ACCESS_CODES';
36560
- result?: any;
36683
+ result: {};
36561
36684
  } | {
36562
36685
  /** The ID of the action attempt. */
36563
36686
  action_attempt_id: string;
@@ -36581,7 +36704,9 @@ interface Routes {
36581
36704
  status: 'success';
36582
36705
  error: null;
36583
36706
  action_type: 'CREATE_ACCESS_CODE';
36584
- result?: any;
36707
+ result: {
36708
+ access_code?: any;
36709
+ };
36585
36710
  } | {
36586
36711
  /** The ID of the action attempt. */
36587
36712
  action_attempt_id: string;
@@ -36605,7 +36730,7 @@ interface Routes {
36605
36730
  status: 'success';
36606
36731
  error: null;
36607
36732
  action_type: 'DELETE_ACCESS_CODE';
36608
- result?: any;
36733
+ result: {};
36609
36734
  } | {
36610
36735
  /** The ID of the action attempt. */
36611
36736
  action_attempt_id: string;
@@ -36629,7 +36754,9 @@ interface Routes {
36629
36754
  status: 'success';
36630
36755
  error: null;
36631
36756
  action_type: 'UPDATE_ACCESS_CODE';
36632
- result?: any;
36757
+ result: {
36758
+ access_code?: any;
36759
+ };
36633
36760
  } | {
36634
36761
  /** The ID of the action attempt. */
36635
36762
  action_attempt_id: string;
@@ -36653,7 +36780,9 @@ interface Routes {
36653
36780
  status: 'success';
36654
36781
  error: null;
36655
36782
  action_type: 'CREATE_NOISE_THRESHOLD';
36656
- result?: any;
36783
+ result: {
36784
+ noise_threshold?: any;
36785
+ };
36657
36786
  } | {
36658
36787
  /** The ID of the action attempt. */
36659
36788
  action_attempt_id: string;
@@ -36677,7 +36806,7 @@ interface Routes {
36677
36806
  status: 'success';
36678
36807
  error: null;
36679
36808
  action_type: 'DELETE_NOISE_THRESHOLD';
36680
- result?: any;
36809
+ result: {};
36681
36810
  } | {
36682
36811
  /** The ID of the action attempt. */
36683
36812
  action_attempt_id: string;
@@ -36701,7 +36830,9 @@ interface Routes {
36701
36830
  status: 'success';
36702
36831
  error: null;
36703
36832
  action_type: 'UPDATE_NOISE_THRESHOLD';
36704
- result?: any;
36833
+ result: {
36834
+ noise_threshold?: any;
36835
+ };
36705
36836
  } | {
36706
36837
  /** The ID of the action attempt. */
36707
36838
  action_attempt_id: string;
@@ -36918,12 +37049,7 @@ interface Routes {
36918
37049
  status: 'success';
36919
37050
  error: null;
36920
37051
  action_type: 'ENCODE_CARD';
36921
- result: {
36922
- /** Matching acs_credential currently encoded on this card. */
36923
- acs_credential_id: string | null;
36924
- /** A number or string that physically identifies this card. */
36925
- card_number: string | null;
36926
- };
37052
+ result: {};
36927
37053
  } | {
36928
37054
  /** The ID of the action attempt. */
36929
37055
  action_attempt_id: string;
@@ -37115,7 +37241,7 @@ interface Routes {
37115
37241
  status: 'success';
37116
37242
  error: null;
37117
37243
  action_type: 'SYNC_ACCESS_CODES';
37118
- result?: any;
37244
+ result: {};
37119
37245
  } | {
37120
37246
  /** The ID of the action attempt. */
37121
37247
  action_attempt_id: string;
@@ -37139,7 +37265,9 @@ interface Routes {
37139
37265
  status: 'success';
37140
37266
  error: null;
37141
37267
  action_type: 'CREATE_ACCESS_CODE';
37142
- result?: any;
37268
+ result: {
37269
+ access_code?: any;
37270
+ };
37143
37271
  } | {
37144
37272
  /** The ID of the action attempt. */
37145
37273
  action_attempt_id: string;
@@ -37163,7 +37291,7 @@ interface Routes {
37163
37291
  status: 'success';
37164
37292
  error: null;
37165
37293
  action_type: 'DELETE_ACCESS_CODE';
37166
- result?: any;
37294
+ result: {};
37167
37295
  } | {
37168
37296
  /** The ID of the action attempt. */
37169
37297
  action_attempt_id: string;
@@ -37187,7 +37315,9 @@ interface Routes {
37187
37315
  status: 'success';
37188
37316
  error: null;
37189
37317
  action_type: 'UPDATE_ACCESS_CODE';
37190
- result?: any;
37318
+ result: {
37319
+ access_code?: any;
37320
+ };
37191
37321
  } | {
37192
37322
  /** The ID of the action attempt. */
37193
37323
  action_attempt_id: string;
@@ -37211,7 +37341,9 @@ interface Routes {
37211
37341
  status: 'success';
37212
37342
  error: null;
37213
37343
  action_type: 'CREATE_NOISE_THRESHOLD';
37214
- result?: any;
37344
+ result: {
37345
+ noise_threshold?: any;
37346
+ };
37215
37347
  } | {
37216
37348
  /** The ID of the action attempt. */
37217
37349
  action_attempt_id: string;
@@ -37235,7 +37367,7 @@ interface Routes {
37235
37367
  status: 'success';
37236
37368
  error: null;
37237
37369
  action_type: 'DELETE_NOISE_THRESHOLD';
37238
- result?: any;
37370
+ result: {};
37239
37371
  } | {
37240
37372
  /** The ID of the action attempt. */
37241
37373
  action_attempt_id: string;
@@ -37259,7 +37391,9 @@ interface Routes {
37259
37391
  status: 'success';
37260
37392
  error: null;
37261
37393
  action_type: 'UPDATE_NOISE_THRESHOLD';
37262
- result?: any;
37394
+ result: {
37395
+ noise_threshold?: any;
37396
+ };
37263
37397
  } | {
37264
37398
  /** The ID of the action attempt. */
37265
37399
  action_attempt_id: string;
@@ -41022,12 +41156,7 @@ interface Routes {
41022
41156
  status: 'success';
41023
41157
  error: null;
41024
41158
  action_type: 'ENCODE_CARD';
41025
- result: {
41026
- /** Matching acs_credential currently encoded on this card. */
41027
- acs_credential_id: string | null;
41028
- /** A number or string that physically identifies this card. */
41029
- card_number: string | null;
41030
- };
41159
+ result: {};
41031
41160
  } | {
41032
41161
  /** The ID of the action attempt. */
41033
41162
  action_attempt_id: string;
@@ -41219,7 +41348,7 @@ interface Routes {
41219
41348
  status: 'success';
41220
41349
  error: null;
41221
41350
  action_type: 'SYNC_ACCESS_CODES';
41222
- result?: any;
41351
+ result: {};
41223
41352
  } | {
41224
41353
  /** The ID of the action attempt. */
41225
41354
  action_attempt_id: string;
@@ -41243,7 +41372,9 @@ interface Routes {
41243
41372
  status: 'success';
41244
41373
  error: null;
41245
41374
  action_type: 'CREATE_ACCESS_CODE';
41246
- result?: any;
41375
+ result: {
41376
+ access_code?: any;
41377
+ };
41247
41378
  } | {
41248
41379
  /** The ID of the action attempt. */
41249
41380
  action_attempt_id: string;
@@ -41267,7 +41398,7 @@ interface Routes {
41267
41398
  status: 'success';
41268
41399
  error: null;
41269
41400
  action_type: 'DELETE_ACCESS_CODE';
41270
- result?: any;
41401
+ result: {};
41271
41402
  } | {
41272
41403
  /** The ID of the action attempt. */
41273
41404
  action_attempt_id: string;
@@ -41291,7 +41422,9 @@ interface Routes {
41291
41422
  status: 'success';
41292
41423
  error: null;
41293
41424
  action_type: 'UPDATE_ACCESS_CODE';
41294
- result?: any;
41425
+ result: {
41426
+ access_code?: any;
41427
+ };
41295
41428
  } | {
41296
41429
  /** The ID of the action attempt. */
41297
41430
  action_attempt_id: string;
@@ -41315,7 +41448,9 @@ interface Routes {
41315
41448
  status: 'success';
41316
41449
  error: null;
41317
41450
  action_type: 'CREATE_NOISE_THRESHOLD';
41318
- result?: any;
41451
+ result: {
41452
+ noise_threshold?: any;
41453
+ };
41319
41454
  } | {
41320
41455
  /** The ID of the action attempt. */
41321
41456
  action_attempt_id: string;
@@ -41339,7 +41474,7 @@ interface Routes {
41339
41474
  status: 'success';
41340
41475
  error: null;
41341
41476
  action_type: 'DELETE_NOISE_THRESHOLD';
41342
- result?: any;
41477
+ result: {};
41343
41478
  } | {
41344
41479
  /** The ID of the action attempt. */
41345
41480
  action_attempt_id: string;
@@ -41363,7 +41498,9 @@ interface Routes {
41363
41498
  status: 'success';
41364
41499
  error: null;
41365
41500
  action_type: 'UPDATE_NOISE_THRESHOLD';
41366
- result?: any;
41501
+ result: {
41502
+ noise_threshold?: any;
41503
+ };
41367
41504
  } | {
41368
41505
  /** The ID of the action attempt. */
41369
41506
  action_attempt_id: string;
@@ -41581,12 +41718,7 @@ interface Routes {
41581
41718
  status: 'success';
41582
41719
  error: null;
41583
41720
  action_type: 'ENCODE_CARD';
41584
- result: {
41585
- /** Matching acs_credential currently encoded on this card. */
41586
- acs_credential_id: string | null;
41587
- /** A number or string that physically identifies this card. */
41588
- card_number: string | null;
41589
- };
41721
+ result: {};
41590
41722
  } | {
41591
41723
  /** The ID of the action attempt. */
41592
41724
  action_attempt_id: string;
@@ -41778,7 +41910,7 @@ interface Routes {
41778
41910
  status: 'success';
41779
41911
  error: null;
41780
41912
  action_type: 'SYNC_ACCESS_CODES';
41781
- result?: any;
41913
+ result: {};
41782
41914
  } | {
41783
41915
  /** The ID of the action attempt. */
41784
41916
  action_attempt_id: string;
@@ -41802,7 +41934,9 @@ interface Routes {
41802
41934
  status: 'success';
41803
41935
  error: null;
41804
41936
  action_type: 'CREATE_ACCESS_CODE';
41805
- result?: any;
41937
+ result: {
41938
+ access_code?: any;
41939
+ };
41806
41940
  } | {
41807
41941
  /** The ID of the action attempt. */
41808
41942
  action_attempt_id: string;
@@ -41826,7 +41960,7 @@ interface Routes {
41826
41960
  status: 'success';
41827
41961
  error: null;
41828
41962
  action_type: 'DELETE_ACCESS_CODE';
41829
- result?: any;
41963
+ result: {};
41830
41964
  } | {
41831
41965
  /** The ID of the action attempt. */
41832
41966
  action_attempt_id: string;
@@ -41850,7 +41984,9 @@ interface Routes {
41850
41984
  status: 'success';
41851
41985
  error: null;
41852
41986
  action_type: 'UPDATE_ACCESS_CODE';
41853
- result?: any;
41987
+ result: {
41988
+ access_code?: any;
41989
+ };
41854
41990
  } | {
41855
41991
  /** The ID of the action attempt. */
41856
41992
  action_attempt_id: string;
@@ -41874,7 +42010,9 @@ interface Routes {
41874
42010
  status: 'success';
41875
42011
  error: null;
41876
42012
  action_type: 'CREATE_NOISE_THRESHOLD';
41877
- result?: any;
42013
+ result: {
42014
+ noise_threshold?: any;
42015
+ };
41878
42016
  } | {
41879
42017
  /** The ID of the action attempt. */
41880
42018
  action_attempt_id: string;
@@ -41898,7 +42036,7 @@ interface Routes {
41898
42036
  status: 'success';
41899
42037
  error: null;
41900
42038
  action_type: 'DELETE_NOISE_THRESHOLD';
41901
- result?: any;
42039
+ result: {};
41902
42040
  } | {
41903
42041
  /** The ID of the action attempt. */
41904
42042
  action_attempt_id: string;
@@ -41922,7 +42060,9 @@ interface Routes {
41922
42060
  status: 'success';
41923
42061
  error: null;
41924
42062
  action_type: 'UPDATE_NOISE_THRESHOLD';
41925
- result?: any;
42063
+ result: {
42064
+ noise_threshold?: any;
42065
+ };
41926
42066
  } | {
41927
42067
  /** The ID of the action attempt. */
41928
42068
  action_attempt_id: string;
@@ -43082,12 +43222,7 @@ interface Routes {
43082
43222
  status: 'success';
43083
43223
  error: null;
43084
43224
  action_type: 'ENCODE_CARD';
43085
- result: {
43086
- /** Matching acs_credential currently encoded on this card. */
43087
- acs_credential_id: string | null;
43088
- /** A number or string that physically identifies this card. */
43089
- card_number: string | null;
43090
- };
43225
+ result: {};
43091
43226
  } | {
43092
43227
  /** The ID of the action attempt. */
43093
43228
  action_attempt_id: string;
@@ -43279,7 +43414,7 @@ interface Routes {
43279
43414
  status: 'success';
43280
43415
  error: null;
43281
43416
  action_type: 'SYNC_ACCESS_CODES';
43282
- result?: any;
43417
+ result: {};
43283
43418
  } | {
43284
43419
  /** The ID of the action attempt. */
43285
43420
  action_attempt_id: string;
@@ -43303,7 +43438,9 @@ interface Routes {
43303
43438
  status: 'success';
43304
43439
  error: null;
43305
43440
  action_type: 'CREATE_ACCESS_CODE';
43306
- result?: any;
43441
+ result: {
43442
+ access_code?: any;
43443
+ };
43307
43444
  } | {
43308
43445
  /** The ID of the action attempt. */
43309
43446
  action_attempt_id: string;
@@ -43327,7 +43464,7 @@ interface Routes {
43327
43464
  status: 'success';
43328
43465
  error: null;
43329
43466
  action_type: 'DELETE_ACCESS_CODE';
43330
- result?: any;
43467
+ result: {};
43331
43468
  } | {
43332
43469
  /** The ID of the action attempt. */
43333
43470
  action_attempt_id: string;
@@ -43351,7 +43488,9 @@ interface Routes {
43351
43488
  status: 'success';
43352
43489
  error: null;
43353
43490
  action_type: 'UPDATE_ACCESS_CODE';
43354
- result?: any;
43491
+ result: {
43492
+ access_code?: any;
43493
+ };
43355
43494
  } | {
43356
43495
  /** The ID of the action attempt. */
43357
43496
  action_attempt_id: string;
@@ -43375,7 +43514,9 @@ interface Routes {
43375
43514
  status: 'success';
43376
43515
  error: null;
43377
43516
  action_type: 'CREATE_NOISE_THRESHOLD';
43378
- result?: any;
43517
+ result: {
43518
+ noise_threshold?: any;
43519
+ };
43379
43520
  } | {
43380
43521
  /** The ID of the action attempt. */
43381
43522
  action_attempt_id: string;
@@ -43399,7 +43540,7 @@ interface Routes {
43399
43540
  status: 'success';
43400
43541
  error: null;
43401
43542
  action_type: 'DELETE_NOISE_THRESHOLD';
43402
- result?: any;
43543
+ result: {};
43403
43544
  } | {
43404
43545
  /** The ID of the action attempt. */
43405
43546
  action_attempt_id: string;
@@ -43423,7 +43564,9 @@ interface Routes {
43423
43564
  status: 'success';
43424
43565
  error: null;
43425
43566
  action_type: 'UPDATE_NOISE_THRESHOLD';
43426
- result?: any;
43567
+ result: {
43568
+ noise_threshold?: any;
43569
+ };
43427
43570
  } | {
43428
43571
  /** The ID of the action attempt. */
43429
43572
  action_attempt_id: string;
@@ -43651,12 +43794,7 @@ interface Routes {
43651
43794
  status: 'success';
43652
43795
  error: null;
43653
43796
  action_type: 'ENCODE_CARD';
43654
- result: {
43655
- /** Matching acs_credential currently encoded on this card. */
43656
- acs_credential_id: string | null;
43657
- /** A number or string that physically identifies this card. */
43658
- card_number: string | null;
43659
- };
43797
+ result: {};
43660
43798
  } | {
43661
43799
  /** The ID of the action attempt. */
43662
43800
  action_attempt_id: string;
@@ -43848,7 +43986,7 @@ interface Routes {
43848
43986
  status: 'success';
43849
43987
  error: null;
43850
43988
  action_type: 'SYNC_ACCESS_CODES';
43851
- result?: any;
43989
+ result: {};
43852
43990
  } | {
43853
43991
  /** The ID of the action attempt. */
43854
43992
  action_attempt_id: string;
@@ -43872,7 +44010,9 @@ interface Routes {
43872
44010
  status: 'success';
43873
44011
  error: null;
43874
44012
  action_type: 'CREATE_ACCESS_CODE';
43875
- result?: any;
44013
+ result: {
44014
+ access_code?: any;
44015
+ };
43876
44016
  } | {
43877
44017
  /** The ID of the action attempt. */
43878
44018
  action_attempt_id: string;
@@ -43896,7 +44036,7 @@ interface Routes {
43896
44036
  status: 'success';
43897
44037
  error: null;
43898
44038
  action_type: 'DELETE_ACCESS_CODE';
43899
- result?: any;
44039
+ result: {};
43900
44040
  } | {
43901
44041
  /** The ID of the action attempt. */
43902
44042
  action_attempt_id: string;
@@ -43920,7 +44060,9 @@ interface Routes {
43920
44060
  status: 'success';
43921
44061
  error: null;
43922
44062
  action_type: 'UPDATE_ACCESS_CODE';
43923
- result?: any;
44063
+ result: {
44064
+ access_code?: any;
44065
+ };
43924
44066
  } | {
43925
44067
  /** The ID of the action attempt. */
43926
44068
  action_attempt_id: string;
@@ -43944,7 +44086,9 @@ interface Routes {
43944
44086
  status: 'success';
43945
44087
  error: null;
43946
44088
  action_type: 'CREATE_NOISE_THRESHOLD';
43947
- result?: any;
44089
+ result: {
44090
+ noise_threshold?: any;
44091
+ };
43948
44092
  } | {
43949
44093
  /** The ID of the action attempt. */
43950
44094
  action_attempt_id: string;
@@ -43968,7 +44112,7 @@ interface Routes {
43968
44112
  status: 'success';
43969
44113
  error: null;
43970
44114
  action_type: 'DELETE_NOISE_THRESHOLD';
43971
- result?: any;
44115
+ result: {};
43972
44116
  } | {
43973
44117
  /** The ID of the action attempt. */
43974
44118
  action_attempt_id: string;
@@ -43992,7 +44136,9 @@ interface Routes {
43992
44136
  status: 'success';
43993
44137
  error: null;
43994
44138
  action_type: 'UPDATE_NOISE_THRESHOLD';
43995
- result?: any;
44139
+ result: {
44140
+ noise_threshold?: any;
44141
+ };
43996
44142
  } | {
43997
44143
  /** The ID of the action attempt. */
43998
44144
  action_attempt_id: string;
@@ -44259,12 +44405,7 @@ interface Routes {
44259
44405
  status: 'success';
44260
44406
  error: null;
44261
44407
  action_type: 'ENCODE_CARD';
44262
- result: {
44263
- /** Matching acs_credential currently encoded on this card. */
44264
- acs_credential_id: string | null;
44265
- /** A number or string that physically identifies this card. */
44266
- card_number: string | null;
44267
- };
44408
+ result: {};
44268
44409
  } | {
44269
44410
  /** The ID of the action attempt. */
44270
44411
  action_attempt_id: string;
@@ -44456,7 +44597,7 @@ interface Routes {
44456
44597
  status: 'success';
44457
44598
  error: null;
44458
44599
  action_type: 'SYNC_ACCESS_CODES';
44459
- result?: any;
44600
+ result: {};
44460
44601
  } | {
44461
44602
  /** The ID of the action attempt. */
44462
44603
  action_attempt_id: string;
@@ -44480,7 +44621,9 @@ interface Routes {
44480
44621
  status: 'success';
44481
44622
  error: null;
44482
44623
  action_type: 'CREATE_ACCESS_CODE';
44483
- result?: any;
44624
+ result: {
44625
+ access_code?: any;
44626
+ };
44484
44627
  } | {
44485
44628
  /** The ID of the action attempt. */
44486
44629
  action_attempt_id: string;
@@ -44504,7 +44647,7 @@ interface Routes {
44504
44647
  status: 'success';
44505
44648
  error: null;
44506
44649
  action_type: 'DELETE_ACCESS_CODE';
44507
- result?: any;
44650
+ result: {};
44508
44651
  } | {
44509
44652
  /** The ID of the action attempt. */
44510
44653
  action_attempt_id: string;
@@ -44528,7 +44671,9 @@ interface Routes {
44528
44671
  status: 'success';
44529
44672
  error: null;
44530
44673
  action_type: 'UPDATE_ACCESS_CODE';
44531
- result?: any;
44674
+ result: {
44675
+ access_code?: any;
44676
+ };
44532
44677
  } | {
44533
44678
  /** The ID of the action attempt. */
44534
44679
  action_attempt_id: string;
@@ -44552,7 +44697,9 @@ interface Routes {
44552
44697
  status: 'success';
44553
44698
  error: null;
44554
44699
  action_type: 'CREATE_NOISE_THRESHOLD';
44555
- result?: any;
44700
+ result: {
44701
+ noise_threshold?: any;
44702
+ };
44556
44703
  } | {
44557
44704
  /** The ID of the action attempt. */
44558
44705
  action_attempt_id: string;
@@ -44576,7 +44723,7 @@ interface Routes {
44576
44723
  status: 'success';
44577
44724
  error: null;
44578
44725
  action_type: 'DELETE_NOISE_THRESHOLD';
44579
- result?: any;
44726
+ result: {};
44580
44727
  } | {
44581
44728
  /** The ID of the action attempt. */
44582
44729
  action_attempt_id: string;
@@ -44600,7 +44747,9 @@ interface Routes {
44600
44747
  status: 'success';
44601
44748
  error: null;
44602
44749
  action_type: 'UPDATE_NOISE_THRESHOLD';
44603
- result?: any;
44750
+ result: {
44751
+ noise_threshold?: any;
44752
+ };
44604
44753
  } | {
44605
44754
  /** The ID of the action attempt. */
44606
44755
  action_attempt_id: string;
@@ -45000,12 +45149,7 @@ interface Routes {
45000
45149
  status: 'success';
45001
45150
  error: null;
45002
45151
  action_type: 'ENCODE_CARD';
45003
- result: {
45004
- /** Matching acs_credential currently encoded on this card. */
45005
- acs_credential_id: string | null;
45006
- /** A number or string that physically identifies this card. */
45007
- card_number: string | null;
45008
- };
45152
+ result: {};
45009
45153
  } | {
45010
45154
  /** The ID of the action attempt. */
45011
45155
  action_attempt_id: string;
@@ -45197,7 +45341,7 @@ interface Routes {
45197
45341
  status: 'success';
45198
45342
  error: null;
45199
45343
  action_type: 'SYNC_ACCESS_CODES';
45200
- result?: any;
45344
+ result: {};
45201
45345
  } | {
45202
45346
  /** The ID of the action attempt. */
45203
45347
  action_attempt_id: string;
@@ -45221,7 +45365,9 @@ interface Routes {
45221
45365
  status: 'success';
45222
45366
  error: null;
45223
45367
  action_type: 'CREATE_ACCESS_CODE';
45224
- result?: any;
45368
+ result: {
45369
+ access_code?: any;
45370
+ };
45225
45371
  } | {
45226
45372
  /** The ID of the action attempt. */
45227
45373
  action_attempt_id: string;
@@ -45245,7 +45391,7 @@ interface Routes {
45245
45391
  status: 'success';
45246
45392
  error: null;
45247
45393
  action_type: 'DELETE_ACCESS_CODE';
45248
- result?: any;
45394
+ result: {};
45249
45395
  } | {
45250
45396
  /** The ID of the action attempt. */
45251
45397
  action_attempt_id: string;
@@ -45269,7 +45415,9 @@ interface Routes {
45269
45415
  status: 'success';
45270
45416
  error: null;
45271
45417
  action_type: 'UPDATE_ACCESS_CODE';
45272
- result?: any;
45418
+ result: {
45419
+ access_code?: any;
45420
+ };
45273
45421
  } | {
45274
45422
  /** The ID of the action attempt. */
45275
45423
  action_attempt_id: string;
@@ -45293,7 +45441,9 @@ interface Routes {
45293
45441
  status: 'success';
45294
45442
  error: null;
45295
45443
  action_type: 'CREATE_NOISE_THRESHOLD';
45296
- result?: any;
45444
+ result: {
45445
+ noise_threshold?: any;
45446
+ };
45297
45447
  } | {
45298
45448
  /** The ID of the action attempt. */
45299
45449
  action_attempt_id: string;
@@ -45317,7 +45467,7 @@ interface Routes {
45317
45467
  status: 'success';
45318
45468
  error: null;
45319
45469
  action_type: 'DELETE_NOISE_THRESHOLD';
45320
- result?: any;
45470
+ result: {};
45321
45471
  } | {
45322
45472
  /** The ID of the action attempt. */
45323
45473
  action_attempt_id: string;
@@ -45341,7 +45491,9 @@ interface Routes {
45341
45491
  status: 'success';
45342
45492
  error: null;
45343
45493
  action_type: 'UPDATE_NOISE_THRESHOLD';
45344
- result?: any;
45494
+ result: {
45495
+ noise_threshold?: any;
45496
+ };
45345
45497
  } | {
45346
45498
  /** The ID of the action attempt. */
45347
45499
  action_attempt_id: string;
@@ -45561,12 +45713,7 @@ interface Routes {
45561
45713
  status: 'success';
45562
45714
  error: null;
45563
45715
  action_type: 'ENCODE_CARD';
45564
- result: {
45565
- /** Matching acs_credential currently encoded on this card. */
45566
- acs_credential_id: string | null;
45567
- /** A number or string that physically identifies this card. */
45568
- card_number: string | null;
45569
- };
45716
+ result: {};
45570
45717
  } | {
45571
45718
  /** The ID of the action attempt. */
45572
45719
  action_attempt_id: string;
@@ -45758,7 +45905,7 @@ interface Routes {
45758
45905
  status: 'success';
45759
45906
  error: null;
45760
45907
  action_type: 'SYNC_ACCESS_CODES';
45761
- result?: any;
45908
+ result: {};
45762
45909
  } | {
45763
45910
  /** The ID of the action attempt. */
45764
45911
  action_attempt_id: string;
@@ -45782,7 +45929,9 @@ interface Routes {
45782
45929
  status: 'success';
45783
45930
  error: null;
45784
45931
  action_type: 'CREATE_ACCESS_CODE';
45785
- result?: any;
45932
+ result: {
45933
+ access_code?: any;
45934
+ };
45786
45935
  } | {
45787
45936
  /** The ID of the action attempt. */
45788
45937
  action_attempt_id: string;
@@ -45806,7 +45955,7 @@ interface Routes {
45806
45955
  status: 'success';
45807
45956
  error: null;
45808
45957
  action_type: 'DELETE_ACCESS_CODE';
45809
- result?: any;
45958
+ result: {};
45810
45959
  } | {
45811
45960
  /** The ID of the action attempt. */
45812
45961
  action_attempt_id: string;
@@ -45830,7 +45979,9 @@ interface Routes {
45830
45979
  status: 'success';
45831
45980
  error: null;
45832
45981
  action_type: 'UPDATE_ACCESS_CODE';
45833
- result?: any;
45982
+ result: {
45983
+ access_code?: any;
45984
+ };
45834
45985
  } | {
45835
45986
  /** The ID of the action attempt. */
45836
45987
  action_attempt_id: string;
@@ -45854,7 +46005,9 @@ interface Routes {
45854
46005
  status: 'success';
45855
46006
  error: null;
45856
46007
  action_type: 'CREATE_NOISE_THRESHOLD';
45857
- result?: any;
46008
+ result: {
46009
+ noise_threshold?: any;
46010
+ };
45858
46011
  } | {
45859
46012
  /** The ID of the action attempt. */
45860
46013
  action_attempt_id: string;
@@ -45878,7 +46031,7 @@ interface Routes {
45878
46031
  status: 'success';
45879
46032
  error: null;
45880
46033
  action_type: 'DELETE_NOISE_THRESHOLD';
45881
- result?: any;
46034
+ result: {};
45882
46035
  } | {
45883
46036
  /** The ID of the action attempt. */
45884
46037
  action_attempt_id: string;
@@ -45902,7 +46055,9 @@ interface Routes {
45902
46055
  status: 'success';
45903
46056
  error: null;
45904
46057
  action_type: 'UPDATE_NOISE_THRESHOLD';
45905
- result?: any;
46058
+ result: {
46059
+ noise_threshold?: any;
46060
+ };
45906
46061
  } | {
45907
46062
  /** The ID of the action attempt. */
45908
46063
  action_attempt_id: string;
@@ -46606,12 +46761,7 @@ interface Routes {
46606
46761
  status: 'success';
46607
46762
  error: null;
46608
46763
  action_type: 'ENCODE_CARD';
46609
- result: {
46610
- /** Matching acs_credential currently encoded on this card. */
46611
- acs_credential_id: string | null;
46612
- /** A number or string that physically identifies this card. */
46613
- card_number: string | null;
46614
- };
46764
+ result: {};
46615
46765
  } | {
46616
46766
  /** The ID of the action attempt. */
46617
46767
  action_attempt_id: string;
@@ -46803,7 +46953,7 @@ interface Routes {
46803
46953
  status: 'success';
46804
46954
  error: null;
46805
46955
  action_type: 'SYNC_ACCESS_CODES';
46806
- result?: any;
46956
+ result: {};
46807
46957
  } | {
46808
46958
  /** The ID of the action attempt. */
46809
46959
  action_attempt_id: string;
@@ -46827,7 +46977,9 @@ interface Routes {
46827
46977
  status: 'success';
46828
46978
  error: null;
46829
46979
  action_type: 'CREATE_ACCESS_CODE';
46830
- result?: any;
46980
+ result: {
46981
+ access_code?: any;
46982
+ };
46831
46983
  } | {
46832
46984
  /** The ID of the action attempt. */
46833
46985
  action_attempt_id: string;
@@ -46851,7 +47003,7 @@ interface Routes {
46851
47003
  status: 'success';
46852
47004
  error: null;
46853
47005
  action_type: 'DELETE_ACCESS_CODE';
46854
- result?: any;
47006
+ result: {};
46855
47007
  } | {
46856
47008
  /** The ID of the action attempt. */
46857
47009
  action_attempt_id: string;
@@ -46875,7 +47027,9 @@ interface Routes {
46875
47027
  status: 'success';
46876
47028
  error: null;
46877
47029
  action_type: 'UPDATE_ACCESS_CODE';
46878
- result?: any;
47030
+ result: {
47031
+ access_code?: any;
47032
+ };
46879
47033
  } | {
46880
47034
  /** The ID of the action attempt. */
46881
47035
  action_attempt_id: string;
@@ -46899,7 +47053,9 @@ interface Routes {
46899
47053
  status: 'success';
46900
47054
  error: null;
46901
47055
  action_type: 'CREATE_NOISE_THRESHOLD';
46902
- result?: any;
47056
+ result: {
47057
+ noise_threshold?: any;
47058
+ };
46903
47059
  } | {
46904
47060
  /** The ID of the action attempt. */
46905
47061
  action_attempt_id: string;
@@ -46923,7 +47079,7 @@ interface Routes {
46923
47079
  status: 'success';
46924
47080
  error: null;
46925
47081
  action_type: 'DELETE_NOISE_THRESHOLD';
46926
- result?: any;
47082
+ result: {};
46927
47083
  } | {
46928
47084
  /** The ID of the action attempt. */
46929
47085
  action_attempt_id: string;
@@ -46947,7 +47103,9 @@ interface Routes {
46947
47103
  status: 'success';
46948
47104
  error: null;
46949
47105
  action_type: 'UPDATE_NOISE_THRESHOLD';
46950
- result?: any;
47106
+ result: {
47107
+ noise_threshold?: any;
47108
+ };
46951
47109
  } | {
46952
47110
  /** The ID of the action attempt. */
46953
47111
  action_attempt_id: string;
@@ -47169,12 +47327,7 @@ interface Routes {
47169
47327
  status: 'success';
47170
47328
  error: null;
47171
47329
  action_type: 'ENCODE_CARD';
47172
- result: {
47173
- /** Matching acs_credential currently encoded on this card. */
47174
- acs_credential_id: string | null;
47175
- /** A number or string that physically identifies this card. */
47176
- card_number: string | null;
47177
- };
47330
+ result: {};
47178
47331
  } | {
47179
47332
  /** The ID of the action attempt. */
47180
47333
  action_attempt_id: string;
@@ -47366,7 +47519,7 @@ interface Routes {
47366
47519
  status: 'success';
47367
47520
  error: null;
47368
47521
  action_type: 'SYNC_ACCESS_CODES';
47369
- result?: any;
47522
+ result: {};
47370
47523
  } | {
47371
47524
  /** The ID of the action attempt. */
47372
47525
  action_attempt_id: string;
@@ -47390,7 +47543,9 @@ interface Routes {
47390
47543
  status: 'success';
47391
47544
  error: null;
47392
47545
  action_type: 'CREATE_ACCESS_CODE';
47393
- result?: any;
47546
+ result: {
47547
+ access_code?: any;
47548
+ };
47394
47549
  } | {
47395
47550
  /** The ID of the action attempt. */
47396
47551
  action_attempt_id: string;
@@ -47414,7 +47569,7 @@ interface Routes {
47414
47569
  status: 'success';
47415
47570
  error: null;
47416
47571
  action_type: 'DELETE_ACCESS_CODE';
47417
- result?: any;
47572
+ result: {};
47418
47573
  } | {
47419
47574
  /** The ID of the action attempt. */
47420
47575
  action_attempt_id: string;
@@ -47438,7 +47593,9 @@ interface Routes {
47438
47593
  status: 'success';
47439
47594
  error: null;
47440
47595
  action_type: 'UPDATE_ACCESS_CODE';
47441
- result?: any;
47596
+ result: {
47597
+ access_code?: any;
47598
+ };
47442
47599
  } | {
47443
47600
  /** The ID of the action attempt. */
47444
47601
  action_attempt_id: string;
@@ -47462,7 +47619,9 @@ interface Routes {
47462
47619
  status: 'success';
47463
47620
  error: null;
47464
47621
  action_type: 'CREATE_NOISE_THRESHOLD';
47465
- result?: any;
47622
+ result: {
47623
+ noise_threshold?: any;
47624
+ };
47466
47625
  } | {
47467
47626
  /** The ID of the action attempt. */
47468
47627
  action_attempt_id: string;
@@ -47486,7 +47645,7 @@ interface Routes {
47486
47645
  status: 'success';
47487
47646
  error: null;
47488
47647
  action_type: 'DELETE_NOISE_THRESHOLD';
47489
- result?: any;
47648
+ result: {};
47490
47649
  } | {
47491
47650
  /** The ID of the action attempt. */
47492
47651
  action_attempt_id: string;
@@ -47510,7 +47669,9 @@ interface Routes {
47510
47669
  status: 'success';
47511
47670
  error: null;
47512
47671
  action_type: 'UPDATE_NOISE_THRESHOLD';
47513
- result?: any;
47672
+ result: {
47673
+ noise_threshold?: any;
47674
+ };
47514
47675
  } | {
47515
47676
  /** The ID of the action attempt. */
47516
47677
  action_attempt_id: string;
@@ -48631,12 +48792,7 @@ interface Routes {
48631
48792
  status: 'success';
48632
48793
  error: null;
48633
48794
  action_type: 'ENCODE_CARD';
48634
- result: {
48635
- /** Matching acs_credential currently encoded on this card. */
48636
- acs_credential_id: string | null;
48637
- /** A number or string that physically identifies this card. */
48638
- card_number: string | null;
48639
- };
48795
+ result: {};
48640
48796
  } | {
48641
48797
  /** The ID of the action attempt. */
48642
48798
  action_attempt_id: string;
@@ -48828,7 +48984,7 @@ interface Routes {
48828
48984
  status: 'success';
48829
48985
  error: null;
48830
48986
  action_type: 'SYNC_ACCESS_CODES';
48831
- result?: any;
48987
+ result: {};
48832
48988
  } | {
48833
48989
  /** The ID of the action attempt. */
48834
48990
  action_attempt_id: string;
@@ -48852,7 +49008,9 @@ interface Routes {
48852
49008
  status: 'success';
48853
49009
  error: null;
48854
49010
  action_type: 'CREATE_ACCESS_CODE';
48855
- result?: any;
49011
+ result: {
49012
+ access_code?: any;
49013
+ };
48856
49014
  } | {
48857
49015
  /** The ID of the action attempt. */
48858
49016
  action_attempt_id: string;
@@ -48876,7 +49034,7 @@ interface Routes {
48876
49034
  status: 'success';
48877
49035
  error: null;
48878
49036
  action_type: 'DELETE_ACCESS_CODE';
48879
- result?: any;
49037
+ result: {};
48880
49038
  } | {
48881
49039
  /** The ID of the action attempt. */
48882
49040
  action_attempt_id: string;
@@ -48900,7 +49058,9 @@ interface Routes {
48900
49058
  status: 'success';
48901
49059
  error: null;
48902
49060
  action_type: 'UPDATE_ACCESS_CODE';
48903
- result?: any;
49061
+ result: {
49062
+ access_code?: any;
49063
+ };
48904
49064
  } | {
48905
49065
  /** The ID of the action attempt. */
48906
49066
  action_attempt_id: string;
@@ -48924,7 +49084,9 @@ interface Routes {
48924
49084
  status: 'success';
48925
49085
  error: null;
48926
49086
  action_type: 'CREATE_NOISE_THRESHOLD';
48927
- result?: any;
49087
+ result: {
49088
+ noise_threshold?: any;
49089
+ };
48928
49090
  } | {
48929
49091
  /** The ID of the action attempt. */
48930
49092
  action_attempt_id: string;
@@ -48948,7 +49110,7 @@ interface Routes {
48948
49110
  status: 'success';
48949
49111
  error: null;
48950
49112
  action_type: 'DELETE_NOISE_THRESHOLD';
48951
- result?: any;
49113
+ result: {};
48952
49114
  } | {
48953
49115
  /** The ID of the action attempt. */
48954
49116
  action_attempt_id: string;
@@ -48972,7 +49134,9 @@ interface Routes {
48972
49134
  status: 'success';
48973
49135
  error: null;
48974
49136
  action_type: 'UPDATE_NOISE_THRESHOLD';
48975
- result?: any;
49137
+ result: {
49138
+ noise_threshold?: any;
49139
+ };
48976
49140
  } | {
48977
49141
  /** The ID of the action attempt. */
48978
49142
  action_attempt_id: string;
@@ -49311,12 +49475,7 @@ interface Routes {
49311
49475
  status: 'success';
49312
49476
  error: null;
49313
49477
  action_type: 'ENCODE_CARD';
49314
- result: {
49315
- /** Matching acs_credential currently encoded on this card. */
49316
- acs_credential_id: string | null;
49317
- /** A number or string that physically identifies this card. */
49318
- card_number: string | null;
49319
- };
49478
+ result: {};
49320
49479
  } | {
49321
49480
  /** The ID of the action attempt. */
49322
49481
  action_attempt_id: string;
@@ -49508,7 +49667,7 @@ interface Routes {
49508
49667
  status: 'success';
49509
49668
  error: null;
49510
49669
  action_type: 'SYNC_ACCESS_CODES';
49511
- result?: any;
49670
+ result: {};
49512
49671
  } | {
49513
49672
  /** The ID of the action attempt. */
49514
49673
  action_attempt_id: string;
@@ -49532,7 +49691,9 @@ interface Routes {
49532
49691
  status: 'success';
49533
49692
  error: null;
49534
49693
  action_type: 'CREATE_ACCESS_CODE';
49535
- result?: any;
49694
+ result: {
49695
+ access_code?: any;
49696
+ };
49536
49697
  } | {
49537
49698
  /** The ID of the action attempt. */
49538
49699
  action_attempt_id: string;
@@ -49556,7 +49717,7 @@ interface Routes {
49556
49717
  status: 'success';
49557
49718
  error: null;
49558
49719
  action_type: 'DELETE_ACCESS_CODE';
49559
- result?: any;
49720
+ result: {};
49560
49721
  } | {
49561
49722
  /** The ID of the action attempt. */
49562
49723
  action_attempt_id: string;
@@ -49580,7 +49741,9 @@ interface Routes {
49580
49741
  status: 'success';
49581
49742
  error: null;
49582
49743
  action_type: 'UPDATE_ACCESS_CODE';
49583
- result?: any;
49744
+ result: {
49745
+ access_code?: any;
49746
+ };
49584
49747
  } | {
49585
49748
  /** The ID of the action attempt. */
49586
49749
  action_attempt_id: string;
@@ -49604,7 +49767,9 @@ interface Routes {
49604
49767
  status: 'success';
49605
49768
  error: null;
49606
49769
  action_type: 'CREATE_NOISE_THRESHOLD';
49607
- result?: any;
49770
+ result: {
49771
+ noise_threshold?: any;
49772
+ };
49608
49773
  } | {
49609
49774
  /** The ID of the action attempt. */
49610
49775
  action_attempt_id: string;
@@ -49628,7 +49793,7 @@ interface Routes {
49628
49793
  status: 'success';
49629
49794
  error: null;
49630
49795
  action_type: 'DELETE_NOISE_THRESHOLD';
49631
- result?: any;
49796
+ result: {};
49632
49797
  } | {
49633
49798
  /** The ID of the action attempt. */
49634
49799
  action_attempt_id: string;
@@ -49652,7 +49817,9 @@ interface Routes {
49652
49817
  status: 'success';
49653
49818
  error: null;
49654
49819
  action_type: 'UPDATE_NOISE_THRESHOLD';
49655
- result?: any;
49820
+ result: {
49821
+ noise_threshold?: any;
49822
+ };
49656
49823
  } | {
49657
49824
  /** The ID of the action attempt. */
49658
49825
  action_attempt_id: string;
@@ -51339,12 +51506,7 @@ interface Routes {
51339
51506
  status: 'success';
51340
51507
  error: null;
51341
51508
  action_type: 'ENCODE_CARD';
51342
- result: {
51343
- /** Matching acs_credential currently encoded on this card. */
51344
- acs_credential_id: string | null;
51345
- /** A number or string that physically identifies this card. */
51346
- card_number: string | null;
51347
- };
51509
+ result: {};
51348
51510
  } | {
51349
51511
  /** The ID of the action attempt. */
51350
51512
  action_attempt_id: string;
@@ -51536,7 +51698,7 @@ interface Routes {
51536
51698
  status: 'success';
51537
51699
  error: null;
51538
51700
  action_type: 'SYNC_ACCESS_CODES';
51539
- result?: any;
51701
+ result: {};
51540
51702
  } | {
51541
51703
  /** The ID of the action attempt. */
51542
51704
  action_attempt_id: string;
@@ -51560,7 +51722,9 @@ interface Routes {
51560
51722
  status: 'success';
51561
51723
  error: null;
51562
51724
  action_type: 'CREATE_ACCESS_CODE';
51563
- result?: any;
51725
+ result: {
51726
+ access_code?: any;
51727
+ };
51564
51728
  } | {
51565
51729
  /** The ID of the action attempt. */
51566
51730
  action_attempt_id: string;
@@ -51584,7 +51748,7 @@ interface Routes {
51584
51748
  status: 'success';
51585
51749
  error: null;
51586
51750
  action_type: 'DELETE_ACCESS_CODE';
51587
- result?: any;
51751
+ result: {};
51588
51752
  } | {
51589
51753
  /** The ID of the action attempt. */
51590
51754
  action_attempt_id: string;
@@ -51608,7 +51772,9 @@ interface Routes {
51608
51772
  status: 'success';
51609
51773
  error: null;
51610
51774
  action_type: 'UPDATE_ACCESS_CODE';
51611
- result?: any;
51775
+ result: {
51776
+ access_code?: any;
51777
+ };
51612
51778
  } | {
51613
51779
  /** The ID of the action attempt. */
51614
51780
  action_attempt_id: string;
@@ -51632,7 +51798,9 @@ interface Routes {
51632
51798
  status: 'success';
51633
51799
  error: null;
51634
51800
  action_type: 'CREATE_NOISE_THRESHOLD';
51635
- result?: any;
51801
+ result: {
51802
+ noise_threshold?: any;
51803
+ };
51636
51804
  } | {
51637
51805
  /** The ID of the action attempt. */
51638
51806
  action_attempt_id: string;
@@ -51656,7 +51824,7 @@ interface Routes {
51656
51824
  status: 'success';
51657
51825
  error: null;
51658
51826
  action_type: 'DELETE_NOISE_THRESHOLD';
51659
- result?: any;
51827
+ result: {};
51660
51828
  } | {
51661
51829
  /** The ID of the action attempt. */
51662
51830
  action_attempt_id: string;
@@ -51680,7 +51848,9 @@ interface Routes {
51680
51848
  status: 'success';
51681
51849
  error: null;
51682
51850
  action_type: 'UPDATE_NOISE_THRESHOLD';
51683
- result?: any;
51851
+ result: {
51852
+ noise_threshold?: any;
51853
+ };
51684
51854
  } | {
51685
51855
  /** The ID of the action attempt. */
51686
51856
  action_attempt_id: string;