losant_rest 2.1.1 → 2.1.2
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.
- checksums.yaml +4 -4
- data/docs/_schemas.md +1391 -55
- data/lib/platform_rest/client.rb +2 -2
- data/lib/platform_rest/version.rb +1 -1
- data/schemas/apiTokenPost.json +4 -0
- data/schemas/applicationDashboardPost.json +142 -11
- data/schemas/dashboard.json +142 -11
- data/schemas/dashboardPatch.json +142 -11
- data/schemas/dashboardPost.json +142 -11
- data/schemas/dashboards.json +142 -11
- data/schemas/githubLogin.json +4 -0
- data/schemas/instance.json +6 -0
- data/schemas/instanceOrg.json +12 -0
- data/schemas/instanceOrgEntitlement.json +182 -0
- data/schemas/instanceOrgEntitlementSync.json +64 -0
- data/schemas/instanceOrgs.json +12 -0
- data/schemas/instances.json +6 -0
- data/schemas/meEntitlements.json +194 -0
- data/schemas/org.json +16 -0
- data/schemas/orgPost.json +4 -0
- data/schemas/orgs.json +16 -0
- data/schemas/samlResponse.json +4 -0
- data/schemas/userCredentials.json +4 -0
- data/schemas/userPost.json +4 -0
- data/schemas/validateContextError.json +28 -0
- data/schemas/validateContextSuccess.json +28 -0
- metadata +4 -1
data/schemas/dashboardPatch.json
CHANGED
|
@@ -1266,7 +1266,8 @@
|
|
|
1266
1266
|
"triangle-down",
|
|
1267
1267
|
"triangle-up",
|
|
1268
1268
|
"octagon"
|
|
1269
|
-
]
|
|
1269
|
+
],
|
|
1270
|
+
"default": "circle"
|
|
1270
1271
|
}
|
|
1271
1272
|
},
|
|
1272
1273
|
"additionalProperties": false
|
|
@@ -2234,7 +2235,8 @@
|
|
|
2234
2235
|
"triangle-down",
|
|
2235
2236
|
"triangle-up",
|
|
2236
2237
|
"octagon"
|
|
2237
|
-
]
|
|
2238
|
+
],
|
|
2239
|
+
"default": "circle"
|
|
2238
2240
|
}
|
|
2239
2241
|
},
|
|
2240
2242
|
"additionalProperties": false
|
|
@@ -3276,7 +3278,6 @@
|
|
|
3276
3278
|
"type": {
|
|
3277
3279
|
"type": "string",
|
|
3278
3280
|
"enum": [
|
|
3279
|
-
"indicator",
|
|
3280
3281
|
"label",
|
|
3281
3282
|
"image"
|
|
3282
3283
|
]
|
|
@@ -3332,7 +3333,8 @@
|
|
|
3332
3333
|
"triangle-down",
|
|
3333
3334
|
"triangle-up",
|
|
3334
3335
|
"octagon"
|
|
3335
|
-
]
|
|
3336
|
+
],
|
|
3337
|
+
"default": "circle"
|
|
3336
3338
|
}
|
|
3337
3339
|
},
|
|
3338
3340
|
"additionalProperties": false
|
|
@@ -3369,7 +3371,8 @@
|
|
|
3369
3371
|
"triangle-down",
|
|
3370
3372
|
"triangle-up",
|
|
3371
3373
|
"octagon"
|
|
3372
|
-
]
|
|
3374
|
+
],
|
|
3375
|
+
"default": "circle"
|
|
3373
3376
|
}
|
|
3374
3377
|
},
|
|
3375
3378
|
"additionalProperties": false
|
|
@@ -3383,6 +3386,125 @@
|
|
|
3383
3386
|
],
|
|
3384
3387
|
"additionalProperties": false
|
|
3385
3388
|
},
|
|
3389
|
+
{
|
|
3390
|
+
"type": "object",
|
|
3391
|
+
"properties": {
|
|
3392
|
+
"type": {
|
|
3393
|
+
"type": "string",
|
|
3394
|
+
"enum": [
|
|
3395
|
+
"indicator"
|
|
3396
|
+
]
|
|
3397
|
+
},
|
|
3398
|
+
"size": {
|
|
3399
|
+
"type": "string",
|
|
3400
|
+
"enum": [
|
|
3401
|
+
"small",
|
|
3402
|
+
"medium",
|
|
3403
|
+
"large"
|
|
3404
|
+
]
|
|
3405
|
+
},
|
|
3406
|
+
"position": {
|
|
3407
|
+
"type": "string",
|
|
3408
|
+
"minLength": 3,
|
|
3409
|
+
"maxLength": 255
|
|
3410
|
+
},
|
|
3411
|
+
"popupTemplate": {
|
|
3412
|
+
"type": "string",
|
|
3413
|
+
"maxLength": 32767
|
|
3414
|
+
},
|
|
3415
|
+
"conditions": {
|
|
3416
|
+
"type": "array",
|
|
3417
|
+
"maxItems": 100,
|
|
3418
|
+
"items": {
|
|
3419
|
+
"type": "object",
|
|
3420
|
+
"properties": {
|
|
3421
|
+
"color": {
|
|
3422
|
+
"type": "string",
|
|
3423
|
+
"maxLength": 64
|
|
3424
|
+
},
|
|
3425
|
+
"id": {
|
|
3426
|
+
"type": "string",
|
|
3427
|
+
"maxLength": 48
|
|
3428
|
+
},
|
|
3429
|
+
"label": {
|
|
3430
|
+
"type": "string",
|
|
3431
|
+
"maxLength": 32767
|
|
3432
|
+
},
|
|
3433
|
+
"condition": {
|
|
3434
|
+
"type": "string",
|
|
3435
|
+
"maxLength": 2048
|
|
3436
|
+
},
|
|
3437
|
+
"imageUrl": {
|
|
3438
|
+
"type": "string",
|
|
3439
|
+
"maxLength": 32767
|
|
3440
|
+
},
|
|
3441
|
+
"shape": {
|
|
3442
|
+
"type": "string",
|
|
3443
|
+
"enum": [
|
|
3444
|
+
"circle",
|
|
3445
|
+
"square",
|
|
3446
|
+
"triangle-down",
|
|
3447
|
+
"triangle-up",
|
|
3448
|
+
"octagon"
|
|
3449
|
+
],
|
|
3450
|
+
"default": "circle"
|
|
3451
|
+
}
|
|
3452
|
+
},
|
|
3453
|
+
"additionalProperties": false,
|
|
3454
|
+
"required": [
|
|
3455
|
+
"shape"
|
|
3456
|
+
]
|
|
3457
|
+
}
|
|
3458
|
+
},
|
|
3459
|
+
"defaultCondition": {
|
|
3460
|
+
"type": "object",
|
|
3461
|
+
"properties": {
|
|
3462
|
+
"color": {
|
|
3463
|
+
"type": "string",
|
|
3464
|
+
"maxLength": 64
|
|
3465
|
+
},
|
|
3466
|
+
"id": {
|
|
3467
|
+
"type": "string",
|
|
3468
|
+
"maxLength": 48
|
|
3469
|
+
},
|
|
3470
|
+
"label": {
|
|
3471
|
+
"type": "string",
|
|
3472
|
+
"maxLength": 32767
|
|
3473
|
+
},
|
|
3474
|
+
"condition": {
|
|
3475
|
+
"type": "string",
|
|
3476
|
+
"maxLength": 2048
|
|
3477
|
+
},
|
|
3478
|
+
"imageUrl": {
|
|
3479
|
+
"type": "string",
|
|
3480
|
+
"maxLength": 32767
|
|
3481
|
+
},
|
|
3482
|
+
"shape": {
|
|
3483
|
+
"type": "string",
|
|
3484
|
+
"enum": [
|
|
3485
|
+
"circle",
|
|
3486
|
+
"square",
|
|
3487
|
+
"triangle-down",
|
|
3488
|
+
"triangle-up",
|
|
3489
|
+
"octagon"
|
|
3490
|
+
],
|
|
3491
|
+
"default": "circle"
|
|
3492
|
+
}
|
|
3493
|
+
},
|
|
3494
|
+
"additionalProperties": false,
|
|
3495
|
+
"required": [
|
|
3496
|
+
"shape"
|
|
3497
|
+
]
|
|
3498
|
+
}
|
|
3499
|
+
},
|
|
3500
|
+
"required": [
|
|
3501
|
+
"type",
|
|
3502
|
+
"position",
|
|
3503
|
+
"size",
|
|
3504
|
+
"defaultCondition"
|
|
3505
|
+
],
|
|
3506
|
+
"additionalProperties": false
|
|
3507
|
+
},
|
|
3386
3508
|
{
|
|
3387
3509
|
"type": "object",
|
|
3388
3510
|
"properties": {
|
|
@@ -3443,7 +3565,8 @@
|
|
|
3443
3565
|
"triangle-down",
|
|
3444
3566
|
"triangle-up",
|
|
3445
3567
|
"octagon"
|
|
3446
|
-
]
|
|
3568
|
+
],
|
|
3569
|
+
"default": "circle"
|
|
3447
3570
|
}
|
|
3448
3571
|
},
|
|
3449
3572
|
"additionalProperties": false
|
|
@@ -3480,7 +3603,8 @@
|
|
|
3480
3603
|
"triangle-down",
|
|
3481
3604
|
"triangle-up",
|
|
3482
3605
|
"octagon"
|
|
3483
|
-
]
|
|
3606
|
+
],
|
|
3607
|
+
"default": "circle"
|
|
3484
3608
|
}
|
|
3485
3609
|
},
|
|
3486
3610
|
"additionalProperties": false
|
|
@@ -3558,7 +3682,8 @@
|
|
|
3558
3682
|
"triangle-down",
|
|
3559
3683
|
"triangle-up",
|
|
3560
3684
|
"octagon"
|
|
3561
|
-
]
|
|
3685
|
+
],
|
|
3686
|
+
"default": "circle"
|
|
3562
3687
|
}
|
|
3563
3688
|
},
|
|
3564
3689
|
"additionalProperties": false
|
|
@@ -3595,7 +3720,8 @@
|
|
|
3595
3720
|
"triangle-down",
|
|
3596
3721
|
"triangle-up",
|
|
3597
3722
|
"octagon"
|
|
3598
|
-
]
|
|
3723
|
+
],
|
|
3724
|
+
"default": "circle"
|
|
3599
3725
|
}
|
|
3600
3726
|
},
|
|
3601
3727
|
"additionalProperties": false
|
|
@@ -3939,7 +4065,8 @@
|
|
|
3939
4065
|
"triangle-down",
|
|
3940
4066
|
"triangle-up",
|
|
3941
4067
|
"octagon"
|
|
3942
|
-
]
|
|
4068
|
+
],
|
|
4069
|
+
"default": "circle"
|
|
3943
4070
|
}
|
|
3944
4071
|
},
|
|
3945
4072
|
"additionalProperties": false
|
|
@@ -3976,7 +4103,8 @@
|
|
|
3976
4103
|
"triangle-down",
|
|
3977
4104
|
"triangle-up",
|
|
3978
4105
|
"octagon"
|
|
3979
|
-
]
|
|
4106
|
+
],
|
|
4107
|
+
"default": "circle"
|
|
3980
4108
|
}
|
|
3981
4109
|
},
|
|
3982
4110
|
"additionalProperties": false
|
|
@@ -6442,6 +6570,9 @@
|
|
|
6442
6570
|
"pattern": "^[A-Fa-f\\d]{24}$"
|
|
6443
6571
|
},
|
|
6444
6572
|
"maxItems": 1000
|
|
6573
|
+
},
|
|
6574
|
+
"includeExperienceGroups": {
|
|
6575
|
+
"type": "boolean"
|
|
6445
6576
|
}
|
|
6446
6577
|
},
|
|
6447
6578
|
"additionalProperties": false
|
data/schemas/dashboardPost.json
CHANGED
|
@@ -1274,7 +1274,8 @@
|
|
|
1274
1274
|
"triangle-down",
|
|
1275
1275
|
"triangle-up",
|
|
1276
1276
|
"octagon"
|
|
1277
|
-
]
|
|
1277
|
+
],
|
|
1278
|
+
"default": "circle"
|
|
1278
1279
|
}
|
|
1279
1280
|
},
|
|
1280
1281
|
"additionalProperties": false
|
|
@@ -2242,7 +2243,8 @@
|
|
|
2242
2243
|
"triangle-down",
|
|
2243
2244
|
"triangle-up",
|
|
2244
2245
|
"octagon"
|
|
2245
|
-
]
|
|
2246
|
+
],
|
|
2247
|
+
"default": "circle"
|
|
2246
2248
|
}
|
|
2247
2249
|
},
|
|
2248
2250
|
"additionalProperties": false
|
|
@@ -3284,7 +3286,6 @@
|
|
|
3284
3286
|
"type": {
|
|
3285
3287
|
"type": "string",
|
|
3286
3288
|
"enum": [
|
|
3287
|
-
"indicator",
|
|
3288
3289
|
"label",
|
|
3289
3290
|
"image"
|
|
3290
3291
|
]
|
|
@@ -3340,7 +3341,8 @@
|
|
|
3340
3341
|
"triangle-down",
|
|
3341
3342
|
"triangle-up",
|
|
3342
3343
|
"octagon"
|
|
3343
|
-
]
|
|
3344
|
+
],
|
|
3345
|
+
"default": "circle"
|
|
3344
3346
|
}
|
|
3345
3347
|
},
|
|
3346
3348
|
"additionalProperties": false
|
|
@@ -3377,7 +3379,8 @@
|
|
|
3377
3379
|
"triangle-down",
|
|
3378
3380
|
"triangle-up",
|
|
3379
3381
|
"octagon"
|
|
3380
|
-
]
|
|
3382
|
+
],
|
|
3383
|
+
"default": "circle"
|
|
3381
3384
|
}
|
|
3382
3385
|
},
|
|
3383
3386
|
"additionalProperties": false
|
|
@@ -3391,6 +3394,125 @@
|
|
|
3391
3394
|
],
|
|
3392
3395
|
"additionalProperties": false
|
|
3393
3396
|
},
|
|
3397
|
+
{
|
|
3398
|
+
"type": "object",
|
|
3399
|
+
"properties": {
|
|
3400
|
+
"type": {
|
|
3401
|
+
"type": "string",
|
|
3402
|
+
"enum": [
|
|
3403
|
+
"indicator"
|
|
3404
|
+
]
|
|
3405
|
+
},
|
|
3406
|
+
"size": {
|
|
3407
|
+
"type": "string",
|
|
3408
|
+
"enum": [
|
|
3409
|
+
"small",
|
|
3410
|
+
"medium",
|
|
3411
|
+
"large"
|
|
3412
|
+
]
|
|
3413
|
+
},
|
|
3414
|
+
"position": {
|
|
3415
|
+
"type": "string",
|
|
3416
|
+
"minLength": 3,
|
|
3417
|
+
"maxLength": 255
|
|
3418
|
+
},
|
|
3419
|
+
"popupTemplate": {
|
|
3420
|
+
"type": "string",
|
|
3421
|
+
"maxLength": 32767
|
|
3422
|
+
},
|
|
3423
|
+
"conditions": {
|
|
3424
|
+
"type": "array",
|
|
3425
|
+
"maxItems": 100,
|
|
3426
|
+
"items": {
|
|
3427
|
+
"type": "object",
|
|
3428
|
+
"properties": {
|
|
3429
|
+
"color": {
|
|
3430
|
+
"type": "string",
|
|
3431
|
+
"maxLength": 64
|
|
3432
|
+
},
|
|
3433
|
+
"id": {
|
|
3434
|
+
"type": "string",
|
|
3435
|
+
"maxLength": 48
|
|
3436
|
+
},
|
|
3437
|
+
"label": {
|
|
3438
|
+
"type": "string",
|
|
3439
|
+
"maxLength": 32767
|
|
3440
|
+
},
|
|
3441
|
+
"condition": {
|
|
3442
|
+
"type": "string",
|
|
3443
|
+
"maxLength": 2048
|
|
3444
|
+
},
|
|
3445
|
+
"imageUrl": {
|
|
3446
|
+
"type": "string",
|
|
3447
|
+
"maxLength": 32767
|
|
3448
|
+
},
|
|
3449
|
+
"shape": {
|
|
3450
|
+
"type": "string",
|
|
3451
|
+
"enum": [
|
|
3452
|
+
"circle",
|
|
3453
|
+
"square",
|
|
3454
|
+
"triangle-down",
|
|
3455
|
+
"triangle-up",
|
|
3456
|
+
"octagon"
|
|
3457
|
+
],
|
|
3458
|
+
"default": "circle"
|
|
3459
|
+
}
|
|
3460
|
+
},
|
|
3461
|
+
"additionalProperties": false,
|
|
3462
|
+
"required": [
|
|
3463
|
+
"shape"
|
|
3464
|
+
]
|
|
3465
|
+
}
|
|
3466
|
+
},
|
|
3467
|
+
"defaultCondition": {
|
|
3468
|
+
"type": "object",
|
|
3469
|
+
"properties": {
|
|
3470
|
+
"color": {
|
|
3471
|
+
"type": "string",
|
|
3472
|
+
"maxLength": 64
|
|
3473
|
+
},
|
|
3474
|
+
"id": {
|
|
3475
|
+
"type": "string",
|
|
3476
|
+
"maxLength": 48
|
|
3477
|
+
},
|
|
3478
|
+
"label": {
|
|
3479
|
+
"type": "string",
|
|
3480
|
+
"maxLength": 32767
|
|
3481
|
+
},
|
|
3482
|
+
"condition": {
|
|
3483
|
+
"type": "string",
|
|
3484
|
+
"maxLength": 2048
|
|
3485
|
+
},
|
|
3486
|
+
"imageUrl": {
|
|
3487
|
+
"type": "string",
|
|
3488
|
+
"maxLength": 32767
|
|
3489
|
+
},
|
|
3490
|
+
"shape": {
|
|
3491
|
+
"type": "string",
|
|
3492
|
+
"enum": [
|
|
3493
|
+
"circle",
|
|
3494
|
+
"square",
|
|
3495
|
+
"triangle-down",
|
|
3496
|
+
"triangle-up",
|
|
3497
|
+
"octagon"
|
|
3498
|
+
],
|
|
3499
|
+
"default": "circle"
|
|
3500
|
+
}
|
|
3501
|
+
},
|
|
3502
|
+
"additionalProperties": false,
|
|
3503
|
+
"required": [
|
|
3504
|
+
"shape"
|
|
3505
|
+
]
|
|
3506
|
+
}
|
|
3507
|
+
},
|
|
3508
|
+
"required": [
|
|
3509
|
+
"type",
|
|
3510
|
+
"position",
|
|
3511
|
+
"size",
|
|
3512
|
+
"defaultCondition"
|
|
3513
|
+
],
|
|
3514
|
+
"additionalProperties": false
|
|
3515
|
+
},
|
|
3394
3516
|
{
|
|
3395
3517
|
"type": "object",
|
|
3396
3518
|
"properties": {
|
|
@@ -3451,7 +3573,8 @@
|
|
|
3451
3573
|
"triangle-down",
|
|
3452
3574
|
"triangle-up",
|
|
3453
3575
|
"octagon"
|
|
3454
|
-
]
|
|
3576
|
+
],
|
|
3577
|
+
"default": "circle"
|
|
3455
3578
|
}
|
|
3456
3579
|
},
|
|
3457
3580
|
"additionalProperties": false
|
|
@@ -3488,7 +3611,8 @@
|
|
|
3488
3611
|
"triangle-down",
|
|
3489
3612
|
"triangle-up",
|
|
3490
3613
|
"octagon"
|
|
3491
|
-
]
|
|
3614
|
+
],
|
|
3615
|
+
"default": "circle"
|
|
3492
3616
|
}
|
|
3493
3617
|
},
|
|
3494
3618
|
"additionalProperties": false
|
|
@@ -3566,7 +3690,8 @@
|
|
|
3566
3690
|
"triangle-down",
|
|
3567
3691
|
"triangle-up",
|
|
3568
3692
|
"octagon"
|
|
3569
|
-
]
|
|
3693
|
+
],
|
|
3694
|
+
"default": "circle"
|
|
3570
3695
|
}
|
|
3571
3696
|
},
|
|
3572
3697
|
"additionalProperties": false
|
|
@@ -3603,7 +3728,8 @@
|
|
|
3603
3728
|
"triangle-down",
|
|
3604
3729
|
"triangle-up",
|
|
3605
3730
|
"octagon"
|
|
3606
|
-
]
|
|
3731
|
+
],
|
|
3732
|
+
"default": "circle"
|
|
3607
3733
|
}
|
|
3608
3734
|
},
|
|
3609
3735
|
"additionalProperties": false
|
|
@@ -3947,7 +4073,8 @@
|
|
|
3947
4073
|
"triangle-down",
|
|
3948
4074
|
"triangle-up",
|
|
3949
4075
|
"octagon"
|
|
3950
|
-
]
|
|
4076
|
+
],
|
|
4077
|
+
"default": "circle"
|
|
3951
4078
|
}
|
|
3952
4079
|
},
|
|
3953
4080
|
"additionalProperties": false
|
|
@@ -3984,7 +4111,8 @@
|
|
|
3984
4111
|
"triangle-down",
|
|
3985
4112
|
"triangle-up",
|
|
3986
4113
|
"octagon"
|
|
3987
|
-
]
|
|
4114
|
+
],
|
|
4115
|
+
"default": "circle"
|
|
3988
4116
|
}
|
|
3989
4117
|
},
|
|
3990
4118
|
"additionalProperties": false
|
|
@@ -6450,6 +6578,9 @@
|
|
|
6450
6578
|
"pattern": "^[A-Fa-f\\d]{24}$"
|
|
6451
6579
|
},
|
|
6452
6580
|
"maxItems": 1000
|
|
6581
|
+
},
|
|
6582
|
+
"includeExperienceGroups": {
|
|
6583
|
+
"type": "boolean"
|
|
6453
6584
|
}
|
|
6454
6585
|
},
|
|
6455
6586
|
"additionalProperties": false
|