@seamapi/types 1.925.0 → 1.926.0

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.
@@ -343,19 +343,6 @@ declare const access_code_warning: z.ZodDiscriminatedUnion<"warning_code", [z.Zo
343
343
  }>, z.ZodObject<{
344
344
  message: z.ZodString;
345
345
  created_at: z.ZodOptional<z.ZodString>;
346
- } & {
347
- warning_code: z.ZodLiteral<"access_code_inactive">;
348
- }, "strip", z.ZodTypeAny, {
349
- message: string;
350
- warning_code: "access_code_inactive";
351
- created_at?: string | undefined;
352
- }, {
353
- message: string;
354
- warning_code: "access_code_inactive";
355
- created_at?: string | undefined;
356
- }>, z.ZodObject<{
357
- message: z.ZodString;
358
- created_at: z.ZodOptional<z.ZodString>;
359
346
  } & {
360
347
  warning_code: z.ZodLiteral<"using_backup_access_code">;
361
348
  }, "strip", z.ZodTypeAny, {
@@ -1107,19 +1094,6 @@ declare const access_code: z.ZodObject<{
1107
1094
  }>, z.ZodObject<{
1108
1095
  message: z.ZodString;
1109
1096
  created_at: z.ZodOptional<z.ZodString>;
1110
- } & {
1111
- warning_code: z.ZodLiteral<"access_code_inactive">;
1112
- }, "strip", z.ZodTypeAny, {
1113
- message: string;
1114
- warning_code: "access_code_inactive";
1115
- created_at?: string | undefined;
1116
- }, {
1117
- message: string;
1118
- warning_code: "access_code_inactive";
1119
- created_at?: string | undefined;
1120
- }>, z.ZodObject<{
1121
- message: z.ZodString;
1122
- created_at: z.ZodOptional<z.ZodString>;
1123
1097
  } & {
1124
1098
  warning_code: z.ZodLiteral<"using_backup_access_code">;
1125
1099
  }, "strip", z.ZodTypeAny, {
@@ -1572,10 +1546,6 @@ declare const access_code: z.ZodObject<{
1572
1546
  message: string;
1573
1547
  warning_code: "management_transferred";
1574
1548
  created_at?: string | undefined;
1575
- } | {
1576
- message: string;
1577
- warning_code: "access_code_inactive";
1578
- created_at?: string | undefined;
1579
1549
  } | {
1580
1550
  message: string;
1581
1551
  warning_code: "using_backup_access_code";
@@ -1874,10 +1844,6 @@ declare const access_code: z.ZodObject<{
1874
1844
  message: string;
1875
1845
  warning_code: "management_transferred";
1876
1846
  created_at?: string | undefined;
1877
- } | {
1878
- message: string;
1879
- warning_code: "access_code_inactive";
1880
- created_at?: string | undefined;
1881
1847
  } | {
1882
1848
  message: string;
1883
1849
  warning_code: "using_backup_access_code";
@@ -2683,19 +2649,6 @@ declare const unmanaged_access_code: z.ZodObject<{
2683
2649
  }>, z.ZodObject<{
2684
2650
  message: z.ZodString;
2685
2651
  created_at: z.ZodOptional<z.ZodString>;
2686
- } & {
2687
- warning_code: z.ZodLiteral<"access_code_inactive">;
2688
- }, "strip", z.ZodTypeAny, {
2689
- message: string;
2690
- warning_code: "access_code_inactive";
2691
- created_at?: string | undefined;
2692
- }, {
2693
- message: string;
2694
- warning_code: "access_code_inactive";
2695
- created_at?: string | undefined;
2696
- }>, z.ZodObject<{
2697
- message: z.ZodString;
2698
- created_at: z.ZodOptional<z.ZodString>;
2699
2652
  } & {
2700
2653
  warning_code: z.ZodLiteral<"using_backup_access_code">;
2701
2654
  }, "strip", z.ZodTypeAny, {
@@ -2974,10 +2927,6 @@ declare const unmanaged_access_code: z.ZodObject<{
2974
2927
  message: string;
2975
2928
  warning_code: "management_transferred";
2976
2929
  created_at?: string | undefined;
2977
- } | {
2978
- message: string;
2979
- warning_code: "access_code_inactive";
2980
- created_at?: string | undefined;
2981
2930
  } | {
2982
2931
  message: string;
2983
2932
  warning_code: "using_backup_access_code";
@@ -3223,10 +3172,6 @@ declare const unmanaged_access_code: z.ZodObject<{
3223
3172
  message: string;
3224
3173
  warning_code: "management_transferred";
3225
3174
  created_at?: string | undefined;
3226
- } | {
3227
- message: string;
3228
- warning_code: "access_code_inactive";
3229
- created_at?: string | undefined;
3230
3175
  } | {
3231
3176
  message: string;
3232
3177
  warning_code: "using_backup_access_code";
@@ -31578,13 +31523,6 @@ type Routes = {
31578
31523
  created_at?: string | undefined;
31579
31524
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
31580
31525
  warning_code: 'management_transferred';
31581
- } | {
31582
- /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
31583
- message: string;
31584
- /** Date and time at which Seam created the warning. */
31585
- created_at?: string | undefined;
31586
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
31587
- warning_code: 'access_code_inactive';
31588
31526
  } | {
31589
31527
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
31590
31528
  message: string;
@@ -32118,13 +32056,6 @@ type Routes = {
32118
32056
  created_at?: string | undefined;
32119
32057
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
32120
32058
  warning_code: 'management_transferred';
32121
- } | {
32122
- /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
32123
- message: string;
32124
- /** Date and time at which Seam created the warning. */
32125
- created_at?: string | undefined;
32126
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
32127
- warning_code: 'access_code_inactive';
32128
32059
  } | {
32129
32060
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
32130
32061
  message: string;
@@ -34346,13 +34277,6 @@ type Routes = {
34346
34277
  created_at?: string | undefined;
34347
34278
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
34348
34279
  warning_code: 'management_transferred';
34349
- } | {
34350
- /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
34351
- message: string;
34352
- /** Date and time at which Seam created the warning. */
34353
- created_at?: string | undefined;
34354
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
34355
- warning_code: 'access_code_inactive';
34356
34280
  } | {
34357
34281
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
34358
34282
  message: string;
@@ -34932,13 +34856,6 @@ type Routes = {
34932
34856
  created_at?: string | undefined;
34933
34857
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
34934
34858
  warning_code: 'management_transferred';
34935
- } | {
34936
- /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
34937
- message: string;
34938
- /** Date and time at which Seam created the warning. */
34939
- created_at?: string | undefined;
34940
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
34941
- warning_code: 'access_code_inactive';
34942
34859
  } | {
34943
34860
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
34944
34861
  message: string;
@@ -35463,13 +35380,6 @@ type Routes = {
35463
35380
  created_at?: string | undefined;
35464
35381
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
35465
35382
  warning_code: 'management_transferred';
35466
- } | {
35467
- /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
35468
- message: string;
35469
- /** Date and time at which Seam created the warning. */
35470
- created_at?: string | undefined;
35471
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
35472
- warning_code: 'access_code_inactive';
35473
35383
  } | {
35474
35384
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
35475
35385
  message: string;
@@ -35971,13 +35881,6 @@ type Routes = {
35971
35881
  created_at?: string | undefined;
35972
35882
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
35973
35883
  warning_code: 'management_transferred';
35974
- } | {
35975
- /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
35976
- message: string;
35977
- /** Date and time at which Seam created the warning. */
35978
- created_at?: string | undefined;
35979
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
35980
- warning_code: 'access_code_inactive';
35981
35884
  } | {
35982
35885
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
35983
35886
  message: string;
@@ -36512,13 +36415,6 @@ type Routes = {
36512
36415
  created_at?: string | undefined;
36513
36416
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
36514
36417
  warning_code: 'management_transferred';
36515
- } | {
36516
- /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
36517
- message: string;
36518
- /** Date and time at which Seam created the warning. */
36519
- created_at?: string | undefined;
36520
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
36521
- warning_code: 'access_code_inactive';
36522
36418
  } | {
36523
36419
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
36524
36420
  message: string;
@@ -38649,13 +38545,6 @@ type Routes = {
38649
38545
  created_at?: string | undefined;
38650
38546
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
38651
38547
  warning_code: 'management_transferred';
38652
- } | {
38653
- /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
38654
- message: string;
38655
- /** Date and time at which Seam created the warning. */
38656
- created_at?: string | undefined;
38657
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
38658
- warning_code: 'access_code_inactive';
38659
38548
  } | {
38660
38549
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
38661
38550
  message: string;
@@ -39076,13 +38965,6 @@ type Routes = {
39076
38965
  created_at?: string | undefined;
39077
38966
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
39078
38967
  warning_code: 'management_transferred';
39079
- } | {
39080
- /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
39081
- message: string;
39082
- /** Date and time at which Seam created the warning. */
39083
- created_at?: string | undefined;
39084
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
39085
- warning_code: 'access_code_inactive';
39086
38968
  } | {
39087
38969
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
39088
38970
  message: string;
@@ -147340,13 +147222,6 @@ type Routes = {
147340
147222
  created_at?: string | undefined;
147341
147223
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
147342
147224
  warning_code: 'management_transferred';
147343
- } | {
147344
- /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
147345
- message: string;
147346
- /** Date and time at which Seam created the warning. */
147347
- created_at?: string | undefined;
147348
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
147349
- warning_code: 'access_code_inactive';
147350
147225
  } | {
147351
147226
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
147352
147227
  message: string;
@@ -147751,13 +147626,6 @@ type Routes = {
147751
147626
  created_at?: string | undefined;
147752
147627
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
147753
147628
  warning_code: 'management_transferred';
147754
- } | {
147755
- /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
147756
- message: string;
147757
- /** Date and time at which Seam created the warning. */
147758
- created_at?: string | undefined;
147759
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
147760
- warning_code: 'access_code_inactive';
147761
147629
  } | {
147762
147630
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
147763
147631
  message: string;
package/dist/index.cjs CHANGED
@@ -2652,11 +2652,6 @@ var igloo_algopin_must_be_used_within_24_hours = common_access_code_warning.exte
2652
2652
  var management_transferred = common_access_code_warning.extend({
2653
2653
  warning_code: zod.z.literal("management_transferred").describe(warning_code_description3)
2654
2654
  }).describe("Management was transferred to another workspace.");
2655
- var access_code_inactive = common_access_code_warning.extend({
2656
- warning_code: zod.z.literal("access_code_inactive").describe(warning_code_description3)
2657
- }).describe(
2658
- "Indicates that the access code is disabled or inactive on the device. The code exists but will not grant access until re-enabled."
2659
- );
2660
2655
  var using_backup_access_code = common_access_code_warning.extend({
2661
2656
  warning_code: zod.z.literal("using_backup_access_code").describe(warning_code_description3)
2662
2657
  }).describe(
@@ -2674,7 +2669,6 @@ var access_code_warning = zod.z.discriminatedUnion("warning_code", [
2674
2669
  third_party_integration_detected2,
2675
2670
  igloo_algopin_must_be_used_within_24_hours,
2676
2671
  management_transferred,
2677
- access_code_inactive,
2678
2672
  using_backup_access_code,
2679
2673
  being_deleted2
2680
2674
  ]).describe(
@@ -2689,7 +2683,6 @@ zod.z.object({
2689
2683
  third_party_integration_detected: third_party_integration_detected2.optional().nullable(),
2690
2684
  igloo_algopin_must_be_used_within_24_hours: igloo_algopin_must_be_used_within_24_hours.optional().nullable(),
2691
2685
  management_transferred: management_transferred.optional().nullable(),
2692
- access_code_inactive: access_code_inactive.optional().nullable(),
2693
2686
  using_backup_access_code: using_backup_access_code.optional().nullable(),
2694
2687
  being_deleted: being_deleted2.optional().nullable()
2695
2688
  });
@@ -8980,27 +8973,6 @@ var openapi = {
8980
8973
  required: ["message", "warning_code"],
8981
8974
  type: "object"
8982
8975
  },
8983
- {
8984
- description: "Indicates that the access code is disabled or inactive on the device. The code exists but will not grant access until re-enabled.",
8985
- properties: {
8986
- created_at: {
8987
- description: "Date and time at which Seam created the warning.",
8988
- format: "date-time",
8989
- type: "string"
8990
- },
8991
- message: {
8992
- description: "Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.",
8993
- type: "string"
8994
- },
8995
- warning_code: {
8996
- description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
8997
- enum: ["access_code_inactive"],
8998
- type: "string"
8999
- }
9000
- },
9001
- required: ["message", "warning_code"],
9002
- type: "object"
9003
- },
9004
8976
  {
9005
8977
  description: "A backup access code has been pulled and is being used in place of this access code.",
9006
8978
  properties: {
@@ -34505,27 +34477,6 @@ var openapi = {
34505
34477
  required: ["message", "warning_code"],
34506
34478
  type: "object"
34507
34479
  },
34508
- {
34509
- description: "Indicates that the access code is disabled or inactive on the device. The code exists but will not grant access until re-enabled.",
34510
- properties: {
34511
- created_at: {
34512
- description: "Date and time at which Seam created the warning.",
34513
- format: "date-time",
34514
- type: "string"
34515
- },
34516
- message: {
34517
- description: "Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.",
34518
- type: "string"
34519
- },
34520
- warning_code: {
34521
- description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
34522
- enum: ["access_code_inactive"],
34523
- type: "string"
34524
- }
34525
- },
34526
- required: ["message", "warning_code"],
34527
- type: "object"
34528
- },
34529
34480
  {
34530
34481
  description: "A backup access code has been pulled and is being used in place of this access code.",
34531
34482
  properties: {