@seamapi/types 1.351.1 → 1.353.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 +32 -3
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +39 -0
- package/lib/seam/connect/openapi.d.ts +28 -0
- package/lib/seam/connect/openapi.js +31 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +11 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +36 -2
- package/src/lib/seam/connect/route-types.ts +11 -0
package/dist/connect.d.cts
CHANGED
|
@@ -30365,9 +30365,14 @@ declare const _default: {
|
|
|
30365
30365
|
};
|
|
30366
30366
|
limit: {
|
|
30367
30367
|
default: number;
|
|
30368
|
+
description: string;
|
|
30368
30369
|
format: string;
|
|
30369
30370
|
type: string;
|
|
30370
30371
|
};
|
|
30372
|
+
page_cursor: {
|
|
30373
|
+
description: string;
|
|
30374
|
+
type: string;
|
|
30375
|
+
};
|
|
30371
30376
|
user_identity_email_address: {
|
|
30372
30377
|
description: string;
|
|
30373
30378
|
type: string;
|
|
@@ -30402,6 +30407,22 @@ declare const _default: {
|
|
|
30402
30407
|
ok: {
|
|
30403
30408
|
type: string;
|
|
30404
30409
|
};
|
|
30410
|
+
pagination: {
|
|
30411
|
+
description: string;
|
|
30412
|
+
properties: {
|
|
30413
|
+
has_next_page: {
|
|
30414
|
+
description: string;
|
|
30415
|
+
type: string;
|
|
30416
|
+
};
|
|
30417
|
+
next_page_cursor: {
|
|
30418
|
+
description: string;
|
|
30419
|
+
nullable: boolean;
|
|
30420
|
+
type: string;
|
|
30421
|
+
};
|
|
30422
|
+
};
|
|
30423
|
+
required: string[];
|
|
30424
|
+
type: string;
|
|
30425
|
+
};
|
|
30405
30426
|
};
|
|
30406
30427
|
required: string[];
|
|
30407
30428
|
type: string;
|
|
@@ -34157,6 +34178,13 @@ declare const _default: {
|
|
|
34157
34178
|
};
|
|
34158
34179
|
type: string;
|
|
34159
34180
|
};
|
|
34181
|
+
event_ids: {
|
|
34182
|
+
items: {
|
|
34183
|
+
format: string;
|
|
34184
|
+
type: string;
|
|
34185
|
+
};
|
|
34186
|
+
type: string;
|
|
34187
|
+
};
|
|
34160
34188
|
event_type: {
|
|
34161
34189
|
enum: string[];
|
|
34162
34190
|
type: string;
|
|
@@ -51508,8 +51536,11 @@ interface Routes {
|
|
|
51508
51536
|
user_identity_email_address?: string | undefined;
|
|
51509
51537
|
/** ID of the `acs_system` for which you want to retrieve all `acs_user`s. */
|
|
51510
51538
|
acs_system_id?: string | undefined;
|
|
51539
|
+
/** Maximum number of records to return per page. */
|
|
51511
51540
|
limit?: number;
|
|
51512
51541
|
created_before?: Date | undefined;
|
|
51542
|
+
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
51543
|
+
page_cursor?: string | undefined;
|
|
51513
51544
|
};
|
|
51514
51545
|
formData: {};
|
|
51515
51546
|
jsonResponse: {
|
|
@@ -51607,6 +51638,13 @@ interface Routes {
|
|
|
51607
51638
|
phone_number?: string | undefined;
|
|
51608
51639
|
is_managed: true;
|
|
51609
51640
|
}>;
|
|
51641
|
+
/** Information about the current page of results. */
|
|
51642
|
+
pagination: {
|
|
51643
|
+
/** Opaque value that can be used to select the next page of results via the `page_cursor` parameter. */
|
|
51644
|
+
next_page_cursor: string | null;
|
|
51645
|
+
/** Indicates whether there is another page of results after this one. */
|
|
51646
|
+
has_next_page: boolean;
|
|
51647
|
+
};
|
|
51610
51648
|
};
|
|
51611
51649
|
};
|
|
51612
51650
|
'/acs/users/list_accessible_entrances': {
|
|
@@ -57368,6 +57406,7 @@ interface Routes {
|
|
|
57368
57406
|
connected_account_id?: string | undefined;
|
|
57369
57407
|
connect_webview_id?: string | undefined;
|
|
57370
57408
|
limit?: number;
|
|
57409
|
+
event_ids?: string[] | undefined;
|
|
57371
57410
|
};
|
|
57372
57411
|
formData: {};
|
|
57373
57412
|
jsonResponse: {
|
|
@@ -13764,9 +13764,14 @@ declare const _default: {
|
|
|
13764
13764
|
};
|
|
13765
13765
|
limit: {
|
|
13766
13766
|
default: number;
|
|
13767
|
+
description: string;
|
|
13767
13768
|
format: string;
|
|
13768
13769
|
type: string;
|
|
13769
13770
|
};
|
|
13771
|
+
page_cursor: {
|
|
13772
|
+
description: string;
|
|
13773
|
+
type: string;
|
|
13774
|
+
};
|
|
13770
13775
|
user_identity_email_address: {
|
|
13771
13776
|
description: string;
|
|
13772
13777
|
type: string;
|
|
@@ -13801,6 +13806,22 @@ declare const _default: {
|
|
|
13801
13806
|
ok: {
|
|
13802
13807
|
type: string;
|
|
13803
13808
|
};
|
|
13809
|
+
pagination: {
|
|
13810
|
+
description: string;
|
|
13811
|
+
properties: {
|
|
13812
|
+
has_next_page: {
|
|
13813
|
+
description: string;
|
|
13814
|
+
type: string;
|
|
13815
|
+
};
|
|
13816
|
+
next_page_cursor: {
|
|
13817
|
+
description: string;
|
|
13818
|
+
nullable: boolean;
|
|
13819
|
+
type: string;
|
|
13820
|
+
};
|
|
13821
|
+
};
|
|
13822
|
+
required: string[];
|
|
13823
|
+
type: string;
|
|
13824
|
+
};
|
|
13804
13825
|
};
|
|
13805
13826
|
required: string[];
|
|
13806
13827
|
type: string;
|
|
@@ -17556,6 +17577,13 @@ declare const _default: {
|
|
|
17556
17577
|
};
|
|
17557
17578
|
type: string;
|
|
17558
17579
|
};
|
|
17580
|
+
event_ids: {
|
|
17581
|
+
items: {
|
|
17582
|
+
format: string;
|
|
17583
|
+
type: string;
|
|
17584
|
+
};
|
|
17585
|
+
type: string;
|
|
17586
|
+
};
|
|
17559
17587
|
event_type: {
|
|
17560
17588
|
enum: string[];
|
|
17561
17589
|
type: string;
|
|
@@ -17539,7 +17539,16 @@ export default {
|
|
|
17539
17539
|
type: 'string',
|
|
17540
17540
|
},
|
|
17541
17541
|
created_before: { format: 'date-time', type: 'string' },
|
|
17542
|
-
limit: {
|
|
17542
|
+
limit: {
|
|
17543
|
+
default: 500,
|
|
17544
|
+
description: 'Maximum number of records to return per page.',
|
|
17545
|
+
format: 'float',
|
|
17546
|
+
type: 'number',
|
|
17547
|
+
},
|
|
17548
|
+
page_cursor: {
|
|
17549
|
+
description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
|
|
17550
|
+
type: 'string',
|
|
17551
|
+
},
|
|
17543
17552
|
user_identity_email_address: {
|
|
17544
17553
|
description: 'Email address of the user identity for which you want to retrieve all `acs_user`s.',
|
|
17545
17554
|
type: 'string',
|
|
@@ -17570,8 +17579,24 @@ export default {
|
|
|
17570
17579
|
type: 'array',
|
|
17571
17580
|
},
|
|
17572
17581
|
ok: { type: 'boolean' },
|
|
17582
|
+
pagination: {
|
|
17583
|
+
description: 'Information about the current page of results.',
|
|
17584
|
+
properties: {
|
|
17585
|
+
has_next_page: {
|
|
17586
|
+
description: 'Indicates whether there is another page of results after this one.',
|
|
17587
|
+
type: 'boolean',
|
|
17588
|
+
},
|
|
17589
|
+
next_page_cursor: {
|
|
17590
|
+
description: 'Opaque value that can be used to select the next page of results via the `page_cursor` parameter.',
|
|
17591
|
+
nullable: true,
|
|
17592
|
+
type: 'string',
|
|
17593
|
+
},
|
|
17594
|
+
},
|
|
17595
|
+
required: ['next_page_cursor', 'has_next_page'],
|
|
17596
|
+
type: 'object',
|
|
17597
|
+
},
|
|
17573
17598
|
},
|
|
17574
|
-
required: ['acs_users', 'ok'],
|
|
17599
|
+
required: ['acs_users', 'pagination', 'ok'],
|
|
17575
17600
|
type: 'object',
|
|
17576
17601
|
},
|
|
17577
17602
|
},
|
|
@@ -20548,6 +20573,10 @@ export default {
|
|
|
20548
20573
|
items: { format: 'uuid', type: 'string' },
|
|
20549
20574
|
type: 'array',
|
|
20550
20575
|
},
|
|
20576
|
+
event_ids: {
|
|
20577
|
+
items: { format: 'uuid', type: 'string' },
|
|
20578
|
+
type: 'array',
|
|
20579
|
+
},
|
|
20551
20580
|
event_type: {
|
|
20552
20581
|
enum: [
|
|
20553
20582
|
'access_code.created',
|