@seamapi/types 1.539.0 → 1.540.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.
- package/dist/connect.cjs +6 -6
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +7 -23
- package/dist/index.cjs +6 -6
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +5 -22
- package/lib/seam/connect/openapi.js +6 -6
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +8 -6
- package/src/lib/seam/connect/route-types.ts +2 -1
|
@@ -14722,13 +14722,10 @@ declare const _default: {
|
|
|
14722
14722
|
in: string;
|
|
14723
14723
|
name: string;
|
|
14724
14724
|
schema: {
|
|
14725
|
-
|
|
14726
|
-
format: string;
|
|
14727
|
-
type: string;
|
|
14728
|
-
};
|
|
14725
|
+
description: string;
|
|
14729
14726
|
type: string;
|
|
14730
|
-
description?: never;
|
|
14731
14727
|
format?: never;
|
|
14728
|
+
items?: never;
|
|
14732
14729
|
default?: never;
|
|
14733
14730
|
nullable?: never;
|
|
14734
14731
|
};
|
|
@@ -14757,17 +14754,6 @@ declare const _default: {
|
|
|
14757
14754
|
default?: never;
|
|
14758
14755
|
nullable?: never;
|
|
14759
14756
|
};
|
|
14760
|
-
} | {
|
|
14761
|
-
in: string;
|
|
14762
|
-
name: string;
|
|
14763
|
-
schema: {
|
|
14764
|
-
description: string;
|
|
14765
|
-
type: string;
|
|
14766
|
-
items?: never;
|
|
14767
|
-
format?: never;
|
|
14768
|
-
default?: never;
|
|
14769
|
-
nullable?: never;
|
|
14770
|
-
};
|
|
14771
14757
|
} | {
|
|
14772
14758
|
in: string;
|
|
14773
14759
|
name: string;
|
|
@@ -14786,8 +14772,8 @@ declare const _default: {
|
|
|
14786
14772
|
description: string;
|
|
14787
14773
|
nullable: boolean;
|
|
14788
14774
|
type: string;
|
|
14789
|
-
items?: never;
|
|
14790
14775
|
format?: never;
|
|
14776
|
+
items?: never;
|
|
14791
14777
|
default?: never;
|
|
14792
14778
|
};
|
|
14793
14779
|
})[];
|
|
@@ -14879,11 +14865,8 @@ declare const _default: {
|
|
|
14879
14865
|
};
|
|
14880
14866
|
type: string;
|
|
14881
14867
|
};
|
|
14882
|
-
|
|
14883
|
-
|
|
14884
|
-
format: string;
|
|
14885
|
-
type: string;
|
|
14886
|
-
};
|
|
14868
|
+
customer_key: {
|
|
14869
|
+
description: string;
|
|
14887
14870
|
type: string;
|
|
14888
14871
|
};
|
|
14889
14872
|
device_id: {
|
|
@@ -23522,10 +23522,10 @@ export default {
|
|
|
23522
23522
|
parameters: [
|
|
23523
23523
|
{
|
|
23524
23524
|
in: 'query',
|
|
23525
|
-
name: '
|
|
23525
|
+
name: 'customer_key',
|
|
23526
23526
|
schema: {
|
|
23527
|
-
|
|
23528
|
-
type: '
|
|
23527
|
+
description: 'Customer key for which you want to list access codes.',
|
|
23528
|
+
type: 'string',
|
|
23529
23529
|
},
|
|
23530
23530
|
},
|
|
23531
23531
|
{
|
|
@@ -23625,9 +23625,9 @@ export default {
|
|
|
23625
23625
|
items: { format: 'uuid', type: 'string' },
|
|
23626
23626
|
type: 'array',
|
|
23627
23627
|
},
|
|
23628
|
-
|
|
23629
|
-
|
|
23630
|
-
type: '
|
|
23628
|
+
customer_key: {
|
|
23629
|
+
description: 'Customer key for which you want to list access codes.',
|
|
23630
|
+
type: 'string',
|
|
23631
23631
|
},
|
|
23632
23632
|
device_id: {
|
|
23633
23633
|
description: 'ID of the device for which you want to list access codes. Specify either `device_id` or `access_code_ids`.',
|