@trayio/cdk-cli 5.14.0 → 5.15.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/README.md CHANGED
@@ -19,7 +19,7 @@ $ npm install -g @trayio/cdk-cli
19
19
  $ tray-cdk COMMAND
20
20
  running command...
21
21
  $ tray-cdk (--version|-v)
22
- @trayio/cdk-cli/5.14.0 linux-x64 node-v18.20.8
22
+ @trayio/cdk-cli/5.15.0 linux-x64 node-v18.20.8
23
23
  $ tray-cdk --help [COMMAND]
24
24
  USAGE
25
25
  $ tray-cdk COMMAND
@@ -243,12 +243,13 @@ Creates a new deployment for a connector project
243
243
 
244
244
  ```
245
245
  USAGE
246
- $ tray-cdk deployment create [--us] [--eu] [--ap]
246
+ $ tray-cdk deployment create [--us] [--eu] [--ap] [--ap2]
247
247
 
248
248
  FLAGS
249
- --ap Use the Tray APAC region
250
- --eu Use the Tray EU region
251
- --us Use the Tray US region
249
+ --ap Use the Tray APAC region
250
+ --ap2 Use the Tray APAC 2 region
251
+ --eu Use the Tray EU region
252
+ --us Use the Tray US region
252
253
 
253
254
  DESCRIPTION
254
255
  Creates a new deployment for a connector project
@@ -260,7 +261,7 @@ Retrieves the status of a connector deployment
260
261
 
261
262
  ```
262
263
  USAGE
263
- $ tray-cdk deployment get [CONNECTORNAME] [CONNECTORVERSION] [UUID] [-t] [--us] [--eu] [--ap]
264
+ $ tray-cdk deployment get [CONNECTORNAME] [CONNECTORVERSION] [UUID] [-t] [--us] [--eu] [--ap] [--ap2]
264
265
 
265
266
  ARGUMENTS
266
267
  CONNECTORNAME The name of the connector
@@ -270,6 +271,7 @@ ARGUMENTS
270
271
  FLAGS
271
272
  -t, --tail Enables the command to run until the deployment is complete with either a success or failure.
272
273
  --ap Use the Tray APAC region
274
+ --ap2 Use the Tray APAC 2 region
273
275
  --eu Use the Tray EU region
274
276
  --us Use the Tray US region
275
277
 
@@ -322,16 +324,17 @@ Creates a new connector namespace for your organization
322
324
 
323
325
  ```
324
326
  USAGE
325
- $ tray-cdk namespace create ORGID NAMESPACE [--us] [--eu] [--ap]
327
+ $ tray-cdk namespace create ORGID NAMESPACE [--us] [--eu] [--ap] [--ap2]
326
328
 
327
329
  ARGUMENTS
328
330
  ORGID The ID of the organization for which to create the namespace
329
331
  NAMESPACE The name of the namespace to create
330
332
 
331
333
  FLAGS
332
- --ap Use the Tray APAC region
333
- --eu Use the Tray EU region
334
- --us Use the Tray US region
334
+ --ap Use the Tray APAC region
335
+ --ap2 Use the Tray APAC 2 region
336
+ --eu Use the Tray EU region
337
+ --us Use the Tray US region
335
338
 
336
339
  DESCRIPTION
337
340
  Creates a new connector namespace for your organization
@@ -348,15 +351,16 @@ Retrieves the connector namespace for your organization, if one exists
348
351
 
349
352
  ```
350
353
  USAGE
351
- $ tray-cdk namespace get ORGID [--us] [--eu] [--ap]
354
+ $ tray-cdk namespace get ORGID [--us] [--eu] [--ap] [--ap2]
352
355
 
353
356
  ARGUMENTS
354
357
  ORGID The ID of the organization you want to retrieve the namespace for
355
358
 
356
359
  FLAGS
357
- --ap Use the Tray APAC region
358
- --eu Use the Tray EU region
359
- --us Use the Tray US region
360
+ --ap Use the Tray APAC region
361
+ --ap2 Use the Tray APAC 2 region
362
+ --eu Use the Tray EU region
363
+ --us Use the Tray US region
360
364
 
361
365
  DESCRIPTION
362
366
  Retrieves the connector namespace for your organization, if one exists
@@ -373,7 +377,7 @@ Share your connector version with other users in your organization
373
377
 
374
378
  ```
375
379
  USAGE
376
- $ tray-cdk permissions add [CONNECTORNAME] [CONNECTORVERSION] [-e <value>] [--us] [--eu] [--ap]
380
+ $ tray-cdk permissions add [CONNECTORNAME] [CONNECTORVERSION] [-e <value>] [--us] [--eu] [--ap] [--ap2]
377
381
 
378
382
  ARGUMENTS
379
383
  CONNECTORNAME The name of the connector
@@ -382,6 +386,7 @@ ARGUMENTS
382
386
  FLAGS
383
387
  -e, --email=<value> Share with users by providing a list of emails
384
388
  --ap Use the Tray APAC region
389
+ --ap2 Use the Tray APAC 2 region
385
390
  --eu Use the Tray EU region
386
391
  --us Use the Tray US region
387
392
 
@@ -406,16 +411,17 @@ Retrieves a list of emails that have access to a connector
406
411
 
407
412
  ```
408
413
  USAGE
409
- $ tray-cdk permissions list [CONNECTORNAME] [CONNECTORVERSION] [--us] [--eu] [--ap]
414
+ $ tray-cdk permissions list [CONNECTORNAME] [CONNECTORVERSION] [--us] [--eu] [--ap] [--ap2]
410
415
 
411
416
  ARGUMENTS
412
417
  CONNECTORNAME The name of the connector
413
418
  CONNECTORVERSION The version of the connector
414
419
 
415
420
  FLAGS
416
- --ap Use the Tray APAC region
417
- --eu Use the Tray EU region
418
- --us Use the Tray US region
421
+ --ap Use the Tray APAC region
422
+ --ap2 Use the Tray APAC 2 region
423
+ --eu Use the Tray EU region
424
+ --us Use the Tray US region
419
425
 
420
426
  DESCRIPTION
421
427
  Retrieves a list of emails that have access to a connector
@@ -6,6 +6,7 @@ export default class Create extends Command {
6
6
  us: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
7
7
  eu: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
8
8
  ap: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
9
+ ap2: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
9
10
  };
10
11
  private regionHandler;
11
12
  run(): Promise<void>;
@@ -1 +1 @@
1
- {"version":3,"file":"create.d.ts","sourceRoot":"","sources":["../../../src/commands/deployment/create.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAM,MAAM,aAAa,CAAC;AAoB1C,MAAM,CAAC,OAAO,OAAO,MAAO,SAAQ,OAAO;IAC1C,MAAM,CAAC,WAAW,SAAsD;IAExE,MAAM,CAAC,IAAI,KAAM;IAEjB,MAAM,CAAC,KAAK;;;;MAEV;IAEF,OAAO,CAAC,aAAa,CAGnB;IAEI,GAAG;CAiET"}
1
+ {"version":3,"file":"create.d.ts","sourceRoot":"","sources":["../../../src/commands/deployment/create.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAM,MAAM,aAAa,CAAC;AAoB1C,MAAM,CAAC,OAAO,OAAO,MAAO,SAAQ,OAAO;IAC1C,MAAM,CAAC,WAAW,SAAsD;IAExE,MAAM,CAAC,IAAI,KAAM;IAEjB,MAAM,CAAC,KAAK;;;;;MAEV;IAEF,OAAO,CAAC,aAAa,CAGnB;IAEI,GAAG;CAiET"}
@@ -10,6 +10,7 @@ export default class Get extends Command {
10
10
  us: import("@oclif/core/lib/interfaces/parser").BooleanFlag<boolean>;
11
11
  eu: import("@oclif/core/lib/interfaces/parser").BooleanFlag<boolean>;
12
12
  ap: import("@oclif/core/lib/interfaces/parser").BooleanFlag<boolean>;
13
+ ap2: import("@oclif/core/lib/interfaces/parser").BooleanFlag<boolean>;
13
14
  tail: import("@oclif/core/lib/interfaces/parser").BooleanFlag<boolean>;
14
15
  };
15
16
  static examples: string[];
@@ -1 +1 @@
1
- {"version":3,"file":"get.d.ts","sourceRoot":"","sources":["../../../src/commands/deployment/get.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAmB,MAAM,aAAa,CAAC;AAwBvD,MAAM,CAAC,OAAO,OAAO,GAAI,SAAQ,OAAO;IACvC,MAAM,CAAC,WAAW,SAAoD;IAEtE,MAAM,CAAC,IAAI;;;;MAiBT;IAEF,MAAM,CAAC,KAAK;;;;;MAOV;IAEF,MAAM,CAAC,QAAQ,WAUb;IAEF,OAAO,CAAC,aAAa,CAGnB;IAEF,OAAO,CAAC,6BAA6B,CAkCnC;IAEF,OAAO,CAAC,qBAAqB,CAe3B;IAEI,GAAG;CAsGT"}
1
+ {"version":3,"file":"get.d.ts","sourceRoot":"","sources":["../../../src/commands/deployment/get.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAmB,MAAM,aAAa,CAAC;AAwBvD,MAAM,CAAC,OAAO,OAAO,GAAI,SAAQ,OAAO;IACvC,MAAM,CAAC,WAAW,SAAoD;IAEtE,MAAM,CAAC,IAAI;;;;MAiBT;IAEF,MAAM,CAAC,KAAK;;;;;;MAOV;IAEF,MAAM,CAAC,QAAQ,WAUb;IAEF,OAAO,CAAC,aAAa,CAGnB;IAEF,OAAO,CAAC,6BAA6B,CAkCnC;IAEF,OAAO,CAAC,qBAAqB,CAe3B;IAEI,GAAG;CAsGT"}
@@ -9,6 +9,7 @@ export default class Create extends Command {
9
9
  us: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
10
10
  eu: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
11
11
  ap: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
12
+ ap2: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
12
13
  };
13
14
  static examples: string[];
14
15
  private regionHandler;
@@ -1 +1 @@
1
- {"version":3,"file":"create.d.ts","sourceRoot":"","sources":["../../../src/commands/namespace/create.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAmB,MAAM,aAAa,CAAC;AAevD,MAAM,CAAC,OAAO,OAAO,MAAO,SAAQ,OAAO;IAC1C,MAAM,CAAC,WAAW,SACyC;IAE3D,MAAM,CAAC,IAAI;;;MAYT;IAEF,MAAM,CAAC,KAAK;;;;MAEV;IAEF,MAAM,CAAC,QAAQ,WAGb;IAEF,OAAO,CAAC,aAAa,CAGnB;IAEI,GAAG;CAgDT"}
1
+ {"version":3,"file":"create.d.ts","sourceRoot":"","sources":["../../../src/commands/namespace/create.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAmB,MAAM,aAAa,CAAC;AAevD,MAAM,CAAC,OAAO,OAAO,MAAO,SAAQ,OAAO;IAC1C,MAAM,CAAC,WAAW,SACyC;IAE3D,MAAM,CAAC,IAAI;;;MAYT;IAEF,MAAM,CAAC,KAAK;;;;;MAEV;IAEF,MAAM,CAAC,QAAQ,WAGb;IAEF,OAAO,CAAC,aAAa,CAGnB;IAEI,GAAG;CAgDT"}
@@ -8,6 +8,7 @@ export default class Get extends Command {
8
8
  us: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
9
9
  eu: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
10
10
  ap: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
11
+ ap2: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
11
12
  };
12
13
  static examples: string[];
13
14
  private regionHandler;
@@ -1 +1 @@
1
- {"version":3,"file":"get.d.ts","sourceRoot":"","sources":["../../../src/commands/namespace/get.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAmB,MAAM,aAAa,CAAC;AAgBvD,MAAM,CAAC,OAAO,OAAO,GAAI,SAAQ,OAAO;IACvC,MAAM,CAAC,WAAW,SACwD;IAE1E,MAAM,CAAC,IAAI;;MAOT;IAEF,MAAM,CAAC,KAAK;;;;MAEV;IAEF,MAAM,CAAC,QAAQ,WAGb;IAEF,OAAO,CAAC,aAAa,CAGnB;IAEI,GAAG;CA6CT"}
1
+ {"version":3,"file":"get.d.ts","sourceRoot":"","sources":["../../../src/commands/namespace/get.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAmB,MAAM,aAAa,CAAC;AAgBvD,MAAM,CAAC,OAAO,OAAO,GAAI,SAAQ,OAAO;IACvC,MAAM,CAAC,WAAW,SACwD;IAE1E,MAAM,CAAC,IAAI;;MAOT;IAEF,MAAM,CAAC,KAAK;;;;;MAEV;IAEF,MAAM,CAAC,QAAQ,WAGb;IAEF,OAAO,CAAC,aAAa,CAGnB;IAEI,GAAG;CA6CT"}
@@ -10,6 +10,7 @@ export default class Add extends Command {
10
10
  us: import("@oclif/core/lib/interfaces/parser").BooleanFlag<boolean>;
11
11
  eu: import("@oclif/core/lib/interfaces/parser").BooleanFlag<boolean>;
12
12
  ap: import("@oclif/core/lib/interfaces/parser").BooleanFlag<boolean>;
13
+ ap2: import("@oclif/core/lib/interfaces/parser").BooleanFlag<boolean>;
13
14
  email: import("@oclif/core/lib/interfaces/parser").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
14
15
  };
15
16
  private regionHandler;
@@ -1 +1 @@
1
- {"version":3,"file":"add.d.ts","sourceRoot":"","sources":["../../../src/commands/permissions/add.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,OAAO,EAAa,MAAM,aAAa,CAAC;AAkBvD,MAAM,CAAC,OAAO,OAAO,GAAI,SAAQ,OAAO;IACvC,MAAM,CAAC,WAAW,SACoD;IAEtE,MAAM,CAAC,QAAQ,WAQb;IAEF,MAAM,CAAC,IAAI;;;MAWT;IAEF,MAAM,CAAC,KAAK;;;;;MAaV;IAEF,OAAO,CAAC,aAAa,CAGnB;IAEW,GAAG,IAAI,OAAO,CAAC,IAAI,CAAC;YAgFnB,kBAAkB;YAkClB,sBAAsB;IAuCpC,OAAO,CAAC,SAAS;IAOjB,OAAO,CAAC,eAAe;CAGvB"}
1
+ {"version":3,"file":"add.d.ts","sourceRoot":"","sources":["../../../src/commands/permissions/add.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,OAAO,EAAa,MAAM,aAAa,CAAC;AAkBvD,MAAM,CAAC,OAAO,OAAO,GAAI,SAAQ,OAAO;IACvC,MAAM,CAAC,WAAW,SACoD;IAEtE,MAAM,CAAC,QAAQ,WAQb;IAEF,MAAM,CAAC,IAAI;;;MAWT;IAEF,MAAM,CAAC,KAAK;;;;;;MAaV;IAEF,OAAO,CAAC,aAAa,CAGnB;IAEW,GAAG,IAAI,OAAO,CAAC,IAAI,CAAC;YAgFnB,kBAAkB;YAkClB,sBAAsB;IAuCpC,OAAO,CAAC,SAAS;IAOjB,OAAO,CAAC,eAAe;CAGvB"}
@@ -10,6 +10,7 @@ export default class PermissionsList extends Command {
10
10
  us: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
11
11
  eu: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
12
12
  ap: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
13
+ ap2: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
13
14
  };
14
15
  private regionHandler;
15
16
  run(): Promise<void>;
@@ -1 +1 @@
1
- {"version":3,"file":"list.d.ts","sourceRoot":"","sources":["../../../src/commands/permissions/list.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,OAAO,EAAa,MAAM,aAAa,CAAC;AAYvD,MAAM,CAAC,OAAO,OAAO,eAAgB,SAAQ,OAAO;IACnD,MAAM,CAAC,WAAW,SAC4C;IAG9D,MAAM,CAAC,QAAQ,WAIb;IAEF,MAAM,CAAC,IAAI;;;MAWT;IAEF,MAAM,CAAC,KAAK;;;;MAaV;IAEF,OAAO,CAAC,aAAa,CAGnB;IAEW,GAAG,IAAI,OAAO,CAAC,IAAI,CAAC;CAsDjC"}
1
+ {"version":3,"file":"list.d.ts","sourceRoot":"","sources":["../../../src/commands/permissions/list.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,OAAO,EAAa,MAAM,aAAa,CAAC;AAYvD,MAAM,CAAC,OAAO,OAAO,eAAgB,SAAQ,OAAO;IACnD,MAAM,CAAC,WAAW,SAC4C;IAG9D,MAAM,CAAC,QAAQ,WAIb;IAEF,MAAM,CAAC,IAAI;;;MAWT;IAEF,MAAM,CAAC,KAAK;;;;;MAaV;IAEF,OAAO,CAAC,aAAa,CAGnB;IAEW,GAAG,IAAI,OAAO,CAAC,IAAI,CAAC;CAsDjC"}
@@ -391,6 +391,12 @@
391
391
  "name": "ap",
392
392
  "allowNo": false,
393
393
  "type": "boolean"
394
+ },
395
+ "ap2": {
396
+ "description": "Use the Tray APAC 2 region",
397
+ "name": "ap2",
398
+ "allowNo": false,
399
+ "type": "boolean"
394
400
  }
395
401
  },
396
402
  "hasDynamicHelp": false,
@@ -465,6 +471,12 @@
465
471
  "name": "ap",
466
472
  "allowNo": false,
467
473
  "type": "boolean"
474
+ },
475
+ "ap2": {
476
+ "description": "Use the Tray APAC 2 region",
477
+ "name": "ap2",
478
+ "allowNo": false,
479
+ "type": "boolean"
468
480
  }
469
481
  },
470
482
  "hasDynamicHelp": false,
@@ -520,6 +532,12 @@
520
532
  "name": "ap",
521
533
  "allowNo": false,
522
534
  "type": "boolean"
535
+ },
536
+ "ap2": {
537
+ "description": "Use the Tray APAC 2 region",
538
+ "name": "ap2",
539
+ "allowNo": false,
540
+ "type": "boolean"
523
541
  }
524
542
  },
525
543
  "hasDynamicHelp": false,
@@ -570,6 +588,12 @@
570
588
  "name": "ap",
571
589
  "allowNo": false,
572
590
  "type": "boolean"
591
+ },
592
+ "ap2": {
593
+ "description": "Use the Tray APAC 2 region",
594
+ "name": "ap2",
595
+ "allowNo": false,
596
+ "type": "boolean"
573
597
  }
574
598
  },
575
599
  "hasDynamicHelp": false,
@@ -640,6 +664,12 @@
640
664
  "name": "ap",
641
665
  "allowNo": false,
642
666
  "type": "boolean"
667
+ },
668
+ "ap2": {
669
+ "description": "Use the Tray APAC 2 region",
670
+ "name": "ap2",
671
+ "allowNo": false,
672
+ "type": "boolean"
643
673
  }
644
674
  },
645
675
  "hasDynamicHelp": false,
@@ -696,6 +726,12 @@
696
726
  "name": "ap",
697
727
  "allowNo": false,
698
728
  "type": "boolean"
729
+ },
730
+ "ap2": {
731
+ "description": "Use the Tray APAC 2 region",
732
+ "name": "ap2",
733
+ "allowNo": false,
734
+ "type": "boolean"
699
735
  }
700
736
  },
701
737
  "hasDynamicHelp": false,
@@ -715,5 +751,5 @@
715
751
  ]
716
752
  }
717
753
  },
718
- "version": "5.14.0"
754
+ "version": "5.15.0"
719
755
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trayio/cdk-cli",
3
- "version": "5.14.0",
3
+ "version": "5.15.0",
4
4
  "description": "A CLI for connector development",
5
5
  "exports": {
6
6
  "./*": "./dist/*.js"
@@ -22,13 +22,13 @@
22
22
  "@oclif/plugin-version": "2.0.11",
23
23
  "@oclif/plugin-warn-if-update-available": "^3.1.4",
24
24
  "@oclif/test": "3.1.12",
25
- "@trayio/axios": "5.14.0",
26
- "@trayio/cdk-build": "5.14.0",
27
- "@trayio/cdk-cli-commons": "5.14.0",
28
- "@trayio/commons": "5.14.0",
29
- "@trayio/generator": "5.14.0",
30
- "@trayio/tray-client": "5.14.0",
31
- "@trayio/tray-openapi": "5.14.0",
25
+ "@trayio/axios": "5.15.0",
26
+ "@trayio/cdk-build": "5.15.0",
27
+ "@trayio/cdk-cli-commons": "5.15.0",
28
+ "@trayio/commons": "5.15.0",
29
+ "@trayio/generator": "5.15.0",
30
+ "@trayio/tray-client": "5.15.0",
31
+ "@trayio/tray-openapi": "5.15.0",
32
32
  "chalk": "4.1.2",
33
33
  "dotenv": "^16.0.0",
34
34
  "inquirer": "8.2.6"