@seamapi/types 1.203.0 → 1.204.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 +10 -3
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +10 -2
- package/lib/seam/connect/openapi.d.ts +5 -0
- package/lib/seam/connect/openapi.js +10 -3
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +5 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +12 -3
- package/src/lib/seam/connect/route-types.ts +5 -2
|
@@ -4195,8 +4195,9 @@ export interface Routes {
|
|
|
4195
4195
|
queryParams: {};
|
|
4196
4196
|
jsonBody: {};
|
|
4197
4197
|
commonParams: {
|
|
4198
|
+
/** Returns webviews that can be accessed by the provided user_identifier_key. */
|
|
4198
4199
|
user_identifier_key?: string | undefined;
|
|
4199
|
-
/** Returns
|
|
4200
|
+
/** Returns webviews whose custom_metadata contains all of the provided key/value pairs. */
|
|
4200
4201
|
custom_metadata_has?: Record<string, string | boolean> | undefined;
|
|
4201
4202
|
limit?: number;
|
|
4202
4203
|
};
|
|
@@ -4285,7 +4286,9 @@ export interface Routes {
|
|
|
4285
4286
|
queryParams: {};
|
|
4286
4287
|
jsonBody: {};
|
|
4287
4288
|
commonParams: {
|
|
4288
|
-
/** Returns
|
|
4289
|
+
/** Returns accounts that can be accessed by the provided user_identifier_key. */
|
|
4290
|
+
user_identifier_key?: string | undefined;
|
|
4291
|
+
/** Returns accounts whose custom_metadata contains all of the provided key/value pairs. */
|
|
4289
4292
|
custom_metadata_has?: Record<string, string | boolean> | undefined;
|
|
4290
4293
|
};
|
|
4291
4294
|
formData: {};
|
package/package.json
CHANGED
|
@@ -8305,11 +8305,15 @@ export default {
|
|
|
8305
8305
|
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
8306
8306
|
},
|
|
8307
8307
|
description:
|
|
8308
|
-
|
|
8308
|
+
'Returns webviews whose custom_metadata contains all of the provided key/value pairs.',
|
|
8309
8309
|
type: 'object',
|
|
8310
8310
|
},
|
|
8311
8311
|
limit: { default: 500, format: 'float', type: 'number' },
|
|
8312
|
-
user_identifier_key: {
|
|
8312
|
+
user_identifier_key: {
|
|
8313
|
+
description:
|
|
8314
|
+
'Returns webviews that can be accessed by the provided user_identifier_key.',
|
|
8315
|
+
type: 'string',
|
|
8316
|
+
},
|
|
8313
8317
|
},
|
|
8314
8318
|
type: 'object',
|
|
8315
8319
|
},
|
|
@@ -8467,9 +8471,14 @@ export default {
|
|
|
8467
8471
|
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
8468
8472
|
},
|
|
8469
8473
|
description:
|
|
8470
|
-
|
|
8474
|
+
'Returns accounts whose custom_metadata contains all of the provided key/value pairs.',
|
|
8471
8475
|
type: 'object',
|
|
8472
8476
|
},
|
|
8477
|
+
user_identifier_key: {
|
|
8478
|
+
description:
|
|
8479
|
+
'Returns accounts that can be accessed by the provided user_identifier_key.',
|
|
8480
|
+
type: 'string',
|
|
8481
|
+
},
|
|
8473
8482
|
},
|
|
8474
8483
|
type: 'object',
|
|
8475
8484
|
},
|
|
@@ -4801,8 +4801,9 @@ export interface Routes {
|
|
|
4801
4801
|
queryParams: {}
|
|
4802
4802
|
jsonBody: {}
|
|
4803
4803
|
commonParams: {
|
|
4804
|
+
/** Returns webviews that can be accessed by the provided user_identifier_key. */
|
|
4804
4805
|
user_identifier_key?: string | undefined
|
|
4805
|
-
/** Returns
|
|
4806
|
+
/** Returns webviews whose custom_metadata contains all of the provided key/value pairs. */
|
|
4806
4807
|
custom_metadata_has?: Record<string, string | boolean> | undefined
|
|
4807
4808
|
limit?: number
|
|
4808
4809
|
}
|
|
@@ -4895,7 +4896,9 @@ export interface Routes {
|
|
|
4895
4896
|
queryParams: {}
|
|
4896
4897
|
jsonBody: {}
|
|
4897
4898
|
commonParams: {
|
|
4898
|
-
/** Returns
|
|
4899
|
+
/** Returns accounts that can be accessed by the provided user_identifier_key. */
|
|
4900
|
+
user_identifier_key?: string | undefined
|
|
4901
|
+
/** Returns accounts whose custom_metadata contains all of the provided key/value pairs. */
|
|
4899
4902
|
custom_metadata_has?: Record<string, string | boolean> | undefined
|
|
4900
4903
|
}
|
|
4901
4904
|
formData: {}
|