@rippling/rippling-sdk 0.2.0-alpha.83 → 0.2.0-alpha.85
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/examples/manifest/custom-object-creation-workflow/custom-object-creation-workflow.ts +44 -26
- package/examples/manifest/dental-practice-management/dental-practice-management.ts +470 -142
- package/examples/manifest/dental-practice-management/functions/chair-schedule.ts +23 -13
- package/examples/manifest/dental-practice-management/functions/complete-visit.ts +55 -32
- package/examples/manifest/dental-practice-management/functions/operatory-list.ts +23 -13
- package/examples/manifest/dental-practice-management/functions/patient-list.ts +23 -13
- package/examples/manifest/dental-practice-management/functions/treatment-plan-list.ts +23 -13
- package/examples/manifest/existing-manifest-mutations/existing-manifest-mutations.ts +23 -68
- package/examples/manifest/field-service-dispatch/field-service-dispatch.ts +375 -102
- package/examples/manifest/grant-program-management/grant-program-management.ts +419 -125
- package/examples/manifest/gym-membership-management/functions/check-in-desk.ts +23 -13
- package/examples/manifest/gym-membership-management/functions/member-list.ts +23 -13
- package/examples/manifest/gym-membership-management/functions/today-schedule.ts +23 -13
- package/examples/manifest/gym-membership-management/functions/trainer-list.ts +23 -13
- package/examples/manifest/gym-membership-management/gym-membership-management.ts +442 -92
- package/examples/manifest/procurement-approval-hub/procurement-approval-hub.ts +408 -122
- package/examples/manifest/simple-todo-app/functions/mark-done.ts +12 -16
- package/examples/manifest/simple-todo-app/functions/todo-list.ts +23 -13
- package/examples/manifest/simple-todo-app/simple-todo-app.ts +109 -40
- package/examples/manifest/todo-app-without-object-list-view/functions/todo-page.ts +193 -166
- package/examples/manifest/todo-app-without-object-list-view/todo-app-without-object-list-view.ts +47 -24
- package/package.json +13 -7
- package/resources/custom-objects/custom-objects.d.mts +0 -7
- package/resources/custom-objects/custom-objects.d.mts.map +1 -1
- package/resources/custom-objects/custom-objects.d.ts +0 -7
- package/resources/custom-objects/custom-objects.d.ts.map +1 -1
- package/resources/custom-objects/custom-objects.js.map +1 -1
- package/resources/custom-objects/custom-objects.mjs.map +1 -1
- package/resources/custom-objects/fields.d.mts +14 -128
- package/resources/custom-objects/fields.d.mts.map +1 -1
- package/resources/custom-objects/fields.d.ts +14 -128
- package/resources/custom-objects/fields.d.ts.map +1 -1
- package/src/resources/custom-objects/custom-objects.ts +0 -8
- package/src/resources/custom-objects/fields.ts +13 -191
- package/src/tsconfig.json +1 -1
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
- package/core/platform/custom-objects/category.d.mts +0 -125
- package/core/platform/custom-objects/category.d.mts.map +0 -1
- package/core/platform/custom-objects/category.d.ts +0 -125
- package/core/platform/custom-objects/category.d.ts.map +0 -1
- package/core/platform/custom-objects/category.js +0 -188
- package/core/platform/custom-objects/category.js.map +0 -1
- package/core/platform/custom-objects/category.mjs +0 -178
- package/core/platform/custom-objects/category.mjs.map +0 -1
- package/core/platform/custom-objects/definition.d.mts +0 -147
- package/core/platform/custom-objects/definition.d.mts.map +0 -1
- package/core/platform/custom-objects/definition.d.ts +0 -147
- package/core/platform/custom-objects/definition.d.ts.map +0 -1
- package/core/platform/custom-objects/definition.js +0 -200
- package/core/platform/custom-objects/definition.js.map +0 -1
- package/core/platform/custom-objects/definition.mjs +0 -190
- package/core/platform/custom-objects/definition.mjs.map +0 -1
- package/core/platform/custom-objects/fields.d.mts +0 -302
- package/core/platform/custom-objects/fields.d.mts.map +0 -1
- package/core/platform/custom-objects/fields.d.ts +0 -302
- package/core/platform/custom-objects/fields.d.ts.map +0 -1
- package/core/platform/custom-objects/fields.js +0 -369
- package/core/platform/custom-objects/fields.js.map +0 -1
- package/core/platform/custom-objects/fields.mjs +0 -347
- package/core/platform/custom-objects/fields.mjs.map +0 -1
- package/core/platform/custom-objects/function-runtime.d.mts +0 -42
- package/core/platform/custom-objects/function-runtime.d.mts.map +0 -1
- package/core/platform/custom-objects/function-runtime.d.ts +0 -42
- package/core/platform/custom-objects/function-runtime.d.ts.map +0 -1
- package/core/platform/custom-objects/function-runtime.js +0 -38
- package/core/platform/custom-objects/function-runtime.js.map +0 -1
- package/core/platform/custom-objects/function-runtime.mjs +0 -35
- package/core/platform/custom-objects/function-runtime.mjs.map +0 -1
- package/core/platform/custom-objects/lifecycle.d.mts +0 -83
- package/core/platform/custom-objects/lifecycle.d.mts.map +0 -1
- package/core/platform/custom-objects/lifecycle.d.ts +0 -83
- package/core/platform/custom-objects/lifecycle.d.ts.map +0 -1
- package/core/platform/custom-objects/lifecycle.js +0 -372
- package/core/platform/custom-objects/lifecycle.js.map +0 -1
- package/core/platform/custom-objects/lifecycle.mjs +0 -367
- package/core/platform/custom-objects/lifecycle.mjs.map +0 -1
- package/core/platform/custom-objects/manager.d.mts +0 -354
- package/core/platform/custom-objects/manager.d.mts.map +0 -1
- package/core/platform/custom-objects/manager.d.ts +0 -354
- package/core/platform/custom-objects/manager.d.ts.map +0 -1
- package/core/platform/custom-objects/manager.js +0 -646
- package/core/platform/custom-objects/manager.js.map +0 -1
- package/core/platform/custom-objects/manager.mjs +0 -637
- package/core/platform/custom-objects/manager.mjs.map +0 -1
- package/core/platform/custom-objects/provisioning.d.mts +0 -138
- package/core/platform/custom-objects/provisioning.d.mts.map +0 -1
- package/core/platform/custom-objects/provisioning.d.ts +0 -138
- package/core/platform/custom-objects/provisioning.d.ts.map +0 -1
- package/core/platform/custom-objects/provisioning.js +0 -455
- package/core/platform/custom-objects/provisioning.js.map +0 -1
- package/core/platform/custom-objects/provisioning.mjs +0 -447
- package/core/platform/custom-objects/provisioning.mjs.map +0 -1
- package/core/platform/custom-objects/rql.d.mts +0 -122
- package/core/platform/custom-objects/rql.d.mts.map +0 -1
- package/core/platform/custom-objects/rql.d.ts +0 -122
- package/core/platform/custom-objects/rql.d.ts.map +0 -1
- package/core/platform/custom-objects/rql.js +0 -225
- package/core/platform/custom-objects/rql.js.map +0 -1
- package/core/platform/custom-objects/rql.mjs +0 -222
- package/core/platform/custom-objects/rql.mjs.map +0 -1
- package/core/platform/custom-objects/schema-manager.d.mts +0 -203
- package/core/platform/custom-objects/schema-manager.d.mts.map +0 -1
- package/core/platform/custom-objects/schema-manager.d.ts +0 -203
- package/core/platform/custom-objects/schema-manager.d.ts.map +0 -1
- package/core/platform/custom-objects/schema-manager.js +0 -256
- package/core/platform/custom-objects/schema-manager.js.map +0 -1
- package/core/platform/custom-objects/schema-manager.mjs +0 -249
- package/core/platform/custom-objects/schema-manager.mjs.map +0 -1
- package/core/platform/custom-objects/typed-rql.d.mts +0 -157
- package/core/platform/custom-objects/typed-rql.d.mts.map +0 -1
- package/core/platform/custom-objects/typed-rql.d.ts +0 -157
- package/core/platform/custom-objects/typed-rql.d.ts.map +0 -1
- package/core/platform/custom-objects/typed-rql.js +0 -583
- package/core/platform/custom-objects/typed-rql.js.map +0 -1
- package/core/platform/custom-objects/typed-rql.mjs +0 -580
- package/core/platform/custom-objects/typed-rql.mjs.map +0 -1
- package/core/platform/custom-objects/types.d.mts +0 -549
- package/core/platform/custom-objects/types.d.mts.map +0 -1
- package/core/platform/custom-objects/types.d.ts +0 -549
- package/core/platform/custom-objects/types.d.ts.map +0 -1
- package/core/platform/custom-objects/types.js +0 -20
- package/core/platform/custom-objects/types.js.map +0 -1
- package/core/platform/custom-objects/types.mjs +0 -17
- package/core/platform/custom-objects/types.mjs.map +0 -1
- package/core/platform/custom-objects/validation.d.mts +0 -97
- package/core/platform/custom-objects/validation.d.mts.map +0 -1
- package/core/platform/custom-objects/validation.d.ts +0 -97
- package/core/platform/custom-objects/validation.d.ts.map +0 -1
- package/core/platform/custom-objects/validation.js +0 -477
- package/core/platform/custom-objects/validation.js.map +0 -1
- package/core/platform/custom-objects/validation.mjs +0 -465
- package/core/platform/custom-objects/validation.mjs.map +0 -1
- package/core/platform/custom-objects.d.mts +0 -67
- package/core/platform/custom-objects.d.mts.map +0 -1
- package/core/platform/custom-objects.d.ts +0 -67
- package/core/platform/custom-objects.d.ts.map +0 -1
- package/core/platform/custom-objects.js +0 -118
- package/core/platform/custom-objects.js.map +0 -1
- package/core/platform/custom-objects.mjs +0 -45
- package/core/platform/custom-objects.mjs.map +0 -1
- package/core/platform/manifest/custom-objects/action.d.mts +0 -58
- package/core/platform/manifest/custom-objects/action.d.mts.map +0 -1
- package/core/platform/manifest/custom-objects/action.d.ts +0 -58
- package/core/platform/manifest/custom-objects/action.d.ts.map +0 -1
- package/core/platform/manifest/custom-objects/action.js +0 -44
- package/core/platform/manifest/custom-objects/action.js.map +0 -1
- package/core/platform/manifest/custom-objects/action.mjs +0 -40
- package/core/platform/manifest/custom-objects/action.mjs.map +0 -1
- package/core/platform/manifest/custom-objects/conditions.d.mts +0 -240
- package/core/platform/manifest/custom-objects/conditions.d.mts.map +0 -1
- package/core/platform/manifest/custom-objects/conditions.d.ts +0 -240
- package/core/platform/manifest/custom-objects/conditions.d.ts.map +0 -1
- package/core/platform/manifest/custom-objects/conditions.js +0 -326
- package/core/platform/manifest/custom-objects/conditions.js.map +0 -1
- package/core/platform/manifest/custom-objects/conditions.mjs +0 -321
- package/core/platform/manifest/custom-objects/conditions.mjs.map +0 -1
- package/core/platform/manifest/custom-objects/existing.d.mts +0 -87
- package/core/platform/manifest/custom-objects/existing.d.mts.map +0 -1
- package/core/platform/manifest/custom-objects/existing.d.ts +0 -87
- package/core/platform/manifest/custom-objects/existing.d.ts.map +0 -1
- package/core/platform/manifest/custom-objects/existing.js +0 -113
- package/core/platform/manifest/custom-objects/existing.js.map +0 -1
- package/core/platform/manifest/custom-objects/existing.mjs +0 -109
- package/core/platform/manifest/custom-objects/existing.mjs.map +0 -1
- package/core/platform/manifest/custom-objects/field-resolution.d.mts +0 -48
- package/core/platform/manifest/custom-objects/field-resolution.d.mts.map +0 -1
- package/core/platform/manifest/custom-objects/field-resolution.d.ts +0 -48
- package/core/platform/manifest/custom-objects/field-resolution.d.ts.map +0 -1
- package/core/platform/manifest/custom-objects/field-resolution.js +0 -61
- package/core/platform/manifest/custom-objects/field-resolution.js.map +0 -1
- package/core/platform/manifest/custom-objects/field-resolution.mjs +0 -58
- package/core/platform/manifest/custom-objects/field-resolution.mjs.map +0 -1
- package/core/platform/manifest/custom-objects/function-file.d.mts +0 -87
- package/core/platform/manifest/custom-objects/function-file.d.mts.map +0 -1
- package/core/platform/manifest/custom-objects/function-file.d.ts +0 -87
- package/core/platform/manifest/custom-objects/function-file.d.ts.map +0 -1
- package/core/platform/manifest/custom-objects/function-file.js +0 -76
- package/core/platform/manifest/custom-objects/function-file.js.map +0 -1
- package/core/platform/manifest/custom-objects/function-file.mjs +0 -69
- package/core/platform/manifest/custom-objects/function-file.mjs.map +0 -1
- package/core/platform/manifest/custom-objects/list-view.d.mts +0 -65
- package/core/platform/manifest/custom-objects/list-view.d.mts.map +0 -1
- package/core/platform/manifest/custom-objects/list-view.d.ts +0 -65
- package/core/platform/manifest/custom-objects/list-view.d.ts.map +0 -1
- package/core/platform/manifest/custom-objects/list-view.js +0 -33
- package/core/platform/manifest/custom-objects/list-view.js.map +0 -1
- package/core/platform/manifest/custom-objects/list-view.mjs +0 -30
- package/core/platform/manifest/custom-objects/list-view.mjs.map +0 -1
- package/core/platform/manifest/custom-objects/object-list-page.d.mts +0 -43
- package/core/platform/manifest/custom-objects/object-list-page.d.mts.map +0 -1
- package/core/platform/manifest/custom-objects/object-list-page.d.ts +0 -43
- package/core/platform/manifest/custom-objects/object-list-page.d.ts.map +0 -1
- package/core/platform/manifest/custom-objects/object-list-page.js +0 -54
- package/core/platform/manifest/custom-objects/object-list-page.js.map +0 -1
- package/core/platform/manifest/custom-objects/object-list-page.mjs +0 -50
- package/core/platform/manifest/custom-objects/object-list-page.mjs.map +0 -1
- package/core/platform/manifest/custom-objects/page-layout.d.mts +0 -142
- package/core/platform/manifest/custom-objects/page-layout.d.mts.map +0 -1
- package/core/platform/manifest/custom-objects/page-layout.d.ts +0 -142
- package/core/platform/manifest/custom-objects/page-layout.d.ts.map +0 -1
- package/core/platform/manifest/custom-objects/page-layout.js +0 -184
- package/core/platform/manifest/custom-objects/page-layout.js.map +0 -1
- package/core/platform/manifest/custom-objects/page-layout.mjs +0 -180
- package/core/platform/manifest/custom-objects/page-layout.mjs.map +0 -1
- package/core/platform/manifest/custom-objects/register.d.mts +0 -87
- package/core/platform/manifest/custom-objects/register.d.mts.map +0 -1
- package/core/platform/manifest/custom-objects/register.d.ts +0 -87
- package/core/platform/manifest/custom-objects/register.d.ts.map +0 -1
- package/core/platform/manifest/custom-objects/register.js +0 -395
- package/core/platform/manifest/custom-objects/register.js.map +0 -1
- package/core/platform/manifest/custom-objects/register.mjs +0 -391
- package/core/platform/manifest/custom-objects/register.mjs.map +0 -1
- package/core/platform/manifest/custom-objects/rule.d.mts +0 -113
- package/core/platform/manifest/custom-objects/rule.d.mts.map +0 -1
- package/core/platform/manifest/custom-objects/rule.d.ts +0 -113
- package/core/platform/manifest/custom-objects/rule.d.ts.map +0 -1
- package/core/platform/manifest/custom-objects/rule.js +0 -49
- package/core/platform/manifest/custom-objects/rule.js.map +0 -1
- package/core/platform/manifest/custom-objects/rule.mjs +0 -45
- package/core/platform/manifest/custom-objects/rule.mjs.map +0 -1
- package/core/platform/manifest/custom-objects/sdui-page.d.mts +0 -214
- package/core/platform/manifest/custom-objects/sdui-page.d.mts.map +0 -1
- package/core/platform/manifest/custom-objects/sdui-page.d.ts +0 -214
- package/core/platform/manifest/custom-objects/sdui-page.d.ts.map +0 -1
- package/core/platform/manifest/custom-objects/sdui-page.js +0 -194
- package/core/platform/manifest/custom-objects/sdui-page.js.map +0 -1
- package/core/platform/manifest/custom-objects/sdui-page.mjs +0 -182
- package/core/platform/manifest/custom-objects/sdui-page.mjs.map +0 -1
- package/core/platform/manifest/custom-objects/typed-condition.d.mts +0 -28
- package/core/platform/manifest/custom-objects/typed-condition.d.mts.map +0 -1
- package/core/platform/manifest/custom-objects/typed-condition.d.ts +0 -28
- package/core/platform/manifest/custom-objects/typed-condition.d.ts.map +0 -1
- package/core/platform/manifest/custom-objects/typed-condition.js +0 -434
- package/core/platform/manifest/custom-objects/typed-condition.js.map +0 -1
- package/core/platform/manifest/custom-objects/typed-condition.mjs +0 -431
- package/core/platform/manifest/custom-objects/typed-condition.mjs.map +0 -1
- package/core/platform/manifest/custom-objects/types.d.mts +0 -29
- package/core/platform/manifest/custom-objects/types.d.mts.map +0 -1
- package/core/platform/manifest/custom-objects/types.d.ts +0 -29
- package/core/platform/manifest/custom-objects/types.d.ts.map +0 -1
- package/core/platform/manifest/custom-objects/types.js +0 -3
- package/core/platform/manifest/custom-objects/types.js.map +0 -1
- package/core/platform/manifest/custom-objects/types.mjs +0 -2
- package/core/platform/manifest/custom-objects/types.mjs.map +0 -1
- package/core/platform/manifest/custom-objects/validation.d.mts +0 -44
- package/core/platform/manifest/custom-objects/validation.d.mts.map +0 -1
- package/core/platform/manifest/custom-objects/validation.d.ts +0 -44
- package/core/platform/manifest/custom-objects/validation.d.ts.map +0 -1
- package/core/platform/manifest/custom-objects/validation.js +0 -30
- package/core/platform/manifest/custom-objects/validation.js.map +0 -1
- package/core/platform/manifest/custom-objects/validation.mjs +0 -27
- package/core/platform/manifest/custom-objects/validation.mjs.map +0 -1
- package/core/platform/manifest/custom-objects/workflow.d.mts +0 -47
- package/core/platform/manifest/custom-objects/workflow.d.mts.map +0 -1
- package/core/platform/manifest/custom-objects/workflow.d.ts +0 -47
- package/core/platform/manifest/custom-objects/workflow.d.ts.map +0 -1
- package/core/platform/manifest/custom-objects/workflow.js +0 -38
- package/core/platform/manifest/custom-objects/workflow.js.map +0 -1
- package/core/platform/manifest/custom-objects/workflow.mjs +0 -34
- package/core/platform/manifest/custom-objects/workflow.mjs.map +0 -1
- package/core/platform/manifest/custom-objects.d.mts +0 -85
- package/core/platform/manifest/custom-objects.d.mts.map +0 -1
- package/core/platform/manifest/custom-objects.d.ts +0 -85
- package/core/platform/manifest/custom-objects.d.ts.map +0 -1
- package/core/platform/manifest/custom-objects.js +0 -84
- package/core/platform/manifest/custom-objects.js.map +0 -1
- package/core/platform/manifest/custom-objects.mjs +0 -55
- package/core/platform/manifest/custom-objects.mjs.map +0 -1
- package/examples/manifest/custom-object-creation-workflow/functions/intake-request-created.ts +0 -20
- package/examples/manifest/custom-object-creation-workflow/schema.ts +0 -29
- package/examples/manifest/dental-practice-management/schema.ts +0 -298
- package/examples/manifest/field-service-dispatch/schema.ts +0 -248
- package/examples/manifest/grant-program-management/schema.ts +0 -269
- package/examples/manifest/gym-membership-management/schema.ts +0 -266
- package/examples/manifest/procurement-approval-hub/functions/route-purchase-request.ts +0 -20
- package/examples/manifest/procurement-approval-hub/schema.ts +0 -256
- package/examples/manifest/simple-todo-app/schema.ts +0 -60
- package/examples/manifest/todo-app-without-object-list-view/schema.ts +0 -28
- package/src/core/platform/README.md +0 -20
- package/src/core/platform/custom-objects/category.ts +0 -294
- package/src/core/platform/custom-objects/definition.ts +0 -373
- package/src/core/platform/custom-objects/fields.ts +0 -653
- package/src/core/platform/custom-objects/function-runtime.ts +0 -76
- package/src/core/platform/custom-objects/lifecycle.ts +0 -557
- package/src/core/platform/custom-objects/manager.ts +0 -959
- package/src/core/platform/custom-objects/provisioning.ts +0 -672
- package/src/core/platform/custom-objects/rql.ts +0 -375
- package/src/core/platform/custom-objects/schema-manager.ts +0 -351
- package/src/core/platform/custom-objects/typed-rql.ts +0 -1273
- package/src/core/platform/custom-objects/types.ts +0 -753
- package/src/core/platform/custom-objects/validation.ts +0 -573
- package/src/core/platform/custom-objects.ts +0 -269
- package/src/core/platform/manifest/README.md +0 -26
- package/src/core/platform/manifest/custom-objects/action.ts +0 -87
- package/src/core/platform/manifest/custom-objects/conditions.ts +0 -762
- package/src/core/platform/manifest/custom-objects/existing.ts +0 -221
- package/src/core/platform/manifest/custom-objects/field-resolution.ts +0 -116
- package/src/core/platform/manifest/custom-objects/function-file.ts +0 -149
- package/src/core/platform/manifest/custom-objects/list-view.ts +0 -95
- package/src/core/platform/manifest/custom-objects/object-list-page.ts +0 -87
- package/src/core/platform/manifest/custom-objects/page-layout.ts +0 -380
- package/src/core/platform/manifest/custom-objects/register.ts +0 -555
- package/src/core/platform/manifest/custom-objects/rule.ts +0 -192
- package/src/core/platform/manifest/custom-objects/sdui-page.ts +0 -515
- package/src/core/platform/manifest/custom-objects/typed-condition.ts +0 -617
- package/src/core/platform/manifest/custom-objects/types.ts +0 -92
- package/src/core/platform/manifest/custom-objects/validation.ts +0 -70
- package/src/core/platform/manifest/custom-objects/workflow.ts +0 -71
- package/src/core/platform/manifest/custom-objects.ts +0 -203
- package/src/pebble-sdui-web-custom-apps-shim.d.ts +0 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rippling/rippling-sdk",
|
|
3
|
-
"version": "0.2.0-alpha.
|
|
3
|
+
"version": "0.2.0-alpha.85",
|
|
4
4
|
"description": "The official TypeScript library for the Rippling SDK API",
|
|
5
5
|
"author": "Rippling SDK <no-reply@rippling.com>",
|
|
6
6
|
"types": "./index.d.ts",
|
|
@@ -10,8 +10,7 @@
|
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"packageManager": "yarn@1.22.22",
|
|
12
12
|
"files": [
|
|
13
|
-
"**/*"
|
|
14
|
-
"!docs/**"
|
|
13
|
+
"**/*"
|
|
15
14
|
],
|
|
16
15
|
"private": false,
|
|
17
16
|
"publishConfig": {
|
|
@@ -21,14 +20,11 @@
|
|
|
21
20
|
"test": "./scripts/test",
|
|
22
21
|
"build": "./scripts/build",
|
|
23
22
|
"format": "./scripts/format",
|
|
24
|
-
"tsn": "ts-node
|
|
23
|
+
"tsn": "ts-node -r tsconfig-paths/register",
|
|
25
24
|
"lint": "./scripts/lint",
|
|
26
25
|
"fix": "./scripts/format"
|
|
27
26
|
},
|
|
28
27
|
"dependencies": {},
|
|
29
|
-
"peerDependencies": {
|
|
30
|
-
"@rippling/pebble-sdui-web": "^0.6.3"
|
|
31
|
-
},
|
|
32
28
|
"overrides": {
|
|
33
29
|
"minimatch": "^9.0.5"
|
|
34
30
|
},
|
|
@@ -89,6 +85,16 @@
|
|
|
89
85
|
"./error.mjs": {
|
|
90
86
|
"default": "./error.mjs"
|
|
91
87
|
},
|
|
88
|
+
"./examples/*.mjs": {
|
|
89
|
+
"default": "./examples/*.mjs"
|
|
90
|
+
},
|
|
91
|
+
"./examples/*.js": {
|
|
92
|
+
"default": "./examples/*.js"
|
|
93
|
+
},
|
|
94
|
+
"./examples/*": {
|
|
95
|
+
"import": "./examples/*.mjs",
|
|
96
|
+
"require": "./examples/*.js"
|
|
97
|
+
},
|
|
92
98
|
"./functions": {
|
|
93
99
|
"import": "./functions.mjs",
|
|
94
100
|
"require": "./functions.js"
|
|
@@ -36,7 +36,6 @@ export declare class CustomObjects extends APIResource {
|
|
|
36
36
|
delete(customObjectAPIName: string, options?: RequestOptions): APIPromise<void>;
|
|
37
37
|
}
|
|
38
38
|
export type CustomObjectsPageCursorURL = PageCursorURL<CustomObject>;
|
|
39
|
-
/** Public custom-object DTO returned by the REST API. */
|
|
40
39
|
export interface CustomObject {
|
|
41
40
|
/**
|
|
42
41
|
* Identifier field
|
|
@@ -87,7 +86,6 @@ export interface CustomObject {
|
|
|
87
86
|
*/
|
|
88
87
|
owner_id?: string;
|
|
89
88
|
}
|
|
90
|
-
/** Request payload accepted by `client.customObjects.create(...)`. */
|
|
91
89
|
export interface CustomObjectCreateParams {
|
|
92
90
|
/**
|
|
93
91
|
* The category that this custom object belongs to.
|
|
@@ -102,7 +100,6 @@ export interface CustomObjectCreateParams {
|
|
|
102
100
|
*/
|
|
103
101
|
name?: string;
|
|
104
102
|
}
|
|
105
|
-
/** Request payload accepted by `client.customObjects.update(...)`. */
|
|
106
103
|
export interface CustomObjectUpdateParams {
|
|
107
104
|
/**
|
|
108
105
|
* The category that this custom object belongs to.
|
|
@@ -112,10 +109,6 @@ export interface CustomObjectUpdateParams {
|
|
|
112
109
|
* A description of the custom object.
|
|
113
110
|
*/
|
|
114
111
|
description?: string;
|
|
115
|
-
/**
|
|
116
|
-
* Whether to record the history of the custom object.
|
|
117
|
-
*/
|
|
118
|
-
enable_history?: boolean;
|
|
119
112
|
/**
|
|
120
113
|
* The name of the custom object.
|
|
121
114
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"custom-objects.d.mts","sourceRoot":"","sources":["../../src/resources/custom-objects/custom-objects.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,gCAA4B;AAClD,OAAO,KAAK,SAAS,qBAAiB;AACtC,OAAO,EACL,iBAAiB,EACjB,+BAA+B,EAC/B,iBAAiB,EACjB,iBAAiB,EACjB,MAAM,EACP,qBAAiB;AAClB,OAAO,KAAK,UAAU,sBAAkB;AACxC,OAAO,EACL,mBAAmB,EACnB,iCAAiC,EACjC,sBAAsB,EACtB,wBAAwB,EACxB,sBAAsB,EACtB,sBAAsB,EACtB,wBAAwB,EACxB,kBAAkB,EAClB,oBAAoB,EACpB,iBAAiB,EACjB,mBAAmB,EACnB,kBAAkB,EAClB,oBAAoB,EACpB,OAAO,EACR,sBAAkB;AACnB,OAAO,EAAE,UAAU,EAAE,mCAA+B;AACpD,OAAO,EAAE,aAAa,EAAE,WAAW,EAAE,kCAA8B;AAEnE,OAAO,EAAE,cAAc,EAAE,2CAAuC;AAGhE;;GAEG;AACH,qBAAa,aAAc,SAAQ,WAAW;IAC5C,MAAM,EAAE,SAAS,CAAC,MAAM,CAAsC;IAC9D,OAAO,EAAE,UAAU,CAAC,OAAO,CAAwC;IAEnE;;;;OAIG;IACH,IAAI,CAAC,OAAO,CAAC,EAAE,cAAc,GAAG,WAAW,CAAC,0BAA0B,EAAE,YAAY,CAAC;IAIrF;;OAEG;IACH,MAAM,CACJ,IAAI,GAAE,wBAAwB,GAAG,IAAI,GAAG,SAAc,EACtD,OAAO,CAAC,EAAE,cAAc,GACvB,UAAU,CAAC,YAAY,CAAC;IAI3B;;OAEG;IACH,QAAQ,CAAC,mBAAmB,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,YAAY,CAAC;IAIzF;;OAEG;IACH,MAAM,CACJ,mBAAmB,EAAE,MAAM,EAC3B,IAAI,GAAE,wBAAwB,GAAG,IAAI,GAAG,SAAc,EACtD,OAAO,CAAC,EAAE,cAAc,GACvB,UAAU,CAAC,YAAY,CAAC;IAI3B;;OAEG;IACH,MAAM,CAAC,mBAAmB,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,IAAI,CAAC;CAMhF;AAED,MAAM,MAAM,0BAA0B,GAAG,aAAa,CAAC,YAAY,CAAC,CAAC;AAErE,
|
|
1
|
+
{"version":3,"file":"custom-objects.d.mts","sourceRoot":"","sources":["../../src/resources/custom-objects/custom-objects.ts"],"names":[],"mappings":"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"}
|
|
@@ -36,7 +36,6 @@ export declare class CustomObjects extends APIResource {
|
|
|
36
36
|
delete(customObjectAPIName: string, options?: RequestOptions): APIPromise<void>;
|
|
37
37
|
}
|
|
38
38
|
export type CustomObjectsPageCursorURL = PageCursorURL<CustomObject>;
|
|
39
|
-
/** Public custom-object DTO returned by the REST API. */
|
|
40
39
|
export interface CustomObject {
|
|
41
40
|
/**
|
|
42
41
|
* Identifier field
|
|
@@ -87,7 +86,6 @@ export interface CustomObject {
|
|
|
87
86
|
*/
|
|
88
87
|
owner_id?: string;
|
|
89
88
|
}
|
|
90
|
-
/** Request payload accepted by `client.customObjects.create(...)`. */
|
|
91
89
|
export interface CustomObjectCreateParams {
|
|
92
90
|
/**
|
|
93
91
|
* The category that this custom object belongs to.
|
|
@@ -102,7 +100,6 @@ export interface CustomObjectCreateParams {
|
|
|
102
100
|
*/
|
|
103
101
|
name?: string;
|
|
104
102
|
}
|
|
105
|
-
/** Request payload accepted by `client.customObjects.update(...)`. */
|
|
106
103
|
export interface CustomObjectUpdateParams {
|
|
107
104
|
/**
|
|
108
105
|
* The category that this custom object belongs to.
|
|
@@ -112,10 +109,6 @@ export interface CustomObjectUpdateParams {
|
|
|
112
109
|
* A description of the custom object.
|
|
113
110
|
*/
|
|
114
111
|
description?: string;
|
|
115
|
-
/**
|
|
116
|
-
* Whether to record the history of the custom object.
|
|
117
|
-
*/
|
|
118
|
-
enable_history?: boolean;
|
|
119
112
|
/**
|
|
120
113
|
* The name of the custom object.
|
|
121
114
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"custom-objects.d.ts","sourceRoot":"","sources":["../../src/resources/custom-objects/custom-objects.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,+BAA4B;AAClD,OAAO,KAAK,SAAS,oBAAiB;AACtC,OAAO,EACL,iBAAiB,EACjB,+BAA+B,EAC/B,iBAAiB,EACjB,iBAAiB,EACjB,MAAM,EACP,oBAAiB;AAClB,OAAO,KAAK,UAAU,qBAAkB;AACxC,OAAO,EACL,mBAAmB,EACnB,iCAAiC,EACjC,sBAAsB,EACtB,wBAAwB,EACxB,sBAAsB,EACtB,sBAAsB,EACtB,wBAAwB,EACxB,kBAAkB,EAClB,oBAAoB,EACpB,iBAAiB,EACjB,mBAAmB,EACnB,kBAAkB,EAClB,oBAAoB,EACpB,OAAO,EACR,qBAAkB;AACnB,OAAO,EAAE,UAAU,EAAE,kCAA+B;AACpD,OAAO,EAAE,aAAa,EAAE,WAAW,EAAE,iCAA8B;AAEnE,OAAO,EAAE,cAAc,EAAE,0CAAuC;AAGhE;;GAEG;AACH,qBAAa,aAAc,SAAQ,WAAW;IAC5C,MAAM,EAAE,SAAS,CAAC,MAAM,CAAsC;IAC9D,OAAO,EAAE,UAAU,CAAC,OAAO,CAAwC;IAEnE;;;;OAIG;IACH,IAAI,CAAC,OAAO,CAAC,EAAE,cAAc,GAAG,WAAW,CAAC,0BAA0B,EAAE,YAAY,CAAC;IAIrF;;OAEG;IACH,MAAM,CACJ,IAAI,GAAE,wBAAwB,GAAG,IAAI,GAAG,SAAc,EACtD,OAAO,CAAC,EAAE,cAAc,GACvB,UAAU,CAAC,YAAY,CAAC;IAI3B;;OAEG;IACH,QAAQ,CAAC,mBAAmB,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,YAAY,CAAC;IAIzF;;OAEG;IACH,MAAM,CACJ,mBAAmB,EAAE,MAAM,EAC3B,IAAI,GAAE,wBAAwB,GAAG,IAAI,GAAG,SAAc,EACtD,OAAO,CAAC,EAAE,cAAc,GACvB,UAAU,CAAC,YAAY,CAAC;IAI3B;;OAEG;IACH,MAAM,CAAC,mBAAmB,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,IAAI,CAAC;CAMhF;AAED,MAAM,MAAM,0BAA0B,GAAG,aAAa,CAAC,YAAY,CAAC,CAAC;AAErE,
|
|
1
|
+
{"version":3,"file":"custom-objects.d.ts","sourceRoot":"","sources":["../../src/resources/custom-objects/custom-objects.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,+BAA4B;AAClD,OAAO,KAAK,SAAS,oBAAiB;AACtC,OAAO,EACL,iBAAiB,EACjB,+BAA+B,EAC/B,iBAAiB,EACjB,iBAAiB,EACjB,MAAM,EACP,oBAAiB;AAClB,OAAO,KAAK,UAAU,qBAAkB;AACxC,OAAO,EACL,mBAAmB,EACnB,iCAAiC,EACjC,sBAAsB,EACtB,wBAAwB,EACxB,sBAAsB,EACtB,sBAAsB,EACtB,wBAAwB,EACxB,kBAAkB,EAClB,oBAAoB,EACpB,iBAAiB,EACjB,mBAAmB,EACnB,kBAAkB,EAClB,oBAAoB,EACpB,OAAO,EACR,qBAAkB;AACnB,OAAO,EAAE,UAAU,EAAE,kCAA+B;AACpD,OAAO,EAAE,aAAa,EAAE,WAAW,EAAE,iCAA8B;AAEnE,OAAO,EAAE,cAAc,EAAE,0CAAuC;AAGhE;;GAEG;AACH,qBAAa,aAAc,SAAQ,WAAW;IAC5C,MAAM,EAAE,SAAS,CAAC,MAAM,CAAsC;IAC9D,OAAO,EAAE,UAAU,CAAC,OAAO,CAAwC;IAEnE;;;;OAIG;IACH,IAAI,CAAC,OAAO,CAAC,EAAE,cAAc,GAAG,WAAW,CAAC,0BAA0B,EAAE,YAAY,CAAC;IAIrF;;OAEG;IACH,MAAM,CACJ,IAAI,GAAE,wBAAwB,GAAG,IAAI,GAAG,SAAc,EACtD,OAAO,CAAC,EAAE,cAAc,GACvB,UAAU,CAAC,YAAY,CAAC;IAI3B;;OAEG;IACH,QAAQ,CAAC,mBAAmB,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,YAAY,CAAC;IAIzF;;OAEG;IACH,MAAM,CACJ,mBAAmB,EAAE,MAAM,EAC3B,IAAI,GAAE,wBAAwB,GAAG,IAAI,GAAG,SAAc,EACtD,OAAO,CAAC,EAAE,cAAc,GACvB,UAAU,CAAC,YAAY,CAAC;IAI3B;;OAEG;IACH,MAAM,CAAC,mBAAmB,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,IAAI,CAAC;CAMhF;AAED,MAAM,MAAM,0BAA0B,GAAG,aAAa,CAAC,YAAY,CAAC,CAAC;AAErE,MAAM,WAAW,YAAY;IAC3B;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IAEX;;OAEG;IACH,WAAW,EAAE,MAAM,CAAC;IAEpB;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,cAAc,EAAE,OAAO,CAAC;IAExB;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IAEb;;OAEG;IACH,YAAY,EAAE,MAAM,CAAC;IAErB;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAElB;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;OAEG;IACH,0BAA0B,CAAC,EAAE,MAAM,CAAC;IAEpC;;OAEG;IACH,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAE5B;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,MAAM,WAAW,wBAAwB;IACvC;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAElB;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED,MAAM,WAAW,wBAAwB;IACvC;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAElB;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IAEd;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB;AAKD,MAAM,CAAC,OAAO,WAAW,aAAa,CAAC;IACrC,OAAO,EACL,KAAK,YAAY,IAAI,YAAY,EACjC,KAAK,0BAA0B,IAAI,0BAA0B,EAC7D,KAAK,wBAAwB,IAAI,wBAAwB,EACzD,KAAK,wBAAwB,IAAI,wBAAwB,GAC1D,CAAC;IAEF,OAAO,EACL,MAAM,IAAI,MAAM,EAChB,KAAK,iBAAiB,IAAI,iBAAiB,EAC3C,KAAK,+BAA+B,IAAI,+BAA+B,EACvE,KAAK,iBAAiB,IAAI,iBAAiB,EAC3C,KAAK,iBAAiB,IAAI,iBAAiB,GAC5C,CAAC;IAEF,OAAO,EACL,OAAO,IAAI,OAAO,EAClB,KAAK,mBAAmB,IAAI,mBAAmB,EAC/C,KAAK,oBAAoB,IAAI,oBAAoB,EACjD,KAAK,mBAAmB,IAAI,mBAAmB,EAC/C,KAAK,oBAAoB,IAAI,oBAAoB,EACjD,KAAK,wBAAwB,IAAI,wBAAwB,EACzD,KAAK,wBAAwB,IAAI,wBAAwB,EACzD,KAAK,iCAAiC,IAAI,iCAAiC,EAC3E,KAAK,kBAAkB,IAAI,kBAAkB,EAC7C,KAAK,iBAAiB,IAAI,iBAAiB,EAC3C,KAAK,kBAAkB,IAAI,kBAAkB,EAC7C,KAAK,sBAAsB,IAAI,sBAAsB,EACrD,KAAK,sBAAsB,IAAI,sBAAsB,EACrD,KAAK,sBAAsB,IAAI,sBAAsB,GACtD,CAAC;CACH"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"custom-objects.js","sourceRoot":"","sources":["../../src/resources/custom-objects/custom-objects.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;;AAEtF,qDAAkD;AAClD,+DAAsC;AACtC,wCAMkB;AAClB,iEAAwC;AACxC,0CAemB;AAEnB,yDAAmE;AACnE,uDAAsD;AAEtD,uDAAiD;AAEjD;;GAEG;AACH,MAAa,aAAc,SAAQ,sBAAW;IAA9C;;QACE,WAAM,GAAqB,IAAI,SAAS,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAC9D,YAAO,GAAuB,IAAI,UAAU,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;IAgDrE,CAAC;IA9CC;;;;OAIG;IACH,IAAI,CAAC,OAAwB;QAC3B,OAAO,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,kBAAkB,EAAE,CAAA,0BAA2B,CAAA,EAAE,OAAO,CAAC,CAAC;IAC3F,CAAC;IAED;;OAEG;IACH,MAAM,CACJ,OAAoD,EAAE,EACtD,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,kBAAkB,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACrE,CAAC;IAED;;OAEG;IACH,QAAQ,CAAC,mBAA2B,EAAE,OAAwB;QAC5D,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,IAAA,WAAI,EAAA,mBAAmB,mBAAmB,GAAG,EAAE,OAAO,CAAC,CAAC;IAClF,CAAC;IAED;;OAEG;IACH,MAAM,CACJ,mBAA2B,EAC3B,OAAoD,EAAE,EACtD,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,IAAA,WAAI,EAAA,mBAAmB,mBAAmB,GAAG,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACjG,CAAC;IAED;;OAEG;IACH,MAAM,CAAC,mBAA2B,EAAE,OAAwB;QAC1D,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,IAAA,WAAI,EAAA,mBAAmB,mBAAmB,GAAG,EAAE;YACxE,GAAG,OAAO;YACV,OAAO,EAAE,IAAA,sBAAY,EAAC,CAAC,EAAE,MAAM,EAAE,KAAK,EAAE,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;SAC7D,CAAC,CAAC;IACL,CAAC;CACF;AAlDD,sCAkDC;
|
|
1
|
+
{"version":3,"file":"custom-objects.js","sourceRoot":"","sources":["../../src/resources/custom-objects/custom-objects.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;;AAEtF,qDAAkD;AAClD,+DAAsC;AACtC,wCAMkB;AAClB,iEAAwC;AACxC,0CAemB;AAEnB,yDAAmE;AACnE,uDAAsD;AAEtD,uDAAiD;AAEjD;;GAEG;AACH,MAAa,aAAc,SAAQ,sBAAW;IAA9C;;QACE,WAAM,GAAqB,IAAI,SAAS,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAC9D,YAAO,GAAuB,IAAI,UAAU,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;IAgDrE,CAAC;IA9CC;;;;OAIG;IACH,IAAI,CAAC,OAAwB;QAC3B,OAAO,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,kBAAkB,EAAE,CAAA,0BAA2B,CAAA,EAAE,OAAO,CAAC,CAAC;IAC3F,CAAC;IAED;;OAEG;IACH,MAAM,CACJ,OAAoD,EAAE,EACtD,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,kBAAkB,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACrE,CAAC;IAED;;OAEG;IACH,QAAQ,CAAC,mBAA2B,EAAE,OAAwB;QAC5D,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,IAAA,WAAI,EAAA,mBAAmB,mBAAmB,GAAG,EAAE,OAAO,CAAC,CAAC;IAClF,CAAC;IAED;;OAEG;IACH,MAAM,CACJ,mBAA2B,EAC3B,OAAoD,EAAE,EACtD,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,IAAA,WAAI,EAAA,mBAAmB,mBAAmB,GAAG,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACjG,CAAC;IAED;;OAEG;IACH,MAAM,CAAC,mBAA2B,EAAE,OAAwB;QAC1D,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,IAAA,WAAI,EAAA,mBAAmB,mBAAmB,GAAG,EAAE;YACxE,GAAG,OAAO;YACV,OAAO,EAAE,IAAA,sBAAY,EAAC,CAAC,EAAE,MAAM,EAAE,KAAK,EAAE,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;SAC7D,CAAC,CAAC;IACL,CAAC;CACF;AAlDD,sCAkDC;AA8GD,aAAa,CAAC,MAAM,GAAG,eAAM,CAAC;AAC9B,aAAa,CAAC,OAAO,GAAG,iBAAO,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"custom-objects.mjs","sourceRoot":"","sources":["../../src/resources/custom-objects/custom-objects.ts"],"names":[],"mappings":"AAAA,sFAAsF;AAEtF,OAAO,EAAE,WAAW,EAAE,gCAA4B;AAClD,OAAO,KAAK,SAAS,qBAAiB;AACtC,OAAO,EAKL,MAAM,GACP,qBAAiB;AAClB,OAAO,KAAK,UAAU,sBAAkB;AACxC,OAAO,EAcL,OAAO,GACR,sBAAkB;AAEnB,OAAO,EAAE,aAAa,EAAe,kCAA8B;AACnE,OAAO,EAAE,YAAY,EAAE,mCAA+B;AAEtD,OAAO,EAAE,IAAI,EAAE,sCAAkC;AAEjD;;GAEG;AACH,MAAM,OAAO,aAAc,SAAQ,WAAW;IAA9C;;QACE,WAAM,GAAqB,IAAI,SAAS,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAC9D,YAAO,GAAuB,IAAI,UAAU,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;IAgDrE,CAAC;IA9CC;;;;OAIG;IACH,IAAI,CAAC,OAAwB;QAC3B,OAAO,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,kBAAkB,EAAE,CAAA,aAA2B,CAAA,EAAE,OAAO,CAAC,CAAC;IAC3F,CAAC;IAED;;OAEG;IACH,MAAM,CACJ,OAAoD,EAAE,EACtD,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,kBAAkB,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACrE,CAAC;IAED;;OAEG;IACH,QAAQ,CAAC,mBAA2B,EAAE,OAAwB;QAC5D,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,CAAA,mBAAmB,mBAAmB,GAAG,EAAE,OAAO,CAAC,CAAC;IAClF,CAAC;IAED;;OAEG;IACH,MAAM,CACJ,mBAA2B,EAC3B,OAAoD,EAAE,EACtD,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,CAAA,mBAAmB,mBAAmB,GAAG,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACjG,CAAC;IAED;;OAEG;IACH,MAAM,CAAC,mBAA2B,EAAE,OAAwB;QAC1D,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,IAAI,CAAA,mBAAmB,mBAAmB,GAAG,EAAE;YACxE,GAAG,OAAO;YACV,OAAO,EAAE,YAAY,CAAC,CAAC,EAAE,MAAM,EAAE,KAAK,EAAE,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;SAC7D,CAAC,CAAC;IACL,CAAC;CACF;
|
|
1
|
+
{"version":3,"file":"custom-objects.mjs","sourceRoot":"","sources":["../../src/resources/custom-objects/custom-objects.ts"],"names":[],"mappings":"AAAA,sFAAsF;AAEtF,OAAO,EAAE,WAAW,EAAE,gCAA4B;AAClD,OAAO,KAAK,SAAS,qBAAiB;AACtC,OAAO,EAKL,MAAM,GACP,qBAAiB;AAClB,OAAO,KAAK,UAAU,sBAAkB;AACxC,OAAO,EAcL,OAAO,GACR,sBAAkB;AAEnB,OAAO,EAAE,aAAa,EAAe,kCAA8B;AACnE,OAAO,EAAE,YAAY,EAAE,mCAA+B;AAEtD,OAAO,EAAE,IAAI,EAAE,sCAAkC;AAEjD;;GAEG;AACH,MAAM,OAAO,aAAc,SAAQ,WAAW;IAA9C;;QACE,WAAM,GAAqB,IAAI,SAAS,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAC9D,YAAO,GAAuB,IAAI,UAAU,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;IAgDrE,CAAC;IA9CC;;;;OAIG;IACH,IAAI,CAAC,OAAwB;QAC3B,OAAO,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,kBAAkB,EAAE,CAAA,aAA2B,CAAA,EAAE,OAAO,CAAC,CAAC;IAC3F,CAAC;IAED;;OAEG;IACH,MAAM,CACJ,OAAoD,EAAE,EACtD,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,kBAAkB,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACrE,CAAC;IAED;;OAEG;IACH,QAAQ,CAAC,mBAA2B,EAAE,OAAwB;QAC5D,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,CAAA,mBAAmB,mBAAmB,GAAG,EAAE,OAAO,CAAC,CAAC;IAClF,CAAC;IAED;;OAEG;IACH,MAAM,CACJ,mBAA2B,EAC3B,OAAoD,EAAE,EACtD,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,CAAA,mBAAmB,mBAAmB,GAAG,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACjG,CAAC;IAED;;OAEG;IACH,MAAM,CAAC,mBAA2B,EAAE,OAAwB;QAC1D,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,IAAI,CAAA,mBAAmB,mBAAmB,GAAG,EAAE;YACxE,GAAG,OAAO;YACV,OAAO,EAAE,YAAY,CAAC,CAAC,EAAE,MAAM,EAAE,KAAK,EAAE,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;SAC7D,CAAC,CAAC;IACL,CAAC;CACF;AA8GD,aAAa,CAAC,MAAM,GAAG,MAAM,CAAC;AAC9B,aAAa,CAAC,OAAO,GAAG,OAAO,CAAC"}
|
|
@@ -30,120 +30,6 @@ export declare class Fields extends APIResource {
|
|
|
30
30
|
delete(customObjectAPIName: string, fieldAPIName: string, options?: RequestOptions): APIPromise<void>;
|
|
31
31
|
}
|
|
32
32
|
export type CustomObjectFieldsPageCursorURL = PageCursorURL<CustomObjectField>;
|
|
33
|
-
/** Supported wire-level field-type identifiers for custom-object fields. */
|
|
34
|
-
export type CustomObjectFieldType = 'TEXT' | 'LONG_TEXT' | 'EMAIL' | 'URL' | 'PHONE_NUMBER' | 'NUMBER' | 'CURRENCY' | 'PERCENTAGE' | 'DATE' | 'DATETIME' | 'TIME' | 'SELECT' | 'RADIO' | 'BOOLEAN' | 'FILE' | 'OG_REFERENCE_FIELD';
|
|
35
|
-
/** Structured `data_type` payload for text fields. */
|
|
36
|
-
export interface TextCustomObjectFieldDataType {
|
|
37
|
-
field_type: 'TEXT';
|
|
38
|
-
max_length?: number;
|
|
39
|
-
}
|
|
40
|
-
/** Structured `data_type` payload for long-text fields. */
|
|
41
|
-
export interface LongTextCustomObjectFieldDataType {
|
|
42
|
-
field_type: 'LONG_TEXT';
|
|
43
|
-
max_length?: number;
|
|
44
|
-
}
|
|
45
|
-
/** Structured `data_type` payload for email fields. */
|
|
46
|
-
export interface EmailCustomObjectFieldDataType {
|
|
47
|
-
field_type: 'EMAIL';
|
|
48
|
-
}
|
|
49
|
-
/** Structured `data_type` payload for URL fields. */
|
|
50
|
-
export interface URLCustomObjectFieldDataType {
|
|
51
|
-
field_type: 'URL';
|
|
52
|
-
}
|
|
53
|
-
/** Structured `data_type` payload for phone-number fields. */
|
|
54
|
-
export interface PhoneNumberCustomObjectFieldDataType {
|
|
55
|
-
field_type: 'PHONE_NUMBER';
|
|
56
|
-
}
|
|
57
|
-
/** Structured `data_type` payload for numeric fields. */
|
|
58
|
-
export interface NumberCustomObjectFieldDataType {
|
|
59
|
-
field_type: 'NUMBER';
|
|
60
|
-
num_of_decimal_places?: number;
|
|
61
|
-
}
|
|
62
|
-
/** Structured `data_type` payload for currency fields. */
|
|
63
|
-
export interface CurrencyCustomObjectFieldDataType {
|
|
64
|
-
field_type: 'CURRENCY';
|
|
65
|
-
currency?: string;
|
|
66
|
-
num_of_decimal_places?: number;
|
|
67
|
-
}
|
|
68
|
-
/** Structured `data_type` payload for percentage fields. */
|
|
69
|
-
export interface PercentageCustomObjectFieldDataType {
|
|
70
|
-
field_type: 'PERCENTAGE';
|
|
71
|
-
num_of_decimal_places?: number;
|
|
72
|
-
}
|
|
73
|
-
/** Structured `data_type` payload for date fields. */
|
|
74
|
-
export interface DateCustomObjectFieldDataType {
|
|
75
|
-
field_type: 'DATE';
|
|
76
|
-
}
|
|
77
|
-
/** Structured `data_type` payload for date-time fields. */
|
|
78
|
-
export interface DatetimeCustomObjectFieldDataType {
|
|
79
|
-
field_type: 'DATETIME';
|
|
80
|
-
}
|
|
81
|
-
/** Structured `data_type` payload for time-of-day fields. */
|
|
82
|
-
export interface TimeCustomObjectFieldDataType {
|
|
83
|
-
field_type: 'TIME';
|
|
84
|
-
}
|
|
85
|
-
/** Structured `data_type` payload for choice fields. */
|
|
86
|
-
export interface ChoiceCustomObjectFieldDataType {
|
|
87
|
-
field_type: 'SELECT' | 'RADIO';
|
|
88
|
-
options_list: string[];
|
|
89
|
-
}
|
|
90
|
-
/** Structured `data_type` payload for boolean fields. */
|
|
91
|
-
export interface BooleanCustomObjectFieldDataType {
|
|
92
|
-
field_type: 'BOOLEAN';
|
|
93
|
-
}
|
|
94
|
-
/** Structured `data_type` payload for file fields. */
|
|
95
|
-
export interface FileCustomObjectFieldDataType {
|
|
96
|
-
field_type: 'FILE';
|
|
97
|
-
supported_types?: string[];
|
|
98
|
-
}
|
|
99
|
-
/** Structured `data_type` payload for relationship fields. */
|
|
100
|
-
export interface ReferenceCustomObjectFieldDataType {
|
|
101
|
-
field_type: 'OG_REFERENCE_FIELD';
|
|
102
|
-
og_model_rql_name: string;
|
|
103
|
-
edge_type?: 'LOOKUP' | 'PARENT_CHILD';
|
|
104
|
-
related_data_label?: string;
|
|
105
|
-
lookup_filter_rql_condition?: string;
|
|
106
|
-
parent_child_type?: 'PRIMARY' | 'SECONDARY';
|
|
107
|
-
enable_parent_owner_inheritance?: boolean;
|
|
108
|
-
}
|
|
109
|
-
/** Typed `data_type` union for custom-object field create/update payloads. */
|
|
110
|
-
export type CustomObjectFieldDataType = TextCustomObjectFieldDataType | LongTextCustomObjectFieldDataType | EmailCustomObjectFieldDataType | URLCustomObjectFieldDataType | PhoneNumberCustomObjectFieldDataType | NumberCustomObjectFieldDataType | CurrencyCustomObjectFieldDataType | PercentageCustomObjectFieldDataType | DateCustomObjectFieldDataType | DatetimeCustomObjectFieldDataType | TimeCustomObjectFieldDataType | ChoiceCustomObjectFieldDataType | BooleanCustomObjectFieldDataType | FileCustomObjectFieldDataType | ReferenceCustomObjectFieldDataType;
|
|
111
|
-
/** Filter entry accepted by derived aggregated field metadata. */
|
|
112
|
-
export interface CustomObjectFieldDerivedAggregationFilter {
|
|
113
|
-
field_name: string;
|
|
114
|
-
filter_value: string;
|
|
115
|
-
operator: string;
|
|
116
|
-
}
|
|
117
|
-
/** Structured payload for derived aggregated field metadata. */
|
|
118
|
-
export interface CustomObjectFieldDerivedAggregatedField {
|
|
119
|
-
aggregation_function?: string;
|
|
120
|
-
child_model_name?: string;
|
|
121
|
-
currency_code?: string | null;
|
|
122
|
-
field_to_aggregate?: string;
|
|
123
|
-
filters?: CustomObjectFieldDerivedAggregationFilter[];
|
|
124
|
-
lookup_field_api_name?: string;
|
|
125
|
-
[key: string]: unknown;
|
|
126
|
-
}
|
|
127
|
-
/** Formula attribute metadata accepted by field create/update APIs. */
|
|
128
|
-
export type CustomObjectFieldFormulaAttrMetas = Record<string, unknown>;
|
|
129
|
-
/** Computed-field RQL definition metadata accepted by field create/update APIs. */
|
|
130
|
-
export type CustomObjectFieldRqlDefinition = Record<string, unknown>;
|
|
131
|
-
/** Legacy object-shaped field-section payload surfaced by the generated schema. */
|
|
132
|
-
export interface CustomObjectFieldSectionConfig {
|
|
133
|
-
name?: string;
|
|
134
|
-
section_id?: string;
|
|
135
|
-
[key: string]: unknown;
|
|
136
|
-
}
|
|
137
|
-
/** Field-section value accepted by the custom-object field APIs. */
|
|
138
|
-
export type CustomObjectFieldSection = string | CustomObjectFieldSectionConfig;
|
|
139
|
-
/** Name-field display / autonumber metadata accepted by field update APIs. */
|
|
140
|
-
export interface CustomObjectNameFieldDetails {
|
|
141
|
-
is_autonumber_field?: boolean;
|
|
142
|
-
autonumber_format?: string;
|
|
143
|
-
starting_number?: number;
|
|
144
|
-
[key: string]: unknown;
|
|
145
|
-
}
|
|
146
|
-
/** Public custom-object field DTO returned by the REST API. */
|
|
147
33
|
export interface CustomObjectField {
|
|
148
34
|
/**
|
|
149
35
|
* Identifier field
|
|
@@ -164,7 +50,7 @@ export interface CustomObjectField {
|
|
|
164
50
|
/**
|
|
165
51
|
* The data type configuration for the field.
|
|
166
52
|
*/
|
|
167
|
-
data_type:
|
|
53
|
+
data_type: unknown;
|
|
168
54
|
/**
|
|
169
55
|
* whether the history is enable for the field
|
|
170
56
|
*/
|
|
@@ -216,11 +102,11 @@ export interface FieldCreateParams {
|
|
|
216
102
|
/**
|
|
217
103
|
* The data type configuration for the field.
|
|
218
104
|
*/
|
|
219
|
-
data_type?:
|
|
105
|
+
data_type?: unknown;
|
|
220
106
|
/**
|
|
221
107
|
* Configuration for derived aggregated fields.
|
|
222
108
|
*/
|
|
223
|
-
derived_aggregated_field?:
|
|
109
|
+
derived_aggregated_field?: unknown;
|
|
224
110
|
/**
|
|
225
111
|
* The formula for derived fields.
|
|
226
112
|
*/
|
|
@@ -236,7 +122,7 @@ export interface FieldCreateParams {
|
|
|
236
122
|
/**
|
|
237
123
|
* Metadata for formula attributes.
|
|
238
124
|
*/
|
|
239
|
-
formula_attr_metas?:
|
|
125
|
+
formula_attr_metas?: unknown;
|
|
240
126
|
/**
|
|
241
127
|
* Whether field values must be unique.
|
|
242
128
|
*/
|
|
@@ -252,11 +138,11 @@ export interface FieldCreateParams {
|
|
|
252
138
|
/**
|
|
253
139
|
* The RQL definition for computed fields.
|
|
254
140
|
*/
|
|
255
|
-
rql_definition?:
|
|
141
|
+
rql_definition?: unknown;
|
|
256
142
|
/**
|
|
257
|
-
* The section
|
|
143
|
+
* The section configuration for the field.
|
|
258
144
|
*/
|
|
259
|
-
section?:
|
|
145
|
+
section?: unknown;
|
|
260
146
|
}
|
|
261
147
|
export declare namespace FieldCreateParams {
|
|
262
148
|
/**
|
|
@@ -276,7 +162,7 @@ export interface FieldUpdateParams {
|
|
|
276
162
|
/**
|
|
277
163
|
* The data type configuration for the field.
|
|
278
164
|
*/
|
|
279
|
-
data_type?:
|
|
165
|
+
data_type?: unknown;
|
|
280
166
|
/**
|
|
281
167
|
* The formula for derived fields.
|
|
282
168
|
*/
|
|
@@ -292,7 +178,7 @@ export interface FieldUpdateParams {
|
|
|
292
178
|
/**
|
|
293
179
|
* Metadata for formula attributes.
|
|
294
180
|
*/
|
|
295
|
-
formula_attr_metas?:
|
|
181
|
+
formula_attr_metas?: unknown;
|
|
296
182
|
/**
|
|
297
183
|
* Whether field values must be unique.
|
|
298
184
|
*/
|
|
@@ -304,7 +190,7 @@ export interface FieldUpdateParams {
|
|
|
304
190
|
/**
|
|
305
191
|
* Configuration for name field display.
|
|
306
192
|
*/
|
|
307
|
-
name_field_details?:
|
|
193
|
+
name_field_details?: unknown;
|
|
308
194
|
/**
|
|
309
195
|
* Whether this field is required.
|
|
310
196
|
*/
|
|
@@ -312,11 +198,11 @@ export interface FieldUpdateParams {
|
|
|
312
198
|
/**
|
|
313
199
|
* The RQL definition for computed fields.
|
|
314
200
|
*/
|
|
315
|
-
rql_definition?:
|
|
201
|
+
rql_definition?: unknown;
|
|
316
202
|
/**
|
|
317
|
-
* The section
|
|
203
|
+
* The section configuration for the field.
|
|
318
204
|
*/
|
|
319
|
-
section?:
|
|
205
|
+
section?: unknown;
|
|
320
206
|
}
|
|
321
207
|
export declare namespace FieldUpdateParams {
|
|
322
208
|
/**
|
|
@@ -332,6 +218,6 @@ export declare namespace FieldUpdateParams {
|
|
|
332
218
|
}
|
|
333
219
|
}
|
|
334
220
|
export declare namespace Fields {
|
|
335
|
-
export { type
|
|
221
|
+
export { type CustomObjectField as CustomObjectField, type CustomObjectFieldsPageCursorURL as CustomObjectFieldsPageCursorURL, type FieldCreateParams as FieldCreateParams, type FieldUpdateParams as FieldUpdateParams, };
|
|
336
222
|
}
|
|
337
223
|
//# sourceMappingURL=fields.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fields.d.mts","sourceRoot":"","sources":["../../src/resources/custom-objects/fields.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,gCAA4B;AAClD,OAAO,EAAE,UAAU,EAAE,mCAA+B;AACpD,OAAO,EAAE,aAAa,EAAE,WAAW,EAAE,kCAA8B;AAEnE,OAAO,EAAE,cAAc,EAAE,2CAAuC;AAGhE;;GAEG;AACH,qBAAa,MAAO,SAAQ,WAAW;IACrC;;;;OAIG;IACH,IAAI,CACF,mBAAmB,EAAE,MAAM,EAC3B,OAAO,CAAC,EAAE,cAAc,GACvB,WAAW,CAAC,+BAA+B,EAAE,iBAAiB,CAAC;IAQlE;;OAEG;IACH,MAAM,CACJ,mBAAmB,EAAE,MAAM,EAC3B,IAAI,GAAE,iBAAiB,GAAG,IAAI,GAAG,SAAc,EAC/C,OAAO,CAAC,EAAE,cAAc,GACvB,UAAU,CAAC,iBAAiB,CAAC;IAIhC;;OAEG;IACH,QAAQ,CACN,mBAAmB,EAAE,MAAM,EAC3B,YAAY,EAAE,MAAM,EACpB,OAAO,CAAC,EAAE,cAAc,GACvB,UAAU,CAAC,iBAAiB,CAAC;IAIhC;;OAEG;IACH,MAAM,CACJ,mBAAmB,EAAE,MAAM,EAC3B,YAAY,EAAE,MAAM,EACpB,IAAI,GAAE,iBAAiB,GAAG,IAAI,GAAG,SAAc,EAC/C,OAAO,CAAC,EAAE,cAAc,GACvB,UAAU,CAAC,iBAAiB,CAAC;IAOhC;;OAEG;IACH,MAAM,CAAC,mBAAmB,EAAE,MAAM,EAAE,YAAY,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,IAAI,CAAC;CAMtG;AAED,MAAM,MAAM,+BAA+B,GAAG,aAAa,CAAC,iBAAiB,CAAC,CAAC;AAE/E,
|
|
1
|
+
{"version":3,"file":"fields.d.mts","sourceRoot":"","sources":["../../src/resources/custom-objects/fields.ts"],"names":[],"mappings":"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"}
|
|
@@ -30,120 +30,6 @@ export declare class Fields extends APIResource {
|
|
|
30
30
|
delete(customObjectAPIName: string, fieldAPIName: string, options?: RequestOptions): APIPromise<void>;
|
|
31
31
|
}
|
|
32
32
|
export type CustomObjectFieldsPageCursorURL = PageCursorURL<CustomObjectField>;
|
|
33
|
-
/** Supported wire-level field-type identifiers for custom-object fields. */
|
|
34
|
-
export type CustomObjectFieldType = 'TEXT' | 'LONG_TEXT' | 'EMAIL' | 'URL' | 'PHONE_NUMBER' | 'NUMBER' | 'CURRENCY' | 'PERCENTAGE' | 'DATE' | 'DATETIME' | 'TIME' | 'SELECT' | 'RADIO' | 'BOOLEAN' | 'FILE' | 'OG_REFERENCE_FIELD';
|
|
35
|
-
/** Structured `data_type` payload for text fields. */
|
|
36
|
-
export interface TextCustomObjectFieldDataType {
|
|
37
|
-
field_type: 'TEXT';
|
|
38
|
-
max_length?: number;
|
|
39
|
-
}
|
|
40
|
-
/** Structured `data_type` payload for long-text fields. */
|
|
41
|
-
export interface LongTextCustomObjectFieldDataType {
|
|
42
|
-
field_type: 'LONG_TEXT';
|
|
43
|
-
max_length?: number;
|
|
44
|
-
}
|
|
45
|
-
/** Structured `data_type` payload for email fields. */
|
|
46
|
-
export interface EmailCustomObjectFieldDataType {
|
|
47
|
-
field_type: 'EMAIL';
|
|
48
|
-
}
|
|
49
|
-
/** Structured `data_type` payload for URL fields. */
|
|
50
|
-
export interface URLCustomObjectFieldDataType {
|
|
51
|
-
field_type: 'URL';
|
|
52
|
-
}
|
|
53
|
-
/** Structured `data_type` payload for phone-number fields. */
|
|
54
|
-
export interface PhoneNumberCustomObjectFieldDataType {
|
|
55
|
-
field_type: 'PHONE_NUMBER';
|
|
56
|
-
}
|
|
57
|
-
/** Structured `data_type` payload for numeric fields. */
|
|
58
|
-
export interface NumberCustomObjectFieldDataType {
|
|
59
|
-
field_type: 'NUMBER';
|
|
60
|
-
num_of_decimal_places?: number;
|
|
61
|
-
}
|
|
62
|
-
/** Structured `data_type` payload for currency fields. */
|
|
63
|
-
export interface CurrencyCustomObjectFieldDataType {
|
|
64
|
-
field_type: 'CURRENCY';
|
|
65
|
-
currency?: string;
|
|
66
|
-
num_of_decimal_places?: number;
|
|
67
|
-
}
|
|
68
|
-
/** Structured `data_type` payload for percentage fields. */
|
|
69
|
-
export interface PercentageCustomObjectFieldDataType {
|
|
70
|
-
field_type: 'PERCENTAGE';
|
|
71
|
-
num_of_decimal_places?: number;
|
|
72
|
-
}
|
|
73
|
-
/** Structured `data_type` payload for date fields. */
|
|
74
|
-
export interface DateCustomObjectFieldDataType {
|
|
75
|
-
field_type: 'DATE';
|
|
76
|
-
}
|
|
77
|
-
/** Structured `data_type` payload for date-time fields. */
|
|
78
|
-
export interface DatetimeCustomObjectFieldDataType {
|
|
79
|
-
field_type: 'DATETIME';
|
|
80
|
-
}
|
|
81
|
-
/** Structured `data_type` payload for time-of-day fields. */
|
|
82
|
-
export interface TimeCustomObjectFieldDataType {
|
|
83
|
-
field_type: 'TIME';
|
|
84
|
-
}
|
|
85
|
-
/** Structured `data_type` payload for choice fields. */
|
|
86
|
-
export interface ChoiceCustomObjectFieldDataType {
|
|
87
|
-
field_type: 'SELECT' | 'RADIO';
|
|
88
|
-
options_list: string[];
|
|
89
|
-
}
|
|
90
|
-
/** Structured `data_type` payload for boolean fields. */
|
|
91
|
-
export interface BooleanCustomObjectFieldDataType {
|
|
92
|
-
field_type: 'BOOLEAN';
|
|
93
|
-
}
|
|
94
|
-
/** Structured `data_type` payload for file fields. */
|
|
95
|
-
export interface FileCustomObjectFieldDataType {
|
|
96
|
-
field_type: 'FILE';
|
|
97
|
-
supported_types?: string[];
|
|
98
|
-
}
|
|
99
|
-
/** Structured `data_type` payload for relationship fields. */
|
|
100
|
-
export interface ReferenceCustomObjectFieldDataType {
|
|
101
|
-
field_type: 'OG_REFERENCE_FIELD';
|
|
102
|
-
og_model_rql_name: string;
|
|
103
|
-
edge_type?: 'LOOKUP' | 'PARENT_CHILD';
|
|
104
|
-
related_data_label?: string;
|
|
105
|
-
lookup_filter_rql_condition?: string;
|
|
106
|
-
parent_child_type?: 'PRIMARY' | 'SECONDARY';
|
|
107
|
-
enable_parent_owner_inheritance?: boolean;
|
|
108
|
-
}
|
|
109
|
-
/** Typed `data_type` union for custom-object field create/update payloads. */
|
|
110
|
-
export type CustomObjectFieldDataType = TextCustomObjectFieldDataType | LongTextCustomObjectFieldDataType | EmailCustomObjectFieldDataType | URLCustomObjectFieldDataType | PhoneNumberCustomObjectFieldDataType | NumberCustomObjectFieldDataType | CurrencyCustomObjectFieldDataType | PercentageCustomObjectFieldDataType | DateCustomObjectFieldDataType | DatetimeCustomObjectFieldDataType | TimeCustomObjectFieldDataType | ChoiceCustomObjectFieldDataType | BooleanCustomObjectFieldDataType | FileCustomObjectFieldDataType | ReferenceCustomObjectFieldDataType;
|
|
111
|
-
/** Filter entry accepted by derived aggregated field metadata. */
|
|
112
|
-
export interface CustomObjectFieldDerivedAggregationFilter {
|
|
113
|
-
field_name: string;
|
|
114
|
-
filter_value: string;
|
|
115
|
-
operator: string;
|
|
116
|
-
}
|
|
117
|
-
/** Structured payload for derived aggregated field metadata. */
|
|
118
|
-
export interface CustomObjectFieldDerivedAggregatedField {
|
|
119
|
-
aggregation_function?: string;
|
|
120
|
-
child_model_name?: string;
|
|
121
|
-
currency_code?: string | null;
|
|
122
|
-
field_to_aggregate?: string;
|
|
123
|
-
filters?: CustomObjectFieldDerivedAggregationFilter[];
|
|
124
|
-
lookup_field_api_name?: string;
|
|
125
|
-
[key: string]: unknown;
|
|
126
|
-
}
|
|
127
|
-
/** Formula attribute metadata accepted by field create/update APIs. */
|
|
128
|
-
export type CustomObjectFieldFormulaAttrMetas = Record<string, unknown>;
|
|
129
|
-
/** Computed-field RQL definition metadata accepted by field create/update APIs. */
|
|
130
|
-
export type CustomObjectFieldRqlDefinition = Record<string, unknown>;
|
|
131
|
-
/** Legacy object-shaped field-section payload surfaced by the generated schema. */
|
|
132
|
-
export interface CustomObjectFieldSectionConfig {
|
|
133
|
-
name?: string;
|
|
134
|
-
section_id?: string;
|
|
135
|
-
[key: string]: unknown;
|
|
136
|
-
}
|
|
137
|
-
/** Field-section value accepted by the custom-object field APIs. */
|
|
138
|
-
export type CustomObjectFieldSection = string | CustomObjectFieldSectionConfig;
|
|
139
|
-
/** Name-field display / autonumber metadata accepted by field update APIs. */
|
|
140
|
-
export interface CustomObjectNameFieldDetails {
|
|
141
|
-
is_autonumber_field?: boolean;
|
|
142
|
-
autonumber_format?: string;
|
|
143
|
-
starting_number?: number;
|
|
144
|
-
[key: string]: unknown;
|
|
145
|
-
}
|
|
146
|
-
/** Public custom-object field DTO returned by the REST API. */
|
|
147
33
|
export interface CustomObjectField {
|
|
148
34
|
/**
|
|
149
35
|
* Identifier field
|
|
@@ -164,7 +50,7 @@ export interface CustomObjectField {
|
|
|
164
50
|
/**
|
|
165
51
|
* The data type configuration for the field.
|
|
166
52
|
*/
|
|
167
|
-
data_type:
|
|
53
|
+
data_type: unknown;
|
|
168
54
|
/**
|
|
169
55
|
* whether the history is enable for the field
|
|
170
56
|
*/
|
|
@@ -216,11 +102,11 @@ export interface FieldCreateParams {
|
|
|
216
102
|
/**
|
|
217
103
|
* The data type configuration for the field.
|
|
218
104
|
*/
|
|
219
|
-
data_type?:
|
|
105
|
+
data_type?: unknown;
|
|
220
106
|
/**
|
|
221
107
|
* Configuration for derived aggregated fields.
|
|
222
108
|
*/
|
|
223
|
-
derived_aggregated_field?:
|
|
109
|
+
derived_aggregated_field?: unknown;
|
|
224
110
|
/**
|
|
225
111
|
* The formula for derived fields.
|
|
226
112
|
*/
|
|
@@ -236,7 +122,7 @@ export interface FieldCreateParams {
|
|
|
236
122
|
/**
|
|
237
123
|
* Metadata for formula attributes.
|
|
238
124
|
*/
|
|
239
|
-
formula_attr_metas?:
|
|
125
|
+
formula_attr_metas?: unknown;
|
|
240
126
|
/**
|
|
241
127
|
* Whether field values must be unique.
|
|
242
128
|
*/
|
|
@@ -252,11 +138,11 @@ export interface FieldCreateParams {
|
|
|
252
138
|
/**
|
|
253
139
|
* The RQL definition for computed fields.
|
|
254
140
|
*/
|
|
255
|
-
rql_definition?:
|
|
141
|
+
rql_definition?: unknown;
|
|
256
142
|
/**
|
|
257
|
-
* The section
|
|
143
|
+
* The section configuration for the field.
|
|
258
144
|
*/
|
|
259
|
-
section?:
|
|
145
|
+
section?: unknown;
|
|
260
146
|
}
|
|
261
147
|
export declare namespace FieldCreateParams {
|
|
262
148
|
/**
|
|
@@ -276,7 +162,7 @@ export interface FieldUpdateParams {
|
|
|
276
162
|
/**
|
|
277
163
|
* The data type configuration for the field.
|
|
278
164
|
*/
|
|
279
|
-
data_type?:
|
|
165
|
+
data_type?: unknown;
|
|
280
166
|
/**
|
|
281
167
|
* The formula for derived fields.
|
|
282
168
|
*/
|
|
@@ -292,7 +178,7 @@ export interface FieldUpdateParams {
|
|
|
292
178
|
/**
|
|
293
179
|
* Metadata for formula attributes.
|
|
294
180
|
*/
|
|
295
|
-
formula_attr_metas?:
|
|
181
|
+
formula_attr_metas?: unknown;
|
|
296
182
|
/**
|
|
297
183
|
* Whether field values must be unique.
|
|
298
184
|
*/
|
|
@@ -304,7 +190,7 @@ export interface FieldUpdateParams {
|
|
|
304
190
|
/**
|
|
305
191
|
* Configuration for name field display.
|
|
306
192
|
*/
|
|
307
|
-
name_field_details?:
|
|
193
|
+
name_field_details?: unknown;
|
|
308
194
|
/**
|
|
309
195
|
* Whether this field is required.
|
|
310
196
|
*/
|
|
@@ -312,11 +198,11 @@ export interface FieldUpdateParams {
|
|
|
312
198
|
/**
|
|
313
199
|
* The RQL definition for computed fields.
|
|
314
200
|
*/
|
|
315
|
-
rql_definition?:
|
|
201
|
+
rql_definition?: unknown;
|
|
316
202
|
/**
|
|
317
|
-
* The section
|
|
203
|
+
* The section configuration for the field.
|
|
318
204
|
*/
|
|
319
|
-
section?:
|
|
205
|
+
section?: unknown;
|
|
320
206
|
}
|
|
321
207
|
export declare namespace FieldUpdateParams {
|
|
322
208
|
/**
|
|
@@ -332,6 +218,6 @@ export declare namespace FieldUpdateParams {
|
|
|
332
218
|
}
|
|
333
219
|
}
|
|
334
220
|
export declare namespace Fields {
|
|
335
|
-
export { type
|
|
221
|
+
export { type CustomObjectField as CustomObjectField, type CustomObjectFieldsPageCursorURL as CustomObjectFieldsPageCursorURL, type FieldCreateParams as FieldCreateParams, type FieldUpdateParams as FieldUpdateParams, };
|
|
336
222
|
}
|
|
337
223
|
//# sourceMappingURL=fields.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fields.d.ts","sourceRoot":"","sources":["../../src/resources/custom-objects/fields.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,+BAA4B;AAClD,OAAO,EAAE,UAAU,EAAE,kCAA+B;AACpD,OAAO,EAAE,aAAa,EAAE,WAAW,EAAE,iCAA8B;AAEnE,OAAO,EAAE,cAAc,EAAE,0CAAuC;AAGhE;;GAEG;AACH,qBAAa,MAAO,SAAQ,WAAW;IACrC;;;;OAIG;IACH,IAAI,CACF,mBAAmB,EAAE,MAAM,EAC3B,OAAO,CAAC,EAAE,cAAc,GACvB,WAAW,CAAC,+BAA+B,EAAE,iBAAiB,CAAC;IAQlE;;OAEG;IACH,MAAM,CACJ,mBAAmB,EAAE,MAAM,EAC3B,IAAI,GAAE,iBAAiB,GAAG,IAAI,GAAG,SAAc,EAC/C,OAAO,CAAC,EAAE,cAAc,GACvB,UAAU,CAAC,iBAAiB,CAAC;IAIhC;;OAEG;IACH,QAAQ,CACN,mBAAmB,EAAE,MAAM,EAC3B,YAAY,EAAE,MAAM,EACpB,OAAO,CAAC,EAAE,cAAc,GACvB,UAAU,CAAC,iBAAiB,CAAC;IAIhC;;OAEG;IACH,MAAM,CACJ,mBAAmB,EAAE,MAAM,EAC3B,YAAY,EAAE,MAAM,EACpB,IAAI,GAAE,iBAAiB,GAAG,IAAI,GAAG,SAAc,EAC/C,OAAO,CAAC,EAAE,cAAc,GACvB,UAAU,CAAC,iBAAiB,CAAC;IAOhC;;OAEG;IACH,MAAM,CAAC,mBAAmB,EAAE,MAAM,EAAE,YAAY,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,IAAI,CAAC;CAMtG;AAED,MAAM,MAAM,+BAA+B,GAAG,aAAa,CAAC,iBAAiB,CAAC,CAAC;AAE/E,
|
|
1
|
+
{"version":3,"file":"fields.d.ts","sourceRoot":"","sources":["../../src/resources/custom-objects/fields.ts"],"names":[],"mappings":"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"}
|